diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-12 13:01:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-12 13:01:06 -0400 |
commit | e83ddb335468cdd9ea6e9767eb30b64d8ff176ce (patch) | |
tree | af7ca0b5be74b713970149efaebe682596523252 /drivers/mfd/Kconfig | |
parent | 14a4fa20a10d76eb98b7feb25be60735217929ba (diff) | |
parent | d0a11693967295772d2a7c22b6b37eb20684e709 (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6: (40 commits)
mfd: Fix incorrect kfree(i2c) in wm8994-core i2c_driver probe
mfd: Fix incorrect kfree(i2c) in wm831x-core i2c_driver probe
mfd: Fix incorrect kfree(i2c) in tps6507x i2c_driver probe
mfd: Add TPS6586x driver
mfd: Use macros instead of some constant magic numbers for menelaus
mfd: Fix menelaus mmc slot 2 misconfiguration
mfd: Missing slab.h includes
mfd: Fix wrong wm8350-core kfree in error path
mfd: Fix wm8994_device_init() return value
mfd: Avoid calling platform_device_put() twice in ucb1400 probe error path
mfd: Annotate tc6387xb probe/remove routines with __devinit/__devexit
mfd: Fix tc6387xb resource reclaim
mfd: Fix wrong goto labels for tc6393xb error handling
mfd: Get rid of now unused mc13783 private header
hwmon: Don't access struct mc13783 directly from mc13783-adc
mfd: New mc13783 function exposing flags
mfd: Check jz4740-adc kmalloc() result
mfd: Fix jz4740-adc resource reclaim in probe error path
mfd: Add WM8321 support
mfd: Add stmpe auto sleep feature
...
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 9da0e504bbe9..d75909e7cf2f 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 |
@@ -482,6 +523,28 @@ config MFD_JANZ_CMODIO | |||
482 | host many different types of MODULbus daughterboards, including | 523 | host many different types of MODULbus daughterboards, including |
483 | CAN and GPIO controllers. | 524 | CAN and GPIO controllers. |
484 | 525 | ||
526 | config MFD_JZ4740_ADC | ||
527 | tristate "Support for the JZ4740 SoC ADC core" | ||
528 | select MFD_CORE | ||
529 | depends on MACH_JZ4740 | ||
530 | help | ||
531 | Say yes here if you want support for the ADC unit in the JZ4740 SoC. | ||
532 | This driver is necessary for jz4740-battery and jz4740-hwmon driver. | ||
533 | |||
534 | config MFD_TPS6586X | ||
535 | tristate "TPS6586x Power Management chips" | ||
536 | depends on I2C && GPIOLIB | ||
537 | select MFD_CORE | ||
538 | help | ||
539 | If you say yes here you get support for the TPS6586X series of | ||
540 | Power Management chips. | ||
541 | This driver provides common support for accessing the device, | ||
542 | additional drivers must be enabled in order to use the | ||
543 | functionality of the device. | ||
544 | |||
545 | This driver can also be built as a module. If so, the module | ||
546 | will be called tps6586x. | ||
547 | |||
485 | endif # MFD_SUPPORT | 548 | endif # MFD_SUPPORT |
486 | 549 | ||
487 | menu "Multimedia Capabilities Port drivers" | 550 | menu "Multimedia Capabilities Port drivers" |