blob: 79cd3e9fdf2e2f60d6266fdf4d5df85c5057325c [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
Nicolas Pitre2f82af02009-09-14 03:25:28 -040011 * on some suggestions by Nicolas Pitre <nico@fluxnic.net>.
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040012 *
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>
Dmitry Torokhov52ec7752009-07-22 21:51:40 -070028#include <linux/input/matrix_keypad.h>
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040029
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040030#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/hardware.h>
34#include <mach/pxa27x_keypad.h>
Eric Miao9c60deb2008-01-31 00:59:15 -050035/*
36 * Keypad Controller registers
37 */
38#define KPC 0x0000 /* Keypad Control register */
39#define KPDK 0x0008 /* Keypad Direct Key register */
40#define KPREC 0x0010 /* Keypad Rotary Encoder register */
41#define KPMK 0x0018 /* Keypad Matrix Key register */
42#define KPAS 0x0020 /* Keypad Automatic Scan register */
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040043
Eric Miao9c60deb2008-01-31 00:59:15 -050044/* Keypad Automatic Scan Multiple Key Presser register 0-3 */
45#define KPASMKP0 0x0028
46#define KPASMKP1 0x0030
47#define KPASMKP2 0x0038
48#define KPASMKP3 0x0040
49#define KPKDI 0x0048
50
51/* bit definitions */
Samuel Ortiz688dad42008-03-20 09:48:14 -040052#define KPC_MKRN(n) ((((n) - 1) & 0x7) << 26) /* matrix key row number */
53#define KPC_MKCN(n) ((((n) - 1) & 0x7) << 23) /* matrix key column number */
54#define KPC_DKN(n) ((((n) - 1) & 0x7) << 6) /* direct key number */
Eric Miaod7416f92008-01-31 00:58:52 -050055
Eric Miao9c60deb2008-01-31 00:59:15 -050056#define KPC_AS (0x1 << 30) /* Automatic Scan bit */
57#define KPC_ASACT (0x1 << 29) /* Automatic Scan on Activity */
58#define KPC_MI (0x1 << 22) /* Matrix interrupt bit */
59#define KPC_IMKP (0x1 << 21) /* Ignore Multiple Key Press */
60
61#define KPC_MS(n) (0x1 << (13 + (n))) /* Matrix scan line 'n' */
62#define KPC_MS_ALL (0xff << 13)
63
64#define KPC_ME (0x1 << 12) /* Matrix Keypad Enable */
65#define KPC_MIE (0x1 << 11) /* Matrix Interrupt Enable */
66#define KPC_DK_DEB_SEL (0x1 << 9) /* Direct Keypad Debounce Select */
67#define KPC_DI (0x1 << 5) /* Direct key interrupt bit */
68#define KPC_RE_ZERO_DEB (0x1 << 4) /* Rotary Encoder Zero Debounce */
69#define KPC_REE1 (0x1 << 3) /* Rotary Encoder1 Enable */
70#define KPC_REE0 (0x1 << 2) /* Rotary Encoder0 Enable */
71#define KPC_DE (0x1 << 1) /* Direct Keypad Enable */
72#define KPC_DIE (0x1 << 0) /* Direct Keypad interrupt Enable */
73
Eric Miao62059d92008-01-31 00:59:03 -050074#define KPDK_DKP (0x1 << 31)
75#define KPDK_DK(n) ((n) & 0xff)
76
Eric Miao9c60deb2008-01-31 00:59:15 -050077#define KPREC_OF1 (0x1 << 31)
78#define kPREC_UF1 (0x1 << 30)
79#define KPREC_OF0 (0x1 << 15)
80#define KPREC_UF0 (0x1 << 14)
81
82#define KPREC_RECOUNT0(n) ((n) & 0xff)
83#define KPREC_RECOUNT1(n) (((n) >> 16) & 0xff)
84
85#define KPMK_MKP (0x1 << 31)
86#define KPAS_SO (0x1 << 31)
87#define KPASMKPx_SO (0x1 << 31)
88
89#define KPAS_MUKP(n) (((n) >> 26) & 0x1f)
90#define KPAS_RP(n) (((n) >> 4) & 0xf)
91#define KPAS_CP(n) ((n) & 0xf)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -040092
Eric Miao1814db62008-01-31 00:58:37 -050093#define KPASMKP_MKC_MASK (0xff)
94
Eric Miao9c60deb2008-01-31 00:59:15 -050095#define keypad_readl(off) __raw_readl(keypad->mmio_base + (off))
96#define keypad_writel(off, v) __raw_writel((v), keypad->mmio_base + (off))
97
Dmitry Torokhovbd96f372009-09-04 23:46:18 -070098#define MAX_MATRIX_KEY_NUM (MAX_MATRIX_KEY_ROWS * MAX_MATRIX_KEY_COLS)
99#define MAX_KEYPAD_KEYS (MAX_MATRIX_KEY_NUM + MAX_DIRECT_KEY_NUM)
Eric Miao1814db62008-01-31 00:58:37 -0500100
101struct pxa27x_keypad {
102 struct pxa27x_keypad_platform_data *pdata;
103
104 struct clk *clk;
105 struct input_dev *input_dev;
Eric Miao9c60deb2008-01-31 00:59:15 -0500106 void __iomem *mmio_base;
Eric Miao1814db62008-01-31 00:58:37 -0500107
Eric Miao39ab9dd2008-06-02 11:20:55 -0400108 int irq;
109
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700110 unsigned short keycodes[MAX_KEYPAD_KEYS];
111 int rotary_rel_code[2];
Eric Miao1814db62008-01-31 00:58:37 -0500112
113 /* state row bits of each column scan */
114 uint32_t matrix_key_state[MAX_MATRIX_KEY_COLS];
Eric Miao62059d92008-01-31 00:59:03 -0500115 uint32_t direct_key_state;
116
117 unsigned int direct_key_mask;
Eric Miao1814db62008-01-31 00:58:37 -0500118};
119
120static void pxa27x_keypad_build_keycode(struct pxa27x_keypad *keypad)
121{
122 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
123 struct input_dev *input_dev = keypad->input_dev;
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700124 unsigned short keycode;
Eric Miao1814db62008-01-31 00:58:37 -0500125 int i;
126
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700127 for (i = 0; i < pdata->matrix_key_map_size; i++) {
128 unsigned int key = pdata->matrix_key_map[i];
129 unsigned int row = KEY_ROW(key);
130 unsigned int col = KEY_COL(key);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700131 unsigned int scancode = MATRIX_SCAN_CODE(row, col,
132 MATRIX_ROW_SHIFT);
Eric Miao1814db62008-01-31 00:58:37 -0500133
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700134 keycode = KEY_VAL(key);
135 keypad->keycodes[scancode] = keycode;
136 __set_bit(keycode, input_dev->keybit);
Eric Miao1814db62008-01-31 00:58:37 -0500137 }
Eric Miao62059d92008-01-31 00:59:03 -0500138
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700139 for (i = 0; i < pdata->direct_key_num; i++) {
140 keycode = pdata->direct_key_map[i];
141 keypad->keycodes[MAX_MATRIX_KEY_NUM + i] = keycode;
142 __set_bit(keycode, input_dev->keybit);
143 }
Eric Miao62059d92008-01-31 00:59:03 -0500144
Antonio Ospite471637a2008-05-28 14:35:52 -0400145 if (pdata->enable_rotary0) {
146 if (pdata->rotary0_up_key && pdata->rotary0_down_key) {
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700147 keycode = pdata->rotary0_up_key;
148 keypad->keycodes[MAX_MATRIX_KEY_NUM + 0] = keycode;
149 __set_bit(keycode, input_dev->keybit);
150
151 keycode = pdata->rotary0_down_key;
152 keypad->keycodes[MAX_MATRIX_KEY_NUM + 1] = keycode;
153 __set_bit(keycode, input_dev->keybit);
154
155 keypad->rotary_rel_code[0] = -1;
156 } else {
157 keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700158 __set_bit(pdata->rotary0_rel_code, input_dev->relbit);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700159 }
Antonio Ospite471637a2008-05-28 14:35:52 -0400160 }
Eric Miao62059d92008-01-31 00:59:03 -0500161
Antonio Ospite471637a2008-05-28 14:35:52 -0400162 if (pdata->enable_rotary1) {
163 if (pdata->rotary1_up_key && pdata->rotary1_down_key) {
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700164 keycode = pdata->rotary1_up_key;
165 keypad->keycodes[MAX_MATRIX_KEY_NUM + 2] = keycode;
166 __set_bit(keycode, input_dev->keybit);
Eric Miao1814db62008-01-31 00:58:37 -0500167
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700168 keycode = pdata->rotary1_down_key;
169 keypad->keycodes[MAX_MATRIX_KEY_NUM + 3] = keycode;
170 __set_bit(keycode, input_dev->keybit);
171
172 keypad->rotary_rel_code[1] = -1;
173 } else {
174 keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;
175 __set_bit(pdata->rotary1_rel_code, input_dev->relbit);
176 }
177 }
178
179 __clear_bit(KEY_RESERVED, input_dev->keybit);
Eric Miao1814db62008-01-31 00:58:37 -0500180}
181
182static void pxa27x_keypad_scan_matrix(struct pxa27x_keypad *keypad)
183{
184 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700185 struct input_dev *input_dev = keypad->input_dev;
Eric Miao1814db62008-01-31 00:58:37 -0500186 int row, col, num_keys_pressed = 0;
187 uint32_t new_state[MAX_MATRIX_KEY_COLS];
Eric Miao9c60deb2008-01-31 00:59:15 -0500188 uint32_t kpas = keypad_readl(KPAS);
Eric Miao1814db62008-01-31 00:58:37 -0500189
190 num_keys_pressed = KPAS_MUKP(kpas);
191
192 memset(new_state, 0, sizeof(new_state));
193
194 if (num_keys_pressed == 0)
195 goto scan;
196
197 if (num_keys_pressed == 1) {
198 col = KPAS_CP(kpas);
199 row = KPAS_RP(kpas);
200
201 /* if invalid row/col, treat as no key pressed */
202 if (col >= pdata->matrix_key_cols ||
203 row >= pdata->matrix_key_rows)
204 goto scan;
205
206 new_state[col] = (1 << row);
207 goto scan;
208 }
209
210 if (num_keys_pressed > 1) {
Eric Miao9c60deb2008-01-31 00:59:15 -0500211 uint32_t kpasmkp0 = keypad_readl(KPASMKP0);
212 uint32_t kpasmkp1 = keypad_readl(KPASMKP1);
213 uint32_t kpasmkp2 = keypad_readl(KPASMKP2);
214 uint32_t kpasmkp3 = keypad_readl(KPASMKP3);
Eric Miao1814db62008-01-31 00:58:37 -0500215
216 new_state[0] = kpasmkp0 & KPASMKP_MKC_MASK;
217 new_state[1] = (kpasmkp0 >> 16) & KPASMKP_MKC_MASK;
218 new_state[2] = kpasmkp1 & KPASMKP_MKC_MASK;
219 new_state[3] = (kpasmkp1 >> 16) & KPASMKP_MKC_MASK;
220 new_state[4] = kpasmkp2 & KPASMKP_MKC_MASK;
221 new_state[5] = (kpasmkp2 >> 16) & KPASMKP_MKC_MASK;
222 new_state[6] = kpasmkp3 & KPASMKP_MKC_MASK;
223 new_state[7] = (kpasmkp3 >> 16) & KPASMKP_MKC_MASK;
224 }
225scan:
226 for (col = 0; col < pdata->matrix_key_cols; col++) {
227 uint32_t bits_changed;
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700228 int code;
Eric Miao1814db62008-01-31 00:58:37 -0500229
230 bits_changed = keypad->matrix_key_state[col] ^ new_state[col];
231 if (bits_changed == 0)
232 continue;
233
234 for (row = 0; row < pdata->matrix_key_rows; row++) {
235 if ((bits_changed & (1 << row)) == 0)
236 continue;
237
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700238 code = MATRIX_SCAN_CODE(row, col, MATRIX_ROW_SHIFT);
239 input_event(input_dev, EV_MSC, MSC_SCAN, code);
240 input_report_key(input_dev, keypad->keycodes[code],
241 new_state[col] & (1 << row));
Eric Miao1814db62008-01-31 00:58:37 -0500242 }
243 }
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700244 input_sync(input_dev);
Eric Miao1814db62008-01-31 00:58:37 -0500245 memcpy(keypad->matrix_key_state, new_state, sizeof(new_state));
246}
Russell King22d8a732007-08-20 10:19:39 +0100247
Eric Miaod7416f92008-01-31 00:58:52 -0500248#define DEFAULT_KPREC (0x007f007f)
249
Eric Miao62059d92008-01-31 00:59:03 -0500250static inline int rotary_delta(uint32_t kprec)
251{
252 if (kprec & KPREC_OF0)
253 return (kprec & 0xff) + 0x7f;
254 else if (kprec & KPREC_UF0)
255 return (kprec & 0xff) - 0x7f - 0xff;
256 else
257 return (kprec & 0xff) - 0x7f;
258}
259
260static void report_rotary_event(struct pxa27x_keypad *keypad, int r, int delta)
261{
262 struct input_dev *dev = keypad->input_dev;
263
264 if (delta == 0)
265 return;
266
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700267 if (keypad->rotary_rel_code[r] == -1) {
268 int code = MAX_MATRIX_KEY_NUM + 2 * r + (delta > 0 ? 0 : 1);
269 unsigned char keycode = keypad->keycodes[code];
Eric Miao62059d92008-01-31 00:59:03 -0500270
271 /* simulate a press-n-release */
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700272 input_event(dev, EV_MSC, MSC_SCAN, code);
Eric Miao62059d92008-01-31 00:59:03 -0500273 input_report_key(dev, keycode, 1);
274 input_sync(dev);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700275 input_event(dev, EV_MSC, MSC_SCAN, code);
Eric Miao62059d92008-01-31 00:59:03 -0500276 input_report_key(dev, keycode, 0);
277 input_sync(dev);
278 } else {
279 input_report_rel(dev, keypad->rotary_rel_code[r], delta);
280 input_sync(dev);
281 }
282}
283
284static void pxa27x_keypad_scan_rotary(struct pxa27x_keypad *keypad)
285{
286 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
287 uint32_t kprec;
288
289 /* read and reset to default count value */
Eric Miao9c60deb2008-01-31 00:59:15 -0500290 kprec = keypad_readl(KPREC);
291 keypad_writel(KPREC, DEFAULT_KPREC);
Eric Miao62059d92008-01-31 00:59:03 -0500292
293 if (pdata->enable_rotary0)
294 report_rotary_event(keypad, 0, rotary_delta(kprec));
295
296 if (pdata->enable_rotary1)
297 report_rotary_event(keypad, 1, rotary_delta(kprec >> 16));
298}
299
300static void pxa27x_keypad_scan_direct(struct pxa27x_keypad *keypad)
301{
302 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700303 struct input_dev *input_dev = keypad->input_dev;
Eric Miao62059d92008-01-31 00:59:03 -0500304 unsigned int new_state;
305 uint32_t kpdk, bits_changed;
306 int i;
307
Eric Miao9c60deb2008-01-31 00:59:15 -0500308 kpdk = keypad_readl(KPDK);
Eric Miao62059d92008-01-31 00:59:03 -0500309
310 if (pdata->enable_rotary0 || pdata->enable_rotary1)
311 pxa27x_keypad_scan_rotary(keypad);
312
Eric Miao62059d92008-01-31 00:59:03 -0500313 new_state = KPDK_DK(kpdk) & keypad->direct_key_mask;
314 bits_changed = keypad->direct_key_state ^ new_state;
315
316 if (bits_changed == 0)
317 return;
318
319 for (i = 0; i < pdata->direct_key_num; i++) {
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700320 if (bits_changed & (1 << i)) {
321 int code = MAX_MATRIX_KEY_NUM + i;
322
323 input_event(input_dev, EV_MSC, MSC_SCAN, code);
324 input_report_key(input_dev, keypad->keycodes[code],
325 new_state & (1 << i));
326 }
Eric Miao62059d92008-01-31 00:59:03 -0500327 }
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700328 input_sync(input_dev);
Eric Miao62059d92008-01-31 00:59:03 -0500329 keypad->direct_key_state = new_state;
330}
331
Eric Miao0e5f11a2008-01-31 00:56:46 -0500332static irqreturn_t pxa27x_keypad_irq_handler(int irq, void *dev_id)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400333{
Eric Miao1814db62008-01-31 00:58:37 -0500334 struct pxa27x_keypad *keypad = dev_id;
Eric Miao9c60deb2008-01-31 00:59:15 -0500335 unsigned long kpc = keypad_readl(KPC);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400336
Eric Miao62059d92008-01-31 00:59:03 -0500337 if (kpc & KPC_DI)
338 pxa27x_keypad_scan_direct(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400339
Eric Miao1814db62008-01-31 00:58:37 -0500340 if (kpc & KPC_MI)
341 pxa27x_keypad_scan_matrix(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400342
343 return IRQ_HANDLED;
344}
345
Eric Miaod7416f92008-01-31 00:58:52 -0500346static void pxa27x_keypad_config(struct pxa27x_keypad *keypad)
347{
348 struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
Eric Miao62059d92008-01-31 00:59:03 -0500349 unsigned int mask = 0, direct_key_num = 0;
Eric Miaod7416f92008-01-31 00:58:52 -0500350 unsigned long kpc = 0;
351
352 /* enable matrix keys with automatic scan */
353 if (pdata->matrix_key_rows && pdata->matrix_key_cols) {
354 kpc |= KPC_ASACT | KPC_MIE | KPC_ME | KPC_MS_ALL;
355 kpc |= KPC_MKRN(pdata->matrix_key_rows) |
356 KPC_MKCN(pdata->matrix_key_cols);
357 }
358
Eric Miao62059d92008-01-31 00:59:03 -0500359 /* enable rotary key, debounce interval same as direct keys */
360 if (pdata->enable_rotary0) {
361 mask |= 0x03;
362 direct_key_num = 2;
363 kpc |= KPC_REE0;
364 }
Eric Miaod7416f92008-01-31 00:58:52 -0500365
Eric Miao62059d92008-01-31 00:59:03 -0500366 if (pdata->enable_rotary1) {
367 mask |= 0x0c;
368 direct_key_num = 4;
369 kpc |= KPC_REE1;
370 }
371
372 if (pdata->direct_key_num > direct_key_num)
373 direct_key_num = pdata->direct_key_num;
374
375 keypad->direct_key_mask = ((2 << direct_key_num) - 1) & ~mask;
376
377 /* enable direct key */
378 if (direct_key_num)
379 kpc |= KPC_DE | KPC_DIE | KPC_DKN(direct_key_num);
380
Eric Miao9c60deb2008-01-31 00:59:15 -0500381 keypad_writel(KPC, kpc | KPC_RE_ZERO_DEB);
382 keypad_writel(KPREC, DEFAULT_KPREC);
Eric Miao76cb44e2008-01-31 00:59:23 -0500383 keypad_writel(KPKDI, pdata->debounce_interval);
Eric Miaod7416f92008-01-31 00:58:52 -0500384}
385
Eric Miao0e5f11a2008-01-31 00:56:46 -0500386static int pxa27x_keypad_open(struct input_dev *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400387{
Eric Miao1814db62008-01-31 00:58:37 -0500388 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
389
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400390 /* Enable unit clock */
Eric Miao1814db62008-01-31 00:58:37 -0500391 clk_enable(keypad->clk);
Eric Miaod7416f92008-01-31 00:58:52 -0500392 pxa27x_keypad_config(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400393
394 return 0;
395}
396
Eric Miao0e5f11a2008-01-31 00:56:46 -0500397static void pxa27x_keypad_close(struct input_dev *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400398{
Eric Miao1814db62008-01-31 00:58:37 -0500399 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
400
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400401 /* Disable clock unit */
Eric Miao1814db62008-01-31 00:58:37 -0500402 clk_disable(keypad->clk);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400403}
404
405#ifdef CONFIG_PM
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700406static int pxa27x_keypad_suspend(struct device *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400407{
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700408 struct platform_device *pdev = to_platform_device(dev);
Eric Miao1814db62008-01-31 00:58:37 -0500409 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400410
Eric Miaod7416f92008-01-31 00:58:52 -0500411 clk_disable(keypad->clk);
Eric Miao39ab9dd2008-06-02 11:20:55 -0400412
413 if (device_may_wakeup(&pdev->dev))
414 enable_irq_wake(keypad->irq);
415
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400416 return 0;
417}
418
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700419static int pxa27x_keypad_resume(struct device *dev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400420{
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700421 struct platform_device *pdev = to_platform_device(dev);
Eric Miao1814db62008-01-31 00:58:37 -0500422 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
Eric Miao1814db62008-01-31 00:58:37 -0500423 struct input_dev *input_dev = keypad->input_dev;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400424
Eric Miao39ab9dd2008-06-02 11:20:55 -0400425 if (device_may_wakeup(&pdev->dev))
426 disable_irq_wake(keypad->irq);
427
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400428 mutex_lock(&input_dev->mutex);
429
430 if (input_dev->users) {
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400431 /* Enable unit clock */
Eric Miao1814db62008-01-31 00:58:37 -0500432 clk_enable(keypad->clk);
Eric Miaod7416f92008-01-31 00:58:52 -0500433 pxa27x_keypad_config(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400434 }
435
436 mutex_unlock(&input_dev->mutex);
437
438 return 0;
439}
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700440
441static const struct dev_pm_ops pxa27x_keypad_pm_ops = {
442 .suspend = pxa27x_keypad_suspend,
443 .resume = pxa27x_keypad_resume,
444};
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400445#endif
446
Eric Miao0e5f11a2008-01-31 00:56:46 -0500447static int __devinit pxa27x_keypad_probe(struct platform_device *pdev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400448{
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700449 struct pxa27x_keypad_platform_data *pdata = pdev->dev.platform_data;
Eric Miao1814db62008-01-31 00:58:37 -0500450 struct pxa27x_keypad *keypad;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400451 struct input_dev *input_dev;
Eric Miao9c60deb2008-01-31 00:59:15 -0500452 struct resource *res;
453 int irq, error;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400454
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700455 if (pdata == NULL) {
Eric Miao1814db62008-01-31 00:58:37 -0500456 dev_err(&pdev->dev, "no platform data defined\n");
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700457 return -EINVAL;
Eric Miao1814db62008-01-31 00:58:37 -0500458 }
459
Eric Miao9c60deb2008-01-31 00:59:15 -0500460 irq = platform_get_irq(pdev, 0);
461 if (irq < 0) {
462 dev_err(&pdev->dev, "failed to get keypad irq\n");
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700463 return -ENXIO;
Eric Miao9c60deb2008-01-31 00:59:15 -0500464 }
465
466 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
467 if (res == NULL) {
468 dev_err(&pdev->dev, "failed to get I/O memory\n");
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700469 return -ENXIO;
470 }
471
472 keypad = kzalloc(sizeof(struct pxa27x_keypad), GFP_KERNEL);
473 input_dev = input_allocate_device();
474 if (!keypad || !input_dev) {
475 dev_err(&pdev->dev, "failed to allocate memory\n");
476 error = -ENOMEM;
Eric Miao9c60deb2008-01-31 00:59:15 -0500477 goto failed_free;
478 }
479
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700480 keypad->pdata = pdata;
481 keypad->input_dev = input_dev;
482 keypad->irq = irq;
483
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700484 res = request_mem_region(res->start, resource_size(res), pdev->name);
Eric Miao9c60deb2008-01-31 00:59:15 -0500485 if (res == NULL) {
486 dev_err(&pdev->dev, "failed to request I/O memory\n");
487 error = -EBUSY;
488 goto failed_free;
489 }
490
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700491 keypad->mmio_base = ioremap(res->start, resource_size(res));
Eric Miao9c60deb2008-01-31 00:59:15 -0500492 if (keypad->mmio_base == NULL) {
493 dev_err(&pdev->dev, "failed to remap I/O memory\n");
494 error = -ENXIO;
495 goto failed_free_mem;
496 }
497
Russell Kinge0d8b132008-11-11 17:52:32 +0000498 keypad->clk = clk_get(&pdev->dev, NULL);
Eric Miao1814db62008-01-31 00:58:37 -0500499 if (IS_ERR(keypad->clk)) {
500 dev_err(&pdev->dev, "failed to get keypad clock\n");
501 error = PTR_ERR(keypad->clk);
Eric Miao9c60deb2008-01-31 00:59:15 -0500502 goto failed_free_io;
Russell King22d8a732007-08-20 10:19:39 +0100503 }
504
Eric Miao9c60deb2008-01-31 00:59:15 -0500505 input_dev->name = pdev->name;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400506 input_dev->id.bustype = BUS_HOST;
Eric Miao0e5f11a2008-01-31 00:56:46 -0500507 input_dev->open = pxa27x_keypad_open;
508 input_dev->close = pxa27x_keypad_close;
Dmitry Torokhov469ba4d2007-04-12 01:34:58 -0400509 input_dev->dev.parent = &pdev->dev;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400510
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700511 input_dev->keycode = keypad->keycodes;
512 input_dev->keycodesize = sizeof(keypad->keycodes[0]);
513 input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);
514
Eric Miao1814db62008-01-31 00:58:37 -0500515 input_set_drvdata(input_dev, keypad);
516
Antonio Ospite471637a2008-05-28 14:35:52 -0400517 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700518 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
Eric Miao1814db62008-01-31 00:58:37 -0500519
520 pxa27x_keypad_build_keycode(keypad);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700521
522 if ((pdata->enable_rotary0 && keypad->rotary_rel_code[0] != -1) ||
523 (pdata->enable_rotary1 && keypad->rotary_rel_code[1] != -1)) {
524 input_dev->evbit[0] |= BIT_MASK(EV_REL);
525 }
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400526
Eric Miao9c60deb2008-01-31 00:59:15 -0500527 error = request_irq(irq, pxa27x_keypad_irq_handler, IRQF_DISABLED,
528 pdev->name, keypad);
529 if (error) {
530 dev_err(&pdev->dev, "failed to request IRQ\n");
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700531 goto failed_put_clk;
Eric Miao9c60deb2008-01-31 00:59:15 -0500532 }
533
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400534 /* Register the input device */
535 error = input_register_device(input_dev);
Eric Miao9c60deb2008-01-31 00:59:15 -0500536 if (error) {
537 dev_err(&pdev->dev, "failed to register input device\n");
538 goto failed_free_irq;
539 }
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400540
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700541 platform_set_drvdata(pdev, keypad);
Eric Miao39ab9dd2008-06-02 11:20:55 -0400542 device_init_wakeup(&pdev->dev, 1);
543
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400544 return 0;
545
Eric Miao9c60deb2008-01-31 00:59:15 -0500546failed_free_irq:
547 free_irq(irq, pdev);
Eric Miao1814db62008-01-31 00:58:37 -0500548failed_put_clk:
549 clk_put(keypad->clk);
Eric Miao9c60deb2008-01-31 00:59:15 -0500550failed_free_io:
551 iounmap(keypad->mmio_base);
552failed_free_mem:
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700553 release_mem_region(res->start, resource_size(res));
Eric Miao1814db62008-01-31 00:58:37 -0500554failed_free:
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700555 input_free_device(input_dev);
Eric Miao1814db62008-01-31 00:58:37 -0500556 kfree(keypad);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400557 return error;
558}
559
Eric Miao0e5f11a2008-01-31 00:56:46 -0500560static int __devexit pxa27x_keypad_remove(struct platform_device *pdev)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400561{
Eric Miao1814db62008-01-31 00:58:37 -0500562 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
Eric Miao9c60deb2008-01-31 00:59:15 -0500563 struct resource *res;
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400564
Eric Miao39ab9dd2008-06-02 11:20:55 -0400565 free_irq(keypad->irq, pdev);
Eric Miao1814db62008-01-31 00:58:37 -0500566 clk_put(keypad->clk);
567
568 input_unregister_device(keypad->input_dev);
Eric Miao9c60deb2008-01-31 00:59:15 -0500569 input_free_device(keypad->input_dev);
570
571 iounmap(keypad->mmio_base);
572
573 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Dmitry Torokhov52ec7752009-07-22 21:51:40 -0700574 release_mem_region(res->start, resource_size(res));
Eric Miao1814db62008-01-31 00:58:37 -0500575
576 platform_set_drvdata(pdev, NULL);
577 kfree(keypad);
Dmitry Torokhovbd96f372009-09-04 23:46:18 -0700578
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400579 return 0;
580}
581
Kay Sieversd7b52472008-04-18 00:24:42 -0400582/* work with hotplug and coldplug */
583MODULE_ALIAS("platform:pxa27x-keypad");
584
Eric Miao0e5f11a2008-01-31 00:56:46 -0500585static struct platform_driver pxa27x_keypad_driver = {
586 .probe = pxa27x_keypad_probe,
587 .remove = __devexit_p(pxa27x_keypad_remove),
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400588 .driver = {
Eric Miao9c60deb2008-01-31 00:59:15 -0500589 .name = "pxa27x-keypad",
Kay Sieversd7b52472008-04-18 00:24:42 -0400590 .owner = THIS_MODULE,
Dmitry Torokhovb0010912009-07-24 22:01:43 -0700591#ifdef CONFIG_PM
592 .pm = &pxa27x_keypad_pm_ops,
593#endif
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400594 },
595};
596
Eric Miao0e5f11a2008-01-31 00:56:46 -0500597static int __init pxa27x_keypad_init(void)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400598{
Eric Miao0e5f11a2008-01-31 00:56:46 -0500599 return platform_driver_register(&pxa27x_keypad_driver);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400600}
601
Eric Miao0e5f11a2008-01-31 00:56:46 -0500602static void __exit pxa27x_keypad_exit(void)
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400603{
Eric Miao0e5f11a2008-01-31 00:56:46 -0500604 platform_driver_unregister(&pxa27x_keypad_driver);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400605}
606
Eric Miao0e5f11a2008-01-31 00:56:46 -0500607module_init(pxa27x_keypad_init);
608module_exit(pxa27x_keypad_exit);
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400609
Eric Miao0e5f11a2008-01-31 00:56:46 -0500610MODULE_DESCRIPTION("PXA27x Keypad Controller Driver");
Rodolfo Giometti5a90e5b2007-03-16 00:58:52 -0400611MODULE_LICENSE("GPL");