6236548284
MAX31785 is a PMBus compliant 6-Channel fan controller. It supports 6 fan channels, 11 temperature sensors, and 6-Channel ADC to measure the remote voltages. Datasheet can be found here: https://datasheets.maximintegrated.com/en/ds/MAX31785.pdf This initial version of the driver has skeleton and support for the fan channels. Requests for temperature sensors, and ADC Channels the are serviced with the default values as per the datasheet. No additional instrumentation is done. NV Log feature is not supported. Signed-off-by: Maheswara Kurapati <quic_mkurapat@quicinc.com> Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com> Reviewed-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20220627154703.148943-5-quic_jaehyoo@quicinc.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
10 lines
634 B
Meson
10 lines
634 B
Meson
softmmu_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c'))
|
|
softmmu_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c'))
|
|
softmmu_ss.add(when: 'CONFIG_DPS310', if_true: files('dps310.c'))
|
|
softmmu_ss.add(when: 'CONFIG_EMC141X', if_true: files('emc141x.c'))
|
|
softmmu_ss.add(when: 'CONFIG_ADM1272', if_true: files('adm1272.c'))
|
|
softmmu_ss.add(when: 'CONFIG_MAX34451', if_true: files('max34451.c'))
|
|
softmmu_ss.add(when: 'CONFIG_LSM303DLHC_MAG', if_true: files('lsm303dlhc_mag.c'))
|
|
softmmu_ss.add(when: 'CONFIG_ISL_PMBUS_VR', if_true: files('isl_pmbus_vr.c'))
|
|
softmmu_ss.add(when: 'CONFIG_MAX31785', if_true: files('max31785.c'))
|