1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
/*
* arch/arm/mach-tegra/board-roth-kbc.c
* Keys configuration for Nvidia tegra3 roth platform.
*
* Copyright (C) 2012-2013 NVIDIA, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307, USA
*/
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <mach/io.h>
#include <linux/io.h>
#include <mach/iomap.h>
#include <mach/kbc.h>
#include <linux/gpio.h>
#include <linux/gpio_keys.h>
#include <linux/mfd/palmas.h>
#include "tegra-board-id.h"
#include "board.h"
#include "board-roth.h"
#include "devices.h"
#include "wakeups-t11x.h"
#define GPIO_KEY(_id, _gpio, _iswake) \
{ \
.code = _id, \
.gpio = TEGRA_GPIO_##_gpio, \
.active_low = 1, \
.desc = #_id, \
.type = EV_KEY, \
.wakeup = _iswake, \
.debounce_interval = 10, \
}
#define GPIO_IKEY(_id, _irq, _iswake, _deb) \
{ \
.code = _id, \
.gpio = -1, \
.irq = _irq, \
.desc = #_id, \
.type = EV_KEY, \
.wakeup = _iswake, \
.debounce_interval = _deb, \
}
/* Make KEY_POWER to index 0 only */
static struct gpio_keys_button roth_p2454_keys[] = {
[0] = GPIO_KEY(KEY_POWER, PQ0, 1),
[1] = GPIO_KEY(KEY_BACK, PR2, 0),
[2] = GPIO_KEY(KEY_HOME, PR1, 0),
[3] = {
.code = SW_LID,
.gpio = TEGRA_GPIO_HALL,
.irq = -1,
.type = EV_SW,
.desc = "Hall Effect Sensor",
.active_low = 1,
.wakeup = 1,
.debounce_interval = 0,
},
};
static struct gpio_keys_button roth_p2560_keys[] = {
[0] = GPIO_KEY(KEY_POWER, PQ0, 1),
[1] = GPIO_KEY(KEY_BACK, PR2, 0),
[2] = GPIO_KEY(KEY_HOME, PR1, 0),
[3] = {
.code = KEY_WAKEUP,
.gpio = TEGRA_GPIO_PI5,
.irq = -1,
.type = EV_KEY,
.desc = "Controller",
.active_low = 0,
.wakeup = 1,
.debounce_interval = 10,
},
[4] = {
.code = SW_LID,
.gpio = TEGRA_GPIO_HALL,
.irq = -1,
.type = EV_SW,
.desc = "Hall Effect Sensor",
.active_low = 1,
.wakeup = 1,
.debounce_interval = 0,
},
};
static int roth_wakeup_key(void)
{
int wakeup_key;
u64 status = readl(IO_ADDRESS(TEGRA_PMC_BASE) + PMC_WAKE_STATUS)
| (u64)readl(IO_ADDRESS(TEGRA_PMC_BASE)
+ PMC_WAKE2_STATUS) << 32;
if (status & (1ULL << TEGRA_WAKE_GPIO_PQ0))
wakeup_key = KEY_POWER;
else if (status & (1ULL << TEGRA_WAKE_GPIO_PI5))
wakeup_key = KEY_WAKEUP;
else if (status & (1ULL << TEGRA_WAKE_GPIO_PS0))
wakeup_key = SW_LID;
else
wakeup_key = -1;
return wakeup_key;
}
static struct gpio_keys_platform_data roth_p2560_keys_pdata = {
.buttons = roth_p2560_keys,
.nbuttons = ARRAY_SIZE(roth_p2560_keys),
.wakeup_key = roth_wakeup_key,
};
static struct platform_device roth_p2560_keys_device = {
.name = "gpio-keys",
.id = 0,
.dev = {
.platform_data = &roth_p2560_keys_pdata,
},
};
static struct gpio_keys_platform_data roth_p2454_keys_pdata = {
.buttons = roth_p2454_keys,
.nbuttons = ARRAY_SIZE(roth_p2454_keys),
.wakeup_key = roth_wakeup_key,
};
static struct platform_device roth_p2454_keys_device = {
.name = "gpio-keys",
.id = 0,
.dev = {
.platform_data = &roth_p2454_keys_pdata,
},
};
int __init roth_kbc_init(void)
{
struct board_info board_info;
tegra_get_board_info(&board_info);
if (board_info.board_id == BOARD_P2560)
platform_device_register(&roth_p2560_keys_device);
else
platform_device_register(&roth_p2454_keys_device);
return 0;
}
|