blob: 2050891d9c65a4936533fb14a4b2d8b95b379cb5 [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 struct irq_domain *domain;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080056 u32 non_wakeup_gpios;
57 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000058 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080059 u32 saved_datain;
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;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053067 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080068 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053069 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080070 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053071 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080072 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070073 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053074 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053075 int power_mode;
76 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070077
78 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053079 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070080
81 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010082};
83
Kevin Hilman129fd222011-04-22 07:59:07 -070084#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
85#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053086#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010087
Benoit Cousson25db7112012-02-23 21:50:10 +010088static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
89{
Jon Hunterede4d7a2013-03-01 11:22:47 -060090 return bank->chip.base + gpio_irq;
91}
92
93static int omap_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
94{
95 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
96
97 return irq_find_mapping(bank->domain, offset);
Benoit Cousson25db7112012-02-23 21:50:10 +010098}
99
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100100static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
101{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100102 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100103 u32 l;
104
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700105 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100106 l = __raw_readl(reg);
107 if (is_input)
108 l |= 1 << gpio;
109 else
110 l &= ~(1 << gpio);
111 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530112 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100113}
114
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700115
116/* set data out value using dedicate set/clear register */
117static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100118{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100119 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700120 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100121
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530122 if (enable) {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700123 reg += bank->regs->set_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530124 bank->context.dataout |= l;
125 } else {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700126 reg += bank->regs->clr_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530127 bank->context.dataout &= ~l;
128 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700129
130 __raw_writel(l, reg);
131}
132
133/* set data out value using mask register */
134static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
135{
136 void __iomem *reg = bank->base + bank->regs->dataout;
137 u32 gpio_bit = GPIO_BIT(bank, gpio);
138 u32 l;
139
140 l = __raw_readl(reg);
141 if (enable)
142 l |= gpio_bit;
143 else
144 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530146 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100147}
148
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530149static int _get_gpio_datain(struct gpio_bank *bank, int offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700151 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100152
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530153 return (__raw_readl(reg) & (1 << offset)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100154}
155
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530156static int _get_gpio_dataout(struct gpio_bank *bank, int offset)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300157{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700158 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300159
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530160 return (__raw_readl(reg) & (1 << offset)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300161}
162
Kevin Hilmanece95282011-07-12 08:18:15 -0700163static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
164{
165 int l = __raw_readl(base + reg);
166
Benoit Cousson862ff642012-02-01 15:58:56 +0100167 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700168 l |= mask;
169 else
170 l &= ~mask;
171
172 __raw_writel(l, base + reg);
173}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100174
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530175static inline void _gpio_dbck_enable(struct gpio_bank *bank)
176{
177 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
178 clk_enable(bank->dbck);
179 bank->dbck_enabled = true;
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300180
181 __raw_writel(bank->dbck_enable_mask,
182 bank->base + bank->regs->debounce_en);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530183 }
184}
185
186static inline void _gpio_dbck_disable(struct gpio_bank *bank)
187{
188 if (bank->dbck_enable_mask && bank->dbck_enabled) {
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300189 /*
190 * Disable debounce before cutting it's clock. If debounce is
191 * enabled but the clock is not, GPIO module seems to be unable
192 * to detect events and generate interrupts at least on OMAP3.
193 */
194 __raw_writel(0, bank->base + bank->regs->debounce_en);
195
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530196 clk_disable(bank->dbck);
197 bank->dbck_enabled = false;
198 }
199}
200
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700201/**
202 * _set_gpio_debounce - low level gpio debounce time
203 * @bank: the gpio bank we're acting upon
204 * @gpio: the gpio number on this @gpio
205 * @debounce: debounce time to use
206 *
207 * OMAP's debounce time is in 31us steps so we need
208 * to convert and round up to the closest unit.
209 */
210static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
211 unsigned debounce)
212{
Kevin Hilman9942da02011-04-22 12:02:05 -0700213 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700214 u32 val;
215 u32 l;
216
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800217 if (!bank->dbck_flag)
218 return;
219
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700220 if (debounce < 32)
221 debounce = 0x01;
222 else if (debounce > 7936)
223 debounce = 0xff;
224 else
225 debounce = (debounce / 0x1f) - 1;
226
Kevin Hilman129fd222011-04-22 07:59:07 -0700227 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700228
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530229 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700230 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700231 __raw_writel(debounce, reg);
232
Kevin Hilman9942da02011-04-22 12:02:05 -0700233 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700234 val = __raw_readl(reg);
235
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530236 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700237 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530238 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700239 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300240 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700241
242 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530243 clk_disable(bank->dbck);
244 /*
245 * Enable debounce clock per module.
246 * This call is mandatory because in omap_gpio_request() when
247 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
248 * runtime callbck fails to turn on dbck because dbck_enable_mask
249 * used within _gpio_dbck_enable() is still not initialized at
250 * that point. Therefore we have to enable dbck here.
251 */
252 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530253 if (bank->dbck_enable_mask) {
254 bank->context.debounce = debounce;
255 bank->context.debounce_en = val;
256 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700257}
258
Jon Hunterc9c55d92012-10-26 14:26:04 -0500259/**
260 * _clear_gpio_debounce - clear debounce settings for a gpio
261 * @bank: the gpio bank we're acting upon
262 * @gpio: the gpio number on this @gpio
263 *
264 * If a gpio is using debounce, then clear the debounce enable bit and if
265 * this is the only gpio in this bank using debounce, then clear the debounce
266 * time too. The debounce clock will also be disabled when calling this function
267 * if this is the only gpio in the bank using debounce.
268 */
269static void _clear_gpio_debounce(struct gpio_bank *bank, unsigned gpio)
270{
271 u32 gpio_bit = GPIO_BIT(bank, gpio);
272
273 if (!bank->dbck_flag)
274 return;
275
276 if (!(bank->dbck_enable_mask & gpio_bit))
277 return;
278
279 bank->dbck_enable_mask &= ~gpio_bit;
280 bank->context.debounce_en &= ~gpio_bit;
281 __raw_writel(bank->context.debounce_en,
282 bank->base + bank->regs->debounce_en);
283
284 if (!bank->dbck_enable_mask) {
285 bank->context.debounce = 0;
286 __raw_writel(bank->context.debounce, bank->base +
287 bank->regs->debounce);
288 clk_disable(bank->dbck);
289 bank->dbck_enabled = false;
290 }
291}
292
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530293static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530294 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100295{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800296 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100297 u32 gpio_bit = 1 << gpio;
298
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530299 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
300 trigger & IRQ_TYPE_LEVEL_LOW);
301 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
302 trigger & IRQ_TYPE_LEVEL_HIGH);
303 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
304 trigger & IRQ_TYPE_EDGE_RISING);
305 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
306 trigger & IRQ_TYPE_EDGE_FALLING);
307
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530308 bank->context.leveldetect0 =
309 __raw_readl(bank->base + bank->regs->leveldetect0);
310 bank->context.leveldetect1 =
311 __raw_readl(bank->base + bank->regs->leveldetect1);
312 bank->context.risingdetect =
313 __raw_readl(bank->base + bank->regs->risingdetect);
314 bank->context.fallingdetect =
315 __raw_readl(bank->base + bank->regs->fallingdetect);
316
317 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530318 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530319 bank->context.wake_en =
320 __raw_readl(bank->base + bank->regs->wkup_en);
321 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530322
Ambresh K55b220c2011-06-15 13:40:45 -0700323 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530324 if (!bank->regs->irqctrl) {
325 /* On omap24xx proceed only when valid GPIO bit is set */
326 if (bank->non_wakeup_gpios) {
327 if (!(bank->non_wakeup_gpios & gpio_bit))
328 goto exit;
329 }
330
Chunqiu Wang699117a62009-06-24 17:13:39 +0000331 /*
332 * Log the edge gpio and manually trigger the IRQ
333 * after resume if the input level changes
334 * to avoid irq lost during PER RET/OFF mode
335 * Applies for omap2 non-wakeup gpio and all omap3 gpios
336 */
337 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800338 bank->enabled_non_wakeup_gpios |= gpio_bit;
339 else
340 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
341 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700342
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530343exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530344 bank->level_mask =
345 __raw_readl(bank->base + bank->regs->leveldetect0) |
346 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100347}
348
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800349#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800350/*
351 * This only applies to chips that can't do both rising and falling edge
352 * detection at once. For all other chips, this function is a noop.
353 */
354static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
355{
356 void __iomem *reg = bank->base;
357 u32 l = 0;
358
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530359 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800360 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530361
362 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800363
364 l = __raw_readl(reg);
365 if ((l >> gpio) & 1)
366 l &= ~(1 << gpio);
367 else
368 l |= 1 << gpio;
369
370 __raw_writel(l, reg);
371}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530372#else
373static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800374#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800375
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530376static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
377 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100378{
379 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530380 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100381 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100382
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530383 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
384 set_gpio_trigger(bank, gpio, trigger);
385 } else if (bank->regs->irqctrl) {
386 reg += bank->regs->irqctrl;
387
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100388 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000389 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800390 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100391 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100392 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100393 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100394 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100395 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530396 return -EINVAL;
397
398 __raw_writel(l, reg);
399 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100400 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530401 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100402 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530403 reg += bank->regs->edgectrl1;
404
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100405 gpio &= 0x07;
406 l = __raw_readl(reg);
407 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100408 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100409 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100410 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100411 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530412
413 /* Enable wake-up during idle for dynamic tick */
414 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530415 bank->context.wake_en =
416 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530417 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100418 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100419 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100420}
421
Lennert Buytenheke9191022010-11-29 11:17:17 +0100422static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100423{
Benoit Cousson25db7112012-02-23 21:50:10 +0100424 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren4b254082012-08-30 15:37:24 -0700425 unsigned gpio = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100426 int retval;
David Brownella6472532008-03-03 04:33:30 -0800427 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100428
Jon Hunter8d4c2772013-03-01 11:22:48 -0600429 if (WARN_ON(!bank->mod_usage))
430 return -EINVAL;
431
Tony Lindgren4b254082012-08-30 15:37:24 -0700432#ifdef CONFIG_ARCH_OMAP1
433 if (d->irq > IH_MPUIO_BASE)
Lennert Buytenheke9191022010-11-29 11:17:17 +0100434 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren4b254082012-08-30 15:37:24 -0700435#endif
436
437 if (!gpio)
Jon Hunterede4d7a2013-03-01 11:22:47 -0600438 gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100439
David Brownelle5c56ed2006-12-06 17:13:59 -0800440 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100441 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800442
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530443 if (!bank->regs->leveldetect0 &&
444 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100445 return -EINVAL;
446
David Brownella6472532008-03-03 04:33:30 -0800447 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700448 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800449 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800450
451 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100452 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800453 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100454 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800455
Tony Lindgren92105bb2005-09-07 17:20:26 +0100456 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100457}
458
459static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
460{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100461 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100462
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700463 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100464 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300465
466 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700467 if (bank->regs->irqstatus2) {
468 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700469 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700470 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700471
472 /* Flush posted write for the irq status to avoid spurious interrupts */
473 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100474}
475
476static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
477{
Kevin Hilman129fd222011-04-22 07:59:07 -0700478 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100479}
480
Imre Deakea6dedd2006-06-26 16:16:00 -0700481static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
482{
483 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700484 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700485 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700486
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700487 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700488 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700489 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700490 l = ~l;
491 l &= mask;
492 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700493}
494
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700495static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100496{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100497 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100498 u32 l;
499
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700500 if (bank->regs->set_irqenable) {
501 reg += bank->regs->set_irqenable;
502 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530503 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700504 } else {
505 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100506 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700507 if (bank->regs->irqenable_inv)
508 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100509 else
510 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530511 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100512 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700513
514 __raw_writel(l, reg);
515}
516
517static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
518{
519 void __iomem *reg = bank->base;
520 u32 l;
521
522 if (bank->regs->clr_irqenable) {
523 reg += bank->regs->clr_irqenable;
524 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530525 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700526 } else {
527 reg += bank->regs->irqenable;
528 l = __raw_readl(reg);
529 if (bank->regs->irqenable_inv)
530 l |= gpio_mask;
531 else
532 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530533 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700534 }
535
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100536 __raw_writel(l, reg);
537}
538
539static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
540{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530541 if (enable)
542 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
543 else
544 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100545}
546
Tony Lindgren92105bb2005-09-07 17:20:26 +0100547/*
548 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
549 * 1510 does not seem to have a wake-up register. If JTAG is connected
550 * to the target, system will wake up always on GPIO events. While
551 * system is running all registered GPIO interrupts need to have wake-up
552 * enabled. When system is suspended, only selected GPIO interrupts need
553 * to have wake-up enabled.
554 */
555static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
556{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700557 u32 gpio_bit = GPIO_BIT(bank, gpio);
558 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800559
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700560 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100561 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700562 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100563 return -EINVAL;
564 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700565
566 spin_lock_irqsave(&bank->lock, flags);
567 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530568 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700569 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530570 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700571
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530572 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700573 spin_unlock_irqrestore(&bank->lock, flags);
574
575 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100576}
577
Tony Lindgren4196dd62006-09-25 12:41:38 +0300578static void _reset_gpio(struct gpio_bank *bank, int gpio)
579{
Kevin Hilman129fd222011-04-22 07:59:07 -0700580 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300581 _set_gpio_irqenable(bank, gpio, 0);
582 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700583 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Jon Hunterc9c55d92012-10-26 14:26:04 -0500584 _clear_gpio_debounce(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300585}
586
Tony Lindgren92105bb2005-09-07 17:20:26 +0100587/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100588static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100589{
Benoit Cousson25db7112012-02-23 21:50:10 +0100590 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600591 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100592
Benoit Cousson25db7112012-02-23 21:50:10 +0100593 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100594}
595
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800596static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100597{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800598 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800599 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100600
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530601 /*
602 * If this is the first gpio_request for the bank,
603 * enable the bank module.
604 */
605 if (!bank->mod_usage)
606 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100607
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530608 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300609 /* Set trigger to none. You need to enable the desired trigger with
610 * request_irq() or set_irq_type().
611 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800612 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100613
Charulatha Vfad96ea2011-05-25 11:23:50 +0530614 if (bank->regs->pinctrl) {
615 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100616
Tony Lindgren92105bb2005-09-07 17:20:26 +0100617 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800618 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100619 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530620
Charulatha Vc8eef652011-05-02 15:21:42 +0530621 if (bank->regs->ctrl && !bank->mod_usage) {
622 void __iomem *reg = bank->base + bank->regs->ctrl;
623 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700624
Charulatha Vc8eef652011-05-02 15:21:42 +0530625 ctrl = __raw_readl(reg);
626 /* Module is enabled, clocks are not gated */
627 ctrl &= ~GPIO_MOD_CTRL_BIT;
628 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530629 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800630 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530631
632 bank->mod_usage |= 1 << offset;
633
David Brownella6472532008-03-03 04:33:30 -0800634 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100635
636 return 0;
637}
638
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800639static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100640{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800641 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530642 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800643 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100644
David Brownella6472532008-03-03 04:33:30 -0800645 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530646
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530647 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100648 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530649 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530650 bank->context.wake_en =
651 __raw_readl(bank->base + bank->regs->wkup_en);
652 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530653
Charulatha Vc8eef652011-05-02 15:21:42 +0530654 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700655
Charulatha Vc8eef652011-05-02 15:21:42 +0530656 if (bank->regs->ctrl && !bank->mod_usage) {
657 void __iomem *reg = bank->base + bank->regs->ctrl;
658 u32 ctrl;
659
660 ctrl = __raw_readl(reg);
661 /* Module is disabled, clocks are gated */
662 ctrl |= GPIO_MOD_CTRL_BIT;
663 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530664 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800665 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530666
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800667 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800668 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530669
670 /*
671 * If this is the last gpio to be freed in the bank,
672 * disable the bank module.
673 */
674 if (!bank->mod_usage)
675 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100676}
677
678/*
679 * We need to unmask the GPIO bank interrupt as soon as possible to
680 * avoid missing GPIO interrupts for other lines in the bank.
681 * Then we need to mask-read-clear-unmask the triggered GPIO lines
682 * in the bank to avoid missing nested interrupts for a GPIO line.
683 * If we wait to unmask individual GPIO lines in the bank after the
684 * line's interrupt handler has been run, we may miss some nested
685 * interrupts.
686 */
Russell King10dd5ce2006-11-23 11:41:32 +0000687static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100688{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100689 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100690 u32 isr;
Jon Hunter3513cde2013-04-04 15:16:14 -0500691 unsigned int bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100692 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700693 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000694 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100695
Will Deaconee144182011-02-21 13:46:08 +0000696 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100697
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100698 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700699 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530700 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800701
702 if (WARN_ON(!isr_reg))
703 goto exit;
704
Laurent Navete83507b2013-03-20 13:15:57 +0100705 while (1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100706 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700707 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100708
Imre Deakea6dedd2006-06-26 16:16:00 -0700709 enabled = _get_gpio_irqbank_mask(bank);
710 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100711
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530712 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800713 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100714
715 /* clear edge sensitive interrupts before handler(s) are
716 called so that we don't miss any interrupt occurred while
717 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700718 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100719 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700720 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100721
722 /* if there is only edge sensitive GPIO pin interrupts
723 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700724 if (!level_mask && !unmasked) {
725 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000726 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700727 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100728
Tony Lindgren92105bb2005-09-07 17:20:26 +0100729 if (!isr)
730 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100731
Jon Hunter3513cde2013-04-04 15:16:14 -0500732 while (isr) {
733 bit = __ffs(isr);
734 isr &= ~(1 << bit);
Benoit Cousson25db7112012-02-23 21:50:10 +0100735
Cory Maccarrone4318f362010-01-08 10:29:04 -0800736 /*
737 * Some chips can't respond to both rising and falling
738 * at the same time. If this irq was requested with
739 * both flags, we need to flip the ICR data for the IRQ
740 * to respond to the IRQ for the opposite direction.
741 * This will be indicated in the bank toggle_mask.
742 */
Jon Hunter3513cde2013-04-04 15:16:14 -0500743 if (bank->toggle_mask & (1 << bit))
744 _toggle_gpio_edge_triggering(bank, bit);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800745
Jon Hunter3513cde2013-04-04 15:16:14 -0500746 generic_handle_irq(irq_find_mapping(bank->domain, bit));
Tony Lindgren92105bb2005-09-07 17:20:26 +0100747 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000748 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700749 /* if bank has any level sensitive GPIO pin interrupt
750 configured, we must unmask the bank interrupt only after
751 handler(s) are executed in order to avoid spurious bank
752 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800753exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700754 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000755 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530756 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100757}
758
Lennert Buytenheke9191022010-11-29 11:17:17 +0100759static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300760{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100761 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600762 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700763 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300764
Colin Cross85ec7b92011-06-06 13:38:18 -0700765 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300766 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700767 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300768}
769
Lennert Buytenheke9191022010-11-29 11:17:17 +0100770static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100771{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100772 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600773 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100774
775 _clear_gpio_irqstatus(bank, gpio);
776}
777
Lennert Buytenheke9191022010-11-29 11:17:17 +0100778static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100779{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100780 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600781 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700782 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100783
Colin Cross85ec7b92011-06-06 13:38:18 -0700784 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100785 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700786 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700787 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100788}
789
Lennert Buytenheke9191022010-11-29 11:17:17 +0100790static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100791{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100792 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600793 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700794 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100795 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700796 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700797
Colin Cross85ec7b92011-06-06 13:38:18 -0700798 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700799 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700800 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800801
802 /* For level-triggered GPIOs, the clearing must be done after
803 * the HW source is cleared, thus after the handler has run */
804 if (bank->level_mask & irq_mask) {
805 _set_gpio_irqenable(bank, gpio, 0);
806 _clear_gpio_irqstatus(bank, gpio);
807 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100808
Kevin Hilman4de8c752008-01-16 21:56:14 -0800809 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700810 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100811}
812
David Brownelle5c56ed2006-12-06 17:13:59 -0800813static struct irq_chip gpio_irq_chip = {
814 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100815 .irq_shutdown = gpio_irq_shutdown,
816 .irq_ack = gpio_ack_irq,
817 .irq_mask = gpio_mask_irq,
818 .irq_unmask = gpio_unmask_irq,
819 .irq_set_type = gpio_irq_type,
820 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800821};
822
823/*---------------------------------------------------------------------*/
824
Magnus Damm79ee0312009-07-08 13:22:04 +0200825static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800826{
Magnus Damm79ee0312009-07-08 13:22:04 +0200827 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800828 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800829 void __iomem *mask_reg = bank->base +
830 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800831 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800832
David Brownella6472532008-03-03 04:33:30 -0800833 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530834 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800835 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800836
837 return 0;
838}
839
Magnus Damm79ee0312009-07-08 13:22:04 +0200840static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800841{
Magnus Damm79ee0312009-07-08 13:22:04 +0200842 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800843 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800844 void __iomem *mask_reg = bank->base +
845 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800846 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800847
David Brownella6472532008-03-03 04:33:30 -0800848 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530849 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800850 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800851
852 return 0;
853}
854
Alexey Dobriyan47145212009-12-14 18:00:08 -0800855static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200856 .suspend_noirq = omap_mpuio_suspend_noirq,
857 .resume_noirq = omap_mpuio_resume_noirq,
858};
859
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200860/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800861static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800862 .driver = {
863 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200864 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800865 },
866};
867
868static struct platform_device omap_mpuio_device = {
869 .name = "mpuio",
870 .id = -1,
871 .dev = {
872 .driver = &omap_mpuio_driver.driver,
873 }
874 /* could list the /proc/iomem resources */
875};
876
Charulatha V03e128c2011-05-05 19:58:01 +0530877static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800878{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800879 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700880
David Brownell11a78b72006-12-06 17:14:11 -0800881 if (platform_driver_register(&omap_mpuio_driver) == 0)
882 (void) platform_device_register(&omap_mpuio_device);
883}
884
David Brownelle5c56ed2006-12-06 17:13:59 -0800885/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100886
David Brownell52e31342008-03-03 12:43:23 -0800887static int gpio_input(struct gpio_chip *chip, unsigned offset)
888{
889 struct gpio_bank *bank;
890 unsigned long flags;
891
892 bank = container_of(chip, struct gpio_bank, chip);
893 spin_lock_irqsave(&bank->lock, flags);
894 _set_gpio_direction(bank, offset, 1);
895 spin_unlock_irqrestore(&bank->lock, flags);
896 return 0;
897}
898
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300899static int gpio_is_input(struct gpio_bank *bank, int mask)
900{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700901 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300902
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300903 return __raw_readl(reg) & mask;
904}
905
David Brownell52e31342008-03-03 12:43:23 -0800906static int gpio_get(struct gpio_chip *chip, unsigned offset)
907{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300908 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300909 u32 mask;
910
Charulatha Va8be8da2011-04-22 16:38:16 +0530911 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530912 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300913
914 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530915 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300916 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530917 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800918}
919
920static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
921{
922 struct gpio_bank *bank;
923 unsigned long flags;
924
925 bank = container_of(chip, struct gpio_bank, chip);
926 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700927 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800928 _set_gpio_direction(bank, offset, 0);
929 spin_unlock_irqrestore(&bank->lock, flags);
930 return 0;
931}
932
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700933static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
934 unsigned debounce)
935{
936 struct gpio_bank *bank;
937 unsigned long flags;
938
939 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800940
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700941 spin_lock_irqsave(&bank->lock, flags);
942 _set_gpio_debounce(bank, offset, debounce);
943 spin_unlock_irqrestore(&bank->lock, flags);
944
945 return 0;
946}
947
David Brownell52e31342008-03-03 12:43:23 -0800948static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
949{
950 struct gpio_bank *bank;
951 unsigned long flags;
952
953 bank = container_of(chip, struct gpio_bank, chip);
954 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700955 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800956 spin_unlock_irqrestore(&bank->lock, flags);
957}
958
959/*---------------------------------------------------------------------*/
960
Tony Lindgren9a748052010-12-07 16:26:56 -0800961static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700962{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700963 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700964 u32 rev;
965
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700966 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700967 return;
968
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700969 rev = __raw_readw(bank->base + bank->regs->revision);
970 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700971 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700972
973 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700974}
975
David Brownell8ba55c52008-02-26 11:10:50 -0800976/* This lock class tells lockdep that GPIO irqs are in a different
977 * category than their parents, so it won't report false recursion.
978 */
979static struct lock_class_key gpio_lock_class;
980
Charulatha V03e128c2011-05-05 19:58:01 +0530981static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800982{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530983 void __iomem *base = bank->base;
984 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800985
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530986 if (bank->width == 16)
987 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800988
Charulatha Vd0d665a2011-08-31 00:02:21 +0530989 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530990 __raw_writel(l, bank->base + bank->regs->irqenable);
991 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800992 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530993
994 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530995 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530996 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530997 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530998
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530999 /* Save OE default value (0xffffffff) in the context */
1000 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301001 /* Initialize interface clk ungated, module enabled */
1002 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301003 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +05301004
1005 bank->dbck = clk_get(bank->dev, "dbclk");
1006 if (IS_ERR(bank->dbck))
1007 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001008}
1009
Bill Pemberton38363092012-11-19 13:22:34 -05001010static void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001011omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
1012 unsigned int num)
1013{
1014 struct irq_chip_generic *gc;
1015 struct irq_chip_type *ct;
1016
1017 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
1018 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -07001019 if (!gc) {
1020 dev_err(bank->dev, "Memory alloc failed for gc\n");
1021 return;
1022 }
1023
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001024 ct = gc->chip_types;
1025
1026 /* NOTE: No ack required, reading IRQ status clears it. */
1027 ct->chip.irq_mask = irq_gc_mask_set_bit;
1028 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1029 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301030
1031 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001032 ct->chip.irq_set_wake = gpio_wake_enable,
1033
1034 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1035 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1036 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1037}
1038
Bill Pemberton38363092012-11-19 13:22:34 -05001039static void omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001040{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001041 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001042 static int gpio;
1043
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001044 /*
1045 * REVISIT eventually switch from OMAP-specific gpio structs
1046 * over to the generic ones
1047 */
1048 bank->chip.request = omap_gpio_request;
1049 bank->chip.free = omap_gpio_free;
1050 bank->chip.direction_input = gpio_input;
1051 bank->chip.get = gpio_get;
1052 bank->chip.direction_output = gpio_output;
1053 bank->chip.set_debounce = gpio_debounce;
1054 bank->chip.set = gpio_set;
Jon Hunterede4d7a2013-03-01 11:22:47 -06001055 bank->chip.to_irq = omap_gpio_to_irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301056 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001057 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301058 if (bank->regs->wkup_en)
1059 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001060 bank->chip.base = OMAP_MPUIO(0);
1061 } else {
1062 bank->chip.label = "gpio";
1063 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001064 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001065 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001066 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001067
1068 gpiochip_add(&bank->chip);
1069
Jon Hunterede4d7a2013-03-01 11:22:47 -06001070 for (j = 0; j < bank->width; j++) {
1071 int irq = irq_create_mapping(bank->domain, j);
1072 irq_set_lockdep_class(irq, &gpio_lock_class);
1073 irq_set_chip_data(irq, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301074 if (bank->is_mpuio) {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001075 omap_mpuio_alloc_gc(bank, irq, bank->width);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001076 } else {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001077 irq_set_chip_and_handler(irq, &gpio_irq_chip,
1078 handle_simple_irq);
1079 set_irq_flags(irq, IRQF_VALID);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001080 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001081 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001082 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1083 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001084}
1085
Benoit Cousson384ebe12011-08-16 11:53:02 +02001086static const struct of_device_id omap_gpio_match[];
1087
Bill Pemberton38363092012-11-19 13:22:34 -05001088static int omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001089{
Benoit Cousson862ff642012-02-01 15:58:56 +01001090 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001091 struct device_node *node = dev->of_node;
1092 const struct of_device_id *match;
Uwe Kleine-Königf6817a22012-05-21 21:57:39 +02001093 const struct omap_gpio_platform_data *pdata;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001094 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001095 struct gpio_bank *bank;
1096
Benoit Cousson384ebe12011-08-16 11:53:02 +02001097 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1098
1099 pdata = match ? match->data : dev->platform_data;
1100 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001101 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001102
Tobias Klauser086d5852012-10-05 11:37:38 +02001103 bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301104 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001105 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001106 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301107 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001108
1109 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1110 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001111 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001112 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001113 }
1114
1115 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001116 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001117 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001118 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001119 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301120 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301121 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001122 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001123#ifdef CONFIG_OF_GPIO
1124 bank->chip.of_node = of_node_get(node);
1125#endif
Jon Huntera2797be2013-04-04 15:16:15 -05001126 if (node) {
1127 if (!of_property_read_bool(node, "ti,gpio-always-on"))
1128 bank->loses_context = true;
1129 } else {
1130 bank->loses_context = pdata->loses_context;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001131 }
1132
Benoit Cousson384ebe12011-08-16 11:53:02 +02001133
Jon Hunterede4d7a2013-03-01 11:22:47 -06001134 bank->domain = irq_domain_add_linear(node, bank->width,
1135 &irq_domain_simple_ops, NULL);
1136 if (!bank->domain)
Benoit Cousson384ebe12011-08-16 11:53:02 +02001137 return -ENODEV;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001138
1139 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1140 bank->set_dataout = _set_gpio_dataout_reg;
1141 else
1142 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001143
1144 spin_lock_init(&bank->lock);
1145
1146 /* Static mapping, never released */
1147 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1148 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001149 dev_err(dev, "Invalid mem resource\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001150 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001151 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001152 }
1153
Benoit Cousson96751fc2012-02-01 16:01:39 +01001154 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1155 pdev->name)) {
1156 dev_err(dev, "Region already claimed\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001157 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001158 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");
Jon Hunter879fe322013-04-04 15:16:12 -05001164 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001165 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001166 }
1167
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301168 platform_set_drvdata(pdev, bank);
1169
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001170 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301171 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001172 pm_runtime_get_sync(bank->dev);
1173
Charulatha Vd0d665a2011-08-31 00:02:21 +05301174 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301175 mpuio_init(bank);
1176
Charulatha V03e128c2011-05-05 19:58:01 +05301177 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001178 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001179 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001180
Jon Hunter7b86cef2012-07-03 11:05:50 -05001181 if (bank->loses_context)
1182 bank->get_context_loss_count = pdata->get_context_loss_count;
1183
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301184 pm_runtime_put(bank->dev);
1185
Charulatha V03e128c2011-05-05 19:58:01 +05301186 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001187
Jon Hunter879fe322013-04-04 15:16:12 -05001188 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001189}
1190
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301191#ifdef CONFIG_ARCH_OMAP2PLUS
1192
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301193#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301194static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001195
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301196static int omap_gpio_runtime_suspend(struct device *dev)
1197{
1198 struct platform_device *pdev = to_platform_device(dev);
1199 struct gpio_bank *bank = platform_get_drvdata(pdev);
1200 u32 l1 = 0, l2 = 0;
1201 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001202 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301203
1204 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001205
1206 /*
1207 * Only edges can generate a wakeup event to the PRCM.
1208 *
1209 * Therefore, ensure any wake-up capable GPIOs have
1210 * edge-detection enabled before going idle to ensure a wakeup
1211 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1212 * NDA TRM 25.5.3.1)
1213 *
1214 * The normal values will be restored upon ->runtime_resume()
1215 * by writing back the values saved in bank->context.
1216 */
1217 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1218 if (wake_low)
1219 __raw_writel(wake_low | bank->context.fallingdetect,
1220 bank->base + bank->regs->fallingdetect);
1221 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1222 if (wake_hi)
1223 __raw_writel(wake_hi | bank->context.risingdetect,
1224 bank->base + bank->regs->risingdetect);
1225
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001226 if (!bank->enabled_non_wakeup_gpios)
1227 goto update_gpio_context_count;
1228
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301229 if (bank->power_mode != OFF_MODE) {
1230 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301231 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301232 }
1233 /*
1234 * If going to OFF, remove triggering for all
1235 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1236 * generated. See OMAP2420 Errata item 1.101.
1237 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301238 bank->saved_datain = __raw_readl(bank->base +
1239 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301240 l1 = bank->context.fallingdetect;
1241 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301242
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301243 l1 &= ~bank->enabled_non_wakeup_gpios;
1244 l2 &= ~bank->enabled_non_wakeup_gpios;
1245
1246 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1247 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1248
1249 bank->workaround_enabled = true;
1250
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301251update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301252 if (bank->get_context_loss_count)
1253 bank->context_loss_count =
1254 bank->get_context_loss_count(bank->dev);
1255
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301256 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301257 spin_unlock_irqrestore(&bank->lock, flags);
1258
1259 return 0;
1260}
1261
1262static int omap_gpio_runtime_resume(struct device *dev)
1263{
1264 struct platform_device *pdev = to_platform_device(dev);
1265 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301266 u32 l = 0, gen, gen0, gen1;
1267 unsigned long flags;
Jon Huntera2797be2013-04-04 15:16:15 -05001268 int c;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301269
1270 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301271 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001272
1273 /*
1274 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1275 * GPIOs were set to edge trigger also in order to be able to
1276 * generate a PRCM wakeup. Here we restore the
1277 * pre-runtime_suspend() values for edge triggering.
1278 */
1279 __raw_writel(bank->context.fallingdetect,
1280 bank->base + bank->regs->fallingdetect);
1281 __raw_writel(bank->context.risingdetect,
1282 bank->base + bank->regs->risingdetect);
1283
Jon Huntera2797be2013-04-04 15:16:15 -05001284 if (bank->loses_context) {
1285 if (!bank->get_context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301286 omap_gpio_restore_context(bank);
1287 } else {
Jon Huntera2797be2013-04-04 15:16:15 -05001288 c = bank->get_context_loss_count(bank->dev);
1289 if (c != bank->context_loss_count) {
1290 omap_gpio_restore_context(bank);
1291 } else {
1292 spin_unlock_irqrestore(&bank->lock, flags);
1293 return 0;
1294 }
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301295 }
1296 }
1297
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301298 if (!bank->workaround_enabled) {
1299 spin_unlock_irqrestore(&bank->lock, flags);
1300 return 0;
1301 }
1302
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301303 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);