2 * Samsung keypad driver
4 * Copyright (C) 2010 Samsung Electronics Co.Ltd
5 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
6 * Author: Donghwa Lee <dh09.lee@samsung.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/init.h>
18 #include <linux/input.h>
19 #include <linux/interrupt.h>
21 #include <linux/module.h>
22 #include <linux/platform_device.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/slab.h>
27 #include <linux/of_gpio.h>
28 #include <linux/sched.h>
29 #include <linux/input/samsung-keypad.h>
31 #define SAMSUNG_KEYIFCON 0x00
32 #define SAMSUNG_KEYIFSTSCLR 0x04
33 #define SAMSUNG_KEYIFCOL 0x08
34 #define SAMSUNG_KEYIFROW 0x0c
35 #define SAMSUNG_KEYIFFC 0x10
37 /* SAMSUNG_KEYIFCON */
38 #define SAMSUNG_KEYIFCON_INT_F_EN (1 << 0)
39 #define SAMSUNG_KEYIFCON_INT_R_EN (1 << 1)
40 #define SAMSUNG_KEYIFCON_DF_EN (1 << 2)
41 #define SAMSUNG_KEYIFCON_FC_EN (1 << 3)
42 #define SAMSUNG_KEYIFCON_WAKEUPEN (1 << 4)
44 /* SAMSUNG_KEYIFSTSCLR */
45 #define SAMSUNG_KEYIFSTSCLR_P_INT_MASK (0xff << 0)
46 #define SAMSUNG_KEYIFSTSCLR_R_INT_MASK (0xff << 8)
47 #define SAMSUNG_KEYIFSTSCLR_R_INT_OFFSET 8
48 #define S5PV210_KEYIFSTSCLR_P_INT_MASK (0x3fff << 0)
49 #define S5PV210_KEYIFSTSCLR_R_INT_MASK (0x3fff << 16)
50 #define S5PV210_KEYIFSTSCLR_R_INT_OFFSET 16
52 /* SAMSUNG_KEYIFCOL */
53 #define SAMSUNG_KEYIFCOL_MASK (0xff << 0)
54 #define S5PV210_KEYIFCOLEN_MASK (0xff << 8)
56 /* SAMSUNG_KEYIFROW */
57 #define SAMSUNG_KEYIFROW_MASK (0xff << 0)
58 #define S5PV210_KEYIFROW_MASK (0x3fff << 0)
61 #define SAMSUNG_KEYIFFC_MASK (0x3ff << 0)
63 enum samsung_keypad_type
{
68 struct samsung_keypad
{
69 struct input_dev
*input_dev
;
70 struct platform_device
*pdev
;
73 wait_queue_head_t wait
;
77 enum samsung_keypad_type type
;
78 unsigned int row_shift
;
81 unsigned int row_state
[SAMSUNG_MAX_COLS
];
83 int row_gpios
[SAMSUNG_MAX_ROWS
];
84 int col_gpios
[SAMSUNG_MAX_COLS
];
86 unsigned short keycodes
[];
89 static void samsung_keypad_scan(struct samsung_keypad
*keypad
,
90 unsigned int *row_state
)
95 for (col
= 0; col
< keypad
->cols
; col
++) {
96 if (keypad
->type
== KEYPAD_TYPE_S5PV210
) {
97 val
= S5PV210_KEYIFCOLEN_MASK
;
98 val
&= ~(1 << col
) << 8;
100 val
= SAMSUNG_KEYIFCOL_MASK
;
104 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCOL
);
107 val
= readl(keypad
->base
+ SAMSUNG_KEYIFROW
);
108 row_state
[col
] = ~val
& ((1 << keypad
->rows
) - 1);
111 /* KEYIFCOL reg clear */
112 writel(0, keypad
->base
+ SAMSUNG_KEYIFCOL
);
115 static bool samsung_keypad_report(struct samsung_keypad
*keypad
,
116 unsigned int *row_state
)
118 struct input_dev
*input_dev
= keypad
->input_dev
;
119 unsigned int changed
;
120 unsigned int pressed
;
121 unsigned int key_down
= 0;
123 unsigned int col
, row
;
125 for (col
= 0; col
< keypad
->cols
; col
++) {
126 changed
= row_state
[col
] ^ keypad
->row_state
[col
];
127 key_down
|= row_state
[col
];
131 for (row
= 0; row
< keypad
->rows
; row
++) {
132 if (!(changed
& (1 << row
)))
135 pressed
= row_state
[col
] & (1 << row
);
137 dev_dbg(&keypad
->input_dev
->dev
,
138 "key %s, row: %d, col: %d\n",
139 pressed
? "pressed" : "released", row
, col
);
141 val
= MATRIX_SCAN_CODE(row
, col
, keypad
->row_shift
);
143 input_event(input_dev
, EV_MSC
, MSC_SCAN
, val
);
144 input_report_key(input_dev
,
145 keypad
->keycodes
[val
], pressed
);
147 input_sync(keypad
->input_dev
);
150 memcpy(keypad
->row_state
, row_state
, sizeof(keypad
->row_state
));
155 static irqreturn_t
samsung_keypad_irq(int irq
, void *dev_id
)
157 struct samsung_keypad
*keypad
= dev_id
;
158 unsigned int row_state
[SAMSUNG_MAX_COLS
];
162 pm_runtime_get_sync(&keypad
->pdev
->dev
);
165 val
= readl(keypad
->base
+ SAMSUNG_KEYIFSTSCLR
);
166 /* Clear interrupt. */
167 writel(~0x0, keypad
->base
+ SAMSUNG_KEYIFSTSCLR
);
169 samsung_keypad_scan(keypad
, row_state
);
171 key_down
= samsung_keypad_report(keypad
, row_state
);
173 wait_event_timeout(keypad
->wait
, keypad
->stopped
,
174 msecs_to_jiffies(50));
176 } while (key_down
&& !keypad
->stopped
);
178 pm_runtime_put(&keypad
->pdev
->dev
);
183 static void samsung_keypad_start(struct samsung_keypad
*keypad
)
187 pm_runtime_get_sync(&keypad
->pdev
->dev
);
189 /* Tell IRQ thread that it may poll the device. */
190 keypad
->stopped
= false;
192 clk_enable(keypad
->clk
);
194 /* Enable interrupt bits. */
195 val
= readl(keypad
->base
+ SAMSUNG_KEYIFCON
);
196 val
|= SAMSUNG_KEYIFCON_INT_F_EN
| SAMSUNG_KEYIFCON_INT_R_EN
;
197 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCON
);
199 /* KEYIFCOL reg clear. */
200 writel(0, keypad
->base
+ SAMSUNG_KEYIFCOL
);
202 pm_runtime_put(&keypad
->pdev
->dev
);
205 static void samsung_keypad_stop(struct samsung_keypad
*keypad
)
209 pm_runtime_get_sync(&keypad
->pdev
->dev
);
211 /* Signal IRQ thread to stop polling and disable the handler. */
212 keypad
->stopped
= true;
213 wake_up(&keypad
->wait
);
214 disable_irq(keypad
->irq
);
216 /* Clear interrupt. */
217 writel(~0x0, keypad
->base
+ SAMSUNG_KEYIFSTSCLR
);
219 /* Disable interrupt bits. */
220 val
= readl(keypad
->base
+ SAMSUNG_KEYIFCON
);
221 val
&= ~(SAMSUNG_KEYIFCON_INT_F_EN
| SAMSUNG_KEYIFCON_INT_R_EN
);
222 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCON
);
224 clk_disable(keypad
->clk
);
227 * Now that chip should not generate interrupts we can safely
228 * re-enable the handler.
230 enable_irq(keypad
->irq
);
232 pm_runtime_put(&keypad
->pdev
->dev
);
235 static int samsung_keypad_open(struct input_dev
*input_dev
)
237 struct samsung_keypad
*keypad
= input_get_drvdata(input_dev
);
239 samsung_keypad_start(keypad
);
244 static void samsung_keypad_close(struct input_dev
*input_dev
)
246 struct samsung_keypad
*keypad
= input_get_drvdata(input_dev
);
248 samsung_keypad_stop(keypad
);
252 static struct samsung_keypad_platdata
*samsung_keypad_parse_dt(
255 struct samsung_keypad_platdata
*pdata
;
256 struct matrix_keymap_data
*keymap_data
;
257 uint32_t *keymap
, num_rows
= 0, num_cols
= 0;
258 struct device_node
*np
= dev
->of_node
, *key_np
;
259 unsigned int key_count
= 0;
261 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
263 dev_err(dev
, "could not allocate memory for platform data\n");
267 of_property_read_u32(np
, "samsung,keypad-num-rows", &num_rows
);
268 of_property_read_u32(np
, "samsung,keypad-num-columns", &num_cols
);
269 if (!num_rows
|| !num_cols
) {
270 dev_err(dev
, "number of keypad rows/columns not specified\n");
273 pdata
->rows
= num_rows
;
274 pdata
->cols
= num_cols
;
276 keymap_data
= devm_kzalloc(dev
, sizeof(*keymap_data
), GFP_KERNEL
);
278 dev_err(dev
, "could not allocate memory for keymap data\n");
281 pdata
->keymap_data
= keymap_data
;
283 for_each_child_of_node(np
, key_np
)
286 keymap_data
->keymap_size
= key_count
;
287 keymap
= devm_kzalloc(dev
, sizeof(uint32_t) * key_count
, GFP_KERNEL
);
289 dev_err(dev
, "could not allocate memory for keymap\n");
292 keymap_data
->keymap
= keymap
;
294 for_each_child_of_node(np
, key_np
) {
295 u32 row
, col
, key_code
;
296 of_property_read_u32(key_np
, "keypad,row", &row
);
297 of_property_read_u32(key_np
, "keypad,column", &col
);
298 of_property_read_u32(key_np
, "linux,code", &key_code
);
299 *keymap
++ = KEY(row
, col
, key_code
);
302 if (of_get_property(np
, "linux,input-no-autorepeat", NULL
))
303 pdata
->no_autorepeat
= true;
304 if (of_get_property(np
, "linux,input-wakeup", NULL
))
305 pdata
->wakeup
= true;
310 static void samsung_keypad_parse_dt_gpio(struct device
*dev
,
311 struct samsung_keypad
*keypad
)
313 struct device_node
*np
= dev
->of_node
;
314 int gpio
, ret
, row
, col
;
316 for (row
= 0; row
< keypad
->rows
; row
++) {
317 gpio
= of_get_named_gpio(np
, "row-gpios", row
);
318 keypad
->row_gpios
[row
] = gpio
;
319 if (!gpio_is_valid(gpio
)) {
320 dev_err(dev
, "keypad row[%d]: invalid gpio %d\n",
325 ret
= gpio_request(gpio
, "keypad-row");
327 dev_err(dev
, "keypad row[%d] gpio request failed\n",
331 for (col
= 0; col
< keypad
->cols
; col
++) {
332 gpio
= of_get_named_gpio(np
, "col-gpios", col
);
333 keypad
->col_gpios
[col
] = gpio
;
334 if (!gpio_is_valid(gpio
)) {
335 dev_err(dev
, "keypad column[%d]: invalid gpio %d\n",
340 ret
= gpio_request(gpio
, "keypad-col");
342 dev_err(dev
, "keypad column[%d] gpio request failed\n",
347 static void samsung_keypad_dt_gpio_free(struct samsung_keypad
*keypad
)
351 for (cnt
= 0; cnt
< keypad
->rows
; cnt
++)
352 if (gpio_is_valid(keypad
->row_gpios
[cnt
]))
353 gpio_free(keypad
->row_gpios
[cnt
]);
355 for (cnt
= 0; cnt
< keypad
->cols
; cnt
++)
356 if (gpio_is_valid(keypad
->col_gpios
[cnt
]))
357 gpio_free(keypad
->col_gpios
[cnt
]);
361 struct samsung_keypad_platdata
*samsung_keypad_parse_dt(struct device
*dev
)
366 static void samsung_keypad_dt_gpio_free(struct samsung_keypad
*keypad
)
371 static int __devinit
samsung_keypad_probe(struct platform_device
*pdev
)
373 const struct samsung_keypad_platdata
*pdata
;
374 const struct matrix_keymap_data
*keymap_data
;
375 struct samsung_keypad
*keypad
;
376 struct resource
*res
;
377 struct input_dev
*input_dev
;
378 unsigned int row_shift
;
379 unsigned int keymap_size
;
382 if (pdev
->dev
.of_node
)
383 pdata
= samsung_keypad_parse_dt(&pdev
->dev
);
385 pdata
= pdev
->dev
.platform_data
;
387 dev_err(&pdev
->dev
, "no platform data defined\n");
391 keymap_data
= pdata
->keymap_data
;
393 dev_err(&pdev
->dev
, "no keymap data defined\n");
397 if (!pdata
->rows
|| pdata
->rows
> SAMSUNG_MAX_ROWS
)
400 if (!pdata
->cols
|| pdata
->cols
> SAMSUNG_MAX_COLS
)
403 /* initialize the gpio */
405 pdata
->cfg_gpio(pdata
->rows
, pdata
->cols
);
407 row_shift
= get_count_order(pdata
->cols
);
408 keymap_size
= (pdata
->rows
<< row_shift
) * sizeof(keypad
->keycodes
[0]);
410 keypad
= kzalloc(sizeof(*keypad
) + keymap_size
, GFP_KERNEL
);
411 input_dev
= input_allocate_device();
412 if (!keypad
|| !input_dev
) {
417 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
423 keypad
->base
= ioremap(res
->start
, resource_size(res
));
429 keypad
->clk
= clk_get(&pdev
->dev
, "keypad");
430 if (IS_ERR(keypad
->clk
)) {
431 dev_err(&pdev
->dev
, "failed to get keypad clk\n");
432 error
= PTR_ERR(keypad
->clk
);
436 keypad
->input_dev
= input_dev
;
438 keypad
->row_shift
= row_shift
;
439 keypad
->rows
= pdata
->rows
;
440 keypad
->cols
= pdata
->cols
;
441 keypad
->stopped
= true;
442 init_waitqueue_head(&keypad
->wait
);
444 if (pdev
->dev
.of_node
) {
446 samsung_keypad_parse_dt_gpio(&pdev
->dev
, keypad
);
447 keypad
->type
= of_device_is_compatible(pdev
->dev
.of_node
,
448 "samsung,s5pv210-keypad");
451 keypad
->type
= platform_get_device_id(pdev
)->driver_data
;
454 input_dev
->name
= pdev
->name
;
455 input_dev
->id
.bustype
= BUS_HOST
;
456 input_dev
->dev
.parent
= &pdev
->dev
;
457 input_set_drvdata(input_dev
, keypad
);
459 input_dev
->open
= samsung_keypad_open
;
460 input_dev
->close
= samsung_keypad_close
;
462 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
);
463 if (!pdata
->no_autorepeat
)
464 input_dev
->evbit
[0] |= BIT_MASK(EV_REP
);
466 input_set_capability(input_dev
, EV_MSC
, MSC_SCAN
);
468 input_dev
->keycode
= keypad
->keycodes
;
469 input_dev
->keycodesize
= sizeof(keypad
->keycodes
[0]);
470 input_dev
->keycodemax
= pdata
->rows
<< row_shift
;
472 matrix_keypad_build_keymap(keymap_data
, row_shift
,
473 input_dev
->keycode
, input_dev
->keybit
);
475 keypad
->irq
= platform_get_irq(pdev
, 0);
476 if (keypad
->irq
< 0) {
481 error
= request_threaded_irq(keypad
->irq
, NULL
, samsung_keypad_irq
,
482 IRQF_ONESHOT
, dev_name(&pdev
->dev
), keypad
);
484 dev_err(&pdev
->dev
, "failed to register keypad interrupt\n");
488 device_init_wakeup(&pdev
->dev
, pdata
->wakeup
);
489 platform_set_drvdata(pdev
, keypad
);
490 pm_runtime_enable(&pdev
->dev
);
492 error
= input_register_device(keypad
->input_dev
);
496 if (pdev
->dev
.of_node
) {
497 devm_kfree(&pdev
->dev
, (void *)pdata
->keymap_data
->keymap
);
498 devm_kfree(&pdev
->dev
, (void *)pdata
->keymap_data
);
499 devm_kfree(&pdev
->dev
, (void *)pdata
);
504 free_irq(keypad
->irq
, keypad
);
505 pm_runtime_disable(&pdev
->dev
);
506 device_init_wakeup(&pdev
->dev
, 0);
507 platform_set_drvdata(pdev
, NULL
);
509 clk_put(keypad
->clk
);
510 samsung_keypad_dt_gpio_free(keypad
);
512 iounmap(keypad
->base
);
514 input_free_device(input_dev
);
520 static int __devexit
samsung_keypad_remove(struct platform_device
*pdev
)
522 struct samsung_keypad
*keypad
= platform_get_drvdata(pdev
);
524 pm_runtime_disable(&pdev
->dev
);
525 device_init_wakeup(&pdev
->dev
, 0);
526 platform_set_drvdata(pdev
, NULL
);
528 input_unregister_device(keypad
->input_dev
);
531 * It is safe to free IRQ after unregistering device because
532 * samsung_keypad_close will shut off interrupts.
534 free_irq(keypad
->irq
, keypad
);
536 clk_put(keypad
->clk
);
537 samsung_keypad_dt_gpio_free(keypad
);
539 iounmap(keypad
->base
);
545 #ifdef CONFIG_PM_RUNTIME
546 static int samsung_keypad_runtime_suspend(struct device
*dev
)
548 struct platform_device
*pdev
= to_platform_device(dev
);
549 struct samsung_keypad
*keypad
= platform_get_drvdata(pdev
);
556 /* This may fail on some SoCs due to lack of controller support */
557 error
= enable_irq_wake(keypad
->irq
);
559 keypad
->wake_enabled
= true;
561 val
= readl(keypad
->base
+ SAMSUNG_KEYIFCON
);
562 val
|= SAMSUNG_KEYIFCON_WAKEUPEN
;
563 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCON
);
565 clk_disable(keypad
->clk
);
570 static int samsung_keypad_runtime_resume(struct device
*dev
)
572 struct platform_device
*pdev
= to_platform_device(dev
);
573 struct samsung_keypad
*keypad
= platform_get_drvdata(pdev
);
579 clk_enable(keypad
->clk
);
581 val
= readl(keypad
->base
+ SAMSUNG_KEYIFCON
);
582 val
&= ~SAMSUNG_KEYIFCON_WAKEUPEN
;
583 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCON
);
585 if (keypad
->wake_enabled
)
586 disable_irq_wake(keypad
->irq
);
592 #ifdef CONFIG_PM_SLEEP
593 static void samsung_keypad_toggle_wakeup(struct samsung_keypad
*keypad
,
598 clk_enable(keypad
->clk
);
600 val
= readl(keypad
->base
+ SAMSUNG_KEYIFCON
);
602 val
|= SAMSUNG_KEYIFCON_WAKEUPEN
;
603 if (device_may_wakeup(&keypad
->pdev
->dev
))
604 enable_irq_wake(keypad
->irq
);
606 val
&= ~SAMSUNG_KEYIFCON_WAKEUPEN
;
607 if (device_may_wakeup(&keypad
->pdev
->dev
))
608 disable_irq_wake(keypad
->irq
);
610 writel(val
, keypad
->base
+ SAMSUNG_KEYIFCON
);
612 clk_disable(keypad
->clk
);
615 static int samsung_keypad_suspend(struct device
*dev
)
617 struct platform_device
*pdev
= to_platform_device(dev
);
618 struct samsung_keypad
*keypad
= platform_get_drvdata(pdev
);
619 struct input_dev
*input_dev
= keypad
->input_dev
;
621 mutex_lock(&input_dev
->mutex
);
623 if (input_dev
->users
)
624 samsung_keypad_stop(keypad
);
626 samsung_keypad_toggle_wakeup(keypad
, true);
628 mutex_unlock(&input_dev
->mutex
);
633 static int samsung_keypad_resume(struct device
*dev
)
635 struct platform_device
*pdev
= to_platform_device(dev
);
636 struct samsung_keypad
*keypad
= platform_get_drvdata(pdev
);
637 struct input_dev
*input_dev
= keypad
->input_dev
;
639 mutex_lock(&input_dev
->mutex
);
641 samsung_keypad_toggle_wakeup(keypad
, false);
643 if (input_dev
->users
)
644 samsung_keypad_start(keypad
);
646 mutex_unlock(&input_dev
->mutex
);
652 static const struct dev_pm_ops samsung_keypad_pm_ops
= {
653 SET_SYSTEM_SLEEP_PM_OPS(samsung_keypad_suspend
, samsung_keypad_resume
)
654 SET_RUNTIME_PM_OPS(samsung_keypad_runtime_suspend
,
655 samsung_keypad_runtime_resume
, NULL
)
659 static const struct of_device_id samsung_keypad_dt_match
[] = {
660 { .compatible
= "samsung,s3c6410-keypad" },
661 { .compatible
= "samsung,s5pv210-keypad" },
664 MODULE_DEVICE_TABLE(of
, samsung_keypad_dt_match
);
666 #define samsung_keypad_dt_match NULL
669 static struct platform_device_id samsung_keypad_driver_ids
[] = {
671 .name
= "samsung-keypad",
672 .driver_data
= KEYPAD_TYPE_SAMSUNG
,
674 .name
= "s5pv210-keypad",
675 .driver_data
= KEYPAD_TYPE_S5PV210
,
679 MODULE_DEVICE_TABLE(platform
, samsung_keypad_driver_ids
);
681 static struct platform_driver samsung_keypad_driver
= {
682 .probe
= samsung_keypad_probe
,
683 .remove
= __devexit_p(samsung_keypad_remove
),
685 .name
= "samsung-keypad",
686 .owner
= THIS_MODULE
,
687 .of_match_table
= samsung_keypad_dt_match
,
688 .pm
= &samsung_keypad_pm_ops
,
690 .id_table
= samsung_keypad_driver_ids
,
692 module_platform_driver(samsung_keypad_driver
);
694 MODULE_DESCRIPTION("Samsung keypad driver");
695 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
696 MODULE_AUTHOR("Donghwa Lee <dh09.lee@samsung.com>");
697 MODULE_LICENSE("GPL");