blob: d3f7d2db870f985253a603f3f53f2b5475ee97f6 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01002 * Support functions for OMAP GPIO
3 *
Tony Lindgren92105bb2005-09-07 17:20:26 +01004 * Copyright (C) 2003-2005 Nokia Corporation
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01006 *
Santosh Shilimkar44169072009-05-28 14:16:04 -07007 * Copyright (C) 2009 Texas Instruments
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
9 *
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010015#include <linux/init.h>
16#include <linux/module.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010017#include <linux/interrupt.h>
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +020018#include <linux/syscore_ops.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010019#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000020#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
Benoit Cousson96751fc2012-02-01 16:01:39 +010022#include <linux/device.h>
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080023#include <linux/pm_runtime.h>
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +053024#include <linux/pm.h>
Benoit Cousson384ebe12011-08-16 11:53:02 +020025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000028#include <linux/irqchip/chained_irq.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070029#include <linux/gpio.h>
30#include <linux/platform_data/gpio-omap.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010031
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053032#define OFF_MODE 1
33
Charulatha V03e128c2011-05-05 19:58:01 +053034static LIST_HEAD(omap_gpio_list);
35
Charulatha V6d62e212011-04-18 15:06:51 +000036struct gpio_regs {
37 u32 irqenable1;
38 u32 irqenable2;
39 u32 wake_en;
40 u32 ctrl;
41 u32 oe;
42 u32 leveldetect0;
43 u32 leveldetect1;
44 u32 risingdetect;
45 u32 fallingdetect;
46 u32 dataout;
Nishanth Menonae547352011-09-09 19:08:58 +053047 u32 debounce;
48 u32 debounce_en;
Charulatha V6d62e212011-04-18 15:06:51 +000049};
50
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010051struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053052 struct list_head node;
Tony Lindgren92105bb2005-09-07 17:20:26 +010053 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010054 u16 irq;
Benoit Cousson384ebe12011-08-16 11:53:02 +020055 struct irq_domain *domain;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080056 u32 non_wakeup_gpios;
57 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000058 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080059 u32 saved_datain;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080060 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080061 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010062 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080063 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080064 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080065 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080066 u32 dbck_enable_mask;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053067 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080068 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053069 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080070 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053071 bool loses_context;
Jon Hunter352a2d52013-04-15 13:06:54 -050072 bool context_valid;
Tony Lindgren5de62b82010-12-07 16:26:58 -080073 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070074 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053075 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053076 int power_mode;
77 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070078
79 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053080 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070081
82 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010083};
84
Kevin Hilman129fd222011-04-22 07:59:07 -070085#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
86#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053087#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010088
Benoit Cousson25db7112012-02-23 21:50:10 +010089static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
90{
Jon Hunterede4d7a2013-03-01 11:22:47 -060091 return bank->chip.base + gpio_irq;
92}
93
94static int omap_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
95{
96 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
97
98 return irq_find_mapping(bank->domain, offset);
Benoit Cousson25db7112012-02-23 21:50:10 +010099}
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
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530150static int _get_gpio_datain(struct gpio_bank *bank, int offset)
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
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530154 return (__raw_readl(reg) & (1 << offset)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100155}
156
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530157static int _get_gpio_dataout(struct gpio_bank *bank, int offset)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300158{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700159 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300160
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530161 return (__raw_readl(reg) & (1 << offset)) != 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 DebBarma72f83af92011-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;
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300181
182 __raw_writel(bank->dbck_enable_mask,
183 bank->base + bank->regs->debounce_en);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530184 }
185}
186
187static inline void _gpio_dbck_disable(struct gpio_bank *bank)
188{
189 if (bank->dbck_enable_mask && bank->dbck_enabled) {
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300190 /*
191 * Disable debounce before cutting it's clock. If debounce is
192 * enabled but the clock is not, GPIO module seems to be unable
193 * to detect events and generate interrupts at least on OMAP3.
194 */
195 __raw_writel(0, bank->base + bank->regs->debounce_en);
196
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530197 clk_disable(bank->dbck);
198 bank->dbck_enabled = false;
199 }
200}
201
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700202/**
203 * _set_gpio_debounce - low level gpio debounce time
204 * @bank: the gpio bank we're acting upon
205 * @gpio: the gpio number on this @gpio
206 * @debounce: debounce time to use
207 *
208 * OMAP's debounce time is in 31us steps so we need
209 * to convert and round up to the closest unit.
210 */
211static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
212 unsigned debounce)
213{
Kevin Hilman9942da02011-04-22 12:02:05 -0700214 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700215 u32 val;
216 u32 l;
217
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800218 if (!bank->dbck_flag)
219 return;
220
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700221 if (debounce < 32)
222 debounce = 0x01;
223 else if (debounce > 7936)
224 debounce = 0xff;
225 else
226 debounce = (debounce / 0x1f) - 1;
227
Kevin Hilman129fd222011-04-22 07:59:07 -0700228 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700229
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530230 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700231 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700232 __raw_writel(debounce, reg);
233
Kevin Hilman9942da02011-04-22 12:02:05 -0700234 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700235 val = __raw_readl(reg);
236
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530237 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700238 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530239 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700240 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300241 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700242
243 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530244 clk_disable(bank->dbck);
245 /*
246 * Enable debounce clock per module.
247 * This call is mandatory because in omap_gpio_request() when
248 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
249 * runtime callbck fails to turn on dbck because dbck_enable_mask
250 * used within _gpio_dbck_enable() is still not initialized at
251 * that point. Therefore we have to enable dbck here.
252 */
253 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530254 if (bank->dbck_enable_mask) {
255 bank->context.debounce = debounce;
256 bank->context.debounce_en = val;
257 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700258}
259
Jon Hunterc9c55d92012-10-26 14:26:04 -0500260/**
261 * _clear_gpio_debounce - clear debounce settings for a gpio
262 * @bank: the gpio bank we're acting upon
263 * @gpio: the gpio number on this @gpio
264 *
265 * If a gpio is using debounce, then clear the debounce enable bit and if
266 * this is the only gpio in this bank using debounce, then clear the debounce
267 * time too. The debounce clock will also be disabled when calling this function
268 * if this is the only gpio in the bank using debounce.
269 */
270static void _clear_gpio_debounce(struct gpio_bank *bank, unsigned gpio)
271{
272 u32 gpio_bit = GPIO_BIT(bank, gpio);
273
274 if (!bank->dbck_flag)
275 return;
276
277 if (!(bank->dbck_enable_mask & gpio_bit))
278 return;
279
280 bank->dbck_enable_mask &= ~gpio_bit;
281 bank->context.debounce_en &= ~gpio_bit;
282 __raw_writel(bank->context.debounce_en,
283 bank->base + bank->regs->debounce_en);
284
285 if (!bank->dbck_enable_mask) {
286 bank->context.debounce = 0;
287 __raw_writel(bank->context.debounce, bank->base +
288 bank->regs->debounce);
289 clk_disable(bank->dbck);
290 bank->dbck_enabled = false;
291 }
292}
293
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530294static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530295 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100296{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800297 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100298 u32 gpio_bit = 1 << gpio;
299
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530300 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
301 trigger & IRQ_TYPE_LEVEL_LOW);
302 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
303 trigger & IRQ_TYPE_LEVEL_HIGH);
304 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
305 trigger & IRQ_TYPE_EDGE_RISING);
306 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
307 trigger & IRQ_TYPE_EDGE_FALLING);
308
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530309 bank->context.leveldetect0 =
310 __raw_readl(bank->base + bank->regs->leveldetect0);
311 bank->context.leveldetect1 =
312 __raw_readl(bank->base + bank->regs->leveldetect1);
313 bank->context.risingdetect =
314 __raw_readl(bank->base + bank->regs->risingdetect);
315 bank->context.fallingdetect =
316 __raw_readl(bank->base + bank->regs->fallingdetect);
317
318 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530319 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530320 bank->context.wake_en =
321 __raw_readl(bank->base + bank->regs->wkup_en);
322 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530323
Ambresh K55b220c2011-06-15 13:40:45 -0700324 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530325 if (!bank->regs->irqctrl) {
326 /* On omap24xx proceed only when valid GPIO bit is set */
327 if (bank->non_wakeup_gpios) {
328 if (!(bank->non_wakeup_gpios & gpio_bit))
329 goto exit;
330 }
331
Chunqiu Wang699117a62009-06-24 17:13:39 +0000332 /*
333 * Log the edge gpio and manually trigger the IRQ
334 * after resume if the input level changes
335 * to avoid irq lost during PER RET/OFF mode
336 * Applies for omap2 non-wakeup gpio and all omap3 gpios
337 */
338 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800339 bank->enabled_non_wakeup_gpios |= gpio_bit;
340 else
341 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
342 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700343
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530344exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530345 bank->level_mask =
346 __raw_readl(bank->base + bank->regs->leveldetect0) |
347 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100348}
349
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800350#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800351/*
352 * This only applies to chips that can't do both rising and falling edge
353 * detection at once. For all other chips, this function is a noop.
354 */
355static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
356{
357 void __iomem *reg = bank->base;
358 u32 l = 0;
359
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530360 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800361 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530362
363 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800364
365 l = __raw_readl(reg);
366 if ((l >> gpio) & 1)
367 l &= ~(1 << gpio);
368 else
369 l |= 1 << gpio;
370
371 __raw_writel(l, reg);
372}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530373#else
374static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800375#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800376
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530377static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
378 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100379{
380 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530381 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100382 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100383
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530384 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
385 set_gpio_trigger(bank, gpio, trigger);
386 } else if (bank->regs->irqctrl) {
387 reg += bank->regs->irqctrl;
388
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100389 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000390 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800391 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100392 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100393 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100394 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100395 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100396 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530397 return -EINVAL;
398
399 __raw_writel(l, reg);
400 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100401 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530402 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100403 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530404 reg += bank->regs->edgectrl1;
405
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100406 gpio &= 0x07;
407 l = __raw_readl(reg);
408 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100409 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100410 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100411 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100412 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530413
414 /* Enable wake-up during idle for dynamic tick */
415 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530416 bank->context.wake_en =
417 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530418 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100419 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100420 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100421}
422
Lennert Buytenheke9191022010-11-29 11:17:17 +0100423static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100424{
Benoit Cousson25db7112012-02-23 21:50:10 +0100425 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren4b254082012-08-30 15:37:24 -0700426 unsigned gpio = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100427 int retval;
David Brownella6472532008-03-03 04:33:30 -0800428 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100429
Jon Hunter8d4c2772013-03-01 11:22:48 -0600430 if (WARN_ON(!bank->mod_usage))
431 return -EINVAL;
432
Tony Lindgren4b254082012-08-30 15:37:24 -0700433#ifdef CONFIG_ARCH_OMAP1
434 if (d->irq > IH_MPUIO_BASE)
Lennert Buytenheke9191022010-11-29 11:17:17 +0100435 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren4b254082012-08-30 15:37:24 -0700436#endif
437
438 if (!gpio)
Jon Hunterede4d7a2013-03-01 11:22:47 -0600439 gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100440
David Brownelle5c56ed2006-12-06 17:13:59 -0800441 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100442 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800443
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530444 if (!bank->regs->leveldetect0 &&
445 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100446 return -EINVAL;
447
David Brownella6472532008-03-03 04:33:30 -0800448 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700449 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800450 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800451
452 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100453 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800454 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100455 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800456
Tony Lindgren92105bb2005-09-07 17:20:26 +0100457 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100458}
459
460static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
461{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100462 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100463
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700464 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100465 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300466
467 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700468 if (bank->regs->irqstatus2) {
469 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700470 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700471 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700472
473 /* Flush posted write for the irq status to avoid spurious interrupts */
474 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100475}
476
477static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
478{
Kevin Hilman129fd222011-04-22 07:59:07 -0700479 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100480}
481
Imre Deakea6dedd2006-06-26 16:16:00 -0700482static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
483{
484 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700485 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700486 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700487
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700488 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700489 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700490 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700491 l = ~l;
492 l &= mask;
493 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700494}
495
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700496static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100497{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100498 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100499 u32 l;
500
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700501 if (bank->regs->set_irqenable) {
502 reg += bank->regs->set_irqenable;
503 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530504 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700505 } else {
506 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100507 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700508 if (bank->regs->irqenable_inv)
509 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100510 else
511 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530512 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100513 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700514
515 __raw_writel(l, reg);
516}
517
518static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
519{
520 void __iomem *reg = bank->base;
521 u32 l;
522
523 if (bank->regs->clr_irqenable) {
524 reg += bank->regs->clr_irqenable;
525 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530526 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700527 } else {
528 reg += bank->regs->irqenable;
529 l = __raw_readl(reg);
530 if (bank->regs->irqenable_inv)
531 l |= gpio_mask;
532 else
533 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530534 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700535 }
536
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100537 __raw_writel(l, reg);
538}
539
540static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
541{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530542 if (enable)
543 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
544 else
545 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100546}
547
Tony Lindgren92105bb2005-09-07 17:20:26 +0100548/*
549 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
550 * 1510 does not seem to have a wake-up register. If JTAG is connected
551 * to the target, system will wake up always on GPIO events. While
552 * system is running all registered GPIO interrupts need to have wake-up
553 * enabled. When system is suspended, only selected GPIO interrupts need
554 * to have wake-up enabled.
555 */
556static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
557{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700558 u32 gpio_bit = GPIO_BIT(bank, gpio);
559 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800560
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700561 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100562 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700563 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100564 return -EINVAL;
565 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700566
567 spin_lock_irqsave(&bank->lock, flags);
568 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530569 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700570 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530571 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700572
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530573 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700574 spin_unlock_irqrestore(&bank->lock, flags);
575
576 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100577}
578
Tony Lindgren4196dd62006-09-25 12:41:38 +0300579static void _reset_gpio(struct gpio_bank *bank, int gpio)
580{
Kevin Hilman129fd222011-04-22 07:59:07 -0700581 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300582 _set_gpio_irqenable(bank, gpio, 0);
583 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700584 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Jon Hunterc9c55d92012-10-26 14:26:04 -0500585 _clear_gpio_debounce(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300586}
587
Tony Lindgren92105bb2005-09-07 17:20:26 +0100588/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100589static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100590{
Benoit Cousson25db7112012-02-23 21:50:10 +0100591 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600592 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100593
Benoit Cousson25db7112012-02-23 21:50:10 +0100594 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100595}
596
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800597static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100598{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800599 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800600 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100601
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530602 /*
603 * If this is the first gpio_request for the bank,
604 * enable the bank module.
605 */
606 if (!bank->mod_usage)
607 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100608
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530609 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300610 /* Set trigger to none. You need to enable the desired trigger with
611 * request_irq() or set_irq_type().
612 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800613 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100614
Charulatha Vfad96ea2011-05-25 11:23:50 +0530615 if (bank->regs->pinctrl) {
616 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100617
Tony Lindgren92105bb2005-09-07 17:20:26 +0100618 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800619 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100620 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530621
Charulatha Vc8eef652011-05-02 15:21:42 +0530622 if (bank->regs->ctrl && !bank->mod_usage) {
623 void __iomem *reg = bank->base + bank->regs->ctrl;
624 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700625
Charulatha Vc8eef652011-05-02 15:21:42 +0530626 ctrl = __raw_readl(reg);
627 /* Module is enabled, clocks are not gated */
628 ctrl &= ~GPIO_MOD_CTRL_BIT;
629 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530630 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800631 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530632
633 bank->mod_usage |= 1 << offset;
634
David Brownella6472532008-03-03 04:33:30 -0800635 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100636
637 return 0;
638}
639
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800640static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100641{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800642 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530643 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800644 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100645
David Brownella6472532008-03-03 04:33:30 -0800646 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530647
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530648 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100649 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530650 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530651 bank->context.wake_en =
652 __raw_readl(bank->base + bank->regs->wkup_en);
653 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530654
Charulatha Vc8eef652011-05-02 15:21:42 +0530655 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700656
Charulatha Vc8eef652011-05-02 15:21:42 +0530657 if (bank->regs->ctrl && !bank->mod_usage) {
658 void __iomem *reg = bank->base + bank->regs->ctrl;
659 u32 ctrl;
660
661 ctrl = __raw_readl(reg);
662 /* Module is disabled, clocks are gated */
663 ctrl |= GPIO_MOD_CTRL_BIT;
664 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530665 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800666 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530667
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800668 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800669 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530670
671 /*
672 * If this is the last gpio to be freed in the bank,
673 * disable the bank module.
674 */
675 if (!bank->mod_usage)
676 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100677}
678
679/*
680 * We need to unmask the GPIO bank interrupt as soon as possible to
681 * avoid missing GPIO interrupts for other lines in the bank.
682 * Then we need to mask-read-clear-unmask the triggered GPIO lines
683 * in the bank to avoid missing nested interrupts for a GPIO line.
684 * If we wait to unmask individual GPIO lines in the bank after the
685 * line's interrupt handler has been run, we may miss some nested
686 * interrupts.
687 */
Russell King10dd5ce2006-11-23 11:41:32 +0000688static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100689{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100690 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100691 u32 isr;
Jon Hunter3513cde2013-04-04 15:16:14 -0500692 unsigned int bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100693 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700694 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000695 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100696
Will Deaconee144182011-02-21 13:46:08 +0000697 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100698
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100699 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700700 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530701 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800702
703 if (WARN_ON(!isr_reg))
704 goto exit;
705
Laurent Navete83507b2013-03-20 13:15:57 +0100706 while (1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100707 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700708 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100709
Imre Deakea6dedd2006-06-26 16:16:00 -0700710 enabled = _get_gpio_irqbank_mask(bank);
711 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100712
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530713 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800714 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100715
716 /* clear edge sensitive interrupts before handler(s) are
717 called so that we don't miss any interrupt occurred while
718 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700719 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100720 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700721 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100722
723 /* if there is only edge sensitive GPIO pin interrupts
724 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700725 if (!level_mask && !unmasked) {
726 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000727 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700728 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100729
Tony Lindgren92105bb2005-09-07 17:20:26 +0100730 if (!isr)
731 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100732
Jon Hunter3513cde2013-04-04 15:16:14 -0500733 while (isr) {
734 bit = __ffs(isr);
735 isr &= ~(1 << bit);
Benoit Cousson25db7112012-02-23 21:50:10 +0100736
Cory Maccarrone4318f362010-01-08 10:29:04 -0800737 /*
738 * Some chips can't respond to both rising and falling
739 * at the same time. If this irq was requested with
740 * both flags, we need to flip the ICR data for the IRQ
741 * to respond to the IRQ for the opposite direction.
742 * This will be indicated in the bank toggle_mask.
743 */
Jon Hunter3513cde2013-04-04 15:16:14 -0500744 if (bank->toggle_mask & (1 << bit))
745 _toggle_gpio_edge_triggering(bank, bit);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800746
Jon Hunter3513cde2013-04-04 15:16:14 -0500747 generic_handle_irq(irq_find_mapping(bank->domain, bit));
Tony Lindgren92105bb2005-09-07 17:20:26 +0100748 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000749 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700750 /* if bank has any level sensitive GPIO pin interrupt
751 configured, we must unmask the bank interrupt only after
752 handler(s) are executed in order to avoid spurious bank
753 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800754exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700755 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000756 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530757 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100758}
759
Lennert Buytenheke9191022010-11-29 11:17:17 +0100760static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300761{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100762 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600763 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700764 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300765
Colin Cross85ec7b92011-06-06 13:38:18 -0700766 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300767 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700768 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300769}
770
Lennert Buytenheke9191022010-11-29 11:17:17 +0100771static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100772{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100773 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600774 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100775
776 _clear_gpio_irqstatus(bank, gpio);
777}
778
Lennert Buytenheke9191022010-11-29 11:17:17 +0100779static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100780{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100781 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600782 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700783 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100784
Colin Cross85ec7b92011-06-06 13:38:18 -0700785 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100786 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700787 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700788 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100789}
790
Lennert Buytenheke9191022010-11-29 11:17:17 +0100791static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100792{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100793 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600794 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700795 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100796 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700797 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700798
Colin Cross85ec7b92011-06-06 13:38:18 -0700799 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700800 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700801 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800802
803 /* For level-triggered GPIOs, the clearing must be done after
804 * the HW source is cleared, thus after the handler has run */
805 if (bank->level_mask & irq_mask) {
806 _set_gpio_irqenable(bank, gpio, 0);
807 _clear_gpio_irqstatus(bank, gpio);
808 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100809
Kevin Hilman4de8c752008-01-16 21:56:14 -0800810 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700811 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100812}
813
David Brownelle5c56ed2006-12-06 17:13:59 -0800814static struct irq_chip gpio_irq_chip = {
815 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100816 .irq_shutdown = gpio_irq_shutdown,
817 .irq_ack = gpio_ack_irq,
818 .irq_mask = gpio_mask_irq,
819 .irq_unmask = gpio_unmask_irq,
820 .irq_set_type = gpio_irq_type,
821 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800822};
823
824/*---------------------------------------------------------------------*/
825
Magnus Damm79ee0312009-07-08 13:22:04 +0200826static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800827{
Magnus Damm79ee0312009-07-08 13:22:04 +0200828 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800829 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800830 void __iomem *mask_reg = bank->base +
831 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800832 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800833
David Brownella6472532008-03-03 04:33:30 -0800834 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530835 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800836 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800837
838 return 0;
839}
840
Magnus Damm79ee0312009-07-08 13:22:04 +0200841static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800842{
Magnus Damm79ee0312009-07-08 13:22:04 +0200843 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800844 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800845 void __iomem *mask_reg = bank->base +
846 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800847 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800848
David Brownella6472532008-03-03 04:33:30 -0800849 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530850 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800851 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800852
853 return 0;
854}
855
Alexey Dobriyan47145212009-12-14 18:00:08 -0800856static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200857 .suspend_noirq = omap_mpuio_suspend_noirq,
858 .resume_noirq = omap_mpuio_resume_noirq,
859};
860
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200861/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800862static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800863 .driver = {
864 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200865 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800866 },
867};
868
869static struct platform_device omap_mpuio_device = {
870 .name = "mpuio",
871 .id = -1,
872 .dev = {
873 .driver = &omap_mpuio_driver.driver,
874 }
875 /* could list the /proc/iomem resources */
876};
877
Charulatha V03e128c2011-05-05 19:58:01 +0530878static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800879{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800880 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700881
David Brownell11a78b72006-12-06 17:14:11 -0800882 if (platform_driver_register(&omap_mpuio_driver) == 0)
883 (void) platform_device_register(&omap_mpuio_device);
884}
885
David Brownelle5c56ed2006-12-06 17:13:59 -0800886/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100887
David Brownell52e31342008-03-03 12:43:23 -0800888static int gpio_input(struct gpio_chip *chip, unsigned offset)
889{
890 struct gpio_bank *bank;
891 unsigned long flags;
892
893 bank = container_of(chip, struct gpio_bank, chip);
894 spin_lock_irqsave(&bank->lock, flags);
895 _set_gpio_direction(bank, offset, 1);
896 spin_unlock_irqrestore(&bank->lock, flags);
897 return 0;
898}
899
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300900static int gpio_is_input(struct gpio_bank *bank, int mask)
901{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700902 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300903
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300904 return __raw_readl(reg) & mask;
905}
906
David Brownell52e31342008-03-03 12:43:23 -0800907static int gpio_get(struct gpio_chip *chip, unsigned offset)
908{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300909 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300910 u32 mask;
911
Charulatha Va8be8da2011-04-22 16:38:16 +0530912 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530913 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300914
915 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530916 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300917 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530918 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800919}
920
921static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
922{
923 struct gpio_bank *bank;
924 unsigned long flags;
925
926 bank = container_of(chip, struct gpio_bank, chip);
927 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700928 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800929 _set_gpio_direction(bank, offset, 0);
930 spin_unlock_irqrestore(&bank->lock, flags);
931 return 0;
932}
933
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700934static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
935 unsigned debounce)
936{
937 struct gpio_bank *bank;
938 unsigned long flags;
939
940 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800941
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700942 spin_lock_irqsave(&bank->lock, flags);
943 _set_gpio_debounce(bank, offset, debounce);
944 spin_unlock_irqrestore(&bank->lock, flags);
945
946 return 0;
947}
948
David Brownell52e31342008-03-03 12:43:23 -0800949static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
950{
951 struct gpio_bank *bank;
952 unsigned long flags;
953
954 bank = container_of(chip, struct gpio_bank, chip);
955 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700956 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800957 spin_unlock_irqrestore(&bank->lock, flags);
958}
959
960/*---------------------------------------------------------------------*/
961
Tony Lindgren9a748052010-12-07 16:26:56 -0800962static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700963{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700964 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700965 u32 rev;
966
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700967 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700968 return;
969
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700970 rev = __raw_readw(bank->base + bank->regs->revision);
971 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700972 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700973
974 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700975}
976
David Brownell8ba55c52008-02-26 11:10:50 -0800977/* This lock class tells lockdep that GPIO irqs are in a different
978 * category than their parents, so it won't report false recursion.
979 */
980static struct lock_class_key gpio_lock_class;
981
Charulatha V03e128c2011-05-05 19:58:01 +0530982static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800983{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530984 void __iomem *base = bank->base;
985 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800986
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530987 if (bank->width == 16)
988 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800989
Charulatha Vd0d665a2011-08-31 00:02:21 +0530990 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530991 __raw_writel(l, bank->base + bank->regs->irqenable);
992 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800993 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530994
995 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530996 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530997 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530998 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530999
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301000 /* Save OE default value (0xffffffff) in the context */
1001 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301002 /* Initialize interface clk ungated, module enabled */
1003 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301004 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +05301005
1006 bank->dbck = clk_get(bank->dev, "dbclk");
1007 if (IS_ERR(bank->dbck))
1008 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001009}
1010
Bill Pemberton38363092012-11-19 13:22:34 -05001011static void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001012omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
1013 unsigned int num)
1014{
1015 struct irq_chip_generic *gc;
1016 struct irq_chip_type *ct;
1017
1018 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
1019 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -07001020 if (!gc) {
1021 dev_err(bank->dev, "Memory alloc failed for gc\n");
1022 return;
1023 }
1024
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001025 ct = gc->chip_types;
1026
1027 /* NOTE: No ack required, reading IRQ status clears it. */
1028 ct->chip.irq_mask = irq_gc_mask_set_bit;
1029 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1030 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301031
1032 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001033 ct->chip.irq_set_wake = gpio_wake_enable,
1034
1035 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1036 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1037 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1038}
1039
Bill Pemberton38363092012-11-19 13:22:34 -05001040static void omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001041{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001042 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001043 static int gpio;
1044
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001045 /*
1046 * REVISIT eventually switch from OMAP-specific gpio structs
1047 * over to the generic ones
1048 */
1049 bank->chip.request = omap_gpio_request;
1050 bank->chip.free = omap_gpio_free;
1051 bank->chip.direction_input = gpio_input;
1052 bank->chip.get = gpio_get;
1053 bank->chip.direction_output = gpio_output;
1054 bank->chip.set_debounce = gpio_debounce;
1055 bank->chip.set = gpio_set;
Jon Hunterede4d7a2013-03-01 11:22:47 -06001056 bank->chip.to_irq = omap_gpio_to_irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301057 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001058 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301059 if (bank->regs->wkup_en)
1060 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001061 bank->chip.base = OMAP_MPUIO(0);
1062 } else {
1063 bank->chip.label = "gpio";
1064 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001065 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001066 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001067 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001068
1069 gpiochip_add(&bank->chip);
1070
Jon Hunterede4d7a2013-03-01 11:22:47 -06001071 for (j = 0; j < bank->width; j++) {
1072 int irq = irq_create_mapping(bank->domain, j);
1073 irq_set_lockdep_class(irq, &gpio_lock_class);
1074 irq_set_chip_data(irq, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301075 if (bank->is_mpuio) {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001076 omap_mpuio_alloc_gc(bank, irq, bank->width);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001077 } else {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001078 irq_set_chip_and_handler(irq, &gpio_irq_chip,
1079 handle_simple_irq);
1080 set_irq_flags(irq, IRQF_VALID);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001081 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001082 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001083 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1084 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001085}
1086
Benoit Cousson384ebe12011-08-16 11:53:02 +02001087static const struct of_device_id omap_gpio_match[];
1088
Bill Pemberton38363092012-11-19 13:22:34 -05001089static int omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001090{
Benoit Cousson862ff642012-02-01 15:58:56 +01001091 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001092 struct device_node *node = dev->of_node;
1093 const struct of_device_id *match;
Uwe Kleine-Königf6817a22012-05-21 21:57:39 +02001094 const struct omap_gpio_platform_data *pdata;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001095 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001096 struct gpio_bank *bank;
1097
Benoit Cousson384ebe12011-08-16 11:53:02 +02001098 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1099
1100 pdata = match ? match->data : dev->platform_data;
1101 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001102 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001103
Tobias Klauser086d5852012-10-05 11:37:38 +02001104 bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301105 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001106 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001107 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301108 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001109
1110 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1111 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001112 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001113 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001114 }
1115
1116 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001117 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001118 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001119 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001120 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301121 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301122 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001123 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001124#ifdef CONFIG_OF_GPIO
1125 bank->chip.of_node = of_node_get(node);
1126#endif
Jon Huntera2797be2013-04-04 15:16:15 -05001127 if (node) {
1128 if (!of_property_read_bool(node, "ti,gpio-always-on"))
1129 bank->loses_context = true;
1130 } else {
1131 bank->loses_context = pdata->loses_context;
Jon Hunter352a2d52013-04-15 13:06:54 -05001132
1133 if (bank->loses_context)
1134 bank->get_context_loss_count =
1135 pdata->get_context_loss_count;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001136 }
1137
Benoit Cousson384ebe12011-08-16 11:53:02 +02001138
Jon Hunterede4d7a2013-03-01 11:22:47 -06001139 bank->domain = irq_domain_add_linear(node, bank->width,
1140 &irq_domain_simple_ops, NULL);
1141 if (!bank->domain)
Benoit Cousson384ebe12011-08-16 11:53:02 +02001142 return -ENODEV;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001143
1144 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1145 bank->set_dataout = _set_gpio_dataout_reg;
1146 else
1147 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001148
1149 spin_lock_init(&bank->lock);
1150
1151 /* Static mapping, never released */
1152 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1153 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001154 dev_err(dev, "Invalid mem resource\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001155 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001156 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001157 }
1158
Benoit Cousson96751fc2012-02-01 16:01:39 +01001159 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1160 pdev->name)) {
1161 dev_err(dev, "Region already claimed\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001162 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001163 return -EBUSY;
1164 }
1165
1166 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001167 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001168 dev_err(dev, "Could not ioremap\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001169 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001170 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001171 }
1172
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301173 platform_set_drvdata(pdev, bank);
1174
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001175 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301176 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001177 pm_runtime_get_sync(bank->dev);
1178
Charulatha Vd0d665a2011-08-31 00:02:21 +05301179 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301180 mpuio_init(bank);
1181
Charulatha V03e128c2011-05-05 19:58:01 +05301182 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001183 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001184 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001185
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301186 pm_runtime_put(bank->dev);
1187
Charulatha V03e128c2011-05-05 19:58:01 +05301188 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001189
Jon Hunter879fe322013-04-04 15:16:12 -05001190 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001191}
1192
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301193#ifdef CONFIG_ARCH_OMAP2PLUS
1194
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301195#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301196static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001197
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301198static int omap_gpio_runtime_suspend(struct device *dev)
1199{
1200 struct platform_device *pdev = to_platform_device(dev);
1201 struct gpio_bank *bank = platform_get_drvdata(pdev);
1202 u32 l1 = 0, l2 = 0;
1203 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001204 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301205
1206 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001207
1208 /*
1209 * Only edges can generate a wakeup event to the PRCM.
1210 *
1211 * Therefore, ensure any wake-up capable GPIOs have
1212 * edge-detection enabled before going idle to ensure a wakeup
1213 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1214 * NDA TRM 25.5.3.1)
1215 *
1216 * The normal values will be restored upon ->runtime_resume()
1217 * by writing back the values saved in bank->context.
1218 */
1219 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1220 if (wake_low)
1221 __raw_writel(wake_low | bank->context.fallingdetect,
1222 bank->base + bank->regs->fallingdetect);
1223 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1224 if (wake_hi)
1225 __raw_writel(wake_hi | bank->context.risingdetect,
1226 bank->base + bank->regs->risingdetect);
1227
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001228 if (!bank->enabled_non_wakeup_gpios)
1229 goto update_gpio_context_count;
1230
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301231 if (bank->power_mode != OFF_MODE) {
1232 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301233 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301234 }
1235 /*
1236 * If going to OFF, remove triggering for all
1237 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1238 * generated. See OMAP2420 Errata item 1.101.
1239 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301240 bank->saved_datain = __raw_readl(bank->base +
1241 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301242 l1 = bank->context.fallingdetect;
1243 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301244
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301245 l1 &= ~bank->enabled_non_wakeup_gpios;
1246 l2 &= ~bank->enabled_non_wakeup_gpios;
1247
1248 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1249 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1250
1251 bank->workaround_enabled = true;
1252
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301253update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301254 if (bank->get_context_loss_count)
1255 bank->context_loss_count =
1256 bank->get_context_loss_count(bank->dev);
1257
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301258 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301259 spin_unlock_irqrestore(&bank->lock, flags);
1260
1261 return 0;
1262}
1263
Jon Hunter352a2d52013-04-15 13:06:54 -05001264static void omap_gpio_init_context(struct gpio_bank *p);
1265
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301266static int omap_gpio_runtime_resume(struct device *dev)
1267{
1268 struct platform_device *pdev = to_platform_device(dev);
1269 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301270 u32 l = 0, gen, gen0, gen1;
1271 unsigned long flags;
Jon Huntera2797be2013-04-04 15:16:15 -05001272 int c;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301273
1274 spin_lock_irqsave(&bank->lock, flags);
Jon Hunter352a2d52013-04-15 13:06:54 -05001275
1276 /*
1277 * On the first resume during the probe, the context has not
1278 * been initialised and so initialise it now. Also initialise
1279 * the context loss count.
1280 */
1281 if (bank->loses_context && !bank->context_valid) {
1282 omap_gpio_init_context(bank);
1283
1284 if (bank->get_context_loss_count)
1285 bank->context_loss_count =
1286 bank->get_context_loss_count(bank->dev);
1287 }
1288
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301289 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001290
1291 /*
1292 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1293 * GPIOs were set to edge trigger also in order to be able to
1294 * generate a PRCM wakeup. Here we restore the
1295 * pre-runtime_suspend() values for edge triggering.
1296 */
1297 __raw_writel(bank->context.fallingdetect,
1298 bank->base + bank->regs->fallingdetect);
1299 __raw_writel(bank->context.risingdetect,
1300 bank->base + bank->regs->risingdetect);
1301
Jon Huntera2797be2013-04-04 15:16:15 -05001302 if (bank->loses_context) {
1303 if (!bank->get_context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301304 omap_gpio_restore_context(bank);
1305 } else {
Jon Huntera2797be2013-04-04 15:16:15 -05001306 c = bank->get_context_loss_count(bank->dev);
1307 if (c != bank->context_loss_count) {
1308 omap_gpio_restore_context(bank);
1309 } else {
1310 spin_unlock_irqrestore(&bank->lock, flags);
1311 return 0;
1312 }
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301313 }
1314 }
1315
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301316 if (!bank->workaround_enabled) {
1317 spin_unlock_irqrestore(&bank->lock, flags);
1318 return 0;
1319 }
1320
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301321 l = __raw_readl(bank->base + bank->regs->datain);
1322
1323 /*
1324 * Check if any of the non-wakeup interrupt GPIOs have changed
1325 * state. If so, generate an IRQ by software. This is
1326 * horribly racy, but it's the best we can do to work around
1327 * this silicon bug.
1328 */
1329 l ^= bank->saved_datain;
1330 l &= bank->enabled_non_wakeup_gpios;
1331
1332 /*
1333 * No need to generate IRQs for the rising edge for gpio IRQs
1334 * configured with falling edge only; and vice versa.
1335 */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301336 gen0 = l & bank->context.fallingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301337 gen0 &= bank->saved_datain;
1338
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301339 gen1 = l & bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301340 gen1 &= ~(bank->saved_datain);
1341
1342 /* FIXME: Consider GPIO IRQs with level detections properly! */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301343 gen = l & (~(bank->context.fallingdetect) &
1344 ~(bank->context.risingdetect));
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301345 /* 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
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301354 if (!bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301355 __raw_writel(old0 | gen, bank->base +
1356 bank->regs->leveldetect0);
1357 __raw_writel(old1 | gen, bank->base +
1358 bank->regs->leveldetect1);
1359 }
1360
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301361 if (bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301362 __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)
Jon Hunter352a2d52013-04-15 13:06:54 -05001405static void omap_gpio_init_context(struct gpio_bank *p)
1406{
1407 struct omap_gpio_reg_offs *regs = p->regs;
1408 void __iomem *base = p->base;
1409
1410 p->context.ctrl = __raw_readl(base + regs->ctrl);
1411 p->context.oe = __raw_readl(base + regs->direction);
1412 p->context.wake_en = __raw_readl(base + regs->wkup_en);
1413 p->context.leveldetect0 = __raw_readl(base + regs->leveldetect0);
1414 p->context.leveldetect1 = __raw_readl(base + regs->leveldetect1);
1415 p->context.risingdetect = __raw_readl(base + regs->risingdetect);
1416 p->context.fallingdetect = __raw_readl(base + regs->fallingdetect);
1417 p->context.irqenable1 = __raw_readl(base + regs->irqenable);
1418 p->context.irqenable2 = __raw_readl(base + regs->irqenable2);
1419
1420 if (regs->set_dataout && p->regs->clr_dataout)
1421 p->context.dataout = __raw_readl(base + regs->set_dataout);
1422 else
1423 p->context.dataout = __raw_readl(base + regs->dataout);
1424
1425 p->context_valid = true;
1426}
1427
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301428static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301429{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301430 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301431 bank->base + bank->regs->wkup_en);
1432 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301433 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301434 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301435 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301436 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301437 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301438 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301439 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301440 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301441 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1442 __raw_writel(bank->context.dataout,
1443 bank->base + bank->regs->set_dataout);
1444 else
1445 __raw_writel(bank->context.dataout,
1446 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301447 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1448
Nishanth Menonae547352011-09-09 19:08:58 +05301449 if (bank->dbck_enable_mask) {
1450 __raw_writel(bank->context.debounce, bank->base +
1451 bank->regs->debounce);
1452 __raw_writel(bank->context.debounce_en,
1453 bank->base + bank->regs->debounce_en);
1454 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301455
1456 __raw_writel(bank->context.irqenable1,
1457 bank->base + bank->regs->irqenable);
1458 __raw_writel(bank->context.irqenable2,
1459 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301460}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301461#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301462#else
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301463#define omap_gpio_runtime_suspend NULL
1464#define omap_gpio_runtime_resume NULL
Jon Hunter352a2d52013-04-15 13:06:54 -05001465static void omap_gpio_init_context(struct gpio_bank *p) {}
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301466#endif
1467
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301468static const struct dev_pm_ops gpio_pm_ops = {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301469 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1470 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301471};
1472
Benoit Cousson384ebe12011-08-16 11:53:02 +02001473#if defined(CONFIG_OF)
1474static struct omap_gpio_reg_offs omap2_gpio_regs = {
1475 .revision = OMAP24XX_GPIO_REVISION,
1476 .direction = OMAP24XX_GPIO_OE,
1477 .datain = OMAP24XX_GPIO_DATAIN,
1478 .dataout = OMAP24XX_GPIO_DATAOUT,
1479 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1480 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1481 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1482 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1483 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1484 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1485 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1486 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1487 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1488 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1489 .ctrl = OMAP24XX_GPIO_CTRL,
1490 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1491 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1492 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1493 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1494 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1495};
1496
1497static struct omap_gpio_reg_offs omap4_gpio_regs = {
1498 .revision = OMAP4_GPIO_REVISION,
1499 .direction = OMAP4_GPIO_OE,
1500 .datain = OMAP4_GPIO_DATAIN,
1501 .dataout = OMAP4_GPIO_DATAOUT,
1502 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1503 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1504 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1505 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1506 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1507 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1508 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1509 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1510 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1511 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1512 .ctrl = OMAP4_GPIO_CTRL,
1513 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1514 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1515 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1516 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1517 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1518};
1519
Chen Gange9a65bb2013-02-06 18:44:32 +08001520static const struct omap_gpio_platform_data omap2_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001521 .regs = &omap2_gpio_regs,
1522 .bank_width = 32,
1523 .dbck_flag = false,
1524};
1525
Chen Gange9a65bb2013-02-06 18:44:32 +08001526static const struct omap_gpio_platform_data omap3_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001527 .regs = &omap2_gpio_regs,
1528 .bank_width = 32,
1529 .dbck_flag = true,
1530};
1531
Chen Gange9a65bb2013-02-06 18:44:32 +08001532static const struct omap_gpio_platform_data omap4_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001533 .regs = &omap4_gpio_regs,
1534 .bank_width = 32,
1535 .dbck_flag = true,
1536};
1537
1538static const struct of_device_id omap_gpio_match[] = {
1539 {
1540 .compatible = "ti,omap4-gpio",
1541 .data = &omap4_pdata,
1542 },
1543 {
1544 .compatible = "ti,omap3-gpio",
1545 .data = &omap3_pdata,
1546 },
1547 {
1548 .compatible = "ti,omap2-gpio",
1549 .data = &omap2_pdata,
1550 },
1551 { },
1552};
1553MODULE_DEVICE_TABLE(of, omap_gpio_match);
1554#endif
1555
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001556static struct platform_driver omap_gpio_driver = {
1557 .probe = omap_gpio_probe,
1558 .driver = {
1559 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301560 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001561 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001562 },
1563};
1564
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001565/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001566 * gpio driver register needs to be done before
1567 * machine_init functions access gpio APIs.
1568 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001569 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001570static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001571{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001572 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001573}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001574postcore_initcall(omap_gpio_drv_reg);