xref: /linux/drivers/input/keyboard/Kconfig (revision dfb6db007a56998e53e5ba5fb798b2e830b7feca)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Input core configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvaldsmenuconfig INPUT_KEYBOARD
5bcd26230STom Gundersen	bool "Keyboards"
61da177e4SLinus Torvalds	default y
71da177e4SLinus Torvalds	help
81da177e4SLinus Torvalds	  Say Y here, and a list of supported keyboards will be displayed.
91da177e4SLinus Torvalds	  This option doesn't affect the kernel.
101da177e4SLinus Torvalds
111da177e4SLinus Torvalds	  If unsure, say Y.
121da177e4SLinus Torvalds
131da177e4SLinus Torvaldsif INPUT_KEYBOARD
141da177e4SLinus Torvalds
1568077264SAlexandre Belloniconfig KEYBOARD_ADC
1668077264SAlexandre Belloni	tristate "ADC Ladder Buttons"
1768077264SAlexandre Belloni	depends on IIO
1868077264SAlexandre Belloni	select INPUT_POLLDEV
1968077264SAlexandre Belloni	help
2068077264SAlexandre Belloni	  This driver implements support for buttons connected
2168077264SAlexandre Belloni	  to an ADC using a resistor ladder.
2268077264SAlexandre Belloni
2368077264SAlexandre Belloni	  Say Y here if your device has such buttons connected to an ADC.  Your
2468077264SAlexandre Belloni	  board-specific setup logic must also provide a configuration data
2568077264SAlexandre Belloni	  for mapping voltages to buttons.
2668077264SAlexandre Belloni
2768077264SAlexandre Belloni	  To compile this driver as a module, choose M here: the
2868077264SAlexandre Belloni	  module will be called adc_keys.
2968077264SAlexandre Belloni
30fba65fe0SMichael Hennerichconfig KEYBOARD_ADP5520
31fba65fe0SMichael Hennerich	tristate "Keypad Support for ADP5520 PMIC"
32fba65fe0SMichael Hennerich	depends on PMIC_ADP5520
33fba65fe0SMichael Hennerich	help
34fba65fe0SMichael Hennerich	  This option enables support for the keypad scan matrix
35fba65fe0SMichael Hennerich	  on Analog Devices ADP5520 PMICs.
36fba65fe0SMichael Hennerich
37fba65fe0SMichael Hennerich	  To compile this driver as a module, choose M here: the module will
38fba65fe0SMichael Hennerich	  be called adp5520-keys.
39fba65fe0SMichael Hennerich
4088751dd6SMichael Hennerichconfig KEYBOARD_ADP5588
415a9003dbSMichael Hennerich	tristate "ADP5588/87 I2C QWERTY Keypad and IO Expander"
4288751dd6SMichael Hennerich	depends on I2C
4388751dd6SMichael Hennerich	help
445a9003dbSMichael Hennerich	  Say Y here if you want to use a ADP5588/87 attached to your
4588751dd6SMichael Hennerich	  system I2C bus.
4688751dd6SMichael Hennerich
4788751dd6SMichael Hennerich	  To compile this driver as a module, choose M here: the
4888751dd6SMichael Hennerich	  module will be called adp5588-keys.
4988751dd6SMichael Hennerich
509d2e1736SMichael Hennerichconfig KEYBOARD_ADP5589
513f48e735SMichael Hennerich	tristate "ADP5585/ADP5589 I2C QWERTY Keypad and IO Expander"
529d2e1736SMichael Hennerich	depends on I2C
539d2e1736SMichael Hennerich	help
543f48e735SMichael Hennerich	  Say Y here if you want to use a ADP5585/ADP5589 attached to your
559d2e1736SMichael Hennerich	  system I2C bus.
569d2e1736SMichael Hennerich
579d2e1736SMichael Hennerich	  To compile this driver as a module, choose M here: the
589d2e1736SMichael Hennerich	  module will be called adp5589-keys.
599d2e1736SMichael Hennerich
60cb589529SDmitry Torokhovconfig KEYBOARD_AMIGA
61cb589529SDmitry Torokhov	tristate "Amiga keyboard"
62cb589529SDmitry Torokhov	depends on AMIGA
63cb589529SDmitry Torokhov	help
64cb589529SDmitry Torokhov	  Say Y here if you are running Linux on any AMIGA and have a keyboard
65cb589529SDmitry Torokhov	  attached.
66cb589529SDmitry Torokhov
67cb589529SDmitry Torokhov	  To compile this driver as a module, choose M here: the
68cb589529SDmitry Torokhov	  module will be called amikbd.
69cb589529SDmitry Torokhov
70cb589529SDmitry Torokhovconfig ATARI_KBD_CORE
71cb589529SDmitry Torokhov	bool
72cb589529SDmitry Torokhov
73cb589529SDmitry Torokhovconfig KEYBOARD_ATARI
74cb589529SDmitry Torokhov	tristate "Atari keyboard"
75cb589529SDmitry Torokhov	depends on ATARI
76cb589529SDmitry Torokhov	select ATARI_KBD_CORE
77cb589529SDmitry Torokhov	help
78cb589529SDmitry Torokhov	  Say Y here if you are running Linux on any Atari and have a keyboard
79cb589529SDmitry Torokhov	  attached.
80cb589529SDmitry Torokhov
81cb589529SDmitry Torokhov	  To compile this driver as a module, choose M here: the
82cb589529SDmitry Torokhov	  module will be called atakbd.
83cb589529SDmitry Torokhov
841da177e4SLinus Torvaldsconfig KEYBOARD_ATKBD
85bcd26230STom Gundersen	tristate "AT keyboard"
861da177e4SLinus Torvalds	default y
871da177e4SLinus Torvalds	select SERIO
881da177e4SLinus Torvalds	select SERIO_LIBPS2
890a4ac2eaSArnd Bergmann	select SERIO_I8042 if ARCH_MIGHT_HAVE_PC_SERIO
901da177e4SLinus Torvalds	select SERIO_GSCPS2 if GSC
911da177e4SLinus Torvalds	help
921da177e4SLinus Torvalds	  Say Y here if you want to use a standard AT or PS/2 keyboard. Usually
931da177e4SLinus Torvalds	  you'll need this, unless you have a different type keyboard (USB, ADB
941da177e4SLinus Torvalds	  or other). This also works for AT and PS/2 keyboards connected over a
951da177e4SLinus Torvalds	  PS/2 to serial converter.
961da177e4SLinus Torvalds
971da177e4SLinus Torvalds	  If unsure, say Y.
981da177e4SLinus Torvalds
991da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1001da177e4SLinus Torvalds	  module will be called atkbd.
1011da177e4SLinus Torvalds
1021da177e4SLinus Torvaldsconfig KEYBOARD_ATKBD_HP_KEYCODES
1031da177e4SLinus Torvalds	bool "Use HP keyboard scancodes"
1041da177e4SLinus Torvalds	depends on PARISC && KEYBOARD_ATKBD
1051da177e4SLinus Torvalds	default y
1061da177e4SLinus Torvalds	help
1071da177e4SLinus Torvalds	  Say Y here if you have a PA-RISC machine and want to use an AT or
1081da177e4SLinus Torvalds	  PS/2 keyboard, and your keyboard uses keycodes that are specific to
1091da177e4SLinus Torvalds	  PA-RISC keyboards.
1101da177e4SLinus Torvalds
1111da177e4SLinus Torvalds	  Say N if you use a standard keyboard.
1121da177e4SLinus Torvalds
1131da177e4SLinus Torvaldsconfig KEYBOARD_ATKBD_RDI_KEYCODES
1141da177e4SLinus Torvalds	bool "Use PrecisionBook keyboard scancodes"
1151da177e4SLinus Torvalds	depends on KEYBOARD_ATKBD_HP_KEYCODES
1161da177e4SLinus Torvalds	default n
1171da177e4SLinus Torvalds	help
1181da177e4SLinus Torvalds	  If you have an RDI PrecisionBook, say Y here if you want to use its
1191da177e4SLinus Torvalds	  built-in keyboard (as opposed to an external keyboard).
1201da177e4SLinus Torvalds
1211da177e4SLinus Torvalds	  The PrecisionBook has five keys that conflict with those used by most
1221da177e4SLinus Torvalds	  AT and PS/2 keyboards. These are as follows:
1231da177e4SLinus Torvalds
1241da177e4SLinus Torvalds	    PrecisionBook    Standard AT or PS/2
1251da177e4SLinus Torvalds
1261da177e4SLinus Torvalds	    F1               F12
1271da177e4SLinus Torvalds	    Left Ctrl        Left Alt
1281da177e4SLinus Torvalds	    Caps Lock        Left Ctrl
1291da177e4SLinus Torvalds	    Right Ctrl       Caps Lock
1301da177e4SLinus Torvalds	    Left             102nd key (the key to the right of Left Shift)
1311da177e4SLinus Torvalds
1321da177e4SLinus Torvalds	  If you say N here, and use the PrecisionBook keyboard, then each key
1331da177e4SLinus Torvalds	  in the left-hand column will be interpreted as the corresponding key
1341da177e4SLinus Torvalds	  in the right-hand column.
1351da177e4SLinus Torvalds
1361da177e4SLinus Torvalds	  If you say Y here, and use an external keyboard, then each key in the
1371da177e4SLinus Torvalds	  right-hand column will be interpreted as the key shown in the
1381da177e4SLinus Torvalds	  left-hand column.
1391da177e4SLinus Torvalds
140bd7e4e85SBo Shenconfig KEYBOARD_QT1070
141bd7e4e85SBo Shen       tristate "Atmel AT42QT1070 Touch Sensor Chip"
142bd7e4e85SBo Shen       depends on I2C
143bd7e4e85SBo Shen       help
144bd7e4e85SBo Shen         Say Y here if you want to use Atmel AT42QT1070 QTouch
145bd7e4e85SBo Shen         Sensor chip as input device.
146bd7e4e85SBo Shen
147bd7e4e85SBo Shen         To compile this driver as a module, choose M here:
148bd7e4e85SBo Shen         the module will be called qt1070
149bd7e4e85SBo Shen
150d90d8d5eSChristoph Fritzconfig KEYBOARD_QT2160
151fde11323SRaphael Derosso Pereira	tristate "Atmel AT42QT2160 Touch Sensor Chip"
1526828b4bbSKees Cook	depends on I2C
153fde11323SRaphael Derosso Pereira	help
154fde11323SRaphael Derosso Pereira	  If you say yes here you get support for Atmel AT42QT2160 Touch
155fde11323SRaphael Derosso Pereira	  Sensor chip as a keyboard input.
156fde11323SRaphael Derosso Pereira
157fde11323SRaphael Derosso Pereira	  This driver can also be built as a module. If so, the module
158fde11323SRaphael Derosso Pereira	  will be called qt2160.
159fde11323SRaphael Derosso Pereira
160e70f18e1SAlexander Shiyanconfig KEYBOARD_CLPS711X
161e70f18e1SAlexander Shiyan	tristate "CLPS711X Keypad support"
162e70f18e1SAlexander Shiyan	depends on OF_GPIO && (ARCH_CLPS711X || COMPILE_TEST)
163e70f18e1SAlexander Shiyan	select INPUT_MATRIXKMAP
164e70f18e1SAlexander Shiyan	select INPUT_POLLDEV
165e70f18e1SAlexander Shiyan	help
166e70f18e1SAlexander Shiyan	  Say Y here to enable the matrix keypad on the Cirrus Logic
167e70f18e1SAlexander Shiyan	  CLPS711X CPUs.
168e70f18e1SAlexander Shiyan
169e70f18e1SAlexander Shiyan	  To compile this driver as a module, choose M here: the
170e70f18e1SAlexander Shiyan	  module will be called clps711x-keypad.
171e70f18e1SAlexander Shiyan
172131b3de7SLinus Walleijconfig KEYBOARD_DLINK_DIR685
173131b3de7SLinus Walleij	tristate "D-Link DIR-685 touchkeys support"
174131b3de7SLinus Walleij	depends on I2C
175131b3de7SLinus Walleij	default ARCH_GEMINI
176131b3de7SLinus Walleij	help
177131b3de7SLinus Walleij	  If you say yes here you get support for the D-Link DIR-685
178131b3de7SLinus Walleij	  touchkeys.
179131b3de7SLinus Walleij
180131b3de7SLinus Walleij	  To compile this driver as a module, choose M here: the
181131b3de7SLinus Walleij	  module will be called dlink-dir685-touchkeys.
182131b3de7SLinus Walleij
1831da177e4SLinus Torvaldsconfig KEYBOARD_LKKBD
1841da177e4SLinus Torvalds	tristate "DECstation/VAXstation LK201/LK401 keyboard"
1851da177e4SLinus Torvalds	select SERIO
1861da177e4SLinus Torvalds	help
1871da177e4SLinus Torvalds	  Say Y here if you want to use a LK201 or LK401 style serial
1881da177e4SLinus Torvalds	  keyboard. This keyboard is also useable on PCs if you attach
1891da177e4SLinus Torvalds	  it with the inputattach program. The connector pinout is
1901da177e4SLinus Torvalds	  described within lkkbd.c.
1911da177e4SLinus Torvalds
1921da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
1931da177e4SLinus Torvalds	  module will be called lkkbd.
1941da177e4SLinus Torvalds
195cb589529SDmitry Torokhovconfig KEYBOARD_EP93XX
196cb589529SDmitry Torokhov	tristate "EP93xx Matrix Keypad support"
197*dfb6db00SArnd Bergmann	depends on ARCH_EP93XX || COMPILE_TEST
1981932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
1991da177e4SLinus Torvalds	help
200cb589529SDmitry Torokhov	  Say Y here to enable the matrix keypad on the Cirrus EP93XX.
2011da177e4SLinus Torvalds
2021da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
203cb589529SDmitry Torokhov	  module will be called ep93xx_keypad.
2041da177e4SLinus Torvalds
205cb589529SDmitry Torokhovconfig KEYBOARD_GPIO
206cb589529SDmitry Torokhov	tristate "GPIO Buttons"
2077d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
2081da177e4SLinus Torvalds	help
209cb589529SDmitry Torokhov	  This driver implements support for buttons connected
210cb589529SDmitry Torokhov	  to GPIO pins of various CPUs (and some other chips).
211cb589529SDmitry Torokhov
212cb589529SDmitry Torokhov	  Say Y here if your device has buttons connected
213cb589529SDmitry Torokhov	  directly to such GPIO pins.  Your board-specific
214cb589529SDmitry Torokhov	  setup logic must also provide a platform device,
215cb589529SDmitry Torokhov	  with configuration data saying which GPIOs are used.
2161da177e4SLinus Torvalds
2171da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
218bab7614dSEric Miao	  module will be called gpio_keys.
219bab7614dSEric Miao
2200e7d0c86SGabor Juhosconfig KEYBOARD_GPIO_POLLED
2210e7d0c86SGabor Juhos	tristate "Polled GPIO buttons"
22276ec9d18SAlexandre Courbot	depends on GPIOLIB
2230e7d0c86SGabor Juhos	select INPUT_POLLDEV
2240e7d0c86SGabor Juhos	help
2250e7d0c86SGabor Juhos	  This driver implements support for buttons connected
2260e7d0c86SGabor Juhos	  to GPIO pins that are not capable of generating interrupts.
2270e7d0c86SGabor Juhos
2280e7d0c86SGabor Juhos	  Say Y here if your device has buttons connected
2290e7d0c86SGabor Juhos	  directly to such GPIO pins.  Your board-specific
2300e7d0c86SGabor Juhos	  setup logic must also provide a platform device,
2310e7d0c86SGabor Juhos	  with configuration data saying which GPIOs are used.
2320e7d0c86SGabor Juhos
2330e7d0c86SGabor Juhos	  To compile this driver as a module, choose M here: the
2340e7d0c86SGabor Juhos	  module will be called gpio_keys_polled.
2350e7d0c86SGabor Juhos
23630ba3eadSSriramakrishnan Govindarajanconfig KEYBOARD_TCA6416
237b8a3d6bcSTony SIM	tristate "TCA6416/TCA6408A Keypad Support"
23830ba3eadSSriramakrishnan Govindarajan	depends on I2C
23930ba3eadSSriramakrishnan Govindarajan	help
24030ba3eadSSriramakrishnan Govindarajan	  This driver implements basic keypad functionality
241b8a3d6bcSTony SIM	  for keys connected through TCA6416/TCA6408A IO expanders.
24230ba3eadSSriramakrishnan Govindarajan
24330ba3eadSSriramakrishnan Govindarajan	  Say Y here if your device has keys connected to
244b8a3d6bcSTony SIM	  TCA6416/TCA6408A IO expander. Your board-specific setup logic
24530ba3eadSSriramakrishnan Govindarajan	  must also provide pin-mask details(of which TCA6416 pins
24630ba3eadSSriramakrishnan Govindarajan	  are used for keypad).
24730ba3eadSSriramakrishnan Govindarajan
248b8a3d6bcSTony SIM	  If enabled the entire TCA6416 device will be managed through
24930ba3eadSSriramakrishnan Govindarajan	  this driver.
25030ba3eadSSriramakrishnan Govindarajan
251b8a3d6bcSTony SIM	  To compile this driver as a module, choose M here: the
252b8a3d6bcSTony SIM	  module will be called tca6416_keypad.
25330ba3eadSSriramakrishnan Govindarajan
254fb6c721bSKyle Mannaconfig KEYBOARD_TCA8418
255fb6c721bSKyle Manna	tristate "TCA8418 Keypad Support"
2560244ad00SMartin Schwidefsky	depends on I2C
2571932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
258fb6c721bSKyle Manna	help
259fb6c721bSKyle Manna	  This driver implements basic keypad functionality
260fb6c721bSKyle Manna	  for keys connected through TCA8418 keypad decoder.
261fb6c721bSKyle Manna
262fb6c721bSKyle Manna	  Say Y here if your device has keys connected to
263fb6c721bSKyle Manna	  TCA8418 keypad decoder.
264fb6c721bSKyle Manna
265fb6c721bSKyle Manna	  If enabled the complete TCA8418 device will be managed through
266fb6c721bSKyle Manna	  this driver.
267fb6c721bSKyle Manna
268fb6c721bSKyle Manna	  To compile this driver as a module, choose M here: the
269fb6c721bSKyle Manna	  module will be called tca8418_keypad.
270fb6c721bSKyle Manna
271bab7614dSEric Miaoconfig KEYBOARD_MATRIX
272bab7614dSEric Miao	tristate "GPIO driven matrix keypad support"
2737d6548abSGeert Uytterhoeven	depends on GPIOLIB || COMPILE_TEST
2741932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
275bab7614dSEric Miao	help
276bab7614dSEric Miao	  Enable support for GPIO driven matrix keypad.
277bab7614dSEric Miao
278bab7614dSEric Miao	  To compile this driver as a module, choose M here: the
279bab7614dSEric Miao	  module will be called matrix_keypad.
280c04cb856SMichael Schmitz
2811da177e4SLinus Torvaldsconfig KEYBOARD_HIL_OLD
2821da177e4SLinus Torvalds	tristate "HP HIL keyboard support (simple driver)"
283da96d0b5SGeert Uytterhoeven	depends on GSC || HP300
2841da177e4SLinus Torvalds	default y
2851da177e4SLinus Torvalds	help
2861da177e4SLinus Torvalds	  The "Human Interface Loop" is a older, 8-channel USB-like
2871da177e4SLinus Torvalds	  controller used in several Hewlett Packard models. This driver
2881da177e4SLinus Torvalds	  was adapted from the one written for m68k/hp300, and implements
2891da177e4SLinus Torvalds	  support for a keyboard attached to the HIL port, but not for
2901da177e4SLinus Torvalds	  any other types of HIL input devices like mice or tablets.
2911da177e4SLinus Torvalds	  However, it has been thoroughly tested and is stable.
2921da177e4SLinus Torvalds
2931da177e4SLinus Torvalds	  If you want full HIL support including support for multiple
29409509603SMatt LaPlante	  keyboards, mice, and tablets, you have to enable the
2951da177e4SLinus Torvalds	  "HP System Device Controller i8042 Support" in the input/serio
2961da177e4SLinus Torvalds	  submenu.
2971da177e4SLinus Torvalds
2981da177e4SLinus Torvaldsconfig KEYBOARD_HIL
299fa71c605SDmitry Torokhov	tristate "HP HIL keyboard/pointer support"
300da96d0b5SGeert Uytterhoeven	depends on GSC || HP300
3011da177e4SLinus Torvalds	default y
3021da177e4SLinus Torvalds	select HP_SDC
3031da177e4SLinus Torvalds	select HIL_MLC
3041da177e4SLinus Torvalds	select SERIO
3051da177e4SLinus Torvalds	help
3061da177e4SLinus Torvalds	  The "Human Interface Loop" is a older, 8-channel USB-like
3071da177e4SLinus Torvalds	  controller used in several Hewlett Packard models.
308fa71c605SDmitry Torokhov	  This driver implements support for HIL-keyboards and pointing
309fa71c605SDmitry Torokhov	  devices (mice, tablets, touchscreens) attached
3101da177e4SLinus Torvalds	  to your machine, so normally you should say Y here.
3111da177e4SLinus Torvalds
3122aa2cb9eSKristoffer Ericsonconfig KEYBOARD_HP6XX
3134ff891ebSKristoffer Ericson	tristate "HP Jornada 6xx keyboard"
3142aa2cb9eSKristoffer Ericson	depends on SH_HP6XX
3152aa2cb9eSKristoffer Ericson	select INPUT_POLLDEV
3162aa2cb9eSKristoffer Ericson	help
3174ff891ebSKristoffer Ericson	  Say Y here if you have a HP Jornada 620/660/680/690 and want to
3184ff891ebSKristoffer Ericson	  support the built-in keyboard.
3192aa2cb9eSKristoffer Ericson
3202aa2cb9eSKristoffer Ericson	  To compile this driver as a module, choose M here: the
3212aa2cb9eSKristoffer Ericson	  module will be called jornada680_kbd.
3222aa2cb9eSKristoffer Ericson
323b0a4e1aaSKristoffer Ericsonconfig KEYBOARD_HP7XX
3244ff891ebSKristoffer Ericson	tristate "HP Jornada 7xx keyboard"
325b0a4e1aaSKristoffer Ericson	depends on SA1100_JORNADA720_SSP && SA1100_SSP
326b0a4e1aaSKristoffer Ericson	help
3274ff891ebSKristoffer Ericson	  Say Y here if you have a HP Jornada 710/720/728 and want to
3284ff891ebSKristoffer Ericson	  support the built-in keyboard.
329b0a4e1aaSKristoffer Ericson
330b0a4e1aaSKristoffer Ericson	  To compile this driver as a module, choose M here: the
331b0a4e1aaSKristoffer Ericson	  module will be called jornada720_kbd.
332b0a4e1aaSKristoffer Ericson
333a48b2d4aSFelipe Balbiconfig KEYBOARD_LM8323
334a48b2d4aSFelipe Balbi	tristate "LM8323 keypad chip"
3350244ad00SMartin Schwidefsky	depends on I2C
336a48b2d4aSFelipe Balbi	depends on LEDS_CLASS
337a48b2d4aSFelipe Balbi	help
338a48b2d4aSFelipe Balbi	  If you say yes here you get support for the National Semiconductor
339a48b2d4aSFelipe Balbi	  LM8323 keypad controller.
340a48b2d4aSFelipe Balbi
341a48b2d4aSFelipe Balbi	  To compile this driver as a module, choose M here: the
342a48b2d4aSFelipe Balbi	  module will be called lm8323.
343a48b2d4aSFelipe Balbi
3440bf25a45SWolfram Sangconfig KEYBOARD_LM8333
3450bf25a45SWolfram Sang	tristate "LM8333 keypad chip"
3460bf25a45SWolfram Sang	depends on I2C
3471932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
3480bf25a45SWolfram Sang	help
3490bf25a45SWolfram Sang	  If you say yes here you get support for the National Semiconductor
3500bf25a45SWolfram Sang	  LM8333 keypad controller.
3510bf25a45SWolfram Sang
3520bf25a45SWolfram Sang	  To compile this driver as a module, choose M here: the
3530bf25a45SWolfram Sang	  module will be called lm8333.
3540bf25a45SWolfram Sang
355cb589529SDmitry Torokhovconfig KEYBOARD_LOCOMO
356cb589529SDmitry Torokhov	tristate "LoCoMo Keyboard Support"
357cb589529SDmitry Torokhov	depends on SHARP_LOCOMO
358ad4e09b1SKomal Shah	help
359cb589529SDmitry Torokhov	  Say Y here if you are running Linux on a Sharp Zaurus Collie or Poodle based PDA
360ad4e09b1SKomal Shah
361ad4e09b1SKomal Shah	  To compile this driver as a module, choose M here: the
362cb589529SDmitry Torokhov	  module will be called locomokbd.
363cb589529SDmitry Torokhov
36469690becSRoland Stiggeconfig KEYBOARD_LPC32XX
36569690becSRoland Stigge	tristate "LPC32XX matrix key scanner support"
36669690becSRoland Stigge	depends on ARCH_LPC32XX && OF
367e07577e1SRoland Stigge	select INPUT_MATRIXKMAP
36869690becSRoland Stigge	help
36969690becSRoland Stigge	  Say Y here if you want to use NXP LPC32XX SoC key scanner interface,
37069690becSRoland Stigge	  connected to a key matrix.
37169690becSRoland Stigge
37269690becSRoland Stigge	  To compile this driver as a module, choose M here: the
37369690becSRoland Stigge	  module will be called lpc32xx-keys.
37469690becSRoland Stigge
375cb589529SDmitry Torokhovconfig KEYBOARD_MAPLE
376cb589529SDmitry Torokhov	tristate "Maple bus keyboard"
377cb589529SDmitry Torokhov	depends on SH_DREAMCAST && MAPLE
378cb589529SDmitry Torokhov	help
379cb589529SDmitry Torokhov	  Say Y here if you have a Dreamcast console running Linux and have
380cb589529SDmitry Torokhov	  a keyboard attached to its Maple bus.
381cb589529SDmitry Torokhov
382cb589529SDmitry Torokhov	  To compile this driver as a module, choose M here: the
383cb589529SDmitry Torokhov	  module will be called maple_keyb.
384cb589529SDmitry Torokhov
3850baf81baSKim Kyuwonconfig KEYBOARD_MAX7359
3860baf81baSKim Kyuwon	tristate "Maxim MAX7359 Key Switch Controller"
38768aeee98SEvgeniy Dushistov	select INPUT_MATRIXKMAP
3880baf81baSKim Kyuwon	depends on I2C
3890baf81baSKim Kyuwon	help
3900baf81baSKim Kyuwon	  If you say yes here you get support for the Maxim MAX7359 Key
3910baf81baSKim Kyuwon	  Switch Controller chip. This providers microprocessors with
3920baf81baSKim Kyuwon	  management of up to 64 key switches
3930baf81baSKim Kyuwon
3940baf81baSKim Kyuwon	  To compile this driver as a module, choose M here: the
3950baf81baSKim Kyuwon	  module will be called max7359_keypad.
3960baf81baSKim Kyuwon
397312e8e8aSJoonyoung Shimconfig KEYBOARD_MCS
398312e8e8aSJoonyoung Shim	tristate "MELFAS MCS Touchkey"
399312e8e8aSJoonyoung Shim	depends on I2C
400312e8e8aSJoonyoung Shim	help
401312e8e8aSJoonyoung Shim	  Say Y here if you have the MELFAS MCS5000/5080 touchkey controller
402312e8e8aSJoonyoung Shim	  chip in your system.
403312e8e8aSJoonyoung Shim
404312e8e8aSJoonyoung Shim	  If unsure, say N.
405312e8e8aSJoonyoung Shim
406312e8e8aSJoonyoung Shim	  To compile this driver as a module, choose M here: the
407312e8e8aSJoonyoung Shim	  module will be called mcs_touchkey.
408312e8e8aSJoonyoung Shim
40936682b81SZhang Jiejingconfig KEYBOARD_MPR121
41036682b81SZhang Jiejing	tristate "Freescale MPR121 Touchkey"
41136682b81SZhang Jiejing	depends on I2C
41236682b81SZhang Jiejing	help
41336682b81SZhang Jiejing	  Say Y here if you have Freescale MPR121 touchkey controller
41436682b81SZhang Jiejing	  chip in your system.
41536682b81SZhang Jiejing
41636682b81SZhang Jiejing	  If unsure, say N.
41736682b81SZhang Jiejing
41836682b81SZhang Jiejing	  To compile this driver as a module, choose M here: the
41936682b81SZhang Jiejing	  module will be called mpr121_touchkey.
42036682b81SZhang Jiejing
421d3dc6e23SRobin Gongconfig KEYBOARD_SNVS_PWRKEY
422d3dc6e23SRobin Gong	tristate "IMX SNVS Power Key Driver"
4234d741f3dSStefan Agner	depends on SOC_IMX6SX || SOC_IMX7D
424d3dc6e23SRobin Gong	depends on OF
425d3dc6e23SRobin Gong	help
426d3dc6e23SRobin Gong	  This is the snvs powerkey driver for the Freescale i.MX application
427d3dc6e23SRobin Gong	  processors that are newer than i.MX6 SX.
428d3dc6e23SRobin Gong
429d3dc6e23SRobin Gong	  To compile this driver as a module, choose M here; the
430d3dc6e23SRobin Gong	  module will be called snvs_pwrkey.
431d3dc6e23SRobin Gong
43276cdc083SAlberto Panizzoconfig KEYBOARD_IMX
43376cdc083SAlberto Panizzo	tristate "IMX keypad support"
43476cdc083SAlberto Panizzo	depends on ARCH_MXC
4351932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
43676cdc083SAlberto Panizzo	help
43776cdc083SAlberto Panizzo	  Enable support for IMX keypad port.
43876cdc083SAlberto Panizzo
43976cdc083SAlberto Panizzo	  To compile this driver as a module, choose M here: the
44076cdc083SAlberto Panizzo	  module will be called imx_keypad.
44176cdc083SAlberto Panizzo
442cb589529SDmitry Torokhovconfig KEYBOARD_NEWTON
443cb589529SDmitry Torokhov	tristate "Newton keyboard"
444cb589529SDmitry Torokhov	select SERIO
445cb589529SDmitry Torokhov	help
446cb589529SDmitry Torokhov	  Say Y here if you have a Newton keyboard on a serial port.
447cb589529SDmitry Torokhov
448cb589529SDmitry Torokhov	  To compile this driver as a module, choose M here: the
449cb589529SDmitry Torokhov	  module will be called newtonkbd.
450ad4e09b1SKomal Shah
4511158f0f1SSundar Iyerconfig KEYBOARD_NOMADIK
4521158f0f1SSundar Iyer	tristate "ST-Ericsson Nomadik SKE keyboard"
453694e33a7SLinus Walleij	depends on (ARCH_NOMADIK || ARCH_U8500)
4541932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
4551158f0f1SSundar Iyer	help
4561158f0f1SSundar Iyer	  Say Y here if you want to use a keypad provided on the SKE controller
4571158f0f1SSundar Iyer	  used on the Ux500 and Nomadik platforms
4581158f0f1SSundar Iyer
4591158f0f1SSundar Iyer	  To compile this driver as a module, choose M here: the
4601158f0f1SSundar Iyer	  module will be called nmk-ske-keypad.
4611158f0f1SSundar Iyer
462fc4f3146SDaniel Tangconfig KEYBOARD_NSPIRE
463fc4f3146SDaniel Tang	tristate "TI-NSPIRE built-in keyboard"
464fc4f3146SDaniel Tang	depends on ARCH_NSPIRE && OF
465fc4f3146SDaniel Tang	select INPUT_MATRIXKMAP
466fc4f3146SDaniel Tang	help
467fc4f3146SDaniel Tang	  Say Y here if you want to use the built-in keypad on TI-NSPIRE.
468fc4f3146SDaniel Tang
469fc4f3146SDaniel Tang	  To compile this driver as a module, choose M here: the
470fc4f3146SDaniel Tang	  module will be called nspire-keypad.
471fc4f3146SDaniel Tang
47211f5b30dSRakesh Iyerconfig KEYBOARD_TEGRA
47311f5b30dSRakesh Iyer	tristate "NVIDIA Tegra internal matrix keyboard controller support"
4749eee07d3SStephen Warren	depends on ARCH_TEGRA && OF
4751932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
47611f5b30dSRakesh Iyer	help
47711f5b30dSRakesh Iyer	  Say Y here if you want to use a matrix keyboard connected directly
47811f5b30dSRakesh Iyer	  to the internal keyboard controller on Tegra SoCs.
47911f5b30dSRakesh Iyer
48011f5b30dSRakesh Iyer	  To compile this driver as a module, choose M here: the
48111f5b30dSRakesh Iyer	  module will be called tegra-kbc.
48211f5b30dSRakesh Iyer
483422b552dSJavier Herreroconfig KEYBOARD_OPENCORES
484422b552dSJavier Herrero	tristate "OpenCores Keyboard Controller"
485150e5928SBen Hutchings	depends on HAS_IOMEM
486422b552dSJavier Herrero	help
487422b552dSJavier Herrero	  Say Y here if you want to use the OpenCores Keyboard Controller
488422b552dSJavier Herrero	  http://www.opencores.org/project,keyboardcontroller
489422b552dSJavier Herrero
490422b552dSJavier Herrero	  To compile this driver as a module, choose M here; the
491422b552dSJavier Herrero	  module will be called opencores-kbd.
492422b552dSJavier Herrero
4935a90e5bcSRodolfo Giometticonfig KEYBOARD_PXA27x
494e0f2677fSEric Miao	tristate "PXA27x/PXA3xx keypad support"
4956d109465SMark F. Brown	depends on PXA27x || PXA3xx || ARCH_MMP
4960a085a94SChao Xie	select INPUT_MATRIXKMAP
4975a90e5bcSRodolfo Giometti	help
498bab7614dSEric Miao	  Enable support for PXA27x/PXA3xx keypad controller.
4995a90e5bcSRodolfo Giometti
5005a90e5bcSRodolfo Giometti	  To compile this driver as a module, choose M here: the
5010e5f11aaSEric Miao	  module will be called pxa27x_keypad.
5025a90e5bcSRodolfo Giometti
503e0ee6298SYong Yaoconfig KEYBOARD_PXA930_ROTARY
504e0ee6298SYong Yao	tristate "PXA930/PXA935 Enhanced Rotary Controller Support"
505e0ee6298SYong Yao	depends on CPU_PXA930 || CPU_PXA935
506e0ee6298SYong Yao	help
507e0ee6298SYong Yao	  Enable support for PXA930/PXA935 Enhanced Rotary Controller.
508e0ee6298SYong Yao
509e0ee6298SYong Yao	  To compile this driver as a module, choose M here: the
510e0ee6298SYong Yao	  module will be called pxa930_rotary.
511e0ee6298SYong Yao
51239325b59STrilok Soniconfig KEYBOARD_PMIC8XXX
51339325b59STrilok Soni	tristate "Qualcomm PMIC8XXX keypad support"
51439325b59STrilok Soni	depends on MFD_PM8XXX
5151932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
51639325b59STrilok Soni	help
51739325b59STrilok Soni	  Say Y here if you want to enable the driver for the PMIC8XXX
51839325b59STrilok Soni	  keypad provided as a reference design from Qualcomm. This is intended
51939325b59STrilok Soni	  to support upto 18x8 matrix based keypad design.
52039325b59STrilok Soni
52139325b59STrilok Soni	  To compile this driver as a module, choose M here: the module will
52239325b59STrilok Soni	  be called pmic8xxx-keypad.
52339325b59STrilok Soni
5240fffed27SJoonyoung Shimconfig KEYBOARD_SAMSUNG
5250fffed27SJoonyoung Shim	tristate "Samsung keypad support"
5268d964a28SDmitry Torokhov	depends on HAVE_CLK
5271932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
5280fffed27SJoonyoung Shim	help
5298d964a28SDmitry Torokhov	  Say Y here if you want to use the keypad on your Samsung mobile
5308d964a28SDmitry Torokhov	  device.
5310fffed27SJoonyoung Shim
5320fffed27SJoonyoung Shim	  To compile this driver as a module, choose M here: the
5330fffed27SJoonyoung Shim	  module will be called samsung-keypad.
5340fffed27SJoonyoung Shim
5356f2ac009SBrian Swetlandconfig KEYBOARD_GOLDFISH_EVENTS
536aaa59e09SJavier Martinez Canillas	depends on GOLDFISH || COMPILE_TEST
5376f2ac009SBrian Swetland	tristate "Generic Input Event device for Goldfish"
5386f2ac009SBrian Swetland	help
5396f2ac009SBrian Swetland	  Say Y here to get an input event device for the Goldfish virtual
5406f2ac009SBrian Swetland	  device emulator.
5416f2ac009SBrian Swetland
5426f2ac009SBrian Swetland	  To compile this driver as a module, choose M here: the
5436f2ac009SBrian Swetland	  module will be called goldfish-events.
5446f2ac009SBrian Swetland
545cb589529SDmitry Torokhovconfig KEYBOARD_STOWAWAY
546cb589529SDmitry Torokhov	tristate "Stowaway keyboard"
547cb589529SDmitry Torokhov	select SERIO
54878a56aabSPhil Blundell	help
549cb589529SDmitry Torokhov	  Say Y here if you have a Stowaway keyboard on a serial port.
550cb589529SDmitry Torokhov	  Stowaway compatible keyboards like Dicota Input-PDA keyboard
551cb589529SDmitry Torokhov	  are also supported by this driver.
55278a56aabSPhil Blundell
55378a56aabSPhil Blundell	  To compile this driver as a module, choose M here: the
554cb589529SDmitry Torokhov	  module will be called stowaway.
555f9705fcbSNicolas Bellido
556062589b1SGabriel FERNANDEZconfig KEYBOARD_ST_KEYSCAN
557062589b1SGabriel FERNANDEZ	tristate "STMicroelectronics keyscan support"
558062589b1SGabriel FERNANDEZ	depends on ARCH_STI || COMPILE_TEST
559062589b1SGabriel FERNANDEZ	select INPUT_MATRIXKMAP
560062589b1SGabriel FERNANDEZ	help
561062589b1SGabriel FERNANDEZ	  Say Y here if you want to use a keypad attached to the keyscan block
562062589b1SGabriel FERNANDEZ	  on some STMicroelectronics SoC devices.
563062589b1SGabriel FERNANDEZ
564062589b1SGabriel FERNANDEZ	  To compile this driver as a module, choose M here: the
565062589b1SGabriel FERNANDEZ	  module will be called st-keyscan.
566062589b1SGabriel FERNANDEZ
567cb589529SDmitry Torokhovconfig KEYBOARD_SUNKBD
568cb589529SDmitry Torokhov	tristate "Sun Type 4 and Type 5 keyboard"
569cb589529SDmitry Torokhov	select SERIO
570b11d2127SAdrian McMenamin	help
571cb589529SDmitry Torokhov	  Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
572cb589529SDmitry Torokhov	  connected either to the Sun keyboard connector or to an serial
573cb589529SDmitry Torokhov	  (RS-232) port via a simple adapter.
574b11d2127SAdrian McMenamin
575b11d2127SAdrian McMenamin	  To compile this driver as a module, choose M here: the
576cb589529SDmitry Torokhov	  module will be called sunkbd.
5778f740ef3SMichael Hennerich
578795e6bf3SMagnus Dammconfig KEYBOARD_SH_KEYSC
579795e6bf3SMagnus Damm	tristate "SuperH KEYSC keypad support"
5805186b8c4SSimon Horman	depends on ARCH_SHMOBILE || COMPILE_TEST
581795e6bf3SMagnus Damm	help
582795e6bf3SMagnus Damm	  Say Y here if you want to use a keypad attached to the KEYSC block
583795e6bf3SMagnus Damm	  on SuperH processors such as sh7722 and sh7343.
584795e6bf3SMagnus Damm
585795e6bf3SMagnus Damm	  To compile this driver as a module, choose M here: the
586795e6bf3SMagnus Damm	  module will be called sh_keysc.
587a48b2d4aSFelipe Balbi
58876f10845SRabin Vincentconfig KEYBOARD_STMPE
58976f10845SRabin Vincent	tristate "STMPE keypad support"
59076f10845SRabin Vincent	depends on MFD_STMPE
591a4164863SLinus Walleij	depends on OF
5921932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
59376f10845SRabin Vincent	help
59476f10845SRabin Vincent	  Say Y here if you want to use the keypad controller on STMPE I/O
59576f10845SRabin Vincent	  expanders.
59676f10845SRabin Vincent
59776f10845SRabin Vincent	  To compile this driver as a module, choose M here: the module will be
59876f10845SRabin Vincent	  called stmpe-keypad.
59976f10845SRabin Vincent
600af6a5af8SHans de Goedeconfig KEYBOARD_SUN4I_LRADC
601af6a5af8SHans de Goede	tristate "Allwinner sun4i low res adc attached tablet keys support"
602af6a5af8SHans de Goede	depends on ARCH_SUNXI
603af6a5af8SHans de Goede	help
604af6a5af8SHans de Goede	  This selects support for the Allwinner low res adc attached tablet
605af6a5af8SHans de Goede	  keys found on Allwinner sunxi SoCs.
606af6a5af8SHans de Goede
607af6a5af8SHans de Goede	  To compile this driver as a module, choose M here: the
608af6a5af8SHans de Goede	  module will be called sun4i-lradc-keys.
609af6a5af8SHans de Goede
610bc09dcadSMiguel Aguilarconfig KEYBOARD_DAVINCI
611bc09dcadSMiguel Aguilar	tristate "TI DaVinci Key Scan"
612bc09dcadSMiguel Aguilar	depends on ARCH_DAVINCI_DM365
613bc09dcadSMiguel Aguilar	help
614bc09dcadSMiguel Aguilar	  Say Y to enable keypad module support for the TI DaVinci
615bc09dcadSMiguel Aguilar	  platforms (DM365).
616bc09dcadSMiguel Aguilar
617bc09dcadSMiguel Aguilar	  To compile this driver as a module, choose M here: the
618bc09dcadSMiguel Aguilar	  module will be called davinci_keyscan.
619bc09dcadSMiguel Aguilar
620d7535ffaSLinus Walleijconfig KEYBOARD_IPAQ_MICRO
621d7535ffaSLinus Walleij	tristate "Buttons on Micro SoC (iPaq h3100,h3600,h3700)"
622d7535ffaSLinus Walleij	depends on MFD_IPAQ_MICRO
623d7535ffaSLinus Walleij	help
624d7535ffaSLinus Walleij	  Say Y to enable support for the buttons attached to
625d7535ffaSLinus Walleij	  Micro peripheral controller on iPAQ h3100/h3600/h3700
626d7535ffaSLinus Walleij
627d7535ffaSLinus Walleij	  To compile this driver as a module, choose M here: the
628d7535ffaSLinus Walleij	  module will be called ipaq-micro-keys.
629d7535ffaSLinus Walleij
630cb589529SDmitry Torokhovconfig KEYBOARD_OMAP
631cb589529SDmitry Torokhov	tristate "TI OMAP keypad support"
632f799a3d8STony Lindgren	depends on ARCH_OMAP1
6331932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
634e06003afSH Hartley Sweeten	help
635cb589529SDmitry Torokhov	  Say Y here if you want to use the OMAP keypad.
636e06003afSH Hartley Sweeten
637e06003afSH Hartley Sweeten	  To compile this driver as a module, choose M here: the
638cb589529SDmitry Torokhov	  module will be called omap-keypad.
639cb589529SDmitry Torokhov
640a17f7955SAbraham Arceconfig KEYBOARD_OMAP4
641f77621ccSPoddar, Sourav	tristate "TI OMAP4+ keypad support"
64261721c88SJoachim Eastwood	depends on OF || ARCH_OMAP2PLUS
6431932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
644a17f7955SAbraham Arce	help
645f77621ccSPoddar, Sourav	  Say Y here if you want to use the OMAP4+ keypad.
646a17f7955SAbraham Arce
647a17f7955SAbraham Arce	  To compile this driver as a module, choose M here: the
648a17f7955SAbraham Arce	  module will be called omap4-keypad.
649a17f7955SAbraham Arce
650bc95df78SRajeev Kumarconfig KEYBOARD_SPEAR
651bc95df78SRajeev Kumar	tristate "ST SPEAR keyboard support"
652bc95df78SRajeev Kumar	depends on PLAT_SPEAR
6531932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
654bc95df78SRajeev Kumar	help
655bc95df78SRajeev Kumar	  Say Y here if you want to use the SPEAR keyboard.
656bc95df78SRajeev Kumar
657bc95df78SRajeev Kumar	  To compile this driver as a module, choose M here: the
658bc95df78SRajeev Kumar	  module will be called spear-keboard.
659bc95df78SRajeev Kumar
66009c730a4SSundar Iyerconfig KEYBOARD_TC3589X
66109c730a4SSundar Iyer	tristate "TC3589X Keypad support"
66209c730a4SSundar Iyer	depends on MFD_TC3589X
6631932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
66409c730a4SSundar Iyer	help
66509c730a4SSundar Iyer	  Say Y here if you want to use the keypad controller on
66609c730a4SSundar Iyer	  TC35892/3 I/O expander.
66709c730a4SSundar Iyer
66809c730a4SSundar Iyer	  To compile this driver as a module, choose M here: the
66909c730a4SSundar Iyer	  module will be called tc3589x-keypad.
67009c730a4SSundar Iyer
67172d1f234SJaechul Leeconfig KEYBOARD_TM2_TOUCHKEY
67272d1f234SJaechul Lee	tristate "TM2 touchkey support"
67372d1f234SJaechul Lee	depends on I2C
67472d1f234SJaechul Lee	depends on LEDS_CLASS
67572d1f234SJaechul Lee	help
67672d1f234SJaechul Lee	  Say Y here to enable device driver for tm2-touchkey with
67772d1f234SJaechul Lee	  LED control for the Exynos5433 TM2 board.
67872d1f234SJaechul Lee
67972d1f234SJaechul Lee	  To compile this driver as a module, choose M here.
68072d1f234SJaechul Lee	  module will be called tm2-touchkey.
68172d1f234SJaechul Lee
6829d834068SDavid Brownellconfig KEYBOARD_TWL4030
6839d834068SDavid Brownell	tristate "TI TWL4030/TWL5030/TPS659x0 keypad support"
6849d834068SDavid Brownell	depends on TWL4030_CORE
6851932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
6869d834068SDavid Brownell	help
6879d834068SDavid Brownell	  Say Y here if your board use the keypad controller on
6889d834068SDavid Brownell	  TWL4030 family chips.  It's safe to say enable this
6899d834068SDavid Brownell	  even on boards that don't use the keypad controller.
6909d834068SDavid Brownell
6919d834068SDavid Brownell	  To compile this driver as a module, choose M here: the
6929d834068SDavid Brownell	  module will be called twl4030_keypad.
6939d834068SDavid Brownell
694cb589529SDmitry Torokhovconfig KEYBOARD_XTKBD
695cb589529SDmitry Torokhov	tristate "XT keyboard"
696cb589529SDmitry Torokhov	select SERIO
697cb589529SDmitry Torokhov	help
698cb589529SDmitry Torokhov	  Say Y here if you want to use the old IBM PC/XT keyboard (or
699cb589529SDmitry Torokhov	  compatible) on your system. This is only possible with a
700cb589529SDmitry Torokhov	  parallel port keyboard adapter, you cannot connect it to the
701cb589529SDmitry Torokhov	  keyboard port on a PC that runs Linux.
702cb589529SDmitry Torokhov
703cb589529SDmitry Torokhov	  To compile this driver as a module, choose M here: the
704cb589529SDmitry Torokhov	  module will be called xtkbd.
705e06003afSH Hartley Sweeten
7064a15235eSWan ZongShunconfig KEYBOARD_W90P910
7074a15235eSWan ZongShun	tristate "W90P910 Matrix Keypad support"
7084a15235eSWan ZongShun	depends on ARCH_W90X900
7091932811fSDmitry Torokhov	select INPUT_MATRIXKMAP
7104a15235eSWan ZongShun	help
7114a15235eSWan ZongShun	  Say Y here to enable the matrix keypad on evaluation board
7124a15235eSWan ZongShun	  based on W90P910.
7134a15235eSWan ZongShun
7144a15235eSWan ZongShun	  To compile this driver as a module, choose M here: the
7154a15235eSWan ZongShun	  module will be called w90p910_keypad.
7164a15235eSWan ZongShun
7176af6dc2dSSimon Glassconfig KEYBOARD_CROS_EC
7186af6dc2dSSimon Glass	tristate "ChromeOS EC keyboard"
7196af6dc2dSSimon Glass	select INPUT_MATRIXKMAP
72095ecdc25SJavier Martinez Canillas	depends on MFD_CROS_EC
7216af6dc2dSSimon Glass	help
7226af6dc2dSSimon Glass	  Say Y here to enable the matrix keyboard used by ChromeOS devices
7236af6dc2dSSimon Glass	  and implemented on the ChromeOS EC. You must enable one bus option
724413c9446SEnric Balletbo i Serra	  (CROS_EC_I2C or CROS_EC_SPI) to use this.
7256af6dc2dSSimon Glass
7266af6dc2dSSimon Glass	  To compile this driver as a module, choose M here: the
7276af6dc2dSSimon Glass	  module will be called cros_ec_keyb.
7286af6dc2dSSimon Glass
729c77fd0a4SMatt Ranostayconfig KEYBOARD_CAP11XX
730c77fd0a4SMatt Ranostay	tristate "Microchip CAP11XX based touch sensors"
731128bb95dSDaniel Mack	depends on OF && I2C
732128bb95dSDaniel Mack	select REGMAP_I2C
733128bb95dSDaniel Mack	help
734c77fd0a4SMatt Ranostay	  Say Y here to enable the CAP11XX touch sensor driver.
735128bb95dSDaniel Mack
736128bb95dSDaniel Mack	  To compile this driver as a module, choose M here: the
737c77fd0a4SMatt Ranostay	  module will be called cap11xx.
738128bb95dSDaniel Mack
7390c7e67a9SScott Brandenconfig KEYBOARD_BCM
7400c7e67a9SScott Branden	tristate "Broadcom keypad driver"
7410c7e67a9SScott Branden	depends on OF && HAVE_CLK
7420c7e67a9SScott Branden	select INPUT_MATRIXKMAP
7430c7e67a9SScott Branden	default ARCH_BCM_CYGNUS
7440c7e67a9SScott Branden	help
7450c7e67a9SScott Branden	  Say Y here if you want to use Broadcom keypad.
7460c7e67a9SScott Branden
7470c7e67a9SScott Branden	  To compile this driver as a module, choose M here: the
7480c7e67a9SScott Branden	  module will be called bcm-keypad.
7490c7e67a9SScott Branden
7503e9f0b3eSChen Zhongconfig KEYBOARD_MTK_PMIC
7513e9f0b3eSChen Zhong	tristate "MediaTek PMIC keys support"
7523e9f0b3eSChen Zhong	depends on MFD_MT6397
7533e9f0b3eSChen Zhong	help
7543e9f0b3eSChen Zhong	  Say Y here if you want to use the pmic keys (powerkey/homekey).
7553e9f0b3eSChen Zhong
7563e9f0b3eSChen Zhong	  To compile this driver as a module, choose M here: the
7573e9f0b3eSChen Zhong	  module will be called pmic-keys.
7583e9f0b3eSChen Zhong
7591da177e4SLinus Torvaldsendif
760