blob: 76709b03572e98e947f0a30168fc59bedb4ea8cd [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01002 * Support functions for OMAP GPIO
3 *
Tony Lindgren92105bb2005-09-07 17:20:26 +01004 * Copyright (C) 2003-2005 Nokia Corporation
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01006 *
Santosh Shilimkar44169072009-05-28 14:16:04 -07007 * Copyright (C) 2009 Texas Instruments
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
9 *
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010015#include <linux/init.h>
16#include <linux/module.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010017#include <linux/interrupt.h>
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +020018#include <linux/syscore_ops.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010019#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000020#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080022#include <linux/slab.h>
23#include <linux/pm_runtime.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010024
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010026#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/irqs.h>
28#include <mach/gpio.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010029#include <asm/mach/irq.h>
30
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010031struct gpio_bank {
Tony Lindgren9f7065d2009-10-19 15:25:20 -070032 unsigned long pbase;
Tony Lindgren92105bb2005-09-07 17:20:26 +010033 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010034 u16 irq;
35 u16 virtual_irq_start;
Tony Lindgren92105bb2005-09-07 17:20:26 +010036 int method;
Tony Lindgren140455f2010-02-12 12:26:48 -080037#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Tony Lindgren92105bb2005-09-07 17:20:26 +010038 u32 suspend_wakeup;
39 u32 saved_wakeup;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080040#endif
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080041 u32 non_wakeup_gpios;
42 u32 enabled_non_wakeup_gpios;
43
44 u32 saved_datain;
45 u32 saved_fallingdetect;
46 u32 saved_risingdetect;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080047 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080048 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010049 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080050 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080051 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080052 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080053 u32 dbck_enable_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080054 struct device *dev;
55 bool dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -080056 int stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010057};
58
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -080059#ifdef CONFIG_ARCH_OMAP3
Rajendra Nayak40c670f2008-09-26 17:47:48 +053060struct omap3_gpio_regs {
Rajendra Nayak40c670f2008-09-26 17:47:48 +053061 u32 irqenable1;
62 u32 irqenable2;
63 u32 wake_en;
64 u32 ctrl;
65 u32 oe;
66 u32 leveldetect0;
67 u32 leveldetect1;
68 u32 risingdetect;
69 u32 fallingdetect;
70 u32 dataout;
Rajendra Nayak40c670f2008-09-26 17:47:48 +053071};
72
73static struct omap3_gpio_regs gpio_context[OMAP34XX_NR_GPIOS];
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -080074#endif
75
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080076/*
77 * TODO: Cleanup gpio_bank usage as it is having information
78 * related to all instances of the device
79 */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010080static struct gpio_bank *gpio_bank;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080081
82static int bank_width;
83
Varadarajan, Charulathac95d10b2010-12-07 16:26:56 -080084/* TODO: Analyze removing gpio_bank_count usage from driver code */
85int gpio_bank_count;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010086
87static inline struct gpio_bank *get_gpio_bank(int gpio)
88{
Tony Lindgren6e60e792006-04-02 17:46:23 +010089 if (cpu_is_omap15xx()) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010090 if (OMAP_GPIO_IS_MPUIO(gpio))
91 return &gpio_bank[0];
92 return &gpio_bank[1];
93 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010094 if (cpu_is_omap16xx()) {
95 if (OMAP_GPIO_IS_MPUIO(gpio))
96 return &gpio_bank[0];
97 return &gpio_bank[1 + (gpio >> 4)];
98 }
Zebediah C. McClure56739a62009-03-23 18:07:40 -070099 if (cpu_is_omap7xx()) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100100 if (OMAP_GPIO_IS_MPUIO(gpio))
101 return &gpio_bank[0];
102 return &gpio_bank[1 + (gpio >> 5)];
103 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100104 if (cpu_is_omap24xx())
105 return &gpio_bank[gpio >> 5];
Santosh Shilimkar44169072009-05-28 14:16:04 -0700106 if (cpu_is_omap34xx() || cpu_is_omap44xx())
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -0800107 return &gpio_bank[gpio >> 5];
David Brownelle031ab22008-12-10 17:35:27 -0800108 BUG();
109 return NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100110}
111
112static inline int get_gpio_index(int gpio)
113{
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700114 if (cpu_is_omap7xx())
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100115 return gpio & 0x1f;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100116 if (cpu_is_omap24xx())
117 return gpio & 0x1f;
Santosh Shilimkar44169072009-05-28 14:16:04 -0700118 if (cpu_is_omap34xx() || cpu_is_omap44xx())
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -0800119 return gpio & 0x1f;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100120 return gpio & 0x0f;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100121}
122
123static inline int gpio_valid(int gpio)
124{
125 if (gpio < 0)
126 return -1;
Tony Lindgrend11ac972008-01-12 15:35:04 -0800127 if (cpu_class_is_omap1() && OMAP_GPIO_IS_MPUIO(gpio)) {
Jonathan McDowell193e68b2006-09-25 12:41:30 +0300128 if (gpio >= OMAP_MAX_GPIO_LINES + 16)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100129 return -1;
130 return 0;
131 }
Tony Lindgren6e60e792006-04-02 17:46:23 +0100132 if (cpu_is_omap15xx() && gpio < 16)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100133 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100134 if ((cpu_is_omap16xx()) && gpio < 64)
135 return 0;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700136 if (cpu_is_omap7xx() && gpio < 192)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100137 return 0;
Tony Lindgren25d6f632010-08-02 14:21:39 +0300138 if (cpu_is_omap2420() && gpio < 128)
139 return 0;
140 if (cpu_is_omap2430() && gpio < 160)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100141 return 0;
Santosh Shilimkar44169072009-05-28 14:16:04 -0700142 if ((cpu_is_omap34xx() || cpu_is_omap44xx()) && gpio < 192)
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -0800143 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100144 return -1;
145}
146
147static int check_gpio(int gpio)
148{
Roel Kluind32b20f2009-11-17 14:39:03 -0800149 if (unlikely(gpio_valid(gpio) < 0)) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150 printk(KERN_ERR "omap-gpio: invalid GPIO %d\n", gpio);
151 dump_stack();
152 return -1;
153 }
154 return 0;
155}
156
157static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
158{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100159 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100160 u32 l;
161
162 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800163#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100164 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800165 reg += OMAP_MPUIO_IO_CNTL / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100166 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800167#endif
168#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100169 case METHOD_GPIO_1510:
170 reg += OMAP1510_GPIO_DIR_CONTROL;
171 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800172#endif
173#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100174 case METHOD_GPIO_1610:
175 reg += OMAP1610_GPIO_DIRECTION;
176 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800177#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100178#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100179 case METHOD_GPIO_7XX:
180 reg += OMAP7XX_GPIO_DIR_CONTROL;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700181 break;
182#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800183#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100184 case METHOD_GPIO_24XX:
185 reg += OMAP24XX_GPIO_OE;
186 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800187#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530188#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800189 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530190 reg += OMAP4_GPIO_OE;
191 break;
192#endif
David Brownelle5c56ed2006-12-06 17:13:59 -0800193 default:
194 WARN_ON(1);
195 return;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100196 }
197 l = __raw_readl(reg);
198 if (is_input)
199 l |= 1 << gpio;
200 else
201 l &= ~(1 << gpio);
202 __raw_writel(l, reg);
203}
204
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100205static void _set_gpio_dataout(struct gpio_bank *bank, int gpio, int enable)
206{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100207 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100208 u32 l = 0;
209
210 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800211#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100212 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800213 reg += OMAP_MPUIO_OUTPUT / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100214 l = __raw_readl(reg);
215 if (enable)
216 l |= 1 << gpio;
217 else
218 l &= ~(1 << gpio);
219 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800220#endif
221#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100222 case METHOD_GPIO_1510:
223 reg += OMAP1510_GPIO_DATA_OUTPUT;
224 l = __raw_readl(reg);
225 if (enable)
226 l |= 1 << gpio;
227 else
228 l &= ~(1 << gpio);
229 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800230#endif
231#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100232 case METHOD_GPIO_1610:
233 if (enable)
234 reg += OMAP1610_GPIO_SET_DATAOUT;
235 else
236 reg += OMAP1610_GPIO_CLEAR_DATAOUT;
237 l = 1 << gpio;
238 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800239#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100240#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100241 case METHOD_GPIO_7XX:
242 reg += OMAP7XX_GPIO_DATA_OUTPUT;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700243 l = __raw_readl(reg);
244 if (enable)
245 l |= 1 << gpio;
246 else
247 l &= ~(1 << gpio);
248 break;
249#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800250#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100251 case METHOD_GPIO_24XX:
252 if (enable)
253 reg += OMAP24XX_GPIO_SETDATAOUT;
254 else
255 reg += OMAP24XX_GPIO_CLEARDATAOUT;
256 l = 1 << gpio;
257 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800258#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530259#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800260 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530261 if (enable)
262 reg += OMAP4_GPIO_SETDATAOUT;
263 else
264 reg += OMAP4_GPIO_CLEARDATAOUT;
265 l = 1 << gpio;
266 break;
267#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100268 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800269 WARN_ON(1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100270 return;
271 }
272 __raw_writel(l, reg);
273}
274
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300275static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100276{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100277 void __iomem *reg;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100278
279 if (check_gpio(gpio) < 0)
David Brownelle5c56ed2006-12-06 17:13:59 -0800280 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100281 reg = bank->base;
282 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800283#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100284 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800285 reg += OMAP_MPUIO_INPUT_LATCH / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100286 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800287#endif
288#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100289 case METHOD_GPIO_1510:
290 reg += OMAP1510_GPIO_DATA_INPUT;
291 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800292#endif
293#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100294 case METHOD_GPIO_1610:
295 reg += OMAP1610_GPIO_DATAIN;
296 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800297#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100298#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100299 case METHOD_GPIO_7XX:
300 reg += OMAP7XX_GPIO_DATA_INPUT;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700301 break;
302#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800303#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100304 case METHOD_GPIO_24XX:
305 reg += OMAP24XX_GPIO_DATAIN;
306 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800307#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530308#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800309 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530310 reg += OMAP4_GPIO_DATAIN;
311 break;
312#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100313 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800314 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100315 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100316 return (__raw_readl(reg)
317 & (1 << get_gpio_index(gpio))) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100318}
319
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300320static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
321{
322 void __iomem *reg;
323
324 if (check_gpio(gpio) < 0)
325 return -EINVAL;
326 reg = bank->base;
327
328 switch (bank->method) {
329#ifdef CONFIG_ARCH_OMAP1
330 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800331 reg += OMAP_MPUIO_OUTPUT / bank->stride;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300332 break;
333#endif
334#ifdef CONFIG_ARCH_OMAP15XX
335 case METHOD_GPIO_1510:
336 reg += OMAP1510_GPIO_DATA_OUTPUT;
337 break;
338#endif
339#ifdef CONFIG_ARCH_OMAP16XX
340 case METHOD_GPIO_1610:
341 reg += OMAP1610_GPIO_DATAOUT;
342 break;
343#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100344#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100345 case METHOD_GPIO_7XX:
346 reg += OMAP7XX_GPIO_DATA_OUTPUT;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300347 break;
348#endif
Charulatha V9f096862010-05-14 12:05:27 -0700349#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300350 case METHOD_GPIO_24XX:
351 reg += OMAP24XX_GPIO_DATAOUT;
352 break;
353#endif
Charulatha V9f096862010-05-14 12:05:27 -0700354#ifdef CONFIG_ARCH_OMAP4
355 case METHOD_GPIO_44XX:
356 reg += OMAP4_GPIO_DATAOUT;
357 break;
358#endif
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300359 default:
360 return -EINVAL;
361 }
362
363 return (__raw_readl(reg) & (1 << get_gpio_index(gpio))) != 0;
364}
365
Tony Lindgren92105bb2005-09-07 17:20:26 +0100366#define MOD_REG_BIT(reg, bit_mask, set) \
367do { \
368 int l = __raw_readl(base + reg); \
369 if (set) l |= bit_mask; \
370 else l &= ~bit_mask; \
371 __raw_writel(l, base + reg); \
372} while(0)
373
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700374/**
375 * _set_gpio_debounce - low level gpio debounce time
376 * @bank: the gpio bank we're acting upon
377 * @gpio: the gpio number on this @gpio
378 * @debounce: debounce time to use
379 *
380 * OMAP's debounce time is in 31us steps so we need
381 * to convert and round up to the closest unit.
382 */
383static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
384 unsigned debounce)
385{
386 void __iomem *reg = bank->base;
387 u32 val;
388 u32 l;
389
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800390 if (!bank->dbck_flag)
391 return;
392
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700393 if (debounce < 32)
394 debounce = 0x01;
395 else if (debounce > 7936)
396 debounce = 0xff;
397 else
398 debounce = (debounce / 0x1f) - 1;
399
400 l = 1 << get_gpio_index(gpio);
401
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800402 if (bank->method == METHOD_GPIO_44XX)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700403 reg += OMAP4_GPIO_DEBOUNCINGTIME;
404 else
405 reg += OMAP24XX_GPIO_DEBOUNCE_VAL;
406
407 __raw_writel(debounce, reg);
408
409 reg = bank->base;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800410 if (bank->method == METHOD_GPIO_44XX)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700411 reg += OMAP4_GPIO_DEBOUNCENABLE;
412 else
413 reg += OMAP24XX_GPIO_DEBOUNCE_EN;
414
415 val = __raw_readl(reg);
416
417 if (debounce) {
418 val |= l;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800419 clk_enable(bank->dbck);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700420 } else {
421 val &= ~l;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800422 clk_disable(bank->dbck);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700423 }
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300424 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700425
426 __raw_writel(val, reg);
427}
428
Tony Lindgren140455f2010-02-12 12:26:48 -0800429#ifdef CONFIG_ARCH_OMAP2PLUS
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700430static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio,
431 int trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100432{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800433 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100434 u32 gpio_bit = 1 << gpio;
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530435 u32 val;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100436
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530437 if (cpu_is_omap44xx()) {
438 MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT0, gpio_bit,
439 trigger & IRQ_TYPE_LEVEL_LOW);
440 MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT1, gpio_bit,
441 trigger & IRQ_TYPE_LEVEL_HIGH);
442 MOD_REG_BIT(OMAP4_GPIO_RISINGDETECT, gpio_bit,
443 trigger & IRQ_TYPE_EDGE_RISING);
444 MOD_REG_BIT(OMAP4_GPIO_FALLINGDETECT, gpio_bit,
445 trigger & IRQ_TYPE_EDGE_FALLING);
446 } else {
447 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT0, gpio_bit,
448 trigger & IRQ_TYPE_LEVEL_LOW);
449 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT1, gpio_bit,
450 trigger & IRQ_TYPE_LEVEL_HIGH);
451 MOD_REG_BIT(OMAP24XX_GPIO_RISINGDETECT, gpio_bit,
452 trigger & IRQ_TYPE_EDGE_RISING);
453 MOD_REG_BIT(OMAP24XX_GPIO_FALLINGDETECT, gpio_bit,
454 trigger & IRQ_TYPE_EDGE_FALLING);
455 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800456 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530457 if (cpu_is_omap44xx()) {
458 if (trigger != 0)
459 __raw_writel(1 << gpio, bank->base+
460 OMAP4_GPIO_IRQWAKEN0);
461 else {
462 val = __raw_readl(bank->base +
463 OMAP4_GPIO_IRQWAKEN0);
464 __raw_writel(val & (~(1 << gpio)), bank->base +
465 OMAP4_GPIO_IRQWAKEN0);
466 }
467 } else {
Chunqiu Wang699117a62009-06-24 17:13:39 +0000468 /*
469 * GPIO wakeup request can only be generated on edge
470 * transitions
471 */
472 if (trigger & IRQ_TYPE_EDGE_BOTH)
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530473 __raw_writel(1 << gpio, bank->base
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700474 + OMAP24XX_GPIO_SETWKUENA);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530475 else
476 __raw_writel(1 << gpio, bank->base
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700477 + OMAP24XX_GPIO_CLEARWKUENA);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530478 }
Tero Kristoa118b5f2008-12-22 14:27:12 +0200479 }
480 /* This part needs to be executed always for OMAP34xx */
481 if (cpu_is_omap34xx() || (bank->non_wakeup_gpios & gpio_bit)) {
Chunqiu Wang699117a62009-06-24 17:13:39 +0000482 /*
483 * Log the edge gpio and manually trigger the IRQ
484 * after resume if the input level changes
485 * to avoid irq lost during PER RET/OFF mode
486 * Applies for omap2 non-wakeup gpio and all omap3 gpios
487 */
488 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800489 bank->enabled_non_wakeup_gpios |= gpio_bit;
490 else
491 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
492 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700493
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530494 if (cpu_is_omap44xx()) {
495 bank->level_mask =
496 __raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT0) |
497 __raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT1);
498 } else {
499 bank->level_mask =
500 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0) |
501 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
502 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100503}
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800504#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +0100505
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800506#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800507/*
508 * This only applies to chips that can't do both rising and falling edge
509 * detection at once. For all other chips, this function is a noop.
510 */
511static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
512{
513 void __iomem *reg = bank->base;
514 u32 l = 0;
515
516 switch (bank->method) {
Cory Maccarrone4318f362010-01-08 10:29:04 -0800517 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800518 reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800519 break;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800520#ifdef CONFIG_ARCH_OMAP15XX
521 case METHOD_GPIO_1510:
522 reg += OMAP1510_GPIO_INT_CONTROL;
523 break;
524#endif
525#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
526 case METHOD_GPIO_7XX:
527 reg += OMAP7XX_GPIO_INT_CONTROL;
528 break;
529#endif
530 default:
531 return;
532 }
533
534 l = __raw_readl(reg);
535 if ((l >> gpio) & 1)
536 l &= ~(1 << gpio);
537 else
538 l |= 1 << gpio;
539
540 __raw_writel(l, reg);
541}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800542#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800543
Tony Lindgren92105bb2005-09-07 17:20:26 +0100544static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
545{
546 void __iomem *reg = bank->base;
547 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100548
549 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800550#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100551 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800552 reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100553 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000554 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800555 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100556 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100557 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100558 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100559 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100560 else
561 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100562 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800563#endif
564#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100565 case METHOD_GPIO_1510:
566 reg += OMAP1510_GPIO_INT_CONTROL;
567 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000568 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800569 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100570 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100571 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100572 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100573 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100574 else
575 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100576 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800577#endif
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800578#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100579 case METHOD_GPIO_1610:
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100580 if (gpio & 0x08)
581 reg += OMAP1610_GPIO_EDGE_CTRL2;
582 else
583 reg += OMAP1610_GPIO_EDGE_CTRL1;
584 gpio &= 0x07;
585 l = __raw_readl(reg);
586 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100587 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100588 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100589 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100590 l |= 1 << (gpio << 1);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800591 if (trigger)
592 /* Enable wake-up during idle for dynamic tick */
593 __raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_SET_WAKEUPENA);
594 else
595 __raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100596 break;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800597#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100598#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100599 case METHOD_GPIO_7XX:
600 reg += OMAP7XX_GPIO_INT_CONTROL;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700601 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000602 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800603 bank->toggle_mask |= 1 << gpio;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700604 if (trigger & IRQ_TYPE_EDGE_RISING)
605 l |= 1 << gpio;
606 else if (trigger & IRQ_TYPE_EDGE_FALLING)
607 l &= ~(1 << gpio);
608 else
609 goto bad;
610 break;
611#endif
Tony Lindgren140455f2010-02-12 12:26:48 -0800612#ifdef CONFIG_ARCH_OMAP2PLUS
Tony Lindgren92105bb2005-09-07 17:20:26 +0100613 case METHOD_GPIO_24XX:
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800614 case METHOD_GPIO_44XX:
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800615 set_24xx_gpio_triggering(bank, gpio, trigger);
Mika Westerbergf7c5cc42010-12-29 13:01:31 +0200616 return 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800617#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100618 default:
Tony Lindgren92105bb2005-09-07 17:20:26 +0100619 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100620 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100621 __raw_writel(l, reg);
622 return 0;
623bad:
624 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100625}
626
Lennert Buytenheke9191022010-11-29 11:17:17 +0100627static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100628{
629 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100630 unsigned gpio;
631 int retval;
David Brownella6472532008-03-03 04:33:30 -0800632 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100633
Lennert Buytenheke9191022010-11-29 11:17:17 +0100634 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
635 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100636 else
Lennert Buytenheke9191022010-11-29 11:17:17 +0100637 gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638
639 if (check_gpio(gpio) < 0)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100640 return -EINVAL;
641
David Brownelle5c56ed2006-12-06 17:13:59 -0800642 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100643 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800644
645 /* OMAP1 allows only only edge triggering */
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -0800646 if (!cpu_class_is_omap2()
David Brownelle5c56ed2006-12-06 17:13:59 -0800647 && (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100648 return -EINVAL;
649
Lennert Buytenheke9191022010-11-29 11:17:17 +0100650 bank = irq_data_get_irq_chip_data(d);
David Brownella6472532008-03-03 04:33:30 -0800651 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100652 retval = _set_gpio_triggering(bank, get_gpio_index(gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800653 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800654
655 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100656 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800657 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100658 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800659
Tony Lindgren92105bb2005-09-07 17:20:26 +0100660 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100661}
662
663static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
664{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100665 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100666
667 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800668#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100669 case METHOD_MPUIO:
670 /* MPUIO irqstatus is reset by reading the status register,
671 * so do nothing here */
672 return;
David Brownelle5c56ed2006-12-06 17:13:59 -0800673#endif
674#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100675 case METHOD_GPIO_1510:
676 reg += OMAP1510_GPIO_INT_STATUS;
677 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800678#endif
679#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100680 case METHOD_GPIO_1610:
681 reg += OMAP1610_GPIO_IRQSTATUS1;
682 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800683#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100684#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100685 case METHOD_GPIO_7XX:
686 reg += OMAP7XX_GPIO_INT_STATUS;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700687 break;
688#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800689#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100690 case METHOD_GPIO_24XX:
691 reg += OMAP24XX_GPIO_IRQSTATUS1;
692 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800693#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530694#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800695 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530696 reg += OMAP4_GPIO_IRQSTATUS0;
697 break;
698#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100699 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800700 WARN_ON(1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100701 return;
702 }
703 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300704
705 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800706 if (cpu_is_omap24xx() || cpu_is_omap34xx())
707 reg = bank->base + OMAP24XX_GPIO_IRQSTATUS2;
708 else if (cpu_is_omap44xx())
709 reg = bank->base + OMAP4_GPIO_IRQSTATUS1;
710
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530711 if (cpu_is_omap24xx() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Roger Quadrosbedfd152009-04-23 11:10:50 -0700712 __raw_writel(gpio_mask, reg);
713
714 /* Flush posted write for the irq status to avoid spurious interrupts */
715 __raw_readl(reg);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530716 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100717}
718
719static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
720{
721 _clear_gpio_irqbank(bank, 1 << get_gpio_index(gpio));
722}
723
Imre Deakea6dedd2006-06-26 16:16:00 -0700724static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
725{
726 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700727 int inv = 0;
728 u32 l;
729 u32 mask;
Imre Deakea6dedd2006-06-26 16:16:00 -0700730
731 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800732#ifdef CONFIG_ARCH_OMAP1
Imre Deakea6dedd2006-06-26 16:16:00 -0700733 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800734 reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
Imre Deak99c47702006-06-26 16:16:07 -0700735 mask = 0xffff;
736 inv = 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700737 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800738#endif
739#ifdef CONFIG_ARCH_OMAP15XX
Imre Deakea6dedd2006-06-26 16:16:00 -0700740 case METHOD_GPIO_1510:
741 reg += OMAP1510_GPIO_INT_MASK;
Imre Deak99c47702006-06-26 16:16:07 -0700742 mask = 0xffff;
743 inv = 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700744 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800745#endif
746#ifdef CONFIG_ARCH_OMAP16XX
Imre Deakea6dedd2006-06-26 16:16:00 -0700747 case METHOD_GPIO_1610:
748 reg += OMAP1610_GPIO_IRQENABLE1;
Imre Deak99c47702006-06-26 16:16:07 -0700749 mask = 0xffff;
Imre Deakea6dedd2006-06-26 16:16:00 -0700750 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800751#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100752#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100753 case METHOD_GPIO_7XX:
754 reg += OMAP7XX_GPIO_INT_MASK;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700755 mask = 0xffffffff;
756 inv = 1;
757 break;
758#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800759#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Imre Deakea6dedd2006-06-26 16:16:00 -0700760 case METHOD_GPIO_24XX:
761 reg += OMAP24XX_GPIO_IRQENABLE1;
Imre Deak99c47702006-06-26 16:16:07 -0700762 mask = 0xffffffff;
Imre Deakea6dedd2006-06-26 16:16:00 -0700763 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800764#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530765#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800766 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530767 reg += OMAP4_GPIO_IRQSTATUSSET0;
768 mask = 0xffffffff;
769 break;
770#endif
Imre Deakea6dedd2006-06-26 16:16:00 -0700771 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800772 WARN_ON(1);
Imre Deakea6dedd2006-06-26 16:16:00 -0700773 return 0;
774 }
775
Imre Deak99c47702006-06-26 16:16:07 -0700776 l = __raw_readl(reg);
777 if (inv)
778 l = ~l;
779 l &= mask;
780 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700781}
782
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100783static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask, int enable)
784{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100785 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100786 u32 l;
787
788 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800789#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100790 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800791 reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100792 l = __raw_readl(reg);
793 if (enable)
794 l &= ~(gpio_mask);
795 else
796 l |= gpio_mask;
797 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800798#endif
799#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100800 case METHOD_GPIO_1510:
801 reg += OMAP1510_GPIO_INT_MASK;
802 l = __raw_readl(reg);
803 if (enable)
804 l &= ~(gpio_mask);
805 else
806 l |= gpio_mask;
807 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800808#endif
809#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100810 case METHOD_GPIO_1610:
811 if (enable)
812 reg += OMAP1610_GPIO_SET_IRQENABLE1;
813 else
814 reg += OMAP1610_GPIO_CLEAR_IRQENABLE1;
815 l = gpio_mask;
816 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800817#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100818#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100819 case METHOD_GPIO_7XX:
820 reg += OMAP7XX_GPIO_INT_MASK;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700821 l = __raw_readl(reg);
822 if (enable)
823 l &= ~(gpio_mask);
824 else
825 l |= gpio_mask;
826 break;
827#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800828#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100829 case METHOD_GPIO_24XX:
830 if (enable)
831 reg += OMAP24XX_GPIO_SETIRQENABLE1;
832 else
833 reg += OMAP24XX_GPIO_CLEARIRQENABLE1;
834 l = gpio_mask;
835 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800836#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530837#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800838 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530839 if (enable)
840 reg += OMAP4_GPIO_IRQSTATUSSET0;
841 else
842 reg += OMAP4_GPIO_IRQSTATUSCLR0;
843 l = gpio_mask;
844 break;
845#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100846 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800847 WARN_ON(1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100848 return;
849 }
850 __raw_writel(l, reg);
851}
852
853static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
854{
855 _enable_gpio_irqbank(bank, 1 << get_gpio_index(gpio), enable);
856}
857
Tony Lindgren92105bb2005-09-07 17:20:26 +0100858/*
859 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
860 * 1510 does not seem to have a wake-up register. If JTAG is connected
861 * to the target, system will wake up always on GPIO events. While
862 * system is running all registered GPIO interrupts need to have wake-up
863 * enabled. When system is suspended, only selected GPIO interrupts need
864 * to have wake-up enabled.
865 */
866static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
867{
Tony Lindgren4cc64202010-01-08 10:29:05 -0800868 unsigned long uninitialized_var(flags);
David Brownella6472532008-03-03 04:33:30 -0800869
Tony Lindgren92105bb2005-09-07 17:20:26 +0100870 switch (bank->method) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800871#ifdef CONFIG_ARCH_OMAP16XX
David Brownell11a78b72006-12-06 17:14:11 -0800872 case METHOD_MPUIO:
Tony Lindgren92105bb2005-09-07 17:20:26 +0100873 case METHOD_GPIO_1610:
David Brownella6472532008-03-03 04:33:30 -0800874 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700875 if (enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100876 bank->suspend_wakeup |= (1 << gpio);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700877 else
Tony Lindgren92105bb2005-09-07 17:20:26 +0100878 bank->suspend_wakeup &= ~(1 << gpio);
David Brownella6472532008-03-03 04:33:30 -0800879 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100880 return 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800881#endif
Tony Lindgren140455f2010-02-12 12:26:48 -0800882#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800883 case METHOD_GPIO_24XX:
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800884 case METHOD_GPIO_44XX:
David Brownell11a78b72006-12-06 17:14:11 -0800885 if (bank->non_wakeup_gpios & (1 << gpio)) {
886 printk(KERN_ERR "Unable to modify wakeup on "
887 "non-wakeup GPIO%d\n",
888 (bank - gpio_bank) * 32 + gpio);
889 return -EINVAL;
890 }
David Brownella6472532008-03-03 04:33:30 -0800891 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700892 if (enable)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800893 bank->suspend_wakeup |= (1 << gpio);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700894 else
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800895 bank->suspend_wakeup &= ~(1 << gpio);
David Brownella6472532008-03-03 04:33:30 -0800896 spin_unlock_irqrestore(&bank->lock, flags);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800897 return 0;
898#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +0100899 default:
900 printk(KERN_ERR "Can't enable GPIO wakeup for method %i\n",
901 bank->method);
902 return -EINVAL;
903 }
904}
905
Tony Lindgren4196dd62006-09-25 12:41:38 +0300906static void _reset_gpio(struct gpio_bank *bank, int gpio)
907{
908 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
909 _set_gpio_irqenable(bank, gpio, 0);
910 _clear_gpio_irqstatus(bank, gpio);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100911 _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300912}
913
Tony Lindgren92105bb2005-09-07 17:20:26 +0100914/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100915static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100916{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100917 unsigned int gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100918 struct gpio_bank *bank;
919 int retval;
920
921 if (check_gpio(gpio) < 0)
922 return -ENODEV;
Lennert Buytenheke9191022010-11-29 11:17:17 +0100923 bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100924 retval = _set_gpio_wakeup(bank, get_gpio_index(gpio), enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100925
926 return retval;
927}
928
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800929static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100930{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800931 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800932 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100933
David Brownella6472532008-03-03 04:33:30 -0800934 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100935
Tony Lindgren4196dd62006-09-25 12:41:38 +0300936 /* Set trigger to none. You need to enable the desired trigger with
937 * request_irq() or set_irq_type().
938 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800939 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100940
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000941#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100942 if (bank->method == METHOD_GPIO_1510) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100943 void __iomem *reg;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100944
Tony Lindgren92105bb2005-09-07 17:20:26 +0100945 /* Claim the pin for MPU */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100946 reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800947 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100948 }
949#endif
Charulatha V058af1e2009-11-22 10:11:25 -0800950 if (!cpu_class_is_omap1()) {
951 if (!bank->mod_usage) {
Charulatha V9f096862010-05-14 12:05:27 -0700952 void __iomem *reg = bank->base;
Charulatha V058af1e2009-11-22 10:11:25 -0800953 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700954
955 if (cpu_is_omap24xx() || cpu_is_omap34xx())
956 reg += OMAP24XX_GPIO_CTRL;
957 else if (cpu_is_omap44xx())
958 reg += OMAP4_GPIO_CTRL;
959 ctrl = __raw_readl(reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800960 /* Module is enabled, clocks are not gated */
Charulatha V9f096862010-05-14 12:05:27 -0700961 ctrl &= 0xFFFFFFFE;
962 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800963 }
964 bank->mod_usage |= 1 << offset;
965 }
David Brownella6472532008-03-03 04:33:30 -0800966 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100967
968 return 0;
969}
970
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800971static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100972{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800973 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800974 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100975
David Brownella6472532008-03-03 04:33:30 -0800976 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100977#ifdef CONFIG_ARCH_OMAP16XX
978 if (bank->method == METHOD_GPIO_1610) {
979 /* Disable wake-up during idle for dynamic tick */
980 void __iomem *reg = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800981 __raw_writel(1 << offset, reg);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100982 }
983#endif
Charulatha V9f096862010-05-14 12:05:27 -0700984#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
985 if (bank->method == METHOD_GPIO_24XX) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100986 /* Disable wake-up during idle for dynamic tick */
987 void __iomem *reg = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800988 __raw_writel(1 << offset, reg);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100989 }
990#endif
Charulatha V9f096862010-05-14 12:05:27 -0700991#ifdef CONFIG_ARCH_OMAP4
992 if (bank->method == METHOD_GPIO_44XX) {
993 /* Disable wake-up during idle for dynamic tick */
994 void __iomem *reg = bank->base + OMAP4_GPIO_IRQWAKEN0;
995 __raw_writel(1 << offset, reg);
996 }
997#endif
Charulatha V058af1e2009-11-22 10:11:25 -0800998 if (!cpu_class_is_omap1()) {
999 bank->mod_usage &= ~(1 << offset);
1000 if (!bank->mod_usage) {
Charulatha V9f096862010-05-14 12:05:27 -07001001 void __iomem *reg = bank->base;
Charulatha V058af1e2009-11-22 10:11:25 -08001002 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -07001003
1004 if (cpu_is_omap24xx() || cpu_is_omap34xx())
1005 reg += OMAP24XX_GPIO_CTRL;
1006 else if (cpu_is_omap44xx())
1007 reg += OMAP4_GPIO_CTRL;
1008 ctrl = __raw_readl(reg);
Charulatha V058af1e2009-11-22 10:11:25 -08001009 /* Module is disabled, clocks are gated */
1010 ctrl |= 1;
Charulatha V9f096862010-05-14 12:05:27 -07001011 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -08001012 }
1013 }
Jarkko Nikula3ff164e2008-12-10 17:35:27 -08001014 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -08001015 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001016}
1017
1018/*
1019 * We need to unmask the GPIO bank interrupt as soon as possible to
1020 * avoid missing GPIO interrupts for other lines in the bank.
1021 * Then we need to mask-read-clear-unmask the triggered GPIO lines
1022 * in the bank to avoid missing nested interrupts for a GPIO line.
1023 * If we wait to unmask individual GPIO lines in the bank after the
1024 * line's interrupt handler has been run, we may miss some nested
1025 * interrupts.
1026 */
Russell King10dd5ce2006-11-23 11:41:32 +00001027static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001028{
Tony Lindgren92105bb2005-09-07 17:20:26 +01001029 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001030 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -08001031 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001032 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -07001033 u32 retrigger = 0;
1034 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +00001035 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001036
Will Deaconee144182011-02-21 13:46:08 +00001037 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001038
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001039 bank = irq_get_handler_data(irq);
David Brownelle5c56ed2006-12-06 17:13:59 -08001040#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001041 if (bank->method == METHOD_MPUIO)
Tony Lindgren5de62b82010-12-07 16:26:58 -08001042 isr_reg = bank->base +
1043 OMAP_MPUIO_GPIO_INT / bank->stride;
David Brownelle5c56ed2006-12-06 17:13:59 -08001044#endif
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001045#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001046 if (bank->method == METHOD_GPIO_1510)
1047 isr_reg = bank->base + OMAP1510_GPIO_INT_STATUS;
1048#endif
1049#if defined(CONFIG_ARCH_OMAP16XX)
1050 if (bank->method == METHOD_GPIO_1610)
1051 isr_reg = bank->base + OMAP1610_GPIO_IRQSTATUS1;
1052#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +01001053#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +01001054 if (bank->method == METHOD_GPIO_7XX)
1055 isr_reg = bank->base + OMAP7XX_GPIO_INT_STATUS;
Zebediah C. McClure56739a62009-03-23 18:07:40 -07001056#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001057#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001058 if (bank->method == METHOD_GPIO_24XX)
1059 isr_reg = bank->base + OMAP24XX_GPIO_IRQSTATUS1;
1060#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301061#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001062 if (bank->method == METHOD_GPIO_44XX)
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301063 isr_reg = bank->base + OMAP4_GPIO_IRQSTATUS0;
1064#endif
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -08001065
1066 if (WARN_ON(!isr_reg))
1067 goto exit;
1068
Tony Lindgren92105bb2005-09-07 17:20:26 +01001069 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +01001070 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -07001071 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +01001072
Imre Deakea6dedd2006-06-26 16:16:00 -07001073 enabled = _get_gpio_irqbank_mask(bank);
1074 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +01001075
1076 if (cpu_is_omap15xx() && (bank->method == METHOD_MPUIO))
1077 isr &= 0x0000ffff;
1078
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001079 if (cpu_class_is_omap2()) {
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001080 level_mask = bank->level_mask & enabled;
Imre Deakea6dedd2006-06-26 16:16:00 -07001081 }
Tony Lindgren6e60e792006-04-02 17:46:23 +01001082
1083 /* clear edge sensitive interrupts before handler(s) are
1084 called so that we don't miss any interrupt occurred while
1085 executing them */
1086 _enable_gpio_irqbank(bank, isr_saved & ~level_mask, 0);
1087 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
1088 _enable_gpio_irqbank(bank, isr_saved & ~level_mask, 1);
1089
1090 /* if there is only edge sensitive GPIO pin interrupts
1091 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -07001092 if (!level_mask && !unmasked) {
1093 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +00001094 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -07001095 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001096
Imre Deakea6dedd2006-06-26 16:16:00 -07001097 isr |= retrigger;
1098 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001099 if (!isr)
1100 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001101
Tony Lindgren92105bb2005-09-07 17:20:26 +01001102 gpio_irq = bank->virtual_irq_start;
1103 for (; isr != 0; isr >>= 1, gpio_irq++) {
Cory Maccarrone4318f362010-01-08 10:29:04 -08001104 gpio_index = get_gpio_index(irq_to_gpio(gpio_irq));
1105
Tony Lindgren92105bb2005-09-07 17:20:26 +01001106 if (!(isr & 1))
1107 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +02001108
Cory Maccarrone4318f362010-01-08 10:29:04 -08001109#ifdef CONFIG_ARCH_OMAP1
1110 /*
1111 * Some chips can't respond to both rising and falling
1112 * at the same time. If this irq was requested with
1113 * both flags, we need to flip the ICR data for the IRQ
1114 * to respond to the IRQ for the opposite direction.
1115 * This will be indicated in the bank toggle_mask.
1116 */
1117 if (bank->toggle_mask & (1 << gpio_index))
1118 _toggle_gpio_edge_triggering(bank, gpio_index);
1119#endif
1120
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +01001121 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001122 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001123 }
Imre Deakea6dedd2006-06-26 16:16:00 -07001124 /* if bank has any level sensitive GPIO pin interrupt
1125 configured, we must unmask the bank interrupt only after
1126 handler(s) are executed in order to avoid spurious bank
1127 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -08001128exit:
Imre Deakea6dedd2006-06-26 16:16:00 -07001129 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +00001130 chained_irq_exit(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001131}
1132
Lennert Buytenheke9191022010-11-29 11:17:17 +01001133static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +03001134{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001135 unsigned int gpio = d->irq - IH_GPIO_BASE;
1136 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren4196dd62006-09-25 12:41:38 +03001137
1138 _reset_gpio(bank, gpio);
1139}
1140
Lennert Buytenheke9191022010-11-29 11:17:17 +01001141static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001142{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001143 unsigned int gpio = d->irq - IH_GPIO_BASE;
1144 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001145
1146 _clear_gpio_irqstatus(bank, gpio);
1147}
1148
Lennert Buytenheke9191022010-11-29 11:17:17 +01001149static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001150{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001151 unsigned int gpio = d->irq - IH_GPIO_BASE;
1152 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001153
1154 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman55b60192009-06-04 15:57:10 -07001155 _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001156}
1157
Lennert Buytenheke9191022010-11-29 11:17:17 +01001158static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001159{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001160 unsigned int gpio = d->irq - IH_GPIO_BASE;
1161 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001162 unsigned int irq_mask = 1 << get_gpio_index(gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +01001163 u32 trigger = irqd_get_trigger_type(d);
Kevin Hilman55b60192009-06-04 15:57:10 -07001164
1165 if (trigger)
1166 _set_gpio_triggering(bank, get_gpio_index(gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001167
1168 /* For level-triggered GPIOs, the clearing must be done after
1169 * the HW source is cleared, thus after the handler has run */
1170 if (bank->level_mask & irq_mask) {
1171 _set_gpio_irqenable(bank, gpio, 0);
1172 _clear_gpio_irqstatus(bank, gpio);
1173 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001174
Kevin Hilman4de8c752008-01-16 21:56:14 -08001175 _set_gpio_irqenable(bank, gpio, 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001176}
1177
David Brownelle5c56ed2006-12-06 17:13:59 -08001178static struct irq_chip gpio_irq_chip = {
1179 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +01001180 .irq_shutdown = gpio_irq_shutdown,
1181 .irq_ack = gpio_ack_irq,
1182 .irq_mask = gpio_mask_irq,
1183 .irq_unmask = gpio_unmask_irq,
1184 .irq_set_type = gpio_irq_type,
1185 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -08001186};
1187
1188/*---------------------------------------------------------------------*/
1189
1190#ifdef CONFIG_ARCH_OMAP1
1191
1192/* MPUIO uses the always-on 32k clock */
1193
Lennert Buytenheke9191022010-11-29 11:17:17 +01001194static void mpuio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001195{
1196 /* The ISR is reset automatically, so do nothing here. */
1197}
1198
Lennert Buytenheke9191022010-11-29 11:17:17 +01001199static void mpuio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001200{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001201 unsigned int gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
1202 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001203
1204 _set_gpio_irqenable(bank, gpio, 0);
1205}
1206
Lennert Buytenheke9191022010-11-29 11:17:17 +01001207static void mpuio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001208{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001209 unsigned int gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
1210 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001211
1212 _set_gpio_irqenable(bank, gpio, 1);
1213}
1214
David Brownelle5c56ed2006-12-06 17:13:59 -08001215static struct irq_chip mpuio_irq_chip = {
1216 .name = "MPUIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +01001217 .irq_ack = mpuio_ack_irq,
1218 .irq_mask = mpuio_mask_irq,
1219 .irq_unmask = mpuio_unmask_irq,
1220 .irq_set_type = gpio_irq_type,
David Brownell11a78b72006-12-06 17:14:11 -08001221#ifdef CONFIG_ARCH_OMAP16XX
1222 /* REVISIT: assuming only 16xx supports MPUIO wake events */
Lennert Buytenheke9191022010-11-29 11:17:17 +01001223 .irq_set_wake = gpio_wake_enable,
David Brownell11a78b72006-12-06 17:14:11 -08001224#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001225};
1226
David Brownelle5c56ed2006-12-06 17:13:59 -08001227
1228#define bank_is_mpuio(bank) ((bank)->method == METHOD_MPUIO)
1229
David Brownell11a78b72006-12-06 17:14:11 -08001230
1231#ifdef CONFIG_ARCH_OMAP16XX
1232
1233#include <linux/platform_device.h>
1234
Magnus Damm79ee0312009-07-08 13:22:04 +02001235static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -08001236{
Magnus Damm79ee0312009-07-08 13:22:04 +02001237 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -08001238 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -08001239 void __iomem *mask_reg = bank->base +
1240 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -08001241 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -08001242
David Brownella6472532008-03-03 04:33:30 -08001243 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001244 bank->saved_wakeup = __raw_readl(mask_reg);
1245 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -08001246 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001247
1248 return 0;
1249}
1250
Magnus Damm79ee0312009-07-08 13:22:04 +02001251static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -08001252{
Magnus Damm79ee0312009-07-08 13:22:04 +02001253 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -08001254 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -08001255 void __iomem *mask_reg = bank->base +
1256 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -08001257 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -08001258
David Brownella6472532008-03-03 04:33:30 -08001259 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001260 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -08001261 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001262
1263 return 0;
1264}
1265
Alexey Dobriyan47145212009-12-14 18:00:08 -08001266static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +02001267 .suspend_noirq = omap_mpuio_suspend_noirq,
1268 .resume_noirq = omap_mpuio_resume_noirq,
1269};
1270
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001271/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -08001272static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -08001273 .driver = {
1274 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +02001275 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -08001276 },
1277};
1278
1279static struct platform_device omap_mpuio_device = {
1280 .name = "mpuio",
1281 .id = -1,
1282 .dev = {
1283 .driver = &omap_mpuio_driver.driver,
1284 }
1285 /* could list the /proc/iomem resources */
1286};
1287
1288static inline void mpuio_init(void)
1289{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001290 struct gpio_bank *bank = get_gpio_bank(OMAP_MPUIO(0));
1291 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -07001292
David Brownell11a78b72006-12-06 17:14:11 -08001293 if (platform_driver_register(&omap_mpuio_driver) == 0)
1294 (void) platform_device_register(&omap_mpuio_device);
1295}
1296
1297#else
1298static inline void mpuio_init(void) {}
1299#endif /* 16xx */
1300
David Brownelle5c56ed2006-12-06 17:13:59 -08001301#else
1302
1303extern struct irq_chip mpuio_irq_chip;
1304
1305#define bank_is_mpuio(bank) 0
David Brownell11a78b72006-12-06 17:14:11 -08001306static inline void mpuio_init(void) {}
David Brownelle5c56ed2006-12-06 17:13:59 -08001307
1308#endif
1309
1310/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001311
David Brownell52e31342008-03-03 12:43:23 -08001312/* REVISIT these are stupid implementations! replace by ones that
1313 * don't switch on METHOD_* and which mostly avoid spinlocks
1314 */
1315
1316static int gpio_input(struct gpio_chip *chip, unsigned offset)
1317{
1318 struct gpio_bank *bank;
1319 unsigned long flags;
1320
1321 bank = container_of(chip, struct gpio_bank, chip);
1322 spin_lock_irqsave(&bank->lock, flags);
1323 _set_gpio_direction(bank, offset, 1);
1324 spin_unlock_irqrestore(&bank->lock, flags);
1325 return 0;
1326}
1327
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001328static int gpio_is_input(struct gpio_bank *bank, int mask)
1329{
1330 void __iomem *reg = bank->base;
1331
1332 switch (bank->method) {
1333 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -08001334 reg += OMAP_MPUIO_IO_CNTL / bank->stride;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001335 break;
1336 case METHOD_GPIO_1510:
1337 reg += OMAP1510_GPIO_DIR_CONTROL;
1338 break;
1339 case METHOD_GPIO_1610:
1340 reg += OMAP1610_GPIO_DIRECTION;
1341 break;
Alistair Buxton7c006922009-09-22 10:02:58 +01001342 case METHOD_GPIO_7XX:
1343 reg += OMAP7XX_GPIO_DIR_CONTROL;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001344 break;
1345 case METHOD_GPIO_24XX:
1346 reg += OMAP24XX_GPIO_OE;
1347 break;
Charulatha V9f096862010-05-14 12:05:27 -07001348 case METHOD_GPIO_44XX:
1349 reg += OMAP4_GPIO_OE;
1350 break;
1351 default:
1352 WARN_ONCE(1, "gpio_is_input: incorrect OMAP GPIO method");
1353 return -EINVAL;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001354 }
1355 return __raw_readl(reg) & mask;
1356}
1357
David Brownell52e31342008-03-03 12:43:23 -08001358static int gpio_get(struct gpio_chip *chip, unsigned offset)
1359{
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001360 struct gpio_bank *bank;
1361 void __iomem *reg;
1362 int gpio;
1363 u32 mask;
1364
1365 gpio = chip->base + offset;
1366 bank = get_gpio_bank(gpio);
1367 reg = bank->base;
1368 mask = 1 << get_gpio_index(gpio);
1369
1370 if (gpio_is_input(bank, mask))
1371 return _get_gpio_datain(bank, gpio);
1372 else
1373 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -08001374}
1375
1376static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
1377{
1378 struct gpio_bank *bank;
1379 unsigned long flags;
1380
1381 bank = container_of(chip, struct gpio_bank, chip);
1382 spin_lock_irqsave(&bank->lock, flags);
1383 _set_gpio_dataout(bank, offset, value);
1384 _set_gpio_direction(bank, offset, 0);
1385 spin_unlock_irqrestore(&bank->lock, flags);
1386 return 0;
1387}
1388
Felipe Balbi168ef3d2010-05-26 14:42:23 -07001389static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
1390 unsigned debounce)
1391{
1392 struct gpio_bank *bank;
1393 unsigned long flags;
1394
1395 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001396
1397 if (!bank->dbck) {
1398 bank->dbck = clk_get(bank->dev, "dbclk");
1399 if (IS_ERR(bank->dbck))
1400 dev_err(bank->dev, "Could not get gpio dbck\n");
1401 }
1402
Felipe Balbi168ef3d2010-05-26 14:42:23 -07001403 spin_lock_irqsave(&bank->lock, flags);
1404 _set_gpio_debounce(bank, offset, debounce);
1405 spin_unlock_irqrestore(&bank->lock, flags);
1406
1407 return 0;
1408}
1409
David Brownell52e31342008-03-03 12:43:23 -08001410static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
1411{
1412 struct gpio_bank *bank;
1413 unsigned long flags;
1414
1415 bank = container_of(chip, struct gpio_bank, chip);
1416 spin_lock_irqsave(&bank->lock, flags);
1417 _set_gpio_dataout(bank, offset, value);
1418 spin_unlock_irqrestore(&bank->lock, flags);
1419}
1420
David Brownella007b702008-12-10 17:35:25 -08001421static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
1422{
1423 struct gpio_bank *bank;
1424
1425 bank = container_of(chip, struct gpio_bank, chip);
1426 return bank->virtual_irq_start + offset;
1427}
1428
David Brownell52e31342008-03-03 12:43:23 -08001429/*---------------------------------------------------------------------*/
1430
Tony Lindgren9a748052010-12-07 16:26:56 -08001431static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001432{
1433 u32 rev;
1434
Tony Lindgren9a748052010-12-07 16:26:56 -08001435 if (cpu_is_omap16xx() && !(bank->method != METHOD_MPUIO))
1436 rev = __raw_readw(bank->base + OMAP1610_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001437 else if (cpu_is_omap24xx() || cpu_is_omap34xx())
Tony Lindgren9a748052010-12-07 16:26:56 -08001438 rev = __raw_readl(bank->base + OMAP24XX_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001439 else if (cpu_is_omap44xx())
Tony Lindgren9a748052010-12-07 16:26:56 -08001440 rev = __raw_readl(bank->base + OMAP4_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001441 else
1442 return;
1443
1444 printk(KERN_INFO "OMAP GPIO hardware version %d.%d\n",
1445 (rev >> 4) & 0x0f, rev & 0x0f);
1446}
1447
David Brownell8ba55c52008-02-26 11:10:50 -08001448/* This lock class tells lockdep that GPIO irqs are in a different
1449 * category than their parents, so it won't report false recursion.
1450 */
1451static struct lock_class_key gpio_lock_class;
1452
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001453static inline int init_gpio_info(struct platform_device *pdev)
1454{
1455 /* TODO: Analyze removing gpio_bank_count usage from driver code */
1456 gpio_bank = kzalloc(gpio_bank_count * sizeof(struct gpio_bank),
1457 GFP_KERNEL);
1458 if (!gpio_bank) {
1459 dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
1460 return -ENOMEM;
1461 }
1462 return 0;
1463}
1464
1465/* TODO: Cleanup cpu_is_* checks */
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001466static void omap_gpio_mod_init(struct gpio_bank *bank, int id)
1467{
1468 if (cpu_class_is_omap2()) {
1469 if (cpu_is_omap44xx()) {
1470 __raw_writel(0xffffffff, bank->base +
1471 OMAP4_GPIO_IRQSTATUSCLR0);
1472 __raw_writel(0x00000000, bank->base +
1473 OMAP4_GPIO_DEBOUNCENABLE);
1474 /* Initialize interface clk ungated, module enabled */
1475 __raw_writel(0, bank->base + OMAP4_GPIO_CTRL);
1476 } else if (cpu_is_omap34xx()) {
1477 __raw_writel(0x00000000, bank->base +
1478 OMAP24XX_GPIO_IRQENABLE1);
1479 __raw_writel(0xffffffff, bank->base +
1480 OMAP24XX_GPIO_IRQSTATUS1);
1481 __raw_writel(0x00000000, bank->base +
1482 OMAP24XX_GPIO_DEBOUNCE_EN);
1483
1484 /* Initialize interface clk ungated, module enabled */
1485 __raw_writel(0, bank->base + OMAP24XX_GPIO_CTRL);
1486 } else if (cpu_is_omap24xx()) {
1487 static const u32 non_wakeup_gpios[] = {
1488 0xe203ffc0, 0x08700040
1489 };
1490 if (id < ARRAY_SIZE(non_wakeup_gpios))
1491 bank->non_wakeup_gpios = non_wakeup_gpios[id];
1492 }
1493 } else if (cpu_class_is_omap1()) {
1494 if (bank_is_mpuio(bank))
Tony Lindgren5de62b82010-12-07 16:26:58 -08001495 __raw_writew(0xffff, bank->base +
1496 OMAP_MPUIO_GPIO_MASKIT / bank->stride);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001497 if (cpu_is_omap15xx() && bank->method == METHOD_GPIO_1510) {
1498 __raw_writew(0xffff, bank->base
1499 + OMAP1510_GPIO_INT_MASK);
1500 __raw_writew(0x0000, bank->base
1501 + OMAP1510_GPIO_INT_STATUS);
1502 }
1503 if (cpu_is_omap16xx() && bank->method == METHOD_GPIO_1610) {
1504 __raw_writew(0x0000, bank->base
1505 + OMAP1610_GPIO_IRQENABLE1);
1506 __raw_writew(0xffff, bank->base
1507 + OMAP1610_GPIO_IRQSTATUS1);
1508 __raw_writew(0x0014, bank->base
1509 + OMAP1610_GPIO_SYSCONFIG);
1510
1511 /*
1512 * Enable system clock for GPIO module.
1513 * The CAM_CLK_CTRL *is* really the right place.
1514 */
1515 omap_writel(omap_readl(ULPD_CAM_CLK_CTRL) | 0x04,
1516 ULPD_CAM_CLK_CTRL);
1517 }
1518 if (cpu_is_omap7xx() && bank->method == METHOD_GPIO_7XX) {
1519 __raw_writel(0xffffffff, bank->base
1520 + OMAP7XX_GPIO_INT_MASK);
1521 __raw_writel(0x00000000, bank->base
1522 + OMAP7XX_GPIO_INT_STATUS);
1523 }
1524 }
1525}
1526
Russell Kingd52b31d2011-05-27 13:56:12 -07001527static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001528{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001529 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001530 static int gpio;
1531
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001532 bank->mod_usage = 0;
1533 /*
1534 * REVISIT eventually switch from OMAP-specific gpio structs
1535 * over to the generic ones
1536 */
1537 bank->chip.request = omap_gpio_request;
1538 bank->chip.free = omap_gpio_free;
1539 bank->chip.direction_input = gpio_input;
1540 bank->chip.get = gpio_get;
1541 bank->chip.direction_output = gpio_output;
1542 bank->chip.set_debounce = gpio_debounce;
1543 bank->chip.set = gpio_set;
1544 bank->chip.to_irq = gpio_2irq;
1545 if (bank_is_mpuio(bank)) {
1546 bank->chip.label = "mpuio";
1547#ifdef CONFIG_ARCH_OMAP16XX
1548 bank->chip.dev = &omap_mpuio_device.dev;
1549#endif
1550 bank->chip.base = OMAP_MPUIO(0);
1551 } else {
1552 bank->chip.label = "gpio";
1553 bank->chip.base = gpio;
1554 gpio += bank_width;
1555 }
1556 bank->chip.ngpio = bank_width;
1557
1558 gpiochip_add(&bank->chip);
1559
1560 for (j = bank->virtual_irq_start;
1561 j < bank->virtual_irq_start + bank_width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001562 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001563 irq_set_chip_data(j, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001564 if (bank_is_mpuio(bank))
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001565 irq_set_chip(j, &mpuio_irq_chip);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001566 else
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001567 irq_set_chip(j, &gpio_irq_chip);
1568 irq_set_handler(j, handle_simple_irq);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001569 set_irq_flags(j, IRQF_VALID);
1570 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001571 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1572 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001573}
1574
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001575static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001576{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001577 static int gpio_init_done;
1578 struct omap_gpio_platform_data *pdata;
1579 struct resource *res;
1580 int id;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001581 struct gpio_bank *bank;
1582
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001583 if (!pdev->dev.platform_data)
1584 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001585
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001586 pdata = pdev->dev.platform_data;
Syed Mohammed Khasim56a25642006-12-06 17:14:08 -08001587
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001588 if (!gpio_init_done) {
1589 int ret;
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001590
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001591 ret = init_gpio_info(pdev);
1592 if (ret)
1593 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001594 }
1595
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001596 id = pdev->id;
1597 bank = &gpio_bank[id];
1598
1599 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1600 if (unlikely(!res)) {
1601 dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n", id);
1602 return -ENODEV;
1603 }
1604
1605 bank->irq = res->start;
1606 bank->virtual_irq_start = pdata->virtual_irq_start;
1607 bank->method = pdata->bank_type;
1608 bank->dev = &pdev->dev;
1609 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001610 bank->stride = pdata->bank_stride;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001611 bank_width = pdata->bank_width;
1612
1613 spin_lock_init(&bank->lock);
1614
1615 /* Static mapping, never released */
1616 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1617 if (unlikely(!res)) {
1618 dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n", id);
1619 return -ENODEV;
1620 }
1621
1622 bank->base = ioremap(res->start, resource_size(res));
1623 if (!bank->base) {
1624 dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n", id);
1625 return -ENOMEM;
1626 }
1627
1628 pm_runtime_enable(bank->dev);
1629 pm_runtime_get_sync(bank->dev);
1630
1631 omap_gpio_mod_init(bank, id);
1632 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001633 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001634
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001635 if (!gpio_init_done)
1636 gpio_init_done = 1;
1637
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001638 return 0;
1639}
1640
Tony Lindgren140455f2010-02-12 12:26:48 -08001641#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001642static int omap_gpio_suspend(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001643{
1644 int i;
1645
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001646 if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
Tony Lindgren92105bb2005-09-07 17:20:26 +01001647 return 0;
1648
1649 for (i = 0; i < gpio_bank_count; i++) {
1650 struct gpio_bank *bank = &gpio_bank[i];
1651 void __iomem *wake_status;
1652 void __iomem *wake_clear;
1653 void __iomem *wake_set;
David Brownella6472532008-03-03 04:33:30 -08001654 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001655
1656 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -08001657#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren92105bb2005-09-07 17:20:26 +01001658 case METHOD_GPIO_1610:
1659 wake_status = bank->base + OMAP1610_GPIO_WAKEUPENABLE;
1660 wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
1661 wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
1662 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001663#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001664#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001665 case METHOD_GPIO_24XX:
Tero Kristo723fdb72008-11-26 14:35:16 -08001666 wake_status = bank->base + OMAP24XX_GPIO_WAKE_EN;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001667 wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
1668 wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
1669 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001670#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301671#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001672 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301673 wake_status = bank->base + OMAP4_GPIO_IRQWAKEN0;
1674 wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
1675 wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
1676 break;
1677#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +01001678 default:
1679 continue;
1680 }
1681
David Brownella6472532008-03-03 04:33:30 -08001682 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001683 bank->saved_wakeup = __raw_readl(wake_status);
1684 __raw_writel(0xffffffff, wake_clear);
1685 __raw_writel(bank->suspend_wakeup, wake_set);
David Brownella6472532008-03-03 04:33:30 -08001686 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001687 }
1688
1689 return 0;
1690}
1691
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001692static void omap_gpio_resume(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001693{
1694 int i;
1695
Tero Kristo723fdb72008-11-26 14:35:16 -08001696 if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001697 return;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001698
1699 for (i = 0; i < gpio_bank_count; i++) {
1700 struct gpio_bank *bank = &gpio_bank[i];
1701 void __iomem *wake_clear;
1702 void __iomem *wake_set;
David Brownella6472532008-03-03 04:33:30 -08001703 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001704
1705 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -08001706#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren92105bb2005-09-07 17:20:26 +01001707 case METHOD_GPIO_1610:
1708 wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
1709 wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
1710 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001711#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001712#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001713 case METHOD_GPIO_24XX:
Tony Lindgren0d9356c2006-09-25 12:41:45 +03001714 wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
1715 wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001716 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001717#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301718#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001719 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301720 wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
1721 wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
1722 break;
1723#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +01001724 default:
1725 continue;
1726 }
1727
David Brownella6472532008-03-03 04:33:30 -08001728 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001729 __raw_writel(0xffffffff, wake_clear);
1730 __raw_writel(bank->saved_wakeup, wake_set);
David Brownella6472532008-03-03 04:33:30 -08001731 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001732 }
Tony Lindgren92105bb2005-09-07 17:20:26 +01001733}
1734
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001735static struct syscore_ops omap_gpio_syscore_ops = {
Tony Lindgren92105bb2005-09-07 17:20:26 +01001736 .suspend = omap_gpio_suspend,
1737 .resume = omap_gpio_resume,
1738};
1739
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001740#endif
1741
Tony Lindgren140455f2010-02-12 12:26:48 -08001742#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001743
1744static int workaround_enabled;
1745
Paul Walmsley72e06d02010-12-21 21:05:16 -07001746void omap2_gpio_prepare_for_idle(int off_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001747{
1748 int i, c = 0;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001749 int min = 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001750
Tero Kristoa118b5f2008-12-22 14:27:12 +02001751 if (cpu_is_omap34xx())
1752 min = 1;
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001753
Tero Kristoa118b5f2008-12-22 14:27:12 +02001754 for (i = min; i < gpio_bank_count; i++) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001755 struct gpio_bank *bank = &gpio_bank[i];
Sanjeev Premica828762010-09-23 18:27:18 -07001756 u32 l1 = 0, l2 = 0;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001757 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001758
Kevin Hilman0aed04352010-09-22 16:06:27 -07001759 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001760 clk_disable(bank->dbck);
1761
Paul Walmsley72e06d02010-12-21 21:05:16 -07001762 if (!off_mode)
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001763 continue;
1764
1765 /* If going to OFF, remove triggering for all
1766 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1767 * generated. See OMAP2420 Errata item 1.101. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001768 if (!(bank->enabled_non_wakeup_gpios))
1769 continue;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001770
1771 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1772 bank->saved_datain = __raw_readl(bank->base +
1773 OMAP24XX_GPIO_DATAIN);
1774 l1 = __raw_readl(bank->base +
1775 OMAP24XX_GPIO_FALLINGDETECT);
1776 l2 = __raw_readl(bank->base +
1777 OMAP24XX_GPIO_RISINGDETECT);
1778 }
1779
1780 if (cpu_is_omap44xx()) {
1781 bank->saved_datain = __raw_readl(bank->base +
1782 OMAP4_GPIO_DATAIN);
1783 l1 = __raw_readl(bank->base +
1784 OMAP4_GPIO_FALLINGDETECT);
1785 l2 = __raw_readl(bank->base +
1786 OMAP4_GPIO_RISINGDETECT);
1787 }
1788
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001789 bank->saved_fallingdetect = l1;
1790 bank->saved_risingdetect = l2;
1791 l1 &= ~bank->enabled_non_wakeup_gpios;
1792 l2 &= ~bank->enabled_non_wakeup_gpios;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001793
1794 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1795 __raw_writel(l1, bank->base +
1796 OMAP24XX_GPIO_FALLINGDETECT);
1797 __raw_writel(l2, bank->base +
1798 OMAP24XX_GPIO_RISINGDETECT);
1799 }
1800
1801 if (cpu_is_omap44xx()) {
1802 __raw_writel(l1, bank->base + OMAP4_GPIO_FALLINGDETECT);
1803 __raw_writel(l2, bank->base + OMAP4_GPIO_RISINGDETECT);
1804 }
1805
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001806 c++;
1807 }
1808 if (!c) {
1809 workaround_enabled = 0;
1810 return;
1811 }
1812 workaround_enabled = 1;
1813}
1814
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001815void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001816{
1817 int i;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001818 int min = 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001819
Tero Kristoa118b5f2008-12-22 14:27:12 +02001820 if (cpu_is_omap34xx())
1821 min = 1;
1822 for (i = min; i < gpio_bank_count; i++) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001823 struct gpio_bank *bank = &gpio_bank[i];
Sanjeev Premica828762010-09-23 18:27:18 -07001824 u32 l = 0, gen, gen0, gen1;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001825 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001826
Kevin Hilman0aed04352010-09-22 16:06:27 -07001827 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001828 clk_enable(bank->dbck);
1829
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001830 if (!workaround_enabled)
1831 continue;
1832
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001833 if (!(bank->enabled_non_wakeup_gpios))
1834 continue;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001835
1836 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1837 __raw_writel(bank->saved_fallingdetect,
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001838 bank->base + OMAP24XX_GPIO_FALLINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001839 __raw_writel(bank->saved_risingdetect,
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001840 bank->base + OMAP24XX_GPIO_RISINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001841 l = __raw_readl(bank->base + OMAP24XX_GPIO_DATAIN);
1842 }
1843
1844 if (cpu_is_omap44xx()) {
1845 __raw_writel(bank->saved_fallingdetect,
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301846 bank->base + OMAP4_GPIO_FALLINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001847 __raw_writel(bank->saved_risingdetect,
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301848 bank->base + OMAP4_GPIO_RISINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001849 l = __raw_readl(bank->base + OMAP4_GPIO_DATAIN);
1850 }
1851
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001852 /* Check if any of the non-wakeup interrupt GPIOs have changed
1853 * state. If so, generate an IRQ by software. This is
1854 * horribly racy, but it's the best we can do to work around
1855 * this silicon bug. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001856 l ^= bank->saved_datain;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001857 l &= bank->enabled_non_wakeup_gpios;
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001858
1859 /*
1860 * No need to generate IRQs for the rising edge for gpio IRQs
1861 * configured with falling edge only; and vice versa.
1862 */
1863 gen0 = l & bank->saved_fallingdetect;
1864 gen0 &= bank->saved_datain;
1865
1866 gen1 = l & bank->saved_risingdetect;
1867 gen1 &= ~(bank->saved_datain);
1868
1869 /* FIXME: Consider GPIO IRQs with level detections properly! */
1870 gen = l & (~(bank->saved_fallingdetect) &
1871 ~(bank->saved_risingdetect));
1872 /* Consider all GPIO IRQs needed to be updated */
1873 gen |= gen0 | gen1;
1874
1875 if (gen) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001876 u32 old0, old1;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001877
Sergio Aguirref00d6492010-03-03 16:21:08 +00001878 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001879 old0 = __raw_readl(bank->base +
1880 OMAP24XX_GPIO_LEVELDETECT0);
1881 old1 = __raw_readl(bank->base +
1882 OMAP24XX_GPIO_LEVELDETECT1);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001883 __raw_writel(old0 | gen, bank->base +
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001884 OMAP24XX_GPIO_LEVELDETECT0);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001885 __raw_writel(old1 | gen, bank->base +
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001886 OMAP24XX_GPIO_LEVELDETECT1);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001887 __raw_writel(old0, bank->base +
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001888 OMAP24XX_GPIO_LEVELDETECT0);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001889 __raw_writel(old1, bank->base +
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001890 OMAP24XX_GPIO_LEVELDETECT1);
1891 }
1892
1893 if (cpu_is_omap44xx()) {
1894 old0 = __raw_readl(bank->base +
1895 OMAP4_GPIO_LEVELDETECT0);
1896 old1 = __raw_readl(bank->base +
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301897 OMAP4_GPIO_LEVELDETECT1);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001898 __raw_writel(old0 | l, bank->base +
1899 OMAP4_GPIO_LEVELDETECT0);
1900 __raw_writel(old1 | l, bank->base +
1901 OMAP4_GPIO_LEVELDETECT1);
1902 __raw_writel(old0, bank->base +
1903 OMAP4_GPIO_LEVELDETECT0);
1904 __raw_writel(old1, bank->base +
1905 OMAP4_GPIO_LEVELDETECT1);
1906 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001907 }
1908 }
1909
1910}
1911
Tony Lindgren92105bb2005-09-07 17:20:26 +01001912#endif
1913
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001914#ifdef CONFIG_ARCH_OMAP3
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301915/* save the registers of bank 2-6 */
1916void omap_gpio_save_context(void)
1917{
1918 int i;
1919
1920 /* saving banks from 2-6 only since GPIO1 is in WKUP */
1921 for (i = 1; i < gpio_bank_count; i++) {
1922 struct gpio_bank *bank = &gpio_bank[i];
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301923 gpio_context[i].irqenable1 =
1924 __raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE1);
1925 gpio_context[i].irqenable2 =
1926 __raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE2);
1927 gpio_context[i].wake_en =
1928 __raw_readl(bank->base + OMAP24XX_GPIO_WAKE_EN);
1929 gpio_context[i].ctrl =
1930 __raw_readl(bank->base + OMAP24XX_GPIO_CTRL);
1931 gpio_context[i].oe =
1932 __raw_readl(bank->base + OMAP24XX_GPIO_OE);
1933 gpio_context[i].leveldetect0 =
1934 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0);
1935 gpio_context[i].leveldetect1 =
1936 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
1937 gpio_context[i].risingdetect =
1938 __raw_readl(bank->base + OMAP24XX_GPIO_RISINGDETECT);
1939 gpio_context[i].fallingdetect =
1940 __raw_readl(bank->base + OMAP24XX_GPIO_FALLINGDETECT);
1941 gpio_context[i].dataout =
1942 __raw_readl(bank->base + OMAP24XX_GPIO_DATAOUT);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301943 }
1944}
1945
1946/* restore the required registers of bank 2-6 */
1947void omap_gpio_restore_context(void)
1948{
1949 int i;
1950
1951 for (i = 1; i < gpio_bank_count; i++) {
1952 struct gpio_bank *bank = &gpio_bank[i];
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301953 __raw_writel(gpio_context[i].irqenable1,
1954 bank->base + OMAP24XX_GPIO_IRQENABLE1);
1955 __raw_writel(gpio_context[i].irqenable2,
1956 bank->base + OMAP24XX_GPIO_IRQENABLE2);
1957 __raw_writel(gpio_context[i].wake_en,
1958 bank->base + OMAP24XX_GPIO_WAKE_EN);
1959 __raw_writel(gpio_context[i].ctrl,
1960 bank->base + OMAP24XX_GPIO_CTRL);
1961 __raw_writel(gpio_context[i].oe,
1962 bank->base + OMAP24XX_GPIO_OE);
1963 __raw_writel(gpio_context[i].leveldetect0,
1964 bank->base + OMAP24XX_GPIO_LEVELDETECT0);
1965 __raw_writel(gpio_context[i].leveldetect1,
1966 bank->base + OMAP24XX_GPIO_LEVELDETECT1);
1967 __raw_writel(gpio_context[i].risingdetect,
1968 bank->base + OMAP24XX_GPIO_RISINGDETECT);
1969 __raw_writel(gpio_context[i].fallingdetect,
1970 bank->base + OMAP24XX_GPIO_FALLINGDETECT);
1971 __raw_writel(gpio_context[i].dataout,
1972 bank->base + OMAP24XX_GPIO_DATAOUT);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301973 }
1974}
1975#endif
1976
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001977static struct platform_driver omap_gpio_driver = {
1978 .probe = omap_gpio_probe,
1979 .driver = {
1980 .name = "omap_gpio",
1981 },
1982};
1983
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001984/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001985 * gpio driver register needs to be done before
1986 * machine_init functions access gpio APIs.
1987 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001988 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001989static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001990{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001991 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001992}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001993postcore_initcall(omap_gpio_drv_reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001994
Tony Lindgren92105bb2005-09-07 17:20:26 +01001995static int __init omap_gpio_sysinit(void)
1996{
David Brownell11a78b72006-12-06 17:14:11 -08001997 mpuio_init();
1998
Tony Lindgren140455f2010-02-12 12:26:48 -08001999#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02002000 if (cpu_is_omap16xx() || cpu_class_is_omap2())
2001 register_syscore_ops(&omap_gpio_syscore_ops);
Tony Lindgren92105bb2005-09-07 17:20:26 +01002002#endif
2003
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02002004 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01002005}
2006
Tony Lindgren92105bb2005-09-07 17:20:26 +01002007arch_initcall(omap_gpio_sysinit);