Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Samsung keypad driver
4 *
5 * Copyright (C) 2010 Samsung Electronics Co.Ltd
6 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
7 * Author: Donghwa Lee <dh09.lee@samsung.com>
8 */
9
10#include <linux/clk.h>
11#include <linux/delay.h>
12#include <linux/err.h>
13#include <linux/input.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
16#include <linux/module.h>
17#include <linux/platform_device.h>
18#include <linux/pm.h>
19#include <linux/pm_runtime.h>
20#include <linux/slab.h>
21#include <linux/of.h>
22#include <linux/sched.h>
23#include <linux/input/samsung-keypad.h>
24
25#define SAMSUNG_KEYIFCON 0x00
26#define SAMSUNG_KEYIFSTSCLR 0x04
27#define SAMSUNG_KEYIFCOL 0x08
28#define SAMSUNG_KEYIFROW 0x0c
29#define SAMSUNG_KEYIFFC 0x10
30
31/* SAMSUNG_KEYIFCON */
32#define SAMSUNG_KEYIFCON_INT_F_EN (1 << 0)
33#define SAMSUNG_KEYIFCON_INT_R_EN (1 << 1)
34#define SAMSUNG_KEYIFCON_DF_EN (1 << 2)
35#define SAMSUNG_KEYIFCON_FC_EN (1 << 3)
36#define SAMSUNG_KEYIFCON_WAKEUPEN (1 << 4)
37
38/* SAMSUNG_KEYIFSTSCLR */
39#define SAMSUNG_KEYIFSTSCLR_P_INT_MASK (0xff << 0)
40#define SAMSUNG_KEYIFSTSCLR_R_INT_MASK (0xff << 8)
41#define SAMSUNG_KEYIFSTSCLR_R_INT_OFFSET 8
42#define S5PV210_KEYIFSTSCLR_P_INT_MASK (0x3fff << 0)
43#define S5PV210_KEYIFSTSCLR_R_INT_MASK (0x3fff << 16)
44#define S5PV210_KEYIFSTSCLR_R_INT_OFFSET 16
45
46/* SAMSUNG_KEYIFCOL */
47#define SAMSUNG_KEYIFCOL_MASK (0xff << 0)
48#define S5PV210_KEYIFCOLEN_MASK (0xff << 8)
49
50/* SAMSUNG_KEYIFROW */
51#define SAMSUNG_KEYIFROW_MASK (0xff << 0)
52#define S5PV210_KEYIFROW_MASK (0x3fff << 0)
53
54/* SAMSUNG_KEYIFFC */
55#define SAMSUNG_KEYIFFC_MASK (0x3ff << 0)
56
57enum samsung_keypad_type {
58 KEYPAD_TYPE_SAMSUNG,
59 KEYPAD_TYPE_S5PV210,
60};
61
62struct samsung_keypad {
63 struct input_dev *input_dev;
64 struct platform_device *pdev;
65 struct clk *clk;
66 void __iomem *base;
67 wait_queue_head_t wait;
68 bool stopped;
69 bool wake_enabled;
70 int irq;
71 enum samsung_keypad_type type;
72 unsigned int row_shift;
73 unsigned int rows;
74 unsigned int cols;
75 unsigned int row_state[SAMSUNG_MAX_COLS];
76 unsigned short keycodes[];
77};
78
79static void samsung_keypad_scan(struct samsung_keypad *keypad,
80 unsigned int *row_state)
81{
82 unsigned int col;
83 unsigned int val;
84
85 for (col = 0; col < keypad->cols; col++) {
86 if (keypad->type == KEYPAD_TYPE_S5PV210) {
87 val = S5PV210_KEYIFCOLEN_MASK;
88 val &= ~(1 << col) << 8;
89 } else {
90 val = SAMSUNG_KEYIFCOL_MASK;
91 val &= ~(1 << col);
92 }
93
94 writel(val, keypad->base + SAMSUNG_KEYIFCOL);
95 mdelay(1);
96
97 val = readl(keypad->base + SAMSUNG_KEYIFROW);
98 row_state[col] = ~val & ((1 << keypad->rows) - 1);
99 }
100
101 /* KEYIFCOL reg clear */
102 writel(0, keypad->base + SAMSUNG_KEYIFCOL);
103}
104
105static bool samsung_keypad_report(struct samsung_keypad *keypad,
106 unsigned int *row_state)
107{
108 struct input_dev *input_dev = keypad->input_dev;
109 unsigned int changed;
110 unsigned int pressed;
111 unsigned int key_down = 0;
112 unsigned int val;
113 unsigned int col, row;
114
115 for (col = 0; col < keypad->cols; col++) {
116 changed = row_state[col] ^ keypad->row_state[col];
117 key_down |= row_state[col];
118 if (!changed)
119 continue;
120
121 for (row = 0; row < keypad->rows; row++) {
122 if (!(changed & (1 << row)))
123 continue;
124
125 pressed = row_state[col] & (1 << row);
126
127 dev_dbg(&keypad->input_dev->dev,
128 "key %s, row: %d, col: %d\n",
129 pressed ? "pressed" : "released", row, col);
130
131 val = MATRIX_SCAN_CODE(row, col, keypad->row_shift);
132
133 input_event(input_dev, EV_MSC, MSC_SCAN, val);
134 input_report_key(input_dev,
135 keypad->keycodes[val], pressed);
136 }
137 input_sync(keypad->input_dev);
138 }
139
140 memcpy(keypad->row_state, row_state, sizeof(keypad->row_state));
141
142 return key_down;
143}
144
145static irqreturn_t samsung_keypad_irq(int irq, void *dev_id)
146{
147 struct samsung_keypad *keypad = dev_id;
148 unsigned int row_state[SAMSUNG_MAX_COLS];
149 bool key_down;
150
151 pm_runtime_get_sync(&keypad->pdev->dev);
152
153 do {
154 readl(keypad->base + SAMSUNG_KEYIFSTSCLR);
155 /* Clear interrupt. */
156 writel(~0x0, keypad->base + SAMSUNG_KEYIFSTSCLR);
157
158 samsung_keypad_scan(keypad, row_state);
159
160 key_down = samsung_keypad_report(keypad, row_state);
161 if (key_down)
162 wait_event_timeout(keypad->wait, keypad->stopped,
163 msecs_to_jiffies(50));
164
165 } while (key_down && !keypad->stopped);
166
167 pm_runtime_put(&keypad->pdev->dev);
168
169 return IRQ_HANDLED;
170}
171
172static void samsung_keypad_start(struct samsung_keypad *keypad)
173{
174 unsigned int val;
175
176 pm_runtime_get_sync(&keypad->pdev->dev);
177
178 /* Tell IRQ thread that it may poll the device. */
179 keypad->stopped = false;
180
181 clk_enable(keypad->clk);
182
183 /* Enable interrupt bits. */
184 val = readl(keypad->base + SAMSUNG_KEYIFCON);
185 val |= SAMSUNG_KEYIFCON_INT_F_EN | SAMSUNG_KEYIFCON_INT_R_EN;
186 writel(val, keypad->base + SAMSUNG_KEYIFCON);
187
188 /* KEYIFCOL reg clear. */
189 writel(0, keypad->base + SAMSUNG_KEYIFCOL);
190
191 pm_runtime_put(&keypad->pdev->dev);
192}
193
194static void samsung_keypad_stop(struct samsung_keypad *keypad)
195{
196 unsigned int val;
197
198 pm_runtime_get_sync(&keypad->pdev->dev);
199
200 /* Signal IRQ thread to stop polling and disable the handler. */
201 keypad->stopped = true;
202 wake_up(&keypad->wait);
203 disable_irq(keypad->irq);
204
205 /* Clear interrupt. */
206 writel(~0x0, keypad->base + SAMSUNG_KEYIFSTSCLR);
207
208 /* Disable interrupt bits. */
209 val = readl(keypad->base + SAMSUNG_KEYIFCON);
210 val &= ~(SAMSUNG_KEYIFCON_INT_F_EN | SAMSUNG_KEYIFCON_INT_R_EN);
211 writel(val, keypad->base + SAMSUNG_KEYIFCON);
212
213 clk_disable(keypad->clk);
214
215 /*
216 * Now that chip should not generate interrupts we can safely
217 * re-enable the handler.
218 */
219 enable_irq(keypad->irq);
220
221 pm_runtime_put(&keypad->pdev->dev);
222}
223
224static int samsung_keypad_open(struct input_dev *input_dev)
225{
226 struct samsung_keypad *keypad = input_get_drvdata(input_dev);
227
228 samsung_keypad_start(keypad);
229
230 return 0;
231}
232
233static void samsung_keypad_close(struct input_dev *input_dev)
234{
235 struct samsung_keypad *keypad = input_get_drvdata(input_dev);
236
237 samsung_keypad_stop(keypad);
238}
239
240#ifdef CONFIG_OF
241static struct samsung_keypad_platdata *
242samsung_keypad_parse_dt(struct device *dev)
243{
244 struct samsung_keypad_platdata *pdata;
245 struct matrix_keymap_data *keymap_data;
246 uint32_t *keymap, num_rows = 0, num_cols = 0;
247 struct device_node *np = dev->of_node, *key_np;
248 unsigned int key_count;
249
250 if (!np) {
251 dev_err(dev, "missing device tree data\n");
252 return ERR_PTR(-EINVAL);
253 }
254
255 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
256 if (!pdata) {
257 dev_err(dev, "could not allocate memory for platform data\n");
258 return ERR_PTR(-ENOMEM);
259 }
260
261 of_property_read_u32(np, "samsung,keypad-num-rows", &num_rows);
262 of_property_read_u32(np, "samsung,keypad-num-columns", &num_cols);
263 if (!num_rows || !num_cols) {
264 dev_err(dev, "number of keypad rows/columns not specified\n");
265 return ERR_PTR(-EINVAL);
266 }
267 pdata->rows = num_rows;
268 pdata->cols = num_cols;
269
270 keymap_data = devm_kzalloc(dev, sizeof(*keymap_data), GFP_KERNEL);
271 if (!keymap_data) {
272 dev_err(dev, "could not allocate memory for keymap data\n");
273 return ERR_PTR(-ENOMEM);
274 }
275 pdata->keymap_data = keymap_data;
276
277 key_count = of_get_child_count(np);
278 keymap_data->keymap_size = key_count;
279 keymap = devm_kcalloc(dev, key_count, sizeof(uint32_t), GFP_KERNEL);
280 if (!keymap) {
281 dev_err(dev, "could not allocate memory for keymap\n");
282 return ERR_PTR(-ENOMEM);
283 }
284 keymap_data->keymap = keymap;
285
286 for_each_child_of_node(np, key_np) {
287 u32 row, col, key_code;
288 of_property_read_u32(key_np, "keypad,row", &row);
289 of_property_read_u32(key_np, "keypad,column", &col);
290 of_property_read_u32(key_np, "linux,code", &key_code);
291 *keymap++ = KEY(row, col, key_code);
292 }
293
294 if (of_get_property(np, "linux,input-no-autorepeat", NULL))
295 pdata->no_autorepeat = true;
296
297 pdata->wakeup = of_property_read_bool(np, "wakeup-source") ||
298 /* legacy name */
299 of_property_read_bool(np, "linux,input-wakeup");
300
301
302 return pdata;
303}
304#else
305static struct samsung_keypad_platdata *
306samsung_keypad_parse_dt(struct device *dev)
307{
308 dev_err(dev, "no platform data defined\n");
309
310 return ERR_PTR(-EINVAL);
311}
312#endif
313
314static int samsung_keypad_probe(struct platform_device *pdev)
315{
316 const struct samsung_keypad_platdata *pdata;
317 const struct matrix_keymap_data *keymap_data;
318 struct samsung_keypad *keypad;
319 struct resource *res;
320 struct input_dev *input_dev;
321 unsigned int row_shift;
322 unsigned int keymap_size;
323 int error;
324
325 pdata = dev_get_platdata(&pdev->dev);
326 if (!pdata) {
327 pdata = samsung_keypad_parse_dt(&pdev->dev);
328 if (IS_ERR(pdata))
329 return PTR_ERR(pdata);
330 }
331
332 keymap_data = pdata->keymap_data;
333 if (!keymap_data) {
334 dev_err(&pdev->dev, "no keymap data defined\n");
335 return -EINVAL;
336 }
337
338 if (!pdata->rows || pdata->rows > SAMSUNG_MAX_ROWS)
339 return -EINVAL;
340
341 if (!pdata->cols || pdata->cols > SAMSUNG_MAX_COLS)
342 return -EINVAL;
343
344 /* initialize the gpio */
345 if (pdata->cfg_gpio)
346 pdata->cfg_gpio(pdata->rows, pdata->cols);
347
348 row_shift = get_count_order(pdata->cols);
349 keymap_size = (pdata->rows << row_shift) * sizeof(keypad->keycodes[0]);
350
351 keypad = devm_kzalloc(&pdev->dev, sizeof(*keypad) + keymap_size,
352 GFP_KERNEL);
353 input_dev = devm_input_allocate_device(&pdev->dev);
354 if (!keypad || !input_dev)
355 return -ENOMEM;
356
357 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
358 if (!res)
359 return -ENODEV;
360
361 keypad->base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
362 if (!keypad->base)
363 return -EBUSY;
364
365 keypad->clk = devm_clk_get(&pdev->dev, "keypad");
366 if (IS_ERR(keypad->clk)) {
367 dev_err(&pdev->dev, "failed to get keypad clk\n");
368 return PTR_ERR(keypad->clk);
369 }
370
371 error = clk_prepare(keypad->clk);
372 if (error) {
373 dev_err(&pdev->dev, "keypad clock prepare failed\n");
374 return error;
375 }
376
377 keypad->input_dev = input_dev;
378 keypad->pdev = pdev;
379 keypad->row_shift = row_shift;
380 keypad->rows = pdata->rows;
381 keypad->cols = pdata->cols;
382 keypad->stopped = true;
383 init_waitqueue_head(&keypad->wait);
384
385 if (pdev->dev.of_node)
386 keypad->type = of_device_is_compatible(pdev->dev.of_node,
387 "samsung,s5pv210-keypad");
388 else
389 keypad->type = platform_get_device_id(pdev)->driver_data;
390
391 input_dev->name = pdev->name;
392 input_dev->id.bustype = BUS_HOST;
393 input_dev->dev.parent = &pdev->dev;
394
395 input_dev->open = samsung_keypad_open;
396 input_dev->close = samsung_keypad_close;
397
398 error = matrix_keypad_build_keymap(keymap_data, NULL,
399 pdata->rows, pdata->cols,
400 keypad->keycodes, input_dev);
401 if (error) {
402 dev_err(&pdev->dev, "failed to build keymap\n");
403 goto err_unprepare_clk;
404 }
405
406 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
407 if (!pdata->no_autorepeat)
408 __set_bit(EV_REP, input_dev->evbit);
409
410 input_set_drvdata(input_dev, keypad);
411
412 keypad->irq = platform_get_irq(pdev, 0);
413 if (keypad->irq < 0) {
414 error = keypad->irq;
415 goto err_unprepare_clk;
416 }
417
418 error = devm_request_threaded_irq(&pdev->dev, keypad->irq, NULL,
419 samsung_keypad_irq, IRQF_ONESHOT,
420 dev_name(&pdev->dev), keypad);
421 if (error) {
422 dev_err(&pdev->dev, "failed to register keypad interrupt\n");
423 goto err_unprepare_clk;
424 }
425
426 device_init_wakeup(&pdev->dev, pdata->wakeup);
427 platform_set_drvdata(pdev, keypad);
428 pm_runtime_enable(&pdev->dev);
429
430 error = input_register_device(keypad->input_dev);
431 if (error)
432 goto err_disable_runtime_pm;
433
434 if (pdev->dev.of_node) {
435 devm_kfree(&pdev->dev, (void *)pdata->keymap_data->keymap);
436 devm_kfree(&pdev->dev, (void *)pdata->keymap_data);
437 devm_kfree(&pdev->dev, (void *)pdata);
438 }
439 return 0;
440
441err_disable_runtime_pm:
442 pm_runtime_disable(&pdev->dev);
443err_unprepare_clk:
444 clk_unprepare(keypad->clk);
445 return error;
446}
447
448static int samsung_keypad_remove(struct platform_device *pdev)
449{
450 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
451
452 pm_runtime_disable(&pdev->dev);
453
454 input_unregister_device(keypad->input_dev);
455
456 clk_unprepare(keypad->clk);
457
458 return 0;
459}
460
461#ifdef CONFIG_PM
462static int samsung_keypad_runtime_suspend(struct device *dev)
463{
464 struct platform_device *pdev = to_platform_device(dev);
465 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
466 unsigned int val;
467 int error;
468
469 if (keypad->stopped)
470 return 0;
471
472 /* This may fail on some SoCs due to lack of controller support */
473 error = enable_irq_wake(keypad->irq);
474 if (!error)
475 keypad->wake_enabled = true;
476
477 val = readl(keypad->base + SAMSUNG_KEYIFCON);
478 val |= SAMSUNG_KEYIFCON_WAKEUPEN;
479 writel(val, keypad->base + SAMSUNG_KEYIFCON);
480
481 clk_disable(keypad->clk);
482
483 return 0;
484}
485
486static int samsung_keypad_runtime_resume(struct device *dev)
487{
488 struct platform_device *pdev = to_platform_device(dev);
489 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
490 unsigned int val;
491
492 if (keypad->stopped)
493 return 0;
494
495 clk_enable(keypad->clk);
496
497 val = readl(keypad->base + SAMSUNG_KEYIFCON);
498 val &= ~SAMSUNG_KEYIFCON_WAKEUPEN;
499 writel(val, keypad->base + SAMSUNG_KEYIFCON);
500
501 if (keypad->wake_enabled)
502 disable_irq_wake(keypad->irq);
503
504 return 0;
505}
506#endif
507
508#ifdef CONFIG_PM_SLEEP
509static void samsung_keypad_toggle_wakeup(struct samsung_keypad *keypad,
510 bool enable)
511{
512 unsigned int val;
513
514 clk_enable(keypad->clk);
515
516 val = readl(keypad->base + SAMSUNG_KEYIFCON);
517 if (enable) {
518 val |= SAMSUNG_KEYIFCON_WAKEUPEN;
519 if (device_may_wakeup(&keypad->pdev->dev))
520 enable_irq_wake(keypad->irq);
521 } else {
522 val &= ~SAMSUNG_KEYIFCON_WAKEUPEN;
523 if (device_may_wakeup(&keypad->pdev->dev))
524 disable_irq_wake(keypad->irq);
525 }
526 writel(val, keypad->base + SAMSUNG_KEYIFCON);
527
528 clk_disable(keypad->clk);
529}
530
531static int samsung_keypad_suspend(struct device *dev)
532{
533 struct platform_device *pdev = to_platform_device(dev);
534 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
535 struct input_dev *input_dev = keypad->input_dev;
536
537 mutex_lock(&input_dev->mutex);
538
539 if (input_device_enabled(input_dev))
540 samsung_keypad_stop(keypad);
541
542 samsung_keypad_toggle_wakeup(keypad, true);
543
544 mutex_unlock(&input_dev->mutex);
545
546 return 0;
547}
548
549static int samsung_keypad_resume(struct device *dev)
550{
551 struct platform_device *pdev = to_platform_device(dev);
552 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
553 struct input_dev *input_dev = keypad->input_dev;
554
555 mutex_lock(&input_dev->mutex);
556
557 samsung_keypad_toggle_wakeup(keypad, false);
558
559 if (input_device_enabled(input_dev))
560 samsung_keypad_start(keypad);
561
562 mutex_unlock(&input_dev->mutex);
563
564 return 0;
565}
566#endif
567
568static const struct dev_pm_ops samsung_keypad_pm_ops = {
569 SET_SYSTEM_SLEEP_PM_OPS(samsung_keypad_suspend, samsung_keypad_resume)
570 SET_RUNTIME_PM_OPS(samsung_keypad_runtime_suspend,
571 samsung_keypad_runtime_resume, NULL)
572};
573
574#ifdef CONFIG_OF
575static const struct of_device_id samsung_keypad_dt_match[] = {
576 { .compatible = "samsung,s3c6410-keypad" },
577 { .compatible = "samsung,s5pv210-keypad" },
578 {},
579};
580MODULE_DEVICE_TABLE(of, samsung_keypad_dt_match);
581#endif
582
583static const struct platform_device_id samsung_keypad_driver_ids[] = {
584 {
585 .name = "samsung-keypad",
586 .driver_data = KEYPAD_TYPE_SAMSUNG,
587 }, {
588 .name = "s5pv210-keypad",
589 .driver_data = KEYPAD_TYPE_S5PV210,
590 },
591 { },
592};
593MODULE_DEVICE_TABLE(platform, samsung_keypad_driver_ids);
594
595static struct platform_driver samsung_keypad_driver = {
596 .probe = samsung_keypad_probe,
597 .remove = samsung_keypad_remove,
598 .driver = {
599 .name = "samsung-keypad",
600 .of_match_table = of_match_ptr(samsung_keypad_dt_match),
601 .pm = &samsung_keypad_pm_ops,
602 },
603 .id_table = samsung_keypad_driver_ids,
604};
605module_platform_driver(samsung_keypad_driver);
606
607MODULE_DESCRIPTION("Samsung keypad driver");
608MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
609MODULE_AUTHOR("Donghwa Lee <dh09.lee@samsung.com>");
610MODULE_LICENSE("GPL");
1/*
2 * Samsung keypad driver
3 *
4 * Copyright (C) 2010 Samsung Electronics Co.Ltd
5 * Author: Joonyoung Shim <jy0922.shim@samsung.com>
6 * Author: Donghwa Lee <dh09.lee@samsung.com>
7 *
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.
12 */
13
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>
20#include <linux/io.h>
21#include <linux/module.h>
22#include <linux/platform_device.h>
23#include <linux/pm.h>
24#include <linux/pm_runtime.h>
25#include <linux/slab.h>
26#include <linux/of.h>
27#include <linux/of_gpio.h>
28#include <linux/sched.h>
29#include <linux/input/samsung-keypad.h>
30
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
36
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)
43
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
51
52/* SAMSUNG_KEYIFCOL */
53#define SAMSUNG_KEYIFCOL_MASK (0xff << 0)
54#define S5PV210_KEYIFCOLEN_MASK (0xff << 8)
55
56/* SAMSUNG_KEYIFROW */
57#define SAMSUNG_KEYIFROW_MASK (0xff << 0)
58#define S5PV210_KEYIFROW_MASK (0x3fff << 0)
59
60/* SAMSUNG_KEYIFFC */
61#define SAMSUNG_KEYIFFC_MASK (0x3ff << 0)
62
63enum samsung_keypad_type {
64 KEYPAD_TYPE_SAMSUNG,
65 KEYPAD_TYPE_S5PV210,
66};
67
68struct samsung_keypad {
69 struct input_dev *input_dev;
70 struct platform_device *pdev;
71 struct clk *clk;
72 void __iomem *base;
73 wait_queue_head_t wait;
74 bool stopped;
75 bool wake_enabled;
76 int irq;
77 enum samsung_keypad_type type;
78 unsigned int row_shift;
79 unsigned int rows;
80 unsigned int cols;
81 unsigned int row_state[SAMSUNG_MAX_COLS];
82#ifdef CONFIG_OF
83 int row_gpios[SAMSUNG_MAX_ROWS];
84 int col_gpios[SAMSUNG_MAX_COLS];
85#endif
86 unsigned short keycodes[];
87};
88
89static void samsung_keypad_scan(struct samsung_keypad *keypad,
90 unsigned int *row_state)
91{
92 unsigned int col;
93 unsigned int val;
94
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;
99 } else {
100 val = SAMSUNG_KEYIFCOL_MASK;
101 val &= ~(1 << col);
102 }
103
104 writel(val, keypad->base + SAMSUNG_KEYIFCOL);
105 mdelay(1);
106
107 val = readl(keypad->base + SAMSUNG_KEYIFROW);
108 row_state[col] = ~val & ((1 << keypad->rows) - 1);
109 }
110
111 /* KEYIFCOL reg clear */
112 writel(0, keypad->base + SAMSUNG_KEYIFCOL);
113}
114
115static bool samsung_keypad_report(struct samsung_keypad *keypad,
116 unsigned int *row_state)
117{
118 struct input_dev *input_dev = keypad->input_dev;
119 unsigned int changed;
120 unsigned int pressed;
121 unsigned int key_down = 0;
122 unsigned int val;
123 unsigned int col, row;
124
125 for (col = 0; col < keypad->cols; col++) {
126 changed = row_state[col] ^ keypad->row_state[col];
127 key_down |= row_state[col];
128 if (!changed)
129 continue;
130
131 for (row = 0; row < keypad->rows; row++) {
132 if (!(changed & (1 << row)))
133 continue;
134
135 pressed = row_state[col] & (1 << row);
136
137 dev_dbg(&keypad->input_dev->dev,
138 "key %s, row: %d, col: %d\n",
139 pressed ? "pressed" : "released", row, col);
140
141 val = MATRIX_SCAN_CODE(row, col, keypad->row_shift);
142
143 input_event(input_dev, EV_MSC, MSC_SCAN, val);
144 input_report_key(input_dev,
145 keypad->keycodes[val], pressed);
146 }
147 input_sync(keypad->input_dev);
148 }
149
150 memcpy(keypad->row_state, row_state, sizeof(keypad->row_state));
151
152 return key_down;
153}
154
155static irqreturn_t samsung_keypad_irq(int irq, void *dev_id)
156{
157 struct samsung_keypad *keypad = dev_id;
158 unsigned int row_state[SAMSUNG_MAX_COLS];
159 unsigned int val;
160 bool key_down;
161
162 pm_runtime_get_sync(&keypad->pdev->dev);
163
164 do {
165 val = readl(keypad->base + SAMSUNG_KEYIFSTSCLR);
166 /* Clear interrupt. */
167 writel(~0x0, keypad->base + SAMSUNG_KEYIFSTSCLR);
168
169 samsung_keypad_scan(keypad, row_state);
170
171 key_down = samsung_keypad_report(keypad, row_state);
172 if (key_down)
173 wait_event_timeout(keypad->wait, keypad->stopped,
174 msecs_to_jiffies(50));
175
176 } while (key_down && !keypad->stopped);
177
178 pm_runtime_put(&keypad->pdev->dev);
179
180 return IRQ_HANDLED;
181}
182
183static void samsung_keypad_start(struct samsung_keypad *keypad)
184{
185 unsigned int val;
186
187 pm_runtime_get_sync(&keypad->pdev->dev);
188
189 /* Tell IRQ thread that it may poll the device. */
190 keypad->stopped = false;
191
192 clk_enable(keypad->clk);
193
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);
198
199 /* KEYIFCOL reg clear. */
200 writel(0, keypad->base + SAMSUNG_KEYIFCOL);
201
202 pm_runtime_put(&keypad->pdev->dev);
203}
204
205static void samsung_keypad_stop(struct samsung_keypad *keypad)
206{
207 unsigned int val;
208
209 pm_runtime_get_sync(&keypad->pdev->dev);
210
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);
215
216 /* Clear interrupt. */
217 writel(~0x0, keypad->base + SAMSUNG_KEYIFSTSCLR);
218
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);
223
224 clk_disable(keypad->clk);
225
226 /*
227 * Now that chip should not generate interrupts we can safely
228 * re-enable the handler.
229 */
230 enable_irq(keypad->irq);
231
232 pm_runtime_put(&keypad->pdev->dev);
233}
234
235static int samsung_keypad_open(struct input_dev *input_dev)
236{
237 struct samsung_keypad *keypad = input_get_drvdata(input_dev);
238
239 samsung_keypad_start(keypad);
240
241 return 0;
242}
243
244static void samsung_keypad_close(struct input_dev *input_dev)
245{
246 struct samsung_keypad *keypad = input_get_drvdata(input_dev);
247
248 samsung_keypad_stop(keypad);
249}
250
251#ifdef CONFIG_OF
252static struct samsung_keypad_platdata *samsung_keypad_parse_dt(
253 struct device *dev)
254{
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;
260
261 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
262 if (!pdata) {
263 dev_err(dev, "could not allocate memory for platform data\n");
264 return NULL;
265 }
266
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");
271 return NULL;
272 }
273 pdata->rows = num_rows;
274 pdata->cols = num_cols;
275
276 keymap_data = devm_kzalloc(dev, sizeof(*keymap_data), GFP_KERNEL);
277 if (!keymap_data) {
278 dev_err(dev, "could not allocate memory for keymap data\n");
279 return NULL;
280 }
281 pdata->keymap_data = keymap_data;
282
283 for_each_child_of_node(np, key_np)
284 key_count++;
285
286 keymap_data->keymap_size = key_count;
287 keymap = devm_kzalloc(dev, sizeof(uint32_t) * key_count, GFP_KERNEL);
288 if (!keymap) {
289 dev_err(dev, "could not allocate memory for keymap\n");
290 return NULL;
291 }
292 keymap_data->keymap = keymap;
293
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);
300 }
301
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;
306
307 return pdata;
308}
309
310static void samsung_keypad_parse_dt_gpio(struct device *dev,
311 struct samsung_keypad *keypad)
312{
313 struct device_node *np = dev->of_node;
314 int gpio, ret, row, col;
315
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",
321 row, gpio);
322 continue;
323 }
324
325 ret = gpio_request(gpio, "keypad-row");
326 if (ret)
327 dev_err(dev, "keypad row[%d] gpio request failed\n",
328 row);
329 }
330
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",
336 col, gpio);
337 continue;
338 }
339
340 ret = gpio_request(gpio, "keypad-col");
341 if (ret)
342 dev_err(dev, "keypad column[%d] gpio request failed\n",
343 col);
344 }
345}
346
347static void samsung_keypad_dt_gpio_free(struct samsung_keypad *keypad)
348{
349 int cnt;
350
351 for (cnt = 0; cnt < keypad->rows; cnt++)
352 if (gpio_is_valid(keypad->row_gpios[cnt]))
353 gpio_free(keypad->row_gpios[cnt]);
354
355 for (cnt = 0; cnt < keypad->cols; cnt++)
356 if (gpio_is_valid(keypad->col_gpios[cnt]))
357 gpio_free(keypad->col_gpios[cnt]);
358}
359#else
360static
361struct samsung_keypad_platdata *samsung_keypad_parse_dt(struct device *dev)
362{
363 return NULL;
364}
365
366static void samsung_keypad_dt_gpio_free(struct samsung_keypad *keypad)
367{
368}
369#endif
370
371static int __devinit samsung_keypad_probe(struct platform_device *pdev)
372{
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;
380 int error;
381
382 if (pdev->dev.of_node)
383 pdata = samsung_keypad_parse_dt(&pdev->dev);
384 else
385 pdata = pdev->dev.platform_data;
386 if (!pdata) {
387 dev_err(&pdev->dev, "no platform data defined\n");
388 return -EINVAL;
389 }
390
391 keymap_data = pdata->keymap_data;
392 if (!keymap_data) {
393 dev_err(&pdev->dev, "no keymap data defined\n");
394 return -EINVAL;
395 }
396
397 if (!pdata->rows || pdata->rows > SAMSUNG_MAX_ROWS)
398 return -EINVAL;
399
400 if (!pdata->cols || pdata->cols > SAMSUNG_MAX_COLS)
401 return -EINVAL;
402
403 /* initialize the gpio */
404 if (pdata->cfg_gpio)
405 pdata->cfg_gpio(pdata->rows, pdata->cols);
406
407 row_shift = get_count_order(pdata->cols);
408 keymap_size = (pdata->rows << row_shift) * sizeof(keypad->keycodes[0]);
409
410 keypad = kzalloc(sizeof(*keypad) + keymap_size, GFP_KERNEL);
411 input_dev = input_allocate_device();
412 if (!keypad || !input_dev) {
413 error = -ENOMEM;
414 goto err_free_mem;
415 }
416
417 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
418 if (!res) {
419 error = -ENODEV;
420 goto err_free_mem;
421 }
422
423 keypad->base = ioremap(res->start, resource_size(res));
424 if (!keypad->base) {
425 error = -EBUSY;
426 goto err_free_mem;
427 }
428
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);
433 goto err_unmap_base;
434 }
435
436 keypad->input_dev = input_dev;
437 keypad->pdev = pdev;
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);
443
444 if (pdev->dev.of_node) {
445#ifdef CONFIG_OF
446 samsung_keypad_parse_dt_gpio(&pdev->dev, keypad);
447 keypad->type = of_device_is_compatible(pdev->dev.of_node,
448 "samsung,s5pv210-keypad");
449#endif
450 } else {
451 keypad->type = platform_get_device_id(pdev)->driver_data;
452 }
453
454 input_dev->name = pdev->name;
455 input_dev->id.bustype = BUS_HOST;
456 input_dev->dev.parent = &pdev->dev;
457
458 input_dev->open = samsung_keypad_open;
459 input_dev->close = samsung_keypad_close;
460
461 error = matrix_keypad_build_keymap(keymap_data, NULL,
462 pdata->rows, pdata->cols,
463 keypad->keycodes, input_dev);
464 if (error) {
465 dev_err(&pdev->dev, "failed to build keymap\n");
466 goto err_put_clk;
467 }
468
469 input_set_capability(input_dev, EV_MSC, MSC_SCAN);
470 if (!pdata->no_autorepeat)
471 __set_bit(EV_REP, input_dev->evbit);
472
473 input_set_drvdata(input_dev, keypad);
474
475 keypad->irq = platform_get_irq(pdev, 0);
476 if (keypad->irq < 0) {
477 error = keypad->irq;
478 goto err_put_clk;
479 }
480
481 error = request_threaded_irq(keypad->irq, NULL, samsung_keypad_irq,
482 IRQF_ONESHOT, dev_name(&pdev->dev), keypad);
483 if (error) {
484 dev_err(&pdev->dev, "failed to register keypad interrupt\n");
485 goto err_put_clk;
486 }
487
488 device_init_wakeup(&pdev->dev, pdata->wakeup);
489 platform_set_drvdata(pdev, keypad);
490 pm_runtime_enable(&pdev->dev);
491
492 error = input_register_device(keypad->input_dev);
493 if (error)
494 goto err_free_irq;
495
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);
500 }
501 return 0;
502
503err_free_irq:
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);
508err_put_clk:
509 clk_put(keypad->clk);
510 samsung_keypad_dt_gpio_free(keypad);
511err_unmap_base:
512 iounmap(keypad->base);
513err_free_mem:
514 input_free_device(input_dev);
515 kfree(keypad);
516
517 return error;
518}
519
520static int __devexit samsung_keypad_remove(struct platform_device *pdev)
521{
522 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
523
524 pm_runtime_disable(&pdev->dev);
525 device_init_wakeup(&pdev->dev, 0);
526 platform_set_drvdata(pdev, NULL);
527
528 input_unregister_device(keypad->input_dev);
529
530 /*
531 * It is safe to free IRQ after unregistering device because
532 * samsung_keypad_close will shut off interrupts.
533 */
534 free_irq(keypad->irq, keypad);
535
536 clk_put(keypad->clk);
537 samsung_keypad_dt_gpio_free(keypad);
538
539 iounmap(keypad->base);
540 kfree(keypad);
541
542 return 0;
543}
544
545#ifdef CONFIG_PM_RUNTIME
546static int samsung_keypad_runtime_suspend(struct device *dev)
547{
548 struct platform_device *pdev = to_platform_device(dev);
549 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
550 unsigned int val;
551 int error;
552
553 if (keypad->stopped)
554 return 0;
555
556 /* This may fail on some SoCs due to lack of controller support */
557 error = enable_irq_wake(keypad->irq);
558 if (!error)
559 keypad->wake_enabled = true;
560
561 val = readl(keypad->base + SAMSUNG_KEYIFCON);
562 val |= SAMSUNG_KEYIFCON_WAKEUPEN;
563 writel(val, keypad->base + SAMSUNG_KEYIFCON);
564
565 clk_disable(keypad->clk);
566
567 return 0;
568}
569
570static int samsung_keypad_runtime_resume(struct device *dev)
571{
572 struct platform_device *pdev = to_platform_device(dev);
573 struct samsung_keypad *keypad = platform_get_drvdata(pdev);
574 unsigned int val;
575
576 if (keypad->stopped)
577 return 0;
578
579 clk_enable(keypad->clk);
580
581 val = readl(keypad->base + SAMSUNG_KEYIFCON);
582 val &= ~SAMSUNG_KEYIFCON_WAKEUPEN;
583 writel(val, keypad->base + SAMSUNG_KEYIFCON);
584
585 if (keypad->wake_enabled)
586 disable_irq_wake(keypad->irq);
587
588 return 0;
589}
590#endif
591
592#ifdef CONFIG_PM_SLEEP
593static void samsung_keypad_toggle_wakeup(struct samsung_keypad *keypad,
594 bool enable)
595{
596 unsigned int val;
597
598 clk_enable(keypad->clk);
599
600 val = readl(keypad->base + SAMSUNG_KEYIFCON);
601 if (enable) {
602 val |= SAMSUNG_KEYIFCON_WAKEUPEN;
603 if (device_may_wakeup(&keypad->pdev->dev))
604 enable_irq_wake(keypad->irq);
605 } else {
606 val &= ~SAMSUNG_KEYIFCON_WAKEUPEN;
607 if (device_may_wakeup(&keypad->pdev->dev))
608 disable_irq_wake(keypad->irq);
609 }
610 writel(val, keypad->base + SAMSUNG_KEYIFCON);
611
612 clk_disable(keypad->clk);
613}
614
615static int samsung_keypad_suspend(struct device *dev)
616{
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;
620
621 mutex_lock(&input_dev->mutex);
622
623 if (input_dev->users)
624 samsung_keypad_stop(keypad);
625
626 samsung_keypad_toggle_wakeup(keypad, true);
627
628 mutex_unlock(&input_dev->mutex);
629
630 return 0;
631}
632
633static int samsung_keypad_resume(struct device *dev)
634{
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;
638
639 mutex_lock(&input_dev->mutex);
640
641 samsung_keypad_toggle_wakeup(keypad, false);
642
643 if (input_dev->users)
644 samsung_keypad_start(keypad);
645
646 mutex_unlock(&input_dev->mutex);
647
648 return 0;
649}
650#endif
651
652static 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)
656};
657
658#ifdef CONFIG_OF
659static const struct of_device_id samsung_keypad_dt_match[] = {
660 { .compatible = "samsung,s3c6410-keypad" },
661 { .compatible = "samsung,s5pv210-keypad" },
662 {},
663};
664MODULE_DEVICE_TABLE(of, samsung_keypad_dt_match);
665#else
666#define samsung_keypad_dt_match NULL
667#endif
668
669static struct platform_device_id samsung_keypad_driver_ids[] = {
670 {
671 .name = "samsung-keypad",
672 .driver_data = KEYPAD_TYPE_SAMSUNG,
673 }, {
674 .name = "s5pv210-keypad",
675 .driver_data = KEYPAD_TYPE_S5PV210,
676 },
677 { },
678};
679MODULE_DEVICE_TABLE(platform, samsung_keypad_driver_ids);
680
681static struct platform_driver samsung_keypad_driver = {
682 .probe = samsung_keypad_probe,
683 .remove = __devexit_p(samsung_keypad_remove),
684 .driver = {
685 .name = "samsung-keypad",
686 .owner = THIS_MODULE,
687 .of_match_table = samsung_keypad_dt_match,
688 .pm = &samsung_keypad_pm_ops,
689 },
690 .id_table = samsung_keypad_driver_ids,
691};
692module_platform_driver(samsung_keypad_driver);
693
694MODULE_DESCRIPTION("Samsung keypad driver");
695MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
696MODULE_AUTHOR("Donghwa Lee <dh09.lee@samsung.com>");
697MODULE_LICENSE("GPL");