blob: a612ea1c53cbcb514a84431d0a31501a7a6a5efe [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>
Benoit Cousson96751fc2012-02-01 16:01:39 +010022#include <linux/device.h>
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080023#include <linux/pm_runtime.h>
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +053024#include <linux/pm.h>
Benoit Cousson384ebe12011-08-16 11:53:02 +020025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000028#include <linux/irqchip/chained_irq.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070029#include <linux/gpio.h>
30#include <linux/platform_data/gpio-omap.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010031
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053032#define OFF_MODE 1
33
Charulatha V03e128c2011-05-05 19:58:01 +053034static LIST_HEAD(omap_gpio_list);
35
Charulatha V6d62e212011-04-18 15:06:51 +000036struct gpio_regs {
37 u32 irqenable1;
38 u32 irqenable2;
39 u32 wake_en;
40 u32 ctrl;
41 u32 oe;
42 u32 leveldetect0;
43 u32 leveldetect1;
44 u32 risingdetect;
45 u32 fallingdetect;
46 u32 dataout;
Nishanth Menonae547352011-09-09 19:08:58 +053047 u32 debounce;
48 u32 debounce_en;
Charulatha V6d62e212011-04-18 15:06:51 +000049};
50
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010051struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053052 struct list_head node;
Tony Lindgren92105bb2005-09-07 17:20:26 +010053 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010054 u16 irq;
Benoit Cousson384ebe12011-08-16 11:53:02 +020055 int irq_base;
56 struct irq_domain *domain;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080057 u32 non_wakeup_gpios;
58 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000059 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080060 u32 saved_datain;
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;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053068 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080069 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053070 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080071 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053072 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080073 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070074 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053075 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053076 int power_mode;
77 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070078
79 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053080 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070081
82 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010083};
84
Kevin Hilman129fd222011-04-22 07:59:07 -070085#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
86#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053087#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010088
Benoit Cousson25db7112012-02-23 21:50:10 +010089static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
90{
91 return gpio_irq - bank->irq_base + bank->chip.base;
92}
93
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010094static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
95{
Tony Lindgren92105bb2005-09-07 17:20:26 +010096 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010097 u32 l;
98
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070099 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100100 l = __raw_readl(reg);
101 if (is_input)
102 l |= 1 << gpio;
103 else
104 l &= ~(1 << gpio);
105 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530106 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100107}
108
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700109
110/* set data out value using dedicate set/clear register */
111static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100112{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100113 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700114 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100115
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530116 if (enable) {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700117 reg += bank->regs->set_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530118 bank->context.dataout |= l;
119 } else {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700120 reg += bank->regs->clr_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530121 bank->context.dataout &= ~l;
122 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700123
124 __raw_writel(l, reg);
125}
126
127/* set data out value using mask register */
128static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
129{
130 void __iomem *reg = bank->base + bank->regs->dataout;
131 u32 gpio_bit = GPIO_BIT(bank, gpio);
132 u32 l;
133
134 l = __raw_readl(reg);
135 if (enable)
136 l |= gpio_bit;
137 else
138 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100139 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530140 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100141}
142
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530143static int _get_gpio_datain(struct gpio_bank *bank, int offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100144{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700145 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100146
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530147 return (__raw_readl(reg) & (1 << offset)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100148}
149
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530150static int _get_gpio_dataout(struct gpio_bank *bank, int offset)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300151{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700152 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300153
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530154 return (__raw_readl(reg) & (1 << offset)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300155}
156
Kevin Hilmanece95282011-07-12 08:18:15 -0700157static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
158{
159 int l = __raw_readl(base + reg);
160
Benoit Cousson862ff642012-02-01 15:58:56 +0100161 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700162 l |= mask;
163 else
164 l &= ~mask;
165
166 __raw_writel(l, base + reg);
167}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100168
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530169static inline void _gpio_dbck_enable(struct gpio_bank *bank)
170{
171 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
172 clk_enable(bank->dbck);
173 bank->dbck_enabled = true;
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300174
175 __raw_writel(bank->dbck_enable_mask,
176 bank->base + bank->regs->debounce_en);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530177 }
178}
179
180static inline void _gpio_dbck_disable(struct gpio_bank *bank)
181{
182 if (bank->dbck_enable_mask && bank->dbck_enabled) {
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300183 /*
184 * Disable debounce before cutting it's clock. If debounce is
185 * enabled but the clock is not, GPIO module seems to be unable
186 * to detect events and generate interrupts at least on OMAP3.
187 */
188 __raw_writel(0, bank->base + bank->regs->debounce_en);
189
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530190 clk_disable(bank->dbck);
191 bank->dbck_enabled = false;
192 }
193}
194
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700195/**
196 * _set_gpio_debounce - low level gpio debounce time
197 * @bank: the gpio bank we're acting upon
198 * @gpio: the gpio number on this @gpio
199 * @debounce: debounce time to use
200 *
201 * OMAP's debounce time is in 31us steps so we need
202 * to convert and round up to the closest unit.
203 */
204static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
205 unsigned debounce)
206{
Kevin Hilman9942da02011-04-22 12:02:05 -0700207 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700208 u32 val;
209 u32 l;
210
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800211 if (!bank->dbck_flag)
212 return;
213
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700214 if (debounce < 32)
215 debounce = 0x01;
216 else if (debounce > 7936)
217 debounce = 0xff;
218 else
219 debounce = (debounce / 0x1f) - 1;
220
Kevin Hilman129fd222011-04-22 07:59:07 -0700221 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700222
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530223 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700224 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225 __raw_writel(debounce, reg);
226
Kevin Hilman9942da02011-04-22 12:02:05 -0700227 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700228 val = __raw_readl(reg);
229
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530230 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700231 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530232 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700233 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300234 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700235
236 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530237 clk_disable(bank->dbck);
238 /*
239 * Enable debounce clock per module.
240 * This call is mandatory because in omap_gpio_request() when
241 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
242 * runtime callbck fails to turn on dbck because dbck_enable_mask
243 * used within _gpio_dbck_enable() is still not initialized at
244 * that point. Therefore we have to enable dbck here.
245 */
246 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530247 if (bank->dbck_enable_mask) {
248 bank->context.debounce = debounce;
249 bank->context.debounce_en = val;
250 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700251}
252
Jon Hunterc9c55d92012-10-26 14:26:04 -0500253/**
254 * _clear_gpio_debounce - clear debounce settings for a gpio
255 * @bank: the gpio bank we're acting upon
256 * @gpio: the gpio number on this @gpio
257 *
258 * If a gpio is using debounce, then clear the debounce enable bit and if
259 * this is the only gpio in this bank using debounce, then clear the debounce
260 * time too. The debounce clock will also be disabled when calling this function
261 * if this is the only gpio in the bank using debounce.
262 */
263static void _clear_gpio_debounce(struct gpio_bank *bank, unsigned gpio)
264{
265 u32 gpio_bit = GPIO_BIT(bank, gpio);
266
267 if (!bank->dbck_flag)
268 return;
269
270 if (!(bank->dbck_enable_mask & gpio_bit))
271 return;
272
273 bank->dbck_enable_mask &= ~gpio_bit;
274 bank->context.debounce_en &= ~gpio_bit;
275 __raw_writel(bank->context.debounce_en,
276 bank->base + bank->regs->debounce_en);
277
278 if (!bank->dbck_enable_mask) {
279 bank->context.debounce = 0;
280 __raw_writel(bank->context.debounce, bank->base +
281 bank->regs->debounce);
282 clk_disable(bank->dbck);
283 bank->dbck_enabled = false;
284 }
285}
286
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530287static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530288 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100289{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800290 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100291 u32 gpio_bit = 1 << gpio;
292
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530293 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
294 trigger & IRQ_TYPE_LEVEL_LOW);
295 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
296 trigger & IRQ_TYPE_LEVEL_HIGH);
297 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
298 trigger & IRQ_TYPE_EDGE_RISING);
299 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
300 trigger & IRQ_TYPE_EDGE_FALLING);
301
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530302 bank->context.leveldetect0 =
303 __raw_readl(bank->base + bank->regs->leveldetect0);
304 bank->context.leveldetect1 =
305 __raw_readl(bank->base + bank->regs->leveldetect1);
306 bank->context.risingdetect =
307 __raw_readl(bank->base + bank->regs->risingdetect);
308 bank->context.fallingdetect =
309 __raw_readl(bank->base + bank->regs->fallingdetect);
310
311 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530312 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530313 bank->context.wake_en =
314 __raw_readl(bank->base + bank->regs->wkup_en);
315 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530316
Ambresh K55b220c2011-06-15 13:40:45 -0700317 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530318 if (!bank->regs->irqctrl) {
319 /* On omap24xx proceed only when valid GPIO bit is set */
320 if (bank->non_wakeup_gpios) {
321 if (!(bank->non_wakeup_gpios & gpio_bit))
322 goto exit;
323 }
324
Chunqiu Wang699117a62009-06-24 17:13:39 +0000325 /*
326 * Log the edge gpio and manually trigger the IRQ
327 * after resume if the input level changes
328 * to avoid irq lost during PER RET/OFF mode
329 * Applies for omap2 non-wakeup gpio and all omap3 gpios
330 */
331 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800332 bank->enabled_non_wakeup_gpios |= gpio_bit;
333 else
334 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
335 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700336
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530337exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530338 bank->level_mask =
339 __raw_readl(bank->base + bank->regs->leveldetect0) |
340 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100341}
342
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800343#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800344/*
345 * This only applies to chips that can't do both rising and falling edge
346 * detection at once. For all other chips, this function is a noop.
347 */
348static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
349{
350 void __iomem *reg = bank->base;
351 u32 l = 0;
352
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530353 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800354 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530355
356 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800357
358 l = __raw_readl(reg);
359 if ((l >> gpio) & 1)
360 l &= ~(1 << gpio);
361 else
362 l |= 1 << gpio;
363
364 __raw_writel(l, reg);
365}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530366#else
367static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800368#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800369
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530370static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
371 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100372{
373 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530374 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100375 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100376
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530377 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
378 set_gpio_trigger(bank, gpio, trigger);
379 } else if (bank->regs->irqctrl) {
380 reg += bank->regs->irqctrl;
381
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100382 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000383 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800384 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100385 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100386 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100387 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100388 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100389 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530390 return -EINVAL;
391
392 __raw_writel(l, reg);
393 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100394 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530395 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100396 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530397 reg += bank->regs->edgectrl1;
398
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100399 gpio &= 0x07;
400 l = __raw_readl(reg);
401 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100402 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100403 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100404 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100405 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530406
407 /* Enable wake-up during idle for dynamic tick */
408 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530409 bank->context.wake_en =
410 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530411 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100412 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100413 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100414}
415
Lennert Buytenheke9191022010-11-29 11:17:17 +0100416static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100417{
Benoit Cousson25db7112012-02-23 21:50:10 +0100418 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren4b254082012-08-30 15:37:24 -0700419 unsigned gpio = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100420 int retval;
David Brownella6472532008-03-03 04:33:30 -0800421 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100422
Tony Lindgren4b254082012-08-30 15:37:24 -0700423#ifdef CONFIG_ARCH_OMAP1
424 if (d->irq > IH_MPUIO_BASE)
Lennert Buytenheke9191022010-11-29 11:17:17 +0100425 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren4b254082012-08-30 15:37:24 -0700426#endif
427
428 if (!gpio)
Benoit Cousson25db7112012-02-23 21:50:10 +0100429 gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100430
David Brownelle5c56ed2006-12-06 17:13:59 -0800431 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100432 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800433
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530434 if (!bank->regs->leveldetect0 &&
435 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100436 return -EINVAL;
437
David Brownella6472532008-03-03 04:33:30 -0800438 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700439 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800440 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800441
442 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100443 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800444 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100445 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800446
Tony Lindgren92105bb2005-09-07 17:20:26 +0100447 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100448}
449
450static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
451{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100452 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100453
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700454 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100455 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300456
457 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700458 if (bank->regs->irqstatus2) {
459 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700460 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700461 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700462
463 /* Flush posted write for the irq status to avoid spurious interrupts */
464 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100465}
466
467static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
468{
Kevin Hilman129fd222011-04-22 07:59:07 -0700469 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100470}
471
Imre Deakea6dedd2006-06-26 16:16:00 -0700472static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
473{
474 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700475 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700476 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700477
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700478 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700479 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700480 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700481 l = ~l;
482 l &= mask;
483 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700484}
485
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700486static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100487{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100488 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100489 u32 l;
490
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700491 if (bank->regs->set_irqenable) {
492 reg += bank->regs->set_irqenable;
493 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530494 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700495 } else {
496 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100497 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700498 if (bank->regs->irqenable_inv)
499 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100500 else
501 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530502 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100503 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700504
505 __raw_writel(l, reg);
506}
507
508static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
509{
510 void __iomem *reg = bank->base;
511 u32 l;
512
513 if (bank->regs->clr_irqenable) {
514 reg += bank->regs->clr_irqenable;
515 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530516 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700517 } else {
518 reg += bank->regs->irqenable;
519 l = __raw_readl(reg);
520 if (bank->regs->irqenable_inv)
521 l |= gpio_mask;
522 else
523 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530524 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700525 }
526
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100527 __raw_writel(l, reg);
528}
529
530static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
531{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530532 if (enable)
533 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
534 else
535 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100536}
537
Tony Lindgren92105bb2005-09-07 17:20:26 +0100538/*
539 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
540 * 1510 does not seem to have a wake-up register. If JTAG is connected
541 * to the target, system will wake up always on GPIO events. While
542 * system is running all registered GPIO interrupts need to have wake-up
543 * enabled. When system is suspended, only selected GPIO interrupts need
544 * to have wake-up enabled.
545 */
546static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
547{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700548 u32 gpio_bit = GPIO_BIT(bank, gpio);
549 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800550
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700551 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100552 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700553 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100554 return -EINVAL;
555 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700556
557 spin_lock_irqsave(&bank->lock, flags);
558 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530559 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700560 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530561 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700562
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530563 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700564 spin_unlock_irqrestore(&bank->lock, flags);
565
566 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100567}
568
Tony Lindgren4196dd62006-09-25 12:41:38 +0300569static void _reset_gpio(struct gpio_bank *bank, int gpio)
570{
Kevin Hilman129fd222011-04-22 07:59:07 -0700571 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300572 _set_gpio_irqenable(bank, gpio, 0);
573 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700574 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Jon Hunterc9c55d92012-10-26 14:26:04 -0500575 _clear_gpio_debounce(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300576}
577
Tony Lindgren92105bb2005-09-07 17:20:26 +0100578/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100579static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100580{
Benoit Cousson25db7112012-02-23 21:50:10 +0100581 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
582 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100583
Benoit Cousson25db7112012-02-23 21:50:10 +0100584 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100585}
586
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800587static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100588{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800589 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800590 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100591
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530592 /*
593 * If this is the first gpio_request for the bank,
594 * enable the bank module.
595 */
596 if (!bank->mod_usage)
597 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100598
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530599 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300600 /* Set trigger to none. You need to enable the desired trigger with
601 * request_irq() or set_irq_type().
602 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800603 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100604
Charulatha Vfad96ea2011-05-25 11:23:50 +0530605 if (bank->regs->pinctrl) {
606 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100607
Tony Lindgren92105bb2005-09-07 17:20:26 +0100608 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800609 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100610 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530611
Charulatha Vc8eef652011-05-02 15:21:42 +0530612 if (bank->regs->ctrl && !bank->mod_usage) {
613 void __iomem *reg = bank->base + bank->regs->ctrl;
614 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700615
Charulatha Vc8eef652011-05-02 15:21:42 +0530616 ctrl = __raw_readl(reg);
617 /* Module is enabled, clocks are not gated */
618 ctrl &= ~GPIO_MOD_CTRL_BIT;
619 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530620 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800621 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530622
623 bank->mod_usage |= 1 << offset;
624
David Brownella6472532008-03-03 04:33:30 -0800625 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100626
627 return 0;
628}
629
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800630static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100631{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800632 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530633 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800634 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100635
David Brownella6472532008-03-03 04:33:30 -0800636 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530637
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530638 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100639 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530640 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530641 bank->context.wake_en =
642 __raw_readl(bank->base + bank->regs->wkup_en);
643 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530644
Charulatha Vc8eef652011-05-02 15:21:42 +0530645 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700646
Charulatha Vc8eef652011-05-02 15:21:42 +0530647 if (bank->regs->ctrl && !bank->mod_usage) {
648 void __iomem *reg = bank->base + bank->regs->ctrl;
649 u32 ctrl;
650
651 ctrl = __raw_readl(reg);
652 /* Module is disabled, clocks are gated */
653 ctrl |= GPIO_MOD_CTRL_BIT;
654 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530655 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800656 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530657
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800658 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800659 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530660
661 /*
662 * If this is the last gpio to be freed in the bank,
663 * disable the bank module.
664 */
665 if (!bank->mod_usage)
666 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100667}
668
669/*
670 * We need to unmask the GPIO bank interrupt as soon as possible to
671 * avoid missing GPIO interrupts for other lines in the bank.
672 * Then we need to mask-read-clear-unmask the triggered GPIO lines
673 * in the bank to avoid missing nested interrupts for a GPIO line.
674 * If we wait to unmask individual GPIO lines in the bank after the
675 * line's interrupt handler has been run, we may miss some nested
676 * interrupts.
677 */
Russell King10dd5ce2006-11-23 11:41:32 +0000678static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100679{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100680 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100681 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800682 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100683 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700684 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000685 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100686
Will Deaconee144182011-02-21 13:46:08 +0000687 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100688
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100689 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700690 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530691 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800692
693 if (WARN_ON(!isr_reg))
694 goto exit;
695
Tony Lindgren92105bb2005-09-07 17:20:26 +0100696 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100697 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700698 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100699
Imre Deakea6dedd2006-06-26 16:16:00 -0700700 enabled = _get_gpio_irqbank_mask(bank);
701 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100702
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530703 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800704 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100705
706 /* clear edge sensitive interrupts before handler(s) are
707 called so that we don't miss any interrupt occurred while
708 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700709 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100710 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700711 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100712
713 /* if there is only edge sensitive GPIO pin interrupts
714 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700715 if (!level_mask && !unmasked) {
716 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000717 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700718 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100719
Tony Lindgren92105bb2005-09-07 17:20:26 +0100720 if (!isr)
721 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100722
Benoit Cousson384ebe12011-08-16 11:53:02 +0200723 gpio_irq = bank->irq_base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100724 for (; isr != 0; isr >>= 1, gpio_irq++) {
Benoit Cousson25db7112012-02-23 21:50:10 +0100725 int gpio = irq_to_gpio(bank, gpio_irq);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800726
Tony Lindgren92105bb2005-09-07 17:20:26 +0100727 if (!(isr & 1))
728 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200729
Benoit Cousson25db7112012-02-23 21:50:10 +0100730 gpio_index = GPIO_INDEX(bank, gpio);
731
Cory Maccarrone4318f362010-01-08 10:29:04 -0800732 /*
733 * Some chips can't respond to both rising and falling
734 * at the same time. If this irq was requested with
735 * both flags, we need to flip the ICR data for the IRQ
736 * to respond to the IRQ for the opposite direction.
737 * This will be indicated in the bank toggle_mask.
738 */
739 if (bank->toggle_mask & (1 << gpio_index))
740 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800741
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100742 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100743 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000744 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700745 /* if bank has any level sensitive GPIO pin interrupt
746 configured, we must unmask the bank interrupt only after
747 handler(s) are executed in order to avoid spurious bank
748 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800749exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700750 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000751 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530752 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100753}
754
Lennert Buytenheke9191022010-11-29 11:17:17 +0100755static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300756{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100757 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100758 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700759 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300760
Colin Cross85ec7b92011-06-06 13:38:18 -0700761 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300762 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700763 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300764}
765
Lennert Buytenheke9191022010-11-29 11:17:17 +0100766static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100767{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100768 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100769 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100770
771 _clear_gpio_irqstatus(bank, gpio);
772}
773
Lennert Buytenheke9191022010-11-29 11:17:17 +0100774static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100775{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100776 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100777 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700778 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100779
Colin Cross85ec7b92011-06-06 13:38:18 -0700780 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100781 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700782 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700783 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100784}
785
Lennert Buytenheke9191022010-11-29 11:17:17 +0100786static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100787{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100788 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100789 unsigned int gpio = irq_to_gpio(bank, d->irq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700790 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100791 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700792 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700793
Colin Cross85ec7b92011-06-06 13:38:18 -0700794 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700795 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700796 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800797
798 /* For level-triggered GPIOs, the clearing must be done after
799 * the HW source is cleared, thus after the handler has run */
800 if (bank->level_mask & irq_mask) {
801 _set_gpio_irqenable(bank, gpio, 0);
802 _clear_gpio_irqstatus(bank, gpio);
803 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100804
Kevin Hilman4de8c752008-01-16 21:56:14 -0800805 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700806 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100807}
808
David Brownelle5c56ed2006-12-06 17:13:59 -0800809static struct irq_chip gpio_irq_chip = {
810 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100811 .irq_shutdown = gpio_irq_shutdown,
812 .irq_ack = gpio_ack_irq,
813 .irq_mask = gpio_mask_irq,
814 .irq_unmask = gpio_unmask_irq,
815 .irq_set_type = gpio_irq_type,
816 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800817};
818
819/*---------------------------------------------------------------------*/
820
Magnus Damm79ee0312009-07-08 13:22:04 +0200821static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800822{
Magnus Damm79ee0312009-07-08 13:22:04 +0200823 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800824 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800825 void __iomem *mask_reg = bank->base +
826 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800827 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800828
David Brownella6472532008-03-03 04:33:30 -0800829 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530830 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800831 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800832
833 return 0;
834}
835
Magnus Damm79ee0312009-07-08 13:22:04 +0200836static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800837{
Magnus Damm79ee0312009-07-08 13:22:04 +0200838 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800839 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800840 void __iomem *mask_reg = bank->base +
841 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800842 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800843
David Brownella6472532008-03-03 04:33:30 -0800844 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530845 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800846 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800847
848 return 0;
849}
850
Alexey Dobriyan47145212009-12-14 18:00:08 -0800851static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200852 .suspend_noirq = omap_mpuio_suspend_noirq,
853 .resume_noirq = omap_mpuio_resume_noirq,
854};
855
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200856/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800857static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800858 .driver = {
859 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200860 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800861 },
862};
863
864static struct platform_device omap_mpuio_device = {
865 .name = "mpuio",
866 .id = -1,
867 .dev = {
868 .driver = &omap_mpuio_driver.driver,
869 }
870 /* could list the /proc/iomem resources */
871};
872
Charulatha V03e128c2011-05-05 19:58:01 +0530873static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800874{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800875 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700876
David Brownell11a78b72006-12-06 17:14:11 -0800877 if (platform_driver_register(&omap_mpuio_driver) == 0)
878 (void) platform_device_register(&omap_mpuio_device);
879}
880
David Brownelle5c56ed2006-12-06 17:13:59 -0800881/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100882
David Brownell52e31342008-03-03 12:43:23 -0800883static int gpio_input(struct gpio_chip *chip, unsigned offset)
884{
885 struct gpio_bank *bank;
886 unsigned long flags;
887
888 bank = container_of(chip, struct gpio_bank, chip);
889 spin_lock_irqsave(&bank->lock, flags);
890 _set_gpio_direction(bank, offset, 1);
891 spin_unlock_irqrestore(&bank->lock, flags);
892 return 0;
893}
894
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300895static int gpio_is_input(struct gpio_bank *bank, int mask)
896{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700897 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300898
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300899 return __raw_readl(reg) & mask;
900}
901
David Brownell52e31342008-03-03 12:43:23 -0800902static int gpio_get(struct gpio_chip *chip, unsigned offset)
903{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300904 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300905 u32 mask;
906
Charulatha Va8be8da2011-04-22 16:38:16 +0530907 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530908 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300909
910 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530911 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300912 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530913 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800914}
915
916static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
917{
918 struct gpio_bank *bank;
919 unsigned long flags;
920
921 bank = container_of(chip, struct gpio_bank, chip);
922 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700923 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800924 _set_gpio_direction(bank, offset, 0);
925 spin_unlock_irqrestore(&bank->lock, flags);
926 return 0;
927}
928
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700929static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
930 unsigned debounce)
931{
932 struct gpio_bank *bank;
933 unsigned long flags;
934
935 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800936
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700937 spin_lock_irqsave(&bank->lock, flags);
938 _set_gpio_debounce(bank, offset, debounce);
939 spin_unlock_irqrestore(&bank->lock, flags);
940
941 return 0;
942}
943
David Brownell52e31342008-03-03 12:43:23 -0800944static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
945{
946 struct gpio_bank *bank;
947 unsigned long flags;
948
949 bank = container_of(chip, struct gpio_bank, chip);
950 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700951 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800952 spin_unlock_irqrestore(&bank->lock, flags);
953}
954
David Brownella007b702008-12-10 17:35:25 -0800955static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
956{
957 struct gpio_bank *bank;
958
959 bank = container_of(chip, struct gpio_bank, chip);
Benoit Cousson384ebe12011-08-16 11:53:02 +0200960 return bank->irq_base + offset;
David Brownella007b702008-12-10 17:35:25 -0800961}
962
David Brownell52e31342008-03-03 12:43:23 -0800963/*---------------------------------------------------------------------*/
964
Tony Lindgren9a748052010-12-07 16:26:56 -0800965static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700966{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700967 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700968 u32 rev;
969
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700970 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700971 return;
972
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700973 rev = __raw_readw(bank->base + bank->regs->revision);
974 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700975 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700976
977 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700978}
979
David Brownell8ba55c52008-02-26 11:10:50 -0800980/* This lock class tells lockdep that GPIO irqs are in a different
981 * category than their parents, so it won't report false recursion.
982 */
983static struct lock_class_key gpio_lock_class;
984
Charulatha V03e128c2011-05-05 19:58:01 +0530985static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800986{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530987 void __iomem *base = bank->base;
988 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800989
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530990 if (bank->width == 16)
991 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800992
Charulatha Vd0d665a2011-08-31 00:02:21 +0530993 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530994 __raw_writel(l, bank->base + bank->regs->irqenable);
995 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800996 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530997
998 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530999 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301000 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301001 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301002
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301003 /* Save OE default value (0xffffffff) in the context */
1004 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301005 /* Initialize interface clk ungated, module enabled */
1006 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301007 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +05301008
1009 bank->dbck = clk_get(bank->dev, "dbclk");
1010 if (IS_ERR(bank->dbck))
1011 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001012}
1013
Bill Pemberton38363092012-11-19 13:22:34 -05001014static void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001015omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
1016 unsigned int num)
1017{
1018 struct irq_chip_generic *gc;
1019 struct irq_chip_type *ct;
1020
1021 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
1022 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -07001023 if (!gc) {
1024 dev_err(bank->dev, "Memory alloc failed for gc\n");
1025 return;
1026 }
1027
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001028 ct = gc->chip_types;
1029
1030 /* NOTE: No ack required, reading IRQ status clears it. */
1031 ct->chip.irq_mask = irq_gc_mask_set_bit;
1032 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1033 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301034
1035 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001036 ct->chip.irq_set_wake = gpio_wake_enable,
1037
1038 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1039 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1040 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1041}
1042
Bill Pemberton38363092012-11-19 13:22:34 -05001043static void omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001044{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001045 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001046 static int gpio;
1047
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001048 /*
1049 * REVISIT eventually switch from OMAP-specific gpio structs
1050 * over to the generic ones
1051 */
1052 bank->chip.request = omap_gpio_request;
1053 bank->chip.free = omap_gpio_free;
1054 bank->chip.direction_input = gpio_input;
1055 bank->chip.get = gpio_get;
1056 bank->chip.direction_output = gpio_output;
1057 bank->chip.set_debounce = gpio_debounce;
1058 bank->chip.set = gpio_set;
1059 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301060 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001061 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301062 if (bank->regs->wkup_en)
1063 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001064 bank->chip.base = OMAP_MPUIO(0);
1065 } else {
1066 bank->chip.label = "gpio";
1067 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001068 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001069 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001070 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001071
1072 gpiochip_add(&bank->chip);
1073
Benoit Cousson384ebe12011-08-16 11:53:02 +02001074 for (j = bank->irq_base; j < bank->irq_base + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001075 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001076 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301077 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001078 omap_mpuio_alloc_gc(bank, j, bank->width);
1079 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001080 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001081 irq_set_handler(j, handle_simple_irq);
1082 set_irq_flags(j, IRQF_VALID);
1083 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001084 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001085 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1086 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001087}
1088
Benoit Cousson384ebe12011-08-16 11:53:02 +02001089static const struct of_device_id omap_gpio_match[];
1090
Bill Pemberton38363092012-11-19 13:22:34 -05001091static int omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001092{
Benoit Cousson862ff642012-02-01 15:58:56 +01001093 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001094 struct device_node *node = dev->of_node;
1095 const struct of_device_id *match;
Uwe Kleine-Königf6817a22012-05-21 21:57:39 +02001096 const struct omap_gpio_platform_data *pdata;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001097 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001098 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301099 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001100
Benoit Cousson384ebe12011-08-16 11:53:02 +02001101 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1102
1103 pdata = match ? match->data : dev->platform_data;
1104 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001105 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001106
Tobias Klauser086d5852012-10-05 11:37:38 +02001107 bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301108 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001109 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001110 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301111 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001112
1113 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1114 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001115 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001116 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001117 }
1118
1119 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001120 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001121 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001122 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001123 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301124 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301125 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301126 bank->loses_context = pdata->loses_context;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001127 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001128#ifdef CONFIG_OF_GPIO
1129 bank->chip.of_node = of_node_get(node);
1130#endif
1131
1132 bank->irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
1133 if (bank->irq_base < 0) {
1134 dev_err(dev, "Couldn't allocate IRQ numbers\n");
1135 return -ENODEV;
1136 }
1137
1138 bank->domain = irq_domain_add_legacy(node, bank->width, bank->irq_base,
1139 0, &irq_domain_simple_ops, NULL);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001140
1141 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1142 bank->set_dataout = _set_gpio_dataout_reg;
1143 else
1144 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001145
1146 spin_lock_init(&bank->lock);
1147
1148 /* Static mapping, never released */
1149 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1150 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001151 dev_err(dev, "Invalid mem resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001152 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001153 }
1154
Benoit Cousson96751fc2012-02-01 16:01:39 +01001155 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1156 pdev->name)) {
1157 dev_err(dev, "Region already claimed\n");
1158 return -EBUSY;
1159 }
1160
1161 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001162 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001163 dev_err(dev, "Could not ioremap\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001164 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001165 }
1166
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301167 platform_set_drvdata(pdev, bank);
1168
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001169 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301170 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001171 pm_runtime_get_sync(bank->dev);
1172
Charulatha Vd0d665a2011-08-31 00:02:21 +05301173 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301174 mpuio_init(bank);
1175
Charulatha V03e128c2011-05-05 19:58:01 +05301176 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001177 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001178 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001179
Jon Hunter7b86cef2012-07-03 11:05:50 -05001180 if (bank->loses_context)
1181 bank->get_context_loss_count = pdata->get_context_loss_count;
1182
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301183 pm_runtime_put(bank->dev);
1184
Charulatha V03e128c2011-05-05 19:58:01 +05301185 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001186
Charulatha V03e128c2011-05-05 19:58:01 +05301187 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001188}
1189
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301190#ifdef CONFIG_ARCH_OMAP2PLUS
1191
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301192#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301193static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001194
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301195static int omap_gpio_runtime_suspend(struct device *dev)
1196{
1197 struct platform_device *pdev = to_platform_device(dev);
1198 struct gpio_bank *bank = platform_get_drvdata(pdev);
1199 u32 l1 = 0, l2 = 0;
1200 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001201 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301202
1203 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001204
1205 /*
1206 * Only edges can generate a wakeup event to the PRCM.
1207 *
1208 * Therefore, ensure any wake-up capable GPIOs have
1209 * edge-detection enabled before going idle to ensure a wakeup
1210 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1211 * NDA TRM 25.5.3.1)
1212 *
1213 * The normal values will be restored upon ->runtime_resume()
1214 * by writing back the values saved in bank->context.
1215 */
1216 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1217 if (wake_low)
1218 __raw_writel(wake_low | bank->context.fallingdetect,
1219 bank->base + bank->regs->fallingdetect);
1220 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1221 if (wake_hi)
1222 __raw_writel(wake_hi | bank->context.risingdetect,
1223 bank->base + bank->regs->risingdetect);
1224
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001225 if (!bank->enabled_non_wakeup_gpios)
1226 goto update_gpio_context_count;
1227
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301228 if (bank->power_mode != OFF_MODE) {
1229 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301230 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301231 }
1232 /*
1233 * If going to OFF, remove triggering for all
1234 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1235 * generated. See OMAP2420 Errata item 1.101.
1236 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301237 bank->saved_datain = __raw_readl(bank->base +
1238 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301239 l1 = bank->context.fallingdetect;
1240 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301241
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301242 l1 &= ~bank->enabled_non_wakeup_gpios;
1243 l2 &= ~bank->enabled_non_wakeup_gpios;
1244
1245 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1246 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1247
1248 bank->workaround_enabled = true;
1249
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301250update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301251 if (bank->get_context_loss_count)
1252 bank->context_loss_count =
1253 bank->get_context_loss_count(bank->dev);
1254
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301255 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301256 spin_unlock_irqrestore(&bank->lock, flags);
1257
1258 return 0;
1259}
1260
1261static int omap_gpio_runtime_resume(struct device *dev)
1262{
1263 struct platform_device *pdev = to_platform_device(dev);
1264 struct gpio_bank *bank = platform_get_drvdata(pdev);
1265 int context_lost_cnt_after;
1266 u32 l = 0, gen, gen0, gen1;
1267 unsigned long flags;
1268
1269 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301270 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001271
1272 /*
1273 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1274 * GPIOs were set to edge trigger also in order to be able to
1275 * generate a PRCM wakeup. Here we restore the
1276 * pre-runtime_suspend() values for edge triggering.
1277 */
1278 __raw_writel(bank->context.fallingdetect,
1279 bank->base + bank->regs->fallingdetect);
1280 __raw_writel(bank->context.risingdetect,
1281 bank->base + bank->regs->risingdetect);
1282
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301283 if (bank->get_context_loss_count) {
1284 context_lost_cnt_after =
1285 bank->get_context_loss_count(bank->dev);
Kevin Hilman22770de2012-05-17 14:52:56 -07001286 if (context_lost_cnt_after != bank->context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301287 omap_gpio_restore_context(bank);
1288 } else {
1289 spin_unlock_irqrestore(&bank->lock, flags);
1290 return 0;
1291 }
1292 }
1293
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301294 if (!bank->workaround_enabled) {
1295 spin_unlock_irqrestore(&bank->lock, flags);
1296 return 0;
1297 }
1298
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301299 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301300 bank->base + bank->regs->fallingdetect);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301301 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301302 bank->base + bank->regs->risingdetect);
1303 l = __raw_readl(bank->base + bank->regs->datain);
1304
1305 /*
1306 * Check if any of the non-wakeup interrupt GPIOs have changed
1307 * state. If so, generate an IRQ by software. This is
1308 * horribly racy, but it's the best we can do to work around
1309 * this silicon bug.
1310 */
1311 l ^= bank->saved_datain;
1312 l &= bank->enabled_non_wakeup_gpios;
1313
1314 /*
1315 * No need to generate IRQs for the rising edge for gpio IRQs
1316 * configured with falling edge only; and vice versa.
1317 */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301318 gen0 = l & bank->context.fallingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301319 gen0 &= bank->saved_datain;
1320
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301321 gen1 = l & bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301322 gen1 &= ~(bank->saved_datain);
1323
1324 /* FIXME: Consider GPIO IRQs with level detections properly! */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301325 gen = l & (~(bank->context.fallingdetect) &
1326 ~(bank->context.risingdetect));
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301327 /* Consider all GPIO IRQs needed to be updated */
1328 gen |= gen0 | gen1;
1329
1330 if (gen) {
1331 u32 old0, old1;
1332
1333 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1334 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1335
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301336 if (!bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301337 __raw_writel(old0 | gen, bank->base +
1338 bank->regs->leveldetect0);
1339 __raw_writel(old1 | gen, bank->base +
1340 bank->regs->leveldetect1);
1341 }
1342
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301343 if (bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301344 __raw_writel(old0 | l, bank->base +
1345 bank->regs->leveldetect0);
1346 __raw_writel(old1 | l, bank->base +
1347 bank->regs->leveldetect1);
1348 }
1349 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1350 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1351 }
1352
1353 bank->workaround_enabled = false;
1354 spin_unlock_irqrestore(&bank->lock, flags);
1355
1356 return 0;
1357}
1358#endif /* CONFIG_PM_RUNTIME */
1359
1360void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001361{
Charulatha V03e128c2011-05-05 19:58:01 +05301362 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001363
Charulatha V03e128c2011-05-05 19:58:01 +05301364 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301365 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301366 continue;
1367
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301368 bank->power_mode = pwr_mode;
1369
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301370 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001371 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001372}
1373
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001374void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001375{
Charulatha V03e128c2011-05-05 19:58:01 +05301376 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001377
Charulatha V03e128c2011-05-05 19:58:01 +05301378 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301379 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301380 continue;
1381
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301382 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001383 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001384}
1385
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301386#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301387static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301388{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301389 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301390 bank->base + bank->regs->wkup_en);
1391 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301392 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301393 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301394 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301395 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301396 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301397 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301398 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301399 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301400 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1401 __raw_writel(bank->context.dataout,
1402 bank->base + bank->regs->set_dataout);
1403 else
1404 __raw_writel(bank->context.dataout,
1405 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301406 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1407
Nishanth Menonae547352011-09-09 19:08:58 +05301408 if (bank->dbck_enable_mask) {
1409 __raw_writel(bank->context.debounce, bank->base +
1410 bank->regs->debounce);
1411 __raw_writel(bank->context.debounce_en,
1412 bank->base + bank->regs->debounce_en);
1413 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301414
1415 __raw_writel(bank->context.irqenable1,
1416 bank->base + bank->regs->irqenable);
1417 __raw_writel(bank->context.irqenable2,
1418 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301419}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301420#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301421#else
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301422#define omap_gpio_runtime_suspend NULL
1423#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301424#endif
1425
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301426static const struct dev_pm_ops gpio_pm_ops = {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301427 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1428 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301429};
1430
Benoit Cousson384ebe12011-08-16 11:53:02 +02001431#if defined(CONFIG_OF)
1432static struct omap_gpio_reg_offs omap2_gpio_regs = {
1433 .revision = OMAP24XX_GPIO_REVISION,
1434 .direction = OMAP24XX_GPIO_OE,
1435 .datain = OMAP24XX_GPIO_DATAIN,
1436 .dataout = OMAP24XX_GPIO_DATAOUT,
1437 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1438 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1439 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1440 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1441 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1442 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1443 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1444 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1445 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1446 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1447 .ctrl = OMAP24XX_GPIO_CTRL,
1448 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1449 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1450 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1451 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1452 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1453};
1454
1455static struct omap_gpio_reg_offs omap4_gpio_regs = {
1456 .revision = OMAP4_GPIO_REVISION,
1457 .direction = OMAP4_GPIO_OE,
1458 .datain = OMAP4_GPIO_DATAIN,
1459 .dataout = OMAP4_GPIO_DATAOUT,
1460 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1461 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1462 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1463 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1464 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1465 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1466 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1467 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1468 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1469 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1470 .ctrl = OMAP4_GPIO_CTRL,
1471 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1472 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1473 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1474 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1475 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1476};
1477
Chen Gange9a65bb2013-02-06 18:44:32 +08001478static const struct omap_gpio_platform_data omap2_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001479 .regs = &omap2_gpio_regs,
1480 .bank_width = 32,
1481 .dbck_flag = false,
1482};
1483
Chen Gange9a65bb2013-02-06 18:44:32 +08001484static const struct omap_gpio_platform_data omap3_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001485 .regs = &omap2_gpio_regs,
1486 .bank_width = 32,
1487 .dbck_flag = true,
1488};
1489
Chen Gange9a65bb2013-02-06 18:44:32 +08001490static const struct omap_gpio_platform_data omap4_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001491 .regs = &omap4_gpio_regs,
1492 .bank_width = 32,
1493 .dbck_flag = true,
1494};
1495
1496static const struct of_device_id omap_gpio_match[] = {
1497 {
1498 .compatible = "ti,omap4-gpio",
1499 .data = &omap4_pdata,
1500 },
1501 {
1502 .compatible = "ti,omap3-gpio",
1503 .data = &omap3_pdata,
1504 },
1505 {
1506 .compatible = "ti,omap2-gpio",
1507 .data = &omap2_pdata,
1508 },
1509 { },
1510};
1511MODULE_DEVICE_TABLE(of, omap_gpio_match);
1512#endif
1513
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001514static struct platform_driver omap_gpio_driver = {
1515 .probe = omap_gpio_probe,
1516 .driver = {
1517 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301518 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001519 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001520 },
1521};
1522
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001523/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001524 * gpio driver register needs to be done before
1525 * machine_init functions access gpio APIs.
1526 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001527 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001528static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001529{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001530 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001531}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001532postcore_initcall(omap_gpio_drv_reg);