2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2011-07-12 22:15:19 +08:00
|
|
|
#
|
|
|
|
# PMBus chip drivers configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig PMBUS
|
|
|
|
tristate "PMBus support"
|
2012-10-03 02:17:06 +08:00
|
|
|
depends on I2C
|
2011-07-12 22:15:19 +08:00
|
|
|
help
|
|
|
|
Say yes here if you want to enable PMBus support.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called pmbus_core.
|
|
|
|
|
|
|
|
if PMBUS
|
|
|
|
|
|
|
|
config SENSORS_PMBUS
|
|
|
|
tristate "Generic PMBus devices"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for generic
|
2021-05-08 03:40:23 +08:00
|
|
|
PMBus devices, including but not limited to ADP4000, BMR310, BMR453,
|
|
|
|
BMR454, BMR456, BMR457, BMR458, BMR480, BMR490, BMR491, BMR492,
|
|
|
|
MAX20796, MDT040, NCP4200, NCP4208, PDT003, PDT006, PDT012,
|
|
|
|
TPS40400, TPS544B20, TPS544B25, TPS544C20, TPS544C25, and UDT020.
|
2011-07-12 22:15:19 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called pmbus.
|
|
|
|
|
2020-08-12 22:20:50 +08:00
|
|
|
config SENSORS_ADM1266
|
|
|
|
tristate "Analog Devices ADM1266 Sequencer"
|
2020-08-12 22:20:51 +08:00
|
|
|
select CRC8
|
2020-08-12 22:20:52 +08:00
|
|
|
depends on GPIOLIB
|
2020-08-12 22:20:50 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Analog
|
|
|
|
Devices ADM1266 Cascadable Super Sequencer.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called adm1266.
|
|
|
|
|
2011-07-12 22:15:19 +08:00
|
|
|
config SENSORS_ADM1275
|
2011-07-15 02:55:35 +08:00
|
|
|
tristate "Analog Devices ADM1275 and compatibles"
|
2011-07-12 22:15:19 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Analog
|
2018-03-11 10:59:04 +08:00
|
|
|
Devices ADM1075, ADM1272, ADM1275, ADM1276, ADM1278, ADM1293,
|
|
|
|
and ADM1294 Hot-Swap Controller and Digital Power Monitors.
|
2011-07-12 22:15:19 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called adm1275.
|
|
|
|
|
2019-10-30 02:20:53 +08:00
|
|
|
config SENSORS_BEL_PFE
|
|
|
|
tristate "Bel PFE Compatible Power Supplies"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for BEL
|
|
|
|
PFE1100 and PFE3000 Power Supplies.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called bel-pfe.
|
|
|
|
|
2021-03-17 12:02:31 +08:00
|
|
|
config SENSORS_BPA_RS600
|
|
|
|
tristate "BluTek BPA-RS600 Power Supplies"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for BluTek
|
|
|
|
BPA-RS600 Power Supplies.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called bpa-rs600.
|
|
|
|
|
hwmon: Add driver for fsp-3y PSUs and PDUs
This patch adds support for these devices:
- YH-5151E - the PDU
- YM-2151E - the PSU
The device datasheet says that the devices support PMBus 1.2, but in my
testing, a lot of the commands aren't supported and if they are, they
sometimes behave strangely or inconsistently. For example, writes to the
PAGE command requires using PEC, otherwise the write won't work and the
page won't switch, even though, the standard says that PEC is optional.
On the other hand, writes to SMBALERT don't require PEC. Because of
this, the driver is mostly reverse engineered with the help of a tool
called pmbus_peek written by David Brownell (and later adopted by my
colleague Jan Kundrát).
The device also has some sort of a timing issue when switching pages,
which is explained further in the code.
Because of this, the driver support is limited. It exposes only the
values that have been tested to work correctly.
Signed-off-by: Václav Kubernát <kubernat@cesnet.cz>
Link: https://lore.kernel.org/r/20210414080019.3530794-1-kubernat@cesnet.cz
[groeck: Fixed up "missing braces around initializer" from 0-day]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2021-04-14 16:00:17 +08:00
|
|
|
config SENSORS_FSP_3Y
|
|
|
|
tristate "FSP/3Y-Power power supplies"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for
|
|
|
|
FSP/3Y-Power hot-swap power supplies.
|
|
|
|
Supported models: YH-5151E, YM-2151E
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called fsp-3y.
|
|
|
|
|
2017-08-22 03:46:12 +08:00
|
|
|
config SENSORS_IBM_CFFPS
|
|
|
|
tristate "IBM Common Form Factor Power Supply"
|
2018-01-12 23:49:00 +08:00
|
|
|
depends on LEDS_CLASS
|
2017-08-22 03:46:12 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for the IBM
|
|
|
|
Common Form Factor power supply.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ibm-cffps.
|
|
|
|
|
2019-08-19 17:15:09 +08:00
|
|
|
config SENSORS_INSPUR_IPSPS
|
|
|
|
tristate "INSPUR Power System Power Supply"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for the INSPUR
|
|
|
|
Power System power supply.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called inspur-ipsps.
|
|
|
|
|
2017-05-01 08:39:01 +08:00
|
|
|
config SENSORS_IR35221
|
|
|
|
tristate "Infineon IR35221"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for the
|
|
|
|
Infineon IR35221 controller.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
2020-07-03 06:13:49 +08:00
|
|
|
be called ir35221.
|
2017-05-01 08:39:01 +08:00
|
|
|
|
2021-03-01 11:59:54 +08:00
|
|
|
config SENSORS_IR36021
|
|
|
|
tristate "Infineon IR36021"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Infineon
|
|
|
|
IR36021.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ir36021.
|
|
|
|
|
2019-04-13 04:37:56 +08:00
|
|
|
config SENSORS_IR38064
|
|
|
|
tristate "Infineon IR38064"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Infineon
|
|
|
|
IR38064.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ir38064.
|
|
|
|
|
2019-06-06 03:49:01 +08:00
|
|
|
config SENSORS_IRPS5401
|
|
|
|
tristate "Infineon IRPS5401"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for the
|
|
|
|
Infineon IRPS5401 controller.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called irps5401.
|
|
|
|
|
2019-04-16 06:28:07 +08:00
|
|
|
config SENSORS_ISL68137
|
2020-03-21 00:16:21 +08:00
|
|
|
tristate "Renesas Digital Multiphase Voltage Regulators"
|
2019-04-16 06:28:07 +08:00
|
|
|
help
|
2020-03-21 00:16:21 +08:00
|
|
|
If you say yes here you get hardware monitoring support for Renesas
|
|
|
|
digital multiphase voltage regulators.
|
2019-04-16 06:28:07 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called isl68137.
|
|
|
|
|
2011-07-09 01:43:57 +08:00
|
|
|
config SENSORS_LM25066
|
|
|
|
tristate "National Semiconductor LM25066 and compatibles"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for National
|
2013-02-10 07:15:52 +08:00
|
|
|
Semiconductor LM25056, LM25066, LM5064, and LM5066.
|
2011-07-09 01:43:57 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called lm25066.
|
|
|
|
|
2011-09-03 00:58:37 +08:00
|
|
|
config SENSORS_LTC2978
|
2014-10-16 02:55:10 +08:00
|
|
|
tristate "Linear Technologies LTC2978 and compatibles"
|
2011-09-03 00:58:37 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Linear
|
hwmon: (pmbus/ltc2978) add support for more parts.
LTC2972, LTC2979, LTC3884, LTC3889, LTC7880, LTM4664, LTM4677,
LTM4678, LTM4680, LTM4700.
Signed-off-by: Mike Jones <michael-a1.jones@analog.com>
Link: https://lore.kernel.org/r/1581032654-4330-1-git-send-email-michael-a1.jones@analog.com
[groeck: Fixed checkpatch issues (long lines, whitespace)]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2020-02-07 07:44:13 +08:00
|
|
|
Technology LTC2972, LTC2974, LTC2975, LTC2977, LTC2978, LTC2979,
|
|
|
|
LTC2980, and LTM2987.
|
2011-09-03 00:58:37 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ltc2978.
|
|
|
|
|
2014-10-16 02:55:10 +08:00
|
|
|
config SENSORS_LTC2978_REGULATOR
|
2014-12-21 04:41:11 +08:00
|
|
|
bool "Regulator support for LTC2978 and compatibles"
|
2014-10-16 02:55:10 +08:00
|
|
|
depends on SENSORS_LTC2978 && REGULATOR
|
|
|
|
help
|
hwmon: (pmbus/ltc2978) add support for more parts.
LTC2972, LTC2979, LTC3884, LTC3889, LTC7880, LTM4664, LTM4677,
LTM4678, LTM4680, LTM4700.
Signed-off-by: Mike Jones <michael-a1.jones@analog.com>
Link: https://lore.kernel.org/r/1581032654-4330-1-git-send-email-michael-a1.jones@analog.com
[groeck: Fixed checkpatch issues (long lines, whitespace)]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
2020-02-07 07:44:13 +08:00
|
|
|
If you say yes here you get regulator support for Linear Technology
|
|
|
|
LTC3880, LTC3883, LTC3884, LTC3886, LTC3887, LTC3889, LTC7880,
|
|
|
|
LTM4644, LTM4675, LTM4676, LTM4677, LTM4678, LTM4680, LTM4686,
|
|
|
|
and LTM4700.
|
2014-10-16 02:55:10 +08:00
|
|
|
|
2015-08-22 15:49:37 +08:00
|
|
|
config SENSORS_LTC3815
|
|
|
|
tristate "Linear Technologies LTC3815"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Linear
|
|
|
|
Technology LTC3815.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ltc3815.
|
|
|
|
|
2021-04-19 18:12:51 +08:00
|
|
|
config SENSORS_MAX15301
|
|
|
|
tristate "Maxim MAX15301"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
|
|
|
MAX15301, as well as for Flex BMR461.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max15301.
|
|
|
|
|
2011-07-12 22:15:19 +08:00
|
|
|
config SENSORS_MAX16064
|
|
|
|
tristate "Maxim MAX16064"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
|
|
|
MAX16064.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max16064.
|
|
|
|
|
2019-12-14 22:37:31 +08:00
|
|
|
config SENSORS_MAX16601
|
2021-01-26 02:53:27 +08:00
|
|
|
tristate "Maxim MAX16508, MAX16601"
|
2019-12-14 22:37:31 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
2021-01-26 02:53:27 +08:00
|
|
|
MAX16508 and MAX16601.
|
2019-12-14 22:37:31 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max16601.
|
|
|
|
|
2019-12-06 12:26:24 +08:00
|
|
|
config SENSORS_MAX20730
|
2020-06-16 07:49:14 +08:00
|
|
|
tristate "Maxim MAX20710, MAX20730, MAX20734, MAX20743"
|
2019-12-06 12:26:24 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
2020-06-16 07:49:14 +08:00
|
|
|
MAX20710, MAX20730, MAX20734, and MAX20743.
|
2019-12-06 12:26:24 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max20730.
|
|
|
|
|
2015-06-09 02:15:23 +08:00
|
|
|
config SENSORS_MAX20751
|
|
|
|
tristate "Maxim MAX20751"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
|
|
|
MAX20751.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max20751.
|
|
|
|
|
2017-11-03 12:53:02 +08:00
|
|
|
config SENSORS_MAX31785
|
|
|
|
tristate "Maxim MAX31785 and compatibles"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
|
|
|
MAX31785.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max31785.
|
|
|
|
|
2011-07-12 22:15:19 +08:00
|
|
|
config SENSORS_MAX34440
|
2012-02-24 19:40:22 +08:00
|
|
|
tristate "Maxim MAX34440 and compatibles"
|
2011-07-12 22:15:19 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
2018-07-04 06:26:49 +08:00
|
|
|
MAX34440, MAX34441, MAX34446, MAX34451, MAX34460, and MAX34461.
|
2011-07-12 22:15:19 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max34440.
|
|
|
|
|
|
|
|
config SENSORS_MAX8688
|
|
|
|
tristate "Maxim MAX8688"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Maxim
|
|
|
|
MAX8688.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called max8688.
|
|
|
|
|
2021-05-11 13:56:18 +08:00
|
|
|
config SENSORS_MP2888
|
|
|
|
tristate "MPS MP2888"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for MPS
|
|
|
|
MP2888 Digital, Multi-Phase, Pulse-Width Modulation Controller.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called mp2888.
|
|
|
|
|
2020-09-27 04:49:56 +08:00
|
|
|
config SENSORS_MP2975
|
|
|
|
tristate "MPS MP2975"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for MPS
|
|
|
|
MP2975 Dual Loop Digital Multi-Phase Controller.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called mp2975.
|
|
|
|
|
2021-06-09 17:32:08 +08:00
|
|
|
config SENSORS_PIM4328
|
|
|
|
tristate "Flex PIM4328 and compatibles"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Flex
|
|
|
|
PIM4328, PIM4820 and PIM4006 Power Interface Modules.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called pim4328.
|
|
|
|
|
2020-12-02 14:11:04 +08:00
|
|
|
config SENSORS_PM6764TR
|
|
|
|
tristate "ST PM6764TR"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for ST
|
|
|
|
PM6764TR.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called pm6764tr.
|
|
|
|
|
2019-05-31 07:11:56 +08:00
|
|
|
config SENSORS_PXE1610
|
|
|
|
tristate "Infineon PXE1610"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Infineon
|
|
|
|
PXE1610.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called pxe1610.
|
|
|
|
|
2020-12-02 10:59:00 +08:00
|
|
|
config SENSORS_Q54SJ108A2
|
|
|
|
tristate "Delta Power Supplies Q54SJ108A2"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Delta
|
|
|
|
Q54SJ108A2 series Power Supplies.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called q54sj108a2.
|
|
|
|
|
2021-02-18 19:52:49 +08:00
|
|
|
config SENSORS_STPDDC60
|
|
|
|
tristate "ST STPDDC60"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for ST
|
|
|
|
STPDDC60 Universal Digital Multicell Controller, as well as for
|
|
|
|
Flex BMR481.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called stpddc60.
|
|
|
|
|
2014-07-01 15:14:23 +08:00
|
|
|
config SENSORS_TPS40422
|
|
|
|
tristate "TI TPS40422"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for TI
|
|
|
|
TPS40422.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called tps40422.
|
|
|
|
|
2017-08-31 06:02:14 +08:00
|
|
|
config SENSORS_TPS53679
|
2021-03-23 03:37:34 +08:00
|
|
|
tristate "TI TPS53647, TPS53667, TPS53676, TPS53679, TPS53681, TPS53688"
|
2017-08-31 06:02:14 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for TI
|
2021-03-23 03:37:34 +08:00
|
|
|
TPS53647, TPS53667, TPS53676, TPS53679, TPS53681, and TPS53688.
|
2017-08-31 06:02:14 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called tps53679.
|
|
|
|
|
2011-07-12 22:15:19 +08:00
|
|
|
config SENSORS_UCD9000
|
2019-12-06 07:24:11 +08:00
|
|
|
tristate "TI UCD90120, UCD90124, UCD90160, UCD90320, UCD9090, UCD90910"
|
2011-07-12 22:15:19 +08:00
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for TI
|
2019-12-06 07:24:11 +08:00
|
|
|
UCD90120, UCD90124, UCD90160, UCD90320, UCD9090, UCD90910, Sequencer
|
|
|
|
and System Health Controllers.
|
2011-07-12 22:15:19 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ucd9000.
|
|
|
|
|
|
|
|
config SENSORS_UCD9200
|
|
|
|
tristate "TI UCD9220, UCD9222, UCD9224, UCD9240, UCD9244, UCD9246, UCD9248"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for TI
|
|
|
|
UCD9220, UCD9222, UCD9224, UCD9240, UCD9244, UCD9246, and UCD9248
|
|
|
|
Digital PWM System Controllers.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called ucd9200.
|
|
|
|
|
2020-01-13 23:08:39 +08:00
|
|
|
config SENSORS_XDPE122
|
|
|
|
tristate "Infineon XDPE122 family"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Infineon
|
|
|
|
XDPE12254, XDPE12284, device.
|
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called xdpe12284.
|
|
|
|
|
2011-07-30 13:21:53 +08:00
|
|
|
config SENSORS_ZL6100
|
|
|
|
tristate "Intersil ZL6100 and compatibles"
|
|
|
|
help
|
|
|
|
If you say yes here you get hardware monitoring support for Intersil
|
2012-02-29 05:18:47 +08:00
|
|
|
ZL2004, ZL2005, ZL2006, ZL2008, ZL2105, ZL2106, ZL6100, ZL6105,
|
|
|
|
ZL9101M, and ZL9117M Digital DC/DC Controllers, as well as for
|
|
|
|
Ericsson BMR450, BMR451, BMR462, BMR463, and BMR464.
|
2011-07-30 13:21:53 +08:00
|
|
|
|
|
|
|
This driver can also be built as a module. If so, the module will
|
|
|
|
be called zl6100.
|
|
|
|
|
2011-07-12 22:15:19 +08:00
|
|
|
endif # PMBUS
|