Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-2.6-block.git] / drivers / input / keyboard / tegra-kbc.c
CommitLineData
16216333 1// SPDX-License-Identifier: GPL-2.0-or-later
11f5b30d
RI
2/*
3 * Keyboard class input driver for the NVIDIA Tegra SoC internal matrix
4 * keyboard controller
5 *
6 * Copyright (c) 2009-2011, NVIDIA Corporation.
11f5b30d
RI
7 */
8
3f27757a 9#include <linux/kernel.h>
11f5b30d
RI
10#include <linux/module.h>
11#include <linux/input.h>
12#include <linux/platform_device.h>
13#include <linux/delay.h>
14#include <linux/io.h>
15#include <linux/interrupt.h>
a445c7f0 16#include <linux/of.h>
6cd25669 17#include <linux/property.h>
11f5b30d
RI
18#include <linux/clk.h>
19#include <linux/slab.h>
9eee07d3 20#include <linux/input/matrix_keypad.h>
fe6b0dfa 21#include <linux/reset.h>
ba52a7fc 22#include <linux/err.h>
11f5b30d 23
9eee07d3
SW
24#define KBC_MAX_KPENT 8
25
e10af9e7
LD
26/* Maximum row/column supported by Tegra KBC yet is 16x8 */
27#define KBC_MAX_GPIO 24
28/* Maximum keys supported by Tegra KBC yet is 16 x 8*/
29#define KBC_MAX_KEY (16 * 8)
9eee07d3 30
11f5b30d
RI
31#define KBC_MAX_DEBOUNCE_CNT 0x3ffu
32
33/* KBC row scan time and delay for beginning the row scan. */
34#define KBC_ROW_SCAN_TIME 16
35#define KBC_ROW_SCAN_DLY 5
36
37/* KBC uses a 32KHz clock so a cycle = 1/32Khz */
3f27757a 38#define KBC_CYCLE_MS 32
11f5b30d
RI
39
40/* KBC Registers */
41
42/* KBC Control Register */
43#define KBC_CONTROL_0 0x0
44#define KBC_FIFO_TH_CNT_SHIFT(cnt) (cnt << 14)
45#define KBC_DEBOUNCE_CNT_SHIFT(cnt) (cnt << 4)
46#define KBC_CONTROL_FIFO_CNT_INT_EN (1 << 3)
b6834b02 47#define KBC_CONTROL_KEYPRESS_INT_EN (1 << 1)
11f5b30d
RI
48#define KBC_CONTROL_KBC_EN (1 << 0)
49
50/* KBC Interrupt Register */
51#define KBC_INT_0 0x4
52#define KBC_INT_FIFO_CNT_INT_STATUS (1 << 2)
fd0fc213 53#define KBC_INT_KEYPRESS_INT_STATUS (1 << 0)
11f5b30d
RI
54
55#define KBC_ROW_CFG0_0 0x8
56#define KBC_COL_CFG0_0 0x18
d0d150ec 57#define KBC_TO_CNT_0 0x24
11f5b30d
RI
58#define KBC_INIT_DLY_0 0x28
59#define KBC_RPT_DLY_0 0x2c
60#define KBC_KP_ENT0_0 0x30
61#define KBC_KP_ENT1_0 0x34
62#define KBC_ROW0_MASK_0 0x38
63
64#define KBC_ROW_SHIFT 3
65
9eee07d3
SW
66enum tegra_pin_type {
67 PIN_CFG_IGNORE,
68 PIN_CFG_COL,
69 PIN_CFG_ROW,
70};
71
e10af9e7
LD
72/* Tegra KBC hw support */
73struct tegra_kbc_hw_support {
74 int max_rows;
75 int max_columns;
76};
77
9eee07d3
SW
78struct tegra_kbc_pin_cfg {
79 enum tegra_pin_type type;
80 unsigned char num;
81};
82
11f5b30d 83struct tegra_kbc {
9eee07d3
SW
84 struct device *dev;
85 unsigned int debounce_cnt;
86 unsigned int repeat_cnt;
87 struct tegra_kbc_pin_cfg pin_cfg[KBC_MAX_GPIO];
88 const struct matrix_keymap_data *keymap_data;
89 bool wakeup;
11f5b30d
RI
90 void __iomem *mmio;
91 struct input_dev *idev;
9eee07d3 92 int irq;
11f5b30d
RI
93 spinlock_t lock;
94 unsigned int repoll_dly;
95 unsigned long cp_dly_jiffies;
d0d150ec 96 unsigned int cp_to_wkup_dly;
4e8b65f6 97 bool use_fn_map;
34abeeb2 98 bool use_ghost_filter;
fd0fc213 99 bool keypress_caused_wake;
4e8b65f6 100 unsigned short keycode[KBC_MAX_KEY * 2];
11f5b30d
RI
101 unsigned short current_keys[KBC_MAX_KPENT];
102 unsigned int num_pressed_keys;
fd0fc213 103 u32 wakeup_key;
11f5b30d
RI
104 struct timer_list timer;
105 struct clk *clk;
fe6b0dfa 106 struct reset_control *rst;
e10af9e7
LD
107 const struct tegra_kbc_hw_support *hw_support;
108 int max_keys;
109 int num_rows_and_columns;
11f5b30d
RI
110};
111
11f5b30d
RI
112static void tegra_kbc_report_released_keys(struct input_dev *input,
113 unsigned short old_keycodes[],
114 unsigned int old_num_keys,
115 unsigned short new_keycodes[],
116 unsigned int new_num_keys)
117{
118 unsigned int i, j;
119
120 for (i = 0; i < old_num_keys; i++) {
121 for (j = 0; j < new_num_keys; j++)
122 if (old_keycodes[i] == new_keycodes[j])
123 break;
124
125 if (j == new_num_keys)
126 input_report_key(input, old_keycodes[i], 0);
127 }
128}
129
130static void tegra_kbc_report_pressed_keys(struct input_dev *input,
131 unsigned char scancodes[],
132 unsigned short keycodes[],
133 unsigned int num_pressed_keys)
134{
135 unsigned int i;
136
137 for (i = 0; i < num_pressed_keys; i++) {
138 input_event(input, EV_MSC, MSC_SCAN, scancodes[i]);
139 input_report_key(input, keycodes[i], 1);
140 }
141}
142
143static void tegra_kbc_report_keys(struct tegra_kbc *kbc)
144{
145 unsigned char scancodes[KBC_MAX_KPENT];
146 unsigned short keycodes[KBC_MAX_KPENT];
147 u32 val = 0;
148 unsigned int i;
149 unsigned int num_down = 0;
4e8b65f6 150 bool fn_keypress = false;
34abeeb2
RI
151 bool key_in_same_row = false;
152 bool key_in_same_col = false;
11f5b30d 153
11f5b30d
RI
154 for (i = 0; i < KBC_MAX_KPENT; i++) {
155 if ((i % 4) == 0)
156 val = readl(kbc->mmio + KBC_KP_ENT0_0 + i);
157
158 if (val & 0x80) {
159 unsigned int col = val & 0x07;
160 unsigned int row = (val >> 3) & 0x0f;
161 unsigned char scancode =
162 MATRIX_SCAN_CODE(row, col, KBC_ROW_SHIFT);
163
164 scancodes[num_down] = scancode;
4e8b65f6
RI
165 keycodes[num_down] = kbc->keycode[scancode];
166 /* If driver uses Fn map, do not report the Fn key. */
167 if ((keycodes[num_down] == KEY_FN) && kbc->use_fn_map)
168 fn_keypress = true;
169 else
170 num_down++;
11f5b30d
RI
171 }
172
173 val >>= 8;
174 }
4e8b65f6 175
34abeeb2
RI
176 /*
177 * Matrix keyboard designs are prone to keyboard ghosting.
178 * Ghosting occurs if there are 3 keys such that -
179 * any 2 of the 3 keys share a row, and any 2 of them share a column.
180 * If so ignore the key presses for this iteration.
181 */
95439cba 182 if (kbc->use_ghost_filter && num_down >= 3) {
34abeeb2
RI
183 for (i = 0; i < num_down; i++) {
184 unsigned int j;
185 u8 curr_col = scancodes[i] & 0x07;
186 u8 curr_row = scancodes[i] >> KBC_ROW_SHIFT;
187
188 /*
189 * Find 2 keys such that one key is in the same row
190 * and the other is in the same column as the i-th key.
191 */
192 for (j = i + 1; j < num_down; j++) {
193 u8 col = scancodes[j] & 0x07;
194 u8 row = scancodes[j] >> KBC_ROW_SHIFT;
195
196 if (col == curr_col)
197 key_in_same_col = true;
198 if (row == curr_row)
199 key_in_same_row = true;
200 }
201 }
202 }
203
4e8b65f6
RI
204 /*
205 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
e10af9e7 206 * Function keycodes are max_keys apart from the plain keycodes.
4e8b65f6
RI
207 */
208 if (fn_keypress) {
209 for (i = 0; i < num_down; i++) {
e10af9e7 210 scancodes[i] += kbc->max_keys;
4e8b65f6
RI
211 keycodes[i] = kbc->keycode[scancodes[i]];
212 }
213 }
214
34abeeb2
RI
215 /* Ignore the key presses for this iteration? */
216 if (key_in_same_col && key_in_same_row)
217 return;
218
11f5b30d
RI
219 tegra_kbc_report_released_keys(kbc->idev,
220 kbc->current_keys, kbc->num_pressed_keys,
221 keycodes, num_down);
222 tegra_kbc_report_pressed_keys(kbc->idev, scancodes, keycodes, num_down);
223 input_sync(kbc->idev);
224
225 memcpy(kbc->current_keys, keycodes, sizeof(kbc->current_keys));
226 kbc->num_pressed_keys = num_down;
227}
228
d0d150ec
RI
229static void tegra_kbc_set_fifo_interrupt(struct tegra_kbc *kbc, bool enable)
230{
231 u32 val;
232
233 val = readl(kbc->mmio + KBC_CONTROL_0);
234 if (enable)
235 val |= KBC_CONTROL_FIFO_CNT_INT_EN;
236 else
237 val &= ~KBC_CONTROL_FIFO_CNT_INT_EN;
238 writel(val, kbc->mmio + KBC_CONTROL_0);
239}
240
4ea40278 241static void tegra_kbc_keypress_timer(struct timer_list *t)
11f5b30d 242{
4ea40278 243 struct tegra_kbc *kbc = from_timer(kbc, t, timer);
11f5b30d
RI
244 u32 val;
245 unsigned int i;
246
78af00d8 247 guard(spinlock_irqsave)(&kbc->lock);
95439cba 248
11f5b30d
RI
249 val = (readl(kbc->mmio + KBC_INT_0) >> 4) & 0xf;
250 if (val) {
251 unsigned long dly;
252
253 tegra_kbc_report_keys(kbc);
254
255 /*
256 * If more than one keys are pressed we need not wait
257 * for the repoll delay.
258 */
259 dly = (val == 1) ? kbc->repoll_dly : 1;
260 mod_timer(&kbc->timer, jiffies + msecs_to_jiffies(dly));
261 } else {
262 /* Release any pressed keys and exit the polling loop */
263 for (i = 0; i < kbc->num_pressed_keys; i++)
264 input_report_key(kbc->idev, kbc->current_keys[i], 0);
265 input_sync(kbc->idev);
266
267 kbc->num_pressed_keys = 0;
268
269 /* All keys are released so enable the keypress interrupt */
d0d150ec 270 tegra_kbc_set_fifo_interrupt(kbc, true);
11f5b30d
RI
271 }
272}
273
274static irqreturn_t tegra_kbc_isr(int irq, void *args)
275{
276 struct tegra_kbc *kbc = args;
d0d150ec 277 u32 val;
11f5b30d 278
78af00d8 279 guard(spinlock_irqsave)(&kbc->lock);
11f5b30d
RI
280
281 /*
282 * Quickly bail out & reenable interrupts if the fifo threshold
283 * count interrupt wasn't the interrupt source
284 */
285 val = readl(kbc->mmio + KBC_INT_0);
286 writel(val, kbc->mmio + KBC_INT_0);
287
288 if (val & KBC_INT_FIFO_CNT_INT_STATUS) {
289 /*
95439cba
DT
290 * Until all keys are released, defer further processing to
291 * the polling loop in tegra_kbc_keypress_timer.
11f5b30d 292 */
95439cba 293 tegra_kbc_set_fifo_interrupt(kbc, false);
11f5b30d 294 mod_timer(&kbc->timer, jiffies + kbc->cp_dly_jiffies);
fd0fc213
RI
295 } else if (val & KBC_INT_KEYPRESS_INT_STATUS) {
296 /* We can be here only through system resume path */
297 kbc->keypress_caused_wake = true;
11f5b30d
RI
298 }
299
300 return IRQ_HANDLED;
301}
302
303static void tegra_kbc_setup_wakekeys(struct tegra_kbc *kbc, bool filter)
304{
11f5b30d
RI
305 int i;
306 unsigned int rst_val;
307
baafb435 308 /* Either mask all keys or none. */
9eee07d3 309 rst_val = (filter && !kbc->wakeup) ? ~0 : 0;
11f5b30d 310
e10af9e7 311 for (i = 0; i < kbc->hw_support->max_rows; i++)
11f5b30d 312 writel(rst_val, kbc->mmio + KBC_ROW0_MASK_0 + i * 4);
11f5b30d
RI
313}
314
315static void tegra_kbc_config_pins(struct tegra_kbc *kbc)
316{
11f5b30d
RI
317 int i;
318
319 for (i = 0; i < KBC_MAX_GPIO; i++) {
320 u32 r_shft = 5 * (i % 6);
321 u32 c_shft = 4 * (i % 8);
7530c4a1
RI
322 u32 r_mask = 0x1f << r_shft;
323 u32 c_mask = 0x0f << c_shft;
11f5b30d
RI
324 u32 r_offs = (i / 6) * 4 + KBC_ROW_CFG0_0;
325 u32 c_offs = (i / 8) * 4 + KBC_COL_CFG0_0;
326 u32 row_cfg = readl(kbc->mmio + r_offs);
327 u32 col_cfg = readl(kbc->mmio + c_offs);
328
329 row_cfg &= ~r_mask;
330 col_cfg &= ~c_mask;
331
9eee07d3 332 switch (kbc->pin_cfg[i].type) {
023cea0e 333 case PIN_CFG_ROW:
9eee07d3 334 row_cfg |= ((kbc->pin_cfg[i].num << 1) | 1) << r_shft;
023cea0e
SR
335 break;
336
337 case PIN_CFG_COL:
9eee07d3 338 col_cfg |= ((kbc->pin_cfg[i].num << 1) | 1) << c_shft;
023cea0e
SR
339 break;
340
341 case PIN_CFG_IGNORE:
342 break;
343 }
11f5b30d
RI
344
345 writel(row_cfg, kbc->mmio + r_offs);
346 writel(col_cfg, kbc->mmio + c_offs);
347 }
348}
349
350static int tegra_kbc_start(struct tegra_kbc *kbc)
351{
11f5b30d
RI
352 unsigned int debounce_cnt;
353 u32 val = 0;
8a7f102c 354 int ret;
11f5b30d 355
8a7f102c
AY
356 ret = clk_prepare_enable(kbc->clk);
357 if (ret)
358 return ret;
11f5b30d
RI
359
360 /* Reset the KBC controller to clear all previous status.*/
fe6b0dfa 361 reset_control_assert(kbc->rst);
11f5b30d 362 udelay(100);
fae16989 363 reset_control_deassert(kbc->rst);
11f5b30d
RI
364 udelay(100);
365
366 tegra_kbc_config_pins(kbc);
367 tegra_kbc_setup_wakekeys(kbc, false);
368
9eee07d3 369 writel(kbc->repeat_cnt, kbc->mmio + KBC_RPT_DLY_0);
11f5b30d
RI
370
371 /* Keyboard debounce count is maximum of 12 bits. */
9eee07d3 372 debounce_cnt = min(kbc->debounce_cnt, KBC_MAX_DEBOUNCE_CNT);
11f5b30d
RI
373 val = KBC_DEBOUNCE_CNT_SHIFT(debounce_cnt);
374 val |= KBC_FIFO_TH_CNT_SHIFT(1); /* set fifo interrupt threshold to 1 */
375 val |= KBC_CONTROL_FIFO_CNT_INT_EN; /* interrupt on FIFO threshold */
376 val |= KBC_CONTROL_KBC_EN; /* enable */
377 writel(val, kbc->mmio + KBC_CONTROL_0);
378
379 /*
380 * Compute the delay(ns) from interrupt mode to continuous polling
381 * mode so the timer routine is scheduled appropriately.
382 */
383 val = readl(kbc->mmio + KBC_INIT_DLY_0);
384 kbc->cp_dly_jiffies = usecs_to_jiffies((val & 0xfffff) * 32);
385
386 kbc->num_pressed_keys = 0;
387
388 /*
389 * Atomically clear out any remaining entries in the key FIFO
390 * and enable keyboard interrupts.
391 */
11f5b30d
RI
392 while (1) {
393 val = readl(kbc->mmio + KBC_INT_0);
394 val >>= 4;
395 if (!val)
396 break;
397
398 val = readl(kbc->mmio + KBC_KP_ENT0_0);
399 val = readl(kbc->mmio + KBC_KP_ENT1_0);
400 }
401 writel(0x7, kbc->mmio + KBC_INT_0);
11f5b30d
RI
402
403 enable_irq(kbc->irq);
404
405 return 0;
406}
407
408static void tegra_kbc_stop(struct tegra_kbc *kbc)
409{
11f5b30d
RI
410 u32 val;
411
78af00d8
DT
412 scoped_guard(spinlock_irqsave, &kbc->lock) {
413 val = readl(kbc->mmio + KBC_CONTROL_0);
414 val &= ~1;
415 writel(val, kbc->mmio + KBC_CONTROL_0);
416 }
11f5b30d
RI
417
418 disable_irq(kbc->irq);
419 del_timer_sync(&kbc->timer);
420
f762470b 421 clk_disable_unprepare(kbc->clk);
11f5b30d
RI
422}
423
424static int tegra_kbc_open(struct input_dev *dev)
425{
426 struct tegra_kbc *kbc = input_get_drvdata(dev);
427
428 return tegra_kbc_start(kbc);
429}
430
431static void tegra_kbc_close(struct input_dev *dev)
432{
433 struct tegra_kbc *kbc = input_get_drvdata(dev);
434
435 return tegra_kbc_stop(kbc);
436}
437
9eee07d3
SW
438static bool tegra_kbc_check_pin_cfg(const struct tegra_kbc *kbc,
439 unsigned int *num_rows)
11f5b30d
RI
440{
441 int i;
442
443 *num_rows = 0;
444
445 for (i = 0; i < KBC_MAX_GPIO; i++) {
9eee07d3 446 const struct tegra_kbc_pin_cfg *pin_cfg = &kbc->pin_cfg[i];
11f5b30d 447
023cea0e
SR
448 switch (pin_cfg->type) {
449 case PIN_CFG_ROW:
e10af9e7 450 if (pin_cfg->num >= kbc->hw_support->max_rows) {
9eee07d3 451 dev_err(kbc->dev,
11f5b30d
RI
452 "pin_cfg[%d]: invalid row number %d\n",
453 i, pin_cfg->num);
454 return false;
455 }
456 (*num_rows)++;
023cea0e
SR
457 break;
458
459 case PIN_CFG_COL:
e10af9e7 460 if (pin_cfg->num >= kbc->hw_support->max_columns) {
9eee07d3 461 dev_err(kbc->dev,
11f5b30d
RI
462 "pin_cfg[%d]: invalid column number %d\n",
463 i, pin_cfg->num);
464 return false;
465 }
023cea0e
SR
466 break;
467
468 case PIN_CFG_IGNORE:
469 break;
470
471 default:
9eee07d3 472 dev_err(kbc->dev,
023cea0e
SR
473 "pin_cfg[%d]: invalid entry type %d\n",
474 pin_cfg->type, pin_cfg->num);
475 return false;
11f5b30d
RI
476 }
477 }
478
479 return true;
480}
481
9eee07d3 482static int tegra_kbc_parse_dt(struct tegra_kbc *kbc)
a445c7f0 483{
9eee07d3 484 struct device_node *np = kbc->dev->of_node;
145e9734
OJ
485 u32 prop;
486 int i;
c7c878ff
RHA
487 int num_rows;
488 int num_cols;
88390243
LD
489 u32 cols_cfg[KBC_MAX_GPIO];
490 u32 rows_cfg[KBC_MAX_GPIO];
88390243 491
145e9734 492 if (!of_property_read_u32(np, "nvidia,debounce-delay-ms", &prop))
9eee07d3 493 kbc->debounce_cnt = prop;
a445c7f0 494
145e9734 495 if (!of_property_read_u32(np, "nvidia,repeat-delay-ms", &prop))
9eee07d3 496 kbc->repeat_cnt = prop;
a445c7f0 497
12c7d0ae 498 kbc->use_ghost_filter = of_property_present(np, "nvidia,needs-ghost-filter");
a445c7f0 499
b42a1148
SH
500 if (of_property_read_bool(np, "wakeup-source") ||
501 of_property_read_bool(np, "nvidia,wakeup-source")) /* legacy */
9eee07d3 502 kbc->wakeup = true;
a445c7f0 503
c7c878ff 504 if (!of_property_present(np, "linux,keymap")) {
9eee07d3
SW
505 dev_err(kbc->dev, "property linux,keymap not found\n");
506 return -ENOENT;
a445c7f0
OJ
507 }
508
88390243 509 /* Set all pins as non-configured */
e10af9e7 510 for (i = 0; i < kbc->num_rows_and_columns; i++)
9eee07d3 511 kbc->pin_cfg[i].type = PIN_CFG_IGNORE;
88390243 512
c7c878ff
RHA
513 num_rows = of_property_read_variable_u32_array(np, "nvidia,kbc-row-pins",
514 rows_cfg, 1, KBC_MAX_GPIO);
515 if (num_rows < 0) {
9eee07d3 516 dev_err(kbc->dev, "Rows configurations are not proper\n");
c7c878ff
RHA
517 return num_rows;
518 } else if (num_rows > kbc->hw_support->max_rows) {
519 dev_err(kbc->dev,
520 "Number of rows is more than supported by hardware\n");
9eee07d3 521 return -EINVAL;
88390243
LD
522 }
523
524 for (i = 0; i < num_rows; i++) {
9eee07d3
SW
525 kbc->pin_cfg[rows_cfg[i]].type = PIN_CFG_ROW;
526 kbc->pin_cfg[rows_cfg[i]].num = i;
88390243
LD
527 }
528
c7c878ff
RHA
529 num_cols = of_property_read_variable_u32_array(np, "nvidia,kbc-col-pins",
530 cols_cfg, 1, KBC_MAX_GPIO);
531 if (num_cols < 0) {
532 dev_err(kbc->dev, "Cols configurations are not proper\n");
533 return num_cols;
534 } else if (num_cols > kbc->hw_support->max_columns) {
535 dev_err(kbc->dev,
536 "Number of cols is more than supported by hardware\n");
537 return -EINVAL;
538 }
539
88390243 540 for (i = 0; i < num_cols; i++) {
9eee07d3
SW
541 kbc->pin_cfg[cols_cfg[i]].type = PIN_CFG_COL;
542 kbc->pin_cfg[cols_cfg[i]].num = i;
a445c7f0
OJ
543 }
544
c7c878ff
RHA
545 if (!num_rows || !num_cols || ((num_rows + num_cols) > KBC_MAX_GPIO)) {
546 dev_err(kbc->dev,
547 "keypad rows/columns not properly specified\n");
548 return -EINVAL;
549 }
550
9eee07d3 551 return 0;
a445c7f0 552}
a445c7f0 553
e10af9e7
LD
554static const struct tegra_kbc_hw_support tegra20_kbc_hw_support = {
555 .max_rows = 16,
556 .max_columns = 8,
557};
558
559static const struct tegra_kbc_hw_support tegra11_kbc_hw_support = {
560 .max_rows = 11,
561 .max_columns = 8,
562};
563
564static const struct of_device_id tegra_kbc_of_match[] = {
565 { .compatible = "nvidia,tegra114-kbc", .data = &tegra11_kbc_hw_support},
566 { .compatible = "nvidia,tegra30-kbc", .data = &tegra20_kbc_hw_support},
567 { .compatible = "nvidia,tegra20-kbc", .data = &tegra20_kbc_hw_support},
568 { },
569};
570MODULE_DEVICE_TABLE(of, tegra_kbc_of_match);
571
5298cc4c 572static int tegra_kbc_probe(struct platform_device *pdev)
11f5b30d 573{
11f5b30d 574 struct tegra_kbc *kbc;
11f5b30d 575 int err;
11f5b30d
RI
576 int num_rows = 0;
577 unsigned int debounce_cnt;
578 unsigned int scan_time_rows;
e10af9e7 579 unsigned int keymap_rows;
11f5b30d 580
9eee07d3
SW
581 kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL);
582 if (!kbc) {
583 dev_err(&pdev->dev, "failed to alloc memory for kbc\n");
584 return -ENOMEM;
585 }
586
587 kbc->dev = &pdev->dev;
6cd25669 588 kbc->hw_support = device_get_match_data(&pdev->dev);
e10af9e7
LD
589 kbc->max_keys = kbc->hw_support->max_rows *
590 kbc->hw_support->max_columns;
591 kbc->num_rows_and_columns = kbc->hw_support->max_rows +
592 kbc->hw_support->max_columns;
593 keymap_rows = kbc->max_keys;
9eee07d3 594 spin_lock_init(&kbc->lock);
11f5b30d 595
9eee07d3
SW
596 err = tegra_kbc_parse_dt(kbc);
597 if (err)
598 return err;
a445c7f0 599
9eee07d3 600 if (!tegra_kbc_check_pin_cfg(kbc, &num_rows))
00eb81e5
LD
601 return -EINVAL;
602
9eee07d3 603 kbc->irq = platform_get_irq(pdev, 0);
0bec8b7e 604 if (kbc->irq < 0)
00eb81e5 605 return -ENXIO;
11f5b30d 606
9eee07d3
SW
607 kbc->idev = devm_input_allocate_device(&pdev->dev);
608 if (!kbc->idev) {
00eb81e5
LD
609 dev_err(&pdev->dev, "failed to allocate input device\n");
610 return -ENOMEM;
11f5b30d
RI
611 }
612
4ea40278 613 timer_setup(&kbc->timer, tegra_kbc_keypress_timer, 0);
11f5b30d 614
80c268c3 615 kbc->mmio = devm_platform_ioremap_resource(pdev, 0);
ba52a7fc
SK
616 if (IS_ERR(kbc->mmio))
617 return PTR_ERR(kbc->mmio);
11f5b30d 618
00eb81e5 619 kbc->clk = devm_clk_get(&pdev->dev, NULL);
11f5b30d
RI
620 if (IS_ERR(kbc->clk)) {
621 dev_err(&pdev->dev, "failed to get keyboard clock\n");
00eb81e5 622 return PTR_ERR(kbc->clk);
11f5b30d
RI
623 }
624
fe6b0dfa
SW
625 kbc->rst = devm_reset_control_get(&pdev->dev, "kbc");
626 if (IS_ERR(kbc->rst)) {
627 dev_err(&pdev->dev, "failed to get keyboard reset\n");
628 return PTR_ERR(kbc->rst);
629 }
630
11f5b30d
RI
631 /*
632 * The time delay between two consecutive reads of the FIFO is
633 * the sum of the repeat time and the time taken for scanning
634 * the rows. There is an additional delay before the row scanning
635 * starts. The repoll delay is computed in milliseconds.
636 */
9eee07d3 637 debounce_cnt = min(kbc->debounce_cnt, KBC_MAX_DEBOUNCE_CNT);
11f5b30d 638 scan_time_rows = (KBC_ROW_SCAN_TIME + debounce_cnt) * num_rows;
9eee07d3 639 kbc->repoll_dly = KBC_ROW_SCAN_DLY + scan_time_rows + kbc->repeat_cnt;
3f27757a 640 kbc->repoll_dly = DIV_ROUND_UP(kbc->repoll_dly, KBC_CYCLE_MS);
11f5b30d 641
9eee07d3
SW
642 kbc->idev->name = pdev->name;
643 kbc->idev->id.bustype = BUS_HOST;
644 kbc->idev->dev.parent = &pdev->dev;
645 kbc->idev->open = tegra_kbc_open;
646 kbc->idev->close = tegra_kbc_close;
11f5b30d 647
9eee07d3 648 if (kbc->keymap_data && kbc->use_fn_map)
914e5976
LD
649 keymap_rows *= 2;
650
9eee07d3 651 err = matrix_keypad_build_keymap(kbc->keymap_data, NULL,
e10af9e7
LD
652 keymap_rows,
653 kbc->hw_support->max_columns,
9eee07d3 654 kbc->keycode, kbc->idev);
1932811f 655 if (err) {
b45c8f35 656 dev_err(&pdev->dev, "failed to setup keymap\n");
00eb81e5 657 return err;
1932811f
DT
658 }
659
9eee07d3
SW
660 __set_bit(EV_REP, kbc->idev->evbit);
661 input_set_capability(kbc->idev, EV_MSC, MSC_SCAN);
1932811f 662
9eee07d3 663 input_set_drvdata(kbc->idev, kbc);
11f5b30d 664
00eb81e5 665 err = devm_request_irq(&pdev->dev, kbc->irq, tegra_kbc_isr,
bcd9730a
BS
666 IRQF_TRIGGER_HIGH | IRQF_NO_AUTOEN,
667 pdev->name, kbc);
11f5b30d
RI
668 if (err) {
669 dev_err(&pdev->dev, "failed to request keyboard IRQ\n");
00eb81e5 670 return err;
11f5b30d
RI
671 }
672
11f5b30d
RI
673 err = input_register_device(kbc->idev);
674 if (err) {
675 dev_err(&pdev->dev, "failed to register input device\n");
00eb81e5 676 return err;
11f5b30d
RI
677 }
678
679 platform_set_drvdata(pdev, kbc);
9eee07d3 680 device_init_wakeup(&pdev->dev, kbc->wakeup);
11f5b30d 681
11f5b30d
RI
682 return 0;
683}
684
1c407a1b
LD
685static void tegra_kbc_set_keypress_interrupt(struct tegra_kbc *kbc, bool enable)
686{
687 u32 val;
688
689 val = readl(kbc->mmio + KBC_CONTROL_0);
690 if (enable)
691 val |= KBC_CONTROL_KEYPRESS_INT_EN;
692 else
693 val &= ~KBC_CONTROL_KEYPRESS_INT_EN;
694 writel(val, kbc->mmio + KBC_CONTROL_0);
695}
696
11f5b30d
RI
697static int tegra_kbc_suspend(struct device *dev)
698{
699 struct platform_device *pdev = to_platform_device(dev);
700 struct tegra_kbc *kbc = platform_get_drvdata(pdev);
701
78af00d8
DT
702 guard(mutex)(&kbc->idev->mutex);
703
11f5b30d 704 if (device_may_wakeup(&pdev->dev)) {
d0d150ec
RI
705 disable_irq(kbc->irq);
706 del_timer_sync(&kbc->timer);
707 tegra_kbc_set_fifo_interrupt(kbc, false);
708
11f5b30d
RI
709 /* Forcefully clear the interrupt status */
710 writel(0x7, kbc->mmio + KBC_INT_0);
d0d150ec
RI
711 /*
712 * Store the previous resident time of continuous polling mode.
713 * Force the keyboard into interrupt mode.
714 */
715 kbc->cp_to_wkup_dly = readl(kbc->mmio + KBC_TO_CNT_0);
716 writel(0, kbc->mmio + KBC_TO_CNT_0);
717
718 tegra_kbc_setup_wakekeys(kbc, true);
11f5b30d 719 msleep(30);
d0d150ec 720
fd0fc213 721 kbc->keypress_caused_wake = false;
b6834b02
RI
722 /* Enable keypress interrupt before going into suspend. */
723 tegra_kbc_set_keypress_interrupt(kbc, true);
fd0fc213 724 enable_irq(kbc->irq);
d0d150ec 725 enable_irq_wake(kbc->irq);
78af00d8
DT
726 } else if (input_device_enabled(kbc->idev)) {
727 tegra_kbc_stop(kbc);
11f5b30d
RI
728 }
729
730 return 0;
731}
732
733static int tegra_kbc_resume(struct device *dev)
734{
735 struct platform_device *pdev = to_platform_device(dev);
736 struct tegra_kbc *kbc = platform_get_drvdata(pdev);
78af00d8
DT
737 int err;
738
739 guard(mutex)(&kbc->idev->mutex);
11f5b30d
RI
740
741 if (device_may_wakeup(&pdev->dev)) {
742 disable_irq_wake(kbc->irq);
743 tegra_kbc_setup_wakekeys(kbc, false);
b6834b02
RI
744 /* We will use fifo interrupts for key detection. */
745 tegra_kbc_set_keypress_interrupt(kbc, false);
d0d150ec
RI
746
747 /* Restore the resident time of continuous polling mode. */
748 writel(kbc->cp_to_wkup_dly, kbc->mmio + KBC_TO_CNT_0);
749
750 tegra_kbc_set_fifo_interrupt(kbc, true);
751
fd0fc213
RI
752 if (kbc->keypress_caused_wake && kbc->wakeup_key) {
753 /*
754 * We can't report events directly from the ISR
755 * because timekeeping is stopped when processing
756 * wakeup request and we get a nasty warning when
757 * we try to call do_gettimeofday() in evdev
758 * handler.
759 */
760 input_report_key(kbc->idev, kbc->wakeup_key, 1);
761 input_sync(kbc->idev);
762 input_report_key(kbc->idev, kbc->wakeup_key, 0);
763 input_sync(kbc->idev);
764 }
78af00d8
DT
765 } else if (input_device_enabled(kbc->idev)) {
766 err = tegra_kbc_start(kbc);
767 if (err)
768 return err;
11f5b30d
RI
769 }
770
78af00d8 771 return 0;
11f5b30d 772}
11f5b30d 773
995765ed
JC
774static DEFINE_SIMPLE_DEV_PM_OPS(tegra_kbc_pm_ops,
775 tegra_kbc_suspend, tegra_kbc_resume);
11f5b30d
RI
776
777static struct platform_driver tegra_kbc_driver = {
778 .probe = tegra_kbc_probe,
11f5b30d
RI
779 .driver = {
780 .name = "tegra-kbc",
995765ed 781 .pm = pm_sleep_ptr(&tegra_kbc_pm_ops),
a445c7f0 782 .of_match_table = tegra_kbc_of_match,
11f5b30d
RI
783 },
784};
5146c84f 785module_platform_driver(tegra_kbc_driver);
11f5b30d
RI
786
787MODULE_LICENSE("GPL");
788MODULE_AUTHOR("Rakesh Iyer <riyer@nvidia.com>");
789MODULE_DESCRIPTION("Tegra matrix keyboard controller driver");
790MODULE_ALIAS("platform:tegra-kbc");