2 * linux/drivers/input/keyboard/pxa27x_keypad.c
4 * Driver for the pxa27x matrix keyboard controller.
6 * Created: Feb 22, 2007
7 * Author: Rodolfo Giometti <giometti@linux.it>
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@fluxnic.net>.
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.
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/interrupt.h>
22 #include <linux/input.h>
24 #include <linux/device.h>
25 #include <linux/platform_device.h>
26 #include <linux/clk.h>
27 #include <linux/err.h>
28 #include <linux/input/matrix_keypad.h>
29 #include <linux/slab.h>
32 #include <linux/platform_data/keypad-pxa27x.h>
34 * Keypad Controller registers
36 #define KPC 0x0000 /* Keypad Control register */
37 #define KPDK 0x0008 /* Keypad Direct Key register */
38 #define KPREC 0x0010 /* Keypad Rotary Encoder register */
39 #define KPMK 0x0018 /* Keypad Matrix Key register */
40 #define KPAS 0x0020 /* Keypad Automatic Scan register */
42 /* Keypad Automatic Scan Multiple Key Presser register 0-3 */
43 #define KPASMKP0 0x0028
44 #define KPASMKP1 0x0030
45 #define KPASMKP2 0x0038
46 #define KPASMKP3 0x0040
50 #define KPC_MKRN(n) ((((n) - 1) & 0x7) << 26) /* matrix key row number */
51 #define KPC_MKCN(n) ((((n) - 1) & 0x7) << 23) /* matrix key column number */
52 #define KPC_DKN(n) ((((n) - 1) & 0x7) << 6) /* direct key number */
54 #define KPC_AS (0x1 << 30) /* Automatic Scan bit */
55 #define KPC_ASACT (0x1 << 29) /* Automatic Scan on Activity */
56 #define KPC_MI (0x1 << 22) /* Matrix interrupt bit */
57 #define KPC_IMKP (0x1 << 21) /* Ignore Multiple Key Press */
59 #define KPC_MS(n) (0x1 << (13 + (n))) /* Matrix scan line 'n' */
60 #define KPC_MS_ALL (0xff << 13)
62 #define KPC_ME (0x1 << 12) /* Matrix Keypad Enable */
63 #define KPC_MIE (0x1 << 11) /* Matrix Interrupt Enable */
64 #define KPC_DK_DEB_SEL (0x1 << 9) /* Direct Keypad Debounce Select */
65 #define KPC_DI (0x1 << 5) /* Direct key interrupt bit */
66 #define KPC_RE_ZERO_DEB (0x1 << 4) /* Rotary Encoder Zero Debounce */
67 #define KPC_REE1 (0x1 << 3) /* Rotary Encoder1 Enable */
68 #define KPC_REE0 (0x1 << 2) /* Rotary Encoder0 Enable */
69 #define KPC_DE (0x1 << 1) /* Direct Keypad Enable */
70 #define KPC_DIE (0x1 << 0) /* Direct Keypad interrupt Enable */
72 #define KPDK_DKP (0x1 << 31)
73 #define KPDK_DK(n) ((n) & 0xff)
75 #define KPREC_OF1 (0x1 << 31)
76 #define kPREC_UF1 (0x1 << 30)
77 #define KPREC_OF0 (0x1 << 15)
78 #define KPREC_UF0 (0x1 << 14)
80 #define KPREC_RECOUNT0(n) ((n) & 0xff)
81 #define KPREC_RECOUNT1(n) (((n) >> 16) & 0xff)
83 #define KPMK_MKP (0x1 << 31)
84 #define KPAS_SO (0x1 << 31)
85 #define KPASMKPx_SO (0x1 << 31)
87 #define KPAS_MUKP(n) (((n) >> 26) & 0x1f)
88 #define KPAS_RP(n) (((n) >> 4) & 0xf)
89 #define KPAS_CP(n) ((n) & 0xf)
91 #define KPASMKP_MKC_MASK (0xff)
93 #define keypad_readl(off) __raw_readl(keypad->mmio_base + (off))
94 #define keypad_writel(off, v) __raw_writel((v), keypad->mmio_base + (off))
96 #define MAX_MATRIX_KEY_NUM (MAX_MATRIX_KEY_ROWS * MAX_MATRIX_KEY_COLS)
97 #define MAX_KEYPAD_KEYS (MAX_MATRIX_KEY_NUM + MAX_DIRECT_KEY_NUM)
99 struct pxa27x_keypad {
100 const struct pxa27x_keypad_platform_data *pdata;
103 struct input_dev *input_dev;
104 void __iomem *mmio_base;
108 unsigned short keycodes[MAX_KEYPAD_KEYS];
109 int rotary_rel_code[2];
111 unsigned int row_shift;
113 /* state row bits of each column scan */
114 uint32_t matrix_key_state[MAX_MATRIX_KEY_COLS];
115 uint32_t direct_key_state;
117 unsigned int direct_key_mask;
121 static int pxa27x_keypad_matrix_key_parse_dt(struct pxa27x_keypad *keypad,
122 struct pxa27x_keypad_platform_data *pdata)
124 struct input_dev *input_dev = keypad->input_dev;
125 struct device *dev = input_dev->dev.parent;
129 error = matrix_keypad_parse_properties(dev, &rows, &cols);
133 if (rows > MAX_MATRIX_KEY_ROWS || cols > MAX_MATRIX_KEY_COLS) {
134 dev_err(dev, "rows or cols exceeds maximum value\n");
138 pdata->matrix_key_rows = rows;
139 pdata->matrix_key_cols = cols;
141 error = matrix_keypad_build_keymap(NULL, NULL,
142 pdata->matrix_key_rows,
143 pdata->matrix_key_cols,
144 keypad->keycodes, input_dev);
151 static int pxa27x_keypad_direct_key_parse_dt(struct pxa27x_keypad *keypad,
152 struct pxa27x_keypad_platform_data *pdata)
154 struct input_dev *input_dev = keypad->input_dev;
155 struct device *dev = input_dev->dev.parent;
156 struct device_node *np = dev->of_node;
159 unsigned int proplen, size;
163 error = of_property_read_u32(np, "marvell,direct-key-count",
164 &pdata->direct_key_num);
167 * If do not have marvel,direct-key-count defined,
168 * it means direct key is not supported.
170 return error == -EINVAL ? 0 : error;
173 error = of_property_read_u32(np, "marvell,direct-key-mask",
174 &pdata->direct_key_mask);
176 if (error != -EINVAL)
180 * If marvell,direct-key-mask is not defined, driver will use
181 * default value. Default value is set when configure the keypad.
183 pdata->direct_key_mask = 0;
186 pdata->direct_key_low_active = of_property_read_bool(np,
187 "marvell,direct-key-low-active");
189 prop = of_get_property(np, "marvell,direct-key-map", &proplen);
193 if (proplen % sizeof(u16))
196 size = proplen / sizeof(u16);
198 /* Only MAX_DIRECT_KEY_NUM is accepted.*/
199 if (size > MAX_DIRECT_KEY_NUM)
202 for (i = 0; i < size; i++) {
203 code = be16_to_cpup(prop + i);
204 keypad->keycodes[MAX_MATRIX_KEY_NUM + i] = code;
205 __set_bit(code, input_dev->keybit);
211 static int pxa27x_keypad_rotary_parse_dt(struct pxa27x_keypad *keypad,
212 struct pxa27x_keypad_platform_data *pdata)
216 unsigned int code, proplen;
217 const char *rotaryname[2] = {
218 "marvell,rotary0", "marvell,rotary1"};
219 const char relkeyname[] = {"marvell,rotary-rel-key"};
220 struct input_dev *input_dev = keypad->input_dev;
221 struct device *dev = input_dev->dev.parent;
222 struct device_node *np = dev->of_node;
224 relkey_ret = of_property_read_u32(np, relkeyname, &code);
225 /* if can read correct rotary key-code, we do not need this. */
226 if (relkey_ret == 0) {
227 unsigned short relcode;
229 /* rotary0 taks lower half, rotary1 taks upper half. */
230 relcode = code & 0xffff;
231 pdata->rotary0_rel_code = (code & 0xffff);
232 __set_bit(relcode, input_dev->relbit);
234 relcode = code >> 16;
235 pdata->rotary1_rel_code = relcode;
236 __set_bit(relcode, input_dev->relbit);
239 for (i = 0; i < 2; i++) {
240 prop = of_get_property(np, rotaryname[i], &proplen);
242 * If the prop is not set, it means keypad does not need
243 * initialize the rotaryX.
248 code = be32_to_cpup(prop);
250 * Not all up/down key code are valid.
251 * Now we depends on direct-rel-code.
253 if ((!(code & 0xffff) || !(code >> 16)) && relkey_ret) {
256 unsigned int n = MAX_MATRIX_KEY_NUM + (i << 1);
257 unsigned short keycode;
259 keycode = code & 0xffff;
260 keypad->keycodes[n] = keycode;
261 __set_bit(keycode, input_dev->keybit);
263 keycode = code >> 16;
264 keypad->keycodes[n + 1] = keycode;
265 __set_bit(keycode, input_dev->keybit);
268 pdata->rotary0_rel_code = -1;
270 pdata->rotary1_rel_code = -1;
273 pdata->enable_rotary0 = 1;
275 pdata->enable_rotary1 = 1;
278 keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
279 keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;
284 static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
286 struct input_dev *input_dev = keypad->input_dev;
287 struct device *dev = input_dev->dev.parent;
288 struct device_node *np = dev->of_node;
289 struct pxa27x_keypad_platform_data *pdata;
292 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
294 dev_err(dev, "failed to allocate memory for pdata\n");
298 error = pxa27x_keypad_matrix_key_parse_dt(keypad, pdata);
300 dev_err(dev, "failed to parse matrix key\n");
304 error = pxa27x_keypad_direct_key_parse_dt(keypad, pdata);
306 dev_err(dev, "failed to parse direct key\n");
310 error = pxa27x_keypad_rotary_parse_dt(keypad, pdata);
312 dev_err(dev, "failed to parse rotary key\n");
316 error = of_property_read_u32(np, "marvell,debounce-interval",
317 &pdata->debounce_interval);
319 dev_err(dev, "failed to parse debounce-interval\n");
324 * The keycodes may not only includes matrix key but also the direct
327 input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);
329 keypad->pdata = pdata;
335 static int pxa27x_keypad_build_keycode_from_dt(struct pxa27x_keypad *keypad)
337 dev_info(keypad->input_dev->dev.parent, "missing platform data\n");
344 static int pxa27x_keypad_build_keycode(struct pxa27x_keypad *keypad)
346 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
347 struct input_dev *input_dev = keypad->input_dev;
348 unsigned short keycode;
352 error = matrix_keypad_build_keymap(pdata->matrix_keymap_data, NULL,
353 pdata->matrix_key_rows,
354 pdata->matrix_key_cols,
355 keypad->keycodes, input_dev);
360 * The keycodes may not only include matrix keys but also the direct
363 input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);
365 /* For direct keys. */
366 for (i = 0; i < pdata->direct_key_num; i++) {
367 keycode = pdata->direct_key_map[i];
368 keypad->keycodes[MAX_MATRIX_KEY_NUM + i] = keycode;
369 __set_bit(keycode, input_dev->keybit);
372 if (pdata->enable_rotary0) {
373 if (pdata->rotary0_up_key && pdata->rotary0_down_key) {
374 keycode = pdata->rotary0_up_key;
375 keypad->keycodes[MAX_MATRIX_KEY_NUM + 0] = keycode;
376 __set_bit(keycode, input_dev->keybit);
378 keycode = pdata->rotary0_down_key;
379 keypad->keycodes[MAX_MATRIX_KEY_NUM + 1] = keycode;
380 __set_bit(keycode, input_dev->keybit);
382 keypad->rotary_rel_code[0] = -1;
384 keypad->rotary_rel_code[0] = pdata->rotary0_rel_code;
385 __set_bit(pdata->rotary0_rel_code, input_dev->relbit);
389 if (pdata->enable_rotary1) {
390 if (pdata->rotary1_up_key && pdata->rotary1_down_key) {
391 keycode = pdata->rotary1_up_key;
392 keypad->keycodes[MAX_MATRIX_KEY_NUM + 2] = keycode;
393 __set_bit(keycode, input_dev->keybit);
395 keycode = pdata->rotary1_down_key;
396 keypad->keycodes[MAX_MATRIX_KEY_NUM + 3] = keycode;
397 __set_bit(keycode, input_dev->keybit);
399 keypad->rotary_rel_code[1] = -1;
401 keypad->rotary_rel_code[1] = pdata->rotary1_rel_code;
402 __set_bit(pdata->rotary1_rel_code, input_dev->relbit);
406 __clear_bit(KEY_RESERVED, input_dev->keybit);
411 static void pxa27x_keypad_scan_matrix(struct pxa27x_keypad *keypad)
413 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
414 struct input_dev *input_dev = keypad->input_dev;
415 int row, col, num_keys_pressed = 0;
416 uint32_t new_state[MAX_MATRIX_KEY_COLS];
417 uint32_t kpas = keypad_readl(KPAS);
419 num_keys_pressed = KPAS_MUKP(kpas);
421 memset(new_state, 0, sizeof(new_state));
423 if (num_keys_pressed == 0)
426 if (num_keys_pressed == 1) {
430 /* if invalid row/col, treat as no key pressed */
431 if (col >= pdata->matrix_key_cols ||
432 row >= pdata->matrix_key_rows)
435 new_state[col] = (1 << row);
439 if (num_keys_pressed > 1) {
440 uint32_t kpasmkp0 = keypad_readl(KPASMKP0);
441 uint32_t kpasmkp1 = keypad_readl(KPASMKP1);
442 uint32_t kpasmkp2 = keypad_readl(KPASMKP2);
443 uint32_t kpasmkp3 = keypad_readl(KPASMKP3);
445 new_state[0] = kpasmkp0 & KPASMKP_MKC_MASK;
446 new_state[1] = (kpasmkp0 >> 16) & KPASMKP_MKC_MASK;
447 new_state[2] = kpasmkp1 & KPASMKP_MKC_MASK;
448 new_state[3] = (kpasmkp1 >> 16) & KPASMKP_MKC_MASK;
449 new_state[4] = kpasmkp2 & KPASMKP_MKC_MASK;
450 new_state[5] = (kpasmkp2 >> 16) & KPASMKP_MKC_MASK;
451 new_state[6] = kpasmkp3 & KPASMKP_MKC_MASK;
452 new_state[7] = (kpasmkp3 >> 16) & KPASMKP_MKC_MASK;
455 for (col = 0; col < pdata->matrix_key_cols; col++) {
456 uint32_t bits_changed;
459 bits_changed = keypad->matrix_key_state[col] ^ new_state[col];
460 if (bits_changed == 0)
463 for (row = 0; row < pdata->matrix_key_rows; row++) {
464 if ((bits_changed & (1 << row)) == 0)
467 code = MATRIX_SCAN_CODE(row, col, keypad->row_shift);
469 input_event(input_dev, EV_MSC, MSC_SCAN, code);
470 input_report_key(input_dev, keypad->keycodes[code],
471 new_state[col] & (1 << row));
474 input_sync(input_dev);
475 memcpy(keypad->matrix_key_state, new_state, sizeof(new_state));
478 #define DEFAULT_KPREC (0x007f007f)
480 static inline int rotary_delta(uint32_t kprec)
482 if (kprec & KPREC_OF0)
483 return (kprec & 0xff) + 0x7f;
484 else if (kprec & KPREC_UF0)
485 return (kprec & 0xff) - 0x7f - 0xff;
487 return (kprec & 0xff) - 0x7f;
490 static void report_rotary_event(struct pxa27x_keypad *keypad, int r, int delta)
492 struct input_dev *dev = keypad->input_dev;
497 if (keypad->rotary_rel_code[r] == -1) {
498 int code = MAX_MATRIX_KEY_NUM + 2 * r + (delta > 0 ? 0 : 1);
499 unsigned char keycode = keypad->keycodes[code];
501 /* simulate a press-n-release */
502 input_event(dev, EV_MSC, MSC_SCAN, code);
503 input_report_key(dev, keycode, 1);
505 input_event(dev, EV_MSC, MSC_SCAN, code);
506 input_report_key(dev, keycode, 0);
509 input_report_rel(dev, keypad->rotary_rel_code[r], delta);
514 static void pxa27x_keypad_scan_rotary(struct pxa27x_keypad *keypad)
516 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
519 /* read and reset to default count value */
520 kprec = keypad_readl(KPREC);
521 keypad_writel(KPREC, DEFAULT_KPREC);
523 if (pdata->enable_rotary0)
524 report_rotary_event(keypad, 0, rotary_delta(kprec));
526 if (pdata->enable_rotary1)
527 report_rotary_event(keypad, 1, rotary_delta(kprec >> 16));
530 static void pxa27x_keypad_scan_direct(struct pxa27x_keypad *keypad)
532 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
533 struct input_dev *input_dev = keypad->input_dev;
534 unsigned int new_state;
535 uint32_t kpdk, bits_changed;
538 kpdk = keypad_readl(KPDK);
540 if (pdata->enable_rotary0 || pdata->enable_rotary1)
541 pxa27x_keypad_scan_rotary(keypad);
544 * The KPDR_DK only output the key pin level, so it relates to board,
545 * and low level may be active.
547 if (pdata->direct_key_low_active)
548 new_state = ~KPDK_DK(kpdk) & keypad->direct_key_mask;
550 new_state = KPDK_DK(kpdk) & keypad->direct_key_mask;
552 bits_changed = keypad->direct_key_state ^ new_state;
554 if (bits_changed == 0)
557 for (i = 0; i < pdata->direct_key_num; i++) {
558 if (bits_changed & (1 << i)) {
559 int code = MAX_MATRIX_KEY_NUM + i;
561 input_event(input_dev, EV_MSC, MSC_SCAN, code);
562 input_report_key(input_dev, keypad->keycodes[code],
563 new_state & (1 << i));
566 input_sync(input_dev);
567 keypad->direct_key_state = new_state;
570 static void clear_wakeup_event(struct pxa27x_keypad *keypad)
572 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
574 if (pdata->clear_wakeup_event)
575 (pdata->clear_wakeup_event)();
578 static irqreturn_t pxa27x_keypad_irq_handler(int irq, void *dev_id)
580 struct pxa27x_keypad *keypad = dev_id;
581 unsigned long kpc = keypad_readl(KPC);
583 clear_wakeup_event(keypad);
586 pxa27x_keypad_scan_direct(keypad);
589 pxa27x_keypad_scan_matrix(keypad);
594 static void pxa27x_keypad_config(struct pxa27x_keypad *keypad)
596 const struct pxa27x_keypad_platform_data *pdata = keypad->pdata;
597 unsigned int mask = 0, direct_key_num = 0;
598 unsigned long kpc = 0;
600 /* clear pending interrupt bit */
603 /* enable matrix keys with automatic scan */
604 if (pdata->matrix_key_rows && pdata->matrix_key_cols) {
605 kpc |= KPC_ASACT | KPC_MIE | KPC_ME | KPC_MS_ALL;
606 kpc |= KPC_MKRN(pdata->matrix_key_rows) |
607 KPC_MKCN(pdata->matrix_key_cols);
610 /* enable rotary key, debounce interval same as direct keys */
611 if (pdata->enable_rotary0) {
617 if (pdata->enable_rotary1) {
623 if (pdata->direct_key_num > direct_key_num)
624 direct_key_num = pdata->direct_key_num;
627 * Direct keys usage may not start from KP_DKIN0, check the platfrom
628 * mask data to config the specific.
630 if (pdata->direct_key_mask)
631 keypad->direct_key_mask = pdata->direct_key_mask;
633 keypad->direct_key_mask = ((1 << direct_key_num) - 1) & ~mask;
635 /* enable direct key */
637 kpc |= KPC_DE | KPC_DIE | KPC_DKN(direct_key_num);
639 keypad_writel(KPC, kpc | KPC_RE_ZERO_DEB);
640 keypad_writel(KPREC, DEFAULT_KPREC);
641 keypad_writel(KPKDI, pdata->debounce_interval);
644 static int pxa27x_keypad_open(struct input_dev *dev)
646 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
648 /* Enable unit clock */
649 clk_prepare_enable(keypad->clk);
650 pxa27x_keypad_config(keypad);
655 static void pxa27x_keypad_close(struct input_dev *dev)
657 struct pxa27x_keypad *keypad = input_get_drvdata(dev);
659 /* Disable clock unit */
660 clk_disable_unprepare(keypad->clk);
663 #ifdef CONFIG_PM_SLEEP
664 static int pxa27x_keypad_suspend(struct device *dev)
666 struct platform_device *pdev = to_platform_device(dev);
667 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
670 * If the keypad is used a wake up source, clock can not be disabled.
671 * Or it can not detect the key pressing.
673 if (device_may_wakeup(&pdev->dev))
674 enable_irq_wake(keypad->irq);
676 clk_disable_unprepare(keypad->clk);
681 static int pxa27x_keypad_resume(struct device *dev)
683 struct platform_device *pdev = to_platform_device(dev);
684 struct pxa27x_keypad *keypad = platform_get_drvdata(pdev);
685 struct input_dev *input_dev = keypad->input_dev;
688 * If the keypad is used as wake up source, the clock is not turned
689 * off. So do not need configure it again.
691 if (device_may_wakeup(&pdev->dev)) {
692 disable_irq_wake(keypad->irq);
694 mutex_lock(&input_dev->mutex);
696 if (input_dev->users) {
697 /* Enable unit clock */
698 clk_prepare_enable(keypad->clk);
699 pxa27x_keypad_config(keypad);
702 mutex_unlock(&input_dev->mutex);
709 static SIMPLE_DEV_PM_OPS(pxa27x_keypad_pm_ops,
710 pxa27x_keypad_suspend, pxa27x_keypad_resume);
713 static int pxa27x_keypad_probe(struct platform_device *pdev)
715 const struct pxa27x_keypad_platform_data *pdata =
716 dev_get_platdata(&pdev->dev);
717 struct device_node *np = pdev->dev.of_node;
718 struct pxa27x_keypad *keypad;
719 struct input_dev *input_dev;
720 struct resource *res;
723 /* Driver need build keycode from device tree or pdata */
727 irq = platform_get_irq(pdev, 0);
729 dev_err(&pdev->dev, "failed to get keypad irq\n");
733 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
735 dev_err(&pdev->dev, "failed to get I/O memory\n");
739 keypad = devm_kzalloc(&pdev->dev, sizeof(*keypad),
744 input_dev = devm_input_allocate_device(&pdev->dev);
748 keypad->pdata = pdata;
749 keypad->input_dev = input_dev;
752 keypad->mmio_base = devm_ioremap_resource(&pdev->dev, res);
753 if (IS_ERR(keypad->mmio_base))
754 return PTR_ERR(keypad->mmio_base);
756 keypad->clk = devm_clk_get(&pdev->dev, NULL);
757 if (IS_ERR(keypad->clk)) {
758 dev_err(&pdev->dev, "failed to get keypad clock\n");
759 return PTR_ERR(keypad->clk);
762 input_dev->name = pdev->name;
763 input_dev->id.bustype = BUS_HOST;
764 input_dev->open = pxa27x_keypad_open;
765 input_dev->close = pxa27x_keypad_close;
766 input_dev->dev.parent = &pdev->dev;
768 input_dev->keycode = keypad->keycodes;
769 input_dev->keycodesize = sizeof(keypad->keycodes[0]);
770 input_dev->keycodemax = ARRAY_SIZE(keypad->keycodes);
772 input_set_drvdata(input_dev, keypad);
774 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
775 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
778 error = pxa27x_keypad_build_keycode(keypad);
780 error = pxa27x_keypad_build_keycode_from_dt(keypad);
782 * Data that we get from DT resides in dynamically
783 * allocated memory so we need to update our pdata
786 pdata = keypad->pdata;
789 dev_err(&pdev->dev, "failed to build keycode\n");
793 keypad->row_shift = get_count_order(pdata->matrix_key_cols);
795 if ((pdata->enable_rotary0 && keypad->rotary_rel_code[0] != -1) ||
796 (pdata->enable_rotary1 && keypad->rotary_rel_code[1] != -1)) {
797 input_dev->evbit[0] |= BIT_MASK(EV_REL);
800 error = devm_request_irq(&pdev->dev, irq, pxa27x_keypad_irq_handler,
801 0, pdev->name, keypad);
803 dev_err(&pdev->dev, "failed to request IRQ\n");
807 /* Register the input device */
808 error = input_register_device(input_dev);
810 dev_err(&pdev->dev, "failed to register input device\n");
814 platform_set_drvdata(pdev, keypad);
815 device_init_wakeup(&pdev->dev, 1);
821 static const struct of_device_id pxa27x_keypad_dt_match[] = {
822 { .compatible = "marvell,pxa27x-keypad" },
825 MODULE_DEVICE_TABLE(of, pxa27x_keypad_dt_match);
828 static struct platform_driver pxa27x_keypad_driver = {
829 .probe = pxa27x_keypad_probe,
831 .name = "pxa27x-keypad",
832 .of_match_table = of_match_ptr(pxa27x_keypad_dt_match),
833 .pm = &pxa27x_keypad_pm_ops,
836 module_platform_driver(pxa27x_keypad_driver);
838 MODULE_DESCRIPTION("PXA27x Keypad Controller Driver");
839 MODULE_LICENSE("GPL");
840 /* work with hotplug and coldplug */
841 MODULE_ALIAS("platform:pxa27x-keypad");