blob: a948351ad6c4dc57c5e084e3a954c1d406552a55 [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>
Russell King1bc857f2011-07-26 10:54:55 +010028#include <asm/gpio.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010029#include <asm/mach/irq.h>
30
Charulatha V03e128c2011-05-05 19:58:01 +053031static LIST_HEAD(omap_gpio_list);
32
Charulatha V6d62e212011-04-18 15:06:51 +000033struct gpio_regs {
34 u32 irqenable1;
35 u32 irqenable2;
36 u32 wake_en;
37 u32 ctrl;
38 u32 oe;
39 u32 leveldetect0;
40 u32 leveldetect1;
41 u32 risingdetect;
42 u32 fallingdetect;
43 u32 dataout;
44};
45
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010046struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053047 struct list_head node;
Tony Lindgren9f7065d2009-10-19 15:25:20 -070048 unsigned long pbase;
Tony Lindgren92105bb2005-09-07 17:20:26 +010049 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010050 u16 irq;
51 u16 virtual_irq_start;
Tony Lindgren92105bb2005-09-07 17:20:26 +010052 int method;
Tony Lindgren92105bb2005-09-07 17:20:26 +010053 u32 suspend_wakeup;
54 u32 saved_wakeup;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080055 u32 non_wakeup_gpios;
56 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000057 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080058 u32 saved_datain;
59 u32 saved_fallingdetect;
60 u32 saved_risingdetect;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080061 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080062 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010063 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080064 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080065 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080066 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080067 u32 dbck_enable_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080068 struct device *dev;
69 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053070 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080071 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070072 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053073 int context_loss_count;
Charulatha V03e128c2011-05-05 19:58:01 +053074 u16 id;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070075
76 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053077 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070078
79 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010080};
81
Kevin Hilman129fd222011-04-22 07:59:07 -070082#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
83#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053084#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010085
86static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
87{
Tony Lindgren92105bb2005-09-07 17:20:26 +010088 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010089 u32 l;
90
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070091 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010092 l = __raw_readl(reg);
93 if (is_input)
94 l |= 1 << gpio;
95 else
96 l &= ~(1 << gpio);
97 __raw_writel(l, reg);
98}
99
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700100
101/* set data out value using dedicate set/clear register */
102static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100103{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100104 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700105 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100106
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700107 if (enable)
108 reg += bank->regs->set_dataout;
109 else
110 reg += bank->regs->clr_dataout;
111
112 __raw_writel(l, reg);
113}
114
115/* set data out value using mask register */
116static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
117{
118 void __iomem *reg = bank->base + bank->regs->dataout;
119 u32 gpio_bit = GPIO_BIT(bank, gpio);
120 u32 l;
121
122 l = __raw_readl(reg);
123 if (enable)
124 l |= gpio_bit;
125 else
126 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100127 __raw_writel(l, reg);
128}
129
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300130static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100131{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700132 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100133
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700134 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100135}
136
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300137static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
138{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700139 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300140
Kevin Hilman129fd222011-04-22 07:59:07 -0700141 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300142}
143
Kevin Hilmanece95282011-07-12 08:18:15 -0700144static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
145{
146 int l = __raw_readl(base + reg);
147
148 if (set)
149 l |= mask;
150 else
151 l &= ~mask;
152
153 __raw_writel(l, base + reg);
154}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100155
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700156/**
157 * _set_gpio_debounce - low level gpio debounce time
158 * @bank: the gpio bank we're acting upon
159 * @gpio: the gpio number on this @gpio
160 * @debounce: debounce time to use
161 *
162 * OMAP's debounce time is in 31us steps so we need
163 * to convert and round up to the closest unit.
164 */
165static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
166 unsigned debounce)
167{
Kevin Hilman9942da02011-04-22 12:02:05 -0700168 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700169 u32 val;
170 u32 l;
171
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800172 if (!bank->dbck_flag)
173 return;
174
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700175 if (debounce < 32)
176 debounce = 0x01;
177 else if (debounce > 7936)
178 debounce = 0xff;
179 else
180 debounce = (debounce / 0x1f) - 1;
181
Kevin Hilman129fd222011-04-22 07:59:07 -0700182 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700183
Kevin Hilman9942da02011-04-22 12:02:05 -0700184 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700185 __raw_writel(debounce, reg);
186
Kevin Hilman9942da02011-04-22 12:02:05 -0700187 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700188 val = __raw_readl(reg);
189
190 if (debounce) {
191 val |= l;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800192 clk_enable(bank->dbck);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700193 } else {
194 val &= ~l;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800195 clk_disable(bank->dbck);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700196 }
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300197 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700198
199 __raw_writel(val, reg);
200}
201
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530202static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700203 int trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100204{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800205 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100206 u32 gpio_bit = 1 << gpio;
207
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530208 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
209 trigger & IRQ_TYPE_LEVEL_LOW);
210 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
211 trigger & IRQ_TYPE_LEVEL_HIGH);
212 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
213 trigger & IRQ_TYPE_EDGE_RISING);
214 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
215 trigger & IRQ_TYPE_EDGE_FALLING);
216
217 if (likely(!(bank->non_wakeup_gpios & gpio_bit)))
218 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
219
Ambresh K55b220c2011-06-15 13:40:45 -0700220 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530221 if (!bank->regs->irqctrl) {
222 /* On omap24xx proceed only when valid GPIO bit is set */
223 if (bank->non_wakeup_gpios) {
224 if (!(bank->non_wakeup_gpios & gpio_bit))
225 goto exit;
226 }
227
Chunqiu Wang699117a62009-06-24 17:13:39 +0000228 /*
229 * Log the edge gpio and manually trigger the IRQ
230 * after resume if the input level changes
231 * to avoid irq lost during PER RET/OFF mode
232 * Applies for omap2 non-wakeup gpio and all omap3 gpios
233 */
234 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800235 bank->enabled_non_wakeup_gpios |= gpio_bit;
236 else
237 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
238 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700239
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530240exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530241 bank->level_mask =
242 __raw_readl(bank->base + bank->regs->leveldetect0) |
243 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100244}
245
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800246#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800247/*
248 * This only applies to chips that can't do both rising and falling edge
249 * detection at once. For all other chips, this function is a noop.
250 */
251static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
252{
253 void __iomem *reg = bank->base;
254 u32 l = 0;
255
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530256 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800257 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530258
259 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800260
261 l = __raw_readl(reg);
262 if ((l >> gpio) & 1)
263 l &= ~(1 << gpio);
264 else
265 l |= 1 << gpio;
266
267 __raw_writel(l, reg);
268}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530269#else
270static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800271#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800272
Tony Lindgren92105bb2005-09-07 17:20:26 +0100273static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
274{
275 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530276 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100277 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100278
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530279 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
280 set_gpio_trigger(bank, gpio, trigger);
281 } else if (bank->regs->irqctrl) {
282 reg += bank->regs->irqctrl;
283
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100284 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000285 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800286 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100287 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100288 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100289 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100290 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100291 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530292 return -EINVAL;
293
294 __raw_writel(l, reg);
295 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100296 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530297 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100298 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530299 reg += bank->regs->edgectrl1;
300
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100301 gpio &= 0x07;
302 l = __raw_readl(reg);
303 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100304 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100305 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100306 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100307 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530308
309 /* Enable wake-up during idle for dynamic tick */
310 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
311 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100312 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100313 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100314}
315
Lennert Buytenheke9191022010-11-29 11:17:17 +0100316static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100317{
318 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100319 unsigned gpio;
320 int retval;
David Brownella6472532008-03-03 04:33:30 -0800321 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100322
Lennert Buytenheke9191022010-11-29 11:17:17 +0100323 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
324 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100325 else
Lennert Buytenheke9191022010-11-29 11:17:17 +0100326 gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100327
David Brownelle5c56ed2006-12-06 17:13:59 -0800328 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100329 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800330
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530331 bank = irq_data_get_irq_chip_data(d);
332
333 if (!bank->regs->leveldetect0 &&
334 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100335 return -EINVAL;
336
David Brownella6472532008-03-03 04:33:30 -0800337 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700338 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800339 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800340
341 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100342 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800343 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100344 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800345
Tony Lindgren92105bb2005-09-07 17:20:26 +0100346 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100347}
348
349static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
350{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100351 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100352
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700353 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100354 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300355
356 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700357 if (bank->regs->irqstatus2) {
358 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700359 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700360 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700361
362 /* Flush posted write for the irq status to avoid spurious interrupts */
363 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100364}
365
366static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
367{
Kevin Hilman129fd222011-04-22 07:59:07 -0700368 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100369}
370
Imre Deakea6dedd2006-06-26 16:16:00 -0700371static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
372{
373 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700374 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700375 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700376
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700377 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700378 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700379 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700380 l = ~l;
381 l &= mask;
382 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700383}
384
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700385static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100386{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100387 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100388 u32 l;
389
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700390 if (bank->regs->set_irqenable) {
391 reg += bank->regs->set_irqenable;
392 l = gpio_mask;
393 } else {
394 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100395 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700396 if (bank->regs->irqenable_inv)
397 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100398 else
399 l |= gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100400 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700401
402 __raw_writel(l, reg);
403}
404
405static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
406{
407 void __iomem *reg = bank->base;
408 u32 l;
409
410 if (bank->regs->clr_irqenable) {
411 reg += bank->regs->clr_irqenable;
412 l = gpio_mask;
413 } else {
414 reg += bank->regs->irqenable;
415 l = __raw_readl(reg);
416 if (bank->regs->irqenable_inv)
417 l |= gpio_mask;
418 else
419 l &= ~gpio_mask;
420 }
421
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100422 __raw_writel(l, reg);
423}
424
425static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
426{
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700427 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100428}
429
Tony Lindgren92105bb2005-09-07 17:20:26 +0100430/*
431 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
432 * 1510 does not seem to have a wake-up register. If JTAG is connected
433 * to the target, system will wake up always on GPIO events. While
434 * system is running all registered GPIO interrupts need to have wake-up
435 * enabled. When system is suspended, only selected GPIO interrupts need
436 * to have wake-up enabled.
437 */
438static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
439{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700440 u32 gpio_bit = GPIO_BIT(bank, gpio);
441 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800442
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700443 if (bank->non_wakeup_gpios & gpio_bit) {
444 dev_err(bank->dev,
445 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100446 return -EINVAL;
447 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700448
449 spin_lock_irqsave(&bank->lock, flags);
450 if (enable)
451 bank->suspend_wakeup |= gpio_bit;
452 else
453 bank->suspend_wakeup &= ~gpio_bit;
454
455 spin_unlock_irqrestore(&bank->lock, flags);
456
457 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100458}
459
Tony Lindgren4196dd62006-09-25 12:41:38 +0300460static void _reset_gpio(struct gpio_bank *bank, int gpio)
461{
Kevin Hilman129fd222011-04-22 07:59:07 -0700462 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300463 _set_gpio_irqenable(bank, gpio, 0);
464 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700465 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300466}
467
Tony Lindgren92105bb2005-09-07 17:20:26 +0100468/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100469static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100470{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100471 unsigned int gpio = d->irq - IH_GPIO_BASE;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100472 struct gpio_bank *bank;
473 int retval;
474
Lennert Buytenheke9191022010-11-29 11:17:17 +0100475 bank = irq_data_get_irq_chip_data(d);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700476 retval = _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100477
478 return retval;
479}
480
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800481static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100482{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800483 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800484 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100485
David Brownella6472532008-03-03 04:33:30 -0800486 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100487
Tony Lindgren4196dd62006-09-25 12:41:38 +0300488 /* Set trigger to none. You need to enable the desired trigger with
489 * request_irq() or set_irq_type().
490 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800491 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100492
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000493#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100494 if (bank->method == METHOD_GPIO_1510) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100495 void __iomem *reg;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100496
Tony Lindgren92105bb2005-09-07 17:20:26 +0100497 /* Claim the pin for MPU */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100498 reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800499 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100500 }
501#endif
Charulatha Vc8eef652011-05-02 15:21:42 +0530502 if (bank->regs->ctrl && !bank->mod_usage) {
503 void __iomem *reg = bank->base + bank->regs->ctrl;
504 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700505
Charulatha Vc8eef652011-05-02 15:21:42 +0530506 ctrl = __raw_readl(reg);
507 /* Module is enabled, clocks are not gated */
508 ctrl &= ~GPIO_MOD_CTRL_BIT;
509 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800510 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530511
512 bank->mod_usage |= 1 << offset;
513
David Brownella6472532008-03-03 04:33:30 -0800514 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100515
516 return 0;
517}
518
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800519static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100520{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800521 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530522 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800523 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100524
David Brownella6472532008-03-03 04:33:30 -0800525 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530526
527 if (bank->regs->wkup_en)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100528 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530529 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
530
Charulatha Vc8eef652011-05-02 15:21:42 +0530531 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700532
Charulatha Vc8eef652011-05-02 15:21:42 +0530533 if (bank->regs->ctrl && !bank->mod_usage) {
534 void __iomem *reg = bank->base + bank->regs->ctrl;
535 u32 ctrl;
536
537 ctrl = __raw_readl(reg);
538 /* Module is disabled, clocks are gated */
539 ctrl |= GPIO_MOD_CTRL_BIT;
540 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800541 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530542
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800543 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800544 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100545}
546
547/*
548 * We need to unmask the GPIO bank interrupt as soon as possible to
549 * avoid missing GPIO interrupts for other lines in the bank.
550 * Then we need to mask-read-clear-unmask the triggered GPIO lines
551 * in the bank to avoid missing nested interrupts for a GPIO line.
552 * If we wait to unmask individual GPIO lines in the bank after the
553 * line's interrupt handler has been run, we may miss some nested
554 * interrupts.
555 */
Russell King10dd5ce2006-11-23 11:41:32 +0000556static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100557{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100558 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100559 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800560 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100561 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700562 u32 retrigger = 0;
563 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000564 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100565
Will Deaconee144182011-02-21 13:46:08 +0000566 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100567
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100568 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700569 isr_reg = bank->base + bank->regs->irqstatus;
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800570
571 if (WARN_ON(!isr_reg))
572 goto exit;
573
Tony Lindgren92105bb2005-09-07 17:20:26 +0100574 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100575 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700576 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100577
Imre Deakea6dedd2006-06-26 16:16:00 -0700578 enabled = _get_gpio_irqbank_mask(bank);
579 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100580
581 if (cpu_is_omap15xx() && (bank->method == METHOD_MPUIO))
582 isr &= 0x0000ffff;
583
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530584 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800585 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100586
587 /* clear edge sensitive interrupts before handler(s) are
588 called so that we don't miss any interrupt occurred while
589 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700590 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100591 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700592 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100593
594 /* if there is only edge sensitive GPIO pin interrupts
595 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700596 if (!level_mask && !unmasked) {
597 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000598 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700599 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100600
Imre Deakea6dedd2006-06-26 16:16:00 -0700601 isr |= retrigger;
602 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100603 if (!isr)
604 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100605
Tony Lindgren92105bb2005-09-07 17:20:26 +0100606 gpio_irq = bank->virtual_irq_start;
607 for (; isr != 0; isr >>= 1, gpio_irq++) {
Kevin Hilman129fd222011-04-22 07:59:07 -0700608 gpio_index = GPIO_INDEX(bank, irq_to_gpio(gpio_irq));
Cory Maccarrone4318f362010-01-08 10:29:04 -0800609
Tony Lindgren92105bb2005-09-07 17:20:26 +0100610 if (!(isr & 1))
611 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200612
Cory Maccarrone4318f362010-01-08 10:29:04 -0800613 /*
614 * Some chips can't respond to both rising and falling
615 * at the same time. If this irq was requested with
616 * both flags, we need to flip the ICR data for the IRQ
617 * to respond to the IRQ for the opposite direction.
618 * This will be indicated in the bank toggle_mask.
619 */
620 if (bank->toggle_mask & (1 << gpio_index))
621 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800622
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100623 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100624 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000625 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700626 /* if bank has any level sensitive GPIO pin interrupt
627 configured, we must unmask the bank interrupt only after
628 handler(s) are executed in order to avoid spurious bank
629 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800630exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700631 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000632 chained_irq_exit(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100633}
634
Lennert Buytenheke9191022010-11-29 11:17:17 +0100635static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300636{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100637 unsigned int gpio = d->irq - IH_GPIO_BASE;
638 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700639 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300640
Colin Cross85ec7b92011-06-06 13:38:18 -0700641 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300642 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700643 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300644}
645
Lennert Buytenheke9191022010-11-29 11:17:17 +0100646static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100647{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100648 unsigned int gpio = d->irq - IH_GPIO_BASE;
649 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100650
651 _clear_gpio_irqstatus(bank, gpio);
652}
653
Lennert Buytenheke9191022010-11-29 11:17:17 +0100654static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100655{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100656 unsigned int gpio = d->irq - IH_GPIO_BASE;
657 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700658 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100659
Colin Cross85ec7b92011-06-06 13:38:18 -0700660 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100661 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700662 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700663 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100664}
665
Lennert Buytenheke9191022010-11-29 11:17:17 +0100666static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100667{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100668 unsigned int gpio = d->irq - IH_GPIO_BASE;
669 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Kevin Hilman129fd222011-04-22 07:59:07 -0700670 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100671 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700672 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700673
Colin Cross85ec7b92011-06-06 13:38:18 -0700674 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700675 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700676 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800677
678 /* For level-triggered GPIOs, the clearing must be done after
679 * the HW source is cleared, thus after the handler has run */
680 if (bank->level_mask & irq_mask) {
681 _set_gpio_irqenable(bank, gpio, 0);
682 _clear_gpio_irqstatus(bank, gpio);
683 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100684
Kevin Hilman4de8c752008-01-16 21:56:14 -0800685 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700686 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100687}
688
David Brownelle5c56ed2006-12-06 17:13:59 -0800689static struct irq_chip gpio_irq_chip = {
690 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100691 .irq_shutdown = gpio_irq_shutdown,
692 .irq_ack = gpio_ack_irq,
693 .irq_mask = gpio_mask_irq,
694 .irq_unmask = gpio_unmask_irq,
695 .irq_set_type = gpio_irq_type,
696 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800697};
698
699/*---------------------------------------------------------------------*/
700
701#ifdef CONFIG_ARCH_OMAP1
702
David Brownelle5c56ed2006-12-06 17:13:59 -0800703#define bank_is_mpuio(bank) ((bank)->method == METHOD_MPUIO)
704
David Brownell11a78b72006-12-06 17:14:11 -0800705#ifdef CONFIG_ARCH_OMAP16XX
706
707#include <linux/platform_device.h>
708
Magnus Damm79ee0312009-07-08 13:22:04 +0200709static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800710{
Magnus Damm79ee0312009-07-08 13:22:04 +0200711 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800712 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800713 void __iomem *mask_reg = bank->base +
714 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800715 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800716
David Brownella6472532008-03-03 04:33:30 -0800717 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800718 bank->saved_wakeup = __raw_readl(mask_reg);
719 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800720 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800721
722 return 0;
723}
724
Magnus Damm79ee0312009-07-08 13:22:04 +0200725static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800726{
Magnus Damm79ee0312009-07-08 13:22:04 +0200727 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800728 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800729 void __iomem *mask_reg = bank->base +
730 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800731 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800732
David Brownella6472532008-03-03 04:33:30 -0800733 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800734 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800735 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800736
737 return 0;
738}
739
Alexey Dobriyan47145212009-12-14 18:00:08 -0800740static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200741 .suspend_noirq = omap_mpuio_suspend_noirq,
742 .resume_noirq = omap_mpuio_resume_noirq,
743};
744
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200745/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800746static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800747 .driver = {
748 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200749 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800750 },
751};
752
753static struct platform_device omap_mpuio_device = {
754 .name = "mpuio",
755 .id = -1,
756 .dev = {
757 .driver = &omap_mpuio_driver.driver,
758 }
759 /* could list the /proc/iomem resources */
760};
761
Charulatha V03e128c2011-05-05 19:58:01 +0530762static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800763{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800764 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700765
David Brownell11a78b72006-12-06 17:14:11 -0800766 if (platform_driver_register(&omap_mpuio_driver) == 0)
767 (void) platform_device_register(&omap_mpuio_device);
768}
769
770#else
Charulatha V03e128c2011-05-05 19:58:01 +0530771static inline void mpuio_init(struct gpio_bank *bank) {}
David Brownell11a78b72006-12-06 17:14:11 -0800772#endif /* 16xx */
773
David Brownelle5c56ed2006-12-06 17:13:59 -0800774#else
775
David Brownelle5c56ed2006-12-06 17:13:59 -0800776#define bank_is_mpuio(bank) 0
Charulatha V03e128c2011-05-05 19:58:01 +0530777static inline void mpuio_init(struct gpio_bank *bank) {}
David Brownelle5c56ed2006-12-06 17:13:59 -0800778
779#endif
780
781/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100782
David Brownell52e31342008-03-03 12:43:23 -0800783/* REVISIT these are stupid implementations! replace by ones that
784 * don't switch on METHOD_* and which mostly avoid spinlocks
785 */
786
787static int gpio_input(struct gpio_chip *chip, unsigned offset)
788{
789 struct gpio_bank *bank;
790 unsigned long flags;
791
792 bank = container_of(chip, struct gpio_bank, chip);
793 spin_lock_irqsave(&bank->lock, flags);
794 _set_gpio_direction(bank, offset, 1);
795 spin_unlock_irqrestore(&bank->lock, flags);
796 return 0;
797}
798
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300799static int gpio_is_input(struct gpio_bank *bank, int mask)
800{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700801 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300802
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300803 return __raw_readl(reg) & mask;
804}
805
David Brownell52e31342008-03-03 12:43:23 -0800806static int gpio_get(struct gpio_chip *chip, unsigned offset)
807{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300808 struct gpio_bank *bank;
809 void __iomem *reg;
810 int gpio;
811 u32 mask;
812
813 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530814 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300815 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700816 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300817
818 if (gpio_is_input(bank, mask))
819 return _get_gpio_datain(bank, gpio);
820 else
821 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -0800822}
823
824static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
825{
826 struct gpio_bank *bank;
827 unsigned long flags;
828
829 bank = container_of(chip, struct gpio_bank, chip);
830 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700831 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800832 _set_gpio_direction(bank, offset, 0);
833 spin_unlock_irqrestore(&bank->lock, flags);
834 return 0;
835}
836
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700837static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
838 unsigned debounce)
839{
840 struct gpio_bank *bank;
841 unsigned long flags;
842
843 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800844
845 if (!bank->dbck) {
846 bank->dbck = clk_get(bank->dev, "dbclk");
847 if (IS_ERR(bank->dbck))
848 dev_err(bank->dev, "Could not get gpio dbck\n");
849 }
850
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700851 spin_lock_irqsave(&bank->lock, flags);
852 _set_gpio_debounce(bank, offset, debounce);
853 spin_unlock_irqrestore(&bank->lock, flags);
854
855 return 0;
856}
857
David Brownell52e31342008-03-03 12:43:23 -0800858static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
859{
860 struct gpio_bank *bank;
861 unsigned long flags;
862
863 bank = container_of(chip, struct gpio_bank, chip);
864 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700865 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800866 spin_unlock_irqrestore(&bank->lock, flags);
867}
868
David Brownella007b702008-12-10 17:35:25 -0800869static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
870{
871 struct gpio_bank *bank;
872
873 bank = container_of(chip, struct gpio_bank, chip);
874 return bank->virtual_irq_start + offset;
875}
876
David Brownell52e31342008-03-03 12:43:23 -0800877/*---------------------------------------------------------------------*/
878
Tony Lindgren9a748052010-12-07 16:26:56 -0800879static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700880{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700881 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700882 u32 rev;
883
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700884 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700885 return;
886
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700887 rev = __raw_readw(bank->base + bank->regs->revision);
888 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700889 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700890
891 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700892}
893
David Brownell8ba55c52008-02-26 11:10:50 -0800894/* This lock class tells lockdep that GPIO irqs are in a different
895 * category than their parents, so it won't report false recursion.
896 */
897static struct lock_class_key gpio_lock_class;
898
Charulatha V03e128c2011-05-05 19:58:01 +0530899static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800900{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530901 void __iomem *base = bank->base;
902 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800903
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530904 if (bank->width == 16)
905 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800906
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530907 if (bank_is_mpuio(bank)) {
908 __raw_writel(l, bank->base + bank->regs->irqenable);
909 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800910 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530911
912 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
913 _gpio_rmw(base, bank->regs->irqstatus, l,
914 bank->regs->irqenable_inv == false);
915 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
916 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
917 if (bank->regs->debounce_en)
918 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
919
920 /* Initialize interface clk ungated, module enabled */
921 if (bank->regs->ctrl)
922 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800923}
924
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700925static __init void
926omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
927 unsigned int num)
928{
929 struct irq_chip_generic *gc;
930 struct irq_chip_type *ct;
931
932 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
933 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700934 if (!gc) {
935 dev_err(bank->dev, "Memory alloc failed for gc\n");
936 return;
937 }
938
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700939 ct = gc->chip_types;
940
941 /* NOTE: No ack required, reading IRQ status clears it. */
942 ct->chip.irq_mask = irq_gc_mask_set_bit;
943 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
944 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530945
946 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700947 ct->chip.irq_set_wake = gpio_wake_enable,
948
949 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
950 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
951 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
952}
953
Russell Kingd52b31d2011-05-27 13:56:12 -0700954static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800955{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800956 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800957 static int gpio;
958
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800959 bank->mod_usage = 0;
960 /*
961 * REVISIT eventually switch from OMAP-specific gpio structs
962 * over to the generic ones
963 */
964 bank->chip.request = omap_gpio_request;
965 bank->chip.free = omap_gpio_free;
966 bank->chip.direction_input = gpio_input;
967 bank->chip.get = gpio_get;
968 bank->chip.direction_output = gpio_output;
969 bank->chip.set_debounce = gpio_debounce;
970 bank->chip.set = gpio_set;
971 bank->chip.to_irq = gpio_2irq;
972 if (bank_is_mpuio(bank)) {
973 bank->chip.label = "mpuio";
974#ifdef CONFIG_ARCH_OMAP16XX
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530975 if (bank->regs->wkup_en)
976 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800977#endif
978 bank->chip.base = OMAP_MPUIO(0);
979 } else {
980 bank->chip.label = "gpio";
981 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700982 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800983 }
Kevin Hilmand5f46242011-04-21 09:23:00 -0700984 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800985
986 gpiochip_add(&bank->chip);
987
988 for (j = bank->virtual_irq_start;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700989 j < bank->virtual_irq_start + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +0100990 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100991 irq_set_chip_data(j, bank);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700992 if (bank_is_mpuio(bank)) {
993 omap_mpuio_alloc_gc(bank, j, bank->width);
994 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100995 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700996 irq_set_handler(j, handle_simple_irq);
997 set_irq_flags(j, IRQF_VALID);
998 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800999 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001000 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1001 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001002}
1003
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001004static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001005{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001006 struct omap_gpio_platform_data *pdata;
1007 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001008 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301009 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001010
Charulatha V03e128c2011-05-05 19:58:01 +05301011 if (!pdev->dev.platform_data) {
1012 ret = -EINVAL;
1013 goto err_exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001014 }
1015
Charulatha V03e128c2011-05-05 19:58:01 +05301016 bank = kzalloc(sizeof(struct gpio_bank), GFP_KERNEL);
1017 if (!bank) {
1018 dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
1019 ret = -ENOMEM;
1020 goto err_exit;
1021 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001022
1023 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1024 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +05301025 dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n",
1026 pdev->id);
1027 ret = -ENODEV;
1028 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001029 }
1030
1031 bank->irq = res->start;
Charulatha V03e128c2011-05-05 19:58:01 +05301032 bank->id = pdev->id;
1033
1034 pdata = pdev->dev.platform_data;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001035 bank->virtual_irq_start = pdata->virtual_irq_start;
1036 bank->method = pdata->bank_type;
1037 bank->dev = &pdev->dev;
1038 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001039 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001040 bank->width = pdata->bank_width;
Charulatha V803a2432011-05-05 17:04:12 +05301041 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301042 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301043 bank->get_context_loss_count = pdata->get_context_loss_count;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001044 bank->regs = pdata->regs;
1045
1046 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1047 bank->set_dataout = _set_gpio_dataout_reg;
1048 else
1049 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001050
1051 spin_lock_init(&bank->lock);
1052
1053 /* Static mapping, never released */
1054 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1055 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +05301056 dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n",
1057 pdev->id);
1058 ret = -ENODEV;
1059 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001060 }
1061
1062 bank->base = ioremap(res->start, resource_size(res));
1063 if (!bank->base) {
Charulatha V03e128c2011-05-05 19:58:01 +05301064 dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n",
1065 pdev->id);
1066 ret = -ENOMEM;
1067 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001068 }
1069
1070 pm_runtime_enable(bank->dev);
1071 pm_runtime_get_sync(bank->dev);
1072
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301073 if (bank_is_mpuio(bank))
1074 mpuio_init(bank);
1075
Charulatha V03e128c2011-05-05 19:58:01 +05301076 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001077 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001078 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001079
Charulatha V03e128c2011-05-05 19:58:01 +05301080 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001081
Charulatha V03e128c2011-05-05 19:58:01 +05301082 return ret;
1083
1084err_free:
1085 kfree(bank);
1086err_exit:
1087 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001088}
1089
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001090static int omap_gpio_suspend(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001091{
Charulatha V03e128c2011-05-05 19:58:01 +05301092 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001093
Charulatha V03e128c2011-05-05 19:58:01 +05301094 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301095 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001096 void __iomem *wake_status;
David Brownella6472532008-03-03 04:33:30 -08001097 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001098
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301099 if (!bank->regs->wkup_en)
1100 return 0;
1101
1102 wake_status = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001103
David Brownella6472532008-03-03 04:33:30 -08001104 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001105 bank->saved_wakeup = __raw_readl(wake_status);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301106 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1107 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001108 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001109 }
1110
1111 return 0;
1112}
1113
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001114static void omap_gpio_resume(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001115{
Charulatha V03e128c2011-05-05 19:58:01 +05301116 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001117
Charulatha V03e128c2011-05-05 19:58:01 +05301118 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301119 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -08001120 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001121
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301122 if (!bank->regs->wkup_en)
1123 return;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001124
David Brownella6472532008-03-03 04:33:30 -08001125 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301126 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1127 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001128 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001129 }
Tony Lindgren92105bb2005-09-07 17:20:26 +01001130}
1131
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001132static struct syscore_ops omap_gpio_syscore_ops = {
Tony Lindgren92105bb2005-09-07 17:20:26 +01001133 .suspend = omap_gpio_suspend,
1134 .resume = omap_gpio_resume,
1135};
1136
Tony Lindgren140455f2010-02-12 12:26:48 -08001137#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001138
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301139static void omap_gpio_save_context(struct gpio_bank *bank);
1140static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001141
Paul Walmsley72e06d02010-12-21 21:05:16 -07001142void omap2_gpio_prepare_for_idle(int off_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001143{
Charulatha V03e128c2011-05-05 19:58:01 +05301144 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001145
Charulatha V03e128c2011-05-05 19:58:01 +05301146 list_for_each_entry(bank, &omap_gpio_list, node) {
Sanjeev Premica828762010-09-23 18:27:18 -07001147 u32 l1 = 0, l2 = 0;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001148 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001149
Charulatha V0cde8d02011-05-05 20:15:16 +05301150 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301151 continue;
1152
Kevin Hilman0aed04352010-09-22 16:06:27 -07001153 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001154 clk_disable(bank->dbck);
1155
Paul Walmsley72e06d02010-12-21 21:05:16 -07001156 if (!off_mode)
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001157 continue;
1158
1159 /* If going to OFF, remove triggering for all
1160 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1161 * generated. See OMAP2420 Errata item 1.101. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001162 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301163 goto save_gpio_context;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001164
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301165 bank->saved_datain = __raw_readl(bank->base +
1166 bank->regs->datain);
1167 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1168 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001169
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001170 bank->saved_fallingdetect = l1;
1171 bank->saved_risingdetect = l2;
1172 l1 &= ~bank->enabled_non_wakeup_gpios;
1173 l2 &= ~bank->enabled_non_wakeup_gpios;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001174
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301175 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1176 __raw_writel(l2, bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001177
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301178save_gpio_context:
1179 if (bank->get_context_loss_count)
1180 bank->context_loss_count =
1181 bank->get_context_loss_count(bank->dev);
1182
1183 omap_gpio_save_context(bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001184 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001185}
1186
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001187void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001188{
Charulatha V03e128c2011-05-05 19:58:01 +05301189 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001190
Charulatha V03e128c2011-05-05 19:58:01 +05301191 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301192 int context_lost_cnt_after;
Sanjeev Premica828762010-09-23 18:27:18 -07001193 u32 l = 0, gen, gen0, gen1;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001194 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001195
Charulatha V0cde8d02011-05-05 20:15:16 +05301196 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301197 continue;
1198
Kevin Hilman0aed04352010-09-22 16:06:27 -07001199 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001200 clk_enable(bank->dbck);
1201
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301202 if (bank->get_context_loss_count) {
1203 context_lost_cnt_after =
1204 bank->get_context_loss_count(bank->dev);
1205 if (context_lost_cnt_after != bank->context_loss_count
1206 || !context_lost_cnt_after)
1207 omap_gpio_restore_context(bank);
1208 }
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001209
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001210 if (!(bank->enabled_non_wakeup_gpios))
1211 continue;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001212
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301213 __raw_writel(bank->saved_fallingdetect,
1214 bank->base + bank->regs->fallingdetect);
1215 __raw_writel(bank->saved_risingdetect,
1216 bank->base + bank->regs->risingdetect);
1217 l = __raw_readl(bank->base + bank->regs->datain);
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001218
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001219 /* Check if any of the non-wakeup interrupt GPIOs have changed
1220 * state. If so, generate an IRQ by software. This is
1221 * horribly racy, but it's the best we can do to work around
1222 * this silicon bug. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001223 l ^= bank->saved_datain;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001224 l &= bank->enabled_non_wakeup_gpios;
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001225
1226 /*
1227 * No need to generate IRQs for the rising edge for gpio IRQs
1228 * configured with falling edge only; and vice versa.
1229 */
1230 gen0 = l & bank->saved_fallingdetect;
1231 gen0 &= bank->saved_datain;
1232
1233 gen1 = l & bank->saved_risingdetect;
1234 gen1 &= ~(bank->saved_datain);
1235
1236 /* FIXME: Consider GPIO IRQs with level detections properly! */
1237 gen = l & (~(bank->saved_fallingdetect) &
1238 ~(bank->saved_risingdetect));
1239 /* Consider all GPIO IRQs needed to be updated */
1240 gen |= gen0 | gen1;
1241
1242 if (gen) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001243 u32 old0, old1;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001244
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301245 old0 = __raw_readl(bank->base +
1246 bank->regs->leveldetect0);
1247 old1 = __raw_readl(bank->base +
1248 bank->regs->leveldetect1);
1249
Sergio Aguirref00d6492010-03-03 16:21:08 +00001250 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301251 old0 |= gen;
1252 old1 |= gen;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001253 }
1254
1255 if (cpu_is_omap44xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301256 old0 |= l;
1257 old1 |= l;
Tony Lindgren3f1686a92010-02-15 09:27:25 -08001258 }
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301259 __raw_writel(old0, bank->base +
1260 bank->regs->leveldetect0);
1261 __raw_writel(old1, bank->base +
1262 bank->regs->leveldetect1);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001263 }
1264 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001265}
1266
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301267static void omap_gpio_save_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301268{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301269 bank->context.irqenable1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301270 __raw_readl(bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301271 bank->context.irqenable2 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301272 __raw_readl(bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301273 bank->context.wake_en =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301274 __raw_readl(bank->base + bank->regs->wkup_en);
1275 bank->context.ctrl = __raw_readl(bank->base + bank->regs->ctrl);
1276 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301277 bank->context.leveldetect0 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301278 __raw_readl(bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301279 bank->context.leveldetect1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301280 __raw_readl(bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301281 bank->context.risingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301282 __raw_readl(bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301283 bank->context.fallingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301284 __raw_readl(bank->base + bank->regs->fallingdetect);
1285 bank->context.dataout = __raw_readl(bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301286}
1287
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301288static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301289{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301290 __raw_writel(bank->context.irqenable1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301291 bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301292 __raw_writel(bank->context.irqenable2,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301293 bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301294 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301295 bank->base + bank->regs->wkup_en);
1296 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
1297 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301298 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301299 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301300 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301301 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301302 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301303 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301304 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301305 bank->base + bank->regs->fallingdetect);
1306 __raw_writel(bank->context.dataout, bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301307}
1308#endif
1309
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001310static struct platform_driver omap_gpio_driver = {
1311 .probe = omap_gpio_probe,
1312 .driver = {
1313 .name = "omap_gpio",
1314 },
1315};
1316
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001317/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001318 * gpio driver register needs to be done before
1319 * machine_init functions access gpio APIs.
1320 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001321 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001322static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001323{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001324 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001325}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001326postcore_initcall(omap_gpio_drv_reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001327
Tony Lindgren92105bb2005-09-07 17:20:26 +01001328static int __init omap_gpio_sysinit(void)
1329{
David Brownell11a78b72006-12-06 17:14:11 -08001330
Tony Lindgren140455f2010-02-12 12:26:48 -08001331#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001332 if (cpu_is_omap16xx() || cpu_class_is_omap2())
1333 register_syscore_ops(&omap_gpio_syscore_ops);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001334#endif
1335
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001336 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001337}
1338
Tony Lindgren92105bb2005-09-07 17:20:26 +01001339arch_initcall(omap_gpio_sysinit);