blob: 50c476964e48ce9249f12357fa7eb1356398b110 [file] [log] [blame]
Russell Kinga4e137a2005-08-18 10:06:59 +01001#
2# Multifunction miscellaneous devices
3#
4
Randy Dunlap38270642010-05-11 01:07:34 +02005menuconfig MFD_SUPPORT
6 bool "Multifunction device drivers"
Martin Schwidefskye25df122007-05-10 15:45:57 +02007 depends on HAS_IOMEM
Randy Dunlap38270642010-05-11 01:07:34 +02008 default y
9 help
Samuel Ortiz15742c82010-06-19 02:29:24 +020010 Multifunction devices embed several functions (e.g. GPIOs,
11 touchscreens, keyboards, current regulators, power management chips,
12 etc...) in one single integrated circuit. They usually talk to the
13 main CPU through one or more IRQ lines and low speed data busses (SPI,
14 I2C, etc..). They appear as one single device to the main system
15 through the data bus and the MFD framework allows for sub devices
16 (a.k.a. functions) to appear as discrete platform devices.
17 MFDs are typically found on embedded platforms.
18
19 This option alone does not add any kernel code.
Randy Dunlap38270642010-05-11 01:07:34 +020020
21if MFD_SUPPORT
Ben Dooksb6d64542007-02-20 13:58:01 -080022
Dmitry Baryshkovaa613de2008-06-27 10:37:19 +010023config MFD_CORE
24 tristate
25 default n
26
Haojian Zhuang2cc50be2010-01-06 17:07:13 -050027config MFD_88PM860X
28 bool "Support Marvell 88PM8606/88PM8607"
Geert Uytterhoeven8d002bd2009-12-15 21:49:57 +010029 depends on I2C=y && GENERIC_HARDIRQS
Haojian Zhuang2cc50be2010-01-06 17:07:13 -050030 select MFD_CORE
31 help
32 This supports for Marvell 88PM8606/88PM8607 Power Management IC.
33 This includes the I2C driver and the core APIs _only_, you have to
34 select individual components like voltage regulators, RTC and
35 battery-charger under the corresponding menus.
36
Ben Dooksb6d64542007-02-20 13:58:01 -080037config MFD_SM501
38 tristate "Support for Silicon Motion SM501"
39 ---help---
40 This is the core driver for the Silicon Motion SM501 multimedia
41 companion chip. This device is a multifunction device which may
Matt LaPlante01dd2fb2007-10-20 01:34:40 +020042 provide numerous interfaces including USB host controller, USB gadget,
43 asynchronous serial ports, audio functions, and a dual display video
Ben Dooksb6d64542007-02-20 13:58:01 -080044 interface. The device may be connected by PCI or local bus with
45 varying functions enabled.
46
Ben Dooksf61be272008-07-25 01:45:59 -070047config MFD_SM501_GPIO
48 bool "Export GPIO via GPIO layer"
Samuel Ortiz2eedd602008-09-25 00:39:05 +020049 depends on MFD_SM501 && GPIOLIB
Ben Dooksf61be272008-07-25 01:45:59 -070050 ---help---
51 This option uses the gpio library layer to export the 64 GPIO
52 lines on the SM501. The platform data is used to supply the
53 base number for the first GPIO line to register.
54
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080055config MFD_ASIC3
56 bool "Support for Compaq ASIC3"
Samuel Ortiz2eedd602008-09-25 00:39:05 +020057 depends on GENERIC_HARDIRQS && GPIOLIB && ARM
Philipp Zabel9461f652009-06-15 12:10:24 +020058 select MFD_CORE
Samuel Ortizfa9ff4b2008-02-07 00:14:49 -080059 ---help---
60 This driver supports the ASIC3 multifunction chip found on many
61 PDAs (mainly iPAQ and HTC based ones)
62
Magnus Damma87d5632009-10-02 02:22:09 +000063config MFD_SH_MOBILE_SDHI
64 bool "Support for SuperH Mobile SDHI"
Magnus Damm3d8ca8c2010-02-22 13:40:59 +090065 depends on SUPERH || ARCH_SHMOBILE
Magnus Damma87d5632009-10-02 02:22:09 +000066 select MFD_CORE
Guennadi Liakhovetski311f3ac2010-05-19 18:34:22 +000067 select TMIO_MMC_DMA
Magnus Damma87d5632009-10-02 02:22:09 +000068 ---help---
69 This driver supports the SDHI hardware block found in many
70 SuperH Mobile SoCs.
71
Miguel Aguilarca263082010-03-11 09:32:21 -060072config MFD_DAVINCI_VOICECODEC
73 tristate
74 select MFD_CORE
75
David Brownell0931a4c2008-12-22 12:05:27 +010076config MFD_DM355EVM_MSP
77 bool "DaVinci DM355 EVM microcontroller"
Samuel Ortiz1819ebc2010-09-20 00:19:27 +020078 depends on I2C=y && MACH_DAVINCI_DM355_EVM
David Brownell0931a4c2008-12-22 12:05:27 +010079 help
80 This driver supports the MSP430 microcontroller used on these
81 boards. MSP430 firmware manages resets and power sequencing,
82 inputs from buttons and the IR remote, LEDs, an RTC, and more.
83
Cyril Chemparathy03df0f62011-01-18 19:21:35 +000084config MFD_TI_SSP
85 tristate "TI Sequencer Serial Port support"
86 depends on ARCH_DAVINCI_TNETV107X
87 select MFD_CORE
88 ---help---
89 Say Y here if you want support for the Sequencer Serial Port
90 in a Texas Instruments TNETV107X SoC.
91
92 To compile this driver as a module, choose M here: the
93 module will be called ti-ssp.
94
Philipp Zabela1635b82008-04-09 19:20:34 +010095config HTC_EGPIO
96 bool "HTC EGPIO support"
Michael Buesch7444a722008-07-25 01:46:11 -070097 depends on GENERIC_HARDIRQS && GPIOLIB && ARM
Philipp Zabela1635b82008-04-09 19:20:34 +010098 help
99 This driver supports the CPLD egpio chip present on
100 several HTC phones. It provides basic support for input
101 pins, output pins, and irqs.
102
Philipp Zabel5dc33392008-04-12 13:25:41 +0100103config HTC_PASIC3
104 tristate "HTC PASIC3 LED/DS1WM chip support"
Philipp Zabel0254a8f2009-02-17 10:06:45 +0100105 select MFD_CORE
Philipp Zabel5dc33392008-04-12 13:25:41 +0100106 help
107 This core driver provides register access for the LED/DS1WM
108 chips labeled "AIC2" and "AIC3", found on HTC Blueangel and
109 HTC Magician devices, respectively. Actual functionality is
110 handled by the leds-pasic3 and ds1wm drivers.
111
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100112config HTC_I2CPLD
113 bool "HTC I2C PLD chip support"
Randy Dunlapbef3e202010-01-20 19:55:34 -0800114 depends on I2C=y && GPIOLIB
Cory Maccarrone6048a3d2010-01-19 11:22:45 +0100115 help
116 If you say yes here you get support for the supposed CPLD
117 found on omap850 HTC devices like the HTC Wizard and HTC Herald.
118 This device provides input and output GPIOs through an I2C
119 interface to one or more sub-chips.
120
Marek Vašutd9105c22008-08-03 21:34:08 +0100121config UCB1400_CORE
122 tristate "Philips UCB1400 Core driver"
Randy Dunlape4831802008-10-15 13:29:07 +0200123 depends on AC97_BUS
Andrew Morton5a49a542008-10-15 13:30:47 +0200124 depends on GPIOLIB
Marek Vašutd9105c22008-08-03 21:34:08 +0100125 help
126 This enables support for the Philips UCB1400 core functions.
127 The UCB1400 is an AC97 audio codec.
128
129 To compile this driver as a module, choose M here: the
130 module will be called ucb1400_core.
131
David Brownell87c13492008-12-22 12:16:27 +0100132config TPS65010
133 tristate "TPS6501x Power Management chips"
134 depends on I2C && GPIOLIB
135 default y if MACH_OMAP_H2 || MACH_OMAP_H3 || MACH_OMAP_OSK
136 help
137 If you say yes here you get support for the TPS6501x series of
138 Power Management chips. These include voltage regulators,
139 lithium ion/polymer battery charging, and other features that
140 are often used in portable devices like cell phones and cameras.
141
142 This driver can also be built as a module. If so, the module
143 will be called tps65010.
144
Todd Fischer31dd6a22010-04-08 09:04:55 +0200145config TPS6507X
146 tristate "TPS6507x Power Management / Touch Screen chips"
147 select MFD_CORE
148 depends on I2C
149 help
150 If you say yes here you get support for the TPS6507x series of
151 Power Management / Touch Screen chips. These include voltage
152 regulators, lithium ion/polymer battery charging, touch screen
153 and other features that are often used in portable devices.
154 This driver can also be built as a module. If so, the module
155 will be called tps6507x.
156
David Brownell88e75cc2008-12-22 12:18:02 +0100157config MENELAUS
158 bool "Texas Instruments TWL92330/Menelaus PM chip"
Tony Lindgren088ef952010-02-12 12:26:47 -0800159 depends on I2C=y && ARCH_OMAP2
David Brownell88e75cc2008-12-22 12:18:02 +0100160 help
161 If you say yes here you get support for the Texas Instruments
162 TWL92330/Menelaus Power Management chip. This include voltage
Matt LaPlante692105b2009-01-26 11:12:25 +0100163 regulators, Dual slot memory card transceivers, real-time clock
David Brownell88e75cc2008-12-22 12:18:02 +0100164 and other features that are often used in portable devices like
165 cell phones and PDAs.
166
David Brownella603a7f2008-10-15 12:15:39 +0200167config TWL4030_CORE
Balaji T Ke8deb282009-12-14 00:25:31 +0100168 bool "Texas Instruments TWL4030/TWL5030/TWL6030/TPS659x0 Support"
David Brownell67460a72008-12-01 00:35:33 +0100169 depends on I2C=y && GENERIC_HARDIRQS
David Brownella603a7f2008-10-15 12:15:39 +0200170 help
Balaji T Ke8deb282009-12-14 00:25:31 +0100171 Say yes here if you have TWL4030 / TWL6030 family chip on your board.
David Brownella603a7f2008-10-15 12:15:39 +0200172 This core driver provides register access and IRQ handling
173 facilities, and registers devices for the various functions
174 so that function-specific drivers can bind to them.
175
176 These multi-function chips are found on many OMAP2 and OMAP3
177 boards, providing power management, RTC, GPIO, keypad, a
178 high speed USB OTG transceiver, an audio codec (on most
179 versions) and many other features.
180
Keerthyf99c1d42011-03-01 19:12:26 +0530181config TWL4030_MADC
182 tristate "Texas Instruments TWL4030 MADC"
183 depends on TWL4030_CORE
184 help
185 This driver provides support for triton TWL4030-MADC. The
186 driver supports both RT and SW conversion methods.
187
188 This driver can be built as a module. If so it will be
189 named twl4030-madc
190
Amit Kucheriaebf0bd32009-08-31 18:32:18 +0200191config TWL4030_POWER
192 bool "Support power resources on TWL4030 family chips"
193 depends on TWL4030_CORE && ARM
194 help
195 Say yes here if you want to use the power resources on the
196 TWL4030 family chips. Most of these resources are regulators,
197 which have a separate driver; some are control signals, such
198 as clock request handshaking.
199
200 This driver uses board-specific data to initialize the resources
201 and load scripts controling which resources are switched off/on
202 or reset when a sleep, wakeup or warm reset event occurs.
203
Peter Ujfalusi0b83dde2009-10-22 13:26:45 +0300204config TWL4030_CODEC
205 bool
206 depends on TWL4030_CORE
207 select MFD_CORE
208 default n
209
Hemanth V31fc03d2010-07-14 12:04:56 +0200210config TWL6030_PWM
211 tristate "TWL6030 PWM (Pulse Width Modulator) Support"
212 depends on TWL4030_CORE
213 select HAVE_PWM
214 default n
215 help
216 Say yes here if you want support for TWL6030 PWM.
217 This is used to control charging LED brightness.
218
Rabin Vincent27e34992010-07-02 16:52:08 +0530219config MFD_STMPE
220 bool "Support STMicroelectronics STMPE"
221 depends on I2C=y && GENERIC_HARDIRQS
222 select MFD_CORE
223 help
224 Support for the STMPE family of I/O Expanders from
225 STMicroelectronics.
226
227 Currently supported devices are:
228
229 STMPE811: GPIO, Touchscreen
230 STMPE1601: GPIO, Keypad
231 STMPE2401: GPIO, Keypad
232 STMPE2403: GPIO, Keypad
233
234 This driver provides common support for accessing the device,
235 additional drivers must be enabled in order to use the functionality
236 of the device. Currently available sub drivers are:
237
238 GPIO: stmpe-gpio
239 Keypad: stmpe-keypad
240 Touchscreen: stmpe-ts
241
Sundar Iyerf4e8afd2010-12-13 09:33:13 +0530242config MFD_TC3589X
243 bool "Support Toshiba TC35892 and variants"
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200244 depends on I2C=y && GENERIC_HARDIRQS
245 select MFD_CORE
246 help
Sundar Iyerf4e8afd2010-12-13 09:33:13 +0530247 Support for the Toshiba TC35892 and variants I/O Expander.
Rabin Vincentb4ecd322010-05-10 23:39:47 +0200248
249 This driver provides common support for accessing the device,
250 additional drivers must be enabled in order to use the
251 functionality of the device.
252
Samuel Ortiz1c2c30a2008-08-05 19:27:58 +0200253config MFD_TMIO
254 bool
255 default n
256
Guennadi Liakhovetski311f3ac2010-05-19 18:34:22 +0000257config TMIO_MMC_DMA
258 bool
259 select DMA_ENGINE
260 select DMADEVICES
261
Ian Molton1f192012008-07-15 15:09:43 +0100262config MFD_T7L66XB
263 bool "Support Toshiba T7L66XB"
Al Viro9ca68232008-11-01 18:19:59 +0000264 depends on ARM && HAVE_CLK
Ian Molton1f192012008-07-15 15:09:43 +0100265 select MFD_CORE
Samuel Ortiz1c2c30a2008-08-05 19:27:58 +0200266 select MFD_TMIO
Ian Molton1f192012008-07-15 15:09:43 +0100267 help
268 Support for Toshiba Mobile IO Controller T7L66XB
269
Ian Moltoncbdfb422008-07-15 15:12:52 +0100270config MFD_TC6387XB
271 bool "Support Toshiba TC6387XB"
Al Viro9ca68232008-11-01 18:19:59 +0000272 depends on ARM && HAVE_CLK
Ian Moltoncbdfb422008-07-15 15:12:52 +0100273 select MFD_CORE
Samuel Ortiz1c2c30a2008-08-05 19:27:58 +0200274 select MFD_TMIO
Ian Moltoncbdfb422008-07-15 15:12:52 +0100275 help
276 Support for Toshiba Mobile IO Controller TC6387XB
277
Dmitry Baryshkovd6315942008-06-22 12:01:58 +0100278config MFD_TC6393XB
279 bool "Support Toshiba TC6393XB"
Adrian Bunk8d25b362008-07-26 02:38:00 +0300280 depends on GPIOLIB && ARM
Dmitry Baryshkovf024ff12008-06-27 10:37:57 +0100281 select MFD_CORE
Samuel Ortiz1c2c30a2008-08-05 19:27:58 +0200282 select MFD_TMIO
Dmitry Baryshkovd6315942008-06-22 12:01:58 +0100283 help
284 Support for Toshiba Mobile IO Controller TC6393XB
285
Samuel Ortiz8e2eaab2008-10-24 17:10:05 +0200286config PMIC_DA903X
287 bool "Dialog Semiconductor DA9030/DA9034 PMIC Support"
288 depends on I2C=y
289 help
290 Say yes here to support for Dialog Semiconductor DA9030 (a.k.a
291 ARAVA) and DA9034 (a.k.a MICCO), these are Power Management IC
292 usually found on PXA processors-based platforms. This includes
293 the I2C driver and the core APIs _only_, you have to select
294 individual components like LCD backlight, voltage regulators,
295 LEDs and battery-charger under the corresponding menus.
296
Michael Hennericha5736e02009-10-12 17:22:38 +0200297config PMIC_ADP5520
298 bool "Analog Devices ADP5520/01 MFD PMIC Core Support"
299 depends on I2C=y
300 help
301 Say yes here to add support for Analog Devices AD5520 and ADP5501,
302 Multifunction Power Management IC. This includes
303 the I2C driver and the core APIs _only_, you have to select
304 individual components like LCD backlight, LEDs, GPIOs and Kepad
305 under the corresponding menus.
306
Haojian Zhuangd50f8f32010-01-08 12:29:23 +0100307config MFD_MAX8925
Haojian Zhuang1f1cf8f2010-02-05 16:07:54 +0100308 bool "Maxim Semiconductor MAX8925 PMIC Support"
Geert Uytterhoeven8d002bd2009-12-15 21:49:57 +0100309 depends on I2C=y && GENERIC_HARDIRQS
Haojian Zhuang1ad99892010-01-08 12:43:29 -0500310 select MFD_CORE
Haojian Zhuangd50f8f32010-01-08 12:29:23 +0100311 help
312 Say yes here to support for Maxim Semiconductor MAX8925. This is
313 a Power Management IC. This driver provies common support for
314 accessing the device, additional drivers must be enabled in order
315 to use the functionality of the device.
316
Kyungmin Park156f2522010-06-16 09:04:16 +0200317config MFD_MAX8998
Kyungmin Parkf8539dd2010-08-23 13:46:49 +0900318 bool "Maxim Semiconductor MAX8998/National LP3974 PMIC Support"
Joonyoung Shim2c7e6f52010-09-10 18:36:39 +0200319 depends on I2C=y && GENERIC_HARDIRQS
Kyungmin Park156f2522010-06-16 09:04:16 +0200320 select MFD_CORE
321 help
Kyungmin Parkf8539dd2010-08-23 13:46:49 +0900322 Say yes here to support for Maxim Semiconductor MAX8998 and
323 National Semiconductor LP3974. This is a Power Management IC.
324 This driver provies common support for accessing the device,
325 additional drivers must be enabled in order to use the functionality
326 of the device.
Kyungmin Park156f2522010-06-16 09:04:16 +0200327
Mark Brown1d9f9f02008-09-10 18:58:42 +0100328config MFD_WM8400
329 tristate "Support Wolfson Microelectronics WM8400"
Mark Brownb8380c12008-12-18 10:54:22 +0100330 select MFD_CORE
Mark Brown9c366452008-10-24 17:16:11 +0200331 depends on I2C
Mark Brown1d9f9f02008-09-10 18:58:42 +0100332 help
333 Support for the Wolfson Microelecronics WM8400 PMIC and audio
Mark Brown9e5aca52009-05-29 11:34:18 +0100334 CODEC. This driver provides common support for accessing
Mark Brown1d9f9f02008-09-10 18:58:42 +0100335 the device, additional drivers must be enabled in order to use
336 the functionality of the device.
337
Mark Brownb11062b2009-07-27 14:45:58 +0100338config MFD_WM831X
Mark Browne5b48682010-10-19 23:57:56 +0200339 bool
340 depends on GENERIC_HARDIRQS
341
342config MFD_WM831X_I2C
343 bool "Support Wolfson Microelectronics WM831x/2x PMICs with I2C"
Mark Brownb11062b2009-07-27 14:45:58 +0100344 select MFD_CORE
Mark Browne5b48682010-10-19 23:57:56 +0200345 select MFD_WM831X
Geert Uytterhoeven8d002bd2009-12-15 21:49:57 +0100346 depends on I2C=y && GENERIC_HARDIRQS
Mark Brownb11062b2009-07-27 14:45:58 +0100347 help
Mark Browne5b48682010-10-19 23:57:56 +0200348 Support for the Wolfson Microelecronics WM831x and WM832x PMICs
349 when controlled using I2C. This driver provides common support
350 for accessing the device, additional drivers must be enabled in
351 order to use the functionality of the device.
Mark Brownb11062b2009-07-27 14:45:58 +0100352
Mark Brown2aa13b92010-10-20 00:00:11 +0200353config MFD_WM831X_SPI
354 bool "Support Wolfson Microelectronics WM831x/2x PMICs with SPI"
355 select MFD_CORE
356 select MFD_WM831X
357 depends on SPI_MASTER && GENERIC_HARDIRQS
358 help
359 Support for the Wolfson Microelecronics WM831x and WM832x PMICs
360 when controlled using SPI. This driver provides common support
361 for accessing the device, additional drivers must be enabled in
362 order to use the functionality of the device.
363
Mark Brown89b40122008-10-10 15:58:10 +0100364config MFD_WM8350
Mark Brownecf926b2010-01-05 20:40:47 +0000365 bool
Geert Uytterhoeven8d002bd2009-12-15 21:49:57 +0100366 depends on GENERIC_HARDIRQS
Mark Brown89b40122008-10-10 15:58:10 +0100367
368config MFD_WM8350_CONFIG_MODE_0
369 bool
370 depends on MFD_WM8350
371
372config MFD_WM8350_CONFIG_MODE_1
373 bool
374 depends on MFD_WM8350
375
376config MFD_WM8350_CONFIG_MODE_2
377 bool
378 depends on MFD_WM8350
379
380config MFD_WM8350_CONFIG_MODE_3
381 bool
382 depends on MFD_WM8350
383
Mark Brownca23f8c2008-12-18 23:12:28 +0100384config MFD_WM8351_CONFIG_MODE_0
385 bool
386 depends on MFD_WM8350
387
388config MFD_WM8351_CONFIG_MODE_1
389 bool
390 depends on MFD_WM8350
391
392config MFD_WM8351_CONFIG_MODE_2
393 bool
394 depends on MFD_WM8350
395
396config MFD_WM8351_CONFIG_MODE_3
397 bool
398 depends on MFD_WM8350
399
Mark Brown96920632008-12-18 23:09:50 +0100400config MFD_WM8352_CONFIG_MODE_0
401 bool
402 depends on MFD_WM8350
403
404config MFD_WM8352_CONFIG_MODE_1
405 bool
406 depends on MFD_WM8350
407
408config MFD_WM8352_CONFIG_MODE_2
409 bool
410 depends on MFD_WM8350
411
412config MFD_WM8352_CONFIG_MODE_3
413 bool
414 depends on MFD_WM8350
415
Mark Brownc661a0b2008-10-10 15:58:11 +0100416config MFD_WM8350_I2C
Mark Brownecf926b2010-01-05 20:40:47 +0000417 bool "Support Wolfson Microelectronics WM8350 with I2C"
Mark Brownc661a0b2008-10-10 15:58:11 +0100418 select MFD_WM8350
Geert Uytterhoeven8d002bd2009-12-15 21:49:57 +0100419 depends on I2C=y && GENERIC_HARDIRQS
Mark Brownc661a0b2008-10-10 15:58:11 +0100420 help
421 The WM8350 is an integrated audio and power management
422 subsystem with watchdog and RTC functionality for embedded
423 systems. This option enables core support for the WM8350 with
424 I2C as the control interface. Additional options must be
425 selected to enable support for the functionality of the chip.
426
Mark Brown9e501082010-01-29 18:20:29 +0000427config MFD_WM8994
Mark Brownc9fbf7e2010-03-26 16:49:15 +0000428 bool "Support Wolfson Microelectronics WM8994"
Mark Brown9e501082010-01-29 18:20:29 +0000429 select MFD_CORE
Mark Brownc9fbf7e2010-03-26 16:49:15 +0000430 depends on I2C=y && GENERIC_HARDIRQS
Mark Brown9e501082010-01-29 18:20:29 +0000431 help
432 The WM8994 is a highly integrated hi-fi CODEC designed for
433 smartphone applicatiosn. As well as audio functionality it
434 has on board GPIO and regulator functionality which is
435 supported via the relevant subsystems. This driver provides
436 core support for the WM8994, in order to use the actual
437 functionaltiy of the device other drivers must be enabled.
438
Balaji Raof52046b2009-01-09 01:49:01 +0100439config MFD_PCF50633
440 tristate "Support for NXP PCF50633"
441 depends on I2C
442 help
443 Say yes here if you have NXP PCF50633 chip on your board.
444 This core driver provides register access and IRQ handling
445 facilities, and registers devices for the various functions
446 so that function-specific drivers can bind to them.
447
Sascha Hauer8238add2009-08-19 01:40:28 +0200448config MFD_MC13783
Uwe Kleine-König8e005932010-09-28 16:37:20 +0200449 tristate
450
451config MFD_MC13XXX
452 tristate "Support Freescale MC13783 and MC13892"
Sascha Hauer8238add2009-08-19 01:40:28 +0200453 depends on SPI_MASTER
454 select MFD_CORE
Uwe Kleine-König8e005932010-09-28 16:37:20 +0200455 select MFD_MC13783
Sascha Hauer8238add2009-08-19 01:40:28 +0200456 help
Uwe Kleine-König8e005932010-09-28 16:37:20 +0200457 Support for the Freescale (Atlas) PMIC and audio CODECs
458 MC13783 and MC13892.
Sascha Hauer8238add2009-08-19 01:40:28 +0200459 This driver provides common support for accessing the device,
460 additional drivers must be enabled in order to use the
461 functionality of the device.
462
Balaji Rao08c3e062009-01-09 01:49:26 +0100463config PCF50633_ADC
464 tristate "Support for NXP PCF50633 ADC"
465 depends on MFD_PCF50633
466 help
467 Say yes here if you want to include support for ADC in the
468 NXP PCF50633 chip.
469
Balaji Rao6a3d1192009-01-09 01:49:37 +0100470config PCF50633_GPIO
471 tristate "Support for NXP PCF50633 GPIO"
472 depends on MFD_PCF50633
473 help
474 Say yes here if you want to include support GPIO for pins on
475 the PCF50633 chip.
476
Mattias Wallinfa661252010-05-01 18:26:20 +0200477config ABX500_CORE
478 bool "ST-Ericsson ABX500 Mixed Signal Circuit register functions"
Mattias Wallin47c16972010-09-10 17:47:56 +0200479 default y if ARCH_U300 || ARCH_U8500
Mattias Wallinfa661252010-05-01 18:26:20 +0200480 help
481 Say yes here if you have the ABX500 Mixed Signal IC family
482 chips. This core driver expose register access functions.
483 Functionality specific drivers using these functions can
484 remain unchanged when IC changes. Binding of the functions to
485 actual register access is done by the IC core driver.
486
Linus Walleij14fa5692009-05-21 23:17:06 +0200487config AB3100_CORE
Linus Walleij2071db42010-01-19 11:41:52 +0100488 bool "ST-Ericsson AB3100 Mixed Signal Circuit core functions"
Mattias Wallinfa661252010-05-01 18:26:20 +0200489 depends on I2C=y && ABX500_CORE
Linus Walleij8c96aef2010-08-20 10:27:12 +0200490 select MFD_CORE
Linus Walleij14fa5692009-05-21 23:17:06 +0200491 default y if ARCH_U300
492 help
493 Select this to enable the AB3100 Mixed Signal IC core
494 functionality. This connects to a AB3100 on the I2C bus
495 and expose a number of symbols needed for dependent devices
496 to read and write registers and subscribe to events from
497 this multi-functional IC. This is needed to use other features
498 of the AB3100 such as battery-backed RTC, charging control,
499 LEDs, vibrator, system power and temperature, power management
500 and ALSA sound.
501
Linus Walleij12992dd2009-08-18 22:52:26 +0200502config AB3100_OTP
503 tristate "ST-Ericsson AB3100 OTP functions"
504 depends on AB3100_CORE
505 default y if AB3100_CORE
506 help
507 Select this to enable the AB3100 Mixed Signal IC OTP (one-time
508 programmable memory) support. This exposes a sysfs file to read
509 out OTP values.
510
Daniel Ribeiro13a09f92009-05-28 15:43:37 -0300511config EZX_PCAP
512 bool "PCAP Support"
513 depends on GENERIC_HARDIRQS && SPI_MASTER
514 help
515 This enables the PCAP ASIC present on EZX Phones. This is
516 needed for MMC, TouchScreen, Sound, USB, etc..
517
Rabin Vincent62579262010-05-19 11:39:02 +0200518config AB8500_CORE
519 bool "ST-Ericsson AB8500 Mixed Signal Power Management chip"
Sundar Iyer6680d942010-12-24 11:52:08 +0100520 depends on GENERIC_HARDIRQS && ABX500_CORE
Rabin Vincent62579262010-05-19 11:39:02 +0200521 select MFD_CORE
Srinidhi Kasagar0c418392009-10-12 17:11:52 +0200522 help
Rabin Vincent62579262010-05-19 11:39:02 +0200523 Select this option to enable access to AB8500 power management
Sundar Iyer6680d942010-12-24 11:52:08 +0100524 chip. This connects to U8500 either on the SSP/SPI bus (deprecated
525 since hardware version v1.0) or the I2C bus via PRCMU. It also adds
526 the irq_chip parts for handling the Mixed Signal chip events.
Srinidhi Kasagar0c418392009-10-12 17:11:52 +0200527 This chip embeds various other multimedia funtionalities as well.
528
Mattias Wallin39368ed2010-09-15 13:12:03 +0200529config AB8500_I2C_CORE
530 bool "AB8500 register access via PRCMU I2C"
531 depends on AB8500_CORE && UX500_SOC_DB8500
532 default y
533 help
534 This enables register access to the AB8500 chip via PRCMU I2C.
535 The AB8500 chip can be accessed via SPI or I2C. On DB8500 hardware
536 the I2C bus is connected to the Power Reset
537 and Mangagement Unit, PRCMU.
538
Mattias Wallin5814fc32010-09-13 16:05:04 +0200539config AB8500_DEBUG
540 bool "Enable debug info via debugfs"
541 depends on AB8500_CORE && DEBUG_FS
542 default y if DEBUG_FS
543 help
544 Select this option if you want debug information using the debug
545 filesystem, debugfs.
546
Arun Murthydae2db32011-02-22 10:11:13 +0100547config AB8500_GPADC
548 bool "AB8500 GPADC driver"
549 depends on AB8500_CORE && REGULATOR_AB8500
550 default y
551 help
552 AB8500 GPADC driver used to convert Acc and battery/ac/usb voltage
553
Mattias Wallin09bcb3f2010-05-11 00:25:29 +0200554config AB3550_CORE
555 bool "ST-Ericsson AB3550 Mixed Signal Circuit core functions"
556 select MFD_CORE
557 depends on I2C=y && GENERIC_HARDIRQS && ABX500_CORE
558 help
559 Select this to enable the AB3550 Mixed Signal IC core
560 functionality. This connects to a AB3550 on the I2C bus
561 and expose a number of symbols needed for dependent devices
562 to read and write registers and subscribe to events from
563 this multi-functional IC. This is needed to use other features
564 of the AB3550 such as battery-backed RTC, charging control,
565 LEDs, vibrator, system power and temperature, power management
566 and ALSA sound.
567
Andres Salomonf71e1af2010-11-26 11:52:35 +0100568config MFD_CS5535
569 tristate "Support for CS5535 and CS5536 southbridge core functions"
570 select MFD_CORE
571 depends on PCI
572 ---help---
573 This is the core driver for CS5535/CS5536 MFD functions. This is
574 necessary for using the board's GPIO and MFGPT functionality.
575
Richard Röjfors8edbede2010-02-04 08:18:52 -0300576config MFD_TIMBERDALE
577 tristate "Support for the Timberdale FPGA"
578 select MFD_CORE
Randy Dunlap546e29b62010-02-12 12:30:55 -0300579 depends on PCI && GPIOLIB
Richard Röjfors8edbede2010-02-04 08:18:52 -0300580 ---help---
581 This is the core driver for the timberdale FPGA. This device is a
582 multifunction device which exposes numerous platform devices.
583
584 The timberdale FPGA can be found on the Intel Atom development board
585 for in-vehicle infontainment, called Russellville.
Denis Turischeve82c60a2010-02-19 11:26:25 +0100586
587config LPC_SCH
588 tristate "Intel SCH LPC"
589 depends on PCI
590 select MFD_CORE
591 help
592 LPC bridge function of the Intel SCH provides support for
593 System Management Bus and General Purpose I/O.
594
Florian Fainellie090d502010-03-21 01:06:05 +0100595config MFD_RDC321X
596 tristate "Support for RDC-R321x southbridge"
597 select MFD_CORE
598 depends on PCI
599 help
600 Say yes here if you want to have support for the RDC R-321x SoC
601 southbridge which provides access to GPIOs and Watchdog using the
602 southbridge PCI device configuration space.
603
Ira W. Snyderbd358132010-04-07 09:43:00 +0200604config MFD_JANZ_CMODIO
605 tristate "Support for Janz CMOD-IO PCI MODULbus Carrier Board"
606 select MFD_CORE
607 depends on PCI
608 help
609 This is the core driver for the Janz CMOD-IO PCI MODULbus
610 carrier board. This device is a PCI to MODULbus bridge which may
611 host many different types of MODULbus daughterboards, including
612 CAN and GPIO controllers.
613
Lars-Peter Clausen91f4deb2010-07-12 03:48:08 +0200614config MFD_JZ4740_ADC
615 tristate "Support for the JZ4740 SoC ADC core"
616 select MFD_CORE
617 depends on MACH_JZ4740
618 help
619 Say yes here if you want support for the ADC unit in the JZ4740 SoC.
620 This driver is necessary for jz4740-battery and jz4740-hwmon driver.
621
Mike Rapoportc6c19332010-08-11 01:11:04 +0200622config MFD_TPS6586X
Gary Kingc26448c2010-09-20 00:18:27 +0200623 bool "TPS6586x Power Management chips"
624 depends on I2C=y && GPIOLIB && GENERIC_HARDIRQS
Mike Rapoportc6c19332010-08-11 01:11:04 +0200625 select MFD_CORE
626 help
627 If you say yes here you get support for the TPS6586X series of
628 Power Management chips.
629 This driver provides common support for accessing the device,
630 additional drivers must be enabled in order to use the
631 functionality of the device.
632
633 This driver can also be built as a module. If so, the module
634 will be called tps6586x.
635
Daniel Drake375fc772010-09-30 21:55:41 +0100636config MFD_VX855
637 tristate "Support for VIA VX855/VX875 integrated south bridge"
638 depends on PCI
639 select MFD_CORE
640 help
641 Say yes here to enable support for various functions of the
642 VIA VX855/VX875 south bridge. You will need to enable the vx855_spi
643 and/or vx855_gpio drivers for this to do anything useful.
644
Matti Aaltonen383268a2010-12-10 11:41:33 -0300645config MFD_WL1273_CORE
646 tristate
647 depends on I2C
648 select MFD_CORE
649 default n
650 help
651 This is the core driver for the TI WL1273 FM radio. This MFD
652 driver connects the radio-wl1273 V4L2 module and the wl1273
653 audio codec.
654
Keshava Munegowda17cdd292011-03-01 20:08:17 +0530655config MFD_OMAP_USB_HOST
656 bool "Support OMAP USBHS core driver"
657 depends on USB_EHCI_HCD_OMAP || USB_OHCI_HCD_OMAP3
658 default y
659 help
660 This is the core driver for the OAMP EHCI and OHCI drivers.
661 This MFD driver does the required setup functionalities for
662 OMAP USB Host drivers.
663
Randy Dunlap38270642010-05-11 01:07:34 +0200664endif # MFD_SUPPORT
Ben Dooksb6d64542007-02-20 13:58:01 -0800665
Russell Kinga4e137a2005-08-18 10:06:59 +0100666menu "Multimedia Capabilities Port drivers"
Adrian Bunkf751d502006-03-24 03:18:21 -0800667 depends on ARCH_SA1100
Russell Kinga4e137a2005-08-18 10:06:59 +0100668
669config MCP
670 tristate
671
Russell King5e742ad2005-08-18 10:08:15 +0100672# Interface drivers
673config MCP_SA11X0
674 tristate "Support SA11x0 MCP interface"
675 depends on ARCH_SA1100
676 select MCP
677
Russell King05c45ca2005-09-11 10:26:31 +0100678# Chip drivers
679config MCP_UCB1200
680 tristate "Support for UCB1200 / UCB1300"
681 depends on MCP
682
Russell Kingacb45432005-09-11 10:26:57 +0100683config MCP_UCB1200_TS
684 tristate "Touchscreen interface support"
685 depends on MCP_UCB1200 && INPUT
686
Russell Kinga4e137a2005-08-18 10:06:59 +0100687endmenu