diff options
Diffstat (limited to 'drivers/hwmon/pmbus/Kconfig')
-rw-r--r-- | drivers/hwmon/pmbus/Kconfig | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/drivers/hwmon/pmbus/Kconfig b/drivers/hwmon/pmbus/Kconfig new file mode 100644 index 000000000000..794129f48594 --- /dev/null +++ b/drivers/hwmon/pmbus/Kconfig | |||
@@ -0,0 +1,90 @@ | |||
1 | # | ||
2 | # PMBus chip drivers configuration | ||
3 | # | ||
4 | |||
5 | menuconfig PMBUS | ||
6 | tristate "PMBus support" | ||
7 | depends on I2C && EXPERIMENTAL | ||
8 | default n | ||
9 | help | ||
10 | Say yes here if you want to enable PMBus support. | ||
11 | |||
12 | This driver can also be built as a module. If so, the module will | ||
13 | be called pmbus_core. | ||
14 | |||
15 | if PMBUS | ||
16 | |||
17 | config SENSORS_PMBUS | ||
18 | tristate "Generic PMBus devices" | ||
19 | default y | ||
20 | help | ||
21 | If you say yes here you get hardware monitoring support for generic | ||
22 | PMBus devices, including but not limited to BMR450, BMR451, BMR453, | ||
23 | BMR454, and LTC2978. | ||
24 | |||
25 | This driver can also be built as a module. If so, the module will | ||
26 | be called pmbus. | ||
27 | |||
28 | config SENSORS_ADM1275 | ||
29 | tristate "Analog Devices ADM1275" | ||
30 | default n | ||
31 | help | ||
32 | If you say yes here you get hardware monitoring support for Analog | ||
33 | Devices ADM1275 Hot-Swap Controller and Digital Power Monitor. | ||
34 | |||
35 | This driver can also be built as a module. If so, the module will | ||
36 | be called adm1275. | ||
37 | |||
38 | config SENSORS_MAX16064 | ||
39 | tristate "Maxim MAX16064" | ||
40 | default n | ||
41 | help | ||
42 | If you say yes here you get hardware monitoring support for Maxim | ||
43 | MAX16064. | ||
44 | |||
45 | This driver can also be built as a module. If so, the module will | ||
46 | be called max16064. | ||
47 | |||
48 | config SENSORS_MAX34440 | ||
49 | tristate "Maxim MAX34440/MAX34441" | ||
50 | default n | ||
51 | help | ||
52 | If you say yes here you get hardware monitoring support for Maxim | ||
53 | MAX34440 and MAX34441. | ||
54 | |||
55 | This driver can also be built as a module. If so, the module will | ||
56 | be called max34440. | ||
57 | |||
58 | config SENSORS_MAX8688 | ||
59 | tristate "Maxim MAX8688" | ||
60 | default n | ||
61 | help | ||
62 | If you say yes here you get hardware monitoring support for Maxim | ||
63 | MAX8688. | ||
64 | |||
65 | This driver can also be built as a module. If so, the module will | ||
66 | be called max8688. | ||
67 | |||
68 | config SENSORS_UCD9000 | ||
69 | tristate "TI UCD90120, UCD90124, UCD9090, UCD90910" | ||
70 | default n | ||
71 | help | ||
72 | If you say yes here you get hardware monitoring support for TI | ||
73 | UCD90120, UCD90124, UCD9090, UCD90910 Sequencer and System Health | ||
74 | Controllers. | ||
75 | |||
76 | This driver can also be built as a module. If so, the module will | ||
77 | be called ucd9000. | ||
78 | |||
79 | config SENSORS_UCD9200 | ||
80 | tristate "TI UCD9220, UCD9222, UCD9224, UCD9240, UCD9244, UCD9246, UCD9248" | ||
81 | default n | ||
82 | help | ||
83 | If you say yes here you get hardware monitoring support for TI | ||
84 | UCD9220, UCD9222, UCD9224, UCD9240, UCD9244, UCD9246, and UCD9248 | ||
85 | Digital PWM System Controllers. | ||
86 | |||
87 | This driver can also be built as a module. If so, the module will | ||
88 | be called ucd9200. | ||
89 | |||
90 | endif # PMBUS | ||