blob: 2042857a366346a440f490b4943116ba76a0acbb [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
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700123 if (enable)
124 reg += bank->regs->set_dataout;
125 else
126 reg += bank->regs->clr_dataout;
127
128 __raw_writel(l, reg);
129}
130
131/* set data out value using mask register */
132static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
133{
134 void __iomem *reg = bank->base + bank->regs->dataout;
135 u32 gpio_bit = GPIO_BIT(bank, gpio);
136 u32 l;
137
138 l = __raw_readl(reg);
139 if (enable)
140 l |= gpio_bit;
141 else
142 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100143 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530144 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145}
146
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300147static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100148{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700149 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700151 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100152}
153
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300154static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
155{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700156 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300157
Kevin Hilman129fd222011-04-22 07:59:07 -0700158 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300159}
160
Kevin Hilmanece95282011-07-12 08:18:15 -0700161static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
162{
163 int l = __raw_readl(base + reg);
164
Benoit Cousson862ff642012-02-01 15:58:56 +0100165 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700166 l |= mask;
167 else
168 l &= ~mask;
169
170 __raw_writel(l, base + reg);
171}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100172
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +0530173static inline void _gpio_dbck_enable(struct gpio_bank *bank)
174{
175 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
176 clk_enable(bank->dbck);
177 bank->dbck_enabled = true;
178 }
179}
180
181static inline void _gpio_dbck_disable(struct gpio_bank *bank)
182{
183 if (bank->dbck_enable_mask && bank->dbck_enabled) {
184 clk_disable(bank->dbck);
185 bank->dbck_enabled = false;
186 }
187}
188
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700189/**
190 * _set_gpio_debounce - low level gpio debounce time
191 * @bank: the gpio bank we're acting upon
192 * @gpio: the gpio number on this @gpio
193 * @debounce: debounce time to use
194 *
195 * OMAP's debounce time is in 31us steps so we need
196 * to convert and round up to the closest unit.
197 */
198static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
199 unsigned debounce)
200{
Kevin Hilman9942da02011-04-22 12:02:05 -0700201 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700202 u32 val;
203 u32 l;
204
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800205 if (!bank->dbck_flag)
206 return;
207
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700208 if (debounce < 32)
209 debounce = 0x01;
210 else if (debounce > 7936)
211 debounce = 0xff;
212 else
213 debounce = (debounce / 0x1f) - 1;
214
Kevin Hilman129fd222011-04-22 07:59:07 -0700215 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700216
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530217 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700218 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700219 __raw_writel(debounce, reg);
220
Kevin Hilman9942da02011-04-22 12:02:05 -0700221 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700222 val = __raw_readl(reg);
223
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530224 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530226 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700227 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300228 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700229
230 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530231 clk_disable(bank->dbck);
232 /*
233 * Enable debounce clock per module.
234 * This call is mandatory because in omap_gpio_request() when
235 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
236 * runtime callbck fails to turn on dbck because dbck_enable_mask
237 * used within _gpio_dbck_enable() is still not initialized at
238 * that point. Therefore we have to enable dbck here.
239 */
240 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530241 if (bank->dbck_enable_mask) {
242 bank->context.debounce = debounce;
243 bank->context.debounce_en = val;
244 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700245}
246
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530247static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530248 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100249{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800250 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100251 u32 gpio_bit = 1 << gpio;
252
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530253 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
254 trigger & IRQ_TYPE_LEVEL_LOW);
255 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
256 trigger & IRQ_TYPE_LEVEL_HIGH);
257 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
258 trigger & IRQ_TYPE_EDGE_RISING);
259 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
260 trigger & IRQ_TYPE_EDGE_FALLING);
261
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530262 bank->context.leveldetect0 =
263 __raw_readl(bank->base + bank->regs->leveldetect0);
264 bank->context.leveldetect1 =
265 __raw_readl(bank->base + bank->regs->leveldetect1);
266 bank->context.risingdetect =
267 __raw_readl(bank->base + bank->regs->risingdetect);
268 bank->context.fallingdetect =
269 __raw_readl(bank->base + bank->regs->fallingdetect);
270
271 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530272 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530273 bank->context.wake_en =
274 __raw_readl(bank->base + bank->regs->wkup_en);
275 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530276
Ambresh K55b220c2011-06-15 13:40:45 -0700277 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530278 if (!bank->regs->irqctrl) {
279 /* On omap24xx proceed only when valid GPIO bit is set */
280 if (bank->non_wakeup_gpios) {
281 if (!(bank->non_wakeup_gpios & gpio_bit))
282 goto exit;
283 }
284
Chunqiu Wang699117a2009-06-24 17:13:39 +0000285 /*
286 * Log the edge gpio and manually trigger the IRQ
287 * after resume if the input level changes
288 * to avoid irq lost during PER RET/OFF mode
289 * Applies for omap2 non-wakeup gpio and all omap3 gpios
290 */
291 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800292 bank->enabled_non_wakeup_gpios |= gpio_bit;
293 else
294 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
295 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700296
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530297exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530298 bank->level_mask =
299 __raw_readl(bank->base + bank->regs->leveldetect0) |
300 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100301}
302
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800303#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800304/*
305 * This only applies to chips that can't do both rising and falling edge
306 * detection at once. For all other chips, this function is a noop.
307 */
308static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
309{
310 void __iomem *reg = bank->base;
311 u32 l = 0;
312
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530313 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800314 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530315
316 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800317
318 l = __raw_readl(reg);
319 if ((l >> gpio) & 1)
320 l &= ~(1 << gpio);
321 else
322 l |= 1 << gpio;
323
324 __raw_writel(l, reg);
325}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530326#else
327static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800328#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800329
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530330static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
331 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100332{
333 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530334 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100335 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100336
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530337 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
338 set_gpio_trigger(bank, gpio, trigger);
339 } else if (bank->regs->irqctrl) {
340 reg += bank->regs->irqctrl;
341
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100342 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000343 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800344 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100345 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100346 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100347 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100348 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100349 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530350 return -EINVAL;
351
352 __raw_writel(l, reg);
353 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100354 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530355 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100356 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530357 reg += bank->regs->edgectrl1;
358
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100359 gpio &= 0x07;
360 l = __raw_readl(reg);
361 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100362 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100363 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100364 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100365 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530366
367 /* Enable wake-up during idle for dynamic tick */
368 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530369 bank->context.wake_en =
370 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530371 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100372 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100373 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100374}
375
Lennert Buytenheke9191022010-11-29 11:17:17 +0100376static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100377{
Benoit Cousson25db7112012-02-23 21:50:10 +0100378 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100379 unsigned gpio;
380 int retval;
David Brownella6472532008-03-03 04:33:30 -0800381 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100382
Lennert Buytenheke9191022010-11-29 11:17:17 +0100383 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
384 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100385 else
Benoit Cousson25db7112012-02-23 21:50:10 +0100386 gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100387
David Brownelle5c56ed2006-12-06 17:13:59 -0800388 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100389 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800390
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530391 if (!bank->regs->leveldetect0 &&
392 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100393 return -EINVAL;
394
David Brownella6472532008-03-03 04:33:30 -0800395 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700396 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800397 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800398
399 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100400 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800401 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100402 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800403
Tony Lindgren92105bb2005-09-07 17:20:26 +0100404 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100405}
406
407static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
408{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100409 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100410
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700411 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100412 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300413
414 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700415 if (bank->regs->irqstatus2) {
416 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700417 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700418 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700419
420 /* Flush posted write for the irq status to avoid spurious interrupts */
421 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100422}
423
424static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
425{
Kevin Hilman129fd222011-04-22 07:59:07 -0700426 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100427}
428
Imre Deakea6dedd2006-06-26 16:16:00 -0700429static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
430{
431 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700432 u32 l;
Kevin Hilmanc390aad2011-04-21 09:33:36 -0700433 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700434
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700435 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700436 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700437 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700438 l = ~l;
439 l &= mask;
440 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700441}
442
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700443static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100444{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100445 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100446 u32 l;
447
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700448 if (bank->regs->set_irqenable) {
449 reg += bank->regs->set_irqenable;
450 l = gpio_mask;
451 } else {
452 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100453 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700454 if (bank->regs->irqenable_inv)
455 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100456 else
457 l |= gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100458 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700459
460 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530461 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700462}
463
464static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
465{
466 void __iomem *reg = bank->base;
467 u32 l;
468
469 if (bank->regs->clr_irqenable) {
470 reg += bank->regs->clr_irqenable;
471 l = gpio_mask;
472 } else {
473 reg += bank->regs->irqenable;
474 l = __raw_readl(reg);
475 if (bank->regs->irqenable_inv)
476 l |= gpio_mask;
477 else
478 l &= ~gpio_mask;
479 }
480
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100481 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530482 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100483}
484
485static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
486{
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700487 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100488}
489
Tony Lindgren92105bb2005-09-07 17:20:26 +0100490/*
491 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
492 * 1510 does not seem to have a wake-up register. If JTAG is connected
493 * to the target, system will wake up always on GPIO events. While
494 * system is running all registered GPIO interrupts need to have wake-up
495 * enabled. When system is suspended, only selected GPIO interrupts need
496 * to have wake-up enabled.
497 */
498static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
499{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700500 u32 gpio_bit = GPIO_BIT(bank, gpio);
501 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800502
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700503 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100504 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700505 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100506 return -EINVAL;
507 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700508
509 spin_lock_irqsave(&bank->lock, flags);
510 if (enable)
511 bank->suspend_wakeup |= gpio_bit;
512 else
513 bank->suspend_wakeup &= ~gpio_bit;
514
Tarun Kanti DebBarma381a7522012-02-29 21:49:21 +0530515 __raw_writel(bank->suspend_wakeup, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700516 spin_unlock_irqrestore(&bank->lock, flags);
517
518 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100519}
520
Tony Lindgren4196dd62006-09-25 12:41:38 +0300521static void _reset_gpio(struct gpio_bank *bank, int gpio)
522{
Kevin Hilman129fd222011-04-22 07:59:07 -0700523 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300524 _set_gpio_irqenable(bank, gpio, 0);
525 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700526 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300527}
528
Tony Lindgren92105bb2005-09-07 17:20:26 +0100529/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100530static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100531{
Benoit Cousson25db7112012-02-23 21:50:10 +0100532 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
533 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100534
Benoit Cousson25db7112012-02-23 21:50:10 +0100535 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100536}
537
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800538static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100539{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800540 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800541 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100542
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530543 /*
544 * If this is the first gpio_request for the bank,
545 * enable the bank module.
546 */
547 if (!bank->mod_usage)
548 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100549
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530550 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300551 /* Set trigger to none. You need to enable the desired trigger with
552 * request_irq() or set_irq_type().
553 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800554 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100555
Charulatha Vfad96ea2011-05-25 11:23:50 +0530556 if (bank->regs->pinctrl) {
557 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100558
Tony Lindgren92105bb2005-09-07 17:20:26 +0100559 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800560 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100561 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530562
Charulatha Vc8eef652011-05-02 15:21:42 +0530563 if (bank->regs->ctrl && !bank->mod_usage) {
564 void __iomem *reg = bank->base + bank->regs->ctrl;
565 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700566
Charulatha Vc8eef652011-05-02 15:21:42 +0530567 ctrl = __raw_readl(reg);
568 /* Module is enabled, clocks are not gated */
569 ctrl &= ~GPIO_MOD_CTRL_BIT;
570 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530571 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800572 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530573
574 bank->mod_usage |= 1 << offset;
575
David Brownella6472532008-03-03 04:33:30 -0800576 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100577
578 return 0;
579}
580
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800581static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100582{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800583 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530584 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800585 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100586
David Brownella6472532008-03-03 04:33:30 -0800587 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530588
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530589 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100590 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530591 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530592 bank->context.wake_en =
593 __raw_readl(bank->base + bank->regs->wkup_en);
594 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530595
Charulatha Vc8eef652011-05-02 15:21:42 +0530596 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700597
Charulatha Vc8eef652011-05-02 15:21:42 +0530598 if (bank->regs->ctrl && !bank->mod_usage) {
599 void __iomem *reg = bank->base + bank->regs->ctrl;
600 u32 ctrl;
601
602 ctrl = __raw_readl(reg);
603 /* Module is disabled, clocks are gated */
604 ctrl |= GPIO_MOD_CTRL_BIT;
605 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530606 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800607 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530608
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800609 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800610 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530611
612 /*
613 * If this is the last gpio to be freed in the bank,
614 * disable the bank module.
615 */
616 if (!bank->mod_usage)
617 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100618}
619
620/*
621 * We need to unmask the GPIO bank interrupt as soon as possible to
622 * avoid missing GPIO interrupts for other lines in the bank.
623 * Then we need to mask-read-clear-unmask the triggered GPIO lines
624 * in the bank to avoid missing nested interrupts for a GPIO line.
625 * If we wait to unmask individual GPIO lines in the bank after the
626 * line's interrupt handler has been run, we may miss some nested
627 * interrupts.
628 */
Russell King10dd5ce2006-11-23 11:41:32 +0000629static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100630{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100631 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100632 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800633 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100634 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700635 u32 retrigger = 0;
636 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000637 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638
Will Deaconee144182011-02-21 13:46:08 +0000639 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100640
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100641 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700642 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530643 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800644
645 if (WARN_ON(!isr_reg))
646 goto exit;
647
Tony Lindgren92105bb2005-09-07 17:20:26 +0100648 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100649 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700650 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100651
Imre Deakea6dedd2006-06-26 16:16:00 -0700652 enabled = _get_gpio_irqbank_mask(bank);
653 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100654
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530655 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800656 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100657
658 /* clear edge sensitive interrupts before handler(s) are
659 called so that we don't miss any interrupt occurred while
660 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700661 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100662 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700663 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100664
665 /* if there is only edge sensitive GPIO pin interrupts
666 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700667 if (!level_mask && !unmasked) {
668 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000669 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700670 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100671
Imre Deakea6dedd2006-06-26 16:16:00 -0700672 isr |= retrigger;
673 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100674 if (!isr)
675 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100676
Benoit Cousson384ebe12011-08-16 11:53:02 +0200677 gpio_irq = bank->irq_base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100678 for (; isr != 0; isr >>= 1, gpio_irq++) {
Benoit Cousson25db7112012-02-23 21:50:10 +0100679 int gpio = irq_to_gpio(bank, gpio_irq);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800680
Tony Lindgren92105bb2005-09-07 17:20:26 +0100681 if (!(isr & 1))
682 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200683
Benoit Cousson25db7112012-02-23 21:50:10 +0100684 gpio_index = GPIO_INDEX(bank, gpio);
685
Cory Maccarrone4318f362010-01-08 10:29:04 -0800686 /*
687 * Some chips can't respond to both rising and falling
688 * at the same time. If this irq was requested with
689 * both flags, we need to flip the ICR data for the IRQ
690 * to respond to the IRQ for the opposite direction.
691 * This will be indicated in the bank toggle_mask.
692 */
693 if (bank->toggle_mask & (1 << gpio_index))
694 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800695
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100696 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100697 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000698 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700699 /* if bank has any level sensitive GPIO pin interrupt
700 configured, we must unmask the bank interrupt only after
701 handler(s) are executed in order to avoid spurious bank
702 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800703exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700704 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000705 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530706 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100707}
708
Lennert Buytenheke9191022010-11-29 11:17:17 +0100709static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300710{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100711 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100712 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700713 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300714
Colin Cross85ec7b92011-06-06 13:38:18 -0700715 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300716 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700717 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300718}
719
Lennert Buytenheke9191022010-11-29 11:17:17 +0100720static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100721{
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);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100724
725 _clear_gpio_irqstatus(bank, gpio);
726}
727
Lennert Buytenheke9191022010-11-29 11:17:17 +0100728static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100729{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100730 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100731 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700732 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100733
Colin Cross85ec7b92011-06-06 13:38:18 -0700734 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100735 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700736 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700737 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100738}
739
Lennert Buytenheke9191022010-11-29 11:17:17 +0100740static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100741{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100742 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100743 unsigned int gpio = irq_to_gpio(bank, d->irq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700744 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100745 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700746 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700747
Colin Cross85ec7b92011-06-06 13:38:18 -0700748 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700749 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700750 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800751
752 /* For level-triggered GPIOs, the clearing must be done after
753 * the HW source is cleared, thus after the handler has run */
754 if (bank->level_mask & irq_mask) {
755 _set_gpio_irqenable(bank, gpio, 0);
756 _clear_gpio_irqstatus(bank, gpio);
757 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100758
Kevin Hilman4de8c752008-01-16 21:56:14 -0800759 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700760 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100761}
762
David Brownelle5c56ed2006-12-06 17:13:59 -0800763static struct irq_chip gpio_irq_chip = {
764 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100765 .irq_shutdown = gpio_irq_shutdown,
766 .irq_ack = gpio_ack_irq,
767 .irq_mask = gpio_mask_irq,
768 .irq_unmask = gpio_unmask_irq,
769 .irq_set_type = gpio_irq_type,
770 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800771};
772
773/*---------------------------------------------------------------------*/
774
Magnus Damm79ee0312009-07-08 13:22:04 +0200775static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800776{
Magnus Damm79ee0312009-07-08 13:22:04 +0200777 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800778 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800779 void __iomem *mask_reg = bank->base +
780 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800781 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800782
David Brownella6472532008-03-03 04:33:30 -0800783 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800784 bank->saved_wakeup = __raw_readl(mask_reg);
785 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800786 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800787
788 return 0;
789}
790
Magnus Damm79ee0312009-07-08 13:22:04 +0200791static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800792{
Magnus Damm79ee0312009-07-08 13:22:04 +0200793 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800794 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800795 void __iomem *mask_reg = bank->base +
796 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800797 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800798
David Brownella6472532008-03-03 04:33:30 -0800799 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800800 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800801 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800802
803 return 0;
804}
805
Alexey Dobriyan47145212009-12-14 18:00:08 -0800806static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200807 .suspend_noirq = omap_mpuio_suspend_noirq,
808 .resume_noirq = omap_mpuio_resume_noirq,
809};
810
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200811/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800812static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800813 .driver = {
814 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200815 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800816 },
817};
818
819static struct platform_device omap_mpuio_device = {
820 .name = "mpuio",
821 .id = -1,
822 .dev = {
823 .driver = &omap_mpuio_driver.driver,
824 }
825 /* could list the /proc/iomem resources */
826};
827
Charulatha V03e128c2011-05-05 19:58:01 +0530828static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800829{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800830 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700831
David Brownell11a78b72006-12-06 17:14:11 -0800832 if (platform_driver_register(&omap_mpuio_driver) == 0)
833 (void) platform_device_register(&omap_mpuio_device);
834}
835
David Brownelle5c56ed2006-12-06 17:13:59 -0800836/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100837
David Brownell52e31342008-03-03 12:43:23 -0800838static int gpio_input(struct gpio_chip *chip, unsigned offset)
839{
840 struct gpio_bank *bank;
841 unsigned long flags;
842
843 bank = container_of(chip, struct gpio_bank, chip);
844 spin_lock_irqsave(&bank->lock, flags);
845 _set_gpio_direction(bank, offset, 1);
846 spin_unlock_irqrestore(&bank->lock, flags);
847 return 0;
848}
849
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300850static int gpio_is_input(struct gpio_bank *bank, int mask)
851{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700852 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300853
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300854 return __raw_readl(reg) & mask;
855}
856
David Brownell52e31342008-03-03 12:43:23 -0800857static int gpio_get(struct gpio_chip *chip, unsigned offset)
858{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300859 struct gpio_bank *bank;
860 void __iomem *reg;
861 int gpio;
862 u32 mask;
863
864 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530865 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300866 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700867 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300868
869 if (gpio_is_input(bank, mask))
870 return _get_gpio_datain(bank, gpio);
871 else
872 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -0800873}
874
875static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
876{
877 struct gpio_bank *bank;
878 unsigned long flags;
879
880 bank = container_of(chip, struct gpio_bank, chip);
881 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700882 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800883 _set_gpio_direction(bank, offset, 0);
884 spin_unlock_irqrestore(&bank->lock, flags);
885 return 0;
886}
887
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700888static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
889 unsigned debounce)
890{
891 struct gpio_bank *bank;
892 unsigned long flags;
893
894 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800895
896 if (!bank->dbck) {
897 bank->dbck = clk_get(bank->dev, "dbclk");
898 if (IS_ERR(bank->dbck))
899 dev_err(bank->dev, "Could not get gpio dbck\n");
900 }
901
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);
964 _gpio_rmw(base, bank->regs->irqstatus, l,
965 bank->regs->irqenable_inv == false);
966 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
967 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
968 if (bank->regs->debounce_en)
969 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
970
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530971 /* Save OE default value (0xffffffff) in the context */
972 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530973 /* Initialize interface clk ungated, module enabled */
974 if (bank->regs->ctrl)
975 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800976}
977
Tony Lindgren8805f412012-03-05 15:32:38 -0800978static __devinit void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700979omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
980 unsigned int num)
981{
982 struct irq_chip_generic *gc;
983 struct irq_chip_type *ct;
984
985 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
986 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700987 if (!gc) {
988 dev_err(bank->dev, "Memory alloc failed for gc\n");
989 return;
990 }
991
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700992 ct = gc->chip_types;
993
994 /* NOTE: No ack required, reading IRQ status clears it. */
995 ct->chip.irq_mask = irq_gc_mask_set_bit;
996 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
997 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530998
999 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001000 ct->chip.irq_set_wake = gpio_wake_enable,
1001
1002 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1003 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1004 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1005}
1006
Russell Kingd52b31d2011-05-27 13:56:12 -07001007static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001008{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001009 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001010 static int gpio;
1011
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001012 /*
1013 * REVISIT eventually switch from OMAP-specific gpio structs
1014 * over to the generic ones
1015 */
1016 bank->chip.request = omap_gpio_request;
1017 bank->chip.free = omap_gpio_free;
1018 bank->chip.direction_input = gpio_input;
1019 bank->chip.get = gpio_get;
1020 bank->chip.direction_output = gpio_output;
1021 bank->chip.set_debounce = gpio_debounce;
1022 bank->chip.set = gpio_set;
1023 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301024 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001025 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301026 if (bank->regs->wkup_en)
1027 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001028 bank->chip.base = OMAP_MPUIO(0);
1029 } else {
1030 bank->chip.label = "gpio";
1031 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001032 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001033 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001034 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001035
1036 gpiochip_add(&bank->chip);
1037
Benoit Cousson384ebe12011-08-16 11:53:02 +02001038 for (j = bank->irq_base; j < bank->irq_base + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001039 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001040 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301041 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001042 omap_mpuio_alloc_gc(bank, j, bank->width);
1043 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001044 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001045 irq_set_handler(j, handle_simple_irq);
1046 set_irq_flags(j, IRQF_VALID);
1047 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001048 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001049 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1050 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001051}
1052
Benoit Cousson384ebe12011-08-16 11:53:02 +02001053static const struct of_device_id omap_gpio_match[];
1054
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001055static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001056{
Benoit Cousson862ff642012-02-01 15:58:56 +01001057 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001058 struct device_node *node = dev->of_node;
1059 const struct of_device_id *match;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001060 struct omap_gpio_platform_data *pdata;
1061 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001062 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301063 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001064
Benoit Cousson384ebe12011-08-16 11:53:02 +02001065 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1066
1067 pdata = match ? match->data : dev->platform_data;
1068 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001069 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001070
Benoit Cousson96751fc2012-02-01 16:01:39 +01001071 bank = devm_kzalloc(&pdev->dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301072 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001073 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001074 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301075 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001076
1077 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1078 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001079 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001080 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001081 }
1082
1083 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001084 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001085 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001086 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001087 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301088 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301089 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301090 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301091 bank->get_context_loss_count = pdata->get_context_loss_count;
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
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301145 pm_runtime_put(bank->dev);
1146
Charulatha V03e128c2011-05-05 19:58:01 +05301147 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001148
Charulatha V03e128c2011-05-05 19:58:01 +05301149 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001150}
1151
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301152#ifdef CONFIG_ARCH_OMAP2PLUS
1153
1154#if defined(CONFIG_PM_SLEEP)
1155static int omap_gpio_suspend(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001156{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301157 struct platform_device *pdev = to_platform_device(dev);
1158 struct gpio_bank *bank = platform_get_drvdata(pdev);
1159 void __iomem *base = bank->base;
1160 void __iomem *wakeup_enable;
1161 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001162
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301163 if (!bank->mod_usage || !bank->loses_context)
1164 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001165
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301166 if (!bank->regs->wkup_en || !bank->suspend_wakeup)
1167 return 0;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301168
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301169 wakeup_enable = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001170
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301171 spin_lock_irqsave(&bank->lock, flags);
1172 bank->saved_wakeup = __raw_readl(wakeup_enable);
1173 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1174 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
1175 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001176
1177 return 0;
1178}
1179
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301180static int omap_gpio_resume(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001181{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301182 struct platform_device *pdev = to_platform_device(dev);
1183 struct gpio_bank *bank = platform_get_drvdata(pdev);
1184 void __iomem *base = bank->base;
1185 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001186
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301187 if (!bank->mod_usage || !bank->loses_context)
1188 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001189
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301190 if (!bank->regs->wkup_en || !bank->saved_wakeup)
1191 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001192
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301193 spin_lock_irqsave(&bank->lock, flags);
1194 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1195 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
1196 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301197
1198 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001199}
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301200#endif /* CONFIG_PM_SLEEP */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001201
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301202#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301203static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001204
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301205static int omap_gpio_runtime_suspend(struct device *dev)
1206{
1207 struct platform_device *pdev = to_platform_device(dev);
1208 struct gpio_bank *bank = platform_get_drvdata(pdev);
1209 u32 l1 = 0, l2 = 0;
1210 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001211 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301212
1213 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001214
1215 /*
1216 * Only edges can generate a wakeup event to the PRCM.
1217 *
1218 * Therefore, ensure any wake-up capable GPIOs have
1219 * edge-detection enabled before going idle to ensure a wakeup
1220 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1221 * NDA TRM 25.5.3.1)
1222 *
1223 * The normal values will be restored upon ->runtime_resume()
1224 * by writing back the values saved in bank->context.
1225 */
1226 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1227 if (wake_low)
1228 __raw_writel(wake_low | bank->context.fallingdetect,
1229 bank->base + bank->regs->fallingdetect);
1230 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1231 if (wake_hi)
1232 __raw_writel(wake_hi | bank->context.risingdetect,
1233 bank->base + bank->regs->risingdetect);
1234
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301235 if (bank->power_mode != OFF_MODE) {
1236 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301237 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301238 }
1239 /*
1240 * If going to OFF, remove triggering for all
1241 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1242 * generated. See OMAP2420 Errata item 1.101.
1243 */
1244 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301245 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301246
1247 bank->saved_datain = __raw_readl(bank->base +
1248 bank->regs->datain);
1249 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1250 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
1251
1252 bank->saved_fallingdetect = l1;
1253 bank->saved_risingdetect = l2;
1254 l1 &= ~bank->enabled_non_wakeup_gpios;
1255 l2 &= ~bank->enabled_non_wakeup_gpios;
1256
1257 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1258 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1259
1260 bank->workaround_enabled = true;
1261
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301262update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301263 if (bank->get_context_loss_count)
1264 bank->context_loss_count =
1265 bank->get_context_loss_count(bank->dev);
1266
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +05301267 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301268 spin_unlock_irqrestore(&bank->lock, flags);
1269
1270 return 0;
1271}
1272
1273static int omap_gpio_runtime_resume(struct device *dev)
1274{
1275 struct platform_device *pdev = to_platform_device(dev);
1276 struct gpio_bank *bank = platform_get_drvdata(pdev);
1277 int context_lost_cnt_after;
1278 u32 l = 0, gen, gen0, gen1;
1279 unsigned long flags;
1280
1281 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af2011-11-24 03:03:28 +05301282 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001283
1284 /*
1285 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1286 * GPIOs were set to edge trigger also in order to be able to
1287 * generate a PRCM wakeup. Here we restore the
1288 * pre-runtime_suspend() values for edge triggering.
1289 */
1290 __raw_writel(bank->context.fallingdetect,
1291 bank->base + bank->regs->fallingdetect);
1292 __raw_writel(bank->context.risingdetect,
1293 bank->base + bank->regs->risingdetect);
1294
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301295 if (!bank->enabled_non_wakeup_gpios || !bank->workaround_enabled) {
1296 spin_unlock_irqrestore(&bank->lock, flags);
1297 return 0;
1298 }
1299
1300 if (bank->get_context_loss_count) {
1301 context_lost_cnt_after =
1302 bank->get_context_loss_count(bank->dev);
1303 if (context_lost_cnt_after != bank->context_loss_count ||
1304 !context_lost_cnt_after) {
1305 omap_gpio_restore_context(bank);
1306 } else {
1307 spin_unlock_irqrestore(&bank->lock, flags);
1308 return 0;
1309 }
1310 }
1311
1312 __raw_writel(bank->saved_fallingdetect,
1313 bank->base + bank->regs->fallingdetect);
1314 __raw_writel(bank->saved_risingdetect,
1315 bank->base + bank->regs->risingdetect);
1316 l = __raw_readl(bank->base + bank->regs->datain);
1317
1318 /*
1319 * Check if any of the non-wakeup interrupt GPIOs have changed
1320 * state. If so, generate an IRQ by software. This is
1321 * horribly racy, but it's the best we can do to work around
1322 * this silicon bug.
1323 */
1324 l ^= bank->saved_datain;
1325 l &= bank->enabled_non_wakeup_gpios;
1326
1327 /*
1328 * No need to generate IRQs for the rising edge for gpio IRQs
1329 * configured with falling edge only; and vice versa.
1330 */
1331 gen0 = l & bank->saved_fallingdetect;
1332 gen0 &= bank->saved_datain;
1333
1334 gen1 = l & bank->saved_risingdetect;
1335 gen1 &= ~(bank->saved_datain);
1336
1337 /* FIXME: Consider GPIO IRQs with level detections properly! */
1338 gen = l & (~(bank->saved_fallingdetect) & ~(bank->saved_risingdetect));
1339 /* Consider all GPIO IRQs needed to be updated */
1340 gen |= gen0 | gen1;
1341
1342 if (gen) {
1343 u32 old0, old1;
1344
1345 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1346 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1347
1348 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1349 __raw_writel(old0 | gen, bank->base +
1350 bank->regs->leveldetect0);
1351 __raw_writel(old1 | gen, bank->base +
1352 bank->regs->leveldetect1);
1353 }
1354
1355 if (cpu_is_omap44xx()) {
1356 __raw_writel(old0 | l, bank->base +
1357 bank->regs->leveldetect0);
1358 __raw_writel(old1 | l, bank->base +
1359 bank->regs->leveldetect1);
1360 }
1361 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1362 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1363 }
1364
1365 bank->workaround_enabled = false;
1366 spin_unlock_irqrestore(&bank->lock, flags);
1367
1368 return 0;
1369}
1370#endif /* CONFIG_PM_RUNTIME */
1371
1372void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001373{
Charulatha V03e128c2011-05-05 19:58:01 +05301374 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001375
Charulatha V03e128c2011-05-05 19:58:01 +05301376 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301377 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301378 continue;
1379
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301380 bank->power_mode = pwr_mode;
1381
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301382 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001383 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001384}
1385
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001386void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001387{
Charulatha V03e128c2011-05-05 19:58:01 +05301388 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001389
Charulatha V03e128c2011-05-05 19:58:01 +05301390 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301391 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301392 continue;
1393
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301394 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001395 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001396}
1397
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301398#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301399static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301400{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301401 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301402 bank->base + bank->regs->wkup_en);
1403 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301404 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301405 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301406 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301407 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301408 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301409 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301410 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301411 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301412 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1413 __raw_writel(bank->context.dataout,
1414 bank->base + bank->regs->set_dataout);
1415 else
1416 __raw_writel(bank->context.dataout,
1417 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301418 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1419
Nishanth Menonae547352011-09-09 19:08:58 +05301420 if (bank->dbck_enable_mask) {
1421 __raw_writel(bank->context.debounce, bank->base +
1422 bank->regs->debounce);
1423 __raw_writel(bank->context.debounce_en,
1424 bank->base + bank->regs->debounce_en);
1425 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301426
1427 __raw_writel(bank->context.irqenable1,
1428 bank->base + bank->regs->irqenable);
1429 __raw_writel(bank->context.irqenable2,
1430 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301431}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301432#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301433#else
1434#define omap_gpio_suspend NULL
1435#define omap_gpio_resume NULL
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301436#define omap_gpio_runtime_suspend NULL
1437#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301438#endif
1439
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301440static const struct dev_pm_ops gpio_pm_ops = {
1441 SET_SYSTEM_SLEEP_PM_OPS(omap_gpio_suspend, omap_gpio_resume)
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301442 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1443 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301444};
1445
Benoit Cousson384ebe12011-08-16 11:53:02 +02001446#if defined(CONFIG_OF)
1447static struct omap_gpio_reg_offs omap2_gpio_regs = {
1448 .revision = OMAP24XX_GPIO_REVISION,
1449 .direction = OMAP24XX_GPIO_OE,
1450 .datain = OMAP24XX_GPIO_DATAIN,
1451 .dataout = OMAP24XX_GPIO_DATAOUT,
1452 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1453 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1454 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1455 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1456 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1457 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1458 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1459 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1460 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1461 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1462 .ctrl = OMAP24XX_GPIO_CTRL,
1463 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1464 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1465 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1466 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1467 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1468};
1469
1470static struct omap_gpio_reg_offs omap4_gpio_regs = {
1471 .revision = OMAP4_GPIO_REVISION,
1472 .direction = OMAP4_GPIO_OE,
1473 .datain = OMAP4_GPIO_DATAIN,
1474 .dataout = OMAP4_GPIO_DATAOUT,
1475 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1476 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1477 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1478 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1479 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1480 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1481 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1482 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1483 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1484 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1485 .ctrl = OMAP4_GPIO_CTRL,
1486 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1487 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1488 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1489 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1490 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1491};
1492
1493static struct omap_gpio_platform_data omap2_pdata = {
1494 .regs = &omap2_gpio_regs,
1495 .bank_width = 32,
1496 .dbck_flag = false,
1497};
1498
1499static struct omap_gpio_platform_data omap3_pdata = {
1500 .regs = &omap2_gpio_regs,
1501 .bank_width = 32,
1502 .dbck_flag = true,
1503};
1504
1505static struct omap_gpio_platform_data omap4_pdata = {
1506 .regs = &omap4_gpio_regs,
1507 .bank_width = 32,
1508 .dbck_flag = true,
1509};
1510
1511static const struct of_device_id omap_gpio_match[] = {
1512 {
1513 .compatible = "ti,omap4-gpio",
1514 .data = &omap4_pdata,
1515 },
1516 {
1517 .compatible = "ti,omap3-gpio",
1518 .data = &omap3_pdata,
1519 },
1520 {
1521 .compatible = "ti,omap2-gpio",
1522 .data = &omap2_pdata,
1523 },
1524 { },
1525};
1526MODULE_DEVICE_TABLE(of, omap_gpio_match);
1527#endif
1528
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001529static struct platform_driver omap_gpio_driver = {
1530 .probe = omap_gpio_probe,
1531 .driver = {
1532 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301533 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001534 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001535 },
1536};
1537
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001538/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001539 * gpio driver register needs to be done before
1540 * machine_init functions access gpio APIs.
1541 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001542 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001543static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001544{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001545 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001546}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001547postcore_initcall(omap_gpio_drv_reg);