blob: af7d63f2683a943df064c80a5a1a8feb30b9435a [file] [log] [blame]
Amol Jadica4f4c92011-01-13 20:19:34 -08001/*
2 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution.
11 * * Neither the name of Code Aurora nor
12 * the names of its contributors may be used to endorse or promote
13 * products derived from this software without specific prior written
14 * permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
20 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 */
29
Amol Jadi6db9fe32011-04-15 17:19:00 -070030#include <string.h>
Amol Jadica4f4c92011-01-13 20:19:34 -080031#include <dev/keys.h>
32#include <dev/gpio_keypad.h>
33
Amol Jadi6db9fe32011-04-15 17:19:00 -070034#define NUM_OF_ROWS 12
35#define NUM_OF_COLS 8
36
Amol Jadica4f4c92011-01-13 20:19:34 -080037#define BITS_IN_ELEMENT(x) (sizeof(x)[0] * 8)
38
Amol Jadi6db9fe32011-04-15 17:19:00 -070039static unsigned char qwerty_keys_old[NUM_OF_ROWS];
40static unsigned char qwerty_keys_new[NUM_OF_ROWS];
Amol Jadica4f4c92011-01-13 20:19:34 -080041
42#define KEYMAP_INDEX(row, col) (row)* BITS_IN_ELEMENT(qwerty_keys_new) + (col)
43
Amol Jadi6db9fe32011-04-15 17:19:00 -070044unsigned int qwerty_keymap[] = {
45 [KEYMAP_INDEX(3, 4)] = KEY_VOLUMEUP, /* Volume key on external Keyboard */
46 [KEYMAP_INDEX(4, 4)] = KEY_VOLUMEDOWN, /* Volume key on external Keyboard */
47 [KEYMAP_INDEX(0, 0)] = KEY_VOLUMEUP, /* Volume key on the device/CDP */
48 [KEYMAP_INDEX(0, 1)] = KEY_VOLUMEDOWN, /* Volume key on the device/CDP */
Amol Jadica4f4c92011-01-13 20:19:34 -080049};
50
Amol Jadi6db9fe32011-04-15 17:19:00 -070051
52struct qwerty_keypad_info qwerty_keypad = {
Amol Jadica4f4c92011-01-13 20:19:34 -080053 .keymap = qwerty_keymap,
54 .old_keys = qwerty_keys_old,
55 .rec_keys = qwerty_keys_new,
Amol Jadi6db9fe32011-04-15 17:19:00 -070056 .rows = NUM_OF_ROWS,
57 .columns = NUM_OF_COLS,
58 .num_of_reads = NUM_OF_ROWS,
Amol Jadica4f4c92011-01-13 20:19:34 -080059 .rd_func = &pa1_ssbi2_read_bytes,
60 .wr_func = &pa1_ssbi2_write_bytes,
61 .settle_time = 5 /* msec */,
62 .poll_time = 20 /* msec */,
63};
64
65void keypad_init(void)
66{
Amol Jadi6db9fe32011-04-15 17:19:00 -070067 memset(qwerty_keys_old, 0, sizeof(qwerty_keys_old));
68 memset(qwerty_keys_new, 0, sizeof(qwerty_keys_new));
69
Amol Jadica4f4c92011-01-13 20:19:34 -080070 ssbi_keypad_init(&qwerty_keypad);
71}