diff options
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 65 |
1 files changed, 64 insertions, 1 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index ad61a9e8e04e..db51ea1c6082 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig | |||
@@ -7,7 +7,16 @@ menuconfig MFD_SUPPORT | |||
7 | depends on HAS_IOMEM | 7 | depends on HAS_IOMEM |
8 | default y | 8 | default y |
9 | help | 9 | help |
10 | Configure MFD device drivers. | 10 | Multifunction devices embed several functions (e.g. GPIOs, |
11 | touchscreens, keyboards, current regulators, power management chips, | ||
12 | etc...) in one single integrated circuit. They usually talk to the | ||
13 | main CPU through one or more IRQ lines and low speed data busses (SPI, | ||
14 | I2C, etc..). They appear as one single device to the main system | ||
15 | through the data bus and the MFD framework allows for sub devices | ||
16 | (a.k.a. functions) to appear as discrete platform devices. | ||
17 | MFDs are typically found on embedded platforms. | ||
18 | |||
19 | This option alone does not add any kernel code. | ||
11 | 20 | ||
12 | if MFD_SUPPORT | 21 | if MFD_SUPPORT |
13 | 22 | ||
@@ -177,6 +186,38 @@ config TWL4030_CODEC | |||
177 | select MFD_CORE | 186 | select MFD_CORE |
178 | default n | 187 | default n |
179 | 188 | ||
189 | config TWL6030_PWM | ||
190 | tristate "TWL6030 PWM (Pulse Width Modulator) Support" | ||
191 | depends on TWL4030_CORE | ||
192 | select HAVE_PWM | ||
193 | default n | ||
194 | help | ||
195 | Say yes here if you want support for TWL6030 PWM. | ||
196 | This is used to control charging LED brightness. | ||
197 | |||
198 | config MFD_STMPE | ||
199 | bool "Support STMicroelectronics STMPE" | ||
200 | depends on I2C=y && GENERIC_HARDIRQS | ||
201 | select MFD_CORE | ||
202 | help | ||
203 | Support for the STMPE family of I/O Expanders from | ||
204 | STMicroelectronics. | ||
205 | |||
206 | Currently supported devices are: | ||
207 | |||
208 | STMPE811: GPIO, Touchscreen | ||
209 | STMPE1601: GPIO, Keypad | ||
210 | STMPE2401: GPIO, Keypad | ||
211 | STMPE2403: GPIO, Keypad | ||
212 | |||
213 | This driver provides common support for accessing the device, | ||
214 | additional drivers must be enabled in order to use the functionality | ||
215 | of the device. Currently available sub drivers are: | ||
216 | |||
217 | GPIO: stmpe-gpio | ||
218 | Keypad: stmpe-keypad | ||
219 | Touchscreen: stmpe-ts | ||
220 | |||
180 | config MFD_TC35892 | 221 | config MFD_TC35892 |
181 | bool "Support Toshiba TC35892" | 222 | bool "Support Toshiba TC35892" |
182 | depends on I2C=y && GENERIC_HARDIRQS | 223 | depends on I2C=y && GENERIC_HARDIRQS |
@@ -492,6 +533,28 @@ config MFD_JANZ_CMODIO | |||
492 | host many different types of MODULbus daughterboards, including | 533 | host many different types of MODULbus daughterboards, including |
493 | CAN and GPIO controllers. | 534 | CAN and GPIO controllers. |
494 | 535 | ||
536 | config MFD_JZ4740_ADC | ||
537 | tristate "Support for the JZ4740 SoC ADC core" | ||
538 | select MFD_CORE | ||
539 | depends on MACH_JZ4740 | ||
540 | help | ||
541 | Say yes here if you want support for the ADC unit in the JZ4740 SoC. | ||
542 | This driver is necessary for jz4740-battery and jz4740-hwmon driver. | ||
543 | |||
544 | config MFD_TPS6586X | ||
545 | tristate "TPS6586x Power Management chips" | ||
546 | depends on I2C && GPIOLIB | ||
547 | select MFD_CORE | ||
548 | help | ||
549 | If you say yes here you get support for the TPS6586X series of | ||
550 | Power Management chips. | ||
551 | This driver provides common support for accessing the device, | ||
552 | additional drivers must be enabled in order to use the | ||
553 | functionality of the device. | ||
554 | |||
555 | This driver can also be built as a module. If so, the module | ||
556 | will be called tps6586x. | ||
557 | |||
495 | endif # MFD_SUPPORT | 558 | endif # MFD_SUPPORT |
496 | 559 | ||
497 | menu "Multimedia Capabilities Port drivers" | 560 | menu "Multimedia Capabilities Port drivers" |