blob: 8de35b0500f324717d30658e918433f2209067dc [file] [log] [blame]
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -04001/*
Eric Miao0e5f11a2008-01-31 00:56:46 -05002 * linux/drivers/input/keyboard/pxa27x_keypad.c
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -04003 *
4 * Driver for the pxa27x matrix keyboard controller.
5 *
6 * Created: Feb 22, 2007
7 * Author: Rodolfo Giometti <giometti@linux.it>
8 *
9 * Based on a previous implementations by Kevin O'Connor
10 * <kevin_at_koconnor.net> and Alex Osborne <bobofdoom@gmail.com> and
11 * on some suggestions by Nicolas Pitre <nico@cam.org>.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 */
17
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/input.h>
24#include <linux/device.h>
25#include <linux/platform_device.h>
Russell King22d8a732007-08-20 10:19:39 +010026#include <linux/clk.h>
27#include <linux/err.h>
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040028
29#include <asm/mach-types.h>
30#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32
33#include <asm/arch/hardware.h>
34#include <asm/arch/pxa-regs.h>
35#include <asm/arch/irqs.h>
Eric Miao0e5f11a2008-01-31 00:56:46 -050036#include <asm/arch/pxa27x_keypad.h>
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040037
Eric Miao0e5f11a2008-01-31 00:56:46 -050038#define DRIVER_NAME "pxa27x-keypad"
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040039
Eric Miao1814db62008-01-31 00:58:37 -050040#define KPAS_MUKP(n) (((n) >> 26) & 0x1f)
41#define KPAS_RP(n) (((n) >> 4) & 0xf)
42#define KPAS_CP(n) ((n) & 0xf)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040043
Eric Miao1814db62008-01-31 00:58:37 -050044#define KPASMKP_MKC_MASK (0xff)
45
46#define MAX_MATRIX_KEY_NUM (8 * 8)
47
48struct pxa27x_keypad {
49 struct pxa27x_keypad_platform_data *pdata;
50
51 struct clk *clk;
52 struct input_dev *input_dev;
53
54 /* matrix key code map */
55 unsigned int matrix_keycodes[MAX_MATRIX_KEY_NUM];
56
57 /* state row bits of each column scan */
58 uint32_t matrix_key_state[MAX_MATRIX_KEY_COLS];
59};
60
61static void pxa27x_keypad_build_keycode(struct pxa27x_keypad *keypad)
62{
63 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
64 struct input_dev *input_dev = keypad->input_dev;
65 unsigned int *key;
66 int i;
67
68 key = &pdata->matrix_key_map[0];
69 for (i = 0; i < pdata->matrix_key_map_size; i++, key++) {
70 int row = ((*key) >> 28) & 0xf;
71 int col = ((*key) >> 24) & 0xf;
72 int code = (*key) & 0xffffff;
73
74 keypad->matrix_keycodes[(row << 3) + col] = code;
75 set_bit(code, input_dev->keybit);
76 }
77}
78
79static inline unsigned int lookup_matrix_keycode(
80 struct pxa27x_keypad *keypad, int row, int col)
81{
82 return keypad->matrix_keycodes[(row << 3) + col];
83}
84
85static void pxa27x_keypad_scan_matrix(struct pxa27x_keypad *keypad)
86{
87 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
88 int row, col, num_keys_pressed = 0;
89 uint32_t new_state[MAX_MATRIX_KEY_COLS];
90 uint32_t kpas = KPAS;
91
92 num_keys_pressed = KPAS_MUKP(kpas);
93
94 memset(new_state, 0, sizeof(new_state));
95
96 if (num_keys_pressed == 0)
97 goto scan;
98
99 if (num_keys_pressed == 1) {
100 col = KPAS_CP(kpas);
101 row = KPAS_RP(kpas);
102
103 /* if invalid row/col, treat as no key pressed */
104 if (col >= pdata->matrix_key_cols ||
105 row >= pdata->matrix_key_rows)
106 goto scan;
107
108 new_state[col] = (1 << row);
109 goto scan;
110 }
111
112 if (num_keys_pressed > 1) {
113 uint32_t kpasmkp0 = KPASMKP0;
114 uint32_t kpasmkp1 = KPASMKP1;
115 uint32_t kpasmkp2 = KPASMKP2;
116 uint32_t kpasmkp3 = KPASMKP3;
117
118 new_state[0] = kpasmkp0 & KPASMKP_MKC_MASK;
119 new_state[1] = (kpasmkp0 >> 16) & KPASMKP_MKC_MASK;
120 new_state[2] = kpasmkp1 & KPASMKP_MKC_MASK;
121 new_state[3] = (kpasmkp1 >> 16) & KPASMKP_MKC_MASK;
122 new_state[4] = kpasmkp2 & KPASMKP_MKC_MASK;
123 new_state[5] = (kpasmkp2 >> 16) & KPASMKP_MKC_MASK;
124 new_state[6] = kpasmkp3 & KPASMKP_MKC_MASK;
125 new_state[7] = (kpasmkp3 >> 16) & KPASMKP_MKC_MASK;
126 }
127scan:
128 for (col = 0; col < pdata->matrix_key_cols; col++) {
129 uint32_t bits_changed;
130
131 bits_changed = keypad->matrix_key_state[col] ^ new_state[col];
132 if (bits_changed == 0)
133 continue;
134
135 for (row = 0; row < pdata->matrix_key_rows; row++) {
136 if ((bits_changed & (1 << row)) == 0)
137 continue;
138
139 input_report_key(keypad->input_dev,
140 lookup_matrix_keycode(keypad, row, col),
141 new_state[col] & (1 << row));
142 }
143 }
144 input_sync(keypad->input_dev);
145 memcpy(keypad->matrix_key_state, new_state, sizeof(new_state));
146}
Russell King22d8a732007-08-20 10:19:39 +0100147
Eric Miao0e5f11a2008-01-31 00:56:46 -0500148static irqreturn_t pxa27x_keypad_irq_handler(int irq, void *dev_id)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400149{
Eric Miao1814db62008-01-31 00:58:37 -0500150 struct pxa27x_keypad *keypad = dev_id;
151 struct input_dev *input_dev = keypad->input_dev;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400152 unsigned long kpc = KPC;
Eric Miao1814db62008-01-31 00:58:37 -0500153 int rel;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400154
155 if (kpc & KPC_DI) {
156 unsigned long kpdk = KPDK;
157
158 if (!(kpdk & KPDK_DKP)) {
159 /* better luck next time */
160 } else if (kpc & KPC_REE0) {
161 unsigned long kprec = KPREC;
162 KPREC = 0x7f;
163
164 if (kprec & KPREC_OF0)
165 rel = (kprec & 0xff) + 0x7f;
166 else if (kprec & KPREC_UF0)
167 rel = (kprec & 0xff) - 0x7f - 0xff;
168 else
169 rel = (kprec & 0xff) - 0x7f;
170
171 if (rel) {
172 input_report_rel(input_dev, REL_WHEEL, rel);
173 input_sync(input_dev);
174 }
175 }
176 }
177
Eric Miao1814db62008-01-31 00:58:37 -0500178 if (kpc & KPC_MI)
179 pxa27x_keypad_scan_matrix(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400180
181 return IRQ_HANDLED;
182}
183
Eric Miao0e5f11a2008-01-31 00:56:46 -0500184static int pxa27x_keypad_open(struct input_dev *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400185{
Eric Miao1814db62008-01-31 00:58:37 -0500186 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
187
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400188 /* Set keypad control register */
189 KPC |= (KPC_ASACT |
190 KPC_MS_ALL |
191 (2 << 6) | KPC_REE0 | KPC_DK_DEB_SEL |
192 KPC_ME | KPC_MIE | KPC_DE | KPC_DIE);
193
194 KPC &= ~KPC_AS; /* disable automatic scan */
195 KPC &= ~KPC_IMKP; /* do not ignore multiple keypresses */
196
197 /* Set rotary count to mid-point value */
198 KPREC = 0x7F;
199
200 /* Enable unit clock */
Eric Miao1814db62008-01-31 00:58:37 -0500201 clk_enable(keypad->clk);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400202
203 return 0;
204}
205
Eric Miao0e5f11a2008-01-31 00:56:46 -0500206static void pxa27x_keypad_close(struct input_dev *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400207{
Eric Miao1814db62008-01-31 00:58:37 -0500208 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
209
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400210 /* Disable clock unit */
Eric Miao1814db62008-01-31 00:58:37 -0500211 clk_disable(keypad->clk);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400212}
213
214#ifdef CONFIG_PM
Eric Miao0e5f11a2008-01-31 00:56:46 -0500215static int pxa27x_keypad_suspend(struct platform_device *pdev, pm_message_t state)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400216{
Eric Miao1814db62008-01-31 00:58:37 -0500217 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
218 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400219
220 /* Save controller status */
221 pdata->reg_kpc = KPC;
222 pdata->reg_kprec = KPREC;
223
224 return 0;
225}
226
Eric Miao0e5f11a2008-01-31 00:56:46 -0500227static int pxa27x_keypad_resume(struct platform_device *pdev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400228{
Eric Miao1814db62008-01-31 00:58:37 -0500229 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
230 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
231 struct input_dev *input_dev = keypad->input_dev;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400232
233 mutex_lock(&input_dev->mutex);
234
235 if (input_dev->users) {
236 /* Restore controller status */
237 KPC = pdata->reg_kpc;
238 KPREC = pdata->reg_kprec;
239
240 /* Enable unit clock */
Eric Miao1814db62008-01-31 00:58:37 -0500241 clk_enable(keypad->clk);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400242 }
243
244 mutex_unlock(&input_dev->mutex);
245
246 return 0;
247}
248#else
Eric Miao0e5f11a2008-01-31 00:56:46 -0500249#define pxa27x_keypad_suspend NULL
250#define pxa27x_keypad_resume NULL
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400251#endif
252
Eric Miao0e5f11a2008-01-31 00:56:46 -0500253static int __devinit pxa27x_keypad_probe(struct platform_device *pdev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400254{
Eric Miao1814db62008-01-31 00:58:37 -0500255 struct pxa27x_keypad *keypad;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400256 struct input_dev *input_dev;
Eric Miao1814db62008-01-31 00:58:37 -0500257 int col, error;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400258
Eric Miao1814db62008-01-31 00:58:37 -0500259 keypad = kzalloc(sizeof(struct pxa27x_keypad), GFP_KERNEL);
260 if (keypad == NULL) {
261 dev_err(&pdev->dev, "failed to allocate driver data\n");
262 return -ENOMEM;
263 }
264
265 keypad->pdata = pdev->dev.platform_data;
266 if (keypad->pdata == NULL) {
267 dev_err(&pdev->dev, "no platform data defined\n");
268 error = -EINVAL;
269 goto failed_free;
270 }
271
272 keypad->clk = clk_get(&pdev->dev, "KBDCLK");
273 if (IS_ERR(keypad->clk)) {
274 dev_err(&pdev->dev, "failed to get keypad clock\n");
275 error = PTR_ERR(keypad->clk);
276 goto failed_free;
Russell King22d8a732007-08-20 10:19:39 +0100277 }
278
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400279 /* Create and register the input driver. */
280 input_dev = input_allocate_device();
281 if (!input_dev) {
Eric Miao1814db62008-01-31 00:58:37 -0500282 dev_err(&pdev->dev, "failed to allocate input device\n");
Russell King22d8a732007-08-20 10:19:39 +0100283 error = -ENOMEM;
Eric Miao1814db62008-01-31 00:58:37 -0500284 goto failed_put_clk;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400285 }
286
287 input_dev->name = DRIVER_NAME;
288 input_dev->id.bustype = BUS_HOST;
Eric Miao0e5f11a2008-01-31 00:56:46 -0500289 input_dev->open = pxa27x_keypad_open;
290 input_dev->close = pxa27x_keypad_close;
Dmitry Torokhov469ba4d2007-04-12 01:34:58 -0400291 input_dev->dev.parent = &pdev->dev;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400292
Eric Miao1814db62008-01-31 00:58:37 -0500293 keypad->input_dev = input_dev;
294 input_set_drvdata(input_dev, keypad);
295
Jiri Slaby7b19ada2007-10-18 23:40:32 -0700296 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP) |
297 BIT_MASK(EV_REL);
298 input_dev->relbit[BIT_WORD(REL_WHEEL)] = BIT_MASK(REL_WHEEL);
Eric Miao1814db62008-01-31 00:58:37 -0500299
300 pxa27x_keypad_build_keycode(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400301
Eric Miao0e5f11a2008-01-31 00:56:46 -0500302 error = request_irq(IRQ_KEYPAD, pxa27x_keypad_irq_handler, IRQF_DISABLED,
Eric Miao1814db62008-01-31 00:58:37 -0500303 DRIVER_NAME, keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400304 if (error) {
305 printk(KERN_ERR "Cannot request keypad IRQ\n");
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400306 goto err_free_dev;
307 }
308
Eric Miao1814db62008-01-31 00:58:37 -0500309 platform_set_drvdata(pdev, keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400310
311 /* Register the input device */
312 error = input_register_device(input_dev);
313 if (error)
314 goto err_free_irq;
315
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400316 /*
317 * Store rows/cols info into keyboard registers.
318 */
319
Eric Miao1814db62008-01-31 00:58:37 -0500320 KPC |= (keypad->pdata->matrix_key_rows - 1) << 26;
321 KPC |= (keypad->pdata->matrix_key_cols - 1) << 23;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400322
Eric Miao1814db62008-01-31 00:58:37 -0500323 for (col = 0; col < keypad->pdata->matrix_key_cols; col++)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400324 KPC |= KPC_MS0 << col;
325
326 return 0;
327
328 err_free_irq:
329 platform_set_drvdata(pdev, NULL);
330 free_irq(IRQ_KEYPAD, pdev);
331 err_free_dev:
332 input_free_device(input_dev);
Eric Miao1814db62008-01-31 00:58:37 -0500333failed_put_clk:
334 clk_put(keypad->clk);
335failed_free:
336 kfree(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400337 return error;
338}
339
Eric Miao0e5f11a2008-01-31 00:56:46 -0500340static int __devexit pxa27x_keypad_remove(struct platform_device *pdev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400341{
Eric Miao1814db62008-01-31 00:58:37 -0500342 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400343
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400344 free_irq(IRQ_KEYPAD, pdev);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400345
Eric Miao1814db62008-01-31 00:58:37 -0500346 clk_disable(keypad->clk);
347 clk_put(keypad->clk);
348
349 input_unregister_device(keypad->input_dev);
350
351 platform_set_drvdata(pdev, NULL);
352 kfree(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400353 return 0;
354}
355
Eric Miao0e5f11a2008-01-31 00:56:46 -0500356static struct platform_driver pxa27x_keypad_driver = {
357 .probe = pxa27x_keypad_probe,
358 .remove = __devexit_p(pxa27x_keypad_remove),
359 .suspend = pxa27x_keypad_suspend,
360 .resume = pxa27x_keypad_resume,
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400361 .driver = {
362 .name = DRIVER_NAME,
363 },
364};
365
Eric Miao0e5f11a2008-01-31 00:56:46 -0500366static int __init pxa27x_keypad_init(void)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400367{
Eric Miao0e5f11a2008-01-31 00:56:46 -0500368 return platform_driver_register(&pxa27x_keypad_driver);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400369}
370
Eric Miao0e5f11a2008-01-31 00:56:46 -0500371static void __exit pxa27x_keypad_exit(void)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400372{
Eric Miao0e5f11a2008-01-31 00:56:46 -0500373 platform_driver_unregister(&pxa27x_keypad_driver);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400374}
375
Eric Miao0e5f11a2008-01-31 00:56:46 -0500376module_init(pxa27x_keypad_init);
377module_exit(pxa27x_keypad_exit);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400378
Eric Miao0e5f11a2008-01-31 00:56:46 -0500379MODULE_DESCRIPTION("PXA27x Keypad Controller Driver");
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400380MODULE_LICENSE("GPL");