blob: bbe9648990172c41932e9de8767fe18b05f4123b [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;
Tony Lindgren92105bb2005-09-07 17:20:26 +010060 u32 suspend_wakeup;
61 u32 saved_wakeup;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080062 u32 non_wakeup_gpios;
63 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000064 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080065 u32 saved_datain;
66 u32 saved_fallingdetect;
67 u32 saved_risingdetect;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080068 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080069 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010070 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080071 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080072 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080073 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080074 u32 dbck_enable_mask;
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +053075 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080076 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053077 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080078 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053079 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080080 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070081 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053082 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053083 int power_mode;
84 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070085
86 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053087 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070088
89 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010090};
91
Kevin Hilman129fd222011-04-22 07:59:07 -070092#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
93#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053094#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010095
Benoit Cousson25db7112012-02-23 21:50:10 +010096static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
97{
98 return gpio_irq - bank->irq_base + bank->chip.base;
99}
100
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100101static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
102{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100103 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100104 u32 l;
105
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700106 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100107 l = __raw_readl(reg);
108 if (is_input)
109 l |= 1 << gpio;
110 else
111 l &= ~(1 << gpio);
112 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530113 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100114}
115
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700116
117/* set data out value using dedicate set/clear register */
118static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100119{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100120 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700121 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100122
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530123 if (enable) {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700124 reg += bank->regs->set_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530125 bank->context.dataout |= l;
126 } else {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700127 reg += bank->regs->clr_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530128 bank->context.dataout &= ~l;
129 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700130
131 __raw_writel(l, reg);
132}
133
134/* set data out value using mask register */
135static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
136{
137 void __iomem *reg = bank->base + bank->regs->dataout;
138 u32 gpio_bit = GPIO_BIT(bank, gpio);
139 u32 l;
140
141 l = __raw_readl(reg);
142 if (enable)
143 l |= gpio_bit;
144 else
145 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100146 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530147 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100148}
149
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300150static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100151{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700152 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100153
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700154 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100155}
156
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300157static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
158{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700159 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300160
Kevin Hilman129fd222011-04-22 07:59:07 -0700161 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300162}
163
Kevin Hilmanece95282011-07-12 08:18:15 -0700164static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
165{
166 int l = __raw_readl(base + reg);
167
Benoit Cousson862ff642012-02-01 15:58:56 +0100168 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700169 l |= mask;
170 else
171 l &= ~mask;
172
173 __raw_writel(l, base + reg);
174}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100175
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +0530176static inline void _gpio_dbck_enable(struct gpio_bank *bank)
177{
178 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
179 clk_enable(bank->dbck);
180 bank->dbck_enabled = true;
181 }
182}
183
184static inline void _gpio_dbck_disable(struct gpio_bank *bank)
185{
186 if (bank->dbck_enable_mask && bank->dbck_enabled) {
187 clk_disable(bank->dbck);
188 bank->dbck_enabled = false;
189 }
190}
191
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700192/**
193 * _set_gpio_debounce - low level gpio debounce time
194 * @bank: the gpio bank we're acting upon
195 * @gpio: the gpio number on this @gpio
196 * @debounce: debounce time to use
197 *
198 * OMAP's debounce time is in 31us steps so we need
199 * to convert and round up to the closest unit.
200 */
201static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
202 unsigned debounce)
203{
Kevin Hilman9942da02011-04-22 12:02:05 -0700204 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700205 u32 val;
206 u32 l;
207
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800208 if (!bank->dbck_flag)
209 return;
210
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700211 if (debounce < 32)
212 debounce = 0x01;
213 else if (debounce > 7936)
214 debounce = 0xff;
215 else
216 debounce = (debounce / 0x1f) - 1;
217
Kevin Hilman129fd222011-04-22 07:59:07 -0700218 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700219
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530220 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700221 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700222 __raw_writel(debounce, reg);
223
Kevin Hilman9942da02011-04-22 12:02:05 -0700224 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225 val = __raw_readl(reg);
226
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530227 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700228 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530229 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700230 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300231 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700232
233 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530234 clk_disable(bank->dbck);
235 /*
236 * Enable debounce clock per module.
237 * This call is mandatory because in omap_gpio_request() when
238 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
239 * runtime callbck fails to turn on dbck because dbck_enable_mask
240 * used within _gpio_dbck_enable() is still not initialized at
241 * that point. Therefore we have to enable dbck here.
242 */
243 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530244 if (bank->dbck_enable_mask) {
245 bank->context.debounce = debounce;
246 bank->context.debounce_en = val;
247 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700248}
249
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530250static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530251 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100252{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800253 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100254 u32 gpio_bit = 1 << gpio;
255
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530256 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
257 trigger & IRQ_TYPE_LEVEL_LOW);
258 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
259 trigger & IRQ_TYPE_LEVEL_HIGH);
260 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
261 trigger & IRQ_TYPE_EDGE_RISING);
262 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
263 trigger & IRQ_TYPE_EDGE_FALLING);
264
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530265 bank->context.leveldetect0 =
266 __raw_readl(bank->base + bank->regs->leveldetect0);
267 bank->context.leveldetect1 =
268 __raw_readl(bank->base + bank->regs->leveldetect1);
269 bank->context.risingdetect =
270 __raw_readl(bank->base + bank->regs->risingdetect);
271 bank->context.fallingdetect =
272 __raw_readl(bank->base + bank->regs->fallingdetect);
273
274 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530275 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530276 bank->context.wake_en =
277 __raw_readl(bank->base + bank->regs->wkup_en);
278 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530279
Ambresh K55b220c2011-06-15 13:40:45 -0700280 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530281 if (!bank->regs->irqctrl) {
282 /* On omap24xx proceed only when valid GPIO bit is set */
283 if (bank->non_wakeup_gpios) {
284 if (!(bank->non_wakeup_gpios & gpio_bit))
285 goto exit;
286 }
287
Chunqiu Wang699117a2009-06-24 17:13:39 +0000288 /*
289 * Log the edge gpio and manually trigger the IRQ
290 * after resume if the input level changes
291 * to avoid irq lost during PER RET/OFF mode
292 * Applies for omap2 non-wakeup gpio and all omap3 gpios
293 */
294 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800295 bank->enabled_non_wakeup_gpios |= gpio_bit;
296 else
297 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
298 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700299
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530300exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530301 bank->level_mask =
302 __raw_readl(bank->base + bank->regs->leveldetect0) |
303 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100304}
305
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800306#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800307/*
308 * This only applies to chips that can't do both rising and falling edge
309 * detection at once. For all other chips, this function is a noop.
310 */
311static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
312{
313 void __iomem *reg = bank->base;
314 u32 l = 0;
315
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530316 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800317 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530318
319 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800320
321 l = __raw_readl(reg);
322 if ((l >> gpio) & 1)
323 l &= ~(1 << gpio);
324 else
325 l |= 1 << gpio;
326
327 __raw_writel(l, reg);
328}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530329#else
330static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800331#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800332
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530333static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
334 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100335{
336 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530337 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100338 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100339
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530340 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
341 set_gpio_trigger(bank, gpio, trigger);
342 } else if (bank->regs->irqctrl) {
343 reg += bank->regs->irqctrl;
344
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100345 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000346 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800347 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100348 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100349 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100350 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100351 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100352 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530353 return -EINVAL;
354
355 __raw_writel(l, reg);
356 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100357 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530358 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100359 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530360 reg += bank->regs->edgectrl1;
361
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100362 gpio &= 0x07;
363 l = __raw_readl(reg);
364 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100365 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100366 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100367 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100368 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530369
370 /* Enable wake-up during idle for dynamic tick */
371 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530372 bank->context.wake_en =
373 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530374 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100375 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100376 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100377}
378
Lennert Buytenheke9191022010-11-29 11:17:17 +0100379static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100380{
Benoit Cousson25db7112012-02-23 21:50:10 +0100381 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100382 unsigned gpio;
383 int retval;
David Brownella6472532008-03-03 04:33:30 -0800384 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100385
Lennert Buytenheke9191022010-11-29 11:17:17 +0100386 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
387 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100388 else
Benoit Cousson25db7112012-02-23 21:50:10 +0100389 gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100390
David Brownelle5c56ed2006-12-06 17:13:59 -0800391 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100392 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800393
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530394 if (!bank->regs->leveldetect0 &&
395 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100396 return -EINVAL;
397
David Brownella6472532008-03-03 04:33:30 -0800398 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700399 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800400 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800401
402 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100403 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800404 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100405 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800406
Tony Lindgren92105bb2005-09-07 17:20:26 +0100407 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100408}
409
410static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
411{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100412 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100413
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700414 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100415 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300416
417 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700418 if (bank->regs->irqstatus2) {
419 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700420 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700421 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700422
423 /* Flush posted write for the irq status to avoid spurious interrupts */
424 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100425}
426
427static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
428{
Kevin Hilman129fd222011-04-22 07:59:07 -0700429 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100430}
431
Imre Deakea6dedd2006-06-26 16:16:00 -0700432static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
433{
434 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700435 u32 l;
Kevin Hilmanc390aad2011-04-21 09:33:36 -0700436 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700437
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700438 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700439 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700440 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700441 l = ~l;
442 l &= mask;
443 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700444}
445
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700446static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100447{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100448 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100449 u32 l;
450
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700451 if (bank->regs->set_irqenable) {
452 reg += bank->regs->set_irqenable;
453 l = gpio_mask;
454 } else {
455 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100456 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700457 if (bank->regs->irqenable_inv)
458 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100459 else
460 l |= gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100461 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700462
463 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530464 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700465}
466
467static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
468{
469 void __iomem *reg = bank->base;
470 u32 l;
471
472 if (bank->regs->clr_irqenable) {
473 reg += bank->regs->clr_irqenable;
474 l = gpio_mask;
475 } else {
476 reg += bank->regs->irqenable;
477 l = __raw_readl(reg);
478 if (bank->regs->irqenable_inv)
479 l |= gpio_mask;
480 else
481 l &= ~gpio_mask;
482 }
483
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100484 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530485 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100486}
487
488static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
489{
Tarun Kanti DebBarma82765362011-11-25 15:27:37 +0530490 if (enable)
491 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
492 else
493 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100494}
495
Tony Lindgren92105bb2005-09-07 17:20:26 +0100496/*
497 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
498 * 1510 does not seem to have a wake-up register. If JTAG is connected
499 * to the target, system will wake up always on GPIO events. While
500 * system is running all registered GPIO interrupts need to have wake-up
501 * enabled. When system is suspended, only selected GPIO interrupts need
502 * to have wake-up enabled.
503 */
504static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
505{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700506 u32 gpio_bit = GPIO_BIT(bank, gpio);
507 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800508
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700509 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100510 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700511 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100512 return -EINVAL;
513 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700514
515 spin_lock_irqsave(&bank->lock, flags);
516 if (enable)
517 bank->suspend_wakeup |= gpio_bit;
518 else
519 bank->suspend_wakeup &= ~gpio_bit;
520
Tarun Kanti DebBarma381a7522012-02-29 21:49:21 +0530521 __raw_writel(bank->suspend_wakeup, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700522 spin_unlock_irqrestore(&bank->lock, flags);
523
524 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100525}
526
Tony Lindgren4196dd62006-09-25 12:41:38 +0300527static void _reset_gpio(struct gpio_bank *bank, int gpio)
528{
Kevin Hilman129fd222011-04-22 07:59:07 -0700529 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300530 _set_gpio_irqenable(bank, gpio, 0);
531 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700532 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300533}
534
Tony Lindgren92105bb2005-09-07 17:20:26 +0100535/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100536static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100537{
Benoit Cousson25db7112012-02-23 21:50:10 +0100538 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
539 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100540
Benoit Cousson25db7112012-02-23 21:50:10 +0100541 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100542}
543
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800544static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100545{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800546 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800547 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100548
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530549 /*
550 * If this is the first gpio_request for the bank,
551 * enable the bank module.
552 */
553 if (!bank->mod_usage)
554 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100555
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530556 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300557 /* Set trigger to none. You need to enable the desired trigger with
558 * request_irq() or set_irq_type().
559 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800560 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100561
Charulatha Vfad96ea2011-05-25 11:23:50 +0530562 if (bank->regs->pinctrl) {
563 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100564
Tony Lindgren92105bb2005-09-07 17:20:26 +0100565 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800566 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100567 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530568
Charulatha Vc8eef652011-05-02 15:21:42 +0530569 if (bank->regs->ctrl && !bank->mod_usage) {
570 void __iomem *reg = bank->base + bank->regs->ctrl;
571 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700572
Charulatha Vc8eef652011-05-02 15:21:42 +0530573 ctrl = __raw_readl(reg);
574 /* Module is enabled, clocks are not gated */
575 ctrl &= ~GPIO_MOD_CTRL_BIT;
576 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530577 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800578 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530579
580 bank->mod_usage |= 1 << offset;
581
David Brownella6472532008-03-03 04:33:30 -0800582 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100583
584 return 0;
585}
586
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800587static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100588{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800589 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530590 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800591 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100592
David Brownella6472532008-03-03 04:33:30 -0800593 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530594
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530595 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100596 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530597 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530598 bank->context.wake_en =
599 __raw_readl(bank->base + bank->regs->wkup_en);
600 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530601
Charulatha Vc8eef652011-05-02 15:21:42 +0530602 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700603
Charulatha Vc8eef652011-05-02 15:21:42 +0530604 if (bank->regs->ctrl && !bank->mod_usage) {
605 void __iomem *reg = bank->base + bank->regs->ctrl;
606 u32 ctrl;
607
608 ctrl = __raw_readl(reg);
609 /* Module is disabled, clocks are gated */
610 ctrl |= GPIO_MOD_CTRL_BIT;
611 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530612 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800613 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530614
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800615 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800616 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530617
618 /*
619 * If this is the last gpio to be freed in the bank,
620 * disable the bank module.
621 */
622 if (!bank->mod_usage)
623 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100624}
625
626/*
627 * We need to unmask the GPIO bank interrupt as soon as possible to
628 * avoid missing GPIO interrupts for other lines in the bank.
629 * Then we need to mask-read-clear-unmask the triggered GPIO lines
630 * in the bank to avoid missing nested interrupts for a GPIO line.
631 * If we wait to unmask individual GPIO lines in the bank after the
632 * line's interrupt handler has been run, we may miss some nested
633 * interrupts.
634 */
Russell King10dd5ce2006-11-23 11:41:32 +0000635static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100636{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100637 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800639 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100640 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700641 u32 retrigger = 0;
642 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000643 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100644
Will Deaconee144182011-02-21 13:46:08 +0000645 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100646
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100647 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700648 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530649 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800650
651 if (WARN_ON(!isr_reg))
652 goto exit;
653
Tony Lindgren92105bb2005-09-07 17:20:26 +0100654 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100655 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700656 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100657
Imre Deakea6dedd2006-06-26 16:16:00 -0700658 enabled = _get_gpio_irqbank_mask(bank);
659 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100660
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530661 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800662 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100663
664 /* clear edge sensitive interrupts before handler(s) are
665 called so that we don't miss any interrupt occurred while
666 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700667 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100668 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700669 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100670
671 /* if there is only edge sensitive GPIO pin interrupts
672 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700673 if (!level_mask && !unmasked) {
674 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000675 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700676 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100677
Imre Deakea6dedd2006-06-26 16:16:00 -0700678 isr |= retrigger;
679 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100680 if (!isr)
681 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100682
Benoit Cousson384ebe12011-08-16 11:53:02 +0200683 gpio_irq = bank->irq_base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100684 for (; isr != 0; isr >>= 1, gpio_irq++) {
Benoit Cousson25db7112012-02-23 21:50:10 +0100685 int gpio = irq_to_gpio(bank, gpio_irq);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800686
Tony Lindgren92105bb2005-09-07 17:20:26 +0100687 if (!(isr & 1))
688 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200689
Benoit Cousson25db7112012-02-23 21:50:10 +0100690 gpio_index = GPIO_INDEX(bank, gpio);
691
Cory Maccarrone4318f362010-01-08 10:29:04 -0800692 /*
693 * Some chips can't respond to both rising and falling
694 * at the same time. If this irq was requested with
695 * both flags, we need to flip the ICR data for the IRQ
696 * to respond to the IRQ for the opposite direction.
697 * This will be indicated in the bank toggle_mask.
698 */
699 if (bank->toggle_mask & (1 << gpio_index))
700 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800701
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100702 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100703 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000704 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700705 /* if bank has any level sensitive GPIO pin interrupt
706 configured, we must unmask the bank interrupt only after
707 handler(s) are executed in order to avoid spurious bank
708 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800709exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700710 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000711 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530712 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100713}
714
Lennert Buytenheke9191022010-11-29 11:17:17 +0100715static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300716{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100717 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100718 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700719 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300720
Colin Cross85ec7b92011-06-06 13:38:18 -0700721 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300722 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700723 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300724}
725
Lennert Buytenheke9191022010-11-29 11:17:17 +0100726static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100727{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100728 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100729 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100730
731 _clear_gpio_irqstatus(bank, gpio);
732}
733
Lennert Buytenheke9191022010-11-29 11:17:17 +0100734static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100735{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100736 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100737 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700738 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100739
Colin Cross85ec7b92011-06-06 13:38:18 -0700740 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100741 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700742 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700743 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100744}
745
Lennert Buytenheke9191022010-11-29 11:17:17 +0100746static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100747{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100748 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100749 unsigned int gpio = irq_to_gpio(bank, d->irq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700750 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100751 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700752 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700753
Colin Cross85ec7b92011-06-06 13:38:18 -0700754 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700755 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700756 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800757
758 /* For level-triggered GPIOs, the clearing must be done after
759 * the HW source is cleared, thus after the handler has run */
760 if (bank->level_mask & irq_mask) {
761 _set_gpio_irqenable(bank, gpio, 0);
762 _clear_gpio_irqstatus(bank, gpio);
763 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100764
Kevin Hilman4de8c752008-01-16 21:56:14 -0800765 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700766 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100767}
768
David Brownelle5c56ed2006-12-06 17:13:59 -0800769static struct irq_chip gpio_irq_chip = {
770 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100771 .irq_shutdown = gpio_irq_shutdown,
772 .irq_ack = gpio_ack_irq,
773 .irq_mask = gpio_mask_irq,
774 .irq_unmask = gpio_unmask_irq,
775 .irq_set_type = gpio_irq_type,
776 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800777};
778
779/*---------------------------------------------------------------------*/
780
Magnus Damm79ee0312009-07-08 13:22:04 +0200781static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800782{
Magnus Damm79ee0312009-07-08 13:22:04 +0200783 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800784 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800785 void __iomem *mask_reg = bank->base +
786 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800787 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800788
David Brownella6472532008-03-03 04:33:30 -0800789 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800790 bank->saved_wakeup = __raw_readl(mask_reg);
791 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800792 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800793
794 return 0;
795}
796
Magnus Damm79ee0312009-07-08 13:22:04 +0200797static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800798{
Magnus Damm79ee0312009-07-08 13:22:04 +0200799 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800800 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800801 void __iomem *mask_reg = bank->base +
802 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800803 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800804
David Brownella6472532008-03-03 04:33:30 -0800805 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800806 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800807 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800808
809 return 0;
810}
811
Alexey Dobriyan47145212009-12-14 18:00:08 -0800812static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200813 .suspend_noirq = omap_mpuio_suspend_noirq,
814 .resume_noirq = omap_mpuio_resume_noirq,
815};
816
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200817/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800818static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800819 .driver = {
820 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200821 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800822 },
823};
824
825static struct platform_device omap_mpuio_device = {
826 .name = "mpuio",
827 .id = -1,
828 .dev = {
829 .driver = &omap_mpuio_driver.driver,
830 }
831 /* could list the /proc/iomem resources */
832};
833
Charulatha V03e128c2011-05-05 19:58:01 +0530834static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800835{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800836 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700837
David Brownell11a78b72006-12-06 17:14:11 -0800838 if (platform_driver_register(&omap_mpuio_driver) == 0)
839 (void) platform_device_register(&omap_mpuio_device);
840}
841
David Brownelle5c56ed2006-12-06 17:13:59 -0800842/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100843
David Brownell52e31342008-03-03 12:43:23 -0800844static int gpio_input(struct gpio_chip *chip, unsigned offset)
845{
846 struct gpio_bank *bank;
847 unsigned long flags;
848
849 bank = container_of(chip, struct gpio_bank, chip);
850 spin_lock_irqsave(&bank->lock, flags);
851 _set_gpio_direction(bank, offset, 1);
852 spin_unlock_irqrestore(&bank->lock, flags);
853 return 0;
854}
855
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300856static int gpio_is_input(struct gpio_bank *bank, int mask)
857{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700858 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300859
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300860 return __raw_readl(reg) & mask;
861}
862
David Brownell52e31342008-03-03 12:43:23 -0800863static int gpio_get(struct gpio_chip *chip, unsigned offset)
864{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300865 struct gpio_bank *bank;
866 void __iomem *reg;
867 int gpio;
868 u32 mask;
869
870 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530871 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300872 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700873 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300874
875 if (gpio_is_input(bank, mask))
876 return _get_gpio_datain(bank, gpio);
877 else
878 return _get_gpio_dataout(bank, gpio);
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
902 if (!bank->dbck) {
903 bank->dbck = clk_get(bank->dev, "dbclk");
904 if (IS_ERR(bank->dbck))
905 dev_err(bank->dev, "Could not get gpio dbck\n");
906 }
907
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700908 spin_lock_irqsave(&bank->lock, flags);
909 _set_gpio_debounce(bank, offset, debounce);
910 spin_unlock_irqrestore(&bank->lock, flags);
911
912 return 0;
913}
914
David Brownell52e31342008-03-03 12:43:23 -0800915static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
916{
917 struct gpio_bank *bank;
918 unsigned long flags;
919
920 bank = container_of(chip, struct gpio_bank, chip);
921 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700922 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800923 spin_unlock_irqrestore(&bank->lock, flags);
924}
925
David Brownella007b702008-12-10 17:35:25 -0800926static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
927{
928 struct gpio_bank *bank;
929
930 bank = container_of(chip, struct gpio_bank, chip);
Benoit Cousson384ebe12011-08-16 11:53:02 +0200931 return bank->irq_base + offset;
David Brownella007b702008-12-10 17:35:25 -0800932}
933
David Brownell52e31342008-03-03 12:43:23 -0800934/*---------------------------------------------------------------------*/
935
Tony Lindgren9a748052010-12-07 16:26:56 -0800936static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700937{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700938 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700939 u32 rev;
940
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700941 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700942 return;
943
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700944 rev = __raw_readw(bank->base + bank->regs->revision);
945 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700946 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700947
948 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700949}
950
David Brownell8ba55c52008-02-26 11:10:50 -0800951/* This lock class tells lockdep that GPIO irqs are in a different
952 * category than their parents, so it won't report false recursion.
953 */
954static struct lock_class_key gpio_lock_class;
955
Charulatha V03e128c2011-05-05 19:58:01 +0530956static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800957{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530958 void __iomem *base = bank->base;
959 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800960
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530961 if (bank->width == 16)
962 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800963
Charulatha Vd0d665a2011-08-31 00:02:21 +0530964 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530965 __raw_writel(l, bank->base + bank->regs->irqenable);
966 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800967 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530968
969 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
970 _gpio_rmw(base, bank->regs->irqstatus, l,
971 bank->regs->irqenable_inv == false);
972 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
973 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
974 if (bank->regs->debounce_en)
975 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
976
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530977 /* Save OE default value (0xffffffff) in the context */
978 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530979 /* Initialize interface clk ungated, module enabled */
980 if (bank->regs->ctrl)
981 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800982}
983
Tony Lindgren8805f412012-03-05 15:32:38 -0800984static __devinit void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700985omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
986 unsigned int num)
987{
988 struct irq_chip_generic *gc;
989 struct irq_chip_type *ct;
990
991 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
992 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700993 if (!gc) {
994 dev_err(bank->dev, "Memory alloc failed for gc\n");
995 return;
996 }
997
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700998 ct = gc->chip_types;
999
1000 /* NOTE: No ack required, reading IRQ status clears it. */
1001 ct->chip.irq_mask = irq_gc_mask_set_bit;
1002 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1003 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301004
1005 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001006 ct->chip.irq_set_wake = gpio_wake_enable,
1007
1008 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1009 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1010 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1011}
1012
Russell Kingd52b31d2011-05-27 13:56:12 -07001013static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001014{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001015 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001016 static int gpio;
1017
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001018 /*
1019 * REVISIT eventually switch from OMAP-specific gpio structs
1020 * over to the generic ones
1021 */
1022 bank->chip.request = omap_gpio_request;
1023 bank->chip.free = omap_gpio_free;
1024 bank->chip.direction_input = gpio_input;
1025 bank->chip.get = gpio_get;
1026 bank->chip.direction_output = gpio_output;
1027 bank->chip.set_debounce = gpio_debounce;
1028 bank->chip.set = gpio_set;
1029 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301030 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001031 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301032 if (bank->regs->wkup_en)
1033 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001034 bank->chip.base = OMAP_MPUIO(0);
1035 } else {
1036 bank->chip.label = "gpio";
1037 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001038 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001039 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001040 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001041
1042 gpiochip_add(&bank->chip);
1043
Benoit Cousson384ebe12011-08-16 11:53:02 +02001044 for (j = bank->irq_base; j < bank->irq_base + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001045 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001046 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301047 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001048 omap_mpuio_alloc_gc(bank, j, bank->width);
1049 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001050 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001051 irq_set_handler(j, handle_simple_irq);
1052 set_irq_flags(j, IRQF_VALID);
1053 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001054 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001055 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1056 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001057}
1058
Benoit Cousson384ebe12011-08-16 11:53:02 +02001059static const struct of_device_id omap_gpio_match[];
1060
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001061static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001062{
Benoit Cousson862ff642012-02-01 15:58:56 +01001063 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001064 struct device_node *node = dev->of_node;
1065 const struct of_device_id *match;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001066 struct omap_gpio_platform_data *pdata;
1067 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001068 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301069 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001070
Benoit Cousson384ebe12011-08-16 11:53:02 +02001071 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1072
1073 pdata = match ? match->data : dev->platform_data;
1074 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001075 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001076
Benoit Cousson96751fc2012-02-01 16:01:39 +01001077 bank = devm_kzalloc(&pdev->dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301078 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001079 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001080 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301081 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001082
1083 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1084 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001085 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001086 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001087 }
1088
1089 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001090 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001091 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001092 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001093 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301094 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301095 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301096 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301097 bank->get_context_loss_count = pdata->get_context_loss_count;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001098 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001099#ifdef CONFIG_OF_GPIO
1100 bank->chip.of_node = of_node_get(node);
1101#endif
1102
1103 bank->irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
1104 if (bank->irq_base < 0) {
1105 dev_err(dev, "Couldn't allocate IRQ numbers\n");
1106 return -ENODEV;
1107 }
1108
1109 bank->domain = irq_domain_add_legacy(node, bank->width, bank->irq_base,
1110 0, &irq_domain_simple_ops, NULL);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001111
1112 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1113 bank->set_dataout = _set_gpio_dataout_reg;
1114 else
1115 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001116
1117 spin_lock_init(&bank->lock);
1118
1119 /* Static mapping, never released */
1120 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1121 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001122 dev_err(dev, "Invalid mem resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001123 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001124 }
1125
Benoit Cousson96751fc2012-02-01 16:01:39 +01001126 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1127 pdev->name)) {
1128 dev_err(dev, "Region already claimed\n");
1129 return -EBUSY;
1130 }
1131
1132 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001133 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001134 dev_err(dev, "Could not ioremap\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001135 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001136 }
1137
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301138 platform_set_drvdata(pdev, bank);
1139
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001140 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301141 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001142 pm_runtime_get_sync(bank->dev);
1143
Charulatha Vd0d665a2011-08-31 00:02:21 +05301144 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301145 mpuio_init(bank);
1146
Charulatha V03e128c2011-05-05 19:58:01 +05301147 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001148 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001149 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001150
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301151 pm_runtime_put(bank->dev);
1152
Charulatha V03e128c2011-05-05 19:58:01 +05301153 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001154
Charulatha V03e128c2011-05-05 19:58:01 +05301155 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001156}
1157
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301158#ifdef CONFIG_ARCH_OMAP2PLUS
1159
1160#if defined(CONFIG_PM_SLEEP)
1161static int omap_gpio_suspend(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001162{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301163 struct platform_device *pdev = to_platform_device(dev);
1164 struct gpio_bank *bank = platform_get_drvdata(pdev);
1165 void __iomem *base = bank->base;
1166 void __iomem *wakeup_enable;
1167 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001168
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301169 if (!bank->mod_usage || !bank->loses_context)
1170 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001171
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301172 if (!bank->regs->wkup_en || !bank->suspend_wakeup)
1173 return 0;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301174
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301175 wakeup_enable = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001176
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301177 spin_lock_irqsave(&bank->lock, flags);
1178 bank->saved_wakeup = __raw_readl(wakeup_enable);
1179 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1180 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
1181 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001182
1183 return 0;
1184}
1185
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301186static int omap_gpio_resume(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001187{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301188 struct platform_device *pdev = to_platform_device(dev);
1189 struct gpio_bank *bank = platform_get_drvdata(pdev);
1190 void __iomem *base = bank->base;
1191 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001192
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301193 if (!bank->mod_usage || !bank->loses_context)
1194 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001195
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301196 if (!bank->regs->wkup_en || !bank->saved_wakeup)
1197 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001198
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301199 spin_lock_irqsave(&bank->lock, flags);
1200 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1201 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
1202 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301203
1204 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001205}
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301206#endif /* CONFIG_PM_SLEEP */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001207
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301208#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301209static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001210
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301211static int omap_gpio_runtime_suspend(struct device *dev)
1212{
1213 struct platform_device *pdev = to_platform_device(dev);
1214 struct gpio_bank *bank = platform_get_drvdata(pdev);
1215 u32 l1 = 0, l2 = 0;
1216 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001217 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301218
1219 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001220
1221 /*
1222 * Only edges can generate a wakeup event to the PRCM.
1223 *
1224 * Therefore, ensure any wake-up capable GPIOs have
1225 * edge-detection enabled before going idle to ensure a wakeup
1226 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1227 * NDA TRM 25.5.3.1)
1228 *
1229 * The normal values will be restored upon ->runtime_resume()
1230 * by writing back the values saved in bank->context.
1231 */
1232 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1233 if (wake_low)
1234 __raw_writel(wake_low | bank->context.fallingdetect,
1235 bank->base + bank->regs->fallingdetect);
1236 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1237 if (wake_hi)
1238 __raw_writel(wake_hi | bank->context.risingdetect,
1239 bank->base + bank->regs->risingdetect);
1240
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301241 if (bank->power_mode != OFF_MODE) {
1242 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301243 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301244 }
1245 /*
1246 * If going to OFF, remove triggering for all
1247 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1248 * generated. See OMAP2420 Errata item 1.101.
1249 */
1250 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301251 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301252
1253 bank->saved_datain = __raw_readl(bank->base +
1254 bank->regs->datain);
1255 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1256 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
1257
1258 bank->saved_fallingdetect = l1;
1259 bank->saved_risingdetect = l2;
1260 l1 &= ~bank->enabled_non_wakeup_gpios;
1261 l2 &= ~bank->enabled_non_wakeup_gpios;
1262
1263 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1264 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1265
1266 bank->workaround_enabled = true;
1267
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301268update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301269 if (bank->get_context_loss_count)
1270 bank->context_loss_count =
1271 bank->get_context_loss_count(bank->dev);
1272
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +05301273 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301274 spin_unlock_irqrestore(&bank->lock, flags);
1275
1276 return 0;
1277}
1278
1279static int omap_gpio_runtime_resume(struct device *dev)
1280{
1281 struct platform_device *pdev = to_platform_device(dev);
1282 struct gpio_bank *bank = platform_get_drvdata(pdev);
1283 int context_lost_cnt_after;
1284 u32 l = 0, gen, gen0, gen1;
1285 unsigned long flags;
1286
1287 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +05301288 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001289
1290 /*
1291 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1292 * GPIOs were set to edge trigger also in order to be able to
1293 * generate a PRCM wakeup. Here we restore the
1294 * pre-runtime_suspend() values for edge triggering.
1295 */
1296 __raw_writel(bank->context.fallingdetect,
1297 bank->base + bank->regs->fallingdetect);
1298 __raw_writel(bank->context.risingdetect,
1299 bank->base + bank->regs->risingdetect);
1300
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301301 if (!bank->enabled_non_wakeup_gpios || !bank->workaround_enabled) {
1302 spin_unlock_irqrestore(&bank->lock, flags);
1303 return 0;
1304 }
1305
1306 if (bank->get_context_loss_count) {
1307 context_lost_cnt_after =
1308 bank->get_context_loss_count(bank->dev);
1309 if (context_lost_cnt_after != bank->context_loss_count ||
1310 !context_lost_cnt_after) {
1311 omap_gpio_restore_context(bank);
1312 } else {
1313 spin_unlock_irqrestore(&bank->lock, flags);
1314 return 0;
1315 }
1316 }
1317
1318 __raw_writel(bank->saved_fallingdetect,
1319 bank->base + bank->regs->fallingdetect);
1320 __raw_writel(bank->saved_risingdetect,
1321 bank->base + bank->regs->risingdetect);
1322 l = __raw_readl(bank->base + bank->regs->datain);
1323
1324 /*
1325 * Check if any of the non-wakeup interrupt GPIOs have changed
1326 * state. If so, generate an IRQ by software. This is
1327 * horribly racy, but it's the best we can do to work around
1328 * this silicon bug.
1329 */
1330 l ^= bank->saved_datain;
1331 l &= bank->enabled_non_wakeup_gpios;
1332
1333 /*
1334 * No need to generate IRQs for the rising edge for gpio IRQs
1335 * configured with falling edge only; and vice versa.
1336 */
1337 gen0 = l & bank->saved_fallingdetect;
1338 gen0 &= bank->saved_datain;
1339
1340 gen1 = l & bank->saved_risingdetect;
1341 gen1 &= ~(bank->saved_datain);
1342
1343 /* FIXME: Consider GPIO IRQs with level detections properly! */
1344 gen = l & (~(bank->saved_fallingdetect) & ~(bank->saved_risingdetect));
1345 /* Consider all GPIO IRQs needed to be updated */
1346 gen |= gen0 | gen1;
1347
1348 if (gen) {
1349 u32 old0, old1;
1350
1351 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1352 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1353
1354 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1355 __raw_writel(old0 | gen, bank->base +
1356 bank->regs->leveldetect0);
1357 __raw_writel(old1 | gen, bank->base +
1358 bank->regs->leveldetect1);
1359 }
1360
1361 if (cpu_is_omap44xx()) {
1362 __raw_writel(old0 | l, bank->base +
1363 bank->regs->leveldetect0);
1364 __raw_writel(old1 | l, bank->base +
1365 bank->regs->leveldetect1);
1366 }
1367 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1368 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1369 }
1370
1371 bank->workaround_enabled = false;
1372 spin_unlock_irqrestore(&bank->lock, flags);
1373
1374 return 0;
1375}
1376#endif /* CONFIG_PM_RUNTIME */
1377
1378void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001379{
Charulatha V03e128c2011-05-05 19:58:01 +05301380 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001381
Charulatha V03e128c2011-05-05 19:58:01 +05301382 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301383 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301384 continue;
1385
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301386 bank->power_mode = pwr_mode;
1387
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301388 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001389 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001390}
1391
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001392void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001393{
Charulatha V03e128c2011-05-05 19:58:01 +05301394 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001395
Charulatha V03e128c2011-05-05 19:58:01 +05301396 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301397 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301398 continue;
1399
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301400 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001401 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001402}
1403
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301404#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301405static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301406{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301407 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301408 bank->base + bank->regs->wkup_en);
1409 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301410 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301411 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301412 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301413 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301414 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301415 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301416 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301417 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301418 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1419 __raw_writel(bank->context.dataout,
1420 bank->base + bank->regs->set_dataout);
1421 else
1422 __raw_writel(bank->context.dataout,
1423 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301424 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1425
Nishanth Menonae547352011-09-09 19:08:58 +05301426 if (bank->dbck_enable_mask) {
1427 __raw_writel(bank->context.debounce, bank->base +
1428 bank->regs->debounce);
1429 __raw_writel(bank->context.debounce_en,
1430 bank->base + bank->regs->debounce_en);
1431 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301432
1433 __raw_writel(bank->context.irqenable1,
1434 bank->base + bank->regs->irqenable);
1435 __raw_writel(bank->context.irqenable2,
1436 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301437}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301438#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301439#else
1440#define omap_gpio_suspend NULL
1441#define omap_gpio_resume NULL
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301442#define omap_gpio_runtime_suspend NULL
1443#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301444#endif
1445
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301446static const struct dev_pm_ops gpio_pm_ops = {
1447 SET_SYSTEM_SLEEP_PM_OPS(omap_gpio_suspend, omap_gpio_resume)
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301448 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1449 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301450};
1451
Benoit Cousson384ebe12011-08-16 11:53:02 +02001452#if defined(CONFIG_OF)
1453static struct omap_gpio_reg_offs omap2_gpio_regs = {
1454 .revision = OMAP24XX_GPIO_REVISION,
1455 .direction = OMAP24XX_GPIO_OE,
1456 .datain = OMAP24XX_GPIO_DATAIN,
1457 .dataout = OMAP24XX_GPIO_DATAOUT,
1458 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1459 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1460 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1461 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1462 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1463 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1464 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1465 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1466 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1467 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1468 .ctrl = OMAP24XX_GPIO_CTRL,
1469 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1470 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1471 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1472 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1473 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1474};
1475
1476static struct omap_gpio_reg_offs omap4_gpio_regs = {
1477 .revision = OMAP4_GPIO_REVISION,
1478 .direction = OMAP4_GPIO_OE,
1479 .datain = OMAP4_GPIO_DATAIN,
1480 .dataout = OMAP4_GPIO_DATAOUT,
1481 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1482 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1483 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1484 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1485 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1486 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1487 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1488 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1489 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1490 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1491 .ctrl = OMAP4_GPIO_CTRL,
1492 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1493 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1494 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1495 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1496 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1497};
1498
1499static struct omap_gpio_platform_data omap2_pdata = {
1500 .regs = &omap2_gpio_regs,
1501 .bank_width = 32,
1502 .dbck_flag = false,
1503};
1504
1505static struct omap_gpio_platform_data omap3_pdata = {
1506 .regs = &omap2_gpio_regs,
1507 .bank_width = 32,
1508 .dbck_flag = true,
1509};
1510
1511static struct omap_gpio_platform_data omap4_pdata = {
1512 .regs = &omap4_gpio_regs,
1513 .bank_width = 32,
1514 .dbck_flag = true,
1515};
1516
1517static const struct of_device_id omap_gpio_match[] = {
1518 {
1519 .compatible = "ti,omap4-gpio",
1520 .data = &omap4_pdata,
1521 },
1522 {
1523 .compatible = "ti,omap3-gpio",
1524 .data = &omap3_pdata,
1525 },
1526 {
1527 .compatible = "ti,omap2-gpio",
1528 .data = &omap2_pdata,
1529 },
1530 { },
1531};
1532MODULE_DEVICE_TABLE(of, omap_gpio_match);
1533#endif
1534
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001535static struct platform_driver omap_gpio_driver = {
1536 .probe = omap_gpio_probe,
1537 .driver = {
1538 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301539 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001540 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001541 },
1542};
1543
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001544/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001545 * gpio driver register needs to be done before
1546 * machine_init functions access gpio APIs.
1547 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001548 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001549static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001550{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001551 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001552}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001553postcore_initcall(omap_gpio_drv_reg);