xref: /linux/drivers/mfd/Kconfig (revision 730876be256603b4ee7225a125467d97a7ce9060)
1a4e137abSRussell King#
2a4e137abSRussell King# Multifunction miscellaneous devices
3a4e137abSRussell King#
4a4e137abSRussell King
58a0a8e8eSArnd Bergmannif HAS_IOMEM
68a0a8e8eSArnd Bergmannmenu "Multifunction device drivers"
7b6d6454fSBen Dooks
8aa613de6SDmitry Baryshkovconfig MFD_CORE
9aa613de6SDmitry Baryshkov	tristate
10c94bb233SLee Jones	select IRQ_DOMAIN
11aa613de6SDmitry Baryshkov	default n
12aa613de6SDmitry Baryshkov
13ab85b120SSamuel Ortizconfig MFD_CS5535
14ab85b120SSamuel Ortiz	tristate "AMD CS5535 and CS5536 southbridge core functions"
152cc50beeSHaojian Zhuang	select MFD_CORE
16ab85b120SSamuel Ortiz	depends on PCI && X86
17ab85b120SSamuel Ortiz	---help---
18ab85b120SSamuel Ortiz	  This is the core driver for CS5535/CS5536 MFD functions.  This is
19ab85b120SSamuel Ortiz          necessary for using the board's GPIO and MFGPT functionality.
202cc50beeSHaojian Zhuang
21ab85b120SSamuel Ortizconfig MFD_AS3711
22ab85b120SSamuel Ortiz	bool "AMS AS3711"
23ab85b120SSamuel Ortiz	select MFD_CORE
2470c6cce0SQiao Zhou	select REGMAP_I2C
2570c6cce0SQiao Zhou	select REGMAP_IRQ
260244ad00SMartin Schwidefsky	depends on I2C=y
27a4e137abSRussell King	help
28ab85b120SSamuel Ortiz	  Support for the AS3711 PMIC from AMS
29ab85b120SSamuel Ortiz
30d460a6f3SLaxman Dewanganconfig MFD_AS3722
31d460a6f3SLaxman Dewangan	bool "ams AS3722 Power Management IC"
32d460a6f3SLaxman Dewangan	select MFD_CORE
33d460a6f3SLaxman Dewangan	select REGMAP_I2C
34d460a6f3SLaxman Dewangan	select REGMAP_IRQ
3572ac0127SMichal Marek	depends on I2C=y && OF
36d460a6f3SLaxman Dewangan	help
37d460a6f3SLaxman Dewangan	  The ams AS3722 is a compact system PMU suitable for mobile phones,
38d460a6f3SLaxman Dewangan	  tablets etc. It has 4 DC/DC step-down regulators, 3 DC/DC step-down
39d460a6f3SLaxman Dewangan	  controllers, 11 LDOs, RTC, automatic battery, temperature and
40d460a6f3SLaxman Dewangan	  over current monitoring, GPIOs, ADC and a watchdog.
41d460a6f3SLaxman Dewangan
42ab85b120SSamuel Ortizconfig PMIC_ADP5520
43ab85b120SSamuel Ortiz	bool "Analog Devices ADP5520/01 MFD PMIC Core Support"
44ab85b120SSamuel Ortiz	depends on I2C=y
45ab85b120SSamuel Ortiz	help
46ab85b120SSamuel Ortiz	  Say yes here to add support for Analog Devices AD5520 and ADP5501,
47ab85b120SSamuel Ortiz	  Multifunction Power Management IC. This includes
48ab85b120SSamuel Ortiz	  the I2C driver and the core APIs _only_, you have to select
49ab85b120SSamuel Ortiz	  individual components like LCD backlight, LEDs, GPIOs and Kepad
50ab85b120SSamuel Ortiz	  under the corresponding menus.
51ab85b120SSamuel Ortiz
52ab85b120SSamuel Ortizconfig MFD_AAT2870_CORE
53ab85b120SSamuel Ortiz	bool "AnalogicTech AAT2870"
54ab85b120SSamuel Ortiz	select MFD_CORE
550244ad00SMartin Schwidefsky	depends on I2C=y && GPIOLIB
56ab85b120SSamuel Ortiz	help
57ab85b120SSamuel Ortiz	  If you say yes here you get support for the AAT2870.
58ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device,
59ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the
60ab85b120SSamuel Ortiz	  functionality of the device.
61b6d6454fSBen Dooks
624ab6174eSSimon Glassconfig MFD_CROS_EC
63ab85b120SSamuel Ortiz	tristate "ChromeOS Embedded Controller"
6470c6cce0SQiao Zhou	select MFD_CORE
6570c6cce0SQiao Zhou	help
664ab6174eSSimon Glass	  If you say Y here you get support for the ChromeOS Embedded
674ab6174eSSimon Glass	  Controller (EC) providing keyboard, battery and power services.
68fc83f586SGeert Uytterhoeven	  You also need to enable the driver for the bus you are using. The
694ab6174eSSimon Glass	  protocol for talking to the EC is defined by the bus driver.
7070c6cce0SQiao Zhou
7189969009SSimon Glassconfig MFD_CROS_EC_I2C
7289969009SSimon Glass	tristate "ChromeOS Embedded Controller (I2C)"
7389969009SSimon Glass	depends on MFD_CROS_EC && I2C
74b6d6454fSBen Dooks
7567d16a46SWei WANG	help
7689969009SSimon Glass	  If you say Y here, you get support for talking to the ChromeOS
7789969009SSimon Glass	  EC through an I2C bus. This uses a simple byte-level protocol with
7889969009SSimon Glass	  a checksum. Failing accesses will be retried three times to
7989969009SSimon Glass	  improve reliability.
8089969009SSimon Glass
81a17d94f0SSimon Glassconfig MFD_CROS_EC_SPI
82a17d94f0SSimon Glass	tristate "ChromeOS Embedded Controller (SPI)"
83fcfccdb2SThierry Reding	depends on MFD_CROS_EC && SPI && OF
84a17d94f0SSimon Glass
85a17d94f0SSimon Glass	---help---
86a17d94f0SSimon Glass	  If you say Y here, you get support for talking to the ChromeOS EC
87a17d94f0SSimon Glass	  through a SPI bus, using a byte-level protocol. Since the EC's
88a17d94f0SSimon Glass	  response time cannot be guaranteed, we support ignoring
89a17d94f0SSimon Glass	  'pre-amble' bytes before the response actually starts.
9067d16a46SWei WANG
91fa9ff4b1SSamuel Ortizconfig MFD_ASIC3
92ab85b120SSamuel Ortiz	bool "Compaq ASIC3"
930244ad00SMartin Schwidefsky	depends on GPIOLIB && ARM
949461f65aSPhilipp Zabel	select MFD_CORE
95fa9ff4b1SSamuel Ortiz	 ---help---
96fa9ff4b1SSamuel Ortiz	  This driver supports the ASIC3 multifunction chip found on many
97fa9ff4b1SSamuel Ortiz	  PDAs (mainly iPAQ and HTC based ones)
98fa9ff4b1SSamuel Ortiz
99ab85b120SSamuel Ortizconfig PMIC_DA903X
100ab85b120SSamuel Ortiz	bool "Dialog Semiconductor DA9030/DA9034 PMIC Support"
101ab85b120SSamuel Ortiz	depends on I2C=y
102ab85b120SSamuel Ortiz	help
103921a1b0cSLaszlo Papp	  Say yes here to add support for Dialog Semiconductor DA9030 (a.k.a
104ab85b120SSamuel Ortiz	  ARAVA) and DA9034 (a.k.a MICCO), these are Power Management IC
105ab85b120SSamuel Ortiz	  usually found on PXA processors-based platforms. This includes
106ab85b120SSamuel Ortiz	  the I2C driver and the core APIs _only_, you have to select
107ab85b120SSamuel Ortiz	  individual components like LCD backlight, voltage regulators,
108ab85b120SSamuel Ortiz	  LEDs and battery-charger under the corresponding menus.
109ab85b120SSamuel Ortiz
110ab85b120SSamuel Ortizconfig PMIC_DA9052
111ab85b120SSamuel Ortiz	bool
112ab85b120SSamuel Ortiz	select MFD_CORE
113ab85b120SSamuel Ortiz
114ab85b120SSamuel Ortizconfig MFD_DA9052_SPI
115ab85b120SSamuel Ortiz	bool "Dialog Semiconductor DA9052/53 PMIC variants with SPI"
116ab85b120SSamuel Ortiz	select REGMAP_SPI
117ab85b120SSamuel Ortiz	select REGMAP_IRQ
118ab85b120SSamuel Ortiz	select PMIC_DA9052
1190244ad00SMartin Schwidefsky	depends on SPI_MASTER=y
120ab85b120SSamuel Ortiz	help
121ab85b120SSamuel Ortiz	  Support for the Dialog Semiconductor DA9052 PMIC
122ab85b120SSamuel Ortiz	  when controlled using SPI. This driver provides common support
123ab85b120SSamuel Ortiz	  for accessing the device, additional drivers must be enabled in
124ab85b120SSamuel Ortiz	  order to use the functionality of the device.
125ab85b120SSamuel Ortiz
126ab85b120SSamuel Ortizconfig MFD_DA9052_I2C
127ab85b120SSamuel Ortiz	bool "Dialog Semiconductor DA9052/53 PMIC variants with I2C"
128ab85b120SSamuel Ortiz	select REGMAP_I2C
129ab85b120SSamuel Ortiz	select REGMAP_IRQ
130ab85b120SSamuel Ortiz	select PMIC_DA9052
1310244ad00SMartin Schwidefsky	depends on I2C=y
132ab85b120SSamuel Ortiz	help
133ab85b120SSamuel Ortiz	  Support for the Dialog Semiconductor DA9052 PMIC
134ab85b120SSamuel Ortiz	  when controlled using I2C. This driver provides common support
135ab85b120SSamuel Ortiz	  for accessing the device, additional drivers must be enabled in
136ab85b120SSamuel Ortiz	  order to use the functionality of the device.
137ab85b120SSamuel Ortiz
138ab85b120SSamuel Ortizconfig MFD_DA9055
139ab85b120SSamuel Ortiz	bool "Dialog Semiconductor DA9055 PMIC Support"
140ab85b120SSamuel Ortiz	select REGMAP_I2C
141ab85b120SSamuel Ortiz	select REGMAP_IRQ
142ab85b120SSamuel Ortiz	select MFD_CORE
1430244ad00SMartin Schwidefsky	depends on I2C=y
144ab85b120SSamuel Ortiz	help
145ab85b120SSamuel Ortiz	  Say yes here for support of Dialog Semiconductor DA9055. This is
146ab85b120SSamuel Ortiz	  a Power Management IC. This driver provides common support for
147ab85b120SSamuel Ortiz	  accessing the device as well as the I2C interface to the chip itself.
148ab85b120SSamuel Ortiz	  Additional drivers must be enabled in order to use the functionality
149ab85b120SSamuel Ortiz	  of the device.
150ab85b120SSamuel Ortiz
151ab85b120SSamuel Ortiz	  This driver can be built as a module. If built as a module it will be
152ab85b120SSamuel Ortiz	  called "da9055"
153ab85b120SSamuel Ortiz
1548e685483SKrystian Garbaciakconfig MFD_DA9063
1558e685483SKrystian Garbaciak	bool "Dialog Semiconductor DA9063 PMIC Support"
1568e685483SKrystian Garbaciak	select MFD_CORE
1578e685483SKrystian Garbaciak	select REGMAP_I2C
1588e685483SKrystian Garbaciak	select REGMAP_IRQ
1590244ad00SMartin Schwidefsky	depends on I2C=y
1608e685483SKrystian Garbaciak	help
1618e685483SKrystian Garbaciak	  Say yes here for support for the Dialog Semiconductor DA9063 PMIC.
1628e685483SKrystian Garbaciak	  This includes the I2C driver and core APIs.
1638e685483SKrystian Garbaciak	  Additional drivers must be enabled in order to use the functionality
1648e685483SKrystian Garbaciak	  of the device.
1658e685483SKrystian Garbaciak
166ab85b120SSamuel Ortizconfig MFD_MC13XXX
167ab85b120SSamuel Ortiz	tristate
1680244ad00SMartin Schwidefsky	depends on (SPI_MASTER || I2C)
169ab85b120SSamuel Ortiz	select MFD_CORE
1700931a4c6SDavid Brownell	help
171ab85b120SSamuel Ortiz	  Enable support for the Freescale MC13783 and MC13892 PMICs.
172ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device,
173ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the
174ab85b120SSamuel Ortiz	  functionality of the device.
1750931a4c6SDavid Brownell
176ab85b120SSamuel Ortizconfig MFD_MC13XXX_SPI
177ab85b120SSamuel Ortiz	tristate "Freescale MC13783 and MC13892 SPI interface"
1780244ad00SMartin Schwidefsky	depends on SPI_MASTER
179ab85b120SSamuel Ortiz	select REGMAP_SPI
180ab85b120SSamuel Ortiz	select MFD_MC13XXX
18101636eb9SPatil, Rachna	help
182ab85b120SSamuel Ortiz	  Select this if your MC13xxx is connected via an SPI bus.
183ab85b120SSamuel Ortiz
184ab85b120SSamuel Ortizconfig MFD_MC13XXX_I2C
185ab85b120SSamuel Ortiz	tristate "Freescale MC13892 I2C interface"
1860244ad00SMartin Schwidefsky	depends on I2C
187ab85b120SSamuel Ortiz	select REGMAP_I2C
188ab85b120SSamuel Ortiz	select MFD_MC13XXX
189ab85b120SSamuel Ortiz	help
190ab85b120SSamuel Ortiz	  Select this if your MC13xxx is connected via an I2C bus.
19101636eb9SPatil, Rachna
192a1635b8fSPhilipp Zabelconfig HTC_EGPIO
193a1635b8fSPhilipp Zabel	bool "HTC EGPIO support"
1940244ad00SMartin Schwidefsky	depends on GPIOLIB && ARM
195a1635b8fSPhilipp Zabel	help
196a1635b8fSPhilipp Zabel	    This driver supports the CPLD egpio chip present on
197a1635b8fSPhilipp Zabel	    several HTC phones.  It provides basic support for input
198a1635b8fSPhilipp Zabel	    pins, output pins, and irqs.
199a1635b8fSPhilipp Zabel
2005dc3339aSPhilipp Zabelconfig HTC_PASIC3
2015dc3339aSPhilipp Zabel	tristate "HTC PASIC3 LED/DS1WM chip support"
2020254a8f4SPhilipp Zabel	select MFD_CORE
2035dc3339aSPhilipp Zabel	help
2045dc3339aSPhilipp Zabel	  This core driver provides register access for the LED/DS1WM
2055dc3339aSPhilipp Zabel	  chips labeled "AIC2" and "AIC3", found on HTC Blueangel and
2065dc3339aSPhilipp Zabel	  HTC Magician devices, respectively. Actual functionality is
2075dc3339aSPhilipp Zabel	  handled by the leds-pasic3 and ds1wm drivers.
2085dc3339aSPhilipp Zabel
2096048a3ddSCory Maccarroneconfig HTC_I2CPLD
2106048a3ddSCory Maccarrone	bool "HTC I2C PLD chip support"
211bef3e20cSRandy Dunlap	depends on I2C=y && GPIOLIB
2126048a3ddSCory Maccarrone	help
2136048a3ddSCory Maccarrone	  If you say yes here you get support for the supposed CPLD
2146048a3ddSCory Maccarrone	  found on omap850 HTC devices like the HTC Wizard and HTC Herald.
2156048a3ddSCory Maccarrone	  This device provides input and output GPIOs through an I2C
2166048a3ddSCory Maccarrone	  interface to one or more sub-chips.
2176048a3ddSCory Maccarrone
218ab85b120SSamuel Ortizconfig LPC_ICH
219ab85b120SSamuel Ortiz	tristate "Intel ICH LPC"
2200244ad00SMartin Schwidefsky	depends on PCI
22116c5c023SJohan Hovold	select MFD_CORE
22216c5c023SJohan Hovold	help
223ab85b120SSamuel Ortiz	  The LPC bridge function of the Intel ICH provides support for
224ab85b120SSamuel Ortiz	  many functional units. This driver provides needed support for
225ab85b120SSamuel Ortiz	  other drivers to control these functions, currently GPIO and
226ab85b120SSamuel Ortiz	  watchdog.
22716c5c023SJohan Hovold
228ab85b120SSamuel Ortizconfig LPC_SCH
229ab85b120SSamuel Ortiz	tristate "Intel SCH LPC"
2300244ad00SMartin Schwidefsky	depends on PCI
231fc498fa2SGuenter Roeck	select MFD_CORE
232798a8eeeSLinus Walleij	help
233ab85b120SSamuel Ortiz	  LPC bridge function of the Intel SCH provides support for
234ab85b120SSamuel Ortiz	  System Management Bus and General Purpose I/O.
235798a8eeeSLinus Walleij
236ab85b120SSamuel Ortizconfig MFD_INTEL_MSIC
237ab85b120SSamuel Ortiz	bool "Intel MSIC"
238ab85b120SSamuel Ortiz	depends on INTEL_SCU_IPC
23931dd6a26STodd Fischer	select MFD_CORE
24031dd6a26STodd Fischer	help
241ab85b120SSamuel Ortiz	  Select this option to enable access to Intel MSIC (Avatele
242ab85b120SSamuel Ortiz	  Passage) chip. This chip embeds audio, battery, GPIO, etc.
243ab85b120SSamuel Ortiz	  devices used in Intel Medfield platforms.
24431dd6a26STodd Fischer
245ab85b120SSamuel Ortizconfig MFD_JANZ_CMODIO
246ab85b120SSamuel Ortiz	tristate "Janz CMOD-IO PCI MODULbus Carrier Board"
247d48f411cSAnilKumar Ch	select MFD_CORE
2480244ad00SMartin Schwidefsky	depends on PCI
249d48f411cSAnilKumar Ch	help
250ab85b120SSamuel Ortiz	  This is the core driver for the Janz CMOD-IO PCI MODULbus
251ab85b120SSamuel Ortiz	  carrier board. This device is a PCI to MODULbus bridge which may
252ab85b120SSamuel Ortiz	  host many different types of MODULbus daughterboards, including
253ab85b120SSamuel Ortiz	  CAN and GPIO controllers.
254d48f411cSAnilKumar Ch
255ab85b120SSamuel Ortizconfig MFD_JZ4740_ADC
256ab85b120SSamuel Ortiz	bool "Janz JZ4740 ADC core"
257ab85b120SSamuel Ortiz	select MFD_CORE
258ab85b120SSamuel Ortiz	select GENERIC_IRQ_CHIP
259ab85b120SSamuel Ortiz	depends on MACH_JZ4740
260ab85b120SSamuel Ortiz	help
261ab85b120SSamuel Ortiz	  Say yes here if you want support for the ADC unit in the JZ4740 SoC.
262ab85b120SSamuel Ortiz	  This driver is necessary for jz4740-battery and jz4740-hwmon driver.
263d48f411cSAnilKumar Ch
26443620a17SKevin Strasserconfig MFD_KEMPLD
26543620a17SKevin Strasser	tristate "Kontron module PLD device"
26643620a17SKevin Strasser	select MFD_CORE
26743620a17SKevin Strasser	help
26843620a17SKevin Strasser	  This is the core driver for the PLD (Programmable Logic Device) found
26943620a17SKevin Strasser	  on some Kontron ETX and COMexpress (ETXexpress) modules. The PLD
27043620a17SKevin Strasser	  device may provide functions like watchdog, GPIO, UART and I2C bus.
27143620a17SKevin Strasser
27243620a17SKevin Strasser	  The following modules are supported:
27343620a17SKevin Strasser		* COMe-bIP#
27443620a17SKevin Strasser		* COMe-bPC2 (ETXexpress-PC)
27543620a17SKevin Strasser		* COMe-bSC# (ETXexpress-SC T#)
27643620a17SKevin Strasser		* COMe-cCT6
27743620a17SKevin Strasser		* COMe-cDC2 (microETXexpress-DC)
27843620a17SKevin Strasser		* COMe-cPC2 (microETXexpress-PC)
27943620a17SKevin Strasser		* COMe-mCT10
28043620a17SKevin Strasser		* ETX-OH
28143620a17SKevin Strasser
28243620a17SKevin Strasser	  This driver can also be built as a module. If so, the module
28343620a17SKevin Strasser	  will be called kempld-core.
28443620a17SKevin Strasser
285ab85b120SSamuel Ortizconfig MFD_88PM800
286ab85b120SSamuel Ortiz	tristate "Marvell 88PM800"
2870244ad00SMartin Schwidefsky	depends on I2C=y
288dc9913a0SLaxman Dewangan	select REGMAP_I2C
289ee487114SAnilKumar Ch	select REGMAP_IRQ
29036e52873SMargarita Olaya	select MFD_CORE
29136e52873SMargarita Olaya	help
292ab85b120SSamuel Ortiz	  This supports for Marvell 88PM800 Power Management IC.
293ab85b120SSamuel Ortiz	  This includes the I2C driver and the core APIs _only_, you have to
294ab85b120SSamuel Ortiz	  select individual components like voltage regulators, RTC and
295ab85b120SSamuel Ortiz	  battery-charger under the corresponding menus.
29636e52873SMargarita Olaya
297ab85b120SSamuel Ortizconfig MFD_88PM805
298ab85b120SSamuel Ortiz	tristate "Marvell 88PM805"
2990244ad00SMartin Schwidefsky	depends on I2C=y
300edd7eabcSLaxman Dewangan	select REGMAP_I2C
301c2ace4fdSAxel Lin	select REGMAP_IRQ
302ab85b120SSamuel Ortiz	select MFD_CORE
303edd7eabcSLaxman Dewangan	help
304ab85b120SSamuel Ortiz	  This supports for Marvell 88PM805 Power Management IC. This includes
305ab85b120SSamuel Ortiz	  the I2C driver and the core APIs _only_, you have to select individual
306ab85b120SSamuel Ortiz	  components like codec device, headset/Mic device under the
307ab85b120SSamuel Ortiz	  corresponding menus.
308edd7eabcSLaxman Dewangan
309ab85b120SSamuel Ortizconfig MFD_88PM860X
310ab85b120SSamuel Ortiz	bool "Marvell 88PM8606/88PM8607"
3110244ad00SMartin Schwidefsky	depends on I2C=y
312fbfc23efSChuansheng Liu	select REGMAP_I2C
31327e34995SRabin Vincent	select MFD_CORE
31427e34995SRabin Vincent	help
315ab85b120SSamuel Ortiz	  This supports for Marvell 88PM8606/88PM8607 Power Management IC.
316ab85b120SSamuel Ortiz	  This includes the I2C driver and the core APIs _only_, you have to
317ab85b120SSamuel Ortiz	  select individual components like voltage regulators, RTC and
318ab85b120SSamuel Ortiz	  battery-charger under the corresponding menus.
319eea6b7ccSMilo Kim
3203008ddbeSChanwoo Choiconfig MFD_MAX14577
3213008ddbeSChanwoo Choi	bool "Maxim Semiconductor MAX14577 MUIC + Charger Support"
3223008ddbeSChanwoo Choi	depends on I2C=y
3233008ddbeSChanwoo Choi	select MFD_CORE
3243008ddbeSChanwoo Choi	select REGMAP_I2C
3253008ddbeSChanwoo Choi	select IRQ_DOMAIN
3263008ddbeSChanwoo Choi	help
327921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX14577.
3283008ddbeSChanwoo Choi	  This is a Micro-USB IC with Charger controls on chip.
3293008ddbeSChanwoo Choi	  This driver provides common support for accessing the device;
3303008ddbeSChanwoo Choi	  additional drivers must be enabled in order to use the functionality
3313008ddbeSChanwoo Choi	  of the device.
3323008ddbeSChanwoo Choi
333dae8a969SJonghwa Leeconfig MFD_MAX77686
334dae8a969SJonghwa Lee	bool "Maxim Semiconductor MAX77686 PMIC Support"
3350244ad00SMartin Schwidefsky	depends on I2C=y
336dae8a969SJonghwa Lee	select MFD_CORE
337dae8a969SJonghwa Lee	select REGMAP_I2C
338dae8a969SJonghwa Lee	select IRQ_DOMAIN
339dae8a969SJonghwa Lee	help
340921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX77686.
341dae8a969SJonghwa Lee	  This is a Power Management IC with RTC on chip.
342dae8a969SJonghwa Lee	  This driver provides common support for accessing the device;
343dae8a969SJonghwa Lee	  additional drivers must be enabled in order to use the functionality
344dae8a969SJonghwa Lee	  of the device.
345dae8a969SJonghwa Lee
34683871c00SChanwoo Choiconfig MFD_MAX77693
34783871c00SChanwoo Choi	bool "Maxim Semiconductor MAX77693 PMIC Support"
3480244ad00SMartin Schwidefsky	depends on I2C=y
34983871c00SChanwoo Choi	select MFD_CORE
35029f772d4SChanwoo Choi	select REGMAP_I2C
35183871c00SChanwoo Choi	help
352921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX77693.
35383871c00SChanwoo Choi	  This is a companion Power Management IC with Flash, Haptic, Charger,
35483871c00SChanwoo Choi	  and MUIC(Micro USB Interface Controller) controls on chip.
35583871c00SChanwoo Choi	  This driver provides common support for accessing the device;
35683871c00SChanwoo Choi	  additional drivers must be enabled in order to use the functionality
35783871c00SChanwoo Choi	  of the device.
35883871c00SChanwoo Choi
359a91d2f8dSGyungoh Yooconfig MFD_MAX8907
360a91d2f8dSGyungoh Yoo	tristate "Maxim Semiconductor MAX8907 PMIC Support"
361a91d2f8dSGyungoh Yoo	select MFD_CORE
3620244ad00SMartin Schwidefsky	depends on I2C=y
363a91d2f8dSGyungoh Yoo	select REGMAP_I2C
364a91d2f8dSGyungoh Yoo	select REGMAP_IRQ
365a91d2f8dSGyungoh Yoo	help
366921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX8907. This is
367a91d2f8dSGyungoh Yoo	  a Power Management IC. This driver provides common support for
368a91d2f8dSGyungoh Yoo	  accessing the device; additional drivers must be enabled in order
369a91d2f8dSGyungoh Yoo	  to use the functionality of the device.
370a91d2f8dSGyungoh Yoo
371d50f8f33SHaojian Zhuangconfig MFD_MAX8925
3721f1cf8f9SHaojian Zhuang	bool "Maxim Semiconductor MAX8925 PMIC Support"
3730244ad00SMartin Schwidefsky	depends on I2C=y
3741ad99893SHaojian Zhuang	select MFD_CORE
375d50f8f33SHaojian Zhuang	help
376921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX8925. This is
3776b2aac42SMasanari Iida	  a Power Management IC. This driver provides common support for
378d50f8f33SHaojian Zhuang	  accessing the device, additional drivers must be enabled in order
379d50f8f33SHaojian Zhuang	  to use the functionality of the device.
380d50f8f33SHaojian Zhuang
381527e7e9aSMyungJoo Hamconfig MFD_MAX8997
382527e7e9aSMyungJoo Ham	bool "Maxim Semiconductor MAX8997/8966 PMIC Support"
3830244ad00SMartin Schwidefsky	depends on I2C=y
384527e7e9aSMyungJoo Ham	select MFD_CORE
385b41511f7SThomas Abraham	select IRQ_DOMAIN
386527e7e9aSMyungJoo Ham	help
387921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX8997/8966.
388527e7e9aSMyungJoo Ham	  This is a Power Management IC with RTC, Flash, Fuel Gauge, Haptic,
389527e7e9aSMyungJoo Ham	  MUIC controls on chip.
390d7e8c01aSRandy Dunlap	  This driver provides common support for accessing the device;
391527e7e9aSMyungJoo Ham	  additional drivers must be enabled in order to use the functionality
392527e7e9aSMyungJoo Ham	  of the device.
393527e7e9aSMyungJoo Ham
394156f2528SKyungmin Parkconfig MFD_MAX8998
395f8539ddcSKyungmin Park	bool "Maxim Semiconductor MAX8998/National LP3974 PMIC Support"
3960244ad00SMartin Schwidefsky	depends on I2C=y
397156f2528SKyungmin Park	select MFD_CORE
398443c6ae2STomasz Figa	select IRQ_DOMAIN
399156f2528SKyungmin Park	help
400921a1b0cSLaszlo Papp	  Say yes here to add support for Maxim Semiconductor MAX8998 and
401f8539ddcSKyungmin Park	  National Semiconductor LP3974. This is a Power Management IC.
4026b2aac42SMasanari Iida	  This driver provides common support for accessing the device,
403f8539ddcSKyungmin Park	  additional drivers must be enabled in order to use the functionality
404f8539ddcSKyungmin Park	  of the device.
405156f2528SKyungmin Park
406ab85b120SSamuel Ortizconfig EZX_PCAP
407ab85b120SSamuel Ortiz	bool "Motorola EZXPCAP Support"
4080244ad00SMartin Schwidefsky	depends on SPI_MASTER
409ab85b120SSamuel Ortiz	help
410ab85b120SSamuel Ortiz	  This enables the PCAP ASIC present on EZX Phones. This is
411ab85b120SSamuel Ortiz	  needed for MMC, TouchScreen, Sound, USB, etc..
412ab85b120SSamuel Ortiz
413ab85b120SSamuel Ortizconfig MFD_VIPERBOARD
414ab85b120SSamuel Ortiz        tristate "Nano River Technologies Viperboard"
415ab85b120SSamuel Ortiz	select MFD_CORE
4160244ad00SMartin Schwidefsky	depends on USB
417ab85b120SSamuel Ortiz	default n
418ab85b120SSamuel Ortiz	help
419ab85b120SSamuel Ortiz	  Say yes here if you want support for Nano River Technologies
420ab85b120SSamuel Ortiz	  Viperboard.
421ab85b120SSamuel Ortiz	  There are mfd cell drivers available for i2c master, adc and
422ab85b120SSamuel Ortiz	  both gpios found on the board. The spi part does not yet
423ab85b120SSamuel Ortiz	  have a driver.
424ab85b120SSamuel Ortiz	  You need to select the mfd cell drivers separately.
425ab85b120SSamuel Ortiz	  The drivers do not support all features the board exposes.
426ab85b120SSamuel Ortiz
427ab85b120SSamuel Ortizconfig MFD_RETU
42895e50f6aSAaro Koskinen	tristate "Nokia Retu and Tahvo multi-function device"
429ab85b120SSamuel Ortiz	select MFD_CORE
4300244ad00SMartin Schwidefsky	depends on I2C
431ab85b120SSamuel Ortiz	select REGMAP_IRQ
432ab85b120SSamuel Ortiz	help
43395e50f6aSAaro Koskinen	  Retu and Tahvo are a multi-function devices found on Nokia
43495e50f6aSAaro Koskinen	  Internet Tablets (770, N800 and N810).
435ab85b120SSamuel Ortiz
436ab85b120SSamuel Ortizconfig MFD_PCF50633
437ab85b120SSamuel Ortiz	tristate "NXP PCF50633"
438ab85b120SSamuel Ortiz	depends on I2C
439ab85b120SSamuel Ortiz	select REGMAP_I2C
440ab85b120SSamuel Ortiz	help
441ab85b120SSamuel Ortiz	  Say yes here if you have NXP PCF50633 chip on your board.
442ab85b120SSamuel Ortiz	  This core driver provides register access and IRQ handling
443ab85b120SSamuel Ortiz	  facilities, and registers devices for the various functions
444ab85b120SSamuel Ortiz	  so that function-specific drivers can bind to them.
445ab85b120SSamuel Ortiz
446ab85b120SSamuel Ortizconfig PCF50633_ADC
447ab85b120SSamuel Ortiz	tristate "NXP PCF50633 ADC"
448ab85b120SSamuel Ortiz	depends on MFD_PCF50633
449ab85b120SSamuel Ortiz	help
450ab85b120SSamuel Ortiz	 Say yes here if you want to include support for ADC in the
451ab85b120SSamuel Ortiz	 NXP PCF50633 chip.
452ab85b120SSamuel Ortiz
453ab85b120SSamuel Ortizconfig PCF50633_GPIO
454ab85b120SSamuel Ortiz	tristate "NXP PCF50633 GPIO"
455ab85b120SSamuel Ortiz	depends on MFD_PCF50633
456ab85b120SSamuel Ortiz	help
457ab85b120SSamuel Ortiz	 Say yes here if you want to include support GPIO for pins on
458ab85b120SSamuel Ortiz	 the PCF50633 chip.
459ab85b120SSamuel Ortiz
460ab85b120SSamuel Ortizconfig UCB1400_CORE
461ab85b120SSamuel Ortiz	tristate "Philips UCB1400 Core driver"
462ab85b120SSamuel Ortiz	depends on AC97_BUS
463ab85b120SSamuel Ortiz	depends on GPIOLIB
464ab85b120SSamuel Ortiz	help
465ab85b120SSamuel Ortiz	  This enables support for the Philips UCB1400 core functions.
466ab85b120SSamuel Ortiz	  The UCB1400 is an AC97 audio codec.
467ab85b120SSamuel Ortiz
468ab85b120SSamuel Ortiz	  To compile this driver as a module, choose M here: the
469ab85b120SSamuel Ortiz	  module will be called ucb1400_core.
470ab85b120SSamuel Ortiz
471ab85b120SSamuel Ortizconfig MFD_PM8XXX
472ab85b120SSamuel Ortiz	tristate
473ab85b120SSamuel Ortiz
474ab85b120SSamuel Ortizconfig MFD_PM8921_CORE
475ab85b120SSamuel Ortiz	tristate "Qualcomm PM8921 PMIC chip"
47645fcac1aSArnd Bergmann	depends on (ARCH_MSM || HEXAGON)
47745fcac1aSArnd Bergmann	depends on BROKEN
478ab85b120SSamuel Ortiz	select MFD_CORE
479ab85b120SSamuel Ortiz	select MFD_PM8XXX
480ab85b120SSamuel Ortiz	help
481ab85b120SSamuel Ortiz	  If you say yes to this option, support will be included for the
482ab85b120SSamuel Ortiz	  built-in PM8921 PMIC chip.
483ab85b120SSamuel Ortiz
484ab85b120SSamuel Ortiz	  This is required if your board has a PM8921 and uses its features,
485ab85b120SSamuel Ortiz	  such as: MPPs, GPIOs, regulators, interrupts, and PWM.
486ab85b120SSamuel Ortiz
487ab85b120SSamuel Ortiz	  Say M here if you want to include support for PM8921 chip as a module.
488ab85b120SSamuel Ortiz	  This will build a module called "pm8921-core".
489ab85b120SSamuel Ortiz
490ab85b120SSamuel Ortizconfig MFD_PM8XXX_IRQ
491ab85b120SSamuel Ortiz	bool "Qualcomm PM8xxx IRQ features"
492ab85b120SSamuel Ortiz	depends on MFD_PM8XXX
493ab85b120SSamuel Ortiz	default y if MFD_PM8XXX
494ab85b120SSamuel Ortiz	help
495ab85b120SSamuel Ortiz	  This is the IRQ driver for Qualcomm PM 8xxx PMIC chips.
496ab85b120SSamuel Ortiz
497ab85b120SSamuel Ortiz	  This is required to use certain other PM 8xxx features, such as GPIO
498ab85b120SSamuel Ortiz	  and MPP.
499ab85b120SSamuel Ortiz
500ab85b120SSamuel Ortizconfig MFD_RDC321X
501ab85b120SSamuel Ortiz	tristate "RDC R-321x southbridge"
502ab85b120SSamuel Ortiz	select MFD_CORE
5030244ad00SMartin Schwidefsky	depends on PCI
504ab85b120SSamuel Ortiz	help
505ab85b120SSamuel Ortiz	  Say yes here if you want to have support for the RDC R-321x SoC
506ab85b120SSamuel Ortiz	  southbridge which provides access to GPIOs and Watchdog using the
507ab85b120SSamuel Ortiz	  southbridge PCI device configuration space.
508ab85b120SSamuel Ortiz
509ab85b120SSamuel Ortizconfig MFD_RTSX_PCI
510ab85b120SSamuel Ortiz	tristate "Realtek PCI-E card reader"
5110244ad00SMartin Schwidefsky	depends on PCI
512ab85b120SSamuel Ortiz	select MFD_CORE
513ab85b120SSamuel Ortiz	help
514ab85b120SSamuel Ortiz	  This supports for Realtek PCI-Express card reader including rts5209,
515ab85b120SSamuel Ortiz	  rts5229, rtl8411, etc. Realtek card reader supports access to many
516ab85b120SSamuel Ortiz	  types of memory cards, such as Memory Stick, Memory Stick Pro,
517ab85b120SSamuel Ortiz	  Secure Digital and MultiMediaCard.
518ab85b120SSamuel Ortiz
519*730876beSRoger Tsengconfig MFD_RTSX_USB
520*730876beSRoger Tseng	tristate "Realtek USB card reader"
521*730876beSRoger Tseng	depends on USB
522*730876beSRoger Tseng	select MFD_CORE
523*730876beSRoger Tseng	help
524*730876beSRoger Tseng	  Select this option to get support for Realtek USB 2.0 card readers
525*730876beSRoger Tseng	  including RTS5129, RTS5139, RTS5179 and RTS5170.
526*730876beSRoger Tseng	  Realtek card reader supports access to many types of memory cards,
527*730876beSRoger Tseng	  such as Memory Stick Pro, Secure Digital and MultiMediaCard.
528*730876beSRoger Tseng
529ab85b120SSamuel Ortizconfig MFD_RC5T583
530ab85b120SSamuel Ortiz	bool "Ricoh RC5T583 Power Management system device"
5310244ad00SMartin Schwidefsky	depends on I2C=y
532ab85b120SSamuel Ortiz	select MFD_CORE
533ab85b120SSamuel Ortiz	select REGMAP_I2C
534ab85b120SSamuel Ortiz	help
535ab85b120SSamuel Ortiz	  Select this option to get support for the RICOH583 Power
536ab85b120SSamuel Ortiz	  Management system device.
537ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device
538ab85b120SSamuel Ortiz	  through i2c interface. The device supports multiple sub-devices
539ab85b120SSamuel Ortiz	  like GPIO, interrupts, RTC, LDO and DCDC regulators, onkey.
540ab85b120SSamuel Ortiz	  Additional drivers must be enabled in order to use the
541ab85b120SSamuel Ortiz	  different functionality of the device.
542ab85b120SSamuel Ortiz
54366c9fbb9SSangbeom Kimconfig MFD_SEC_CORE
54466c9fbb9SSangbeom Kim	bool "SAMSUNG Electronics PMIC Series Support"
5450244ad00SMartin Schwidefsky	depends on I2C=y
546c3d4d697SSangbeom Kim	select MFD_CORE
547c3d4d697SSangbeom Kim	select REGMAP_I2C
5486445b84aSSangbeom Kim	select REGMAP_IRQ
549c3d4d697SSangbeom Kim	help
55066c9fbb9SSangbeom Kim	 Support for the Samsung Electronics MFD series.
5516b2aac42SMasanari Iida	 This driver provides common support for accessing the device,
552c3d4d697SSangbeom Kim	 additional drivers must be enabled in order to use the functionality
553c3d4d697SSangbeom Kim	 of the device
554c3d4d697SSangbeom Kim
5559b8e1a5eSAndrey Smirnovconfig MFD_SI476X_CORE
5569b8e1a5eSAndrey Smirnov	tristate "Silicon Laboratories 4761/64/68 AM/FM radio."
557f52046b1SBalaji Rao	depends on I2C
5588238addcSSascha Hauer	select MFD_CORE
559df3df646SMarc Reilly	select REGMAP_I2C
560df3df646SMarc Reilly	help
5619b8e1a5eSAndrey Smirnov	  This is the core driver for the SI476x series of AM/FM
5629b8e1a5eSAndrey Smirnov	  radio. This MFD driver connects the radio-si476x V4L2 module
5639b8e1a5eSAndrey Smirnov	  and the si476x audio codec.
5649b8e1a5eSAndrey Smirnov
5659b8e1a5eSAndrey Smirnov	  To compile this driver as a module, choose M here: the
5669b8e1a5eSAndrey Smirnov	  module will be called si476x-core.
5679b8e1a5eSAndrey Smirnov
568ab85b120SSamuel Ortizconfig MFD_SM501
569ab85b120SSamuel Ortiz	tristate "Silicon Motion SM501"
570ab85b120SSamuel Ortiz	 ---help---
571ab85b120SSamuel Ortiz	  This is the core driver for the Silicon Motion SM501 multimedia
572ab85b120SSamuel Ortiz	  companion chip. This device is a multifunction device which may
573ab85b120SSamuel Ortiz	  provide numerous interfaces including USB host controller, USB gadget,
574ab85b120SSamuel Ortiz	  asynchronous serial ports, audio functions, and a dual display video
575ab85b120SSamuel Ortiz	  interface. The device may be connected by PCI or local bus with
576ab85b120SSamuel Ortiz	  varying functions enabled.
5771d9f9f04SMark Brown
578ab85b120SSamuel Ortizconfig MFD_SM501_GPIO
579ab85b120SSamuel Ortiz	bool "Export GPIO via GPIO layer"
580ab85b120SSamuel Ortiz	depends on MFD_SM501 && GPIOLIB
581ab85b120SSamuel Ortiz	 ---help---
582ab85b120SSamuel Ortiz	 This option uses the gpio library layer to export the 64 GPIO
583ab85b120SSamuel Ortiz	 lines on the SM501. The platform data is used to supply the
584ab85b120SSamuel Ortiz	 base number for the first GPIO line to register.
5851d9f9f04SMark Brown
586ab85b120SSamuel Ortizconfig MFD_SMSC
587ab85b120SSamuel Ortiz       bool "SMSC ECE1099 series chips"
5880244ad00SMartin Schwidefsky       depends on I2C=y
58996920630SMark Brown       select MFD_CORE
59096920630SMark Brown       select REGMAP_I2C
59196920630SMark Brown       help
592ab85b120SSamuel Ortiz        If you say yes here you get support for the
593ab85b120SSamuel Ortiz        ece1099 chips from SMSC.
594c661a0b9SMark Brown
595ab85b120SSamuel Ortiz        To compile this driver as a module, choose M here: the
596ab85b120SSamuel Ortiz        module will be called smsc.
597df3df646SMarc Reilly
598fa661258SMattias Wallinconfig ABX500_CORE
599fa661258SMattias Wallin	bool "ST-Ericsson ABX500 Mixed Signal Circuit register functions"
60047c16975SMattias Wallin	default y if ARCH_U300 || ARCH_U8500
601fa661258SMattias Wallin	help
602fa661258SMattias Wallin	  Say yes here if you have the ABX500 Mixed Signal IC family
603fa661258SMattias Wallin	  chips. This core driver expose register access functions.
604fa661258SMattias Wallin	  Functionality specific drivers using these functions can
605fa661258SMattias Wallin	  remain unchanged when IC changes. Binding of the functions to
606fa661258SMattias Wallin	  actual register access is done by the IC core driver.
607fa661258SMattias Wallin
60814fa5691SLinus Walleijconfig AB3100_CORE
6092071db48SLinus Walleij	bool "ST-Ericsson AB3100 Mixed Signal Circuit core functions"
6100244ad00SMartin Schwidefsky	depends on I2C=y && ABX500_CORE
6118c96aefbSLinus Walleij	select MFD_CORE
61214fa5691SLinus Walleij	default y if ARCH_U300
61314fa5691SLinus Walleij	help
61414fa5691SLinus Walleij	  Select this to enable the AB3100 Mixed Signal IC core
61514fa5691SLinus Walleij	  functionality. This connects to a AB3100 on the I2C bus
61614fa5691SLinus Walleij	  and expose a number of symbols needed for dependent devices
61714fa5691SLinus Walleij	  to read and write registers and subscribe to events from
61814fa5691SLinus Walleij	  this multi-functional IC. This is needed to use other features
61914fa5691SLinus Walleij	  of the AB3100 such as battery-backed RTC, charging control,
62014fa5691SLinus Walleij	  LEDs, vibrator, system power and temperature, power management
62114fa5691SLinus Walleij	  and ALSA sound.
62214fa5691SLinus Walleij
62312992dd8SLinus Walleijconfig AB3100_OTP
62412992dd8SLinus Walleij	tristate "ST-Ericsson AB3100 OTP functions"
62512992dd8SLinus Walleij	depends on AB3100_CORE
62612992dd8SLinus Walleij	default y if AB3100_CORE
62712992dd8SLinus Walleij	help
62812992dd8SLinus Walleij	  Select this to enable the AB3100 Mixed Signal IC OTP (one-time
62912992dd8SLinus Walleij	  programmable memory) support. This exposes a sysfs file to read
63012992dd8SLinus Walleij	  out OTP values.
63112992dd8SLinus Walleij
63262579266SRabin Vincentconfig AB8500_CORE
63362579266SRabin Vincent	bool "ST-Ericsson AB8500 Mixed Signal Power Management chip"
6340244ad00SMartin Schwidefsky	depends on ABX500_CORE && MFD_DB8500_PRCMU
6355c854aaeSAxel Lin	select POWER_SUPPLY
63662579266SRabin Vincent	select MFD_CORE
63706e589efSLee Jones	select IRQ_DOMAIN
6380c41839eSSrinidhi Kasagar	help
63962579266SRabin Vincent	  Select this option to enable access to AB8500 power management
6406680d940SSundar Iyer	  chip. This connects to U8500 either on the SSP/SPI bus (deprecated
6416680d940SSundar Iyer	  since hardware version v1.0) or the I2C bus via PRCMU. It also adds
6426680d940SSundar Iyer	  the irq_chip parts for handling the Mixed Signal chip events.
6430c41839eSSrinidhi Kasagar	  This chip embeds various other multimedia funtionalities as well.
6440c41839eSSrinidhi Kasagar
6455814fc35SMattias Wallinconfig AB8500_DEBUG
6465814fc35SMattias Wallin       bool "Enable debug info via debugfs"
6473993eff9SArnd Bergmann       depends on AB8500_GPADC && DEBUG_FS
6485814fc35SMattias Wallin       default y if DEBUG_FS
6495814fc35SMattias Wallin       help
6505814fc35SMattias Wallin         Select this option if you want debug information using the debug
6515814fc35SMattias Wallin         filesystem, debugfs.
6525814fc35SMattias Wallin
653dae2db30SArun Murthyconfig AB8500_GPADC
654ab85b120SSamuel Ortiz	bool "ST-Ericsson AB8500 GPADC driver"
655dae2db30SArun Murthy	depends on AB8500_CORE && REGULATOR_AB8500
656dae2db30SArun Murthy	default y
657dae2db30SArun Murthy	help
658dae2db30SArun Murthy	  AB8500 GPADC driver used to convert Acc and battery/ac/usb voltage
659dae2db30SArun Murthy
660650c2a21SLinus Walleijconfig MFD_DB8500_PRCMU
661650c2a21SLinus Walleij	bool "ST-Ericsson DB8500 Power Reset Control Management Unit"
662650c2a21SLinus Walleij	depends on UX500_SOC_DB8500
663650c2a21SLinus Walleij	select MFD_CORE
664650c2a21SLinus Walleij	help
665650c2a21SLinus Walleij	  Select this option to enable support for the DB8500 Power Reset
666650c2a21SLinus Walleij	  and Control Management Unit. This is basically an autonomous
667650c2a21SLinus Walleij	  system controller running an XP70 microprocessor, which is accessed
668650c2a21SLinus Walleij	  through a register map.
669650c2a21SLinus Walleij
670ab85b120SSamuel Ortizconfig MFD_STMPE
671ab85b120SSamuel Ortiz	bool "STMicroelectronics STMPE"
6720244ad00SMartin Schwidefsky	depends on (I2C=y || SPI_MASTER=y)
673e82c60aeSDenis Turischev	select MFD_CORE
674e82c60aeSDenis Turischev	help
675ab85b120SSamuel Ortiz	  Support for the STMPE family of I/O Expanders from
676ab85b120SSamuel Ortiz	  STMicroelectronics.
677e82c60aeSDenis Turischev
678ab85b120SSamuel Ortiz	  Currently supported devices are:
6794630b130SAaron Sierra
680ab85b120SSamuel Ortiz		STMPE811: GPIO, Touchscreen
681ab85b120SSamuel Ortiz		STMPE1601: GPIO, Keypad
682ab85b120SSamuel Ortiz		STMPE1801: GPIO, Keypad
683ab85b120SSamuel Ortiz		STMPE2401: GPIO, Keypad
684ab85b120SSamuel Ortiz		STMPE2403: GPIO, Keypad
685e090d506SFlorian Fainelli
686ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device,
687ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the functionality
688ab85b120SSamuel Ortiz	  of the device.  Currently available sub drivers are:
689bd358132SIra W. Snyder
690ab85b120SSamuel Ortiz		GPIO: stmpe-gpio
691ab85b120SSamuel Ortiz		Keypad: stmpe-keypad
692ab85b120SSamuel Ortiz		Touchscreen: stmpe-ts
69391f4debfSLars-Peter Clausen
694ab85b120SSamuel Ortizmenu "STMicroelectronics STMPE Interface Drivers"
695ab85b120SSamuel Ortizdepends on MFD_STMPE
696375fc77bSDaniel Drake
697ab85b120SSamuel Ortizconfig STMPE_I2C
6988c88126bSMasanari Iida	bool "STMicroelectronics STMPE I2C Interface"
699ab85b120SSamuel Ortiz	depends on I2C=y
70017cdd29dSKeshava Munegowda	default y
701383268a8SMatti Aaltonen	help
702ab85b120SSamuel Ortiz	  This is used to enable I2C interface of STMPE
70317cdd29dSKeshava Munegowda
704ab85b120SSamuel Ortizconfig STMPE_SPI
7058c88126bSMasanari Iida	bool "STMicroelectronics STMPE SPI Interface"
706ab85b120SSamuel Ortiz	depends on SPI_MASTER
707cbdb53e1SAbhijeet Dharmapurikar	help
708ab85b120SSamuel Ortiz	  This is used to enable SPI interface of STMPE
709ab85b120SSamuel Ortizendmenu
7101b1247ddSLaxman Dewangan
71135bdd290SAlessandro Rubiniconfig MFD_STA2X11
712ab85b120SSamuel Ortiz	bool "STMicroelectronics STA2X11"
7130244ad00SMartin Schwidefsky	depends on STA2X11
71435bdd290SAlessandro Rubini	select MFD_CORE
715d94e2553SDavide Ciminaghi	select REGMAP_MMIO
71635bdd290SAlessandro Rubini
71787d68730SDong Aishengconfig MFD_SYSCON
71887d68730SDong Aisheng	bool "System Controller Register R/W Based on Regmap"
71987d68730SDong Aisheng	select REGMAP_MMIO
72075060a1dSYing-Chun Liu (PaulLiu)	help
72187d68730SDong Aisheng	  Select this option to enable accessing system control registers
72287d68730SDong Aisheng	  via regmap.
72375060a1dSYing-Chun Liu (PaulLiu)
724ab85b120SSamuel Ortizconfig MFD_DAVINCI_VOICECODEC
725ab85b120SSamuel Ortiz	tristate
726ab85b120SSamuel Ortiz	select MFD_CORE
727ab85b120SSamuel Ortiz
728ab85b120SSamuel Ortizconfig MFD_TI_AM335X_TSCADC
729ab85b120SSamuel Ortiz	tristate "TI ADC / Touch Screen chip support"
730ab85b120SSamuel Ortiz	select MFD_CORE
731ab85b120SSamuel Ortiz	select REGMAP
732ab85b120SSamuel Ortiz	select REGMAP_MMIO
733ab85b120SSamuel Ortiz	help
734ab85b120SSamuel Ortiz	  If you say yes here you get support for Texas Instruments series
735ab85b120SSamuel Ortiz	  of Touch Screen /ADC chips.
736ab85b120SSamuel Ortiz	  To compile this driver as a module, choose M here: the
737ab85b120SSamuel Ortiz	  module will be called ti_am335x_tscadc.
738ab85b120SSamuel Ortiz
739ab85b120SSamuel Ortizconfig MFD_DM355EVM_MSP
740ab85b120SSamuel Ortiz	bool "TI DaVinci DM355 EVM microcontroller"
741ab85b120SSamuel Ortiz	depends on I2C=y && MACH_DAVINCI_DM355_EVM
742ab85b120SSamuel Ortiz	help
743ab85b120SSamuel Ortiz	  This driver supports the MSP430 microcontroller used on these
744ab85b120SSamuel Ortiz	  boards.  MSP430 firmware manages resets and power sequencing,
745ab85b120SSamuel Ortiz	  inputs from buttons and the IR remote, LEDs, an RTC, and more.
746ab85b120SSamuel Ortiz
747470eca47SMilo Kimconfig MFD_LP3943
748470eca47SMilo Kim	tristate "TI/National Semiconductor LP3943 MFD Driver"
749470eca47SMilo Kim	depends on I2C
750470eca47SMilo Kim	select MFD_CORE
751470eca47SMilo Kim	select REGMAP_I2C
752470eca47SMilo Kim	help
753470eca47SMilo Kim	  Support for the TI/National Semiconductor LP3943.
754470eca47SMilo Kim	  This driver consists of GPIO and PWM drivers.
755470eca47SMilo Kim	  With these functionalities, it can be used for LED string control or
756470eca47SMilo Kim	  general usage such like a GPIO controller and a PWM controller.
757470eca47SMilo Kim
758ab85b120SSamuel Ortizconfig MFD_LP8788
759ab85b120SSamuel Ortiz	bool "TI LP8788 Power Management Unit Driver"
7600244ad00SMartin Schwidefsky	depends on I2C=y
761ab85b120SSamuel Ortiz	select MFD_CORE
762ab85b120SSamuel Ortiz	select REGMAP_I2C
763ab85b120SSamuel Ortiz	select IRQ_DOMAIN
764ab85b120SSamuel Ortiz	help
765ab85b120SSamuel Ortiz	  TI LP8788 PMU supports regulators, battery charger, RTC,
766ab85b120SSamuel Ortiz	  ADC, backlight driver and current sinks.
767a4e137abSRussell King
768a4e137abSRussell Kingconfig MFD_OMAP_USB_HOST
769ab85b120SSamuel Ortiz	bool "TI OMAP USBHS core and TLL driver"
770c948ef3aSGraeme Gregory	depends on USB_EHCI_HCD_OMAP || USB_OHCI_HCD_OMAP3
771c948ef3aSGraeme Gregory	default y
772c948ef3aSGraeme Gregory	help
773c948ef3aSGraeme Gregory	  This is the core driver for the OAMP EHCI and OHCI drivers.
774c948ef3aSGraeme Gregory	  This MFD driver does the required setup functionalities for
775c948ef3aSGraeme Gregory	  OMAP USB Host drivers.
776c948ef3aSGraeme Gregory
777c948ef3aSGraeme Gregoryconfig MFD_PALMAS
778ab85b120SSamuel Ortiz	bool "TI Palmas series chips"
779a4e137abSRussell King	select MFD_CORE
780a4e137abSRussell King	select REGMAP_I2C
781a4e137abSRussell King	select REGMAP_IRQ
7820244ad00SMartin Schwidefsky	depends on I2C=y
783a4e137abSRussell King	help
784a4e137abSRussell King	  If you say yes here you get support for the Palmas
785a4e137abSRussell King	  series of PMIC chips from Texas Instruments.
786a4e137abSRussell King
787ab85b120SSamuel Ortizconfig MFD_TI_SSP
788ab85b120SSamuel Ortiz	tristate "TI Sequencer Serial Port support"
7890244ad00SMartin Schwidefsky	depends on ARCH_DAVINCI_TNETV107X
790f01312d8SLars Poeschel	select MFD_CORE
791ab85b120SSamuel Ortiz	---help---
792ab85b120SSamuel Ortiz	  Say Y here if you want support for the Sequencer Serial Port
793ab85b120SSamuel Ortiz	  in a Texas Instruments TNETV107X SoC.
794a4e137abSRussell King
795ab85b120SSamuel Ortiz	  To compile this driver as a module, choose M here: the
796ab85b120SSamuel Ortiz	  module will be called ti-ssp.
797a4e137abSRussell King
798ab85b120SSamuel Ortizconfig TPS6105X
799ab85b120SSamuel Ortiz	tristate "TI TPS61050/61052 Boost Converters"
800ab85b120SSamuel Ortiz	depends on I2C
801ab85b120SSamuel Ortiz	select REGULATOR
802ab85b120SSamuel Ortiz	select MFD_CORE
803ab85b120SSamuel Ortiz	select REGULATOR_FIXED_VOLTAGE
804a4e137abSRussell King	help
805ab85b120SSamuel Ortiz	  This option enables a driver for the TP61050/TPS61052
806ab85b120SSamuel Ortiz	  high-power "white LED driver". This boost converter is
807ab85b120SSamuel Ortiz	  sometimes used for other things than white LEDs, and
808ab85b120SSamuel Ortiz	  also contains a GPIO pin.
809a4e137abSRussell King
810ab85b120SSamuel Ortizconfig TPS65010
811ab85b120SSamuel Ortiz	tristate "TI TPS6501x Power Management chips"
812ab85b120SSamuel Ortiz	depends on I2C && GPIOLIB
813ab85b120SSamuel Ortiz	default y if MACH_OMAP_H2 || MACH_OMAP_H3 || MACH_OMAP_OSK
814ab85b120SSamuel Ortiz	help
815ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS6501x series of
816ab85b120SSamuel Ortiz	  Power Management chips.  These include voltage regulators,
817ab85b120SSamuel Ortiz	  lithium ion/polymer battery charging, and other features that
818ab85b120SSamuel Ortiz	  are often used in portable devices like cell phones and cameras.
819ab85b120SSamuel Ortiz
820ab85b120SSamuel Ortiz	  This driver can also be built as a module.  If so, the module
821ab85b120SSamuel Ortiz	  will be called tps65010.
822ab85b120SSamuel Ortiz
823ab85b120SSamuel Ortizconfig TPS6507X
824ab85b120SSamuel Ortiz	tristate "TI TPS6507x Power Management / Touch Screen chips"
825c7b76dceSAaro Koskinen	select MFD_CORE
8260244ad00SMartin Schwidefsky	depends on I2C
827ab85b120SSamuel Ortiz	help
828ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS6507x series of
829ab85b120SSamuel Ortiz	  Power Management / Touch Screen chips.  These include voltage
830ab85b120SSamuel Ortiz	  regulators, lithium ion/polymer battery charging, touch screen
831ab85b120SSamuel Ortiz	  and other features that are often used in portable devices.
832ab85b120SSamuel Ortiz	  This driver can also be built as a module.  If so, the module
833ab85b120SSamuel Ortiz	  will be called tps6507x.
834a4e137abSRussell King
835a4e137abSRussell Kingconfig TPS65911_COMPARATOR
836a4e137abSRussell King	tristate
837a4e137abSRussell King
838a4e137abSRussell Kingconfig MFD_TPS65090
839ab85b120SSamuel Ortiz	bool "TI TPS65090 Power Management chips"
8400244ad00SMartin Schwidefsky	depends on I2C=y
841a4e137abSRussell King	select MFD_CORE
842a4e137abSRussell King	select REGMAP_I2C
843a4e137abSRussell King	select REGMAP_IRQ
844a4e137abSRussell King	help
845a4e137abSRussell King	  If you say yes here you get support for the TPS65090 series of
846a4e137abSRussell King	  Power Management chips.
847a4e137abSRussell King	  This driver provides common support for accessing the device,
848a4e137abSRussell King	  additional drivers must be enabled in order to use the
849a4e137abSRussell King	  functionality of the device.
850a4e137abSRussell King
851ab85b120SSamuel Ortizconfig MFD_TPS65217
852ab85b120SSamuel Ortiz	tristate "TI TPS65217 Power Management / White LED chips"
8530244ad00SMartin Schwidefsky	depends on I2C
854a4e137abSRussell King	select MFD_CORE
855ab85b120SSamuel Ortiz	select REGMAP_I2C
856a4e137abSRussell King	help
857ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS65217 series of
858ab85b120SSamuel Ortiz	  Power Management / White LED chips.
859ab85b120SSamuel Ortiz	  These include voltage regulators, lithium ion/polymer battery
860ab85b120SSamuel Ortiz	  charger, wled and other features that are often used in portable
861ab85b120SSamuel Ortiz	  devices.
862ab85b120SSamuel Ortiz
863ab85b120SSamuel Ortiz	  This driver can also be built as a module.  If so, the module
864ab85b120SSamuel Ortiz	  will be called tps65217.
865ab85b120SSamuel Ortiz
86644b4dc61SKeerthyconfig MFD_TPS65218
86744b4dc61SKeerthy	tristate "TI TPS65218 Power Management chips"
86844b4dc61SKeerthy	depends on I2C
86944b4dc61SKeerthy	select MFD_CORE
87044b4dc61SKeerthy	select REGMAP_I2C
87144b4dc61SKeerthy	help
87244b4dc61SKeerthy	  If you say yes here you get support for the TPS65218 series of
87344b4dc61SKeerthy	  Power Management chips.
87444b4dc61SKeerthy	  These include voltage regulators, gpio and other features
87544b4dc61SKeerthy	  that are often used in portable devices. Only regulator
87644b4dc61SKeerthy	  component is currently supported.
87744b4dc61SKeerthy
87844b4dc61SKeerthy	  This driver can also be built as a module.  If so, the module
87944b4dc61SKeerthy	  will be called tps65218.
88044b4dc61SKeerthy
881ab85b120SSamuel Ortizconfig MFD_TPS6586X
882ab85b120SSamuel Ortiz	bool "TI TPS6586x Power Management chips"
8830244ad00SMartin Schwidefsky	depends on I2C=y
884ab85b120SSamuel Ortiz	select MFD_CORE
885ab85b120SSamuel Ortiz	select REGMAP_I2C
886ab85b120SSamuel Ortiz	help
887ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS6586X series of
888ab85b120SSamuel Ortiz	  Power Management chips.
889a4e137abSRussell King	  This driver provides common support for accessing the device,
890a4e137abSRussell King	  additional drivers must be enabled in order to use the
891a4e137abSRussell King	  functionality of the device.
892a4e137abSRussell King
893ab85b120SSamuel Ortiz	  This driver can also be built as a module.  If so, the module
894ab85b120SSamuel Ortiz	  will be called tps6586x.
895a4e137abSRussell King
896ab85b120SSamuel Ortizconfig MFD_TPS65910
897ab85b120SSamuel Ortiz	bool "TI TPS65910 Power Management chip"
8980244ad00SMartin Schwidefsky	depends on I2C=y && GPIOLIB
899a4e137abSRussell King	select MFD_CORE
900a4e137abSRussell King	select REGMAP_I2C
901a4e137abSRussell King	select REGMAP_IRQ
902ab85b120SSamuel Ortiz	select IRQ_DOMAIN
903a4e137abSRussell King	help
904ab85b120SSamuel Ortiz	  if you say yes here you get support for the TPS65910 series of
905ab85b120SSamuel Ortiz	  Power Management chips.
906a4e137abSRussell King
907ab85b120SSamuel Ortizconfig MFD_TPS65912
908ab85b120SSamuel Ortiz	bool "TI TPS65912 Power Management chip"
909ab85b120SSamuel Ortiz	depends on GPIOLIB
910c972c128SDavid Rientjes	select MFD_CORE
911ab85b120SSamuel Ortiz	help
912ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS65912 series of
913ab85b120SSamuel Ortiz	  PM chips.
914ab85b120SSamuel Ortiz
915ab85b120SSamuel Ortizconfig MFD_TPS65912_I2C
916ab85b120SSamuel Ortiz	bool "TI TPS65912 Power Management chip with I2C"
917f01312d8SLars Poeschel	select MFD_CORE
918ab85b120SSamuel Ortiz	select MFD_TPS65912
9190244ad00SMartin Schwidefsky	depends on I2C=y && GPIOLIB
920ab85b120SSamuel Ortiz	help
921ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS65912 series of
922ab85b120SSamuel Ortiz	  PM chips with I2C interface.
923ab85b120SSamuel Ortiz
924ab85b120SSamuel Ortizconfig MFD_TPS65912_SPI
925ab85b120SSamuel Ortiz	bool "TI TPS65912 Power Management chip with SPI"
926ab85b120SSamuel Ortiz	select MFD_CORE
927ab85b120SSamuel Ortiz	select MFD_TPS65912
9280244ad00SMartin Schwidefsky	depends on SPI_MASTER && GPIOLIB
929ab85b120SSamuel Ortiz	help
930ab85b120SSamuel Ortiz	  If you say yes here you get support for the TPS65912 series of
931ab85b120SSamuel Ortiz	  PM chips with SPI interface.
932ab85b120SSamuel Ortiz
933ab85b120SSamuel Ortizconfig MFD_TPS80031
934ab85b120SSamuel Ortiz	bool "TI TPS80031/TPS80032 Power Management chips"
9350244ad00SMartin Schwidefsky	depends on I2C=y
936ab85b120SSamuel Ortiz	select MFD_CORE
937ab85b120SSamuel Ortiz	select REGMAP_I2C
938ab85b120SSamuel Ortiz	select REGMAP_IRQ
939ab85b120SSamuel Ortiz	help
940ab85b120SSamuel Ortiz	  If you say yes here you get support for the Texas Instruments
941ab85b120SSamuel Ortiz	  TPS80031/ TPS80032 Fully Integrated Power Management with Power
942ab85b120SSamuel Ortiz	  Path and Battery Charger. The device provides five configurable
943ab85b120SSamuel Ortiz	  step-down converters, 11 general purpose LDOs, USB OTG Module,
944ab85b120SSamuel Ortiz	  ADC, RTC, 2 PWM, System Voltage Regulator/Battery Charger with
945ab85b120SSamuel Ortiz	  Power Path from USB, 32K clock generator.
946ab85b120SSamuel Ortiz
947ab85b120SSamuel Ortizconfig TWL4030_CORE
948ab85b120SSamuel Ortiz	bool "TI TWL4030/TWL5030/TWL6030/TPS659x0 Support"
9490244ad00SMartin Schwidefsky	depends on I2C=y
950ab85b120SSamuel Ortiz	select IRQ_DOMAIN
951ab85b120SSamuel Ortiz	select REGMAP_I2C
952ab85b120SSamuel Ortiz	help
953ab85b120SSamuel Ortiz	  Say yes here if you have TWL4030 / TWL6030 family chip on your board.
954ab85b120SSamuel Ortiz	  This core driver provides register access and IRQ handling
955ab85b120SSamuel Ortiz	  facilities, and registers devices for the various functions
956ab85b120SSamuel Ortiz	  so that function-specific drivers can bind to them.
957ab85b120SSamuel Ortiz
958ab85b120SSamuel Ortiz	  These multi-function chips are found on many OMAP2 and OMAP3
959ab85b120SSamuel Ortiz	  boards, providing power management, RTC, GPIO, keypad, a
960ab85b120SSamuel Ortiz	  high speed USB OTG transceiver, an audio codec (on most
961ab85b120SSamuel Ortiz	  versions) and many other features.
962ab85b120SSamuel Ortiz
963ab85b120SSamuel Ortizconfig TWL4030_POWER
964ab85b120SSamuel Ortiz	bool "TI TWL4030 power resources"
965ab85b120SSamuel Ortiz	depends on TWL4030_CORE && ARM
966ab85b120SSamuel Ortiz	help
967ab85b120SSamuel Ortiz	  Say yes here if you want to use the power resources on the
968ab85b120SSamuel Ortiz	  TWL4030 family chips.  Most of these resources are regulators,
969ab85b120SSamuel Ortiz	  which have a separate driver; some are control signals, such
970ab85b120SSamuel Ortiz	  as clock request handshaking.
971ab85b120SSamuel Ortiz
972ab85b120SSamuel Ortiz	  This driver uses board-specific data to initialize the resources
973ab85b120SSamuel Ortiz	  and load scripts controlling which resources are switched off/on
974ab85b120SSamuel Ortiz	  or reset when a sleep, wakeup or warm reset event occurs.
975ab85b120SSamuel Ortiz
976ab85b120SSamuel Ortizconfig MFD_TWL4030_AUDIO
977ab85b120SSamuel Ortiz	bool "TI TWL4030 Audio"
9780244ad00SMartin Schwidefsky	depends on TWL4030_CORE
979ab85b120SSamuel Ortiz	select MFD_CORE
980ab85b120SSamuel Ortiz	default n
981ab85b120SSamuel Ortiz
982ab85b120SSamuel Ortizconfig TWL6040_CORE
983ab85b120SSamuel Ortiz	bool "TI TWL6040 audio codec"
9840244ad00SMartin Schwidefsky	depends on I2C=y
985ab85b120SSamuel Ortiz	select MFD_CORE
986ab85b120SSamuel Ortiz	select REGMAP_I2C
987ab85b120SSamuel Ortiz	select REGMAP_IRQ
988f01312d8SLars Poeschel	default n
989f01312d8SLars Poeschel	help
990ab85b120SSamuel Ortiz	  Say yes here if you want support for Texas Instruments TWL6040 audio
991ab85b120SSamuel Ortiz	  codec.
992ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device,
993ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the
994ab85b120SSamuel Ortiz	  functionality of the device (audio, vibra).
995f01312d8SLars Poeschel
996ab85b120SSamuel Ortizconfig MENELAUS
997ab85b120SSamuel Ortiz	bool "TI TWL92330/Menelaus PM chip"
998ab85b120SSamuel Ortiz	depends on I2C=y && ARCH_OMAP2
999c7b76dceSAaro Koskinen	help
1000ab85b120SSamuel Ortiz	  If you say yes here you get support for the Texas Instruments
1001ab85b120SSamuel Ortiz	  TWL92330/Menelaus Power Management chip. This include voltage
1002ab85b120SSamuel Ortiz	  regulators, Dual slot memory card transceivers, real-time clock
1003ab85b120SSamuel Ortiz	  and other features that are often used in portable devices like
1004ab85b120SSamuel Ortiz	  cell phones and PDAs.
1005c7b76dceSAaro Koskinen
1006ab85b120SSamuel Ortizconfig MFD_WL1273_CORE
1007ab85b120SSamuel Ortiz	tristate "TI WL1273 FM radio"
10080244ad00SMartin Schwidefsky	depends on I2C
1009ab85b120SSamuel Ortiz	select MFD_CORE
1010ab85b120SSamuel Ortiz	default n
1011ab85b120SSamuel Ortiz	help
1012ab85b120SSamuel Ortiz	  This is the core driver for the TI WL1273 FM radio. This MFD
1013ab85b120SSamuel Ortiz	  driver connects the radio-wl1273 V4L2 module and the wl1273
1014ab85b120SSamuel Ortiz	  audio codec.
1015ab85b120SSamuel Ortiz
1016ab85b120SSamuel Ortizconfig MFD_LM3533
1017ab85b120SSamuel Ortiz	tristate "TI/National Semiconductor LM3533 Lighting Power chip"
1018ab85b120SSamuel Ortiz	depends on I2C
1019ab85b120SSamuel Ortiz	select MFD_CORE
1020ab85b120SSamuel Ortiz	select REGMAP_I2C
1021ab85b120SSamuel Ortiz	help
1022ab85b120SSamuel Ortiz	  Say yes here to enable support for National Semiconductor / TI
1023ab85b120SSamuel Ortiz	  LM3533 Lighting Power chips.
1024ab85b120SSamuel Ortiz
1025ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device;
1026ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the LED,
1027ab85b120SSamuel Ortiz	  backlight or ambient-light-sensor functionality of the device.
1028ab85b120SSamuel Ortiz
1029ab85b120SSamuel Ortizconfig MFD_TIMBERDALE
1030ab85b120SSamuel Ortiz	tristate "Timberdale FPGA"
1031ab85b120SSamuel Ortiz	select MFD_CORE
1032ab85b120SSamuel Ortiz	depends on PCI && GPIOLIB
1033ab85b120SSamuel Ortiz	---help---
1034ab85b120SSamuel Ortiz	This is the core driver for the timberdale FPGA. This device is a
1035ab85b120SSamuel Ortiz	multifunction device which exposes numerous platform devices.
1036ab85b120SSamuel Ortiz
1037ab85b120SSamuel Ortiz	The timberdale FPGA can be found on the Intel Atom development board
1038ab85b120SSamuel Ortiz	for in-vehicle infontainment, called Russellville.
1039ab85b120SSamuel Ortiz
1040ab85b120SSamuel Ortizconfig MFD_TC3589X
1041ab85b120SSamuel Ortiz	bool "Toshiba TC35892 and variants"
10420244ad00SMartin Schwidefsky	depends on I2C=y
1043ab85b120SSamuel Ortiz	select MFD_CORE
1044ab85b120SSamuel Ortiz	help
1045ab85b120SSamuel Ortiz	  Support for the Toshiba TC35892 and variants I/O Expander.
1046ab85b120SSamuel Ortiz
1047ab85b120SSamuel Ortiz	  This driver provides common support for accessing the device,
1048ab85b120SSamuel Ortiz	  additional drivers must be enabled in order to use the
1049ab85b120SSamuel Ortiz	  functionality of the device.
1050ab85b120SSamuel Ortiz
1051ab85b120SSamuel Ortizconfig MFD_TMIO
1052ab85b120SSamuel Ortiz	bool
1053ab85b120SSamuel Ortiz	default n
1054ab85b120SSamuel Ortiz
1055ab85b120SSamuel Ortizconfig MFD_T7L66XB
1056ab85b120SSamuel Ortiz	bool "Toshiba T7L66XB"
10570244ad00SMartin Schwidefsky	depends on ARM && HAVE_CLK
1058ab85b120SSamuel Ortiz	select MFD_CORE
1059ab85b120SSamuel Ortiz	select MFD_TMIO
1060ab85b120SSamuel Ortiz	help
1061ab85b120SSamuel Ortiz	  Support for Toshiba Mobile IO Controller T7L66XB
1062ab85b120SSamuel Ortiz
1063ab85b120SSamuel Ortizconfig MFD_TC6387XB
1064ab85b120SSamuel Ortiz	bool "Toshiba TC6387XB"
1065ab85b120SSamuel Ortiz	depends on ARM && HAVE_CLK
1066ab85b120SSamuel Ortiz	select MFD_CORE
1067ab85b120SSamuel Ortiz	select MFD_TMIO
1068ab85b120SSamuel Ortiz	help
1069ab85b120SSamuel Ortiz	  Support for Toshiba Mobile IO Controller TC6387XB
1070ab85b120SSamuel Ortiz
1071ab85b120SSamuel Ortizconfig MFD_TC6393XB
1072ab85b120SSamuel Ortiz	bool "Toshiba TC6393XB"
1073ab85b120SSamuel Ortiz	depends on ARM && HAVE_CLK
1074ab85b120SSamuel Ortiz	select GPIOLIB
1075ab85b120SSamuel Ortiz	select MFD_CORE
1076ab85b120SSamuel Ortiz	select MFD_TMIO
1077ab85b120SSamuel Ortiz	help
1078ab85b120SSamuel Ortiz	  Support for Toshiba Mobile IO Controller TC6393XB
1079ab85b120SSamuel Ortiz
1080ab85b120SSamuel Ortizconfig MFD_VX855
1081ab85b120SSamuel Ortiz	tristate "VIA VX855/VX875 integrated south bridge"
10820244ad00SMartin Schwidefsky	depends on PCI
1083ab85b120SSamuel Ortiz	select MFD_CORE
1084ab85b120SSamuel Ortiz	help
1085ab85b120SSamuel Ortiz	  Say yes here to enable support for various functions of the
1086ab85b120SSamuel Ortiz	  VIA VX855/VX875 south bridge. You will need to enable the vx855_spi
1087ab85b120SSamuel Ortiz	  and/or vx855_gpio drivers for this to do anything useful.
1088ab85b120SSamuel Ortiz
1089ab85b120SSamuel Ortizconfig MFD_ARIZONA
1090ab85b120SSamuel Ortiz	select REGMAP
1091ab85b120SSamuel Ortiz	select REGMAP_IRQ
1092ab85b120SSamuel Ortiz	select MFD_CORE
1093ab85b120SSamuel Ortiz	bool
1094ab85b120SSamuel Ortiz
1095ab85b120SSamuel Ortizconfig MFD_ARIZONA_I2C
1096ab85b120SSamuel Ortiz	tristate "Wolfson Microelectronics Arizona platform with I2C"
1097ab85b120SSamuel Ortiz	select MFD_ARIZONA
1098ab85b120SSamuel Ortiz	select MFD_CORE
1099ab85b120SSamuel Ortiz	select REGMAP_I2C
11000244ad00SMartin Schwidefsky	depends on I2C
1101ab85b120SSamuel Ortiz	help
1102ab85b120SSamuel Ortiz	  Support for the Wolfson Microelectronics Arizona platform audio SoC
1103ab85b120SSamuel Ortiz	  core functionality controlled via I2C.
1104ab85b120SSamuel Ortiz
1105ab85b120SSamuel Ortizconfig MFD_ARIZONA_SPI
1106ab85b120SSamuel Ortiz	tristate "Wolfson Microelectronics Arizona platform with SPI"
1107ab85b120SSamuel Ortiz	select MFD_ARIZONA
1108ab85b120SSamuel Ortiz	select MFD_CORE
1109ab85b120SSamuel Ortiz	select REGMAP_SPI
11100244ad00SMartin Schwidefsky	depends on SPI_MASTER
1111ab85b120SSamuel Ortiz	help
1112ab85b120SSamuel Ortiz	  Support for the Wolfson Microelectronics Arizona platform audio SoC
1113ab85b120SSamuel Ortiz	  core functionality controlled via I2C.
1114ab85b120SSamuel Ortiz
1115ab85b120SSamuel Ortizconfig MFD_WM5102
1116ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM5102"
1117ab85b120SSamuel Ortiz	depends on MFD_ARIZONA
1118ab85b120SSamuel Ortiz	help
1119ab85b120SSamuel Ortiz	  Support for Wolfson Microelectronics WM5102 low power audio SoC
1120ab85b120SSamuel Ortiz
1121ab85b120SSamuel Ortizconfig MFD_WM5110
1122ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM5110"
1123ab85b120SSamuel Ortiz	depends on MFD_ARIZONA
1124ab85b120SSamuel Ortiz	help
1125ab85b120SSamuel Ortiz	  Support for Wolfson Microelectronics WM5110 low power audio SoC
1126ab85b120SSamuel Ortiz
1127dc7d4863SCharles Keepaxconfig MFD_WM8997
1128ca16ecbcSMark Brown	bool "Wolfson Microelectronics WM8997"
1129dc7d4863SCharles Keepax	depends on MFD_ARIZONA
1130dc7d4863SCharles Keepax	help
1131dc7d4863SCharles Keepax	  Support for Wolfson Microelectronics WM8997 low power audio SoC
1132dc7d4863SCharles Keepax
1133ab85b120SSamuel Ortizconfig MFD_WM8400
1134ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM8400"
1135ab85b120SSamuel Ortiz	select MFD_CORE
11360244ad00SMartin Schwidefsky	depends on I2C=y
1137ab85b120SSamuel Ortiz	select REGMAP_I2C
1138ab85b120SSamuel Ortiz	help
1139ab85b120SSamuel Ortiz	  Support for the Wolfson Microelecronics WM8400 PMIC and audio
1140ab85b120SSamuel Ortiz	  CODEC.  This driver provides common support for accessing
1141ab85b120SSamuel Ortiz	  the device, additional drivers must be enabled in order to use
1142ab85b120SSamuel Ortiz	  the functionality of the device.
1143ab85b120SSamuel Ortiz
1144ab85b120SSamuel Ortizconfig MFD_WM831X
1145ab85b120SSamuel Ortiz	bool
1146ab85b120SSamuel Ortiz
1147ab85b120SSamuel Ortizconfig MFD_WM831X_I2C
1148ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM831x/2x PMICs with I2C"
1149ab85b120SSamuel Ortiz	select MFD_CORE
1150ab85b120SSamuel Ortiz	select MFD_WM831X
1151ab85b120SSamuel Ortiz	select REGMAP_I2C
1152ab85b120SSamuel Ortiz	select IRQ_DOMAIN
11530244ad00SMartin Schwidefsky	depends on I2C=y
1154ab85b120SSamuel Ortiz	help
1155ab85b120SSamuel Ortiz	  Support for the Wolfson Microelecronics WM831x and WM832x PMICs
1156ab85b120SSamuel Ortiz	  when controlled using I2C.  This driver provides common support
1157ab85b120SSamuel Ortiz	  for accessing the device, additional drivers must be enabled in
1158ab85b120SSamuel Ortiz	  order to use the functionality of the device.
1159ab85b120SSamuel Ortiz
1160ab85b120SSamuel Ortizconfig MFD_WM831X_SPI
1161ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM831x/2x PMICs with SPI"
1162ab85b120SSamuel Ortiz	select MFD_CORE
1163ab85b120SSamuel Ortiz	select MFD_WM831X
1164ab85b120SSamuel Ortiz	select REGMAP_SPI
1165ab85b120SSamuel Ortiz	select IRQ_DOMAIN
11660244ad00SMartin Schwidefsky	depends on SPI_MASTER
1167ab85b120SSamuel Ortiz	help
1168ab85b120SSamuel Ortiz	  Support for the Wolfson Microelecronics WM831x and WM832x PMICs
1169ab85b120SSamuel Ortiz	  when controlled using SPI.  This driver provides common support
1170ab85b120SSamuel Ortiz	  for accessing the device, additional drivers must be enabled in
1171ab85b120SSamuel Ortiz	  order to use the functionality of the device.
1172ab85b120SSamuel Ortiz
1173ab85b120SSamuel Ortizconfig MFD_WM8350
1174ab85b120SSamuel Ortiz	bool
1175ab85b120SSamuel Ortiz
1176ab85b120SSamuel Ortizconfig MFD_WM8350_I2C
1177ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM8350 with I2C"
1178ab85b120SSamuel Ortiz	select MFD_WM8350
11790244ad00SMartin Schwidefsky	depends on I2C=y
1180ab85b120SSamuel Ortiz	help
1181ab85b120SSamuel Ortiz	  The WM8350 is an integrated audio and power management
1182ab85b120SSamuel Ortiz	  subsystem with watchdog and RTC functionality for embedded
1183ab85b120SSamuel Ortiz	  systems.  This option enables core support for the WM8350 with
1184ab85b120SSamuel Ortiz	  I2C as the control interface.  Additional options must be
1185ab85b120SSamuel Ortiz	  selected to enable support for the functionality of the chip.
1186ab85b120SSamuel Ortiz
1187ab85b120SSamuel Ortizconfig MFD_WM8994
1188ab85b120SSamuel Ortiz	bool "Wolfson Microelectronics WM8994"
1189acad189bSGuennadi Liakhovetski	select MFD_CORE
1190acad189bSGuennadi Liakhovetski	select REGMAP_I2C
1191acad189bSGuennadi Liakhovetski	select REGMAP_IRQ
11920244ad00SMartin Schwidefsky	depends on I2C=y
1193acad189bSGuennadi Liakhovetski	help
1194ab85b120SSamuel Ortiz	  The WM8994 is a highly integrated hi-fi CODEC designed for
1195ab85b120SSamuel Ortiz	  smartphone applicatiosn.  As well as audio functionality it
1196ab85b120SSamuel Ortiz	  has on board GPIO and regulator functionality which is
1197ab85b120SSamuel Ortiz	  supported via the relevant subsystems.  This driver provides
1198ab85b120SSamuel Ortiz	  core support for the WM8994, in order to use the actual
1199ab85b120SSamuel Ortiz	  functionaltiy of the device other drivers must be enabled.
1200acad189bSGuennadi Liakhovetski
120160013b94SLinus Walleijconfig MFD_STW481X
120260013b94SLinus Walleij	bool "Support for ST Microelectronics STw481x"
120360013b94SLinus Walleij	depends on I2C && ARCH_NOMADIK
120460013b94SLinus Walleij	select REGMAP_I2C
120560013b94SLinus Walleij	select MFD_CORE
120660013b94SLinus Walleij	help
120760013b94SLinus Walleij	  Select this option to enable the STw481x chip driver used
120860013b94SLinus Walleij	  in various ST Microelectronics and ST-Ericsson embedded
120960013b94SLinus Walleij	  Nomadik series.
121060013b94SLinus Walleij
1211a4e137abSRussell Kingmenu "Multimedia Capabilities Port drivers"
1212a4e137abSRussell King	depends on ARCH_SA1100
1213a4e137abSRussell King
1214a4e137abSRussell Kingconfig MCP
1215a4e137abSRussell King	tristate
1216a4e137abSRussell King
1217a4e137abSRussell King# Interface drivers
1218a4e137abSRussell Kingconfig MCP_SA11X0
1219a4e137abSRussell King	tristate "Support SA11x0 MCP interface"
1220a4e137abSRussell King	depends on ARCH_SA1100
1221a4e137abSRussell King	select MCP
1222a4e137abSRussell King
1223a4e137abSRussell King# Chip drivers
1224a4e137abSRussell Kingconfig MCP_UCB1200
1225a4e137abSRussell King	bool "Support for UCB1200 / UCB1300"
1226a4e137abSRussell King	depends on MCP_SA11X0
1227a4e137abSRussell King	select MCP
1228a4e137abSRussell King
1229a4e137abSRussell Kingconfig MCP_UCB1200_TS
1230a4e137abSRussell King	tristate "Touchscreen interface support"
1231a4e137abSRussell King	depends on MCP_UCB1200 && INPUT
1232a4e137abSRussell King
1233a4e137abSRussell Kingendmenu
12343ecbf05bSPawel Moll
12353ecbf05bSPawel Mollconfig VEXPRESS_CONFIG
12368eb12b98SPawel Moll	bool "ARM Versatile Express platform infrastructure"
12378eb12b98SPawel Moll	depends on ARM || ARM64
12383ecbf05bSPawel Moll	help
12393ecbf05bSPawel Moll	  Platform configuration infrastructure for the ARM Ltd.
12403ecbf05bSPawel Moll	  Versatile Express.
1241a6e6e660SLinus Walleij
1242a6e6e660SLinus Walleijendmenu
1243a6e6e660SLinus Walleijendif
1244