blob: 7135810a77bc7cc4c09862b27a200af75dfde717 [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;
435
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530436 if (cpu_is_omap44xx()) {
437 MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT0, gpio_bit,
438 trigger & IRQ_TYPE_LEVEL_LOW);
439 MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT1, gpio_bit,
440 trigger & IRQ_TYPE_LEVEL_HIGH);
441 MOD_REG_BIT(OMAP4_GPIO_RISINGDETECT, gpio_bit,
442 trigger & IRQ_TYPE_EDGE_RISING);
443 MOD_REG_BIT(OMAP4_GPIO_FALLINGDETECT, gpio_bit,
444 trigger & IRQ_TYPE_EDGE_FALLING);
445 } else {
446 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT0, gpio_bit,
447 trigger & IRQ_TYPE_LEVEL_LOW);
448 MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT1, gpio_bit,
449 trigger & IRQ_TYPE_LEVEL_HIGH);
450 MOD_REG_BIT(OMAP24XX_GPIO_RISINGDETECT, gpio_bit,
451 trigger & IRQ_TYPE_EDGE_RISING);
452 MOD_REG_BIT(OMAP24XX_GPIO_FALLINGDETECT, gpio_bit,
453 trigger & IRQ_TYPE_EDGE_FALLING);
454 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800455 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530456 if (cpu_is_omap44xx()) {
Colin Cross0622b252011-06-06 13:38:17 -0700457 MOD_REG_BIT(OMAP4_GPIO_IRQWAKEN0, gpio_bit,
458 trigger != 0);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530459 } else {
Chunqiu Wang699117a62009-06-24 17:13:39 +0000460 /*
461 * GPIO wakeup request can only be generated on edge
462 * transitions
463 */
464 if (trigger & IRQ_TYPE_EDGE_BOTH)
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530465 __raw_writel(1 << gpio, bank->base
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700466 + OMAP24XX_GPIO_SETWKUENA);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530467 else
468 __raw_writel(1 << gpio, bank->base
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700469 + OMAP24XX_GPIO_CLEARWKUENA);
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530470 }
Tero Kristoa118b5f2008-12-22 14:27:12 +0200471 }
472 /* This part needs to be executed always for OMAP34xx */
473 if (cpu_is_omap34xx() || (bank->non_wakeup_gpios & gpio_bit)) {
Chunqiu Wang699117a62009-06-24 17:13:39 +0000474 /*
475 * Log the edge gpio and manually trigger the IRQ
476 * after resume if the input level changes
477 * to avoid irq lost during PER RET/OFF mode
478 * Applies for omap2 non-wakeup gpio and all omap3 gpios
479 */
480 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800481 bank->enabled_non_wakeup_gpios |= gpio_bit;
482 else
483 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
484 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700485
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530486 if (cpu_is_omap44xx()) {
487 bank->level_mask =
488 __raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT0) |
489 __raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT1);
490 } else {
491 bank->level_mask =
492 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0) |
493 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
494 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100495}
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800496#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +0100497
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800498#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800499/*
500 * This only applies to chips that can't do both rising and falling edge
501 * detection at once. For all other chips, this function is a noop.
502 */
503static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
504{
505 void __iomem *reg = bank->base;
506 u32 l = 0;
507
508 switch (bank->method) {
Cory Maccarrone4318f362010-01-08 10:29:04 -0800509 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800510 reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800511 break;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800512#ifdef CONFIG_ARCH_OMAP15XX
513 case METHOD_GPIO_1510:
514 reg += OMAP1510_GPIO_INT_CONTROL;
515 break;
516#endif
517#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
518 case METHOD_GPIO_7XX:
519 reg += OMAP7XX_GPIO_INT_CONTROL;
520 break;
521#endif
522 default:
523 return;
524 }
525
526 l = __raw_readl(reg);
527 if ((l >> gpio) & 1)
528 l &= ~(1 << gpio);
529 else
530 l |= 1 << gpio;
531
532 __raw_writel(l, reg);
533}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800534#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800535
Tony Lindgren92105bb2005-09-07 17:20:26 +0100536static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
537{
538 void __iomem *reg = bank->base;
539 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100540
541 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800542#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100543 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800544 reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100545 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000546 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800547 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100548 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100549 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100550 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100551 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100552 else
553 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100554 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800555#endif
556#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100557 case METHOD_GPIO_1510:
558 reg += OMAP1510_GPIO_INT_CONTROL;
559 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000560 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800561 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100562 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100563 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100564 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100565 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100566 else
567 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100568 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800569#endif
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800570#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100571 case METHOD_GPIO_1610:
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100572 if (gpio & 0x08)
573 reg += OMAP1610_GPIO_EDGE_CTRL2;
574 else
575 reg += OMAP1610_GPIO_EDGE_CTRL1;
576 gpio &= 0x07;
577 l = __raw_readl(reg);
578 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100579 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100580 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100581 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100582 l |= 1 << (gpio << 1);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800583 if (trigger)
584 /* Enable wake-up during idle for dynamic tick */
585 __raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_SET_WAKEUPENA);
586 else
587 __raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100588 break;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800589#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100590#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100591 case METHOD_GPIO_7XX:
592 reg += OMAP7XX_GPIO_INT_CONTROL;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700593 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000594 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800595 bank->toggle_mask |= 1 << gpio;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700596 if (trigger & IRQ_TYPE_EDGE_RISING)
597 l |= 1 << gpio;
598 else if (trigger & IRQ_TYPE_EDGE_FALLING)
599 l &= ~(1 << gpio);
600 else
601 goto bad;
602 break;
603#endif
Tony Lindgren140455f2010-02-12 12:26:48 -0800604#ifdef CONFIG_ARCH_OMAP2PLUS
Tony Lindgren92105bb2005-09-07 17:20:26 +0100605 case METHOD_GPIO_24XX:
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800606 case METHOD_GPIO_44XX:
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800607 set_24xx_gpio_triggering(bank, gpio, trigger);
Mika Westerbergf7c5cc42010-12-29 13:01:31 +0200608 return 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800609#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100610 default:
Tony Lindgren92105bb2005-09-07 17:20:26 +0100611 goto bad;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100612 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100613 __raw_writel(l, reg);
614 return 0;
615bad:
616 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100617}
618
Lennert Buytenheke9191022010-11-29 11:17:17 +0100619static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100620{
621 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100622 unsigned gpio;
623 int retval;
David Brownella6472532008-03-03 04:33:30 -0800624 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100625
Lennert Buytenheke9191022010-11-29 11:17:17 +0100626 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
627 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100628 else
Lennert Buytenheke9191022010-11-29 11:17:17 +0100629 gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100630
631 if (check_gpio(gpio) < 0)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100632 return -EINVAL;
633
David Brownelle5c56ed2006-12-06 17:13:59 -0800634 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100635 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800636
637 /* OMAP1 allows only only edge triggering */
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -0800638 if (!cpu_class_is_omap2()
David Brownelle5c56ed2006-12-06 17:13:59 -0800639 && (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100640 return -EINVAL;
641
Lennert Buytenheke9191022010-11-29 11:17:17 +0100642 bank = irq_data_get_irq_chip_data(d);
David Brownella6472532008-03-03 04:33:30 -0800643 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100644 retval = _set_gpio_triggering(bank, get_gpio_index(gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800645 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800646
647 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100648 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800649 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100650 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800651
Tony Lindgren92105bb2005-09-07 17:20:26 +0100652 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100653}
654
655static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
656{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100657 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100658
659 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800660#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100661 case METHOD_GPIO_1510:
662 reg += OMAP1510_GPIO_INT_STATUS;
663 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800664#endif
665#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100666 case METHOD_GPIO_1610:
667 reg += OMAP1610_GPIO_IRQSTATUS1;
668 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800669#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100670#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100671 case METHOD_GPIO_7XX:
672 reg += OMAP7XX_GPIO_INT_STATUS;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700673 break;
674#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800675#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100676 case METHOD_GPIO_24XX:
677 reg += OMAP24XX_GPIO_IRQSTATUS1;
678 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800679#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530680#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800681 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530682 reg += OMAP4_GPIO_IRQSTATUS0;
683 break;
684#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100685 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800686 WARN_ON(1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100687 return;
688 }
689 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300690
691 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800692 if (cpu_is_omap24xx() || cpu_is_omap34xx())
693 reg = bank->base + OMAP24XX_GPIO_IRQSTATUS2;
694 else if (cpu_is_omap44xx())
695 reg = bank->base + OMAP4_GPIO_IRQSTATUS1;
696
Kevin Hilmandf3c8512011-04-21 09:08:15 -0700697 if (cpu_is_omap24xx() || cpu_is_omap34xx() || cpu_is_omap44xx())
Roger Quadrosbedfd152009-04-23 11:10:50 -0700698 __raw_writel(gpio_mask, reg);
699
700 /* Flush posted write for the irq status to avoid spurious interrupts */
701 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100702}
703
704static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
705{
706 _clear_gpio_irqbank(bank, 1 << get_gpio_index(gpio));
707}
708
Imre Deakea6dedd2006-06-26 16:16:00 -0700709static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
710{
711 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700712 int inv = 0;
713 u32 l;
714 u32 mask;
Imre Deakea6dedd2006-06-26 16:16:00 -0700715
716 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800717#ifdef CONFIG_ARCH_OMAP1
Imre Deakea6dedd2006-06-26 16:16:00 -0700718 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800719 reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
Imre Deak99c47702006-06-26 16:16:07 -0700720 mask = 0xffff;
721 inv = 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700722 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800723#endif
724#ifdef CONFIG_ARCH_OMAP15XX
Imre Deakea6dedd2006-06-26 16:16:00 -0700725 case METHOD_GPIO_1510:
726 reg += OMAP1510_GPIO_INT_MASK;
Imre Deak99c47702006-06-26 16:16:07 -0700727 mask = 0xffff;
728 inv = 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700729 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800730#endif
731#ifdef CONFIG_ARCH_OMAP16XX
Imre Deakea6dedd2006-06-26 16:16:00 -0700732 case METHOD_GPIO_1610:
733 reg += OMAP1610_GPIO_IRQENABLE1;
Imre Deak99c47702006-06-26 16:16:07 -0700734 mask = 0xffff;
Imre Deakea6dedd2006-06-26 16:16:00 -0700735 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800736#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100737#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100738 case METHOD_GPIO_7XX:
739 reg += OMAP7XX_GPIO_INT_MASK;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700740 mask = 0xffffffff;
741 inv = 1;
742 break;
743#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800744#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Imre Deakea6dedd2006-06-26 16:16:00 -0700745 case METHOD_GPIO_24XX:
746 reg += OMAP24XX_GPIO_IRQENABLE1;
Imre Deak99c47702006-06-26 16:16:07 -0700747 mask = 0xffffffff;
Imre Deakea6dedd2006-06-26 16:16:00 -0700748 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800749#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530750#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800751 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530752 reg += OMAP4_GPIO_IRQSTATUSSET0;
753 mask = 0xffffffff;
754 break;
755#endif
Imre Deakea6dedd2006-06-26 16:16:00 -0700756 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800757 WARN_ON(1);
Imre Deakea6dedd2006-06-26 16:16:00 -0700758 return 0;
759 }
760
Imre Deak99c47702006-06-26 16:16:07 -0700761 l = __raw_readl(reg);
762 if (inv)
763 l = ~l;
764 l &= mask;
765 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700766}
767
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100768static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask, int enable)
769{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100770 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100771 u32 l;
772
773 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -0800774#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100775 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -0800776 reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100777 l = __raw_readl(reg);
778 if (enable)
779 l &= ~(gpio_mask);
780 else
781 l |= gpio_mask;
782 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800783#endif
784#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100785 case METHOD_GPIO_1510:
786 reg += OMAP1510_GPIO_INT_MASK;
787 l = __raw_readl(reg);
788 if (enable)
789 l &= ~(gpio_mask);
790 else
791 l |= gpio_mask;
792 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800793#endif
794#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100795 case METHOD_GPIO_1610:
796 if (enable)
797 reg += OMAP1610_GPIO_SET_IRQENABLE1;
798 else
799 reg += OMAP1610_GPIO_CLEAR_IRQENABLE1;
800 l = gpio_mask;
801 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800802#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +0100803#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +0100804 case METHOD_GPIO_7XX:
805 reg += OMAP7XX_GPIO_INT_MASK;
Zebediah C. McClure56739a62009-03-23 18:07:40 -0700806 l = __raw_readl(reg);
807 if (enable)
808 l &= ~(gpio_mask);
809 else
810 l |= gpio_mask;
811 break;
812#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800813#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100814 case METHOD_GPIO_24XX:
815 if (enable)
816 reg += OMAP24XX_GPIO_SETIRQENABLE1;
817 else
818 reg += OMAP24XX_GPIO_CLEARIRQENABLE1;
819 l = gpio_mask;
820 break;
David Brownelle5c56ed2006-12-06 17:13:59 -0800821#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530822#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800823 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +0530824 if (enable)
825 reg += OMAP4_GPIO_IRQSTATUSSET0;
826 else
827 reg += OMAP4_GPIO_IRQSTATUSCLR0;
828 l = gpio_mask;
829 break;
830#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100831 default:
David Brownelle5c56ed2006-12-06 17:13:59 -0800832 WARN_ON(1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100833 return;
834 }
835 __raw_writel(l, reg);
836}
837
838static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
839{
840 _enable_gpio_irqbank(bank, 1 << get_gpio_index(gpio), enable);
841}
842
Tony Lindgren92105bb2005-09-07 17:20:26 +0100843/*
844 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
845 * 1510 does not seem to have a wake-up register. If JTAG is connected
846 * to the target, system will wake up always on GPIO events. While
847 * system is running all registered GPIO interrupts need to have wake-up
848 * enabled. When system is suspended, only selected GPIO interrupts need
849 * to have wake-up enabled.
850 */
851static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
852{
Tony Lindgren4cc64202010-01-08 10:29:05 -0800853 unsigned long uninitialized_var(flags);
David Brownella6472532008-03-03 04:33:30 -0800854
Tony Lindgren92105bb2005-09-07 17:20:26 +0100855 switch (bank->method) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800856#ifdef CONFIG_ARCH_OMAP16XX
David Brownell11a78b72006-12-06 17:14:11 -0800857 case METHOD_MPUIO:
Tony Lindgren92105bb2005-09-07 17:20:26 +0100858 case METHOD_GPIO_1610:
David Brownella6472532008-03-03 04:33:30 -0800859 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700860 if (enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100861 bank->suspend_wakeup |= (1 << gpio);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700862 else
Tony Lindgren92105bb2005-09-07 17:20:26 +0100863 bank->suspend_wakeup &= ~(1 << gpio);
David Brownella6472532008-03-03 04:33:30 -0800864 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100865 return 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800866#endif
Tony Lindgren140455f2010-02-12 12:26:48 -0800867#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800868 case METHOD_GPIO_24XX:
Tony Lindgren3f1686a92010-02-15 09:27:25 -0800869 case METHOD_GPIO_44XX:
David Brownell11a78b72006-12-06 17:14:11 -0800870 if (bank->non_wakeup_gpios & (1 << gpio)) {
871 printk(KERN_ERR "Unable to modify wakeup on "
872 "non-wakeup GPIO%d\n",
873 (bank - gpio_bank) * 32 + gpio);
874 return -EINVAL;
875 }
David Brownella6472532008-03-03 04:33:30 -0800876 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700877 if (enable)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800878 bank->suspend_wakeup |= (1 << gpio);
Kevin Hilmanb3bb4f62009-04-23 11:10:49 -0700879 else
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800880 bank->suspend_wakeup &= ~(1 << gpio);
David Brownella6472532008-03-03 04:33:30 -0800881 spin_unlock_irqrestore(&bank->lock, flags);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800882 return 0;
883#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +0100884 default:
885 printk(KERN_ERR "Can't enable GPIO wakeup for method %i\n",
886 bank->method);
887 return -EINVAL;
888 }
889}
890
Tony Lindgren4196dd62006-09-25 12:41:38 +0300891static void _reset_gpio(struct gpio_bank *bank, int gpio)
892{
893 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
894 _set_gpio_irqenable(bank, gpio, 0);
895 _clear_gpio_irqstatus(bank, gpio);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100896 _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300897}
898
Tony Lindgren92105bb2005-09-07 17:20:26 +0100899/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100900static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100901{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100902 unsigned int gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100903 struct gpio_bank *bank;
904 int retval;
905
906 if (check_gpio(gpio) < 0)
907 return -ENODEV;
Lennert Buytenheke9191022010-11-29 11:17:17 +0100908 bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100909 retval = _set_gpio_wakeup(bank, get_gpio_index(gpio), enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100910
911 return retval;
912}
913
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800914static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100915{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800916 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800917 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100918
David Brownella6472532008-03-03 04:33:30 -0800919 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100920
Tony Lindgren4196dd62006-09-25 12:41:38 +0300921 /* Set trigger to none. You need to enable the desired trigger with
922 * request_irq() or set_irq_type().
923 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800924 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100925
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000926#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100927 if (bank->method == METHOD_GPIO_1510) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100928 void __iomem *reg;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100929
Tony Lindgren92105bb2005-09-07 17:20:26 +0100930 /* Claim the pin for MPU */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100931 reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800932 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100933 }
934#endif
Charulatha V058af1e2009-11-22 10:11:25 -0800935 if (!cpu_class_is_omap1()) {
936 if (!bank->mod_usage) {
Charulatha V9f096862010-05-14 12:05:27 -0700937 void __iomem *reg = bank->base;
Charulatha V058af1e2009-11-22 10:11:25 -0800938 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700939
940 if (cpu_is_omap24xx() || cpu_is_omap34xx())
941 reg += OMAP24XX_GPIO_CTRL;
942 else if (cpu_is_omap44xx())
943 reg += OMAP4_GPIO_CTRL;
944 ctrl = __raw_readl(reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800945 /* Module is enabled, clocks are not gated */
Charulatha V9f096862010-05-14 12:05:27 -0700946 ctrl &= 0xFFFFFFFE;
947 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800948 }
949 bank->mod_usage |= 1 << offset;
950 }
David Brownella6472532008-03-03 04:33:30 -0800951 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100952
953 return 0;
954}
955
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800956static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100957{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800958 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800959 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100960
David Brownella6472532008-03-03 04:33:30 -0800961 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100962#ifdef CONFIG_ARCH_OMAP16XX
963 if (bank->method == METHOD_GPIO_1610) {
964 /* Disable wake-up during idle for dynamic tick */
965 void __iomem *reg = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800966 __raw_writel(1 << offset, reg);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100967 }
968#endif
Charulatha V9f096862010-05-14 12:05:27 -0700969#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
970 if (bank->method == METHOD_GPIO_24XX) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100971 /* Disable wake-up during idle for dynamic tick */
972 void __iomem *reg = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800973 __raw_writel(1 << offset, reg);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100974 }
975#endif
Charulatha V9f096862010-05-14 12:05:27 -0700976#ifdef CONFIG_ARCH_OMAP4
977 if (bank->method == METHOD_GPIO_44XX) {
978 /* Disable wake-up during idle for dynamic tick */
979 void __iomem *reg = bank->base + OMAP4_GPIO_IRQWAKEN0;
980 __raw_writel(1 << offset, reg);
981 }
982#endif
Charulatha V058af1e2009-11-22 10:11:25 -0800983 if (!cpu_class_is_omap1()) {
984 bank->mod_usage &= ~(1 << offset);
985 if (!bank->mod_usage) {
Charulatha V9f096862010-05-14 12:05:27 -0700986 void __iomem *reg = bank->base;
Charulatha V058af1e2009-11-22 10:11:25 -0800987 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700988
989 if (cpu_is_omap24xx() || cpu_is_omap34xx())
990 reg += OMAP24XX_GPIO_CTRL;
991 else if (cpu_is_omap44xx())
992 reg += OMAP4_GPIO_CTRL;
993 ctrl = __raw_readl(reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800994 /* Module is disabled, clocks are gated */
995 ctrl |= 1;
Charulatha V9f096862010-05-14 12:05:27 -0700996 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800997 }
998 }
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800999 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -08001000 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001001}
1002
1003/*
1004 * We need to unmask the GPIO bank interrupt as soon as possible to
1005 * avoid missing GPIO interrupts for other lines in the bank.
1006 * Then we need to mask-read-clear-unmask the triggered GPIO lines
1007 * in the bank to avoid missing nested interrupts for a GPIO line.
1008 * If we wait to unmask individual GPIO lines in the bank after the
1009 * line's interrupt handler has been run, we may miss some nested
1010 * interrupts.
1011 */
Russell King10dd5ce2006-11-23 11:41:32 +00001012static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001013{
Tony Lindgren92105bb2005-09-07 17:20:26 +01001014 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001015 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -08001016 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001017 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -07001018 u32 retrigger = 0;
1019 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +00001020 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001021
Will Deaconee144182011-02-21 13:46:08 +00001022 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001023
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001024 bank = irq_get_handler_data(irq);
David Brownelle5c56ed2006-12-06 17:13:59 -08001025#ifdef CONFIG_ARCH_OMAP1
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001026 if (bank->method == METHOD_MPUIO)
Tony Lindgren5de62b82010-12-07 16:26:58 -08001027 isr_reg = bank->base +
1028 OMAP_MPUIO_GPIO_INT / bank->stride;
David Brownelle5c56ed2006-12-06 17:13:59 -08001029#endif
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001030#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001031 if (bank->method == METHOD_GPIO_1510)
1032 isr_reg = bank->base + OMAP1510_GPIO_INT_STATUS;
1033#endif
1034#if defined(CONFIG_ARCH_OMAP16XX)
1035 if (bank->method == METHOD_GPIO_1610)
1036 isr_reg = bank->base + OMAP1610_GPIO_IRQSTATUS1;
1037#endif
Alistair Buxtonb718aa82009-09-23 18:56:19 +01001038#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +01001039 if (bank->method == METHOD_GPIO_7XX)
1040 isr_reg = bank->base + OMAP7XX_GPIO_INT_STATUS;
Zebediah C. McClure56739a62009-03-23 18:07:40 -07001041#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001042#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001043 if (bank->method == METHOD_GPIO_24XX)
1044 isr_reg = bank->base + OMAP24XX_GPIO_IRQSTATUS1;
1045#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301046#if defined(CONFIG_ARCH_OMAP4)
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001047 if (bank->method == METHOD_GPIO_44XX)
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301048 isr_reg = bank->base + OMAP4_GPIO_IRQSTATUS0;
1049#endif
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -08001050
1051 if (WARN_ON(!isr_reg))
1052 goto exit;
1053
Tony Lindgren92105bb2005-09-07 17:20:26 +01001054 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +01001055 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -07001056 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +01001057
Imre Deakea6dedd2006-06-26 16:16:00 -07001058 enabled = _get_gpio_irqbank_mask(bank);
1059 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +01001060
1061 if (cpu_is_omap15xx() && (bank->method == METHOD_MPUIO))
1062 isr &= 0x0000ffff;
1063
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001064 if (cpu_class_is_omap2()) {
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001065 level_mask = bank->level_mask & enabled;
Imre Deakea6dedd2006-06-26 16:16:00 -07001066 }
Tony Lindgren6e60e792006-04-02 17:46:23 +01001067
1068 /* clear edge sensitive interrupts before handler(s) are
1069 called so that we don't miss any interrupt occurred while
1070 executing them */
1071 _enable_gpio_irqbank(bank, isr_saved & ~level_mask, 0);
1072 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
1073 _enable_gpio_irqbank(bank, isr_saved & ~level_mask, 1);
1074
1075 /* if there is only edge sensitive GPIO pin interrupts
1076 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -07001077 if (!level_mask && !unmasked) {
1078 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +00001079 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -07001080 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001081
Imre Deakea6dedd2006-06-26 16:16:00 -07001082 isr |= retrigger;
1083 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001084 if (!isr)
1085 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001086
Tony Lindgren92105bb2005-09-07 17:20:26 +01001087 gpio_irq = bank->virtual_irq_start;
1088 for (; isr != 0; isr >>= 1, gpio_irq++) {
Cory Maccarrone4318f362010-01-08 10:29:04 -08001089 gpio_index = get_gpio_index(irq_to_gpio(gpio_irq));
1090
Tony Lindgren92105bb2005-09-07 17:20:26 +01001091 if (!(isr & 1))
1092 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +02001093
Cory Maccarrone4318f362010-01-08 10:29:04 -08001094#ifdef CONFIG_ARCH_OMAP1
1095 /*
1096 * Some chips can't respond to both rising and falling
1097 * at the same time. If this irq was requested with
1098 * both flags, we need to flip the ICR data for the IRQ
1099 * to respond to the IRQ for the opposite direction.
1100 * This will be indicated in the bank toggle_mask.
1101 */
1102 if (bank->toggle_mask & (1 << gpio_index))
1103 _toggle_gpio_edge_triggering(bank, gpio_index);
1104#endif
1105
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +01001106 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001107 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001108 }
Imre Deakea6dedd2006-06-26 16:16:00 -07001109 /* if bank has any level sensitive GPIO pin interrupt
1110 configured, we must unmask the bank interrupt only after
1111 handler(s) are executed in order to avoid spurious bank
1112 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -08001113exit:
Imre Deakea6dedd2006-06-26 16:16:00 -07001114 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +00001115 chained_irq_exit(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001116}
1117
Lennert Buytenheke9191022010-11-29 11:17:17 +01001118static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +03001119{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001120 unsigned int gpio = d->irq - IH_GPIO_BASE;
1121 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -07001122 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +03001123
Colin Cross85ec7b92011-06-06 13:38:18 -07001124 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +03001125 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -07001126 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +03001127}
1128
Lennert Buytenheke9191022010-11-29 11:17:17 +01001129static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001130{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001131 unsigned int gpio = d->irq - IH_GPIO_BASE;
1132 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001133
1134 _clear_gpio_irqstatus(bank, gpio);
1135}
1136
Lennert Buytenheke9191022010-11-29 11:17:17 +01001137static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001138{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001139 unsigned int gpio = d->irq - IH_GPIO_BASE;
1140 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -07001141 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001142
Colin Cross85ec7b92011-06-06 13:38:18 -07001143 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001144 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman55b60192009-06-04 15:57:10 -07001145 _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -07001146 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001147}
1148
Lennert Buytenheke9191022010-11-29 11:17:17 +01001149static void gpio_unmask_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);
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001153 unsigned int irq_mask = 1 << get_gpio_index(gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +01001154 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -07001155 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -07001156
Colin Cross85ec7b92011-06-06 13:38:18 -07001157 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -07001158 if (trigger)
1159 _set_gpio_triggering(bank, get_gpio_index(gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -08001160
1161 /* For level-triggered GPIOs, the clearing must be done after
1162 * the HW source is cleared, thus after the handler has run */
1163 if (bank->level_mask & irq_mask) {
1164 _set_gpio_irqenable(bank, gpio, 0);
1165 _clear_gpio_irqstatus(bank, gpio);
1166 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001167
Kevin Hilman4de8c752008-01-16 21:56:14 -08001168 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -07001169 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001170}
1171
David Brownelle5c56ed2006-12-06 17:13:59 -08001172static struct irq_chip gpio_irq_chip = {
1173 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +01001174 .irq_shutdown = gpio_irq_shutdown,
1175 .irq_ack = gpio_ack_irq,
1176 .irq_mask = gpio_mask_irq,
1177 .irq_unmask = gpio_unmask_irq,
1178 .irq_set_type = gpio_irq_type,
1179 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -08001180};
1181
1182/*---------------------------------------------------------------------*/
1183
1184#ifdef CONFIG_ARCH_OMAP1
1185
1186/* MPUIO uses the always-on 32k clock */
1187
Lennert Buytenheke9191022010-11-29 11:17:17 +01001188static void mpuio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001189{
1190 /* The ISR is reset automatically, so do nothing here. */
1191}
1192
Lennert Buytenheke9191022010-11-29 11:17:17 +01001193static void mpuio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001194{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001195 unsigned int gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
1196 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001197
1198 _set_gpio_irqenable(bank, gpio, 0);
1199}
1200
Lennert Buytenheke9191022010-11-29 11:17:17 +01001201static void mpuio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001202{
Lennert Buytenheke9191022010-11-29 11:17:17 +01001203 unsigned int gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
1204 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001205
1206 _set_gpio_irqenable(bank, gpio, 1);
1207}
1208
David Brownelle5c56ed2006-12-06 17:13:59 -08001209static struct irq_chip mpuio_irq_chip = {
1210 .name = "MPUIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +01001211 .irq_ack = mpuio_ack_irq,
1212 .irq_mask = mpuio_mask_irq,
1213 .irq_unmask = mpuio_unmask_irq,
1214 .irq_set_type = gpio_irq_type,
David Brownell11a78b72006-12-06 17:14:11 -08001215#ifdef CONFIG_ARCH_OMAP16XX
1216 /* REVISIT: assuming only 16xx supports MPUIO wake events */
Lennert Buytenheke9191022010-11-29 11:17:17 +01001217 .irq_set_wake = gpio_wake_enable,
David Brownell11a78b72006-12-06 17:14:11 -08001218#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001219};
1220
David Brownelle5c56ed2006-12-06 17:13:59 -08001221
1222#define bank_is_mpuio(bank) ((bank)->method == METHOD_MPUIO)
1223
David Brownell11a78b72006-12-06 17:14:11 -08001224
1225#ifdef CONFIG_ARCH_OMAP16XX
1226
1227#include <linux/platform_device.h>
1228
Magnus Damm79ee0312009-07-08 13:22:04 +02001229static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -08001230{
Magnus Damm79ee0312009-07-08 13:22:04 +02001231 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -08001232 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -08001233 void __iomem *mask_reg = bank->base +
1234 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -08001235 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -08001236
David Brownella6472532008-03-03 04:33:30 -08001237 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001238 bank->saved_wakeup = __raw_readl(mask_reg);
1239 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -08001240 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001241
1242 return 0;
1243}
1244
Magnus Damm79ee0312009-07-08 13:22:04 +02001245static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -08001246{
Magnus Damm79ee0312009-07-08 13:22:04 +02001247 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -08001248 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -08001249 void __iomem *mask_reg = bank->base +
1250 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -08001251 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -08001252
David Brownella6472532008-03-03 04:33:30 -08001253 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001254 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -08001255 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -08001256
1257 return 0;
1258}
1259
Alexey Dobriyan47145212009-12-14 18:00:08 -08001260static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +02001261 .suspend_noirq = omap_mpuio_suspend_noirq,
1262 .resume_noirq = omap_mpuio_resume_noirq,
1263};
1264
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001265/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -08001266static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -08001267 .driver = {
1268 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +02001269 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -08001270 },
1271};
1272
1273static struct platform_device omap_mpuio_device = {
1274 .name = "mpuio",
1275 .id = -1,
1276 .dev = {
1277 .driver = &omap_mpuio_driver.driver,
1278 }
1279 /* could list the /proc/iomem resources */
1280};
1281
1282static inline void mpuio_init(void)
1283{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001284 struct gpio_bank *bank = get_gpio_bank(OMAP_MPUIO(0));
1285 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -07001286
David Brownell11a78b72006-12-06 17:14:11 -08001287 if (platform_driver_register(&omap_mpuio_driver) == 0)
1288 (void) platform_device_register(&omap_mpuio_device);
1289}
1290
1291#else
1292static inline void mpuio_init(void) {}
1293#endif /* 16xx */
1294
David Brownelle5c56ed2006-12-06 17:13:59 -08001295#else
1296
1297extern struct irq_chip mpuio_irq_chip;
1298
1299#define bank_is_mpuio(bank) 0
David Brownell11a78b72006-12-06 17:14:11 -08001300static inline void mpuio_init(void) {}
David Brownelle5c56ed2006-12-06 17:13:59 -08001301
1302#endif
1303
1304/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001305
David Brownell52e31342008-03-03 12:43:23 -08001306/* REVISIT these are stupid implementations! replace by ones that
1307 * don't switch on METHOD_* and which mostly avoid spinlocks
1308 */
1309
1310static int gpio_input(struct gpio_chip *chip, unsigned offset)
1311{
1312 struct gpio_bank *bank;
1313 unsigned long flags;
1314
1315 bank = container_of(chip, struct gpio_bank, chip);
1316 spin_lock_irqsave(&bank->lock, flags);
1317 _set_gpio_direction(bank, offset, 1);
1318 spin_unlock_irqrestore(&bank->lock, flags);
1319 return 0;
1320}
1321
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001322static int gpio_is_input(struct gpio_bank *bank, int mask)
1323{
1324 void __iomem *reg = bank->base;
1325
1326 switch (bank->method) {
1327 case METHOD_MPUIO:
Tony Lindgren5de62b82010-12-07 16:26:58 -08001328 reg += OMAP_MPUIO_IO_CNTL / bank->stride;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001329 break;
1330 case METHOD_GPIO_1510:
1331 reg += OMAP1510_GPIO_DIR_CONTROL;
1332 break;
1333 case METHOD_GPIO_1610:
1334 reg += OMAP1610_GPIO_DIRECTION;
1335 break;
Alistair Buxton7c006922009-09-22 10:02:58 +01001336 case METHOD_GPIO_7XX:
1337 reg += OMAP7XX_GPIO_DIR_CONTROL;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001338 break;
1339 case METHOD_GPIO_24XX:
1340 reg += OMAP24XX_GPIO_OE;
1341 break;
Charulatha V9f096862010-05-14 12:05:27 -07001342 case METHOD_GPIO_44XX:
1343 reg += OMAP4_GPIO_OE;
1344 break;
1345 default:
1346 WARN_ONCE(1, "gpio_is_input: incorrect OMAP GPIO method");
1347 return -EINVAL;
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001348 }
1349 return __raw_readl(reg) & mask;
1350}
1351
David Brownell52e31342008-03-03 12:43:23 -08001352static int gpio_get(struct gpio_chip *chip, unsigned offset)
1353{
Roger Quadrosb37c45b2009-08-05 16:53:24 +03001354 struct gpio_bank *bank;
1355 void __iomem *reg;
1356 int gpio;
1357 u32 mask;
1358
1359 gpio = chip->base + offset;
1360 bank = get_gpio_bank(gpio);
1361 reg = bank->base;
1362 mask = 1 << get_gpio_index(gpio);
1363
1364 if (gpio_is_input(bank, mask))
1365 return _get_gpio_datain(bank, gpio);
1366 else
1367 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -08001368}
1369
1370static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
1371{
1372 struct gpio_bank *bank;
1373 unsigned long flags;
1374
1375 bank = container_of(chip, struct gpio_bank, chip);
1376 spin_lock_irqsave(&bank->lock, flags);
1377 _set_gpio_dataout(bank, offset, value);
1378 _set_gpio_direction(bank, offset, 0);
1379 spin_unlock_irqrestore(&bank->lock, flags);
1380 return 0;
1381}
1382
Felipe Balbi168ef3d2010-05-26 14:42:23 -07001383static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
1384 unsigned debounce)
1385{
1386 struct gpio_bank *bank;
1387 unsigned long flags;
1388
1389 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001390
1391 if (!bank->dbck) {
1392 bank->dbck = clk_get(bank->dev, "dbclk");
1393 if (IS_ERR(bank->dbck))
1394 dev_err(bank->dev, "Could not get gpio dbck\n");
1395 }
1396
Felipe Balbi168ef3d2010-05-26 14:42:23 -07001397 spin_lock_irqsave(&bank->lock, flags);
1398 _set_gpio_debounce(bank, offset, debounce);
1399 spin_unlock_irqrestore(&bank->lock, flags);
1400
1401 return 0;
1402}
1403
David Brownell52e31342008-03-03 12:43:23 -08001404static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
1405{
1406 struct gpio_bank *bank;
1407 unsigned long flags;
1408
1409 bank = container_of(chip, struct gpio_bank, chip);
1410 spin_lock_irqsave(&bank->lock, flags);
1411 _set_gpio_dataout(bank, offset, value);
1412 spin_unlock_irqrestore(&bank->lock, flags);
1413}
1414
David Brownella007b702008-12-10 17:35:25 -08001415static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
1416{
1417 struct gpio_bank *bank;
1418
1419 bank = container_of(chip, struct gpio_bank, chip);
1420 return bank->virtual_irq_start + offset;
1421}
1422
David Brownell52e31342008-03-03 12:43:23 -08001423/*---------------------------------------------------------------------*/
1424
Tony Lindgren9a748052010-12-07 16:26:56 -08001425static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001426{
1427 u32 rev;
1428
Tony Lindgren9a748052010-12-07 16:26:56 -08001429 if (cpu_is_omap16xx() && !(bank->method != METHOD_MPUIO))
1430 rev = __raw_readw(bank->base + OMAP1610_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001431 else if (cpu_is_omap24xx() || cpu_is_omap34xx())
Tony Lindgren9a748052010-12-07 16:26:56 -08001432 rev = __raw_readl(bank->base + OMAP24XX_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001433 else if (cpu_is_omap44xx())
Tony Lindgren9a748052010-12-07 16:26:56 -08001434 rev = __raw_readl(bank->base + OMAP4_GPIO_REVISION);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001435 else
1436 return;
1437
1438 printk(KERN_INFO "OMAP GPIO hardware version %d.%d\n",
1439 (rev >> 4) & 0x0f, rev & 0x0f);
1440}
1441
David Brownell8ba55c52008-02-26 11:10:50 -08001442/* This lock class tells lockdep that GPIO irqs are in a different
1443 * category than their parents, so it won't report false recursion.
1444 */
1445static struct lock_class_key gpio_lock_class;
1446
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001447static inline int init_gpio_info(struct platform_device *pdev)
1448{
1449 /* TODO: Analyze removing gpio_bank_count usage from driver code */
1450 gpio_bank = kzalloc(gpio_bank_count * sizeof(struct gpio_bank),
1451 GFP_KERNEL);
1452 if (!gpio_bank) {
1453 dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
1454 return -ENOMEM;
1455 }
1456 return 0;
1457}
1458
1459/* TODO: Cleanup cpu_is_* checks */
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001460static void omap_gpio_mod_init(struct gpio_bank *bank, int id)
1461{
1462 if (cpu_class_is_omap2()) {
1463 if (cpu_is_omap44xx()) {
1464 __raw_writel(0xffffffff, bank->base +
1465 OMAP4_GPIO_IRQSTATUSCLR0);
1466 __raw_writel(0x00000000, bank->base +
1467 OMAP4_GPIO_DEBOUNCENABLE);
1468 /* Initialize interface clk ungated, module enabled */
1469 __raw_writel(0, bank->base + OMAP4_GPIO_CTRL);
1470 } else if (cpu_is_omap34xx()) {
1471 __raw_writel(0x00000000, bank->base +
1472 OMAP24XX_GPIO_IRQENABLE1);
1473 __raw_writel(0xffffffff, bank->base +
1474 OMAP24XX_GPIO_IRQSTATUS1);
1475 __raw_writel(0x00000000, bank->base +
1476 OMAP24XX_GPIO_DEBOUNCE_EN);
1477
1478 /* Initialize interface clk ungated, module enabled */
1479 __raw_writel(0, bank->base + OMAP24XX_GPIO_CTRL);
1480 } else if (cpu_is_omap24xx()) {
1481 static const u32 non_wakeup_gpios[] = {
1482 0xe203ffc0, 0x08700040
1483 };
1484 if (id < ARRAY_SIZE(non_wakeup_gpios))
1485 bank->non_wakeup_gpios = non_wakeup_gpios[id];
1486 }
1487 } else if (cpu_class_is_omap1()) {
1488 if (bank_is_mpuio(bank))
Tony Lindgren5de62b82010-12-07 16:26:58 -08001489 __raw_writew(0xffff, bank->base +
1490 OMAP_MPUIO_GPIO_MASKIT / bank->stride);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001491 if (cpu_is_omap15xx() && bank->method == METHOD_GPIO_1510) {
1492 __raw_writew(0xffff, bank->base
1493 + OMAP1510_GPIO_INT_MASK);
1494 __raw_writew(0x0000, bank->base
1495 + OMAP1510_GPIO_INT_STATUS);
1496 }
1497 if (cpu_is_omap16xx() && bank->method == METHOD_GPIO_1610) {
1498 __raw_writew(0x0000, bank->base
1499 + OMAP1610_GPIO_IRQENABLE1);
1500 __raw_writew(0xffff, bank->base
1501 + OMAP1610_GPIO_IRQSTATUS1);
1502 __raw_writew(0x0014, bank->base
1503 + OMAP1610_GPIO_SYSCONFIG);
1504
1505 /*
1506 * Enable system clock for GPIO module.
1507 * The CAM_CLK_CTRL *is* really the right place.
1508 */
1509 omap_writel(omap_readl(ULPD_CAM_CLK_CTRL) | 0x04,
1510 ULPD_CAM_CLK_CTRL);
1511 }
1512 if (cpu_is_omap7xx() && bank->method == METHOD_GPIO_7XX) {
1513 __raw_writel(0xffffffff, bank->base
1514 + OMAP7XX_GPIO_INT_MASK);
1515 __raw_writel(0x00000000, bank->base
1516 + OMAP7XX_GPIO_INT_STATUS);
1517 }
1518 }
1519}
1520
Russell Kingd52b31d2011-05-27 13:56:12 -07001521static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001522{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001523 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001524 static int gpio;
1525
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001526 bank->mod_usage = 0;
1527 /*
1528 * REVISIT eventually switch from OMAP-specific gpio structs
1529 * over to the generic ones
1530 */
1531 bank->chip.request = omap_gpio_request;
1532 bank->chip.free = omap_gpio_free;
1533 bank->chip.direction_input = gpio_input;
1534 bank->chip.get = gpio_get;
1535 bank->chip.direction_output = gpio_output;
1536 bank->chip.set_debounce = gpio_debounce;
1537 bank->chip.set = gpio_set;
1538 bank->chip.to_irq = gpio_2irq;
1539 if (bank_is_mpuio(bank)) {
1540 bank->chip.label = "mpuio";
1541#ifdef CONFIG_ARCH_OMAP16XX
1542 bank->chip.dev = &omap_mpuio_device.dev;
1543#endif
1544 bank->chip.base = OMAP_MPUIO(0);
1545 } else {
1546 bank->chip.label = "gpio";
1547 bank->chip.base = gpio;
1548 gpio += bank_width;
1549 }
1550 bank->chip.ngpio = bank_width;
1551
1552 gpiochip_add(&bank->chip);
1553
1554 for (j = bank->virtual_irq_start;
1555 j < bank->virtual_irq_start + bank_width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001556 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001557 irq_set_chip_data(j, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001558 if (bank_is_mpuio(bank))
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001559 irq_set_chip(j, &mpuio_irq_chip);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001560 else
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001561 irq_set_chip(j, &gpio_irq_chip);
1562 irq_set_handler(j, handle_simple_irq);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001563 set_irq_flags(j, IRQF_VALID);
1564 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001565 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1566 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001567}
1568
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001569static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001570{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001571 static int gpio_init_done;
1572 struct omap_gpio_platform_data *pdata;
1573 struct resource *res;
1574 int id;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001575 struct gpio_bank *bank;
1576
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001577 if (!pdev->dev.platform_data)
1578 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001579
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001580 pdata = pdev->dev.platform_data;
Syed Mohammed Khasim56a25642006-12-06 17:14:08 -08001581
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001582 if (!gpio_init_done) {
1583 int ret;
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001584
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001585 ret = init_gpio_info(pdev);
1586 if (ret)
1587 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001588 }
1589
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001590 id = pdev->id;
1591 bank = &gpio_bank[id];
1592
1593 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1594 if (unlikely(!res)) {
1595 dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n", id);
1596 return -ENODEV;
1597 }
1598
1599 bank->irq = res->start;
1600 bank->virtual_irq_start = pdata->virtual_irq_start;
1601 bank->method = pdata->bank_type;
1602 bank->dev = &pdev->dev;
1603 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001604 bank->stride = pdata->bank_stride;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001605 bank_width = pdata->bank_width;
1606
1607 spin_lock_init(&bank->lock);
1608
1609 /* Static mapping, never released */
1610 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1611 if (unlikely(!res)) {
1612 dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n", id);
1613 return -ENODEV;
1614 }
1615
1616 bank->base = ioremap(res->start, resource_size(res));
1617 if (!bank->base) {
1618 dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n", id);
1619 return -ENOMEM;
1620 }
1621
1622 pm_runtime_enable(bank->dev);
1623 pm_runtime_get_sync(bank->dev);
1624
1625 omap_gpio_mod_init(bank, id);
1626 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001627 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001628
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001629 if (!gpio_init_done)
1630 gpio_init_done = 1;
1631
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001632 return 0;
1633}
1634
Tony Lindgren140455f2010-02-12 12:26:48 -08001635#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001636static int omap_gpio_suspend(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001637{
1638 int i;
1639
Syed Mohammed, Khasim5492fb12007-11-29 16:15:11 -08001640 if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
Tony Lindgren92105bb2005-09-07 17:20:26 +01001641 return 0;
1642
1643 for (i = 0; i < gpio_bank_count; i++) {
1644 struct gpio_bank *bank = &gpio_bank[i];
1645 void __iomem *wake_status;
1646 void __iomem *wake_clear;
1647 void __iomem *wake_set;
David Brownella6472532008-03-03 04:33:30 -08001648 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001649
1650 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -08001651#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren92105bb2005-09-07 17:20:26 +01001652 case METHOD_GPIO_1610:
1653 wake_status = bank->base + OMAP1610_GPIO_WAKEUPENABLE;
1654 wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
1655 wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
1656 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001657#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001658#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001659 case METHOD_GPIO_24XX:
Tero Kristo723fdb72008-11-26 14:35:16 -08001660 wake_status = bank->base + OMAP24XX_GPIO_WAKE_EN;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001661 wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
1662 wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
1663 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001664#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301665#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001666 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301667 wake_status = bank->base + OMAP4_GPIO_IRQWAKEN0;
1668 wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
1669 wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
1670 break;
1671#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +01001672 default:
1673 continue;
1674 }
1675
David Brownella6472532008-03-03 04:33:30 -08001676 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001677 bank->saved_wakeup = __raw_readl(wake_status);
1678 __raw_writel(0xffffffff, wake_clear);
1679 __raw_writel(bank->suspend_wakeup, wake_set);
David Brownella6472532008-03-03 04:33:30 -08001680 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001681 }
1682
1683 return 0;
1684}
1685
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001686static void omap_gpio_resume(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001687{
1688 int i;
1689
Tero Kristo723fdb72008-11-26 14:35:16 -08001690 if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001691 return;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001692
1693 for (i = 0; i < gpio_bank_count; i++) {
1694 struct gpio_bank *bank = &gpio_bank[i];
1695 void __iomem *wake_clear;
1696 void __iomem *wake_set;
David Brownella6472532008-03-03 04:33:30 -08001697 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001698
1699 switch (bank->method) {
David Brownelle5c56ed2006-12-06 17:13:59 -08001700#ifdef CONFIG_ARCH_OMAP16XX
Tony Lindgren92105bb2005-09-07 17:20:26 +01001701 case METHOD_GPIO_1610:
1702 wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
1703 wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
1704 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001705#endif
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001706#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001707 case METHOD_GPIO_24XX:
Tony Lindgren0d9356c2006-09-25 12:41:45 +03001708 wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
1709 wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001710 break;
David Brownelle5c56ed2006-12-06 17:13:59 -08001711#endif
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301712#ifdef CONFIG_ARCH_OMAP4
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001713 case METHOD_GPIO_44XX:
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301714 wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
1715 wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
1716 break;
1717#endif
Tony Lindgren92105bb2005-09-07 17:20:26 +01001718 default:
1719 continue;
1720 }
1721
David Brownella6472532008-03-03 04:33:30 -08001722 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001723 __raw_writel(0xffffffff, wake_clear);
1724 __raw_writel(bank->saved_wakeup, wake_set);
David Brownella6472532008-03-03 04:33:30 -08001725 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001726 }
Tony Lindgren92105bb2005-09-07 17:20:26 +01001727}
1728
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001729static struct syscore_ops omap_gpio_syscore_ops = {
Tony Lindgren92105bb2005-09-07 17:20:26 +01001730 .suspend = omap_gpio_suspend,
1731 .resume = omap_gpio_resume,
1732};
1733
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001734#endif
1735
Tony Lindgren140455f2010-02-12 12:26:48 -08001736#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001737
1738static int workaround_enabled;
1739
Paul Walmsley72e06d02010-12-21 21:05:16 -07001740void omap2_gpio_prepare_for_idle(int off_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001741{
1742 int i, c = 0;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001743 int min = 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001744
Tero Kristoa118b5f2008-12-22 14:27:12 +02001745 if (cpu_is_omap34xx())
1746 min = 1;
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001747
Tero Kristoa118b5f2008-12-22 14:27:12 +02001748 for (i = min; i < gpio_bank_count; i++) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001749 struct gpio_bank *bank = &gpio_bank[i];
Sanjeev Premica828762010-09-23 18:27:18 -07001750 u32 l1 = 0, l2 = 0;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001751 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001752
Kevin Hilman0aed04352010-09-22 16:06:27 -07001753 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001754 clk_disable(bank->dbck);
1755
Paul Walmsley72e06d02010-12-21 21:05:16 -07001756 if (!off_mode)
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001757 continue;
1758
1759 /* If going to OFF, remove triggering for all
1760 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1761 * generated. See OMAP2420 Errata item 1.101. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001762 if (!(bank->enabled_non_wakeup_gpios))
1763 continue;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001764
1765 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1766 bank->saved_datain = __raw_readl(bank->base +
1767 OMAP24XX_GPIO_DATAIN);
1768 l1 = __raw_readl(bank->base +
1769 OMAP24XX_GPIO_FALLINGDETECT);
1770 l2 = __raw_readl(bank->base +
1771 OMAP24XX_GPIO_RISINGDETECT);
1772 }
1773
1774 if (cpu_is_omap44xx()) {
1775 bank->saved_datain = __raw_readl(bank->base +
1776 OMAP4_GPIO_DATAIN);
1777 l1 = __raw_readl(bank->base +
1778 OMAP4_GPIO_FALLINGDETECT);
1779 l2 = __raw_readl(bank->base +
1780 OMAP4_GPIO_RISINGDETECT);
1781 }
1782
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001783 bank->saved_fallingdetect = l1;
1784 bank->saved_risingdetect = l2;
1785 l1 &= ~bank->enabled_non_wakeup_gpios;
1786 l2 &= ~bank->enabled_non_wakeup_gpios;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001787
1788 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1789 __raw_writel(l1, bank->base +
1790 OMAP24XX_GPIO_FALLINGDETECT);
1791 __raw_writel(l2, bank->base +
1792 OMAP24XX_GPIO_RISINGDETECT);
1793 }
1794
1795 if (cpu_is_omap44xx()) {
1796 __raw_writel(l1, bank->base + OMAP4_GPIO_FALLINGDETECT);
1797 __raw_writel(l2, bank->base + OMAP4_GPIO_RISINGDETECT);
1798 }
1799
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001800 c++;
1801 }
1802 if (!c) {
1803 workaround_enabled = 0;
1804 return;
1805 }
1806 workaround_enabled = 1;
1807}
1808
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001809void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001810{
1811 int i;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001812 int min = 0;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001813
Tero Kristoa118b5f2008-12-22 14:27:12 +02001814 if (cpu_is_omap34xx())
1815 min = 1;
1816 for (i = min; i < gpio_bank_count; i++) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001817 struct gpio_bank *bank = &gpio_bank[i];
Sanjeev Premica828762010-09-23 18:27:18 -07001818 u32 l = 0, gen, gen0, gen1;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001819 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001820
Kevin Hilman0aed04352010-09-22 16:06:27 -07001821 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001822 clk_enable(bank->dbck);
1823
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001824 if (!workaround_enabled)
1825 continue;
1826
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001827 if (!(bank->enabled_non_wakeup_gpios))
1828 continue;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001829
1830 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1831 __raw_writel(bank->saved_fallingdetect,
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001832 bank->base + OMAP24XX_GPIO_FALLINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001833 __raw_writel(bank->saved_risingdetect,
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001834 bank->base + OMAP24XX_GPIO_RISINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001835 l = __raw_readl(bank->base + OMAP24XX_GPIO_DATAIN);
1836 }
1837
1838 if (cpu_is_omap44xx()) {
1839 __raw_writel(bank->saved_fallingdetect,
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301840 bank->base + OMAP4_GPIO_FALLINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001841 __raw_writel(bank->saved_risingdetect,
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301842 bank->base + OMAP4_GPIO_RISINGDETECT);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001843 l = __raw_readl(bank->base + OMAP4_GPIO_DATAIN);
1844 }
1845
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001846 /* Check if any of the non-wakeup interrupt GPIOs have changed
1847 * state. If so, generate an IRQ by software. This is
1848 * horribly racy, but it's the best we can do to work around
1849 * this silicon bug. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001850 l ^= bank->saved_datain;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001851 l &= bank->enabled_non_wakeup_gpios;
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001852
1853 /*
1854 * No need to generate IRQs for the rising edge for gpio IRQs
1855 * configured with falling edge only; and vice versa.
1856 */
1857 gen0 = l & bank->saved_fallingdetect;
1858 gen0 &= bank->saved_datain;
1859
1860 gen1 = l & bank->saved_risingdetect;
1861 gen1 &= ~(bank->saved_datain);
1862
1863 /* FIXME: Consider GPIO IRQs with level detections properly! */
1864 gen = l & (~(bank->saved_fallingdetect) &
1865 ~(bank->saved_risingdetect));
1866 /* Consider all GPIO IRQs needed to be updated */
1867 gen |= gen0 | gen1;
1868
1869 if (gen) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001870 u32 old0, old1;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001871
Sergio Aguirref00d6492010-03-03 16:21:08 +00001872 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001873 old0 = __raw_readl(bank->base +
1874 OMAP24XX_GPIO_LEVELDETECT0);
1875 old1 = __raw_readl(bank->base +
1876 OMAP24XX_GPIO_LEVELDETECT1);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001877 __raw_writel(old0 | gen, bank->base +
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001878 OMAP24XX_GPIO_LEVELDETECT0);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001879 __raw_writel(old1 | gen, bank->base +
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001880 OMAP24XX_GPIO_LEVELDETECT1);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001881 __raw_writel(old0, bank->base +
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001882 OMAP24XX_GPIO_LEVELDETECT0);
Sergio Aguirref00d6492010-03-03 16:21:08 +00001883 __raw_writel(old1, bank->base +
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001884 OMAP24XX_GPIO_LEVELDETECT1);
1885 }
1886
1887 if (cpu_is_omap44xx()) {
1888 old0 = __raw_readl(bank->base +
1889 OMAP4_GPIO_LEVELDETECT0);
1890 old1 = __raw_readl(bank->base +
Syed Rafiuddin78a1a6d2009-07-28 18:57:30 +05301891 OMAP4_GPIO_LEVELDETECT1);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001892 __raw_writel(old0 | l, bank->base +
1893 OMAP4_GPIO_LEVELDETECT0);
1894 __raw_writel(old1 | l, bank->base +
1895 OMAP4_GPIO_LEVELDETECT1);
1896 __raw_writel(old0, bank->base +
1897 OMAP4_GPIO_LEVELDETECT0);
1898 __raw_writel(old1, bank->base +
1899 OMAP4_GPIO_LEVELDETECT1);
1900 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001901 }
1902 }
1903
1904}
1905
Tony Lindgren92105bb2005-09-07 17:20:26 +01001906#endif
1907
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001908#ifdef CONFIG_ARCH_OMAP3
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301909/* save the registers of bank 2-6 */
1910void omap_gpio_save_context(void)
1911{
1912 int i;
1913
1914 /* saving banks from 2-6 only since GPIO1 is in WKUP */
1915 for (i = 1; i < gpio_bank_count; i++) {
1916 struct gpio_bank *bank = &gpio_bank[i];
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301917 gpio_context[i].irqenable1 =
1918 __raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE1);
1919 gpio_context[i].irqenable2 =
1920 __raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE2);
1921 gpio_context[i].wake_en =
1922 __raw_readl(bank->base + OMAP24XX_GPIO_WAKE_EN);
1923 gpio_context[i].ctrl =
1924 __raw_readl(bank->base + OMAP24XX_GPIO_CTRL);
1925 gpio_context[i].oe =
1926 __raw_readl(bank->base + OMAP24XX_GPIO_OE);
1927 gpio_context[i].leveldetect0 =
1928 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0);
1929 gpio_context[i].leveldetect1 =
1930 __raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
1931 gpio_context[i].risingdetect =
1932 __raw_readl(bank->base + OMAP24XX_GPIO_RISINGDETECT);
1933 gpio_context[i].fallingdetect =
1934 __raw_readl(bank->base + OMAP24XX_GPIO_FALLINGDETECT);
1935 gpio_context[i].dataout =
1936 __raw_readl(bank->base + OMAP24XX_GPIO_DATAOUT);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301937 }
1938}
1939
1940/* restore the required registers of bank 2-6 */
1941void omap_gpio_restore_context(void)
1942{
1943 int i;
1944
1945 for (i = 1; i < gpio_bank_count; i++) {
1946 struct gpio_bank *bank = &gpio_bank[i];
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301947 __raw_writel(gpio_context[i].irqenable1,
1948 bank->base + OMAP24XX_GPIO_IRQENABLE1);
1949 __raw_writel(gpio_context[i].irqenable2,
1950 bank->base + OMAP24XX_GPIO_IRQENABLE2);
1951 __raw_writel(gpio_context[i].wake_en,
1952 bank->base + OMAP24XX_GPIO_WAKE_EN);
1953 __raw_writel(gpio_context[i].ctrl,
1954 bank->base + OMAP24XX_GPIO_CTRL);
1955 __raw_writel(gpio_context[i].oe,
1956 bank->base + OMAP24XX_GPIO_OE);
1957 __raw_writel(gpio_context[i].leveldetect0,
1958 bank->base + OMAP24XX_GPIO_LEVELDETECT0);
1959 __raw_writel(gpio_context[i].leveldetect1,
1960 bank->base + OMAP24XX_GPIO_LEVELDETECT1);
1961 __raw_writel(gpio_context[i].risingdetect,
1962 bank->base + OMAP24XX_GPIO_RISINGDETECT);
1963 __raw_writel(gpio_context[i].fallingdetect,
1964 bank->base + OMAP24XX_GPIO_FALLINGDETECT);
1965 __raw_writel(gpio_context[i].dataout,
1966 bank->base + OMAP24XX_GPIO_DATAOUT);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301967 }
1968}
1969#endif
1970
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001971static struct platform_driver omap_gpio_driver = {
1972 .probe = omap_gpio_probe,
1973 .driver = {
1974 .name = "omap_gpio",
1975 },
1976};
1977
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001978/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001979 * gpio driver register needs to be done before
1980 * machine_init functions access gpio APIs.
1981 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001982 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001983static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001984{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001985 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001986}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001987postcore_initcall(omap_gpio_drv_reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001988
Tony Lindgren92105bb2005-09-07 17:20:26 +01001989static int __init omap_gpio_sysinit(void)
1990{
David Brownell11a78b72006-12-06 17:14:11 -08001991 mpuio_init();
1992
Tony Lindgren140455f2010-02-12 12:26:48 -08001993#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001994 if (cpu_is_omap16xx() || cpu_class_is_omap2())
1995 register_syscore_ops(&omap_gpio_syscore_ops);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001996#endif
1997
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001998 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001999}
2000
Tony Lindgren92105bb2005-09-07 17:20:26 +01002001arch_initcall(omap_gpio_sysinit);