diff options
| author | Miguel Aguilar <miguel.aguilar@ridgerun.com> | 2009-10-14 02:37:32 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2009-10-14 02:58:45 -0400 |
| commit | bc09dcadc1a3da87d58aa70ebc8e9441205be75c (patch) | |
| tree | c5b7b7ab15d134aff04fa0a5d120d407f4dd0d84 /drivers/input/keyboard | |
| parent | 216023255abc13ca276adfcf4ff2af111aaebc5e (diff) | |
Input: add DaVinci Keypad Driver
This driver enables keypad support on DaVinci platforms. DM365 is the
only platform that uses this driver at the moment.
Signed-off-by: Miguel Aguilar <miguel.aguilar@ridgerun.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/keyboard')
| -rw-r--r-- | drivers/input/keyboard/Kconfig | 10 | ||||
| -rw-r--r-- | drivers/input/keyboard/Makefile | 1 | ||||
| -rw-r--r-- | drivers/input/keyboard/davinci_keyscan.c | 337 |
3 files changed, 348 insertions, 0 deletions
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig index ee98b1bc5d89..203b88a82b56 100644 --- a/drivers/input/keyboard/Kconfig +++ b/drivers/input/keyboard/Kconfig | |||
| @@ -361,6 +361,16 @@ config KEYBOARD_SH_KEYSC | |||
| 361 | To compile this driver as a module, choose M here: the | 361 | To compile this driver as a module, choose M here: the |
| 362 | module will be called sh_keysc. | 362 | module will be called sh_keysc. |
| 363 | 363 | ||
| 364 | config KEYBOARD_DAVINCI | ||
| 365 | tristate "TI DaVinci Key Scan" | ||
| 366 | depends on ARCH_DAVINCI_DM365 | ||
| 367 | help | ||
| 368 | Say Y to enable keypad module support for the TI DaVinci | ||
| 369 | platforms (DM365). | ||
| 370 | |||
| 371 | To compile this driver as a module, choose M here: the | ||
| 372 | module will be called davinci_keyscan. | ||
| 373 | |||
| 364 | config KEYBOARD_OMAP | 374 | config KEYBOARD_OMAP |
| 365 | tristate "TI OMAP keypad support" | 375 | tristate "TI OMAP keypad support" |
| 366 | depends on (ARCH_OMAP1 || ARCH_OMAP2) | 376 | depends on (ARCH_OMAP1 || ARCH_OMAP2) |
diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile index babad5e58b77..68c017235ce9 100644 --- a/drivers/input/keyboard/Makefile +++ b/drivers/input/keyboard/Makefile | |||
| @@ -11,6 +11,7 @@ obj-$(CONFIG_KEYBOARD_ATARI) += atakbd.o | |||
| 11 | obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o | 11 | obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o |
| 12 | obj-$(CONFIG_KEYBOARD_BFIN) += bf54x-keys.o | 12 | obj-$(CONFIG_KEYBOARD_BFIN) += bf54x-keys.o |
| 13 | obj-$(CONFIG_KEYBOARD_CORGI) += corgikbd.o | 13 | obj-$(CONFIG_KEYBOARD_CORGI) += corgikbd.o |
| 14 | obj-$(CONFIG_KEYBOARD_DAVINCI) += davinci_keyscan.o | ||
| 14 | obj-$(CONFIG_KEYBOARD_EP93XX) += ep93xx_keypad.o | 15 | obj-$(CONFIG_KEYBOARD_EP93XX) += ep93xx_keypad.o |
| 15 | obj-$(CONFIG_KEYBOARD_GPIO) += gpio_keys.o | 16 | obj-$(CONFIG_KEYBOARD_GPIO) += gpio_keys.o |
| 16 | obj-$(CONFIG_KEYBOARD_HIL) += hil_kbd.o | 17 | obj-$(CONFIG_KEYBOARD_HIL) += hil_kbd.o |
diff --git a/drivers/input/keyboard/davinci_keyscan.c b/drivers/input/keyboard/davinci_keyscan.c new file mode 100644 index 000000000000..6e52d855f637 --- /dev/null +++ b/drivers/input/keyboard/davinci_keyscan.c | |||
| @@ -0,0 +1,337 @@ | |||
| 1 | /* | ||
| 2 | * DaVinci Key Scan Driver for TI platforms | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Texas Instruments, Inc | ||
| 5 | * | ||
| 6 | * Author: Miguel Aguilar <miguel.aguilar@ridgerun.com> | ||
| 7 | * | ||
| 8 | * Intial Code: Sandeep Paulraj <s-paulraj@ti.com> | ||
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or modify | ||
| 11 | * it under the terms of the GNU General Public License as published by | ||
| 12 | * the Free Software Foundation; either version 2 of the License, or | ||
| 13 | * (at your option) any later version. | ||
| 14 | * | ||
| 15 | * This program is distributed in the hope that it will be useful, | ||
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | * GNU General Public License for more details. | ||
| 19 | * | ||
| 20 | * You should have received a copy of the GNU General Public License | ||
| 21 | * along with this program; if not, write to the Free Software | ||
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 23 | */ | ||
| 24 | #include <linux/module.h> | ||
| 25 | #include <linux/init.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | #include <linux/types.h> | ||
| 28 | #include <linux/input.h> | ||
| 29 | #include <linux/kernel.h> | ||
| 30 | #include <linux/delay.h> | ||
| 31 | #include <linux/platform_device.h> | ||
| 32 | #include <linux/errno.h> | ||
| 33 | |||
| 34 | #include <asm/irq.h> | ||
| 35 | |||
| 36 | #include <mach/hardware.h> | ||
| 37 | #include <mach/irqs.h> | ||
| 38 | #include <mach/keyscan.h> | ||
| 39 | |||
| 40 | /* Key scan registers */ | ||
| 41 | #define DAVINCI_KEYSCAN_KEYCTRL 0x0000 | ||
| 42 | #define DAVINCI_KEYSCAN_INTENA 0x0004 | ||
| 43 | #define DAVINCI_KEYSCAN_INTFLAG 0x0008 | ||
| 44 | #define DAVINCI_KEYSCAN_INTCLR 0x000c | ||
| 45 | #define DAVINCI_KEYSCAN_STRBWIDTH 0x0010 | ||
| 46 | #define DAVINCI_KEYSCAN_INTERVAL 0x0014 | ||
| 47 | #define DAVINCI_KEYSCAN_CONTTIME 0x0018 | ||
| 48 | #define DAVINCI_KEYSCAN_CURRENTST 0x001c | ||
| 49 | #define DAVINCI_KEYSCAN_PREVSTATE 0x0020 | ||
| 50 | #define DAVINCI_KEYSCAN_EMUCTRL 0x0024 | ||
| 51 | #define DAVINCI_KEYSCAN_IODFTCTRL 0x002c | ||
| 52 | |||
| 53 | /* Key Control Register (KEYCTRL) */ | ||
| 54 | #define DAVINCI_KEYSCAN_KEYEN 0x00000001 | ||
| 55 | #define DAVINCI_KEYSCAN_PREVMODE 0x00000002 | ||
| 56 | #define DAVINCI_KEYSCAN_CHATOFF 0x00000004 | ||
| 57 | #define DAVINCI_KEYSCAN_AUTODET 0x00000008 | ||
| 58 | #define DAVINCI_KEYSCAN_SCANMODE 0x00000010 | ||
| 59 | #define DAVINCI_KEYSCAN_OUTTYPE 0x00000020 | ||
| 60 | |||
| 61 | /* Masks for the interrupts */ | ||
| 62 | #define DAVINCI_KEYSCAN_INT_CONT 0x00000008 | ||
| 63 | #define DAVINCI_KEYSCAN_INT_OFF 0x00000004 | ||
| 64 | #define DAVINCI_KEYSCAN_INT_ON 0x00000002 | ||
| 65 | #define DAVINCI_KEYSCAN_INT_CHANGE 0x00000001 | ||
| 66 | #define DAVINCI_KEYSCAN_INT_ALL 0x0000000f | ||
| 67 | |||
| 68 | struct davinci_ks { | ||
| 69 | struct input_dev *input; | ||
| 70 | struct davinci_ks_platform_data *pdata; | ||
| 71 | int irq; | ||
| 72 | void __iomem *base; | ||
| 73 | resource_size_t pbase; | ||
| 74 | size_t base_size; | ||
| 75 | unsigned short keymap[]; | ||
| 76 | }; | ||
| 77 | |||
| 78 | /* Initializing the kp Module */ | ||
| 79 | static int __init davinci_ks_initialize(struct davinci_ks *davinci_ks) | ||
| 80 | { | ||
| 81 | struct device *dev = &davinci_ks->input->dev; | ||
| 82 | struct davinci_ks_platform_data *pdata = davinci_ks->pdata; | ||
| 83 | u32 matrix_ctrl; | ||
| 84 | |||
| 85 | /* Enable all interrupts */ | ||
| 86 | __raw_writel(DAVINCI_KEYSCAN_INT_ALL, | ||
| 87 | davinci_ks->base + DAVINCI_KEYSCAN_INTENA); | ||
| 88 | |||
| 89 | /* Clear interrupts if any */ | ||
| 90 | __raw_writel(DAVINCI_KEYSCAN_INT_ALL, | ||
| 91 | davinci_ks->base + DAVINCI_KEYSCAN_INTCLR); | ||
| 92 | |||
| 93 | /* Setup the scan period = strobe + interval */ | ||
| 94 | __raw_writel(pdata->strobe, | ||
| 95 | davinci_ks->base + DAVINCI_KEYSCAN_STRBWIDTH); | ||
| 96 | __raw_writel(pdata->interval, | ||
| 97 | davinci_ks->base + DAVINCI_KEYSCAN_INTERVAL); | ||
| 98 | __raw_writel(0x01, | ||
| 99 | davinci_ks->base + DAVINCI_KEYSCAN_CONTTIME); | ||
| 100 | |||
| 101 | /* Define matrix type */ | ||
| 102 | switch (pdata->matrix_type) { | ||
| 103 | case DAVINCI_KEYSCAN_MATRIX_4X4: | ||
| 104 | matrix_ctrl = 0; | ||
| 105 | break; | ||
| 106 | case DAVINCI_KEYSCAN_MATRIX_5X3: | ||
| 107 | matrix_ctrl = (1 << 6); | ||
| 108 | break; | ||
| 109 | default: | ||
| 110 | dev_err(dev->parent, "wrong matrix type\n"); | ||
| 111 | return -EINVAL; | ||
| 112 | } | ||
| 113 | |||
| 114 | /* Enable key scan module and set matrix type */ | ||
| 115 | __raw_writel(DAVINCI_KEYSCAN_AUTODET | DAVINCI_KEYSCAN_KEYEN | | ||
| 116 | matrix_ctrl, davinci_ks->base + DAVINCI_KEYSCAN_KEYCTRL); | ||
| 117 | |||
| 118 | return 0; | ||
| 119 | } | ||
| 120 | |||
| 121 | static irqreturn_t davinci_ks_interrupt(int irq, void *dev_id) | ||
| 122 | { | ||
| 123 | struct davinci_ks *davinci_ks = dev_id; | ||
| 124 | struct device *dev = &davinci_ks->input->dev; | ||
| 125 | unsigned short *keymap = davinci_ks->keymap; | ||
| 126 | int keymapsize = davinci_ks->pdata->keymapsize; | ||
| 127 | u32 prev_status, new_status, changed; | ||
| 128 | bool release; | ||
| 129 | int keycode = KEY_UNKNOWN; | ||
| 130 | int i; | ||
| 131 | |||
| 132 | /* Disable interrupt */ | ||
| 133 | __raw_writel(0x0, davinci_ks->base + DAVINCI_KEYSCAN_INTENA); | ||
| 134 | |||
| 135 | /* Reading previous and new status of the key scan */ | ||
| 136 | prev_status = __raw_readl(davinci_ks->base + DAVINCI_KEYSCAN_PREVSTATE); | ||
| 137 | new_status = __raw_readl(davinci_ks->base + DAVINCI_KEYSCAN_CURRENTST); | ||
| 138 | |||
| 139 | changed = prev_status ^ new_status; | ||
| 140 | |||
| 141 | if (changed) { | ||
| 142 | /* | ||
| 143 | * It goes through all bits in 'changed' to ensure | ||
| 144 | * that no key changes are being missed | ||
| 145 | */ | ||
