xref: /linux/drivers/mfd/Kconfig (revision 5608801baf0ffd06a428de3496fa10b3b7d789e9)
1a4e137abSRussell King#
2a4e137abSRussell King# Multifunction miscellaneous devices
3a4e137abSRussell King#
4a4e137abSRussell King
538270644SRandy Dunlapmenuconfig MFD_SUPPORT
638270644SRandy Dunlap	bool "Multifunction device drivers"
7e25df120SMartin Schwidefsky	depends on HAS_IOMEM
838270644SRandy Dunlap	default y
938270644SRandy Dunlap	help
1015742c8aSSamuel Ortiz	  Multifunction devices embed several functions (e.g. GPIOs,
1115742c8aSSamuel Ortiz	  touchscreens, keyboards, current regulators, power management chips,
1215742c8aSSamuel Ortiz	  etc...) in one single integrated circuit. They usually talk to the
1315742c8aSSamuel Ortiz	  main CPU through one or more IRQ lines and low speed data busses (SPI,
1415742c8aSSamuel Ortiz	  I2C, etc..). They appear as one single device to the main system
1515742c8aSSamuel Ortiz	  through the data bus and the MFD framework allows for sub devices
1615742c8aSSamuel Ortiz	  (a.k.a. functions) to appear as discrete platform devices.
1715742c8aSSamuel Ortiz	  MFDs are typically found on embedded platforms.
1815742c8aSSamuel Ortiz
1915742c8aSSamuel Ortiz	  This option alone does not add any kernel code.
2038270644SRandy Dunlap
2138270644SRandy Dunlapif MFD_SUPPORT
22b6d6454fSBen Dooks
23aa613de6SDmitry Baryshkovconfig MFD_CORE
24aa613de6SDmitry Baryshkov	tristate
25aa613de6SDmitry Baryshkov	default n
26aa613de6SDmitry Baryshkov
272cc50beeSHaojian Zhuangconfig MFD_88PM860X
282cc50beeSHaojian Zhuang	bool "Support Marvell 88PM8606/88PM8607"
298d002bdcSGeert Uytterhoeven	depends on I2C=y && GENERIC_HARDIRQS
302cc50beeSHaojian Zhuang	select MFD_CORE
312cc50beeSHaojian Zhuang	help
322cc50beeSHaojian Zhuang	  This supports for Marvell 88PM8606/88PM8607 Power Management IC.
332cc50beeSHaojian Zhuang	  This includes the I2C driver and the core APIs _only_, you have to
342cc50beeSHaojian Zhuang	  select individual components like voltage regulators, RTC and
352cc50beeSHaojian Zhuang	  battery-charger under the corresponding menus.
362cc50beeSHaojian Zhuang
37b6d6454fSBen Dooksconfig MFD_SM501
38b6d6454fSBen Dooks	tristate "Support for Silicon Motion SM501"
39b6d6454fSBen Dooks	 ---help---
40b6d6454fSBen Dooks	  This is the core driver for the Silicon Motion SM501 multimedia
41b6d6454fSBen Dooks	  companion chip. This device is a multifunction device which may
4201dd2fbfSMatt LaPlante	  provide numerous interfaces including USB host controller, USB gadget,
4301dd2fbfSMatt LaPlante	  asynchronous serial ports, audio functions, and a dual display video
44b6d6454fSBen Dooks	  interface. The device may be connected by PCI or local bus with
45b6d6454fSBen Dooks	  varying functions enabled.
46b6d6454fSBen Dooks
47f61be273SBen Dooksconfig MFD_SM501_GPIO
48f61be273SBen Dooks	bool "Export GPIO via GPIO layer"
492eedd604SSamuel Ortiz	depends on MFD_SM501 && GPIOLIB
50f61be273SBen Dooks	 ---help---
51f61be273SBen Dooks	 This option uses the gpio library layer to export the 64 GPIO
52f61be273SBen Dooks	 lines on the SM501. The platform data is used to supply the
53f61be273SBen Dooks	 base number for the first GPIO line to register.
54f61be273SBen Dooks
55fa9ff4b1SSamuel Ortizconfig MFD_ASIC3
56fa9ff4b1SSamuel Ortiz	bool "Support for Compaq ASIC3"
572eedd604SSamuel Ortiz	depends on GENERIC_HARDIRQS && GPIOLIB && ARM
589461f65aSPhilipp Zabel	select MFD_CORE
59fa9ff4b1SSamuel Ortiz	 ---help---
60fa9ff4b1SSamuel Ortiz	  This driver supports the ASIC3 multifunction chip found on many
61fa9ff4b1SSamuel Ortiz	  PDAs (mainly iPAQ and HTC based ones)
62fa9ff4b1SSamuel Ortiz
63ca26308cSMiguel Aguilarconfig MFD_DAVINCI_VOICECODEC
64ca26308cSMiguel Aguilar	tristate
65ca26308cSMiguel Aguilar	select MFD_CORE
66ca26308cSMiguel Aguilar
670931a4c6SDavid Brownellconfig MFD_DM355EVM_MSP
680931a4c6SDavid Brownell	bool "DaVinci DM355 EVM microcontroller"
691819ebcfSSamuel Ortiz	depends on I2C=y && MACH_DAVINCI_DM355_EVM
700931a4c6SDavid Brownell	help
710931a4c6SDavid Brownell	  This driver supports the MSP430 microcontroller used on these
720931a4c6SDavid Brownell	  boards.  MSP430 firmware manages resets and power sequencing,
730931a4c6SDavid Brownell	  inputs from buttons and the IR remote, LEDs, an RTC, and more.
740931a4c6SDavid Brownell
7503df0f62SCyril Chemparathyconfig MFD_TI_SSP
7603df0f62SCyril Chemparathy	tristate "TI Sequencer Serial Port support"
7703df0f62SCyril Chemparathy	depends on ARCH_DAVINCI_TNETV107X
7803df0f62SCyril Chemparathy	select MFD_CORE
7903df0f62SCyril Chemparathy	---help---
8003df0f62SCyril Chemparathy	  Say Y here if you want support for the Sequencer Serial Port
8103df0f62SCyril Chemparathy	  in a Texas Instruments TNETV107X SoC.
8203df0f62SCyril Chemparathy
8303df0f62SCyril Chemparathy	  To compile this driver as a module, choose M here: the
8403df0f62SCyril Chemparathy	  module will be called ti-ssp.
8503df0f62SCyril Chemparathy
86a1635b8fSPhilipp Zabelconfig HTC_EGPIO
87a1635b8fSPhilipp Zabel	bool "HTC EGPIO support"
887444a72eSMichael Buesch	depends on GENERIC_HARDIRQS && GPIOLIB && ARM
89a1635b8fSPhilipp Zabel	help
90a1635b8fSPhilipp Zabel	    This driver supports the CPLD egpio chip present on
91a1635b8fSPhilipp Zabel	    several HTC phones.  It provides basic support for input
92a1635b8fSPhilipp Zabel	    pins, output pins, and irqs.
93a1635b8fSPhilipp Zabel
945dc3339aSPhilipp Zabelconfig HTC_PASIC3
955dc3339aSPhilipp Zabel	tristate "HTC PASIC3 LED/DS1WM chip support"
960254a8f4SPhilipp Zabel	select MFD_CORE
975dc3339aSPhilipp Zabel	help
985dc3339aSPhilipp Zabel	  This core driver provides register access for the LED/DS1WM
995dc3339aSPhilipp Zabel	  chips labeled "AIC2" and "AIC3", found on HTC Blueangel and
1005dc3339aSPhilipp Zabel	  HTC Magician devices, respectively. Actual functionality is
1015dc3339aSPhilipp Zabel	  handled by the leds-pasic3 and ds1wm drivers.
1025dc3339aSPhilipp Zabel
1036048a3ddSCory Maccarroneconfig HTC_I2CPLD
1046048a3ddSCory Maccarrone	bool "HTC I2C PLD chip support"
105bef3e20cSRandy Dunlap	depends on I2C=y && GPIOLIB
1066048a3ddSCory Maccarrone	help
1076048a3ddSCory Maccarrone	  If you say yes here you get support for the supposed CPLD
1086048a3ddSCory Maccarrone	  found on omap850 HTC devices like the HTC Wizard and HTC Herald.
1096048a3ddSCory Maccarrone	  This device provides input and output GPIOs through an I2C
1106048a3ddSCory Maccarrone	  interface to one or more sub-chips.
1116048a3ddSCory Maccarrone
112d9105c2bSMarek Vašutconfig UCB1400_CORE
113d9105c2bSMarek Vašut	tristate "Philips UCB1400 Core driver"
114e4831802SRandy Dunlap	depends on AC97_BUS
1155a49a540SAndrew Morton	depends on GPIOLIB
116d9105c2bSMarek Vašut	help
117d9105c2bSMarek Vašut	  This enables support for the Philips UCB1400 core functions.
118d9105c2bSMarek Vašut	  The UCB1400 is an AC97 audio codec.
119d9105c2bSMarek Vašut
120d9105c2bSMarek Vašut	  To compile this driver as a module, choose M here: the
121d9105c2bSMarek Vašut	  module will be called ucb1400_core.
122d9105c2bSMarek Vašut
123798a8eeeSLinus Walleijconfig TPS6105X
124798a8eeeSLinus Walleij	tristate "TPS61050/61052 Boost Converters"
125798a8eeeSLinus Walleij	depends on I2C
1262edd3b69SLinus Walleij	select REGULATOR
127fc498fa2SGuenter Roeck	select MFD_CORE
1282edd3b69SLinus Walleij	select REGULATOR_FIXED_VOLTAGE
129798a8eeeSLinus Walleij	help
130798a8eeeSLinus Walleij	  This option enables a driver for the TP61050/TPS61052
131798a8eeeSLinus Walleij	  high-power "white LED driver". This boost converter is
132798a8eeeSLinus Walleij	  sometimes used for other things than white LEDs, and
133798a8eeeSLinus Walleij	  also contains a GPIO pin.
134798a8eeeSLinus Walleij
13587c13493SDavid Brownellconfig TPS65010
13687c13493SDavid Brownell	tristate "TPS6501x Power Management chips"
13787c13493SDavid Brownell	depends on I2C && GPIOLIB
13887c13493SDavid Brownell	default y if MACH_OMAP_H2 || MACH_OMAP_H3 || MACH_OMAP_OSK
13987c13493SDavid Brownell	help
14087c13493SDavid Brownell	  If you say yes here you get support for the TPS6501x series of
14187c13493SDavid Brownell	  Power Management chips.  These include voltage regulators,
14287c13493SDavid Brownell	  lithium ion/polymer battery charging, and other features that
14387c13493SDavid Brownell	  are often used in portable devices like cell phones and cameras.
14487c13493SDavid Brownell
14587c13493SDavid Brownell	  This driver can also be built as a module.  If so, the module
14687c13493SDavid Brownell	  will be called tps65010.
14787c13493SDavid Brownell
14831dd6a26STodd Fischerconfig TPS6507X
14931dd6a26STodd Fischer	tristate "TPS6507x Power Management / Touch Screen chips"
15031dd6a26STodd Fischer	select MFD_CORE
15131dd6a26STodd Fischer	depends on I2C
15231dd6a26STodd Fischer	help
15331dd6a26STodd Fischer	  If you say yes here you get support for the TPS6507x series of
15431dd6a26STodd Fischer	  Power Management / Touch Screen chips.  These include voltage
15531dd6a26STodd Fischer	  regulators, lithium ion/polymer battery charging, touch screen
15631dd6a26STodd Fischer	  and other features that are often used in portable devices.
15731dd6a26STodd Fischer	  This driver can also be built as a module.  If so, the module
15831dd6a26STodd Fischer	  will be called tps6507x.
15931dd6a26STodd Fischer
16037df003cSAxel Linconfig MFD_TPS6586X
16137df003cSAxel Lin	bool "TPS6586x Power Management chips"
16237df003cSAxel Lin	depends on I2C=y && GPIOLIB && GENERIC_HARDIRQS
16337df003cSAxel Lin	select MFD_CORE
16437df003cSAxel Lin	help
16537df003cSAxel Lin	  If you say yes here you get support for the TPS6586X series of
16637df003cSAxel Lin	  Power Management chips.
16737df003cSAxel Lin	  This driver provides common support for accessing the device,
16837df003cSAxel Lin	  additional drivers must be enabled in order to use the
16937df003cSAxel Lin	  functionality of the device.
17037df003cSAxel Lin
17137df003cSAxel Lin	  This driver can also be built as a module.  If so, the module
17237df003cSAxel Lin	  will be called tps6586x.
17337df003cSAxel Lin
17436e52873SMargarita Olayaconfig MFD_TPS65912
175*5608801bSMark Brown	bool
17636e52873SMargarita Olaya	depends on GPIOLIB
17736e52873SMargarita Olaya
17836e52873SMargarita Olayaconfig MFD_TPS65912_I2C
17936e52873SMargarita Olaya	bool "TPS95612 Power Management chip with I2C"
18036e52873SMargarita Olaya	select MFD_CORE
18136e52873SMargarita Olaya	select MFD_TPS65912
18236e52873SMargarita Olaya	depends on I2C=y && GPIOLIB
18336e52873SMargarita Olaya	help
18436e52873SMargarita Olaya	  If you say yes here you get support for the TPS65912 series of
18536e52873SMargarita Olaya	  PM chips with I2C interface.
18636e52873SMargarita Olaya
18736e52873SMargarita Olayaconfig MFD_TPS65912_SPI
18836e52873SMargarita Olaya	bool "TPS65912 Power Management chip with SPI"
18936e52873SMargarita Olaya	select MFD_CORE
19036e52873SMargarita Olaya	select MFD_TPS65912
19136e52873SMargarita Olaya	depends on SPI_MASTER && GPIOLIB
19236e52873SMargarita Olaya	help
19336e52873SMargarita Olaya	  If you say yes here you get support for the TPS65912 series of
19436e52873SMargarita Olaya	  PM chips with SPI interface.
19536e52873SMargarita Olaya
19688e75cc3SDavid Brownellconfig MENELAUS
19788e75cc3SDavid Brownell	bool "Texas Instruments TWL92330/Menelaus PM chip"
198088ef950STony Lindgren	depends on I2C=y && ARCH_OMAP2
19988e75cc3SDavid Brownell	help
20088e75cc3SDavid Brownell	  If you say yes here you get support for the Texas Instruments
20188e75cc3SDavid Brownell	  TWL92330/Menelaus Power Management chip. This include voltage
202692105b8SMatt LaPlante	  regulators, Dual slot memory card transceivers, real-time clock
20388e75cc3SDavid Brownell	  and other features that are often used in portable devices like
20488e75cc3SDavid Brownell	  cell phones and PDAs.
20588e75cc3SDavid Brownell
206a603a7faSDavid Brownellconfig TWL4030_CORE
207e8deb28cSBalaji T K	bool "Texas Instruments TWL4030/TWL5030/TWL6030/TPS659x0 Support"
20867460a7cSDavid Brownell	depends on I2C=y && GENERIC_HARDIRQS
209a603a7faSDavid Brownell	help
210e8deb28cSBalaji T K	  Say yes here if you have TWL4030 / TWL6030 family chip on your board.
211a603a7faSDavid Brownell	  This core driver provides register access and IRQ handling
212a603a7faSDavid Brownell	  facilities, and registers devices for the various functions
213a603a7faSDavid Brownell	  so that function-specific drivers can bind to them.
214a603a7faSDavid Brownell
215a603a7faSDavid Brownell	  These multi-function chips are found on many OMAP2 and OMAP3
216a603a7faSDavid Brownell	  boards, providing power management, RTC, GPIO, keypad, a
217a603a7faSDavid Brownell	  high speed USB OTG transceiver, an audio codec (on most
218a603a7faSDavid Brownell	  versions) and many other features.
219a603a7faSDavid Brownell
220f99c1d4fSKeerthyconfig TWL4030_MADC
221f99c1d4fSKeerthy	tristate "Texas Instruments TWL4030 MADC"
222f99c1d4fSKeerthy	depends on TWL4030_CORE
223f99c1d4fSKeerthy	help
224f99c1d4fSKeerthy	This driver provides support for triton TWL4030-MADC. The
225f99c1d4fSKeerthy	driver supports both RT and SW conversion methods.
226f99c1d4fSKeerthy
227f99c1d4fSKeerthy	This driver can be built as a module. If so it will be
228f99c1d4fSKeerthy	named twl4030-madc
229f99c1d4fSKeerthy
230ebf0bd36SAmit Kucheriaconfig TWL4030_POWER
231ebf0bd36SAmit Kucheria	bool "Support power resources on TWL4030 family chips"
232ebf0bd36SAmit Kucheria	depends on TWL4030_CORE && ARM
233ebf0bd36SAmit Kucheria	help
234ebf0bd36SAmit Kucheria	  Say yes here if you want to use the power resources on the
235ebf0bd36SAmit Kucheria	  TWL4030 family chips.  Most of these resources are regulators,
236ebf0bd36SAmit Kucheria	  which have a separate driver; some are control signals, such
237ebf0bd36SAmit Kucheria	  as clock request handshaking.
238ebf0bd36SAmit Kucheria
239ebf0bd36SAmit Kucheria	  This driver uses board-specific data to initialize the resources
24025985edcSLucas De Marchi	  and load scripts controlling which resources are switched off/on
241ebf0bd36SAmit Kucheria	  or reset when a sleep, wakeup or warm reset event occurs.
242ebf0bd36SAmit Kucheria
24357fe7251SPeter Ujfalusiconfig MFD_TWL4030_AUDIO
2440b83ddebSPeter Ujfalusi	bool
2450b83ddebSPeter Ujfalusi	depends on TWL4030_CORE
2460b83ddebSPeter Ujfalusi	select MFD_CORE
2470b83ddebSPeter Ujfalusi	default n
2480b83ddebSPeter Ujfalusi
24931fc03dfSHemanth Vconfig TWL6030_PWM
25031fc03dfSHemanth V	tristate "TWL6030 PWM (Pulse Width Modulator) Support"
25131fc03dfSHemanth V	depends on TWL4030_CORE
25231fc03dfSHemanth V	select HAVE_PWM
25331fc03dfSHemanth V	default n
25431fc03dfSHemanth V	help
25531fc03dfSHemanth V	  Say yes here if you want support for TWL6030 PWM.
25631fc03dfSHemanth V	  This is used to control charging LED brightness.
25731fc03dfSHemanth V
258f19b2823SMisael Lopez Cruzconfig TWL6040_CORE
259f19b2823SMisael Lopez Cruz	bool
260f19b2823SMisael Lopez Cruz	depends on TWL4030_CORE && GENERIC_HARDIRQS
261f19b2823SMisael Lopez Cruz	select MFD_CORE
262f19b2823SMisael Lopez Cruz	default n
263f19b2823SMisael Lopez Cruz
26427e34995SRabin Vincentconfig MFD_STMPE
26527e34995SRabin Vincent	bool "Support STMicroelectronics STMPE"
26627e34995SRabin Vincent	depends on I2C=y && GENERIC_HARDIRQS
26727e34995SRabin Vincent	select MFD_CORE
26827e34995SRabin Vincent	help
26927e34995SRabin Vincent	  Support for the STMPE family of I/O Expanders from
27027e34995SRabin Vincent	  STMicroelectronics.
27127e34995SRabin Vincent
27227e34995SRabin Vincent	  Currently supported devices are:
27327e34995SRabin Vincent
27427e34995SRabin Vincent		STMPE811: GPIO, Touchscreen
27527e34995SRabin Vincent		STMPE1601: GPIO, Keypad
27627e34995SRabin Vincent		STMPE2401: GPIO, Keypad
27727e34995SRabin Vincent		STMPE2403: GPIO, Keypad
27827e34995SRabin Vincent
27927e34995SRabin Vincent	  This driver provides common support for accessing the device,
28027e34995SRabin Vincent	  additional drivers must be enabled in order to use the functionality
28127e34995SRabin Vincent	  of the device.  Currently available sub drivers are:
28227e34995SRabin Vincent
28327e34995SRabin Vincent		GPIO: stmpe-gpio
28427e34995SRabin Vincent		Keypad: stmpe-keypad
28527e34995SRabin Vincent		Touchscreen: stmpe-ts
28627e34995SRabin Vincent
287f4e8afdcSSundar Iyerconfig MFD_TC3589X
288f4e8afdcSSundar Iyer	bool "Support Toshiba TC35892 and variants"
289b4ecd326SRabin Vincent	depends on I2C=y && GENERIC_HARDIRQS
290b4ecd326SRabin Vincent	select MFD_CORE
291b4ecd326SRabin Vincent	help
292f4e8afdcSSundar Iyer	  Support for the Toshiba TC35892 and variants I/O Expander.
293b4ecd326SRabin Vincent
294b4ecd326SRabin Vincent	  This driver provides common support for accessing the device,
295b4ecd326SRabin Vincent	  additional drivers must be enabled in order to use the
296b4ecd326SRabin Vincent	  functionality of the device.
297b4ecd326SRabin Vincent
2981c2c30acSSamuel Ortizconfig MFD_TMIO
2991c2c30acSSamuel Ortiz	bool
3001c2c30acSSamuel Ortiz	default n
3011c2c30acSSamuel Ortiz
3021f192015SIan Moltonconfig MFD_T7L66XB
3031f192015SIan Molton	bool "Support Toshiba T7L66XB"
3049ca68233SAl Viro	depends on ARM && HAVE_CLK
3051f192015SIan Molton	select MFD_CORE
3061c2c30acSSamuel Ortiz	select MFD_TMIO
3071f192015SIan Molton	help
3081f192015SIan Molton	  Support for Toshiba Mobile IO Controller T7L66XB
3091f192015SIan Molton
310cbdfb426SIan Moltonconfig MFD_TC6387XB
311cbdfb426SIan Molton	bool "Support Toshiba TC6387XB"
3129ca68233SAl Viro	depends on ARM && HAVE_CLK
313cbdfb426SIan Molton	select MFD_CORE
3141c2c30acSSamuel Ortiz	select MFD_TMIO
315cbdfb426SIan Molton	help
316cbdfb426SIan Molton	  Support for Toshiba Mobile IO Controller TC6387XB
317cbdfb426SIan Molton
318d6315949SDmitry Baryshkovconfig MFD_TC6393XB
319d6315949SDmitry Baryshkov	bool "Support Toshiba TC6393XB"
3208d25b36bSAdrian Bunk	depends on GPIOLIB && ARM
321f024ff10SDmitry Baryshkov	select MFD_CORE
3221c2c30acSSamuel Ortiz	select MFD_TMIO
323d6315949SDmitry Baryshkov	help
324d6315949SDmitry Baryshkov	  Support for Toshiba Mobile IO Controller TC6393XB
325d6315949SDmitry Baryshkov
3268e2eaabfSSamuel Ortizconfig PMIC_DA903X
3278e2eaabfSSamuel Ortiz	bool "Dialog Semiconductor DA9030/DA9034 PMIC Support"
3288e2eaabfSSamuel Ortiz	depends on I2C=y
3298e2eaabfSSamuel Ortiz	help
3308e2eaabfSSamuel Ortiz	  Say yes here to support for Dialog Semiconductor DA9030 (a.k.a
3318e2eaabfSSamuel Ortiz	  ARAVA) and DA9034 (a.k.a MICCO), these are Power Management IC
3328e2eaabfSSamuel Ortiz	  usually found on PXA processors-based platforms. This includes
3338e2eaabfSSamuel Ortiz	  the I2C driver and the core APIs _only_, you have to select
3348e2eaabfSSamuel Ortiz	  individual components like LCD backlight, voltage regulators,
3358e2eaabfSSamuel Ortiz	  LEDs and battery-charger under the corresponding menus.
3368e2eaabfSSamuel Ortiz
337a5736e0bSMichael Hennerichconfig PMIC_ADP5520
338a5736e0bSMichael Hennerich	bool "Analog Devices ADP5520/01 MFD PMIC Core Support"
339a5736e0bSMichael Hennerich	depends on I2C=y
340a5736e0bSMichael Hennerich	help
341a5736e0bSMichael Hennerich	  Say yes here to add support for Analog Devices AD5520 and ADP5501,
342a5736e0bSMichael Hennerich	  Multifunction Power Management IC. This includes
343a5736e0bSMichael Hennerich	  the I2C driver and the core APIs _only_, you have to select
344a5736e0bSMichael Hennerich	  individual components like LCD backlight, LEDs, GPIOs and Kepad
345a5736e0bSMichael Hennerich	  under the corresponding menus.
346a5736e0bSMichael Hennerich
347d50f8f33SHaojian Zhuangconfig MFD_MAX8925
3481f1cf8f9SHaojian Zhuang	bool "Maxim Semiconductor MAX8925 PMIC Support"
3498d002bdcSGeert Uytterhoeven	depends on I2C=y && GENERIC_HARDIRQS
3501ad99893SHaojian Zhuang	select MFD_CORE
351d50f8f33SHaojian Zhuang	help
352d50f8f33SHaojian Zhuang	  Say yes here to support for Maxim Semiconductor MAX8925. This is
353d50f8f33SHaojian Zhuang	  a Power Management IC. This driver provies common support for
354d50f8f33SHaojian Zhuang	  accessing the device, additional drivers must be enabled in order
355d50f8f33SHaojian Zhuang	  to use the functionality of the device.
356d50f8f33SHaojian Zhuang
357527e7e9aSMyungJoo Hamconfig MFD_MAX8997
358527e7e9aSMyungJoo Ham	bool "Maxim Semiconductor MAX8997/8966 PMIC Support"
359527e7e9aSMyungJoo Ham	depends on I2C=y && GENERIC_HARDIRQS
360527e7e9aSMyungJoo Ham	select MFD_CORE
361527e7e9aSMyungJoo Ham	help
362527e7e9aSMyungJoo Ham	  Say yes here to support for Maxim Semiconductor MAX8998/8966.
363527e7e9aSMyungJoo Ham	  This is a Power Management IC with RTC, Flash, Fuel Gauge, Haptic,
364527e7e9aSMyungJoo Ham	  MUIC controls on chip.
365d7e8c01aSRandy Dunlap	  This driver provides common support for accessing the device;
366527e7e9aSMyungJoo Ham	  additional drivers must be enabled in order to use the functionality
367527e7e9aSMyungJoo Ham	  of the device.
368527e7e9aSMyungJoo Ham
369156f2528SKyungmin Parkconfig MFD_MAX8998
370f8539ddcSKyungmin Park	bool "Maxim Semiconductor MAX8998/National LP3974 PMIC Support"
3712c7e6f57SJoonyoung Shim	depends on I2C=y && GENERIC_HARDIRQS
372156f2528SKyungmin Park	select MFD_CORE
373156f2528SKyungmin Park	help
374f8539ddcSKyungmin Park	  Say yes here to support for Maxim Semiconductor MAX8998 and
375f8539ddcSKyungmin Park	  National Semiconductor LP3974. This is a Power Management IC.
376f8539ddcSKyungmin Park	  This driver provies common support for accessing the device,
377f8539ddcSKyungmin Park	  additional drivers must be enabled in order to use the functionality
378f8539ddcSKyungmin Park	  of the device.
379156f2528SKyungmin Park
3801d9f9f04SMark Brownconfig MFD_WM8400
3811d9f9f04SMark Brown	tristate "Support Wolfson Microelectronics WM8400"
382b8380c1aSMark Brown	select MFD_CORE
3839c366452SMark Brown	depends on I2C
3841d9f9f04SMark Brown	help
3851d9f9f04SMark Brown	  Support for the Wolfson Microelecronics WM8400 PMIC and audio
3869e5aca58SMark Brown	  CODEC.  This driver provides common support for accessing
3871d9f9f04SMark Brown	  the device, additional drivers must be enabled in order to use
3881d9f9f04SMark Brown	  the functionality of the device.
3891d9f9f04SMark Brown
390b11062b9SMark Brownconfig MFD_WM831X
391e5b48684SMark Brown	bool
392e5b48684SMark Brown	depends on GENERIC_HARDIRQS
393e5b48684SMark Brown
394e5b48684SMark Brownconfig MFD_WM831X_I2C
395e5b48684SMark Brown	bool "Support Wolfson Microelectronics WM831x/2x PMICs with I2C"
396b11062b9SMark Brown	select MFD_CORE
397e5b48684SMark Brown	select MFD_WM831X
3988d002bdcSGeert Uytterhoeven	depends on I2C=y && GENERIC_HARDIRQS
399b11062b9SMark Brown	help
400e5b48684SMark Brown	  Support for the Wolfson Microelecronics WM831x and WM832x PMICs
401e5b48684SMark Brown	  when controlled using I2C.  This driver provides common support
402e5b48684SMark Brown	  for accessing the device, additional drivers must be enabled in
403e5b48684SMark Brown	  order to use the functionality of the device.
404b11062b9SMark Brown
4052aa13b9eSMark Brownconfig MFD_WM831X_SPI
4062aa13b9eSMark Brown	bool "Support Wolfson Microelectronics WM831x/2x PMICs with SPI"
4072aa13b9eSMark Brown	select MFD_CORE
4082aa13b9eSMark Brown	select MFD_WM831X
4092aa13b9eSMark Brown	depends on SPI_MASTER && GENERIC_HARDIRQS
4102aa13b9eSMark Brown	help
4112aa13b9eSMark Brown	  Support for the Wolfson Microelecronics WM831x and WM832x PMICs
4122aa13b9eSMark Brown	  when controlled using SPI.  This driver provides common support
4132aa13b9eSMark Brown	  for accessing the device, additional drivers must be enabled in
4142aa13b9eSMark Brown	  order to use the functionality of the device.
4152aa13b9eSMark Brown
41689b4012bSMark Brownconfig MFD_WM8350
417ecf926bcSMark Brown	bool
4188d002bdcSGeert Uytterhoeven	depends on GENERIC_HARDIRQS
41989b4012bSMark Brown
42089b4012bSMark Brownconfig MFD_WM8350_CONFIG_MODE_0
42189b4012bSMark Brown	bool
42289b4012bSMark Brown	depends on MFD_WM8350
42389b4012bSMark Brown
42489b4012bSMark Brownconfig MFD_WM8350_CONFIG_MODE_1
42589b4012bSMark Brown	bool
42689b4012bSMark Brown	depends on MFD_WM8350
42789b4012bSMark Brown
42889b4012bSMark Brownconfig MFD_WM8350_CONFIG_MODE_2
42989b4012bSMark Brown	bool
43089b4012bSMark Brown	depends on MFD_WM8350
43189b4012bSMark Brown
43289b4012bSMark Brownconfig MFD_WM8350_CONFIG_MODE_3
43389b4012bSMark Brown	bool
43489b4012bSMark Brown	depends on MFD_WM8350
43589b4012bSMark Brown
436ca23f8c1SMark Brownconfig MFD_WM8351_CONFIG_MODE_0
437ca23f8c1SMark Brown	bool
438ca23f8c1SMark Brown	depends on MFD_WM8350
439ca23f8c1SMark Brown
440ca23f8c1SMark Brownconfig MFD_WM8351_CONFIG_MODE_1
441ca23f8c1SMark Brown	bool
442ca23f8c1SMark Brown	depends on MFD_WM8350
443ca23f8c1SMark Brown
444ca23f8c1SMark Brownconfig MFD_WM8351_CONFIG_MODE_2
445ca23f8c1SMark Brown	bool
446ca23f8c1SMark Brown	depends on MFD_WM8350
447ca23f8c1SMark Brown
448ca23f8c1SMark Brownconfig MFD_WM8351_CONFIG_MODE_3
449ca23f8c1SMark Brown	bool
450ca23f8c1SMark Brown	depends on MFD_WM8350
451ca23f8c1SMark Brown
45296920630SMark Brownconfig MFD_WM8352_CONFIG_MODE_0
45396920630SMark Brown	bool
45496920630SMark Brown	depends on MFD_WM8350
45596920630SMark Brown
45696920630SMark Brownconfig MFD_WM8352_CONFIG_MODE_1
45796920630SMark Brown	bool
45896920630SMark Brown	depends on MFD_WM8350
45996920630SMark Brown
46096920630SMark Brownconfig MFD_WM8352_CONFIG_MODE_2
46196920630SMark Brown	bool
46296920630SMark Brown	depends on MFD_WM8350
46396920630SMark Brown
46496920630SMark Brownconfig MFD_WM8352_CONFIG_MODE_3
46596920630SMark Brown	bool
46696920630SMark Brown	depends on MFD_WM8350
46796920630SMark Brown
468c661a0b9SMark Brownconfig MFD_WM8350_I2C
469ecf926bcSMark Brown	bool "Support Wolfson Microelectronics WM8350 with I2C"
470c661a0b9SMark Brown	select MFD_WM8350
4718d002bdcSGeert Uytterhoeven	depends on I2C=y && GENERIC_HARDIRQS
472c661a0b9SMark Brown	help
473c661a0b9SMark Brown	  The WM8350 is an integrated audio and power management
474c661a0b9SMark Brown	  subsystem with watchdog and RTC functionality for embedded
475c661a0b9SMark Brown	  systems.  This option enables core support for the WM8350 with
476c661a0b9SMark Brown	  I2C as the control interface.  Additional options must be
477c661a0b9SMark Brown	  selected to enable support for the functionality of the chip.
478c661a0b9SMark Brown
4799e501086SMark Brownconfig MFD_WM8994
480c9fbf7e0SMark Brown	bool "Support Wolfson Microelectronics WM8994"
4819e501086SMark Brown	select MFD_CORE
482c9fbf7e0SMark Brown	depends on I2C=y && GENERIC_HARDIRQS
4839e501086SMark Brown	help
4849e501086SMark Brown	  The WM8994 is a highly integrated hi-fi CODEC designed for
4859e501086SMark Brown	  smartphone applicatiosn.  As well as audio functionality it
4869e501086SMark Brown	  has on board GPIO and regulator functionality which is
4879e501086SMark Brown	  supported via the relevant subsystems.  This driver provides
4889e501086SMark Brown	  core support for the WM8994, in order to use the actual
4899e501086SMark Brown	  functionaltiy of the device other drivers must be enabled.
4909e501086SMark Brown
491f52046b1SBalaji Raoconfig MFD_PCF50633
492f52046b1SBalaji Rao	tristate "Support for NXP PCF50633"
493f52046b1SBalaji Rao	depends on I2C
494f52046b1SBalaji Rao	help
495f52046b1SBalaji Rao	  Say yes here if you have NXP PCF50633 chip on your board.
496f52046b1SBalaji Rao	  This core driver provides register access and IRQ handling
497f52046b1SBalaji Rao	  facilities, and registers devices for the various functions
498f52046b1SBalaji Rao	  so that function-specific drivers can bind to them.
499f52046b1SBalaji Rao
5001305134eSAxel Linconfig PCF50633_ADC
5011305134eSAxel Lin	tristate "Support for NXP PCF50633 ADC"
5021305134eSAxel Lin	depends on MFD_PCF50633
5031305134eSAxel Lin	help
5041305134eSAxel Lin	 Say yes here if you want to include support for ADC in the
5051305134eSAxel Lin	 NXP PCF50633 chip.
5061305134eSAxel Lin
5071305134eSAxel Linconfig PCF50633_GPIO
5081305134eSAxel Lin	tristate "Support for NXP PCF50633 GPIO"
5091305134eSAxel Lin	depends on MFD_PCF50633
5101305134eSAxel Lin	help
5111305134eSAxel Lin	 Say yes here if you want to include support GPIO for pins on
5121305134eSAxel Lin	 the PCF50633 chip.
5131305134eSAxel Lin
5148238addcSSascha Hauerconfig MFD_MC13783
5158e005935SUwe Kleine-König	tristate
5168e005935SUwe Kleine-König
5178e005935SUwe Kleine-Königconfig MFD_MC13XXX
5188e005935SUwe Kleine-König	tristate "Support Freescale MC13783 and MC13892"
5198238addcSSascha Hauer	depends on SPI_MASTER
5208238addcSSascha Hauer	select MFD_CORE
5218e005935SUwe Kleine-König	select MFD_MC13783
5228238addcSSascha Hauer	help
5238e005935SUwe Kleine-König	  Support for the Freescale (Atlas) PMIC and audio CODECs
5248e005935SUwe Kleine-König	  MC13783 and MC13892.
5258238addcSSascha Hauer	  This driver provides common support for accessing  the device,
5268238addcSSascha Hauer	  additional drivers must be enabled in order to use the
5278238addcSSascha Hauer	  functionality of the device.
5288238addcSSascha Hauer
529fa661258SMattias Wallinconfig ABX500_CORE
530fa661258SMattias Wallin	bool "ST-Ericsson ABX500 Mixed Signal Circuit register functions"
53147c16975SMattias Wallin	default y if ARCH_U300 || ARCH_U8500
532fa661258SMattias Wallin	help
533fa661258SMattias Wallin	  Say yes here if you have the ABX500 Mixed Signal IC family
534fa661258SMattias Wallin	  chips. This core driver expose register access functions.
535fa661258SMattias Wallin	  Functionality specific drivers using these functions can
536fa661258SMattias Wallin	  remain unchanged when IC changes. Binding of the functions to
537fa661258SMattias Wallin	  actual register access is done by the IC core driver.
538fa661258SMattias Wallin
53914fa5691SLinus Walleijconfig AB3100_CORE
5402071db48SLinus Walleij	bool "ST-Ericsson AB3100 Mixed Signal Circuit core functions"
541fa661258SMattias Wallin	depends on I2C=y && ABX500_CORE
5428c96aefbSLinus Walleij	select MFD_CORE
54314fa5691SLinus Walleij	default y if ARCH_U300
54414fa5691SLinus Walleij	help
54514fa5691SLinus Walleij	  Select this to enable the AB3100 Mixed Signal IC core
54614fa5691SLinus Walleij	  functionality. This connects to a AB3100 on the I2C bus
54714fa5691SLinus Walleij	  and expose a number of symbols needed for dependent devices
54814fa5691SLinus Walleij	  to read and write registers and subscribe to events from
54914fa5691SLinus Walleij	  this multi-functional IC. This is needed to use other features
55014fa5691SLinus Walleij	  of the AB3100 such as battery-backed RTC, charging control,
55114fa5691SLinus Walleij	  LEDs, vibrator, system power and temperature, power management
55214fa5691SLinus Walleij	  and ALSA sound.
55314fa5691SLinus Walleij
55412992dd8SLinus Walleijconfig AB3100_OTP
55512992dd8SLinus Walleij	tristate "ST-Ericsson AB3100 OTP functions"
55612992dd8SLinus Walleij	depends on AB3100_CORE
55712992dd8SLinus Walleij	default y if AB3100_CORE
55812992dd8SLinus Walleij	help
55912992dd8SLinus Walleij	  Select this to enable the AB3100 Mixed Signal IC OTP (one-time
56012992dd8SLinus Walleij	  programmable memory) support. This exposes a sysfs file to read
56112992dd8SLinus Walleij	  out OTP values.
56212992dd8SLinus Walleij
56313a09f93SDaniel Ribeiroconfig EZX_PCAP
56413a09f93SDaniel Ribeiro	bool "PCAP Support"
56513a09f93SDaniel Ribeiro	depends on GENERIC_HARDIRQS && SPI_MASTER
56613a09f93SDaniel Ribeiro	help
56713a09f93SDaniel Ribeiro	  This enables the PCAP ASIC present on EZX Phones. This is
56813a09f93SDaniel Ribeiro	  needed for MMC, TouchScreen, Sound, USB, etc..
56913a09f93SDaniel Ribeiro
57062579266SRabin Vincentconfig AB8500_CORE
57162579266SRabin Vincent	bool "ST-Ericsson AB8500 Mixed Signal Power Management chip"
5726680d940SSundar Iyer	depends on GENERIC_HARDIRQS && ABX500_CORE
57362579266SRabin Vincent	select MFD_CORE
5740c41839eSSrinidhi Kasagar	help
57562579266SRabin Vincent	  Select this option to enable access to AB8500 power management
5766680d940SSundar Iyer	  chip. This connects to U8500 either on the SSP/SPI bus (deprecated
5776680d940SSundar Iyer	  since hardware version v1.0) or the I2C bus via PRCMU. It also adds
5786680d940SSundar Iyer	  the irq_chip parts for handling the Mixed Signal chip events.
5790c41839eSSrinidhi Kasagar	  This chip embeds various other multimedia funtionalities as well.
5800c41839eSSrinidhi Kasagar
58139368edaSMattias Wallinconfig AB8500_I2C_CORE
58239368edaSMattias Wallin	bool "AB8500 register access via PRCMU I2C"
583650c2a21SLinus Walleij	depends on AB8500_CORE && MFD_DB8500_PRCMU
58439368edaSMattias Wallin	default y
58539368edaSMattias Wallin	help
58639368edaSMattias Wallin	  This enables register access to the AB8500 chip via PRCMU I2C.
58739368edaSMattias Wallin	  The AB8500 chip can be accessed via SPI or I2C. On DB8500 hardware
58839368edaSMattias Wallin	  the I2C bus is connected to the Power Reset
58939368edaSMattias Wallin	  and Mangagement Unit, PRCMU.
59039368edaSMattias Wallin
5915814fc35SMattias Wallinconfig AB8500_DEBUG
5925814fc35SMattias Wallin       bool "Enable debug info via debugfs"
5935814fc35SMattias Wallin       depends on AB8500_CORE && DEBUG_FS
5945814fc35SMattias Wallin       default y if DEBUG_FS
5955814fc35SMattias Wallin       help
5965814fc35SMattias Wallin         Select this option if you want debug information using the debug
5975814fc35SMattias Wallin         filesystem, debugfs.
5985814fc35SMattias Wallin
599dae2db30SArun Murthyconfig AB8500_GPADC
600dae2db30SArun Murthy	bool "AB8500 GPADC driver"
601dae2db30SArun Murthy	depends on AB8500_CORE && REGULATOR_AB8500
602dae2db30SArun Murthy	default y
603dae2db30SArun Murthy	help
604dae2db30SArun Murthy	  AB8500 GPADC driver used to convert Acc and battery/ac/usb voltage
605dae2db30SArun Murthy
60609bcb3f3SMattias Wallinconfig AB3550_CORE
60709bcb3f3SMattias Wallin        bool "ST-Ericsson AB3550 Mixed Signal Circuit core functions"
60809bcb3f3SMattias Wallin	select MFD_CORE
60909bcb3f3SMattias Wallin	depends on I2C=y && GENERIC_HARDIRQS && ABX500_CORE
61009bcb3f3SMattias Wallin	help
61109bcb3f3SMattias Wallin	  Select this to enable the AB3550 Mixed Signal IC core
61209bcb3f3SMattias Wallin	  functionality. This connects to a AB3550 on the I2C bus
61309bcb3f3SMattias Wallin	  and expose a number of symbols needed for dependent devices
61409bcb3f3SMattias Wallin	  to read and write registers and subscribe to events from
61509bcb3f3SMattias Wallin	  this multi-functional IC. This is needed to use other features
61609bcb3f3SMattias Wallin	  of the AB3550 such as battery-backed RTC, charging control,
61709bcb3f3SMattias Wallin	  LEDs, vibrator, system power and temperature, power management
61809bcb3f3SMattias Wallin	  and ALSA sound.
61909bcb3f3SMattias Wallin
620650c2a21SLinus Walleijconfig MFD_DB8500_PRCMU
621650c2a21SLinus Walleij	bool "ST-Ericsson DB8500 Power Reset Control Management Unit"
622650c2a21SLinus Walleij	depends on UX500_SOC_DB8500
623650c2a21SLinus Walleij	select MFD_CORE
624650c2a21SLinus Walleij	help
625650c2a21SLinus Walleij	  Select this option to enable support for the DB8500 Power Reset
626650c2a21SLinus Walleij	  and Control Management Unit. This is basically an autonomous
627650c2a21SLinus Walleij	  system controller running an XP70 microprocessor, which is accessed
628650c2a21SLinus Walleij	  through a register map.
629650c2a21SLinus Walleij
6308317797cSLinus Walleijconfig MFD_DB5500_PRCMU
6318317797cSLinus Walleij	bool "ST-Ericsson DB5500 Power Reset Control Management Unit"
6328317797cSLinus Walleij	depends on UX500_SOC_DB5500
6338317797cSLinus Walleij	select MFD_CORE
6348317797cSLinus Walleij	help
6358317797cSLinus Walleij	  Select this option to enable support for the DB5500 Power Reset
6368317797cSLinus Walleij	  and Control Management Unit. This is basically an autonomous
6378317797cSLinus Walleij	  system controller running an XP70 microprocessor, which is accessed
6388317797cSLinus Walleij	  through a register map.
6398317797cSLinus Walleij
640f71e1afdSAndres Salomonconfig MFD_CS5535
641f71e1afdSAndres Salomon	tristate "Support for CS5535 and CS5536 southbridge core functions"
642f71e1afdSAndres Salomon	select MFD_CORE
64315b7cf14SAndres Salomon	depends on PCI && X86
644f71e1afdSAndres Salomon	---help---
645f71e1afdSAndres Salomon	  This is the core driver for CS5535/CS5536 MFD functions.  This is
646f71e1afdSAndres Salomon          necessary for using the board's GPIO and MFGPT functionality.
647f71e1afdSAndres Salomon
6488edbede9SRichard Röjforsconfig MFD_TIMBERDALE
6498edbede9SRichard Röjfors	tristate "Support for the Timberdale FPGA"
6508edbede9SRichard Röjfors	select MFD_CORE
651546e29b6SRandy Dunlap	depends on PCI && GPIOLIB
6528edbede9SRichard Röjfors	---help---
6538edbede9SRichard Röjfors	This is the core driver for the timberdale FPGA. This device is a
6548edbede9SRichard Röjfors	multifunction device which exposes numerous platform devices.
6558edbede9SRichard Röjfors
6568edbede9SRichard Röjfors	The timberdale FPGA can be found on the Intel Atom development board
6578edbede9SRichard Röjfors	for in-vehicle infontainment, called Russellville.
658e82c60aeSDenis Turischev
659e82c60aeSDenis Turischevconfig LPC_SCH
660e82c60aeSDenis Turischev	tristate "Intel SCH LPC"
661e82c60aeSDenis Turischev	depends on PCI
662e82c60aeSDenis Turischev	select MFD_CORE
663e82c60aeSDenis Turischev	help
664e82c60aeSDenis Turischev	  LPC bridge function of the Intel SCH provides support for
665e82c60aeSDenis Turischev	  System Management Bus and General Purpose I/O.
666e82c60aeSDenis Turischev
667e090d506SFlorian Fainelliconfig MFD_RDC321X
668e090d506SFlorian Fainelli	tristate "Support for RDC-R321x southbridge"
669e090d506SFlorian Fainelli	select MFD_CORE
670e090d506SFlorian Fainelli	depends on PCI
671e090d506SFlorian Fainelli	help
672e090d506SFlorian Fainelli	  Say yes here if you want to have support for the RDC R-321x SoC
673e090d506SFlorian Fainelli	  southbridge which provides access to GPIOs and Watchdog using the
674e090d506SFlorian Fainelli	  southbridge PCI device configuration space.
675e090d506SFlorian Fainelli
676bd358132SIra W. Snyderconfig MFD_JANZ_CMODIO
677bd358132SIra W. Snyder	tristate "Support for Janz CMOD-IO PCI MODULbus Carrier Board"
678bd358132SIra W. Snyder	select MFD_CORE
679bd358132SIra W. Snyder	depends on PCI
680bd358132SIra W. Snyder	help
681bd358132SIra W. Snyder	  This is the core driver for the Janz CMOD-IO PCI MODULbus
682bd358132SIra W. Snyder	  carrier board. This device is a PCI to MODULbus bridge which may
683bd358132SIra W. Snyder	  host many different types of MODULbus daughterboards, including
684bd358132SIra W. Snyder	  CAN and GPIO controllers.
685bd358132SIra W. Snyder
68691f4debfSLars-Peter Clausenconfig MFD_JZ4740_ADC
687914e6d4eSLars-Peter Clausen	bool "Support for the JZ4740 SoC ADC core"
68891f4debfSLars-Peter Clausen	select MFD_CORE
689914e6d4eSLars-Peter Clausen	select GENERIC_IRQ_CHIP
69091f4debfSLars-Peter Clausen	depends on MACH_JZ4740
69191f4debfSLars-Peter Clausen	help
69291f4debfSLars-Peter Clausen	  Say yes here if you want support for the ADC unit in the JZ4740 SoC.
69391f4debfSLars-Peter Clausen	  This driver is necessary for jz4740-battery and jz4740-hwmon driver.
69491f4debfSLars-Peter Clausen
695375fc77bSDaniel Drakeconfig MFD_VX855
696375fc77bSDaniel Drake	tristate "Support for VIA VX855/VX875 integrated south bridge"
697375fc77bSDaniel Drake	depends on PCI
698375fc77bSDaniel Drake	select MFD_CORE
699375fc77bSDaniel Drake	help
700375fc77bSDaniel Drake	  Say yes here to enable support for various functions of the
701375fc77bSDaniel Drake	  VIA VX855/VX875 south bridge. You will need to enable the vx855_spi
702375fc77bSDaniel Drake	  and/or vx855_gpio drivers for this to do anything useful.
703375fc77bSDaniel Drake
704383268a8SMatti Aaltonenconfig MFD_WL1273_CORE
70594fd5b74SMatti Aaltonen	tristate "Support for TI WL1273 FM radio."
706383268a8SMatti Aaltonen	depends on I2C
707383268a8SMatti Aaltonen	select MFD_CORE
708383268a8SMatti Aaltonen	default n
709383268a8SMatti Aaltonen	help
710383268a8SMatti Aaltonen	  This is the core driver for the TI WL1273 FM radio. This MFD
711383268a8SMatti Aaltonen	  driver connects the radio-wl1273 V4L2 module and the wl1273
712383268a8SMatti Aaltonen	  audio codec.
713383268a8SMatti Aaltonen
71417cdd29dSKeshava Munegowdaconfig MFD_OMAP_USB_HOST
71517cdd29dSKeshava Munegowda	bool "Support OMAP USBHS core driver"
71617cdd29dSKeshava Munegowda	depends on USB_EHCI_HCD_OMAP || USB_OHCI_HCD_OMAP3
71717cdd29dSKeshava Munegowda	default y
71817cdd29dSKeshava Munegowda	help
71917cdd29dSKeshava Munegowda	  This is the core driver for the OAMP EHCI and OHCI drivers.
72017cdd29dSKeshava Munegowda	  This MFD driver does the required setup functionalities for
72117cdd29dSKeshava Munegowda	  OMAP USB Host drivers.
72217cdd29dSKeshava Munegowda
723cbdb53e1SAbhijeet Dharmapurikarconfig MFD_PM8XXX
724cbdb53e1SAbhijeet Dharmapurikar	tristate
725cbdb53e1SAbhijeet Dharmapurikar
726cbdb53e1SAbhijeet Dharmapurikarconfig MFD_PM8921_CORE
727cbdb53e1SAbhijeet Dharmapurikar	tristate "Qualcomm PM8921 PMIC chip"
728cbdb53e1SAbhijeet Dharmapurikar	depends on MSM_SSBI
729cbdb53e1SAbhijeet Dharmapurikar	select MFD_CORE
730cbdb53e1SAbhijeet Dharmapurikar	select MFD_PM8XXX
731cbdb53e1SAbhijeet Dharmapurikar	help
732cbdb53e1SAbhijeet Dharmapurikar	  If you say yes to this option, support will be included for the
733cbdb53e1SAbhijeet Dharmapurikar	  built-in PM8921 PMIC chip.
734cbdb53e1SAbhijeet Dharmapurikar
735cbdb53e1SAbhijeet Dharmapurikar	  This is required if your board has a PM8921 and uses its features,
736cbdb53e1SAbhijeet Dharmapurikar	  such as: MPPs, GPIOs, regulators, interrupts, and PWM.
737cbdb53e1SAbhijeet Dharmapurikar
738cbdb53e1SAbhijeet Dharmapurikar	  Say M here if you want to include support for PM8921 chip as a module.
739cbdb53e1SAbhijeet Dharmapurikar	  This will build a module called "pm8921-core".
740cbdb53e1SAbhijeet Dharmapurikar
741c013f0a5SAbhijeet Dharmapurikarconfig MFD_PM8XXX_IRQ
742c013f0a5SAbhijeet Dharmapurikar	bool "Support for Qualcomm PM8xxx IRQ features"
743c013f0a5SAbhijeet Dharmapurikar	depends on MFD_PM8XXX
744c013f0a5SAbhijeet Dharmapurikar	default y if MFD_PM8XXX
745c013f0a5SAbhijeet Dharmapurikar	help
746c013f0a5SAbhijeet Dharmapurikar	  This is the IRQ driver for Qualcomm PM 8xxx PMIC chips.
747c013f0a5SAbhijeet Dharmapurikar
748c013f0a5SAbhijeet Dharmapurikar	  This is required to use certain other PM 8xxx features, such as GPIO
749c013f0a5SAbhijeet Dharmapurikar	  and MPP.
750c013f0a5SAbhijeet Dharmapurikar
75127c6750eSGraeme Gregoryconfig MFD_TPS65910
752aec519b5SJorge Eduardo Candelaria	bool "TPS65910 Power Management chip"
75366c500ffSLiam Girdwood	depends on I2C=y && GPIOLIB
75427c6750eSGraeme Gregory	select MFD_CORE
75583545d83SJorge Eduardo Candelaria	select GPIO_TPS65910
75627c6750eSGraeme Gregory	help
75727c6750eSGraeme Gregory	  if you say yes here you get support for the TPS65910 series of
75827c6750eSGraeme Gregory	  Power Management chips.
75927c6750eSGraeme Gregory
7608509e142SAxel Linconfig TPS65911_COMPARATOR
7618509e142SAxel Lin	tristate
7628509e142SAxel Lin
76338270644SRandy Dunlapendif # MFD_SUPPORT
764b6d6454fSBen Dooks
765a4e137abSRussell Kingmenu "Multimedia Capabilities Port drivers"
766f751d50fSAdrian Bunk	depends on ARCH_SA1100
767a4e137abSRussell King
768a4e137abSRussell Kingconfig MCP
769a4e137abSRussell King	tristate
770a4e137abSRussell King
7715e742ad6SRussell King# Interface drivers
7725e742ad6SRussell Kingconfig MCP_SA11X0
7735e742ad6SRussell King	tristate "Support SA11x0 MCP interface"
7745e742ad6SRussell King	depends on ARCH_SA1100
7755e742ad6SRussell King	select MCP
7765e742ad6SRussell King
77705c45ca9SRussell King# Chip drivers
77805c45ca9SRussell Kingconfig MCP_UCB1200
77905c45ca9SRussell King	tristate "Support for UCB1200 / UCB1300"
78005c45ca9SRussell King	depends on MCP
78105c45ca9SRussell King
782acb45439SRussell Kingconfig MCP_UCB1200_TS
783acb45439SRussell King	tristate "Touchscreen interface support"
784acb45439SRussell King	depends on MCP_UCB1200 && INPUT
785acb45439SRussell King
786a4e137abSRussell Kingendmenu
787