blob: 132dcd6833a2d9ed228c5a415c0eab76ba85abdb [file] [log] [blame]
Erik Gilling3c92db92010-03-15 19:40:06 -07001/*
2 * arch/arm/mach-tegra/gpio.c
3 *
4 * Copyright (c) 2010 Google, Inc
5 *
6 * Author:
7 * Erik Gilling <konkers@google.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#include <linux/init.h>
21#include <linux/irq.h>
Colin Cross2e47b8b2010-04-07 12:59:42 -070022#include <linux/interrupt.h>
Erik Gilling3c92db92010-03-15 19:40:06 -070023
24#include <linux/io.h>
25#include <linux/gpio.h>
26
27#include <mach/iomap.h>
Colin Cross2ea67fd2010-10-04 08:49:49 -070028#include <mach/suspend.h>
Erik Gilling3c92db92010-03-15 19:40:06 -070029
30#define GPIO_BANK(x) ((x) >> 5)
31#define GPIO_PORT(x) (((x) >> 3) & 0x3)
32#define GPIO_BIT(x) ((x) & 0x7)
33
34#define GPIO_REG(x) (IO_TO_VIRT(TEGRA_GPIO_BASE) + \
35 GPIO_BANK(x) * 0x80 + \
36 GPIO_PORT(x) * 4)
37
38#define GPIO_CNF(x) (GPIO_REG(x) + 0x00)
39#define GPIO_OE(x) (GPIO_REG(x) + 0x10)
40#define GPIO_OUT(x) (GPIO_REG(x) + 0X20)
41#define GPIO_IN(x) (GPIO_REG(x) + 0x30)
42#define GPIO_INT_STA(x) (GPIO_REG(x) + 0x40)
43#define GPIO_INT_ENB(x) (GPIO_REG(x) + 0x50)
44#define GPIO_INT_LVL(x) (GPIO_REG(x) + 0x60)
45#define GPIO_INT_CLR(x) (GPIO_REG(x) + 0x70)
46
47#define GPIO_MSK_CNF(x) (GPIO_REG(x) + 0x800)
48#define GPIO_MSK_OE(x) (GPIO_REG(x) + 0x810)
49#define GPIO_MSK_OUT(x) (GPIO_REG(x) + 0X820)
50#define GPIO_MSK_INT_STA(x) (GPIO_REG(x) + 0x840)
51#define GPIO_MSK_INT_ENB(x) (GPIO_REG(x) + 0x850)
52#define GPIO_MSK_INT_LVL(x) (GPIO_REG(x) + 0x860)
53
54#define GPIO_INT_LVL_MASK 0x010101
55#define GPIO_INT_LVL_EDGE_RISING 0x000101
56#define GPIO_INT_LVL_EDGE_FALLING 0x000100
57#define GPIO_INT_LVL_EDGE_BOTH 0x010100
58#define GPIO_INT_LVL_LEVEL_HIGH 0x000001
59#define GPIO_INT_LVL_LEVEL_LOW 0x000000
60
61struct tegra_gpio_bank {
62 int bank;
63 int irq;
64 spinlock_t lvl_lock[4];
Colin Cross2e47b8b2010-04-07 12:59:42 -070065#ifdef CONFIG_PM
66 u32 cnf[4];
67 u32 out[4];
68 u32 oe[4];
69 u32 int_enb[4];
70 u32 int_lvl[4];
71#endif
Erik Gilling3c92db92010-03-15 19:40:06 -070072};
73
74
75static struct tegra_gpio_bank tegra_gpio_banks[] = {
76 {.bank = 0, .irq = INT_GPIO1},
77 {.bank = 1, .irq = INT_GPIO2},
78 {.bank = 2, .irq = INT_GPIO3},
79 {.bank = 3, .irq = INT_GPIO4},
80 {.bank = 4, .irq = INT_GPIO5},
81 {.bank = 5, .irq = INT_GPIO6},
82 {.bank = 6, .irq = INT_GPIO7},
83};
84
85static int tegra_gpio_compose(int bank, int port, int bit)
86{
87 return (bank << 5) | ((port & 0x3) << 3) | (bit & 0x7);
88}
89
90static void tegra_gpio_mask_write(u32 reg, int gpio, int value)
91{
92 u32 val;
93
94 val = 0x100 << GPIO_BIT(gpio);
95 if (value)
96 val |= 1 << GPIO_BIT(gpio);
97 __raw_writel(val, reg);
98}
99
100void tegra_gpio_enable(int gpio)
101{
102 tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1);
103}
104
105void tegra_gpio_disable(int gpio)
106{
107 tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 0);
108}
109
110static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
111{
112 tegra_gpio_mask_write(GPIO_MSK_OUT(offset), offset, value);
113}
114
115static int tegra_gpio_get(struct gpio_chip *chip, unsigned offset)
116{
117 return (__raw_readl(GPIO_IN(offset)) >> GPIO_BIT(offset)) & 0x1;
118}
119
120static int tegra_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
121{
122 tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 0);
123 return 0;
124}
125
126static int tegra_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
127 int value)
128{
129 tegra_gpio_set(chip, offset, value);
130 tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 1);
131 return 0;
132}
133
134
135
136static struct gpio_chip tegra_gpio_chip = {
137 .label = "tegra-gpio",
138 .direction_input = tegra_gpio_direction_input,
139 .get = tegra_gpio_get,
140 .direction_output = tegra_gpio_direction_output,
141 .set = tegra_gpio_set,
142 .base = 0,
Colin Cross2e47b8b2010-04-07 12:59:42 -0700143 .ngpio = TEGRA_NR_GPIOS,
Erik Gilling3c92db92010-03-15 19:40:06 -0700144};
145
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100146static void tegra_gpio_irq_ack(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700147{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100148 int gpio = d->irq - INT_GPIO_BASE;
Erik Gilling3c92db92010-03-15 19:40:06 -0700149
150 __raw_writel(1 << GPIO_BIT(gpio), GPIO_INT_CLR(gpio));
151}
152
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100153static void tegra_gpio_irq_mask(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700154{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100155 int gpio = d->irq - INT_GPIO_BASE;
Erik Gilling3c92db92010-03-15 19:40:06 -0700156
157 tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 0);
158}
159
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100160static void tegra_gpio_irq_unmask(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700161{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100162 int gpio = d->irq - INT_GPIO_BASE;
Erik Gilling3c92db92010-03-15 19:40:06 -0700163
164 tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 1);
165}
166
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100167static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Erik Gilling3c92db92010-03-15 19:40:06 -0700168{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100169 int gpio = d->irq - INT_GPIO_BASE;
170 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
Erik Gilling3c92db92010-03-15 19:40:06 -0700171 int port = GPIO_PORT(gpio);
172 int lvl_type;
173 int val;
174 unsigned long flags;
175
176 switch (type & IRQ_TYPE_SENSE_MASK) {
177 case IRQ_TYPE_EDGE_RISING:
178 lvl_type = GPIO_INT_LVL_EDGE_RISING;
179 break;
180
181 case IRQ_TYPE_EDGE_FALLING:
182 lvl_type = GPIO_INT_LVL_EDGE_FALLING;
183 break;
184
185 case IRQ_TYPE_EDGE_BOTH:
186 lvl_type = GPIO_INT_LVL_EDGE_BOTH;
187 break;
188
189 case IRQ_TYPE_LEVEL_HIGH:
190 lvl_type = GPIO_INT_LVL_LEVEL_HIGH;
191 break;
192
193 case IRQ_TYPE_LEVEL_LOW:
194 lvl_type = GPIO_INT_LVL_LEVEL_LOW;
195 break;
196
197 default:
198 return -EINVAL;
199 }
200
201 spin_lock_irqsave(&bank->lvl_lock[port], flags);
202
203 val = __raw_readl(GPIO_INT_LVL(gpio));
204 val &= ~(GPIO_INT_LVL_MASK << GPIO_BIT(gpio));
205 val |= lvl_type << GPIO_BIT(gpio);
206 __raw_writel(val, GPIO_INT_LVL(gpio));
207
208 spin_unlock_irqrestore(&bank->lvl_lock[port], flags);
209
210 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Grant Likely867996c2011-01-15 22:41:27 -0700211 __set_irq_handler_unlocked(d->irq, handle_level_irq);
Erik Gilling3c92db92010-03-15 19:40:06 -0700212 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Grant Likely867996c2011-01-15 22:41:27 -0700213 __set_irq_handler_unlocked(d->irq, handle_edge_irq);
Erik Gilling3c92db92010-03-15 19:40:06 -0700214
215 return 0;
216}
217
218static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
219{
220 struct tegra_gpio_bank *bank;
221 int port;
222 int pin;
223 int unmasked = 0;
224
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100225 desc->irq_data.chip->irq_ack(&desc->irq_data);
Erik Gilling3c92db92010-03-15 19:40:06 -0700226
227 bank = get_irq_data(irq);
228
229 for (port = 0; port < 4; port++) {
230 int gpio = tegra_gpio_compose(bank->bank, port, 0);
231 unsigned long sta = __raw_readl(GPIO_INT_STA(gpio)) &
232 __raw_readl(GPIO_INT_ENB(gpio));
233 u32 lvl = __raw_readl(GPIO_INT_LVL(gpio));
234
235 for_each_set_bit(pin, &sta, 8) {
236 __raw_writel(1 << pin, GPIO_INT_CLR(gpio));
237
238 /* if gpio is edge triggered, clear condition
239 * before executing the hander so that we don't
240 * miss edges
241 */
242 if (lvl & (0x100 << pin)) {
243 unmasked = 1;
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100244 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Erik Gilling3c92db92010-03-15 19:40:06 -0700245 }
246
247 generic_handle_irq(gpio_to_irq(gpio + pin));
248 }
249 }
250
251 if (!unmasked)
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100252 desc->irq_data.chip->irq_unmask(&desc->irq_data);
Erik Gilling3c92db92010-03-15 19:40:06 -0700253
254}
255
Colin Cross2e47b8b2010-04-07 12:59:42 -0700256#ifdef CONFIG_PM
257void tegra_gpio_resume(void)
258{
259 unsigned long flags;
260 int b, p, i;
261
262 local_irq_save(flags);
263
264 for (b = 0; b < ARRAY_SIZE(tegra_gpio_banks); b++) {
265 struct tegra_gpio_bank *bank = &tegra_gpio_banks[b];
266
267 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
268 unsigned int gpio = (b<<5) | (p<<3);
269 __raw_writel(bank->cnf[p], GPIO_CNF(gpio));
270 __raw_writel(bank->out[p], GPIO_OUT(gpio));
271 __raw_writel(bank->oe[p], GPIO_OE(gpio));
272 __raw_writel(bank->int_lvl[p], GPIO_INT_LVL(gpio));
273 __raw_writel(bank->int_enb[p], GPIO_INT_ENB(gpio));
274 }
275 }
276
277 local_irq_restore(flags);
278
279 for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) {
280 struct irq_desc *desc = irq_to_desc(i);
281 if (!desc || (desc->status & IRQ_WAKEUP))
282 continue;
283 enable_irq(i);
284 }
285}
286
287void tegra_gpio_suspend(void)
288{
289 unsigned long flags;
290 int b, p, i;
291
292 for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) {
293 struct irq_desc *desc = irq_to_desc(i);
294 if (!desc)
295 continue;
296 if (desc->status & IRQ_WAKEUP) {
297 int gpio = i - INT_GPIO_BASE;
298 pr_debug("gpio %d.%d is wakeup\n", gpio/8, gpio&7);
299 continue;
300 }
301 disable_irq(i);
302 }
303
304 local_irq_save(flags);
305 for (b = 0; b < ARRAY_SIZE(tegra_gpio_banks); b++) {
306 struct tegra_gpio_bank *bank = &tegra_gpio_banks[b];
307
308 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
309 unsigned int gpio = (b<<5) | (p<<3);
310 bank->cnf[p] = __raw_readl(GPIO_CNF(gpio));
311 bank->out[p] = __raw_readl(GPIO_OUT(gpio));
312 bank->oe[p] = __raw_readl(GPIO_OE(gpio));
313 bank->int_enb[p] = __raw_readl(GPIO_INT_ENB(gpio));
314 bank->int_lvl[p] = __raw_readl(GPIO_INT_LVL(gpio));
315 }
316 }
317 local_irq_restore(flags);
318}
319
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100320static int tegra_gpio_wake_enable(struct irq_data *d, unsigned int enable)
Colin Cross2e47b8b2010-04-07 12:59:42 -0700321{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100322 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross2e47b8b2010-04-07 12:59:42 -0700323 return set_irq_wake(bank->irq, enable);
324}
325#endif
Erik Gilling3c92db92010-03-15 19:40:06 -0700326
327static struct irq_chip tegra_gpio_irq_chip = {
328 .name = "GPIO",
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100329 .irq_ack = tegra_gpio_irq_ack,
330 .irq_mask = tegra_gpio_irq_mask,
331 .irq_unmask = tegra_gpio_irq_unmask,
332 .irq_set_type = tegra_gpio_irq_set_type,
Colin Cross2e47b8b2010-04-07 12:59:42 -0700333#ifdef CONFIG_PM
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100334 .irq_set_wake = tegra_gpio_wake_enable,
Colin Cross2e47b8b2010-04-07 12:59:42 -0700335#endif
Erik Gilling3c92db92010-03-15 19:40:06 -0700336};
337
338
339/* This lock class tells lockdep that GPIO irqs are in a different
340 * category than their parents, so it won't report false recursion.
341 */
342static struct lock_class_key gpio_lock_class;
343
344static int __init tegra_gpio_init(void)
345{
346 struct tegra_gpio_bank *bank;
347 int i;
348 int j;
349
350 for (i = 0; i < 7; i++) {
351 for (j = 0; j < 4; j++) {
352 int gpio = tegra_gpio_compose(i, j, 0);
353 __raw_writel(0x00, GPIO_INT_ENB(gpio));
354 }
355 }
356
357 gpiochip_add(&tegra_gpio_chip);
358
Colin Cross2e47b8b2010-04-07 12:59:42 -0700359 for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) {
Erik Gilling3c92db92010-03-15 19:40:06 -0700360 bank = &tegra_gpio_banks[GPIO_BANK(irq_to_gpio(i))];
361
362 lockdep_set_class(&irq_desc[i].lock, &gpio_lock_class);
363 set_irq_chip_data(i, bank);
364 set_irq_chip(i, &tegra_gpio_irq_chip);
365 set_irq_handler(i, handle_simple_irq);
366 set_irq_flags(i, IRQF_VALID);
367 }
368
369 for (i = 0; i < ARRAY_SIZE(tegra_gpio_banks); i++) {
370 bank = &tegra_gpio_banks[i];
371
372 set_irq_chained_handler(bank->irq, tegra_gpio_irq_handler);
373 set_irq_data(bank->irq, bank);
374
375 for (j = 0; j < 4; j++)
376 spin_lock_init(&bank->lvl_lock[j]);
377 }
378
379 return 0;
380}
381
382postcore_initcall(tegra_gpio_init);
383
384#ifdef CONFIG_DEBUG_FS
385
386#include <linux/debugfs.h>
387#include <linux/seq_file.h>
388
389static int dbg_gpio_show(struct seq_file *s, void *unused)
390{
391 int i;
392 int j;
393
394 for (i = 0; i < 7; i++) {
395 for (j = 0; j < 4; j++) {
396 int gpio = tegra_gpio_compose(i, j, 0);
Colin Cross2e47b8b2010-04-07 12:59:42 -0700397 seq_printf(s,
398 "%d:%d %02x %02x %02x %02x %02x %02x %06x\n",
399 i, j,
400 __raw_readl(GPIO_CNF(gpio)),
401 __raw_readl(GPIO_OE(gpio)),
402 __raw_readl(GPIO_OUT(gpio)),
403 __raw_readl(GPIO_IN(gpio)),
404 __raw_readl(GPIO_INT_STA(gpio)),
405 __raw_readl(GPIO_INT_ENB(gpio)),
406 __raw_readl(GPIO_INT_LVL(gpio)));
Erik Gilling3c92db92010-03-15 19:40:06 -0700407 }
408 }
409 return 0;
410}
411
412static int dbg_gpio_open(struct inode *inode, struct file *file)
413{
414 return single_open(file, dbg_gpio_show, &inode->i_private);
415}
416
417static const struct file_operations debug_fops = {
418 .open = dbg_gpio_open,
419 .read = seq_read,
420 .llseek = seq_lseek,
421 .release = single_release,
422};
423
424static int __init tegra_gpio_debuginit(void)
425{
426 (void) debugfs_create_file("tegra_gpio", S_IRUGO,
427 NULL, NULL, &debug_fops);
428 return 0;
429}
430late_initcall(tegra_gpio_debuginit);
431#endif