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>
29 #include <linux/clk.h>
30 #include <linux/slab.h>
34 #define KBC_MAX_DEBOUNCE_CNT 0x3ffu
36 /* KBC row scan time and delay for beginning the row scan. */
37 #define KBC_ROW_SCAN_TIME 16
38 #define KBC_ROW_SCAN_DLY 5
40 /* KBC uses a 32KHz clock so a cycle = 1/32Khz */
41 #define KBC_CYCLE_MS 32
45 /* KBC Control Register */
46 #define KBC_CONTROL_0 0x0
47 #define KBC_FIFO_TH_CNT_SHIFT(cnt) (cnt << 14)
48 #define KBC_DEBOUNCE_CNT_SHIFT(cnt) (cnt << 4)
49 #define KBC_CONTROL_FIFO_CNT_INT_EN (1 << 3)
50 #define KBC_CONTROL_KBC_EN (1 << 0)
52 /* KBC Interrupt Register */
54 #define KBC_INT_FIFO_CNT_INT_STATUS (1 << 2)
56 #define KBC_ROW_CFG0_0 0x8
57 #define KBC_COL_CFG0_0 0x18
58 #define KBC_TO_CNT_0 0x24
59 #define KBC_INIT_DLY_0 0x28
60 #define KBC_RPT_DLY_0 0x2c
61 #define KBC_KP_ENT0_0 0x30
62 #define KBC_KP_ENT1_0 0x34
63 #define KBC_ROW0_MASK_0 0x38
65 #define KBC_ROW_SHIFT 3
69 struct input_dev
*idev
;
72 unsigned int repoll_dly
;
73 unsigned long cp_dly_jiffies
;
74 unsigned int cp_to_wkup_dly
;
76 bool use_ghost_filter
;
77 const struct tegra_kbc_platform_data
*pdata
;
78 unsigned short keycode
[KBC_MAX_KEY
* 2];
79 unsigned short current_keys
[KBC_MAX_KPENT
];
80 unsigned int num_pressed_keys
;
81 struct timer_list timer
;
85 static const u32 tegra_kbc_default_keymap
[] = {
92 KEY(1, 7, KEY_LEFTMETA
),
94 KEY(2, 6, KEY_RIGHTALT
),
95 KEY(2, 7, KEY_LEFTALT
),
112 KEY(4, 7, KEY_SPACE
),
121 KEY(5, 7, KEY_BACKSLASH
),
123 KEY(6, 0, KEY_MINUS
),
129 KEY(6, 6, KEY_COMMA
),
132 KEY(7, 1, KEY_EQUAL
),
133 KEY(7, 2, KEY_RIGHTBRACE
),
134 KEY(7, 3, KEY_ENTER
),
137 KEY(8, 4, KEY_RIGHTSHIFT
),
138 KEY(8, 5, KEY_LEFTSHIFT
),
140 KEY(9, 5, KEY_RIGHTCTRL
),
141 KEY(9, 7, KEY_LEFTCTRL
),
143 KEY(11, 0, KEY_LEFTBRACE
),
145 KEY(11, 2, KEY_APOSTROPHE
),
146 KEY(11, 3, KEY_SEMICOLON
),
147 KEY(11, 4, KEY_SLASH
),
152 KEY(12, 2, KEY_BACKSPACE
),
156 KEY(12, 6, KEY_PRINT
),
157 KEY(12, 7, KEY_PAUSE
),
159 KEY(13, 0, KEY_INSERT
),
160 KEY(13, 1, KEY_DELETE
),
161 KEY(13, 3, KEY_PAGEUP
),
162 KEY(13, 4, KEY_PAGEDOWN
),
163 KEY(13, 5, KEY_RIGHT
),
164 KEY(13, 6, KEY_DOWN
),
165 KEY(13, 7, KEY_LEFT
),
177 KEY(15, 1, KEY_GRAVE
),
182 KEY(15, 6, KEY_CAPSLOCK
),
185 /* Software Handled Function Keys */
193 KEY(22, 1, KEY_KPSLASH
),
200 KEY(27, 1, KEY_KPASTERISK
),
201 KEY(27, 3, KEY_KPMINUS
),
202 KEY(27, 4, KEY_KPPLUS
),
203 KEY(27, 5, KEY_KPDOT
),
205 KEY(28, 5, KEY_VOLUMEUP
),
207 KEY(29, 3, KEY_HOME
),
209 KEY(29, 5, KEY_BRIGHTNESSDOWN
),
210 KEY(29, 6, KEY_VOLUMEDOWN
),
211 KEY(29, 7, KEY_BRIGHTNESSUP
),
213 KEY(30, 0, KEY_NUMLOCK
),
214 KEY(30, 1, KEY_SCROLLLOCK
),
215 KEY(30, 2, KEY_MUTE
),
217 KEY(31, 4, KEY_HELP
),
220 static const struct matrix_keymap_data tegra_kbc_default_keymap_data
= {
221 .keymap
= tegra_kbc_default_keymap
,
222 .keymap_size
= ARRAY_SIZE(tegra_kbc_default_keymap
),
225 static void tegra_kbc_report_released_keys(struct input_dev
*input
,
226 unsigned short old_keycodes
[],
227 unsigned int old_num_keys
,
228 unsigned short new_keycodes
[],
229 unsigned int new_num_keys
)
233 for (i
= 0; i
< old_num_keys
; i
++) {
234 for (j
= 0; j
< new_num_keys
; j
++)
235 if (old_keycodes
[i
] == new_keycodes
[j
])
238 if (j
== new_num_keys
)
239 input_report_key(input
, old_keycodes
[i
], 0);
243 static void tegra_kbc_report_pressed_keys(struct input_dev
*input
,
244 unsigned char scancodes
[],
245 unsigned short keycodes
[],
246 unsigned int num_pressed_keys
)
250 for (i
= 0; i
< num_pressed_keys
; i
++) {
251 input_event(input
, EV_MSC
, MSC_SCAN
, scancodes
[i
]);
252 input_report_key(input
, keycodes
[i
], 1);
256 static void tegra_kbc_report_keys(struct tegra_kbc
*kbc
)
258 unsigned char scancodes
[KBC_MAX_KPENT
];
259 unsigned short keycodes
[KBC_MAX_KPENT
];
262 unsigned int num_down
= 0;
263 bool fn_keypress
= false;
264 bool key_in_same_row
= false;
265 bool key_in_same_col
= false;
267 for (i
= 0; i
< KBC_MAX_KPENT
; i
++) {
269 val
= readl(kbc
->mmio
+ KBC_KP_ENT0_0
+ i
);
272 unsigned int col
= val
& 0x07;
273 unsigned int row
= (val
>> 3) & 0x0f;
274 unsigned char scancode
=
275 MATRIX_SCAN_CODE(row
, col
, KBC_ROW_SHIFT
);
277 scancodes
[num_down
] = scancode
;
278 keycodes
[num_down
] = kbc
->keycode
[scancode
];
279 /* If driver uses Fn map, do not report the Fn key. */
280 if ((keycodes
[num_down
] == KEY_FN
) && kbc
->use_fn_map
)
290 * Matrix keyboard designs are prone to keyboard ghosting.
291 * Ghosting occurs if there are 3 keys such that -
292 * any 2 of the 3 keys share a row, and any 2 of them share a column.
293 * If so ignore the key presses for this iteration.
295 if (kbc
->use_ghost_filter
&& num_down
>= 3) {
296 for (i
= 0; i
< num_down
; i
++) {
298 u8 curr_col
= scancodes
[i
] & 0x07;
299 u8 curr_row
= scancodes
[i
] >> KBC_ROW_SHIFT
;
302 * Find 2 keys such that one key is in the same row
303 * and the other is in the same column as the i-th key.
305 for (j
= i
+ 1; j
< num_down
; j
++) {
306 u8 col
= scancodes
[j
] & 0x07;
307 u8 row
= scancodes
[j
] >> KBC_ROW_SHIFT
;
310 key_in_same_col
= true;
312 key_in_same_row
= true;
318 * If the platform uses Fn keymaps, translate keys on a Fn keypress.
319 * Function keycodes are KBC_MAX_KEY apart from the plain keycodes.
322 for (i
= 0; i
< num_down
; i
++) {
323 scancodes
[i
] += KBC_MAX_KEY
;
324 keycodes
[i
] = kbc
->keycode
[scancodes
[i
]];
328 /* Ignore the key presses for this iteration? */
329 if (key_in_same_col
&& key_in_same_row
)
332 tegra_kbc_report_released_keys(kbc
->idev
,
333 kbc
->current_keys
, kbc
->num_pressed_keys
,
335 tegra_kbc_report_pressed_keys(kbc
->idev
, scancodes
, keycodes
, num_down
);
336 input_sync(kbc
->idev
);
338 memcpy(kbc
->current_keys
, keycodes
, sizeof(kbc
->current_keys
));
339 kbc
->num_pressed_keys
= num_down
;
342 static void tegra_kbc_set_fifo_interrupt(struct tegra_kbc
*kbc
, bool enable
)
346 val
= readl(kbc
->mmio
+ KBC_CONTROL_0
);
348 val
|= KBC_CONTROL_FIFO_CNT_INT_EN
;
350 val
&= ~KBC_CONTROL_FIFO_CNT_INT_EN
;
351 writel(val
, kbc
->mmio
+ KBC_CONTROL_0
);
354 static void tegra_kbc_keypress_timer(unsigned long data
)
356 struct tegra_kbc
*kbc
= (struct tegra_kbc
*)data
;
361 spin_lock_irqsave(&kbc
->lock
, flags
);
363 val
= (readl(kbc
->mmio
+ KBC_INT_0
) >> 4) & 0xf;
367 tegra_kbc_report_keys(kbc
);
370 * If more than one keys are pressed we need not wait
371 * for the repoll delay.
373 dly
= (val
== 1) ? kbc
->repoll_dly
: 1;
374 mod_timer(&kbc
->timer
, jiffies
+ msecs_to_jiffies(dly
));
376 /* Release any pressed keys and exit the polling loop */
377 for (i
= 0; i
< kbc
->num_pressed_keys
; i
++)
378 input_report_key(kbc
->idev
, kbc
->current_keys
[i
], 0);
379 input_sync(kbc
->idev
);
381 kbc
->num_pressed_keys
= 0;
383 /* All keys are released so enable the keypress interrupt */
384 tegra_kbc_set_fifo_interrupt(kbc
, true);
387 spin_unlock_irqrestore(&kbc
->lock
, flags
);
390 static irqreturn_t
tegra_kbc_isr(int irq
, void *args
)
392 struct tegra_kbc
*kbc
= args
;
396 spin_lock_irqsave(&kbc
->lock
, flags
);
399 * Quickly bail out & reenable interrupts if the fifo threshold
400 * count interrupt wasn't the interrupt source
402 val
= readl(kbc
->mmio
+ KBC_INT_0
);
403 writel(val
, kbc
->mmio
+ KBC_INT_0
);
405 if (val
& KBC_INT_FIFO_CNT_INT_STATUS
) {
407 * Until all keys are released, defer further processing to
408 * the polling loop in tegra_kbc_keypress_timer.
410 tegra_kbc_set_fifo_interrupt(kbc
, false);
411 mod_timer(&kbc
->timer
, jiffies
+ kbc
->cp_dly_jiffies
);
414 spin_unlock_irqrestore(&kbc
->lock
, flags
);
419 static void tegra_kbc_setup_wakekeys(struct tegra_kbc
*kbc
, bool filter
)
421 const struct tegra_kbc_platform_data
*pdata
= kbc
->pdata
;
423 unsigned int rst_val
;
425 /* Either mask all keys or none. */
426 rst_val
= (filter
&& !pdata
->wakeup
) ? ~0 : 0;
428 for (i
= 0; i
< KBC_MAX_ROW
; i
++)
429 writel(rst_val
, kbc
->mmio
+ KBC_ROW0_MASK_0
+ i
* 4);
432 static void tegra_kbc_config_pins(struct tegra_kbc
*kbc
)
434 const struct tegra_kbc_platform_data
*pdata
= kbc
->pdata
;
437 for (i
= 0; i
< KBC_MAX_GPIO
; i
++) {
438 u32 r_shft
= 5 * (i
% 6);
439 u32 c_shft
= 4 * (i
% 8);
440 u32 r_mask
= 0x1f << r_shft
;
441 u32 c_mask
= 0x0f << c_shft
;
442 u32 r_offs
= (i
/ 6) * 4 + KBC_ROW_CFG0_0
;
443 u32 c_offs
= (i
/ 8) * 4 + KBC_COL_CFG0_0
;
444 u32 row_cfg
= readl(kbc
->mmio
+ r_offs
);
445 u32 col_cfg
= readl(kbc
->mmio
+ c_offs
);
450 if (pdata
->pin_cfg
[i
].is_row
)
451 row_cfg
|= ((pdata
->pin_cfg
[i
].num
<< 1) | 1) << r_shft
;
453 col_cfg
|= ((pdata
->pin_cfg
[i
].num
<< 1) | 1) << c_shft
;
455 writel(row_cfg
, kbc
->mmio
+ r_offs
);
456 writel(col_cfg
, kbc
->mmio
+ c_offs
);
460 static int tegra_kbc_start(struct tegra_kbc
*kbc
)
462 const struct tegra_kbc_platform_data
*pdata
= kbc
->pdata
;
463 unsigned int debounce_cnt
;
466 clk_enable(kbc
->clk
);
468 /* Reset the KBC controller to clear all previous status.*/
469 tegra_periph_reset_assert(kbc
->clk
);
471 tegra_periph_reset_deassert(kbc
->clk
);
474 tegra_kbc_config_pins(kbc
);
475 tegra_kbc_setup_wakekeys(kbc
, false);
477 writel(pdata
->repeat_cnt
, kbc
->mmio
+ KBC_RPT_DLY_0
);
479 /* Keyboard debounce count is maximum of 12 bits. */
480 debounce_cnt
= min(pdata
->debounce_cnt
, KBC_MAX_DEBOUNCE_CNT
);
481 val
= KBC_DEBOUNCE_CNT_SHIFT(debounce_cnt
);
482 val
|= KBC_FIFO_TH_CNT_SHIFT(1); /* set fifo interrupt threshold to 1 */
483 val
|= KBC_CONTROL_FIFO_CNT_INT_EN
; /* interrupt on FIFO threshold */
484 val
|= KBC_CONTROL_KBC_EN
; /* enable */
485 writel(val
, kbc
->mmio
+ KBC_CONTROL_0
);
488 * Compute the delay(ns) from interrupt mode to continuous polling
489 * mode so the timer routine is scheduled appropriately.
491 val
= readl(kbc
->mmio
+ KBC_INIT_DLY_0
);
492 kbc
->cp_dly_jiffies
= usecs_to_jiffies((val
& 0xfffff) * 32);
494 kbc
->num_pressed_keys
= 0;
497 * Atomically clear out any remaining entries in the key FIFO
498 * and enable keyboard interrupts.
501 val
= readl(kbc
->mmio
+ KBC_INT_0
);
506 val
= readl(kbc
->mmio
+ KBC_KP_ENT0_0
);
507 val
= readl(kbc
->mmio
+ KBC_KP_ENT1_0
);
509 writel(0x7, kbc
->mmio
+ KBC_INT_0
);
511 enable_irq(kbc
->irq
);
516 static void tegra_kbc_stop(struct tegra_kbc
*kbc
)
521 spin_lock_irqsave(&kbc
->lock
, flags
);
522 val
= readl(kbc
->mmio
+ KBC_CONTROL_0
);
524 writel(val
, kbc
->mmio
+ KBC_CONTROL_0
);
525 spin_unlock_irqrestore(&kbc
->lock
, flags
);
527 disable_irq(kbc
->irq
);
528 del_timer_sync(&kbc
->timer
);
530 clk_disable(kbc
->clk
);
533 static int tegra_kbc_open(struct input_dev
*dev
)
535 struct tegra_kbc
*kbc
= input_get_drvdata(dev
);
537 return tegra_kbc_start(kbc
);
540 static void tegra_kbc_close(struct input_dev
*dev
)
542 struct tegra_kbc
*kbc
= input_get_drvdata(dev
);
544 return tegra_kbc_stop(kbc
);
547 static bool __devinit
548 tegra_kbc_check_pin_cfg(const struct tegra_kbc_platform_data
*pdata
,
549 struct device
*dev
, unsigned int *num_rows
)
555 for (i
= 0; i
< KBC_MAX_GPIO
; i
++) {
556 const struct tegra_kbc_pin_cfg
*pin_cfg
= &pdata
->pin_cfg
[i
];
558 if (pin_cfg
->is_row
) {
559 if (pin_cfg
->num
>= KBC_MAX_ROW
) {
561 "pin_cfg[%d]: invalid row number %d\n",
567 if (pin_cfg
->num
>= KBC_MAX_COL
) {
569 "pin_cfg[%d]: invalid column number %d\n",
579 static int __devinit
tegra_kbc_probe(struct platform_device
*pdev
)
581 const struct tegra_kbc_platform_data
*pdata
= pdev
->dev
.platform_data
;
582 const struct matrix_keymap_data
*keymap_data
;
583 struct tegra_kbc
*kbc
;
584 struct input_dev
*input_dev
;
585 struct resource
*res
;
589 unsigned int debounce_cnt
;
590 unsigned int scan_time_rows
;
595 if (!tegra_kbc_check_pin_cfg(pdata
, &pdev
->dev
, &num_rows
))
598 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
600 dev_err(&pdev
->dev
, "failed to get I/O memory\n");
604 irq
= platform_get_irq(pdev
, 0);
606 dev_err(&pdev
->dev
, "failed to get keyboard IRQ\n");
610 kbc
= kzalloc(sizeof(*kbc
), GFP_KERNEL
);
611 input_dev
= input_allocate_device();
612 if (!kbc
|| !input_dev
) {
618 kbc
->idev
= input_dev
;
620 spin_lock_init(&kbc
->lock
);
621 setup_timer(&kbc
->timer
, tegra_kbc_keypress_timer
, (unsigned long)kbc
);
623 res
= request_mem_region(res
->start
, resource_size(res
), pdev
->name
);
625 dev_err(&pdev
->dev
, "failed to request I/O memory\n");
630 kbc
->mmio
= ioremap(res
->start
, resource_size(res
));
632 dev_err(&pdev
->dev
, "failed to remap I/O memory\n");
634 goto err_free_mem_region
;
637 kbc
->clk
= clk_get(&pdev
->dev
, NULL
);
638 if (IS_ERR(kbc
->clk
)) {
639 dev_err(&pdev
->dev
, "failed to get keyboard clock\n");
640 err
= PTR_ERR(kbc
->clk
);
645 * The time delay between two consecutive reads of the FIFO is
646 * the sum of the repeat time and the time taken for scanning
647 * the rows. There is an additional delay before the row scanning
648 * starts. The repoll delay is computed in milliseconds.
650 debounce_cnt
= min(pdata
->debounce_cnt
, KBC_MAX_DEBOUNCE_CNT
);
651 scan_time_rows
= (KBC_ROW_SCAN_TIME
+ debounce_cnt
) * num_rows
;
652 kbc
->repoll_dly
= KBC_ROW_SCAN_DLY
+ scan_time_rows
+ pdata
->repeat_cnt
;
653 kbc
->repoll_dly
= DIV_ROUND_UP(kbc
->repoll_dly
, KBC_CYCLE_MS
);
655 input_dev
->name
= pdev
->name
;
656 input_dev
->id
.bustype
= BUS_HOST
;
657 input_dev
->dev
.parent
= &pdev
->dev
;
658 input_dev
->open
= tegra_kbc_open
;
659 input_dev
->close
= tegra_kbc_close
;
661 input_set_drvdata(input_dev
, kbc
);
663 input_dev
->evbit
[0] = BIT_MASK(EV_KEY
) | BIT_MASK(EV_REP
);
664 input_set_capability(input_dev
, EV_MSC
, MSC_SCAN
);
666 input_dev
->keycode
= kbc
->keycode
;
667 input_dev
->keycodesize
= sizeof(kbc
->keycode
[0]);
668 input_dev
->keycodemax
= KBC_MAX_KEY
;
669 if (pdata
->use_fn_map
)
670 input_dev
->keycodemax
*= 2;
672 kbc
->use_fn_map
= pdata
->use_fn_map
;
673 kbc
->use_ghost_filter
= pdata
->use_ghost_filter
;
674 keymap_data
= pdata
->keymap_data
?: &tegra_kbc_default_keymap_data
;
675 matrix_keypad_build_keymap(keymap_data
, KBC_ROW_SHIFT
,
676 input_dev
->keycode
, input_dev
->keybit
);
678 err
= request_irq(kbc
->irq
, tegra_kbc_isr
, IRQF_TRIGGER_HIGH
,
681 dev_err(&pdev
->dev
, "failed to request keyboard IRQ\n");
685 disable_irq(kbc
->irq
);
687 err
= input_register_device(kbc
->idev
);
689 dev_err(&pdev
->dev
, "failed to register input device\n");
693 platform_set_drvdata(pdev
, kbc
);
694 device_init_wakeup(&pdev
->dev
, pdata
->wakeup
);
699 free_irq(kbc
->irq
, pdev
);
705 release_mem_region(res
->start
, resource_size(res
));
707 input_free_device(input_dev
);
713 static int __devexit
tegra_kbc_remove(struct platform_device
*pdev
)
715 struct tegra_kbc
*kbc
= platform_get_drvdata(pdev
);
716 struct resource
*res
;
718 free_irq(kbc
->irq
, pdev
);
721 input_unregister_device(kbc
->idev
);
723 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
724 release_mem_region(res
->start
, resource_size(res
));
728 platform_set_drvdata(pdev
, NULL
);
733 #ifdef CONFIG_PM_SLEEP
734 static int tegra_kbc_suspend(struct device
*dev
)
736 struct platform_device
*pdev
= to_platform_device(dev
);
737 struct tegra_kbc
*kbc
= platform_get_drvdata(pdev
);
739 mutex_lock(&kbc
->idev
->mutex
);
740 if (device_may_wakeup(&pdev
->dev
)) {
741 disable_irq(kbc
->irq
);
742 del_timer_sync(&kbc
->timer
);
743 tegra_kbc_set_fifo_interrupt(kbc
, false);
745 /* Forcefully clear the interrupt status */
746 writel(0x7, kbc
->mmio
+ KBC_INT_0
);
748 * Store the previous resident time of continuous polling mode.
749 * Force the keyboard into interrupt mode.
751 kbc
->cp_to_wkup_dly
= readl(kbc
->mmio
+ KBC_TO_CNT_0
);
752 writel(0, kbc
->mmio
+ KBC_TO_CNT_0
);
754 tegra_kbc_setup_wakekeys(kbc
, true);
757 enable_irq_wake(kbc
->irq
);
759 if (kbc
->idev
->users
)
762 mutex_unlock(&kbc
->idev
->mutex
);
767 static int tegra_kbc_resume(struct device
*dev
)
769 struct platform_device
*pdev
= to_platform_device(dev
);
770 struct tegra_kbc
*kbc
= platform_get_drvdata(pdev
);
773 mutex_lock(&kbc
->idev
->mutex
);
774 if (device_may_wakeup(&pdev
->dev
)) {
775 disable_irq_wake(kbc
->irq
);
776 tegra_kbc_setup_wakekeys(kbc
, false);
778 /* Restore the resident time of continuous polling mode. */
779 writel(kbc
->cp_to_wkup_dly
, kbc
->mmio
+ KBC_TO_CNT_0
);
781 tegra_kbc_set_fifo_interrupt(kbc
, true);
783 enable_irq(kbc
->irq
);
785 if (kbc
->idev
->users
)
786 err
= tegra_kbc_start(kbc
);
788 mutex_unlock(&kbc
->idev
->mutex
);
794 static SIMPLE_DEV_PM_OPS(tegra_kbc_pm_ops
, tegra_kbc_suspend
, tegra_kbc_resume
);
796 static struct platform_driver tegra_kbc_driver
= {
797 .probe
= tegra_kbc_probe
,
798 .remove
= __devexit_p(tegra_kbc_remove
),
801 .owner
= THIS_MODULE
,
802 .pm
= &tegra_kbc_pm_ops
,
806 static void __exit
tegra_kbc_exit(void)
808 platform_driver_unregister(&tegra_kbc_driver
);
810 module_exit(tegra_kbc_exit
);
812 static int __init
tegra_kbc_init(void)
814 return platform_driver_register(&tegra_kbc_driver
);
816 module_init(tegra_kbc_init
);
818 MODULE_LICENSE("GPL");
819 MODULE_AUTHOR("Rakesh Iyer <riyer@nvidia.com>");
820 MODULE_DESCRIPTION("Tegra matrix keyboard controller driver");
821 MODULE_ALIAS("platform:tegra-kbc");