blob: e6efd77668f0fb5ccab3a917629b07134885ee73 [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>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010028
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010030#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/irqs.h>
Russell King1bc857f2011-07-26 10:54:55 +010032#include <asm/gpio.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010033#include <asm/mach/irq.h>
34
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053035#define OFF_MODE 1
36
Charulatha V03e128c2011-05-05 19:58:01 +053037static LIST_HEAD(omap_gpio_list);
38
Charulatha V6d62e212011-04-18 15:06:51 +000039struct gpio_regs {
40 u32 irqenable1;
41 u32 irqenable2;
42 u32 wake_en;
43 u32 ctrl;
44 u32 oe;
45 u32 leveldetect0;
46 u32 leveldetect1;
47 u32 risingdetect;
48 u32 fallingdetect;
49 u32 dataout;
Nishanth Menonae547352011-09-09 19:08:58 +053050 u32 debounce;
51 u32 debounce_en;
Charulatha V6d62e212011-04-18 15:06:51 +000052};
53
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010054struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053055 struct list_head node;
Tony Lindgren92105bb2005-09-07 17:20:26 +010056 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010057 u16 irq;
Benoit Cousson384ebe12011-08-16 11:53:02 +020058 int irq_base;
59 struct irq_domain *domain;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080060 u32 non_wakeup_gpios;
61 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000062 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080063 u32 saved_datain;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080064 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080065 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010066 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080067 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080068 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080069 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080070 u32 dbck_enable_mask;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053071 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080072 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053073 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080074 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053075 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080076 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070077 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053078 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053079 int power_mode;
80 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070081
82 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053083 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070084
85 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010086};
87
Kevin Hilman129fd222011-04-22 07:59:07 -070088#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
89#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053090#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010091
Benoit Cousson25db7112012-02-23 21:50:10 +010092static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
93{
94 return gpio_irq - bank->irq_base + bank->chip.base;
95}
96
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010097static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
98{
Tony Lindgren92105bb2005-09-07 17:20:26 +010099 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100100 u32 l;
101
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700102 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100103 l = __raw_readl(reg);
104 if (is_input)
105 l |= 1 << gpio;
106 else
107 l &= ~(1 << gpio);
108 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530109 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100110}
111
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700112
113/* set data out value using dedicate set/clear register */
114static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100115{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100116 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700117 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100118
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530119 if (enable) {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700120 reg += bank->regs->set_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530121 bank->context.dataout |= l;
122 } else {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700123 reg += bank->regs->clr_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530124 bank->context.dataout &= ~l;
125 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700126
127 __raw_writel(l, reg);
128}
129
130/* set data out value using mask register */
131static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
132{
133 void __iomem *reg = bank->base + bank->regs->dataout;
134 u32 gpio_bit = GPIO_BIT(bank, gpio);
135 u32 l;
136
137 l = __raw_readl(reg);
138 if (enable)
139 l |= gpio_bit;
140 else
141 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100142 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530143 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100144}
145
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530146static int _get_gpio_datain(struct gpio_bank *bank, int offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100147{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700148 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100149
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530150 return (__raw_readl(reg) & (1 << offset)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100151}
152
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530153static int _get_gpio_dataout(struct gpio_bank *bank, int offset)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300154{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700155 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300156
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530157 return (__raw_readl(reg) & (1 << offset)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300158}
159
Kevin Hilmanece95282011-07-12 08:18:15 -0700160static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
161{
162 int l = __raw_readl(base + reg);
163
Benoit Cousson862ff642012-02-01 15:58:56 +0100164 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700165 l |= mask;
166 else
167 l &= ~mask;
168
169 __raw_writel(l, base + reg);
170}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100171
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530172static inline void _gpio_dbck_enable(struct gpio_bank *bank)
173{
174 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
175 clk_enable(bank->dbck);
176 bank->dbck_enabled = true;
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300177
178 __raw_writel(bank->dbck_enable_mask,
179 bank->base + bank->regs->debounce_en);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530180 }
181}
182
183static inline void _gpio_dbck_disable(struct gpio_bank *bank)
184{
185 if (bank->dbck_enable_mask && bank->dbck_enabled) {
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300186 /*
187 * Disable debounce before cutting it's clock. If debounce is
188 * enabled but the clock is not, GPIO module seems to be unable
189 * to detect events and generate interrupts at least on OMAP3.
190 */
191 __raw_writel(0, bank->base + bank->regs->debounce_en);
192
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530193 clk_disable(bank->dbck);
194 bank->dbck_enabled = false;
195 }
196}
197
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700198/**
199 * _set_gpio_debounce - low level gpio debounce time
200 * @bank: the gpio bank we're acting upon
201 * @gpio: the gpio number on this @gpio
202 * @debounce: debounce time to use
203 *
204 * OMAP's debounce time is in 31us steps so we need
205 * to convert and round up to the closest unit.
206 */
207static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
208 unsigned debounce)
209{
Kevin Hilman9942da02011-04-22 12:02:05 -0700210 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700211 u32 val;
212 u32 l;
213
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800214 if (!bank->dbck_flag)
215 return;
216
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700217 if (debounce < 32)
218 debounce = 0x01;
219 else if (debounce > 7936)
220 debounce = 0xff;
221 else
222 debounce = (debounce / 0x1f) - 1;
223
Kevin Hilman129fd222011-04-22 07:59:07 -0700224 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530226 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700227 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700228 __raw_writel(debounce, reg);
229
Kevin Hilman9942da02011-04-22 12:02:05 -0700230 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700231 val = __raw_readl(reg);
232
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530233 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700234 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530235 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700236 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300237 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700238
239 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530240 clk_disable(bank->dbck);
241 /*
242 * Enable debounce clock per module.
243 * This call is mandatory because in omap_gpio_request() when
244 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
245 * runtime callbck fails to turn on dbck because dbck_enable_mask
246 * used within _gpio_dbck_enable() is still not initialized at
247 * that point. Therefore we have to enable dbck here.
248 */
249 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530250 if (bank->dbck_enable_mask) {
251 bank->context.debounce = debounce;
252 bank->context.debounce_en = val;
253 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700254}
255
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530256static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530257 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100258{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800259 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100260 u32 gpio_bit = 1 << gpio;
261
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530262 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
263 trigger & IRQ_TYPE_LEVEL_LOW);
264 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
265 trigger & IRQ_TYPE_LEVEL_HIGH);
266 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
267 trigger & IRQ_TYPE_EDGE_RISING);
268 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
269 trigger & IRQ_TYPE_EDGE_FALLING);
270
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530271 bank->context.leveldetect0 =
272 __raw_readl(bank->base + bank->regs->leveldetect0);
273 bank->context.leveldetect1 =
274 __raw_readl(bank->base + bank->regs->leveldetect1);
275 bank->context.risingdetect =
276 __raw_readl(bank->base + bank->regs->risingdetect);
277 bank->context.fallingdetect =
278 __raw_readl(bank->base + bank->regs->fallingdetect);
279
280 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530281 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530282 bank->context.wake_en =
283 __raw_readl(bank->base + bank->regs->wkup_en);
284 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530285
Ambresh K55b220c2011-06-15 13:40:45 -0700286 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530287 if (!bank->regs->irqctrl) {
288 /* On omap24xx proceed only when valid GPIO bit is set */
289 if (bank->non_wakeup_gpios) {
290 if (!(bank->non_wakeup_gpios & gpio_bit))
291 goto exit;
292 }
293
Chunqiu Wang699117a62009-06-24 17:13:39 +0000294 /*
295 * Log the edge gpio and manually trigger the IRQ
296 * after resume if the input level changes
297 * to avoid irq lost during PER RET/OFF mode
298 * Applies for omap2 non-wakeup gpio and all omap3 gpios
299 */
300 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800301 bank->enabled_non_wakeup_gpios |= gpio_bit;
302 else
303 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
304 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700305
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530306exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530307 bank->level_mask =
308 __raw_readl(bank->base + bank->regs->leveldetect0) |
309 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100310}
311
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800312#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800313/*
314 * This only applies to chips that can't do both rising and falling edge
315 * detection at once. For all other chips, this function is a noop.
316 */
317static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
318{
319 void __iomem *reg = bank->base;
320 u32 l = 0;
321
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530322 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800323 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530324
325 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800326
327 l = __raw_readl(reg);
328 if ((l >> gpio) & 1)
329 l &= ~(1 << gpio);
330 else
331 l |= 1 << gpio;
332
333 __raw_writel(l, reg);
334}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530335#else
336static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800337#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800338
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530339static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
340 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100341{
342 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530343 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100344 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100345
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530346 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
347 set_gpio_trigger(bank, gpio, trigger);
348 } else if (bank->regs->irqctrl) {
349 reg += bank->regs->irqctrl;
350
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100351 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000352 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800353 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100354 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100355 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100356 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100357 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100358 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530359 return -EINVAL;
360
361 __raw_writel(l, reg);
362 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100363 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530364 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100365 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530366 reg += bank->regs->edgectrl1;
367
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100368 gpio &= 0x07;
369 l = __raw_readl(reg);
370 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100371 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100372 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100373 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100374 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530375
376 /* Enable wake-up during idle for dynamic tick */
377 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530378 bank->context.wake_en =
379 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530380 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100381 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100382 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100383}
384
Lennert Buytenheke9191022010-11-29 11:17:17 +0100385static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100386{
Benoit Cousson25db7112012-02-23 21:50:10 +0100387 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100388 unsigned gpio;
389 int retval;
David Brownella6472532008-03-03 04:33:30 -0800390 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100391
Lennert Buytenheke9191022010-11-29 11:17:17 +0100392 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
393 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100394 else
Benoit Cousson25db7112012-02-23 21:50:10 +0100395 gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100396
David Brownelle5c56ed2006-12-06 17:13:59 -0800397 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100398 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800399
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530400 if (!bank->regs->leveldetect0 &&
401 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100402 return -EINVAL;
403
David Brownella6472532008-03-03 04:33:30 -0800404 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700405 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800406 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800407
408 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100409 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800410 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100411 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800412
Tony Lindgren92105bb2005-09-07 17:20:26 +0100413 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100414}
415
416static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
417{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100418 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100419
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700420 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100421 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300422
423 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700424 if (bank->regs->irqstatus2) {
425 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700426 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700427 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700428
429 /* Flush posted write for the irq status to avoid spurious interrupts */
430 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100431}
432
433static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
434{
Kevin Hilman129fd222011-04-22 07:59:07 -0700435 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100436}
437
Imre Deakea6dedd2006-06-26 16:16:00 -0700438static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
439{
440 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700441 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700442 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700443
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700444 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700445 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700446 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700447 l = ~l;
448 l &= mask;
449 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700450}
451
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700452static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100453{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100454 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100455 u32 l;
456
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700457 if (bank->regs->set_irqenable) {
458 reg += bank->regs->set_irqenable;
459 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530460 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700461 } else {
462 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100463 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700464 if (bank->regs->irqenable_inv)
465 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100466 else
467 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530468 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100469 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700470
471 __raw_writel(l, reg);
472}
473
474static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
475{
476 void __iomem *reg = bank->base;
477 u32 l;
478
479 if (bank->regs->clr_irqenable) {
480 reg += bank->regs->clr_irqenable;
481 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530482 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700483 } else {
484 reg += bank->regs->irqenable;
485 l = __raw_readl(reg);
486 if (bank->regs->irqenable_inv)
487 l |= gpio_mask;
488 else
489 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530490 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700491 }
492
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100493 __raw_writel(l, reg);
494}
495
496static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
497{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530498 if (enable)
499 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
500 else
501 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100502}
503
Tony Lindgren92105bb2005-09-07 17:20:26 +0100504/*
505 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
506 * 1510 does not seem to have a wake-up register. If JTAG is connected
507 * to the target, system will wake up always on GPIO events. While
508 * system is running all registered GPIO interrupts need to have wake-up
509 * enabled. When system is suspended, only selected GPIO interrupts need
510 * to have wake-up enabled.
511 */
512static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
513{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700514 u32 gpio_bit = GPIO_BIT(bank, gpio);
515 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800516
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700517 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100518 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700519 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100520 return -EINVAL;
521 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700522
523 spin_lock_irqsave(&bank->lock, flags);
524 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530525 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700526 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530527 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700528
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530529 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700530 spin_unlock_irqrestore(&bank->lock, flags);
531
532 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100533}
534
Tony Lindgren4196dd62006-09-25 12:41:38 +0300535static void _reset_gpio(struct gpio_bank *bank, int gpio)
536{
Kevin Hilman129fd222011-04-22 07:59:07 -0700537 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300538 _set_gpio_irqenable(bank, gpio, 0);
539 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700540 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300541}
542
Tony Lindgren92105bb2005-09-07 17:20:26 +0100543/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100544static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100545{
Benoit Cousson25db7112012-02-23 21:50:10 +0100546 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
547 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100548
Benoit Cousson25db7112012-02-23 21:50:10 +0100549 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100550}
551
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800552static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100553{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800554 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800555 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100556
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530557 /*
558 * If this is the first gpio_request for the bank,
559 * enable the bank module.
560 */
561 if (!bank->mod_usage)
562 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100563
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530564 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300565 /* Set trigger to none. You need to enable the desired trigger with
566 * request_irq() or set_irq_type().
567 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800568 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100569
Charulatha Vfad96ea2011-05-25 11:23:50 +0530570 if (bank->regs->pinctrl) {
571 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100572
Tony Lindgren92105bb2005-09-07 17:20:26 +0100573 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800574 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100575 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530576
Charulatha Vc8eef652011-05-02 15:21:42 +0530577 if (bank->regs->ctrl && !bank->mod_usage) {
578 void __iomem *reg = bank->base + bank->regs->ctrl;
579 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700580
Charulatha Vc8eef652011-05-02 15:21:42 +0530581 ctrl = __raw_readl(reg);
582 /* Module is enabled, clocks are not gated */
583 ctrl &= ~GPIO_MOD_CTRL_BIT;
584 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530585 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800586 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530587
588 bank->mod_usage |= 1 << offset;
589
David Brownella6472532008-03-03 04:33:30 -0800590 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100591
592 return 0;
593}
594
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800595static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100596{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800597 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530598 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800599 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100600
David Brownella6472532008-03-03 04:33:30 -0800601 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530602
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530603 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100604 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530605 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530606 bank->context.wake_en =
607 __raw_readl(bank->base + bank->regs->wkup_en);
608 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530609
Charulatha Vc8eef652011-05-02 15:21:42 +0530610 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700611
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;
615
616 ctrl = __raw_readl(reg);
617 /* Module is disabled, clocks are 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
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800623 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800624 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530625
626 /*
627 * If this is the last gpio to be freed in the bank,
628 * disable the bank module.
629 */
630 if (!bank->mod_usage)
631 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100632}
633
634/*
635 * We need to unmask the GPIO bank interrupt as soon as possible to
636 * avoid missing GPIO interrupts for other lines in the bank.
637 * Then we need to mask-read-clear-unmask the triggered GPIO lines
638 * in the bank to avoid missing nested interrupts for a GPIO line.
639 * If we wait to unmask individual GPIO lines in the bank after the
640 * line's interrupt handler has been run, we may miss some nested
641 * interrupts.
642 */
Russell King10dd5ce2006-11-23 11:41:32 +0000643static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100644{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100645 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100646 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800647 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100648 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700649 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000650 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100651
Will Deaconee144182011-02-21 13:46:08 +0000652 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100653
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100654 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700655 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530656 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800657
658 if (WARN_ON(!isr_reg))
659 goto exit;
660
Tony Lindgren92105bb2005-09-07 17:20:26 +0100661 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100662 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700663 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100664
Imre Deakea6dedd2006-06-26 16:16:00 -0700665 enabled = _get_gpio_irqbank_mask(bank);
666 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100667
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530668 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800669 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100670
671 /* clear edge sensitive interrupts before handler(s) are
672 called so that we don't miss any interrupt occurred while
673 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700674 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100675 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700676 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100677
678 /* if there is only edge sensitive GPIO pin interrupts
679 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700680 if (!level_mask && !unmasked) {
681 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000682 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700683 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100684
Tony Lindgren92105bb2005-09-07 17:20:26 +0100685 if (!isr)
686 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100687
Benoit Cousson384ebe12011-08-16 11:53:02 +0200688 gpio_irq = bank->irq_base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100689 for (; isr != 0; isr >>= 1, gpio_irq++) {
Benoit Cousson25db7112012-02-23 21:50:10 +0100690 int gpio = irq_to_gpio(bank, gpio_irq);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800691
Tony Lindgren92105bb2005-09-07 17:20:26 +0100692 if (!(isr & 1))
693 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200694
Benoit Cousson25db7112012-02-23 21:50:10 +0100695 gpio_index = GPIO_INDEX(bank, gpio);
696
Cory Maccarrone4318f362010-01-08 10:29:04 -0800697 /*
698 * Some chips can't respond to both rising and falling
699 * at the same time. If this irq was requested with
700 * both flags, we need to flip the ICR data for the IRQ
701 * to respond to the IRQ for the opposite direction.
702 * This will be indicated in the bank toggle_mask.
703 */
704 if (bank->toggle_mask & (1 << gpio_index))
705 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800706
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100707 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100708 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000709 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700710 /* if bank has any level sensitive GPIO pin interrupt
711 configured, we must unmask the bank interrupt only after
712 handler(s) are executed in order to avoid spurious bank
713 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800714exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700715 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000716 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530717 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100718}
719
Lennert Buytenheke9191022010-11-29 11:17:17 +0100720static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300721{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100722 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100723 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700724 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300725
Colin Cross85ec7b92011-06-06 13:38:18 -0700726 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300727 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700728 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300729}
730
Lennert Buytenheke9191022010-11-29 11:17:17 +0100731static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100732{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100733 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100734 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100735
736 _clear_gpio_irqstatus(bank, gpio);
737}
738
Lennert Buytenheke9191022010-11-29 11:17:17 +0100739static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100740{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100741 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100742 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700743 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100744
Colin Cross85ec7b92011-06-06 13:38:18 -0700745 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100746 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700747 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700748 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100749}
750
Lennert Buytenheke9191022010-11-29 11:17:17 +0100751static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100752{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100753 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100754 unsigned int gpio = irq_to_gpio(bank, d->irq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700755 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100756 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700757 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700758
Colin Cross85ec7b92011-06-06 13:38:18 -0700759 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700760 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700761 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800762
763 /* For level-triggered GPIOs, the clearing must be done after
764 * the HW source is cleared, thus after the handler has run */
765 if (bank->level_mask & irq_mask) {
766 _set_gpio_irqenable(bank, gpio, 0);
767 _clear_gpio_irqstatus(bank, gpio);
768 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100769
Kevin Hilman4de8c752008-01-16 21:56:14 -0800770 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700771 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100772}
773
David Brownelle5c56ed2006-12-06 17:13:59 -0800774static struct irq_chip gpio_irq_chip = {
775 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100776 .irq_shutdown = gpio_irq_shutdown,
777 .irq_ack = gpio_ack_irq,
778 .irq_mask = gpio_mask_irq,
779 .irq_unmask = gpio_unmask_irq,
780 .irq_set_type = gpio_irq_type,
781 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800782};
783
784/*---------------------------------------------------------------------*/
785
Magnus Damm79ee0312009-07-08 13:22:04 +0200786static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800787{
Magnus Damm79ee0312009-07-08 13:22:04 +0200788 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800789 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800790 void __iomem *mask_reg = bank->base +
791 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800792 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800793
David Brownella6472532008-03-03 04:33:30 -0800794 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530795 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800796 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800797
798 return 0;
799}
800
Magnus Damm79ee0312009-07-08 13:22:04 +0200801static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800802{
Magnus Damm79ee0312009-07-08 13:22:04 +0200803 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800804 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800805 void __iomem *mask_reg = bank->base +
806 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800807 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800808
David Brownella6472532008-03-03 04:33:30 -0800809 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530810 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800811 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800812
813 return 0;
814}
815
Alexey Dobriyan47145212009-12-14 18:00:08 -0800816static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200817 .suspend_noirq = omap_mpuio_suspend_noirq,
818 .resume_noirq = omap_mpuio_resume_noirq,
819};
820
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200821/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800822static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800823 .driver = {
824 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200825 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800826 },
827};
828
829static struct platform_device omap_mpuio_device = {
830 .name = "mpuio",
831 .id = -1,
832 .dev = {
833 .driver = &omap_mpuio_driver.driver,
834 }
835 /* could list the /proc/iomem resources */
836};
837
Charulatha V03e128c2011-05-05 19:58:01 +0530838static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800839{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800840 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700841
David Brownell11a78b72006-12-06 17:14:11 -0800842 if (platform_driver_register(&omap_mpuio_driver) == 0)
843 (void) platform_device_register(&omap_mpuio_device);
844}
845
David Brownelle5c56ed2006-12-06 17:13:59 -0800846/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100847
David Brownell52e31342008-03-03 12:43:23 -0800848static int gpio_input(struct gpio_chip *chip, unsigned offset)
849{
850 struct gpio_bank *bank;
851 unsigned long flags;
852
853 bank = container_of(chip, struct gpio_bank, chip);
854 spin_lock_irqsave(&bank->lock, flags);
855 _set_gpio_direction(bank, offset, 1);
856 spin_unlock_irqrestore(&bank->lock, flags);
857 return 0;
858}
859
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300860static int gpio_is_input(struct gpio_bank *bank, int mask)
861{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700862 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300863
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300864 return __raw_readl(reg) & mask;
865}
866
David Brownell52e31342008-03-03 12:43:23 -0800867static int gpio_get(struct gpio_chip *chip, unsigned offset)
868{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300869 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300870 u32 mask;
871
Charulatha Va8be8da2011-04-22 16:38:16 +0530872 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530873 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300874
875 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530876 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300877 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530878 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800879}
880
881static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
882{
883 struct gpio_bank *bank;
884 unsigned long flags;
885
886 bank = container_of(chip, struct gpio_bank, chip);
887 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700888 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800889 _set_gpio_direction(bank, offset, 0);
890 spin_unlock_irqrestore(&bank->lock, flags);
891 return 0;
892}
893
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700894static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
895 unsigned debounce)
896{
897 struct gpio_bank *bank;
898 unsigned long flags;
899
900 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800901
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700902 spin_lock_irqsave(&bank->lock, flags);
903 _set_gpio_debounce(bank, offset, debounce);
904 spin_unlock_irqrestore(&bank->lock, flags);
905
906 return 0;
907}
908
David Brownell52e31342008-03-03 12:43:23 -0800909static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
910{
911 struct gpio_bank *bank;
912 unsigned long flags;
913
914 bank = container_of(chip, struct gpio_bank, chip);
915 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700916 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800917 spin_unlock_irqrestore(&bank->lock, flags);
918}
919
David Brownella007b702008-12-10 17:35:25 -0800920static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
921{
922 struct gpio_bank *bank;
923
924 bank = container_of(chip, struct gpio_bank, chip);
Benoit Cousson384ebe12011-08-16 11:53:02 +0200925 return bank->irq_base + offset;
David Brownella007b702008-12-10 17:35:25 -0800926}
927
David Brownell52e31342008-03-03 12:43:23 -0800928/*---------------------------------------------------------------------*/
929
Tony Lindgren9a748052010-12-07 16:26:56 -0800930static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700931{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700932 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700933 u32 rev;
934
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700935 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700936 return;
937
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700938 rev = __raw_readw(bank->base + bank->regs->revision);
939 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700940 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700941
942 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700943}
944
David Brownell8ba55c52008-02-26 11:10:50 -0800945/* This lock class tells lockdep that GPIO irqs are in a different
946 * category than their parents, so it won't report false recursion.
947 */
948static struct lock_class_key gpio_lock_class;
949
Charulatha V03e128c2011-05-05 19:58:01 +0530950static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800951{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530952 void __iomem *base = bank->base;
953 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800954
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530955 if (bank->width == 16)
956 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800957
Charulatha Vd0d665a2011-08-31 00:02:21 +0530958 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530959 __raw_writel(l, bank->base + bank->regs->irqenable);
960 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800961 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530962
963 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530964 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530965 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530966 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530967
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530968 /* Save OE default value (0xffffffff) in the context */
969 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530970 /* Initialize interface clk ungated, module enabled */
971 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530972 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +0530973
974 bank->dbck = clk_get(bank->dev, "dbclk");
975 if (IS_ERR(bank->dbck))
976 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800977}
978
Tony Lindgren8805f412012-03-05 15:32:38 -0800979static __devinit void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700980omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
981 unsigned int num)
982{
983 struct irq_chip_generic *gc;
984 struct irq_chip_type *ct;
985
986 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
987 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700988 if (!gc) {
989 dev_err(bank->dev, "Memory alloc failed for gc\n");
990 return;
991 }
992
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700993 ct = gc->chip_types;
994
995 /* NOTE: No ack required, reading IRQ status clears it. */
996 ct->chip.irq_mask = irq_gc_mask_set_bit;
997 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
998 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530999
1000 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001001 ct->chip.irq_set_wake = gpio_wake_enable,
1002
1003 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1004 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1005 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1006}
1007
Russell Kingd52b31d2011-05-27 13:56:12 -07001008static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001009{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001010 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001011 static int gpio;
1012
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001013 /*
1014 * REVISIT eventually switch from OMAP-specific gpio structs
1015 * over to the generic ones
1016 */
1017 bank->chip.request = omap_gpio_request;
1018 bank->chip.free = omap_gpio_free;
1019 bank->chip.direction_input = gpio_input;
1020 bank->chip.get = gpio_get;
1021 bank->chip.direction_output = gpio_output;
1022 bank->chip.set_debounce = gpio_debounce;
1023 bank->chip.set = gpio_set;
1024 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301025 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001026 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301027 if (bank->regs->wkup_en)
1028 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001029 bank->chip.base = OMAP_MPUIO(0);
1030 } else {
1031 bank->chip.label = "gpio";
1032 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001033 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001034 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001035 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001036
1037 gpiochip_add(&bank->chip);
1038
Benoit Cousson384ebe12011-08-16 11:53:02 +02001039 for (j = bank->irq_base; j < bank->irq_base + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001040 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001041 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301042 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001043 omap_mpuio_alloc_gc(bank, j, bank->width);
1044 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001045 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001046 irq_set_handler(j, handle_simple_irq);
1047 set_irq_flags(j, IRQF_VALID);
1048 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001049 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001050 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1051 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001052}
1053
Benoit Cousson384ebe12011-08-16 11:53:02 +02001054static const struct of_device_id omap_gpio_match[];
1055
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001056static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001057{
Benoit Cousson862ff642012-02-01 15:58:56 +01001058 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001059 struct device_node *node = dev->of_node;
1060 const struct of_device_id *match;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001061 struct omap_gpio_platform_data *pdata;
1062 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001063 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301064 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001065
Benoit Cousson384ebe12011-08-16 11:53:02 +02001066 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1067
1068 pdata = match ? match->data : dev->platform_data;
1069 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001070 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001071
Benoit Cousson96751fc2012-02-01 16:01:39 +01001072 bank = devm_kzalloc(&pdev->dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301073 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001074 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001075 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301076 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001077
1078 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1079 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001080 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001081 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001082 }
1083
1084 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001085 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001086 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001087 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001088 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301089 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301090 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301091 bank->loses_context = pdata->loses_context;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001092 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001093#ifdef CONFIG_OF_GPIO
1094 bank->chip.of_node = of_node_get(node);
1095#endif
1096
1097 bank->irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
1098 if (bank->irq_base < 0) {
1099 dev_err(dev, "Couldn't allocate IRQ numbers\n");
1100 return -ENODEV;
1101 }
1102
1103 bank->domain = irq_domain_add_legacy(node, bank->width, bank->irq_base,
1104 0, &irq_domain_simple_ops, NULL);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001105
1106 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1107 bank->set_dataout = _set_gpio_dataout_reg;
1108 else
1109 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001110
1111 spin_lock_init(&bank->lock);
1112
1113 /* Static mapping, never released */
1114 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1115 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001116 dev_err(dev, "Invalid mem resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001117 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001118 }
1119
Benoit Cousson96751fc2012-02-01 16:01:39 +01001120 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1121 pdev->name)) {
1122 dev_err(dev, "Region already claimed\n");
1123 return -EBUSY;
1124 }
1125
1126 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001127 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001128 dev_err(dev, "Could not ioremap\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001129 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001130 }
1131
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301132 platform_set_drvdata(pdev, bank);
1133
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001134 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301135 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001136 pm_runtime_get_sync(bank->dev);
1137
Charulatha Vd0d665a2011-08-31 00:02:21 +05301138 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301139 mpuio_init(bank);
1140
Charulatha V03e128c2011-05-05 19:58:01 +05301141 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001142 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001143 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001144
Jon Hunter7b86cef2012-07-03 11:05:50 -05001145 if (bank->loses_context)
1146 bank->get_context_loss_count = pdata->get_context_loss_count;
1147
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301148 pm_runtime_put(bank->dev);
1149
Charulatha V03e128c2011-05-05 19:58:01 +05301150 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001151
Charulatha V03e128c2011-05-05 19:58:01 +05301152 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001153}
1154
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301155#ifdef CONFIG_ARCH_OMAP2PLUS
1156
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301157#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301158static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001159
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301160static int omap_gpio_runtime_suspend(struct device *dev)
1161{
1162 struct platform_device *pdev = to_platform_device(dev);
1163 struct gpio_bank *bank = platform_get_drvdata(pdev);
1164 u32 l1 = 0, l2 = 0;
1165 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001166 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301167
1168 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001169
1170 /*
1171 * Only edges can generate a wakeup event to the PRCM.
1172 *
1173 * Therefore, ensure any wake-up capable GPIOs have
1174 * edge-detection enabled before going idle to ensure a wakeup
1175 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1176 * NDA TRM 25.5.3.1)
1177 *
1178 * The normal values will be restored upon ->runtime_resume()
1179 * by writing back the values saved in bank->context.
1180 */
1181 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1182 if (wake_low)
1183 __raw_writel(wake_low | bank->context.fallingdetect,
1184 bank->base + bank->regs->fallingdetect);
1185 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1186 if (wake_hi)
1187 __raw_writel(wake_hi | bank->context.risingdetect,
1188 bank->base + bank->regs->risingdetect);
1189
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001190 if (!bank->enabled_non_wakeup_gpios)
1191 goto update_gpio_context_count;
1192
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301193 if (bank->power_mode != OFF_MODE) {
1194 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301195 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301196 }
1197 /*
1198 * If going to OFF, remove triggering for all
1199 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1200 * generated. See OMAP2420 Errata item 1.101.
1201 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301202 bank->saved_datain = __raw_readl(bank->base +
1203 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301204 l1 = bank->context.fallingdetect;
1205 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301206
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301207 l1 &= ~bank->enabled_non_wakeup_gpios;
1208 l2 &= ~bank->enabled_non_wakeup_gpios;
1209
1210 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1211 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1212
1213 bank->workaround_enabled = true;
1214
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301215update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301216 if (bank->get_context_loss_count)
1217 bank->context_loss_count =
1218 bank->get_context_loss_count(bank->dev);
1219
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301220 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301221 spin_unlock_irqrestore(&bank->lock, flags);
1222
1223 return 0;
1224}
1225
1226static int omap_gpio_runtime_resume(struct device *dev)
1227{
1228 struct platform_device *pdev = to_platform_device(dev);
1229 struct gpio_bank *bank = platform_get_drvdata(pdev);
1230 int context_lost_cnt_after;
1231 u32 l = 0, gen, gen0, gen1;
1232 unsigned long flags;
1233
1234 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301235 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001236
1237 /*
1238 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1239 * GPIOs were set to edge trigger also in order to be able to
1240 * generate a PRCM wakeup. Here we restore the
1241 * pre-runtime_suspend() values for edge triggering.
1242 */
1243 __raw_writel(bank->context.fallingdetect,
1244 bank->base + bank->regs->fallingdetect);
1245 __raw_writel(bank->context.risingdetect,
1246 bank->base + bank->regs->risingdetect);
1247
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301248 if (bank->get_context_loss_count) {
1249 context_lost_cnt_after =
1250 bank->get_context_loss_count(bank->dev);
Kevin Hilman22770de2012-05-17 14:52:56 -07001251 if (context_lost_cnt_after != bank->context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301252 omap_gpio_restore_context(bank);
1253 } else {
1254 spin_unlock_irqrestore(&bank->lock, flags);
1255 return 0;
1256 }
1257 }
1258
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301259 if (!bank->workaround_enabled) {
1260 spin_unlock_irqrestore(&bank->lock, flags);
1261 return 0;
1262 }
1263
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301264 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301265 bank->base + bank->regs->fallingdetect);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301266 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301267 bank->base + bank->regs->risingdetect);
1268 l = __raw_readl(bank->base + bank->regs->datain);
1269
1270 /*
1271 * Check if any of the non-wakeup interrupt GPIOs have changed
1272 * state. If so, generate an IRQ by software. This is
1273 * horribly racy, but it's the best we can do to work around
1274 * this silicon bug.
1275 */
1276 l ^= bank->saved_datain;
1277 l &= bank->enabled_non_wakeup_gpios;
1278
1279 /*
1280 * No need to generate IRQs for the rising edge for gpio IRQs
1281 * configured with falling edge only; and vice versa.
1282 */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301283 gen0 = l & bank->context.fallingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301284 gen0 &= bank->saved_datain;
1285
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301286 gen1 = l & bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301287 gen1 &= ~(bank->saved_datain);
1288
1289 /* FIXME: Consider GPIO IRQs with level detections properly! */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301290 gen = l & (~(bank->context.fallingdetect) &
1291 ~(bank->context.risingdetect));
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301292 /* Consider all GPIO IRQs needed to be updated */
1293 gen |= gen0 | gen1;
1294
1295 if (gen) {
1296 u32 old0, old1;
1297
1298 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1299 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1300
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301301 if (!bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301302 __raw_writel(old0 | gen, bank->base +
1303 bank->regs->leveldetect0);
1304 __raw_writel(old1 | gen, bank->base +
1305 bank->regs->leveldetect1);
1306 }
1307
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301308 if (bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301309 __raw_writel(old0 | l, bank->base +
1310 bank->regs->leveldetect0);
1311 __raw_writel(old1 | l, bank->base +
1312 bank->regs->leveldetect1);
1313 }
1314 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1315 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1316 }
1317
1318 bank->workaround_enabled = false;
1319 spin_unlock_irqrestore(&bank->lock, flags);
1320
1321 return 0;
1322}
1323#endif /* CONFIG_PM_RUNTIME */
1324
1325void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001326{
Charulatha V03e128c2011-05-05 19:58:01 +05301327 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001328
Charulatha V03e128c2011-05-05 19:58:01 +05301329 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301330 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301331 continue;
1332
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301333 bank->power_mode = pwr_mode;
1334
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301335 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001336 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001337}
1338
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001339void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001340{
Charulatha V03e128c2011-05-05 19:58:01 +05301341 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001342
Charulatha V03e128c2011-05-05 19:58:01 +05301343 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301344 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301345 continue;
1346
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301347 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001348 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001349}
1350
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301351#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301352static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301353{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301354 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301355 bank->base + bank->regs->wkup_en);
1356 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301357 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301358 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301359 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301360 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301361 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301362 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301363 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301364 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301365 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1366 __raw_writel(bank->context.dataout,
1367 bank->base + bank->regs->set_dataout);
1368 else
1369 __raw_writel(bank->context.dataout,
1370 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301371 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1372
Nishanth Menonae547352011-09-09 19:08:58 +05301373 if (bank->dbck_enable_mask) {
1374 __raw_writel(bank->context.debounce, bank->base +
1375 bank->regs->debounce);
1376 __raw_writel(bank->context.debounce_en,
1377 bank->base + bank->regs->debounce_en);
1378 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301379
1380 __raw_writel(bank->context.irqenable1,
1381 bank->base + bank->regs->irqenable);
1382 __raw_writel(bank->context.irqenable2,
1383 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301384}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301385#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301386#else
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301387#define omap_gpio_runtime_suspend NULL
1388#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301389#endif
1390
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301391static const struct dev_pm_ops gpio_pm_ops = {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301392 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1393 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301394};
1395
Benoit Cousson384ebe12011-08-16 11:53:02 +02001396#if defined(CONFIG_OF)
1397static struct omap_gpio_reg_offs omap2_gpio_regs = {
1398 .revision = OMAP24XX_GPIO_REVISION,
1399 .direction = OMAP24XX_GPIO_OE,
1400 .datain = OMAP24XX_GPIO_DATAIN,
1401 .dataout = OMAP24XX_GPIO_DATAOUT,
1402 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1403 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1404 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1405 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1406 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1407 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1408 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1409 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1410 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1411 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1412 .ctrl = OMAP24XX_GPIO_CTRL,
1413 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1414 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1415 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1416 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1417 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1418};
1419
1420static struct omap_gpio_reg_offs omap4_gpio_regs = {
1421 .revision = OMAP4_GPIO_REVISION,
1422 .direction = OMAP4_GPIO_OE,
1423 .datain = OMAP4_GPIO_DATAIN,
1424 .dataout = OMAP4_GPIO_DATAOUT,
1425 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1426 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1427 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1428 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1429 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1430 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1431 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1432 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1433 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1434 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1435 .ctrl = OMAP4_GPIO_CTRL,
1436 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1437 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1438 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1439 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1440 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1441};
1442
1443static struct omap_gpio_platform_data omap2_pdata = {
1444 .regs = &omap2_gpio_regs,
1445 .bank_width = 32,
1446 .dbck_flag = false,
1447};
1448
1449static struct omap_gpio_platform_data omap3_pdata = {
1450 .regs = &omap2_gpio_regs,
1451 .bank_width = 32,
1452 .dbck_flag = true,
1453};
1454
1455static struct omap_gpio_platform_data omap4_pdata = {
1456 .regs = &omap4_gpio_regs,
1457 .bank_width = 32,
1458 .dbck_flag = true,
1459};
1460
1461static const struct of_device_id omap_gpio_match[] = {
1462 {
1463 .compatible = "ti,omap4-gpio",
1464 .data = &omap4_pdata,
1465 },
1466 {
1467 .compatible = "ti,omap3-gpio",
1468 .data = &omap3_pdata,
1469 },
1470 {
1471 .compatible = "ti,omap2-gpio",
1472 .data = &omap2_pdata,
1473 },
1474 { },
1475};
1476MODULE_DEVICE_TABLE(of, omap_gpio_match);
1477#endif
1478
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001479static struct platform_driver omap_gpio_driver = {
1480 .probe = omap_gpio_probe,
1481 .driver = {
1482 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301483 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001484 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001485 },
1486};
1487
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001488/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001489 * gpio driver register needs to be done before
1490 * machine_init functions access gpio APIs.
1491 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001492 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001493static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001494{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001495 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001496}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001497postcore_initcall(omap_gpio_drv_reg);