blob: 38beccc9e655739cbd6b876d8b0dcd22bfbb8c6f [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 Wang699117a2009-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
Charulatha Vfad96ea2011-05-25 11:23:50 +0530493 if (bank->regs->pinctrl) {
494 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100495
Tony Lindgren92105bb2005-09-07 17:20:26 +0100496 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800497 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100498 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530499
Charulatha Vc8eef652011-05-02 15:21:42 +0530500 if (bank->regs->ctrl && !bank->mod_usage) {
501 void __iomem *reg = bank->base + bank->regs->ctrl;
502 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700503
Charulatha Vc8eef652011-05-02 15:21:42 +0530504 ctrl = __raw_readl(reg);
505 /* Module is enabled, clocks are not gated */
506 ctrl &= ~GPIO_MOD_CTRL_BIT;
507 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800508 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530509
510 bank->mod_usage |= 1 << offset;
511
David Brownella6472532008-03-03 04:33:30 -0800512 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100513
514 return 0;
515}
516
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800517static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100518{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800519 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530520 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800521 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100522
David Brownella6472532008-03-03 04:33:30 -0800523 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530524
525 if (bank->regs->wkup_en)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100526 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530527 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
528
Charulatha Vc8eef652011-05-02 15:21:42 +0530529 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700530
Charulatha Vc8eef652011-05-02 15:21:42 +0530531 if (bank->regs->ctrl && !bank->mod_usage) {
532 void __iomem *reg = bank->base + bank->regs->ctrl;
533 u32 ctrl;
534
535 ctrl = __raw_readl(reg);
536 /* Module is disabled, clocks are gated */
537 ctrl |= GPIO_MOD_CTRL_BIT;
538 __raw_writel(ctrl, reg);
Charulatha V058af1e2009-11-22 10:11:25 -0800539 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530540
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800541 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800542 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100543}
544
545/*
546 * We need to unmask the GPIO bank interrupt as soon as possible to
547 * avoid missing GPIO interrupts for other lines in the bank.
548 * Then we need to mask-read-clear-unmask the triggered GPIO lines
549 * in the bank to avoid missing nested interrupts for a GPIO line.
550 * If we wait to unmask individual GPIO lines in the bank after the
551 * line's interrupt handler has been run, we may miss some nested
552 * interrupts.
553 */
Russell King10dd5ce2006-11-23 11:41:32 +0000554static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100555{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100556 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100557 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800558 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100559 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700560 u32 retrigger = 0;
561 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000562 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100563
Will Deaconee144182011-02-21 13:46:08 +0000564 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100565
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100566 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700567 isr_reg = bank->base + bank->regs->irqstatus;
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800568
569 if (WARN_ON(!isr_reg))
570 goto exit;
571
Tony Lindgren92105bb2005-09-07 17:20:26 +0100572 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100573 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700574 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100575
Imre Deakea6dedd2006-06-26 16:16:00 -0700576 enabled = _get_gpio_irqbank_mask(bank);
577 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100578
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530579 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800580 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100581
582 /* clear edge sensitive interrupts before handler(s) are
583 called so that we don't miss any interrupt occurred while
584 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700585 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100586 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700587 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100588
589 /* if there is only edge sensitive GPIO pin interrupts
590 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700591 if (!level_mask && !unmasked) {
592 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000593 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700594 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100595
Imre Deakea6dedd2006-06-26 16:16:00 -0700596 isr |= retrigger;
597 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100598 if (!isr)
599 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100600
Tony Lindgren92105bb2005-09-07 17:20:26 +0100601 gpio_irq = bank->virtual_irq_start;
602 for (; isr != 0; isr >>= 1, gpio_irq++) {
Kevin Hilman129fd222011-04-22 07:59:07 -0700603 gpio_index = GPIO_INDEX(bank, irq_to_gpio(gpio_irq));
Cory Maccarrone4318f362010-01-08 10:29:04 -0800604
Tony Lindgren92105bb2005-09-07 17:20:26 +0100605 if (!(isr & 1))
606 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200607
Cory Maccarrone4318f362010-01-08 10:29:04 -0800608 /*
609 * Some chips can't respond to both rising and falling
610 * at the same time. If this irq was requested with
611 * both flags, we need to flip the ICR data for the IRQ
612 * to respond to the IRQ for the opposite direction.
613 * This will be indicated in the bank toggle_mask.
614 */
615 if (bank->toggle_mask & (1 << gpio_index))
616 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800617
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100618 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100619 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000620 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700621 /* if bank has any level sensitive GPIO pin interrupt
622 configured, we must unmask the bank interrupt only after
623 handler(s) are executed in order to avoid spurious bank
624 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800625exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700626 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000627 chained_irq_exit(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100628}
629
Lennert Buytenheke9191022010-11-29 11:17:17 +0100630static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300631{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100632 unsigned int gpio = d->irq - IH_GPIO_BASE;
633 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700634 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300635
Colin Cross85ec7b92011-06-06 13:38:18 -0700636 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300637 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700638 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300639}
640
Lennert Buytenheke9191022010-11-29 11:17:17 +0100641static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100642{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100643 unsigned int gpio = d->irq - IH_GPIO_BASE;
644 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100645
646 _clear_gpio_irqstatus(bank, gpio);
647}
648
Lennert Buytenheke9191022010-11-29 11:17:17 +0100649static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100650{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100651 unsigned int gpio = d->irq - IH_GPIO_BASE;
652 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700653 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100654
Colin Cross85ec7b92011-06-06 13:38:18 -0700655 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100656 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700657 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700658 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100659}
660
Lennert Buytenheke9191022010-11-29 11:17:17 +0100661static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100662{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100663 unsigned int gpio = d->irq - IH_GPIO_BASE;
664 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Kevin Hilman129fd222011-04-22 07:59:07 -0700665 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100666 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700667 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700668
Colin Cross85ec7b92011-06-06 13:38:18 -0700669 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700670 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700671 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800672
673 /* For level-triggered GPIOs, the clearing must be done after
674 * the HW source is cleared, thus after the handler has run */
675 if (bank->level_mask & irq_mask) {
676 _set_gpio_irqenable(bank, gpio, 0);
677 _clear_gpio_irqstatus(bank, gpio);
678 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100679
Kevin Hilman4de8c752008-01-16 21:56:14 -0800680 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700681 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100682}
683
David Brownelle5c56ed2006-12-06 17:13:59 -0800684static struct irq_chip gpio_irq_chip = {
685 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100686 .irq_shutdown = gpio_irq_shutdown,
687 .irq_ack = gpio_ack_irq,
688 .irq_mask = gpio_mask_irq,
689 .irq_unmask = gpio_unmask_irq,
690 .irq_set_type = gpio_irq_type,
691 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800692};
693
694/*---------------------------------------------------------------------*/
695
696#ifdef CONFIG_ARCH_OMAP1
697
David Brownelle5c56ed2006-12-06 17:13:59 -0800698#define bank_is_mpuio(bank) ((bank)->method == METHOD_MPUIO)
699
David Brownell11a78b72006-12-06 17:14:11 -0800700#ifdef CONFIG_ARCH_OMAP16XX
701
702#include <linux/platform_device.h>
703
Magnus Damm79ee0312009-07-08 13:22:04 +0200704static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800705{
Magnus Damm79ee0312009-07-08 13:22:04 +0200706 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800707 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800708 void __iomem *mask_reg = bank->base +
709 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800710 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800711
David Brownella6472532008-03-03 04:33:30 -0800712 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800713 bank->saved_wakeup = __raw_readl(mask_reg);
714 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800715 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800716
717 return 0;
718}
719
Magnus Damm79ee0312009-07-08 13:22:04 +0200720static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800721{
Magnus Damm79ee0312009-07-08 13:22:04 +0200722 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800723 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800724 void __iomem *mask_reg = bank->base +
725 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800726 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800727
David Brownella6472532008-03-03 04:33:30 -0800728 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800729 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800730 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800731
732 return 0;
733}
734
Alexey Dobriyan47145212009-12-14 18:00:08 -0800735static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200736 .suspend_noirq = omap_mpuio_suspend_noirq,
737 .resume_noirq = omap_mpuio_resume_noirq,
738};
739
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200740/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800741static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800742 .driver = {
743 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200744 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800745 },
746};
747
748static struct platform_device omap_mpuio_device = {
749 .name = "mpuio",
750 .id = -1,
751 .dev = {
752 .driver = &omap_mpuio_driver.driver,
753 }
754 /* could list the /proc/iomem resources */
755};
756
Charulatha V03e128c2011-05-05 19:58:01 +0530757static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800758{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800759 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700760
David Brownell11a78b72006-12-06 17:14:11 -0800761 if (platform_driver_register(&omap_mpuio_driver) == 0)
762 (void) platform_device_register(&omap_mpuio_device);
763}
764
765#else
Charulatha V03e128c2011-05-05 19:58:01 +0530766static inline void mpuio_init(struct gpio_bank *bank) {}
David Brownell11a78b72006-12-06 17:14:11 -0800767#endif /* 16xx */
768
David Brownelle5c56ed2006-12-06 17:13:59 -0800769#else
770
David Brownelle5c56ed2006-12-06 17:13:59 -0800771#define bank_is_mpuio(bank) 0
Charulatha V03e128c2011-05-05 19:58:01 +0530772static inline void mpuio_init(struct gpio_bank *bank) {}
David Brownelle5c56ed2006-12-06 17:13:59 -0800773
774#endif
775
776/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100777
David Brownell52e31342008-03-03 12:43:23 -0800778/* REVISIT these are stupid implementations! replace by ones that
779 * don't switch on METHOD_* and which mostly avoid spinlocks
780 */
781
782static int gpio_input(struct gpio_chip *chip, unsigned offset)
783{
784 struct gpio_bank *bank;
785 unsigned long flags;
786
787 bank = container_of(chip, struct gpio_bank, chip);
788 spin_lock_irqsave(&bank->lock, flags);
789 _set_gpio_direction(bank, offset, 1);
790 spin_unlock_irqrestore(&bank->lock, flags);
791 return 0;
792}
793
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300794static int gpio_is_input(struct gpio_bank *bank, int mask)
795{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700796 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300797
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300798 return __raw_readl(reg) & mask;
799}
800
David Brownell52e31342008-03-03 12:43:23 -0800801static int gpio_get(struct gpio_chip *chip, unsigned offset)
802{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300803 struct gpio_bank *bank;
804 void __iomem *reg;
805 int gpio;
806 u32 mask;
807
808 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530809 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300810 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700811 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300812
813 if (gpio_is_input(bank, mask))
814 return _get_gpio_datain(bank, gpio);
815 else
816 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -0800817}
818
819static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
820{
821 struct gpio_bank *bank;
822 unsigned long flags;
823
824 bank = container_of(chip, struct gpio_bank, chip);
825 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700826 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800827 _set_gpio_direction(bank, offset, 0);
828 spin_unlock_irqrestore(&bank->lock, flags);
829 return 0;
830}
831
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700832static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
833 unsigned debounce)
834{
835 struct gpio_bank *bank;
836 unsigned long flags;
837
838 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800839
840 if (!bank->dbck) {
841 bank->dbck = clk_get(bank->dev, "dbclk");
842 if (IS_ERR(bank->dbck))
843 dev_err(bank->dev, "Could not get gpio dbck\n");
844 }
845
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700846 spin_lock_irqsave(&bank->lock, flags);
847 _set_gpio_debounce(bank, offset, debounce);
848 spin_unlock_irqrestore(&bank->lock, flags);
849
850 return 0;
851}
852
David Brownell52e31342008-03-03 12:43:23 -0800853static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
854{
855 struct gpio_bank *bank;
856 unsigned long flags;
857
858 bank = container_of(chip, struct gpio_bank, chip);
859 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700860 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800861 spin_unlock_irqrestore(&bank->lock, flags);
862}
863
David Brownella007b702008-12-10 17:35:25 -0800864static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
865{
866 struct gpio_bank *bank;
867
868 bank = container_of(chip, struct gpio_bank, chip);
869 return bank->virtual_irq_start + offset;
870}
871
David Brownell52e31342008-03-03 12:43:23 -0800872/*---------------------------------------------------------------------*/
873
Tony Lindgren9a748052010-12-07 16:26:56 -0800874static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700875{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700876 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700877 u32 rev;
878
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700879 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700880 return;
881
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700882 rev = __raw_readw(bank->base + bank->regs->revision);
883 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700884 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700885
886 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700887}
888
David Brownell8ba55c52008-02-26 11:10:50 -0800889/* This lock class tells lockdep that GPIO irqs are in a different
890 * category than their parents, so it won't report false recursion.
891 */
892static struct lock_class_key gpio_lock_class;
893
Charulatha V03e128c2011-05-05 19:58:01 +0530894static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800895{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530896 void __iomem *base = bank->base;
897 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800898
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530899 if (bank->width == 16)
900 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800901
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530902 if (bank_is_mpuio(bank)) {
903 __raw_writel(l, bank->base + bank->regs->irqenable);
904 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800905 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530906
907 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
908 _gpio_rmw(base, bank->regs->irqstatus, l,
909 bank->regs->irqenable_inv == false);
910 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
911 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
912 if (bank->regs->debounce_en)
913 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
914
915 /* Initialize interface clk ungated, module enabled */
916 if (bank->regs->ctrl)
917 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800918}
919
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700920static __init void
921omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
922 unsigned int num)
923{
924 struct irq_chip_generic *gc;
925 struct irq_chip_type *ct;
926
927 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
928 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700929 if (!gc) {
930 dev_err(bank->dev, "Memory alloc failed for gc\n");
931 return;
932 }
933
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700934 ct = gc->chip_types;
935
936 /* NOTE: No ack required, reading IRQ status clears it. */
937 ct->chip.irq_mask = irq_gc_mask_set_bit;
938 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
939 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530940
941 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700942 ct->chip.irq_set_wake = gpio_wake_enable,
943
944 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
945 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
946 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
947}
948
Russell Kingd52b31d2011-05-27 13:56:12 -0700949static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800950{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800951 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800952 static int gpio;
953
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800954 bank->mod_usage = 0;
955 /*
956 * REVISIT eventually switch from OMAP-specific gpio structs
957 * over to the generic ones
958 */
959 bank->chip.request = omap_gpio_request;
960 bank->chip.free = omap_gpio_free;
961 bank->chip.direction_input = gpio_input;
962 bank->chip.get = gpio_get;
963 bank->chip.direction_output = gpio_output;
964 bank->chip.set_debounce = gpio_debounce;
965 bank->chip.set = gpio_set;
966 bank->chip.to_irq = gpio_2irq;
967 if (bank_is_mpuio(bank)) {
968 bank->chip.label = "mpuio";
969#ifdef CONFIG_ARCH_OMAP16XX
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530970 if (bank->regs->wkup_en)
971 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800972#endif
973 bank->chip.base = OMAP_MPUIO(0);
974 } else {
975 bank->chip.label = "gpio";
976 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700977 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800978 }
Kevin Hilmand5f46242011-04-21 09:23:00 -0700979 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800980
981 gpiochip_add(&bank->chip);
982
983 for (j = bank->virtual_irq_start;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700984 j < bank->virtual_irq_start + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +0100985 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100986 irq_set_chip_data(j, bank);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700987 if (bank_is_mpuio(bank)) {
988 omap_mpuio_alloc_gc(bank, j, bank->width);
989 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100990 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700991 irq_set_handler(j, handle_simple_irq);
992 set_irq_flags(j, IRQF_VALID);
993 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800994 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100995 irq_set_chained_handler(bank->irq, gpio_irq_handler);
996 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800997}
998
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800999static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001000{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001001 struct omap_gpio_platform_data *pdata;
1002 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001003 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301004 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001005
Charulatha V03e128c2011-05-05 19:58:01 +05301006 if (!pdev->dev.platform_data) {
1007 ret = -EINVAL;
1008 goto err_exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001009 }
1010
Charulatha V03e128c2011-05-05 19:58:01 +05301011 bank = kzalloc(sizeof(struct gpio_bank), GFP_KERNEL);
1012 if (!bank) {
1013 dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
1014 ret = -ENOMEM;
1015 goto err_exit;
1016 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001017
1018 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1019 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +05301020 dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n",
1021 pdev->id);
1022 ret = -ENODEV;
1023 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001024 }
1025
1026 bank->irq = res->start;
Charulatha V03e128c2011-05-05 19:58:01 +05301027 bank->id = pdev->id;
1028
1029 pdata = pdev->dev.platform_data;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001030 bank->virtual_irq_start = pdata->virtual_irq_start;
1031 bank->method = pdata->bank_type;
1032 bank->dev = &pdev->dev;
1033 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001034 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001035 bank->width = pdata->bank_width;
Charulatha V803a2432011-05-05 17:04:12 +05301036 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301037 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301038 bank->get_context_loss_count = pdata->get_context_loss_count;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001039 bank->regs = pdata->regs;
1040
1041 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1042 bank->set_dataout = _set_gpio_dataout_reg;
1043 else
1044 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001045
1046 spin_lock_init(&bank->lock);
1047
1048 /* Static mapping, never released */
1049 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1050 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +05301051 dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n",
1052 pdev->id);
1053 ret = -ENODEV;
1054 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001055 }
1056
1057 bank->base = ioremap(res->start, resource_size(res));
1058 if (!bank->base) {
Charulatha V03e128c2011-05-05 19:58:01 +05301059 dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n",
1060 pdev->id);
1061 ret = -ENOMEM;
1062 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001063 }
1064
1065 pm_runtime_enable(bank->dev);
1066 pm_runtime_get_sync(bank->dev);
1067
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301068 if (bank_is_mpuio(bank))
1069 mpuio_init(bank);
1070
Charulatha V03e128c2011-05-05 19:58:01 +05301071 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001072 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001073 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001074
Charulatha V03e128c2011-05-05 19:58:01 +05301075 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001076
Charulatha V03e128c2011-05-05 19:58:01 +05301077 return ret;
1078
1079err_free:
1080 kfree(bank);
1081err_exit:
1082 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001083}
1084
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001085static int omap_gpio_suspend(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001086{
Charulatha V03e128c2011-05-05 19:58:01 +05301087 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001088
Charulatha V03e128c2011-05-05 19:58:01 +05301089 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301090 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001091 void __iomem *wake_status;
David Brownella6472532008-03-03 04:33:30 -08001092 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001093
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301094 if (!bank->regs->wkup_en)
1095 return 0;
1096
1097 wake_status = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001098
David Brownella6472532008-03-03 04:33:30 -08001099 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001100 bank->saved_wakeup = __raw_readl(wake_status);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301101 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1102 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001103 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001104 }
1105
1106 return 0;
1107}
1108
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001109static void omap_gpio_resume(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001110{
Charulatha V03e128c2011-05-05 19:58:01 +05301111 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001112
Charulatha V03e128c2011-05-05 19:58:01 +05301113 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301114 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -08001115 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001116
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301117 if (!bank->regs->wkup_en)
1118 return;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001119
David Brownella6472532008-03-03 04:33:30 -08001120 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301121 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1122 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001123 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001124 }
Tony Lindgren92105bb2005-09-07 17:20:26 +01001125}
1126
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001127static struct syscore_ops omap_gpio_syscore_ops = {
Tony Lindgren92105bb2005-09-07 17:20:26 +01001128 .suspend = omap_gpio_suspend,
1129 .resume = omap_gpio_resume,
1130};
1131
Tony Lindgren140455f2010-02-12 12:26:48 -08001132#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001133
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301134static void omap_gpio_save_context(struct gpio_bank *bank);
1135static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001136
Paul Walmsley72e06d02010-12-21 21:05:16 -07001137void omap2_gpio_prepare_for_idle(int off_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001138{
Charulatha V03e128c2011-05-05 19:58:01 +05301139 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001140
Charulatha V03e128c2011-05-05 19:58:01 +05301141 list_for_each_entry(bank, &omap_gpio_list, node) {
Sanjeev Premica828762010-09-23 18:27:18 -07001142 u32 l1 = 0, l2 = 0;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001143 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001144
Charulatha V0cde8d02011-05-05 20:15:16 +05301145 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301146 continue;
1147
Kevin Hilman0aed04352010-09-22 16:06:27 -07001148 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001149 clk_disable(bank->dbck);
1150
Paul Walmsley72e06d02010-12-21 21:05:16 -07001151 if (!off_mode)
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001152 continue;
1153
1154 /* If going to OFF, remove triggering for all
1155 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1156 * generated. See OMAP2420 Errata item 1.101. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001157 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301158 goto save_gpio_context;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001159
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301160 bank->saved_datain = __raw_readl(bank->base +
1161 bank->regs->datain);
1162 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1163 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001164
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001165 bank->saved_fallingdetect = l1;
1166 bank->saved_risingdetect = l2;
1167 l1 &= ~bank->enabled_non_wakeup_gpios;
1168 l2 &= ~bank->enabled_non_wakeup_gpios;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001169
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301170 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1171 __raw_writel(l2, bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001172
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301173save_gpio_context:
1174 if (bank->get_context_loss_count)
1175 bank->context_loss_count =
1176 bank->get_context_loss_count(bank->dev);
1177
1178 omap_gpio_save_context(bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001179 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001180}
1181
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001182void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001183{
Charulatha V03e128c2011-05-05 19:58:01 +05301184 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001185
Charulatha V03e128c2011-05-05 19:58:01 +05301186 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301187 int context_lost_cnt_after;
Sanjeev Premica828762010-09-23 18:27:18 -07001188 u32 l = 0, gen, gen0, gen1;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001189 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001190
Charulatha V0cde8d02011-05-05 20:15:16 +05301191 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301192 continue;
1193
Kevin Hilman0aed04352010-09-22 16:06:27 -07001194 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001195 clk_enable(bank->dbck);
1196
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301197 if (bank->get_context_loss_count) {
1198 context_lost_cnt_after =
1199 bank->get_context_loss_count(bank->dev);
1200 if (context_lost_cnt_after != bank->context_loss_count
1201 || !context_lost_cnt_after)
1202 omap_gpio_restore_context(bank);
1203 }
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001204
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001205 if (!(bank->enabled_non_wakeup_gpios))
1206 continue;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001207
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301208 __raw_writel(bank->saved_fallingdetect,
1209 bank->base + bank->regs->fallingdetect);
1210 __raw_writel(bank->saved_risingdetect,
1211 bank->base + bank->regs->risingdetect);
1212 l = __raw_readl(bank->base + bank->regs->datain);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001213
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001214 /* Check if any of the non-wakeup interrupt GPIOs have changed
1215 * state. If so, generate an IRQ by software. This is
1216 * horribly racy, but it's the best we can do to work around
1217 * this silicon bug. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001218 l ^= bank->saved_datain;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001219 l &= bank->enabled_non_wakeup_gpios;
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001220
1221 /*
1222 * No need to generate IRQs for the rising edge for gpio IRQs
1223 * configured with falling edge only; and vice versa.
1224 */
1225 gen0 = l & bank->saved_fallingdetect;
1226 gen0 &= bank->saved_datain;
1227
1228 gen1 = l & bank->saved_risingdetect;
1229 gen1 &= ~(bank->saved_datain);
1230
1231 /* FIXME: Consider GPIO IRQs with level detections properly! */
1232 gen = l & (~(bank->saved_fallingdetect) &
1233 ~(bank->saved_risingdetect));
1234 /* Consider all GPIO IRQs needed to be updated */
1235 gen |= gen0 | gen1;
1236
1237 if (gen) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001238 u32 old0, old1;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001239
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301240 old0 = __raw_readl(bank->base +
1241 bank->regs->leveldetect0);
1242 old1 = __raw_readl(bank->base +
1243 bank->regs->leveldetect1);
1244
Sergio Aguirref00d6492010-03-03 16:21:08 +00001245 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301246 old0 |= gen;
1247 old1 |= gen;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001248 }
1249
1250 if (cpu_is_omap44xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301251 old0 |= l;
1252 old1 |= l;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001253 }
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301254 __raw_writel(old0, bank->base +
1255 bank->regs->leveldetect0);
1256 __raw_writel(old1, bank->base +
1257 bank->regs->leveldetect1);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001258 }
1259 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001260}
1261
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301262static void omap_gpio_save_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301263{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301264 bank->context.irqenable1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301265 __raw_readl(bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301266 bank->context.irqenable2 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301267 __raw_readl(bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301268 bank->context.wake_en =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301269 __raw_readl(bank->base + bank->regs->wkup_en);
1270 bank->context.ctrl = __raw_readl(bank->base + bank->regs->ctrl);
1271 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301272 bank->context.leveldetect0 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301273 __raw_readl(bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301274 bank->context.leveldetect1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301275 __raw_readl(bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301276 bank->context.risingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301277 __raw_readl(bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301278 bank->context.fallingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301279 __raw_readl(bank->base + bank->regs->fallingdetect);
1280 bank->context.dataout = __raw_readl(bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301281}
1282
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301283static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301284{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301285 __raw_writel(bank->context.irqenable1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301286 bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301287 __raw_writel(bank->context.irqenable2,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301288 bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301289 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301290 bank->base + bank->regs->wkup_en);
1291 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
1292 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301293 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301294 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301295 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301296 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301297 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301298 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301299 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301300 bank->base + bank->regs->fallingdetect);
1301 __raw_writel(bank->context.dataout, bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301302}
1303#endif
1304
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001305static struct platform_driver omap_gpio_driver = {
1306 .probe = omap_gpio_probe,
1307 .driver = {
1308 .name = "omap_gpio",
1309 },
1310};
1311
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001312/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001313 * gpio driver register needs to be done before
1314 * machine_init functions access gpio APIs.
1315 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001316 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001317static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001318{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001319 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001320}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001321postcore_initcall(omap_gpio_drv_reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001322
Tony Lindgren92105bb2005-09-07 17:20:26 +01001323static int __init omap_gpio_sysinit(void)
1324{
David Brownell11a78b72006-12-06 17:14:11 -08001325
Tony Lindgren140455f2010-02-12 12:26:48 -08001326#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001327 if (cpu_is_omap16xx() || cpu_class_is_omap2())
1328 register_syscore_ops(&omap_gpio_syscore_ops);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001329#endif
1330
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001331 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001332}
1333
Tony Lindgren92105bb2005-09-07 17:20:26 +01001334arch_initcall(omap_gpio_sysinit);