blob: 951d7843581262bd261e2986d4e46fcd9dff8f19 [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 u32 suspend_wakeup;
53 u32 saved_wakeup;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080054 u32 non_wakeup_gpios;
55 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000056 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080057 u32 saved_datain;
58 u32 saved_fallingdetect;
59 u32 saved_risingdetect;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080060 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080061 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010062 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080063 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080064 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080065 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080066 u32 dbck_enable_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080067 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053068 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080069 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 Hilmanc390aad2011-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
Magnus Damm79ee0312009-07-08 13:22:04 +0200696static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800697{
Magnus Damm79ee0312009-07-08 13:22:04 +0200698 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800699 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800700 void __iomem *mask_reg = bank->base +
701 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800702 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800703
David Brownella6472532008-03-03 04:33:30 -0800704 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800705 bank->saved_wakeup = __raw_readl(mask_reg);
706 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800707 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800708
709 return 0;
710}
711
Magnus Damm79ee0312009-07-08 13:22:04 +0200712static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800713{
Magnus Damm79ee0312009-07-08 13:22:04 +0200714 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800715 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800716 void __iomem *mask_reg = bank->base +
717 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800718 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800719
David Brownella6472532008-03-03 04:33:30 -0800720 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800721 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800722 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800723
724 return 0;
725}
726
Alexey Dobriyan47145212009-12-14 18:00:08 -0800727static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200728 .suspend_noirq = omap_mpuio_suspend_noirq,
729 .resume_noirq = omap_mpuio_resume_noirq,
730};
731
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200732/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800733static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800734 .driver = {
735 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200736 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800737 },
738};
739
740static struct platform_device omap_mpuio_device = {
741 .name = "mpuio",
742 .id = -1,
743 .dev = {
744 .driver = &omap_mpuio_driver.driver,
745 }
746 /* could list the /proc/iomem resources */
747};
748
Charulatha V03e128c2011-05-05 19:58:01 +0530749static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800750{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800751 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700752
David Brownell11a78b72006-12-06 17:14:11 -0800753 if (platform_driver_register(&omap_mpuio_driver) == 0)
754 (void) platform_device_register(&omap_mpuio_device);
755}
756
David Brownelle5c56ed2006-12-06 17:13:59 -0800757/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100758
David Brownell52e31342008-03-03 12:43:23 -0800759static int gpio_input(struct gpio_chip *chip, unsigned offset)
760{
761 struct gpio_bank *bank;
762 unsigned long flags;
763
764 bank = container_of(chip, struct gpio_bank, chip);
765 spin_lock_irqsave(&bank->lock, flags);
766 _set_gpio_direction(bank, offset, 1);
767 spin_unlock_irqrestore(&bank->lock, flags);
768 return 0;
769}
770
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300771static int gpio_is_input(struct gpio_bank *bank, int mask)
772{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700773 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300774
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300775 return __raw_readl(reg) & mask;
776}
777
David Brownell52e31342008-03-03 12:43:23 -0800778static int gpio_get(struct gpio_chip *chip, unsigned offset)
779{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300780 struct gpio_bank *bank;
781 void __iomem *reg;
782 int gpio;
783 u32 mask;
784
785 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530786 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300787 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700788 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300789
790 if (gpio_is_input(bank, mask))
791 return _get_gpio_datain(bank, gpio);
792 else
793 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -0800794}
795
796static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
797{
798 struct gpio_bank *bank;
799 unsigned long flags;
800
801 bank = container_of(chip, struct gpio_bank, chip);
802 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700803 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800804 _set_gpio_direction(bank, offset, 0);
805 spin_unlock_irqrestore(&bank->lock, flags);
806 return 0;
807}
808
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700809static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
810 unsigned debounce)
811{
812 struct gpio_bank *bank;
813 unsigned long flags;
814
815 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800816
817 if (!bank->dbck) {
818 bank->dbck = clk_get(bank->dev, "dbclk");
819 if (IS_ERR(bank->dbck))
820 dev_err(bank->dev, "Could not get gpio dbck\n");
821 }
822
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700823 spin_lock_irqsave(&bank->lock, flags);
824 _set_gpio_debounce(bank, offset, debounce);
825 spin_unlock_irqrestore(&bank->lock, flags);
826
827 return 0;
828}
829
David Brownell52e31342008-03-03 12:43:23 -0800830static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
831{
832 struct gpio_bank *bank;
833 unsigned long flags;
834
835 bank = container_of(chip, struct gpio_bank, chip);
836 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700837 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800838 spin_unlock_irqrestore(&bank->lock, flags);
839}
840
David Brownella007b702008-12-10 17:35:25 -0800841static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
842{
843 struct gpio_bank *bank;
844
845 bank = container_of(chip, struct gpio_bank, chip);
846 return bank->virtual_irq_start + offset;
847}
848
David Brownell52e31342008-03-03 12:43:23 -0800849/*---------------------------------------------------------------------*/
850
Tony Lindgren9a748052010-12-07 16:26:56 -0800851static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700852{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700853 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700854 u32 rev;
855
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700856 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700857 return;
858
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700859 rev = __raw_readw(bank->base + bank->regs->revision);
860 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700861 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700862
863 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700864}
865
David Brownell8ba55c52008-02-26 11:10:50 -0800866/* This lock class tells lockdep that GPIO irqs are in a different
867 * category than their parents, so it won't report false recursion.
868 */
869static struct lock_class_key gpio_lock_class;
870
Charulatha V03e128c2011-05-05 19:58:01 +0530871static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800872{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530873 void __iomem *base = bank->base;
874 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800875
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530876 if (bank->width == 16)
877 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800878
Charulatha Vd0d665a2011-08-31 00:02:21 +0530879 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530880 __raw_writel(l, bank->base + bank->regs->irqenable);
881 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800882 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530883
884 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
885 _gpio_rmw(base, bank->regs->irqstatus, l,
886 bank->regs->irqenable_inv == false);
887 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
888 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
889 if (bank->regs->debounce_en)
890 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
891
892 /* Initialize interface clk ungated, module enabled */
893 if (bank->regs->ctrl)
894 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800895}
896
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700897static __init void
898omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
899 unsigned int num)
900{
901 struct irq_chip_generic *gc;
902 struct irq_chip_type *ct;
903
904 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
905 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700906 if (!gc) {
907 dev_err(bank->dev, "Memory alloc failed for gc\n");
908 return;
909 }
910
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700911 ct = gc->chip_types;
912
913 /* NOTE: No ack required, reading IRQ status clears it. */
914 ct->chip.irq_mask = irq_gc_mask_set_bit;
915 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
916 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530917
918 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700919 ct->chip.irq_set_wake = gpio_wake_enable,
920
921 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
922 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
923 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
924}
925
Russell Kingd52b31d2011-05-27 13:56:12 -0700926static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800927{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800928 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800929 static int gpio;
930
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800931 /*
932 * REVISIT eventually switch from OMAP-specific gpio structs
933 * over to the generic ones
934 */
935 bank->chip.request = omap_gpio_request;
936 bank->chip.free = omap_gpio_free;
937 bank->chip.direction_input = gpio_input;
938 bank->chip.get = gpio_get;
939 bank->chip.direction_output = gpio_output;
940 bank->chip.set_debounce = gpio_debounce;
941 bank->chip.set = gpio_set;
942 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +0530943 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800944 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530945 if (bank->regs->wkup_en)
946 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800947 bank->chip.base = OMAP_MPUIO(0);
948 } else {
949 bank->chip.label = "gpio";
950 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700951 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800952 }
Kevin Hilmand5f46242011-04-21 09:23:00 -0700953 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800954
955 gpiochip_add(&bank->chip);
956
957 for (j = bank->virtual_irq_start;
Kevin Hilmand5f46242011-04-21 09:23:00 -0700958 j < bank->virtual_irq_start + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +0100959 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100960 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +0530961 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700962 omap_mpuio_alloc_gc(bank, j, bank->width);
963 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100964 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700965 irq_set_handler(j, handle_simple_irq);
966 set_irq_flags(j, IRQF_VALID);
967 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800968 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100969 irq_set_chained_handler(bank->irq, gpio_irq_handler);
970 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800971}
972
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800973static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100974{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800975 struct omap_gpio_platform_data *pdata;
976 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100977 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +0530978 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100979
Charulatha V03e128c2011-05-05 19:58:01 +0530980 if (!pdev->dev.platform_data) {
981 ret = -EINVAL;
982 goto err_exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100983 }
984
Charulatha V03e128c2011-05-05 19:58:01 +0530985 bank = kzalloc(sizeof(struct gpio_bank), GFP_KERNEL);
986 if (!bank) {
987 dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
988 ret = -ENOMEM;
989 goto err_exit;
990 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800991
992 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
993 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +0530994 dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n",
995 pdev->id);
996 ret = -ENODEV;
997 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800998 }
999
1000 bank->irq = res->start;
Charulatha V03e128c2011-05-05 19:58:01 +05301001 bank->id = pdev->id;
1002
1003 pdata = pdev->dev.platform_data;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001004 bank->virtual_irq_start = pdata->virtual_irq_start;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001005 bank->dev = &pdev->dev;
1006 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001007 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001008 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301009 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301010 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301011 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301012 bank->get_context_loss_count = pdata->get_context_loss_count;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001013 bank->regs = pdata->regs;
1014
1015 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1016 bank->set_dataout = _set_gpio_dataout_reg;
1017 else
1018 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001019
1020 spin_lock_init(&bank->lock);
1021
1022 /* Static mapping, never released */
1023 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1024 if (unlikely(!res)) {
Charulatha V03e128c2011-05-05 19:58:01 +05301025 dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n",
1026 pdev->id);
1027 ret = -ENODEV;
1028 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001029 }
1030
1031 bank->base = ioremap(res->start, resource_size(res));
1032 if (!bank->base) {
Charulatha V03e128c2011-05-05 19:58:01 +05301033 dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n",
1034 pdev->id);
1035 ret = -ENOMEM;
1036 goto err_free;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001037 }
1038
1039 pm_runtime_enable(bank->dev);
1040 pm_runtime_get_sync(bank->dev);
1041
Charulatha Vd0d665a2011-08-31 00:02:21 +05301042 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301043 mpuio_init(bank);
1044
Charulatha V03e128c2011-05-05 19:58:01 +05301045 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001046 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001047 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001048
Charulatha V03e128c2011-05-05 19:58:01 +05301049 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001050
Charulatha V03e128c2011-05-05 19:58:01 +05301051 return ret;
1052
1053err_free:
1054 kfree(bank);
1055err_exit:
1056 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001057}
1058
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001059static int omap_gpio_suspend(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001060{
Charulatha V03e128c2011-05-05 19:58:01 +05301061 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001062
Charulatha V03e128c2011-05-05 19:58:01 +05301063 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301064 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001065 void __iomem *wake_status;
David Brownella6472532008-03-03 04:33:30 -08001066 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001067
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301068 if (!bank->regs->wkup_en)
1069 return 0;
1070
1071 wake_status = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001072
David Brownella6472532008-03-03 04:33:30 -08001073 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001074 bank->saved_wakeup = __raw_readl(wake_status);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301075 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1076 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001077 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001078 }
1079
1080 return 0;
1081}
1082
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001083static void omap_gpio_resume(void)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001084{
Charulatha V03e128c2011-05-05 19:58:01 +05301085 struct gpio_bank *bank;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001086
Charulatha V03e128c2011-05-05 19:58:01 +05301087 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301088 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -08001089 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001090
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301091 if (!bank->regs->wkup_en)
1092 return;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001093
David Brownella6472532008-03-03 04:33:30 -08001094 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301095 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1096 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
David Brownella6472532008-03-03 04:33:30 -08001097 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001098 }
Tony Lindgren92105bb2005-09-07 17:20:26 +01001099}
1100
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001101static struct syscore_ops omap_gpio_syscore_ops = {
Tony Lindgren92105bb2005-09-07 17:20:26 +01001102 .suspend = omap_gpio_suspend,
1103 .resume = omap_gpio_resume,
1104};
1105
Tony Lindgren140455f2010-02-12 12:26:48 -08001106#ifdef CONFIG_ARCH_OMAP2PLUS
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001107
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301108static void omap_gpio_save_context(struct gpio_bank *bank);
1109static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001110
Paul Walmsley72e06d02010-12-21 21:05:16 -07001111void omap2_gpio_prepare_for_idle(int off_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001112{
Charulatha V03e128c2011-05-05 19:58:01 +05301113 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001114
Charulatha V03e128c2011-05-05 19:58:01 +05301115 list_for_each_entry(bank, &omap_gpio_list, node) {
Sanjeev Premica828762010-09-23 18:27:18 -07001116 u32 l1 = 0, l2 = 0;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001117 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001118
Charulatha V0cde8d02011-05-05 20:15:16 +05301119 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301120 continue;
1121
Kevin Hilman0aed04352010-09-22 16:06:27 -07001122 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001123 clk_disable(bank->dbck);
1124
Paul Walmsley72e06d02010-12-21 21:05:16 -07001125 if (!off_mode)
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001126 continue;
1127
1128 /* If going to OFF, remove triggering for all
1129 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1130 * generated. See OMAP2420 Errata item 1.101. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001131 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301132 goto save_gpio_context;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001133
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301134 bank->saved_datain = __raw_readl(bank->base +
1135 bank->regs->datain);
1136 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1137 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001138
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001139 bank->saved_fallingdetect = l1;
1140 bank->saved_risingdetect = l2;
1141 l1 &= ~bank->enabled_non_wakeup_gpios;
1142 l2 &= ~bank->enabled_non_wakeup_gpios;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001143
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301144 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1145 __raw_writel(l2, bank->base + bank->regs->risingdetect);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001146
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301147save_gpio_context:
1148 if (bank->get_context_loss_count)
1149 bank->context_loss_count =
1150 bank->get_context_loss_count(bank->dev);
1151
1152 omap_gpio_save_context(bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001153 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001154}
1155
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001156void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001157{
Charulatha V03e128c2011-05-05 19:58:01 +05301158 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001159
Charulatha V03e128c2011-05-05 19:58:01 +05301160 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301161 int context_lost_cnt_after;
Sanjeev Premica828762010-09-23 18:27:18 -07001162 u32 l = 0, gen, gen0, gen1;
Kevin Hilman0aed04352010-09-22 16:06:27 -07001163 int j;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001164
Charulatha V0cde8d02011-05-05 20:15:16 +05301165 if (!bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301166 continue;
1167
Kevin Hilman0aed04352010-09-22 16:06:27 -07001168 for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
Kevin Hilman8865b9b2009-01-27 11:15:34 -08001169 clk_enable(bank->dbck);
1170
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301171 if (bank->get_context_loss_count) {
1172 context_lost_cnt_after =
1173 bank->get_context_loss_count(bank->dev);
1174 if (context_lost_cnt_after != bank->context_loss_count
1175 || !context_lost_cnt_after)
1176 omap_gpio_restore_context(bank);
1177 }
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001178
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001179 if (!(bank->enabled_non_wakeup_gpios))
1180 continue;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001181
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301182 __raw_writel(bank->saved_fallingdetect,
1183 bank->base + bank->regs->fallingdetect);
1184 __raw_writel(bank->saved_risingdetect,
1185 bank->base + bank->regs->risingdetect);
1186 l = __raw_readl(bank->base + bank->regs->datain);
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001187
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001188 /* Check if any of the non-wakeup interrupt GPIOs have changed
1189 * state. If so, generate an IRQ by software. This is
1190 * horribly racy, but it's the best we can do to work around
1191 * this silicon bug. */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001192 l ^= bank->saved_datain;
Tero Kristoa118b5f2008-12-22 14:27:12 +02001193 l &= bank->enabled_non_wakeup_gpios;
Eero Nurkkala82dbb9d2009-08-28 10:51:36 -07001194
1195 /*
1196 * No need to generate IRQs for the rising edge for gpio IRQs
1197 * configured with falling edge only; and vice versa.
1198 */
1199 gen0 = l & bank->saved_fallingdetect;
1200 gen0 &= bank->saved_datain;
1201
1202 gen1 = l & bank->saved_risingdetect;
1203 gen1 &= ~(bank->saved_datain);
1204
1205 /* FIXME: Consider GPIO IRQs with level detections properly! */
1206 gen = l & (~(bank->saved_fallingdetect) &
1207 ~(bank->saved_risingdetect));
1208 /* Consider all GPIO IRQs needed to be updated */
1209 gen |= gen0 | gen1;
1210
1211 if (gen) {
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001212 u32 old0, old1;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001213
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301214 old0 = __raw_readl(bank->base +
1215 bank->regs->leveldetect0);
1216 old1 = __raw_readl(bank->base +
1217 bank->regs->leveldetect1);
1218
Sergio Aguirref00d6492010-03-03 16:21:08 +00001219 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301220 old0 |= gen;
1221 old1 |= gen;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001222 }
1223
1224 if (cpu_is_omap44xx()) {
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301225 old0 |= l;
1226 old1 |= l;
Tony Lindgren3f1686a2010-02-15 09:27:25 -08001227 }
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +05301228 __raw_writel(old0, bank->base +
1229 bank->regs->leveldetect0);
1230 __raw_writel(old1, bank->base +
1231 bank->regs->leveldetect1);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001232 }
1233 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001234}
1235
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301236static void omap_gpio_save_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301237{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301238 bank->context.irqenable1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301239 __raw_readl(bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301240 bank->context.irqenable2 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301241 __raw_readl(bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301242 bank->context.wake_en =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301243 __raw_readl(bank->base + bank->regs->wkup_en);
1244 bank->context.ctrl = __raw_readl(bank->base + bank->regs->ctrl);
1245 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301246 bank->context.leveldetect0 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301247 __raw_readl(bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301248 bank->context.leveldetect1 =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301249 __raw_readl(bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301250 bank->context.risingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301251 __raw_readl(bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301252 bank->context.fallingdetect =
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301253 __raw_readl(bank->base + bank->regs->fallingdetect);
1254 bank->context.dataout = __raw_readl(bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301255}
1256
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301257static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301258{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301259 __raw_writel(bank->context.irqenable1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301260 bank->base + bank->regs->irqenable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301261 __raw_writel(bank->context.irqenable2,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301262 bank->base + bank->regs->irqenable2);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301263 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301264 bank->base + bank->regs->wkup_en);
1265 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
1266 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301267 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301268 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301269 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301270 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301271 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301272 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301273 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301274 bank->base + bank->regs->fallingdetect);
1275 __raw_writel(bank->context.dataout, bank->base + bank->regs->dataout);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301276}
1277#endif
1278
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001279static struct platform_driver omap_gpio_driver = {
1280 .probe = omap_gpio_probe,
1281 .driver = {
1282 .name = "omap_gpio",
1283 },
1284};
1285
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001286/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001287 * gpio driver register needs to be done before
1288 * machine_init functions access gpio APIs.
1289 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001290 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001291static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001292{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001293 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001294}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001295postcore_initcall(omap_gpio_drv_reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001296
Tony Lindgren92105bb2005-09-07 17:20:26 +01001297static int __init omap_gpio_sysinit(void)
1298{
David Brownell11a78b72006-12-06 17:14:11 -08001299
Tony Lindgren140455f2010-02-12 12:26:48 -08001300#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001301 if (cpu_is_omap16xx() || cpu_class_is_omap2())
1302 register_syscore_ops(&omap_gpio_syscore_ops);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001303#endif
1304
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +02001305 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001306}
1307
Tony Lindgren92105bb2005-09-07 17:20:26 +01001308arch_initcall(omap_gpio_sysinit);