2 * Keyboard class input driver for the NVIDIA Tegra SoC internal matrix
5 * Copyright (c) 2009-2011, NVIDIA Corporation.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/input.h>
25 #include <linux/platform_device.h>
26 #include <linux/delay.h>
28 #include <linux/interrupt.h>
30 #include <linux/of_device.h>
31 #include <linux/clk.h>
32 #include <linux/slab.h>
33 #include <linux/input/matrix_keypad.h>
34 #include <linux/reset.h>
35 #include <linux/err.h>
37 #define KBC_MAX_KPENT 8
39 /* Maximum row/column supported by Tegra KBC yet is 16x8 */
40 #define KBC_MAX_GPIO 24
41 /* Maximum keys supported by Tegra KBC yet is 16 x 8*/
42 #define KBC_MAX_KEY (16 * 8)
44 #define KBC_MAX_DEBOUNCE_CNT 0x3ffu
46 /* KBC row scan time and delay for beginning the row scan. */
47 #define KBC_ROW_SCAN_TIME 16
48 #define KBC_ROW_SCAN_DLY 5
50 /* KBC uses a 32KHz clock so a cycle = 1/32Khz */
51 #define KBC_CYCLE_MS 32
55 /* KBC Control Register */
56 #define KBC_CONTROL_0 0x0
57 #define KBC_FIFO_TH_CNT_SHIFT(cnt) (cnt << 14)
58 #define KBC_DEBOUNCE_CNT_SHIFT(cnt) (cnt << 4)
59 #define KBC_CONTROL_FIFO_CNT_INT_EN (1 << 3)
60 #define KBC_CONTROL_KEYPRESS_INT_EN (1 << 1)
61 #define KBC_CONTROL_KBC_EN (1 << 0)
63 /* KBC Interrupt Register */
65 #define KBC_INT_FIFO_CNT_INT_STATUS (1 << 2)
66 #define KBC_INT_KEYPRESS_INT_STATUS (1 << 0)
68 #define KBC_ROW_CFG0_0 0x8
69 #define KBC_COL_CFG0_0 0x18
70 #define KBC_TO_CNT_0 0x24
71 #define KBC_INIT_DLY_0 0x28
72 #define KBC_RPT_DLY_0 0x2c
73 #define KBC_KP_ENT0_0 0x30
74 #define KBC_KP_ENT1_0 0x34
75 #define KBC_ROW0_MASK_0 0x38
77 #define KBC_ROW_SHIFT 3
85 /* Tegra KBC hw support */
86 struct tegra_kbc_hw_support {
91 struct tegra_kbc_pin_cfg {
92 enum tegra_pin_type type;
98 unsigned int debounce_cnt;
99 unsigned int repeat_cnt;
100 struct tegra_kbc_pin_cfg pin_cfg[KBC_MAX_GPIO];
101 const struct matrix_keymap_data *keymap_data;
104 struct input_dev *idev;
107 unsigned int repoll_dly;
108 unsigned long cp_dly_jiffies;
109 unsigned int cp_to_wkup_dly;
111 bool use_ghost_filter;
112 bool keypress_caused_wake;
113 unsigned short keycode[KBC_MAX_KEY * 2];
114 unsigned short current_keys[KBC_MAX_KPENT];
115 unsigned int num_pressed_keys;
117 struct timer_list timer;
119 struct reset_control *rst;
120 const struct tegra_kbc_hw_support *hw_support;
122 int num_rows_and_columns;
125 static void tegra_kbc_report_released_keys(struct input_dev *input,
126 unsigned short old_keycodes[],
127 unsigned int old_num_keys,
128 unsigned short new_keycodes[],
129 unsigned int new_num_keys)
133 for (i = 0; i < old_num_keys; i++) {
134 for (j = 0; j < new_num_keys; j++)
135 if (old_keycodes[i] == new_keycodes[j])
138 if (j == new_num_keys)
139 input_report_key(input, old_keycodes[i], 0);
143 static void tegra_kbc_report_pressed_keys(struct input_dev *input,
144 unsigned char scancodes[],
145 unsigned short keycodes[],
146 unsigned int num_pressed_keys)
150 for (i = 0; i < num_pressed_keys; i++) {
151 input_event(input, EV_MSC, MSC_SCAN, scancodes[i]);
152 input_report_key(input, keycodes[i], 1);
156 static void tegra_kbc_report_keys(struct tegra_kbc *kbc)
158 unsigned char scancodes[KBC_MAX_KPENT];
159 unsigned short keycodes[KBC_MAX_KPENT];
162 unsigned int num_down = 0;
163 bool fn_keypress = false;
164 bool key_in_same_row = false;
165 bool key_in_same_col = false;
167 for (i = 0; i < KBC_MAX_KPENT; i++) {
169 val = readl(kbc->mmio + KBC_KP_ENT0_0 + i);
172 unsigned int col = val & 0x07;
173 unsigned int row = (val >> 3) & 0x0f;
174 unsigned char scancode =
175 MATRIX_SCAN_CODE(row, col, KBC_ROW_SHIFT);
177 scancodes[num_down] = scancode;
178 keycodes[num_down] = kbc->keycode[scancode];
179 /* If driver uses Fn map, do not report the Fn key. */
180 if ((keycodes[num_down] == KEY_FN) && kbc->use_fn_map)
190 * Matrix keyboard designs are prone to keyboard ghosting.
191 * Ghosting occurs if there are 3 keys such that -
192 * any 2 of the 3 keys share a row, and any 2 of them share a column.
193 * If so ignore the key presses for this iteration.
195 if (kbc->use_ghost_filter && num_down >= 3) {
196 for (i = 0; i < num_down; i++) {
198 u8 curr_col = scancodes[i] & 0x07;
199 u8 curr_row = scancodes[i] >> KBC_ROW_SHIFT;
202 * Find 2 keys such that one key is in the same row
203 * and the other is in the same column as the i-th key.
205 for (j = i + 1; j < num_down; j++) {
206 u8 col = scancodes[j] & 0x07;
207 u8 row = scancodes[j] >> KBC_ROW_SHIFT;
210 key_in_same_col = true;
212 key_in_same_row = true;
218 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
219 * Function keycodes are max_keys apart from the plain keycodes.
222 for (i = 0; i < num_down; i++) {
223 scancodes[i] += kbc->max_keys;
224 keycodes[i] = kbc->keycode[scancodes[i]];
228 /* Ignore the key presses for this iteration? */
229 if (key_in_same_col && key_in_same_row)
232 tegra_kbc_report_released_keys(kbc->idev,
233 kbc->current_keys, kbc->num_pressed_keys,
235 tegra_kbc_report_pressed_keys(kbc->idev, scancodes, keycodes, num_down);
236 input_sync(kbc->idev);
238 memcpy(kbc->current_keys, keycodes, sizeof(kbc->current_keys));
239 kbc->num_pressed_keys = num_down;
242 static void tegra_kbc_set_fifo_interrupt(struct tegra_kbc *kbc, bool enable)
246 val = readl(kbc->mmio + KBC_CONTROL_0);
248 val |= KBC_CONTROL_FIFO_CNT_INT_EN;
250 val &= ~KBC_CONTROL_FIFO_CNT_INT_EN;
251 writel(val, kbc->mmio + KBC_CONTROL_0);
254 static void tegra_kbc_keypress_timer(struct timer_list *t)
256 struct tegra_kbc *kbc = from_timer(kbc, t, timer);
261 spin_lock_irqsave(&kbc->lock, flags);
263 val = (readl(kbc->mmio + KBC_INT_0) >> 4) & 0xf;
267 tegra_kbc_report_keys(kbc);
270 * If more than one keys are pressed we need not wait
271 * for the repoll delay.
273 dly = (val == 1) ? kbc->repoll_dly : 1;
274 mod_timer(&kbc->timer, jiffies + msecs_to_jiffies(dly));
276 /* Release any pressed keys and exit the polling loop */
277 for (i = 0; i < kbc->num_pressed_keys; i++)
278 input_report_key(kbc->idev, kbc->current_keys[i], 0);
279 input_sync(kbc->idev);
281 kbc->num_pressed_keys = 0;
283 /* All keys are released so enable the keypress interrupt */
284 tegra_kbc_set_fifo_interrupt(kbc, true);
287 spin_unlock_irqrestore(&kbc->lock, flags);
290 static irqreturn_t tegra_kbc_isr(int irq, void *args)
292 struct tegra_kbc *kbc = args;
296 spin_lock_irqsave(&kbc->lock, flags);
299 * Quickly bail out & reenable interrupts if the fifo threshold
300 * count interrupt wasn't the interrupt source
302 val = readl(kbc->mmio + KBC_INT_0);
303 writel(val, kbc->mmio + KBC_INT_0);
305 if (val & KBC_INT_FIFO_CNT_INT_STATUS) {
307 * Until all keys are released, defer further processing to
308 * the polling loop in tegra_kbc_keypress_timer.
310 tegra_kbc_set_fifo_interrupt(kbc, false);
311 mod_timer(&kbc->timer, jiffies + kbc->cp_dly_jiffies);
312 } else if (val & KBC_INT_KEYPRESS_INT_STATUS) {
313 /* We can be here only through system resume path */
314 kbc->keypress_caused_wake = true;
317 spin_unlock_irqrestore(&kbc->lock, flags);
322 static void tegra_kbc_setup_wakekeys(struct tegra_kbc *kbc, bool filter)
325 unsigned int rst_val;
327 /* Either mask all keys or none. */
328 rst_val = (filter && !kbc->wakeup) ? ~0 : 0;
330 for (i = 0; i < kbc->hw_support->max_rows; i++)
331 writel(rst_val, kbc->mmio + KBC_ROW0_MASK_0 + i * 4);
334 static void tegra_kbc_config_pins(struct tegra_kbc *kbc)
338 for (i = 0; i < KBC_MAX_GPIO; i++) {
339 u32 r_shft = 5 * (i % 6);
340 u32 c_shft = 4 * (i % 8);
341 u32 r_mask = 0x1f << r_shft;
342 u32 c_mask = 0x0f << c_shft;
343 u32 r_offs = (i / 6) * 4 + KBC_ROW_CFG0_0;
344 u32 c_offs = (i / 8) * 4 + KBC_COL_CFG0_0;
345 u32 row_cfg = readl(kbc->mmio + r_offs);
346 u32 col_cfg = readl(kbc->mmio + c_offs);
351 switch (kbc->pin_cfg[i].type) {
353 row_cfg |= ((kbc->pin_cfg[i].num << 1) | 1) << r_shft;
357 col_cfg |= ((kbc->pin_cfg[i].num << 1) | 1) << c_shft;
364 writel(row_cfg, kbc->mmio + r_offs);
365 writel(col_cfg, kbc->mmio + c_offs);
369 static int tegra_kbc_start(struct tegra_kbc *kbc)
371 unsigned int debounce_cnt;
375 ret = clk_prepare_enable(kbc->clk);
379 /* Reset the KBC controller to clear all previous status.*/
380 reset_control_assert(kbc->rst);
382 reset_control_deassert(kbc->rst);
385 tegra_kbc_config_pins(kbc);
386 tegra_kbc_setup_wakekeys(kbc, false);
388 writel(kbc->repeat_cnt, kbc->mmio + KBC_RPT_DLY_0);
390 /* Keyboard debounce count is maximum of 12 bits. */
391 debounce_cnt = min(kbc->debounce_cnt, KBC_MAX_DEBOUNCE_CNT);
392 val = KBC_DEBOUNCE_CNT_SHIFT(debounce_cnt);
393 val |= KBC_FIFO_TH_CNT_SHIFT(1); /* set fifo interrupt threshold to 1 */
394 val |= KBC_CONTROL_FIFO_CNT_INT_EN; /* interrupt on FIFO threshold */
395 val |= KBC_CONTROL_KBC_EN; /* enable */
396 writel(val, kbc->mmio + KBC_CONTROL_0);
399 * Compute the delay(ns) from interrupt mode to continuous polling
400 * mode so the timer routine is scheduled appropriately.
402 val = readl(kbc->mmio + KBC_INIT_DLY_0);
403 kbc->cp_dly_jiffies = usecs_to_jiffies((val & 0xfffff) * 32);
405 kbc->num_pressed_keys = 0;
408 * Atomically clear out any remaining entries in the key FIFO
409 * and enable keyboard interrupts.
412 val = readl(kbc->mmio + KBC_INT_0);
417 val = readl(kbc->mmio + KBC_KP_ENT0_0);
418 val = readl(kbc->mmio + KBC_KP_ENT1_0);
420 writel(0x7, kbc->mmio + KBC_INT_0);
422 enable_irq(kbc->irq);
427 static void tegra_kbc_stop(struct tegra_kbc *kbc)
432 spin_lock_irqsave(&kbc->lock, flags);
433 val = readl(kbc->mmio + KBC_CONTROL_0);
435 writel(val, kbc->mmio + KBC_CONTROL_0);
436 spin_unlock_irqrestore(&kbc->lock, flags);
438 disable_irq(kbc->irq);
439 del_timer_sync(&kbc->timer);
441 clk_disable_unprepare(kbc->clk);
444 static int tegra_kbc_open(struct input_dev *dev)
446 struct tegra_kbc *kbc = input_get_drvdata(dev);
448 return tegra_kbc_start(kbc);
451 static void tegra_kbc_close(struct input_dev *dev)
453 struct tegra_kbc *kbc = input_get_drvdata(dev);
455 return tegra_kbc_stop(kbc);
458 static bool tegra_kbc_check_pin_cfg(const struct tegra_kbc *kbc,
459 unsigned int *num_rows)
465 for (i = 0; i < KBC_MAX_GPIO; i++) {
466 const struct tegra_kbc_pin_cfg *pin_cfg = &kbc->pin_cfg[i];
468 switch (pin_cfg->type) {
470 if (pin_cfg->num >= kbc->hw_support->max_rows) {
472 "pin_cfg[%d]: invalid row number %d\n",
480 if (pin_cfg->num >= kbc->hw_support->max_columns) {
482 "pin_cfg[%d]: invalid column number %d\n",
493 "pin_cfg[%d]: invalid entry type %d\n",
494 pin_cfg->type, pin_cfg->num);
502 static int tegra_kbc_parse_dt(struct tegra_kbc *kbc)
504 struct device_node *np = kbc->dev->of_node;
509 u32 cols_cfg[KBC_MAX_GPIO];
510 u32 rows_cfg[KBC_MAX_GPIO];
514 if (!of_property_read_u32(np, "nvidia,debounce-delay-ms", &prop))
515 kbc->debounce_cnt = prop;
517 if (!of_property_read_u32(np, "nvidia,repeat-delay-ms", &prop))
518 kbc->repeat_cnt = prop;
520 if (of_find_property(np, "nvidia,needs-ghost-filter", NULL))
521 kbc->use_ghost_filter = true;
523 if (of_property_read_bool(np, "wakeup-source") ||
524 of_property_read_bool(np, "nvidia,wakeup-source")) /* legacy */
527 if (!of_get_property(np, "nvidia,kbc-row-pins", &proplen)) {
528 dev_err(kbc->dev, "property nvidia,kbc-row-pins not found\n");
531 num_rows = proplen / sizeof(u32);
533 if (!of_get_property(np, "nvidia,kbc-col-pins", &proplen)) {
534 dev_err(kbc->dev, "property nvidia,kbc-col-pins not found\n");
537 num_cols = proplen / sizeof(u32);
539 if (num_rows > kbc->hw_support->max_rows) {
541 "Number of rows is more than supported by hardware\n");
545 if (num_cols > kbc->hw_support->max_columns) {
547 "Number of cols is more than supported by hardware\n");
551 if (!of_get_property(np, "linux,keymap", &proplen)) {
552 dev_err(kbc->dev, "property linux,keymap not found\n");
556 if (!num_rows || !num_cols || ((num_rows + num_cols) > KBC_MAX_GPIO)) {
558 "keypad rows/columns not properly specified\n");
562 /* Set all pins as non-configured */
563 for (i = 0; i < kbc->num_rows_and_columns; i++)
564 kbc->pin_cfg[i].type = PIN_CFG_IGNORE;
566 ret = of_property_read_u32_array(np, "nvidia,kbc-row-pins",
569 dev_err(kbc->dev, "Rows configurations are not proper\n");
573 ret = of_property_read_u32_array(np, "nvidia,kbc-col-pins",
576 dev_err(kbc->dev, "Cols configurations are not proper\n");
580 for (i = 0; i < num_rows; i++) {
581 kbc->pin_cfg[rows_cfg[i]].type = PIN_CFG_ROW;
582 kbc->pin_cfg[rows_cfg[i]].num = i;
585 for (i = 0; i < num_cols; i++) {
586 kbc->pin_cfg[cols_cfg[i]].type = PIN_CFG_COL;
587 kbc->pin_cfg[cols_cfg[i]].num = i;
593 static const struct tegra_kbc_hw_support tegra20_kbc_hw_support = {
598 static const struct tegra_kbc_hw_support tegra11_kbc_hw_support = {
603 static const struct of_device_id tegra_kbc_of_match[] = {
604 { .compatible = "nvidia,tegra114-kbc", .data = &tegra11_kbc_hw_support},
605 { .compatible = "nvidia,tegra30-kbc", .data = &tegra20_kbc_hw_support},
606 { .compatible = "nvidia,tegra20-kbc", .data = &tegra20_kbc_hw_support},
609 MODULE_DEVICE_TABLE(of, tegra_kbc_of_match);
611 static int tegra_kbc_probe(struct platform_device *pdev)
613 struct tegra_kbc *kbc;
614 struct resource *res;
617 unsigned int debounce_cnt;
618 unsigned int scan_time_rows;
619 unsigned int keymap_rows;
620 const struct of_device_id *match;
622 match = of_match_device(tegra_kbc_of_match, &pdev->dev);
624 kbc = devm_kzalloc(&pdev->dev, sizeof(*kbc), GFP_KERNEL);
626 dev_err(&pdev->dev, "failed to alloc memory for kbc\n");
630 kbc->dev = &pdev->dev;
631 kbc->hw_support = match->data;
632 kbc->max_keys = kbc->hw_support->max_rows *
633 kbc->hw_support->max_columns;
634 kbc->num_rows_and_columns = kbc->hw_support->max_rows +
635 kbc->hw_support->max_columns;
636 keymap_rows = kbc->max_keys;
637 spin_lock_init(&kbc->lock);
639 err = tegra_kbc_parse_dt(kbc);
643 if (!tegra_kbc_check_pin_cfg(kbc, &num_rows))
646 kbc->irq = platform_get_irq(pdev, 0);
648 dev_err(&pdev->dev, "failed to get keyboard IRQ\n");
652 kbc->idev = devm_input_allocate_device(&pdev->dev);
654 dev_err(&pdev->dev, "failed to allocate input device\n");
658 timer_setup(&kbc->timer, tegra_kbc_keypress_timer, 0);
660 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
661 kbc->mmio = devm_ioremap_resource(&pdev->dev, res);
662 if (IS_ERR(kbc->mmio))
663 return PTR_ERR(kbc->mmio);
665 kbc->clk = devm_clk_get(&pdev->dev, NULL);
666 if (IS_ERR(kbc->clk)) {
667 dev_err(&pdev->dev, "failed to get keyboard clock\n");
668 return PTR_ERR(kbc->clk);
671 kbc->rst = devm_reset_control_get(&pdev->dev, "kbc");
672 if (IS_ERR(kbc->rst)) {
673 dev_err(&pdev->dev, "failed to get keyboard reset\n");
674 return PTR_ERR(kbc->rst);
678 * The time delay between two consecutive reads of the FIFO is
679 * the sum of the repeat time and the time taken for scanning
680 * the rows. There is an additional delay before the row scanning
681 * starts. The repoll delay is computed in milliseconds.
683 debounce_cnt = min(kbc->debounce_cnt, KBC_MAX_DEBOUNCE_CNT);
684 scan_time_rows = (KBC_ROW_SCAN_TIME + debounce_cnt) * num_rows;
685 kbc->repoll_dly = KBC_ROW_SCAN_DLY + scan_time_rows + kbc->repeat_cnt;
686 kbc->repoll_dly = DIV_ROUND_UP(kbc->repoll_dly, KBC_CYCLE_MS);
688 kbc->idev->name = pdev->name;
689 kbc->idev->id.bustype = BUS_HOST;
690 kbc->idev->dev.parent = &pdev->dev;
691 kbc->idev->open = tegra_kbc_open;
692 kbc->idev->close = tegra_kbc_close;
694 if (kbc->keymap_data && kbc->use_fn_map)
697 err = matrix_keypad_build_keymap(kbc->keymap_data, NULL,
699 kbc->hw_support->max_columns,
700 kbc->keycode, kbc->idev);
702 dev_err(&pdev->dev, "failed to setup keymap\n");
706 __set_bit(EV_REP, kbc->idev->evbit);
707 input_set_capability(kbc->idev, EV_MSC, MSC_SCAN);
709 input_set_drvdata(kbc->idev, kbc);
711 err = devm_request_irq(&pdev->dev, kbc->irq, tegra_kbc_isr,
712 IRQF_TRIGGER_HIGH, pdev->name, kbc);
714 dev_err(&pdev->dev, "failed to request keyboard IRQ\n");
718 disable_irq(kbc->irq);
720 err = input_register_device(kbc->idev);
722 dev_err(&pdev->dev, "failed to register input device\n");
726 platform_set_drvdata(pdev, kbc);
727 device_init_wakeup(&pdev->dev, kbc->wakeup);
732 #ifdef CONFIG_PM_SLEEP
733 static void tegra_kbc_set_keypress_interrupt(struct tegra_kbc *kbc, bool enable)
737 val = readl(kbc->mmio + KBC_CONTROL_0);
739 val |= KBC_CONTROL_KEYPRESS_INT_EN;
741 val &= ~KBC_CONTROL_KEYPRESS_INT_EN;
742 writel(val, kbc->mmio + KBC_CONTROL_0);
745 static int tegra_kbc_suspend(struct device *dev)
747 struct platform_device *pdev = to_platform_device(dev);
748 struct tegra_kbc *kbc = platform_get_drvdata(pdev);
750 mutex_lock(&kbc->idev->mutex);
751 if (device_may_wakeup(&pdev->dev)) {
752 disable_irq(kbc->irq);
753 del_timer_sync(&kbc->timer);
754 tegra_kbc_set_fifo_interrupt(kbc, false);
756 /* Forcefully clear the interrupt status */
757 writel(0x7, kbc->mmio + KBC_INT_0);
759 * Store the previous resident time of continuous polling mode.
760 * Force the keyboard into interrupt mode.
762 kbc->cp_to_wkup_dly = readl(kbc->mmio + KBC_TO_CNT_0);
763 writel(0, kbc->mmio + KBC_TO_CNT_0);
765 tegra_kbc_setup_wakekeys(kbc, true);
768 kbc->keypress_caused_wake = false;
769 /* Enable keypress interrupt before going into suspend. */
770 tegra_kbc_set_keypress_interrupt(kbc, true);
771 enable_irq(kbc->irq);
772 enable_irq_wake(kbc->irq);
774 if (kbc->idev->users)
777 mutex_unlock(&kbc->idev->mutex);
782 static int tegra_kbc_resume(struct device *dev)
784 struct platform_device *pdev = to_platform_device(dev);
785 struct tegra_kbc *kbc = platform_get_drvdata(pdev);
788 mutex_lock(&kbc->idev->mutex);
789 if (device_may_wakeup(&pdev->dev)) {
790 disable_irq_wake(kbc->irq);
791 tegra_kbc_setup_wakekeys(kbc, false);
792 /* We will use fifo interrupts for key detection. */
793 tegra_kbc_set_keypress_interrupt(kbc, false);
795 /* Restore the resident time of continuous polling mode. */
796 writel(kbc->cp_to_wkup_dly, kbc->mmio + KBC_TO_CNT_0);
798 tegra_kbc_set_fifo_interrupt(kbc, true);
800 if (kbc->keypress_caused_wake && kbc->wakeup_key) {
802 * We can't report events directly from the ISR
803 * because timekeeping is stopped when processing
804 * wakeup request and we get a nasty warning when
805 * we try to call do_gettimeofday() in evdev
808 input_report_key(kbc->idev, kbc->wakeup_key, 1);
809 input_sync(kbc->idev);
810 input_report_key(kbc->idev, kbc->wakeup_key, 0);
811 input_sync(kbc->idev);
814 if (kbc->idev->users)
815 err = tegra_kbc_start(kbc);
817 mutex_unlock(&kbc->idev->mutex);
823 static SIMPLE_DEV_PM_OPS(tegra_kbc_pm_ops, tegra_kbc_suspend, tegra_kbc_resume);
825 static struct platform_driver tegra_kbc_driver = {
826 .probe = tegra_kbc_probe,
829 .pm = &tegra_kbc_pm_ops,
830 .of_match_table = tegra_kbc_of_match,
833 module_platform_driver(tegra_kbc_driver);
835 MODULE_LICENSE("GPL");
837 MODULE_DESCRIPTION("Tegra matrix keyboard controller driver");
838 MODULE_ALIAS("platform:tegra-kbc");