blob: a4fe038d090e7b154bd9167c0cfaf80e5a3c911d [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;
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +020066 u32 irq_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080067 u32 dbck_enable_mask;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053068 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080069 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053070 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080071 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053072 bool loses_context;
Jon Hunter352a2d52013-04-15 13:06:54 -050073 bool context_valid;
Tony Lindgren5de62b82010-12-07 16:26:58 -080074 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070075 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053076 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053077 int power_mode;
78 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070079
80 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053081 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070082
83 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010084};
85
Kevin Hilman129fd222011-04-22 07:59:07 -070086#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
87#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053088#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010089
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +020090#define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
91#define LINE_USED(line, offset) (line & (1 << offset))
92
Benoit Cousson25db7112012-02-23 21:50:10 +010093static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
94{
Jon Hunterede4d7a2013-03-01 11:22:47 -060095 return bank->chip.base + gpio_irq;
96}
97
98static int omap_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
99{
100 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
101
102 return irq_find_mapping(bank->domain, offset);
Benoit Cousson25db7112012-02-23 21:50:10 +0100103}
104
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100105static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
106{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100107 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100108 u32 l;
109
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700110 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100111 l = __raw_readl(reg);
112 if (is_input)
113 l |= 1 << gpio;
114 else
115 l &= ~(1 << gpio);
116 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530117 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100118}
119
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700120
121/* set data out value using dedicate set/clear register */
122static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100123{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100124 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700125 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100126
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530127 if (enable) {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700128 reg += bank->regs->set_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530129 bank->context.dataout |= l;
130 } else {
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700131 reg += bank->regs->clr_dataout;
Tarun Kanti DebBarma2c836f72012-03-02 12:52:52 +0530132 bank->context.dataout &= ~l;
133 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700134
135 __raw_writel(l, reg);
136}
137
138/* set data out value using mask register */
139static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
140{
141 void __iomem *reg = bank->base + bank->regs->dataout;
142 u32 gpio_bit = GPIO_BIT(bank, gpio);
143 u32 l;
144
145 l = __raw_readl(reg);
146 if (enable)
147 l |= gpio_bit;
148 else
149 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530151 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100152}
153
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530154static int _get_gpio_datain(struct gpio_bank *bank, int offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100155{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700156 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100157
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530158 return (__raw_readl(reg) & (1 << offset)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100159}
160
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530161static int _get_gpio_dataout(struct gpio_bank *bank, int offset)
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300162{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700163 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300164
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530165 return (__raw_readl(reg) & (1 << offset)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300166}
167
Kevin Hilmanece95282011-07-12 08:18:15 -0700168static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
169{
170 int l = __raw_readl(base + reg);
171
Benoit Cousson862ff642012-02-01 15:58:56 +0100172 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700173 l |= mask;
174 else
175 l &= ~mask;
176
177 __raw_writel(l, base + reg);
178}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100179
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530180static inline void _gpio_dbck_enable(struct gpio_bank *bank)
181{
182 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
183 clk_enable(bank->dbck);
184 bank->dbck_enabled = true;
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300185
186 __raw_writel(bank->dbck_enable_mask,
187 bank->base + bank->regs->debounce_en);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530188 }
189}
190
191static inline void _gpio_dbck_disable(struct gpio_bank *bank)
192{
193 if (bank->dbck_enable_mask && bank->dbck_enabled) {
Grazvydas Ignotas9e303f22012-06-16 22:01:25 +0300194 /*
195 * Disable debounce before cutting it's clock. If debounce is
196 * enabled but the clock is not, GPIO module seems to be unable
197 * to detect events and generate interrupts at least on OMAP3.
198 */
199 __raw_writel(0, bank->base + bank->regs->debounce_en);
200
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530201 clk_disable(bank->dbck);
202 bank->dbck_enabled = false;
203 }
204}
205
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700206/**
207 * _set_gpio_debounce - low level gpio debounce time
208 * @bank: the gpio bank we're acting upon
209 * @gpio: the gpio number on this @gpio
210 * @debounce: debounce time to use
211 *
212 * OMAP's debounce time is in 31us steps so we need
213 * to convert and round up to the closest unit.
214 */
215static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
216 unsigned debounce)
217{
Kevin Hilman9942da02011-04-22 12:02:05 -0700218 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700219 u32 val;
220 u32 l;
221
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800222 if (!bank->dbck_flag)
223 return;
224
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225 if (debounce < 32)
226 debounce = 0x01;
227 else if (debounce > 7936)
228 debounce = 0xff;
229 else
230 debounce = (debounce / 0x1f) - 1;
231
Kevin Hilman129fd222011-04-22 07:59:07 -0700232 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700233
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530234 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700235 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700236 __raw_writel(debounce, reg);
237
Kevin Hilman9942da02011-04-22 12:02:05 -0700238 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700239 val = __raw_readl(reg);
240
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530241 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700242 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530243 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700244 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300245 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700246
247 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530248 clk_disable(bank->dbck);
249 /*
250 * Enable debounce clock per module.
251 * This call is mandatory because in omap_gpio_request() when
252 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
253 * runtime callbck fails to turn on dbck because dbck_enable_mask
254 * used within _gpio_dbck_enable() is still not initialized at
255 * that point. Therefore we have to enable dbck here.
256 */
257 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530258 if (bank->dbck_enable_mask) {
259 bank->context.debounce = debounce;
260 bank->context.debounce_en = val;
261 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700262}
263
Jon Hunterc9c55d92012-10-26 14:26:04 -0500264/**
265 * _clear_gpio_debounce - clear debounce settings for a gpio
266 * @bank: the gpio bank we're acting upon
267 * @gpio: the gpio number on this @gpio
268 *
269 * If a gpio is using debounce, then clear the debounce enable bit and if
270 * this is the only gpio in this bank using debounce, then clear the debounce
271 * time too. The debounce clock will also be disabled when calling this function
272 * if this is the only gpio in the bank using debounce.
273 */
274static void _clear_gpio_debounce(struct gpio_bank *bank, unsigned gpio)
275{
276 u32 gpio_bit = GPIO_BIT(bank, gpio);
277
278 if (!bank->dbck_flag)
279 return;
280
281 if (!(bank->dbck_enable_mask & gpio_bit))
282 return;
283
284 bank->dbck_enable_mask &= ~gpio_bit;
285 bank->context.debounce_en &= ~gpio_bit;
286 __raw_writel(bank->context.debounce_en,
287 bank->base + bank->regs->debounce_en);
288
289 if (!bank->dbck_enable_mask) {
290 bank->context.debounce = 0;
291 __raw_writel(bank->context.debounce, bank->base +
292 bank->regs->debounce);
293 clk_disable(bank->dbck);
294 bank->dbck_enabled = false;
295 }
296}
297
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530298static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530299 unsigned trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100300{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800301 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100302 u32 gpio_bit = 1 << gpio;
303
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530304 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
305 trigger & IRQ_TYPE_LEVEL_LOW);
306 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
307 trigger & IRQ_TYPE_LEVEL_HIGH);
308 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
309 trigger & IRQ_TYPE_EDGE_RISING);
310 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
311 trigger & IRQ_TYPE_EDGE_FALLING);
312
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530313 bank->context.leveldetect0 =
314 __raw_readl(bank->base + bank->regs->leveldetect0);
315 bank->context.leveldetect1 =
316 __raw_readl(bank->base + bank->regs->leveldetect1);
317 bank->context.risingdetect =
318 __raw_readl(bank->base + bank->regs->risingdetect);
319 bank->context.fallingdetect =
320 __raw_readl(bank->base + bank->regs->fallingdetect);
321
322 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530323 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530324 bank->context.wake_en =
325 __raw_readl(bank->base + bank->regs->wkup_en);
326 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530327
Ambresh K55b220c2011-06-15 13:40:45 -0700328 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530329 if (!bank->regs->irqctrl) {
330 /* On omap24xx proceed only when valid GPIO bit is set */
331 if (bank->non_wakeup_gpios) {
332 if (!(bank->non_wakeup_gpios & gpio_bit))
333 goto exit;
334 }
335
Chunqiu Wang699117a62009-06-24 17:13:39 +0000336 /*
337 * Log the edge gpio and manually trigger the IRQ
338 * after resume if the input level changes
339 * to avoid irq lost during PER RET/OFF mode
340 * Applies for omap2 non-wakeup gpio and all omap3 gpios
341 */
342 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800343 bank->enabled_non_wakeup_gpios |= gpio_bit;
344 else
345 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
346 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700347
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530348exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530349 bank->level_mask =
350 __raw_readl(bank->base + bank->regs->leveldetect0) |
351 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100352}
353
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800354#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800355/*
356 * This only applies to chips that can't do both rising and falling edge
357 * detection at once. For all other chips, this function is a noop.
358 */
359static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
360{
361 void __iomem *reg = bank->base;
362 u32 l = 0;
363
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530364 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800365 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530366
367 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800368
369 l = __raw_readl(reg);
370 if ((l >> gpio) & 1)
371 l &= ~(1 << gpio);
372 else
373 l |= 1 << gpio;
374
375 __raw_writel(l, reg);
376}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530377#else
378static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800379#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800380
Tarun Kanti DebBarma00ece7e2011-11-25 15:41:06 +0530381static int _set_gpio_triggering(struct gpio_bank *bank, int gpio,
382 unsigned trigger)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100383{
384 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530385 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100386 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100387
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530388 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
389 set_gpio_trigger(bank, gpio, trigger);
390 } else if (bank->regs->irqctrl) {
391 reg += bank->regs->irqctrl;
392
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100393 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000394 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800395 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100396 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100397 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100398 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100399 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100400 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530401 return -EINVAL;
402
403 __raw_writel(l, reg);
404 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100405 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530406 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100407 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530408 reg += bank->regs->edgectrl1;
409
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100410 gpio &= 0x07;
411 l = __raw_readl(reg);
412 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100413 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100414 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100415 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100416 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530417
418 /* Enable wake-up during idle for dynamic tick */
419 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530420 bank->context.wake_en =
421 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530422 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100423 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100424 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100425}
426
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200427static int gpio_is_input(struct gpio_bank *bank, int mask)
428{
429 void __iomem *reg = bank->base + bank->regs->direction;
430
431 return __raw_readl(reg) & mask;
432}
433
Lennert Buytenheke9191022010-11-29 11:17:17 +0100434static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100435{
Benoit Cousson25db7112012-02-23 21:50:10 +0100436 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren4b254082012-08-30 15:37:24 -0700437 unsigned gpio = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100438 int retval;
David Brownella6472532008-03-03 04:33:30 -0800439 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100440
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200441 if (WARN_ON(!BANK_USED(bank)))
Jon Hunter8d4c2772013-03-01 11:22:48 -0600442 return -EINVAL;
443
Tony Lindgren4b254082012-08-30 15:37:24 -0700444#ifdef CONFIG_ARCH_OMAP1
445 if (d->irq > IH_MPUIO_BASE)
Lennert Buytenheke9191022010-11-29 11:17:17 +0100446 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren4b254082012-08-30 15:37:24 -0700447#endif
448
449 if (!gpio)
Jon Hunterede4d7a2013-03-01 11:22:47 -0600450 gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100451
David Brownelle5c56ed2006-12-06 17:13:59 -0800452 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100453 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800454
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530455 if (!bank->regs->leveldetect0 &&
456 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100457 return -EINVAL;
458
David Brownella6472532008-03-03 04:33:30 -0800459 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700460 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200461 bank->irq_usage |= 1 << GPIO_INDEX(bank, gpio);
David Brownella6472532008-03-03 04:33:30 -0800462 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800463
464 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100465 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800466 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100467 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800468
Tony Lindgren92105bb2005-09-07 17:20:26 +0100469 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100470}
471
472static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
473{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100474 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100475
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700476 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100477 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300478
479 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700480 if (bank->regs->irqstatus2) {
481 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700482 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700483 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700484
485 /* Flush posted write for the irq status to avoid spurious interrupts */
486 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100487}
488
489static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
490{
Kevin Hilman129fd222011-04-22 07:59:07 -0700491 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100492}
493
Imre Deakea6dedd2006-06-26 16:16:00 -0700494static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
495{
496 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700497 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700498 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700499
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700500 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700501 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700502 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700503 l = ~l;
504 l &= mask;
505 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700506}
507
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700508static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100509{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100510 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100511 u32 l;
512
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700513 if (bank->regs->set_irqenable) {
514 reg += bank->regs->set_irqenable;
515 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530516 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700517 } else {
518 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100519 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700520 if (bank->regs->irqenable_inv)
521 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100522 else
523 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530524 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100525 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700526
527 __raw_writel(l, reg);
528}
529
530static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
531{
532 void __iomem *reg = bank->base;
533 u32 l;
534
535 if (bank->regs->clr_irqenable) {
536 reg += bank->regs->clr_irqenable;
537 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530538 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700539 } else {
540 reg += bank->regs->irqenable;
541 l = __raw_readl(reg);
542 if (bank->regs->irqenable_inv)
543 l |= gpio_mask;
544 else
545 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530546 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700547 }
548
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100549 __raw_writel(l, reg);
550}
551
552static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
553{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530554 if (enable)
555 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
556 else
557 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100558}
559
Tony Lindgren92105bb2005-09-07 17:20:26 +0100560/*
561 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
562 * 1510 does not seem to have a wake-up register. If JTAG is connected
563 * to the target, system will wake up always on GPIO events. While
564 * system is running all registered GPIO interrupts need to have wake-up
565 * enabled. When system is suspended, only selected GPIO interrupts need
566 * to have wake-up enabled.
567 */
568static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
569{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700570 u32 gpio_bit = GPIO_BIT(bank, gpio);
571 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800572
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700573 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100574 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700575 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100576 return -EINVAL;
577 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700578
579 spin_lock_irqsave(&bank->lock, flags);
580 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530581 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700582 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530583 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700584
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530585 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700586 spin_unlock_irqrestore(&bank->lock, flags);
587
588 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100589}
590
Tony Lindgren4196dd62006-09-25 12:41:38 +0300591static void _reset_gpio(struct gpio_bank *bank, int gpio)
592{
Kevin Hilman129fd222011-04-22 07:59:07 -0700593 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300594 _set_gpio_irqenable(bank, gpio, 0);
595 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700596 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Jon Hunterc9c55d92012-10-26 14:26:04 -0500597 _clear_gpio_debounce(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300598}
599
Tony Lindgren92105bb2005-09-07 17:20:26 +0100600/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100601static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100602{
Benoit Cousson25db7112012-02-23 21:50:10 +0100603 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600604 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100605
Benoit Cousson25db7112012-02-23 21:50:10 +0100606 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100607}
608
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800609static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100610{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800611 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800612 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100613
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530614 /*
615 * If this is the first gpio_request for the bank,
616 * enable the bank module.
617 */
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200618 if (!BANK_USED(bank))
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530619 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100620
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530621 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300622 /* Set trigger to none. You need to enable the desired trigger with
623 * request_irq() or set_irq_type().
624 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800625 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100626
Charulatha Vfad96ea2011-05-25 11:23:50 +0530627 if (bank->regs->pinctrl) {
628 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100629
Tony Lindgren92105bb2005-09-07 17:20:26 +0100630 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800631 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100632 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530633
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200634 if (bank->regs->ctrl && !BANK_USED(bank)) {
Charulatha Vc8eef652011-05-02 15:21:42 +0530635 void __iomem *reg = bank->base + bank->regs->ctrl;
636 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700637
Charulatha Vc8eef652011-05-02 15:21:42 +0530638 ctrl = __raw_readl(reg);
639 /* Module is enabled, clocks are not gated */
640 ctrl &= ~GPIO_MOD_CTRL_BIT;
641 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530642 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800643 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530644
645 bank->mod_usage |= 1 << offset;
646
David Brownella6472532008-03-03 04:33:30 -0800647 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100648
649 return 0;
650}
651
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800652static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100653{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800654 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530655 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800656 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100657
David Brownella6472532008-03-03 04:33:30 -0800658 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530659
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530660 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100661 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530662 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530663 bank->context.wake_en =
664 __raw_readl(bank->base + bank->regs->wkup_en);
665 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530666
Charulatha Vc8eef652011-05-02 15:21:42 +0530667 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700668
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200669 if (bank->regs->ctrl && !BANK_USED(bank)) {
Charulatha Vc8eef652011-05-02 15:21:42 +0530670 void __iomem *reg = bank->base + bank->regs->ctrl;
671 u32 ctrl;
672
673 ctrl = __raw_readl(reg);
674 /* Module is disabled, clocks are gated */
675 ctrl |= GPIO_MOD_CTRL_BIT;
676 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530677 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800678 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530679
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800680 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800681 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530682
683 /*
684 * If this is the last gpio to be freed in the bank,
685 * disable the bank module.
686 */
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200687 if (!BANK_USED(bank))
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530688 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100689}
690
691/*
692 * We need to unmask the GPIO bank interrupt as soon as possible to
693 * avoid missing GPIO interrupts for other lines in the bank.
694 * Then we need to mask-read-clear-unmask the triggered GPIO lines
695 * in the bank to avoid missing nested interrupts for a GPIO line.
696 * If we wait to unmask individual GPIO lines in the bank after the
697 * line's interrupt handler has been run, we may miss some nested
698 * interrupts.
699 */
Russell King10dd5ce2006-11-23 11:41:32 +0000700static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100701{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100702 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100703 u32 isr;
Jon Hunter3513cde2013-04-04 15:16:14 -0500704 unsigned int bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100705 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700706 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000707 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100708
Will Deaconee144182011-02-21 13:46:08 +0000709 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100710
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100711 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700712 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530713 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800714
715 if (WARN_ON(!isr_reg))
716 goto exit;
717
Laurent Navete83507b2013-03-20 13:15:57 +0100718 while (1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100719 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700720 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100721
Imre Deakea6dedd2006-06-26 16:16:00 -0700722 enabled = _get_gpio_irqbank_mask(bank);
723 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100724
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530725 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800726 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100727
728 /* clear edge sensitive interrupts before handler(s) are
729 called so that we don't miss any interrupt occurred while
730 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700731 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100732 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700733 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100734
735 /* if there is only edge sensitive GPIO pin interrupts
736 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700737 if (!level_mask && !unmasked) {
738 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000739 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700740 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100741
Tony Lindgren92105bb2005-09-07 17:20:26 +0100742 if (!isr)
743 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100744
Jon Hunter3513cde2013-04-04 15:16:14 -0500745 while (isr) {
746 bit = __ffs(isr);
747 isr &= ~(1 << bit);
Benoit Cousson25db7112012-02-23 21:50:10 +0100748
Cory Maccarrone4318f362010-01-08 10:29:04 -0800749 /*
750 * Some chips can't respond to both rising and falling
751 * at the same time. If this irq was requested with
752 * both flags, we need to flip the ICR data for the IRQ
753 * to respond to the IRQ for the opposite direction.
754 * This will be indicated in the bank toggle_mask.
755 */
Jon Hunter3513cde2013-04-04 15:16:14 -0500756 if (bank->toggle_mask & (1 << bit))
757 _toggle_gpio_edge_triggering(bank, bit);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800758
Jon Hunter3513cde2013-04-04 15:16:14 -0500759 generic_handle_irq(irq_find_mapping(bank->domain, bit));
Tony Lindgren92105bb2005-09-07 17:20:26 +0100760 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000761 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700762 /* if bank has any level sensitive GPIO pin interrupt
763 configured, we must unmask the bank interrupt only after
764 handler(s) are executed in order to avoid spurious bank
765 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800766exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700767 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000768 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530769 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100770}
771
Lennert Buytenheke9191022010-11-29 11:17:17 +0100772static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300773{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100774 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600775 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700776 unsigned long flags;
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200777 unsigned offset = GPIO_INDEX(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300778
Colin Cross85ec7b92011-06-06 13:38:18 -0700779 spin_lock_irqsave(&bank->lock, flags);
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +0200780 bank->irq_usage &= ~(1 << offset);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300781 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700782 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300783}
784
Lennert Buytenheke9191022010-11-29 11:17:17 +0100785static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100786{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100787 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600788 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100789
790 _clear_gpio_irqstatus(bank, gpio);
791}
792
Lennert Buytenheke9191022010-11-29 11:17:17 +0100793static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100794{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100795 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600796 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700797 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100798
Colin Cross85ec7b92011-06-06 13:38:18 -0700799 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100800 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700801 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700802 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100803}
804
Lennert Buytenheke9191022010-11-29 11:17:17 +0100805static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100806{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100807 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600808 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700809 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100810 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700811 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700812
Colin Cross85ec7b92011-06-06 13:38:18 -0700813 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700814 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700815 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800816
817 /* For level-triggered GPIOs, the clearing must be done after
818 * the HW source is cleared, thus after the handler has run */
819 if (bank->level_mask & irq_mask) {
820 _set_gpio_irqenable(bank, gpio, 0);
821 _clear_gpio_irqstatus(bank, gpio);
822 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100823
Kevin Hilman4de8c752008-01-16 21:56:14 -0800824 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700825 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100826}
827
David Brownelle5c56ed2006-12-06 17:13:59 -0800828static struct irq_chip gpio_irq_chip = {
829 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100830 .irq_shutdown = gpio_irq_shutdown,
831 .irq_ack = gpio_ack_irq,
832 .irq_mask = gpio_mask_irq,
833 .irq_unmask = gpio_unmask_irq,
834 .irq_set_type = gpio_irq_type,
835 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800836};
837
838/*---------------------------------------------------------------------*/
839
Magnus Damm79ee0312009-07-08 13:22:04 +0200840static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800841{
Magnus Damm79ee0312009-07-08 13:22:04 +0200842 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800843 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800844 void __iomem *mask_reg = bank->base +
845 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800846 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800847
David Brownella6472532008-03-03 04:33:30 -0800848 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530849 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800850 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800851
852 return 0;
853}
854
Magnus Damm79ee0312009-07-08 13:22:04 +0200855static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800856{
Magnus Damm79ee0312009-07-08 13:22:04 +0200857 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800858 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800859 void __iomem *mask_reg = bank->base +
860 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800861 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800862
David Brownella6472532008-03-03 04:33:30 -0800863 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530864 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800865 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800866
867 return 0;
868}
869
Alexey Dobriyan47145212009-12-14 18:00:08 -0800870static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200871 .suspend_noirq = omap_mpuio_suspend_noirq,
872 .resume_noirq = omap_mpuio_resume_noirq,
873};
874
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200875/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800876static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800877 .driver = {
878 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200879 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800880 },
881};
882
883static struct platform_device omap_mpuio_device = {
884 .name = "mpuio",
885 .id = -1,
886 .dev = {
887 .driver = &omap_mpuio_driver.driver,
888 }
889 /* could list the /proc/iomem resources */
890};
891
Charulatha V03e128c2011-05-05 19:58:01 +0530892static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800893{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800894 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700895
David Brownell11a78b72006-12-06 17:14:11 -0800896 if (platform_driver_register(&omap_mpuio_driver) == 0)
897 (void) platform_device_register(&omap_mpuio_device);
898}
899
David Brownelle5c56ed2006-12-06 17:13:59 -0800900/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100901
David Brownell52e31342008-03-03 12:43:23 -0800902static int gpio_input(struct gpio_chip *chip, unsigned offset)
903{
904 struct gpio_bank *bank;
905 unsigned long flags;
906
907 bank = container_of(chip, struct gpio_bank, chip);
908 spin_lock_irqsave(&bank->lock, flags);
909 _set_gpio_direction(bank, offset, 1);
910 spin_unlock_irqrestore(&bank->lock, flags);
911 return 0;
912}
913
914static int gpio_get(struct gpio_chip *chip, unsigned offset)
915{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300916 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300917 u32 mask;
918
Charulatha Va8be8da2011-04-22 16:38:16 +0530919 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530920 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300921
922 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530923 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300924 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530925 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800926}
927
928static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
929{
930 struct gpio_bank *bank;
931 unsigned long flags;
932
933 bank = container_of(chip, struct gpio_bank, chip);
934 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700935 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800936 _set_gpio_direction(bank, offset, 0);
937 spin_unlock_irqrestore(&bank->lock, flags);
938 return 0;
939}
940
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700941static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
942 unsigned debounce)
943{
944 struct gpio_bank *bank;
945 unsigned long flags;
946
947 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800948
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700949 spin_lock_irqsave(&bank->lock, flags);
950 _set_gpio_debounce(bank, offset, debounce);
951 spin_unlock_irqrestore(&bank->lock, flags);
952
953 return 0;
954}
955
David Brownell52e31342008-03-03 12:43:23 -0800956static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
957{
958 struct gpio_bank *bank;
959 unsigned long flags;
960
961 bank = container_of(chip, struct gpio_bank, chip);
962 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700963 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800964 spin_unlock_irqrestore(&bank->lock, flags);
965}
966
967/*---------------------------------------------------------------------*/
968
Tony Lindgren9a748052010-12-07 16:26:56 -0800969static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700970{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700971 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700972 u32 rev;
973
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700974 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700975 return;
976
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700977 rev = __raw_readw(bank->base + bank->regs->revision);
978 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700979 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700980
981 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700982}
983
David Brownell8ba55c52008-02-26 11:10:50 -0800984/* This lock class tells lockdep that GPIO irqs are in a different
985 * category than their parents, so it won't report false recursion.
986 */
987static struct lock_class_key gpio_lock_class;
988
Charulatha V03e128c2011-05-05 19:58:01 +0530989static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800990{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530991 void __iomem *base = bank->base;
992 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800993
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530994 if (bank->width == 16)
995 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800996
Charulatha Vd0d665a2011-08-31 00:02:21 +0530997 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530998 __raw_writel(l, bank->base + bank->regs->irqenable);
999 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001000 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301001
1002 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301003 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301004 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301005 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301006
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301007 /* Save OE default value (0xffffffff) in the context */
1008 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301009 /* Initialize interface clk ungated, module enabled */
1010 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301011 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +05301012
1013 bank->dbck = clk_get(bank->dev, "dbclk");
1014 if (IS_ERR(bank->dbck))
1015 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001016}
1017
Bill Pemberton38363092012-11-19 13:22:34 -05001018static void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001019omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
1020 unsigned int num)
1021{
1022 struct irq_chip_generic *gc;
1023 struct irq_chip_type *ct;
1024
1025 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
1026 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -07001027 if (!gc) {
1028 dev_err(bank->dev, "Memory alloc failed for gc\n");
1029 return;
1030 }
1031
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001032 ct = gc->chip_types;
1033
1034 /* NOTE: No ack required, reading IRQ status clears it. */
1035 ct->chip.irq_mask = irq_gc_mask_set_bit;
1036 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1037 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301038
1039 if (bank->regs->wkup_en)
Julia Lawall388f4302013-08-13 09:16:56 +02001040 ct->chip.irq_set_wake = gpio_wake_enable;
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001041
1042 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1043 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1044 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1045}
1046
Bill Pemberton38363092012-11-19 13:22:34 -05001047static void omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001048{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001049 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001050 static int gpio;
1051
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001052 /*
1053 * REVISIT eventually switch from OMAP-specific gpio structs
1054 * over to the generic ones
1055 */
1056 bank->chip.request = omap_gpio_request;
1057 bank->chip.free = omap_gpio_free;
1058 bank->chip.direction_input = gpio_input;
1059 bank->chip.get = gpio_get;
1060 bank->chip.direction_output = gpio_output;
1061 bank->chip.set_debounce = gpio_debounce;
1062 bank->chip.set = gpio_set;
Jon Hunterede4d7a2013-03-01 11:22:47 -06001063 bank->chip.to_irq = omap_gpio_to_irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301064 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001065 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301066 if (bank->regs->wkup_en)
1067 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001068 bank->chip.base = OMAP_MPUIO(0);
1069 } else {
1070 bank->chip.label = "gpio";
1071 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001072 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001073 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001074 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001075
1076 gpiochip_add(&bank->chip);
1077
Jon Hunterede4d7a2013-03-01 11:22:47 -06001078 for (j = 0; j < bank->width; j++) {
1079 int irq = irq_create_mapping(bank->domain, j);
1080 irq_set_lockdep_class(irq, &gpio_lock_class);
1081 irq_set_chip_data(irq, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301082 if (bank->is_mpuio) {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001083 omap_mpuio_alloc_gc(bank, irq, bank->width);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001084 } else {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001085 irq_set_chip_and_handler(irq, &gpio_irq_chip,
1086 handle_simple_irq);
1087 set_irq_flags(irq, IRQF_VALID);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001088 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001089 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001090 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1091 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001092}
1093
Benoit Cousson384ebe12011-08-16 11:53:02 +02001094static const struct of_device_id omap_gpio_match[];
1095
Bill Pemberton38363092012-11-19 13:22:34 -05001096static int omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001097{
Benoit Cousson862ff642012-02-01 15:58:56 +01001098 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001099 struct device_node *node = dev->of_node;
1100 const struct of_device_id *match;
Uwe Kleine-Königf6817a22012-05-21 21:57:39 +02001101 const struct omap_gpio_platform_data *pdata;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001102 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001103 struct gpio_bank *bank;
Javier Martinez Canillas397eada2013-06-24 17:13:23 +02001104#ifdef CONFIG_ARCH_OMAP1
1105 int irq_base;
1106#endif
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001107
Benoit Cousson384ebe12011-08-16 11:53:02 +02001108 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1109
Jingoo Hane56aee12013-07-30 17:08:05 +09001110 pdata = match ? match->data : dev_get_platdata(dev);
Benoit Cousson384ebe12011-08-16 11:53:02 +02001111 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001112 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001113
Tobias Klauser086d5852012-10-05 11:37:38 +02001114 bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301115 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001116 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001117 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301118 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001119
1120 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1121 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001122 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001123 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001124 }
1125
1126 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001127 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001128 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001129 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001130 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301131 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301132 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001133 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001134#ifdef CONFIG_OF_GPIO
1135 bank->chip.of_node = of_node_get(node);
1136#endif
Jon Huntera2797be2013-04-04 15:16:15 -05001137 if (node) {
1138 if (!of_property_read_bool(node, "ti,gpio-always-on"))
1139 bank->loses_context = true;
1140 } else {
1141 bank->loses_context = pdata->loses_context;
Jon Hunter352a2d52013-04-15 13:06:54 -05001142
1143 if (bank->loses_context)
1144 bank->get_context_loss_count =
1145 pdata->get_context_loss_count;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001146 }
1147
Javier Martinez Canillas397eada2013-06-24 17:13:23 +02001148#ifdef CONFIG_ARCH_OMAP1
1149 /*
1150 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
1151 * irq_alloc_descs() and irq_domain_add_legacy() and just use a
1152 * linear IRQ domain mapping for all OMAP platforms.
1153 */
1154 irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
1155 if (irq_base < 0) {
1156 dev_err(dev, "Couldn't allocate IRQ numbers\n");
1157 return -ENODEV;
1158 }
Benoit Cousson384ebe12011-08-16 11:53:02 +02001159
Javier Martinez Canillas397eada2013-06-24 17:13:23 +02001160 bank->domain = irq_domain_add_legacy(node, bank->width, irq_base,
1161 0, &irq_domain_simple_ops, NULL);
1162#else
Jon Hunterede4d7a2013-03-01 11:22:47 -06001163 bank->domain = irq_domain_add_linear(node, bank->width,
1164 &irq_domain_simple_ops, NULL);
Javier Martinez Canillas397eada2013-06-24 17:13:23 +02001165#endif
1166 if (!bank->domain) {
1167 dev_err(dev, "Couldn't register an IRQ domain\n");
Benoit Cousson384ebe12011-08-16 11:53:02 +02001168 return -ENODEV;
Javier Martinez Canillas397eada2013-06-24 17:13:23 +02001169 }
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001170
1171 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1172 bank->set_dataout = _set_gpio_dataout_reg;
1173 else
1174 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001175
1176 spin_lock_init(&bank->lock);
1177
1178 /* Static mapping, never released */
1179 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1180 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001181 dev_err(dev, "Invalid mem resource\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001182 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001183 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001184 }
1185
Benoit Cousson96751fc2012-02-01 16:01:39 +01001186 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1187 pdev->name)) {
1188 dev_err(dev, "Region already claimed\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001189 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001190 return -EBUSY;
1191 }
1192
1193 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001194 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001195 dev_err(dev, "Could not ioremap\n");
Jon Hunter879fe322013-04-04 15:16:12 -05001196 irq_domain_remove(bank->domain);
Benoit Cousson96751fc2012-02-01 16:01:39 +01001197 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001198 }
1199
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301200 platform_set_drvdata(pdev, bank);
1201
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001202 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301203 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001204 pm_runtime_get_sync(bank->dev);
1205
Charulatha Vd0d665a2011-08-31 00:02:21 +05301206 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301207 mpuio_init(bank);
1208
Charulatha V03e128c2011-05-05 19:58:01 +05301209 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001210 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001211 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001212
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301213 pm_runtime_put(bank->dev);
1214
Charulatha V03e128c2011-05-05 19:58:01 +05301215 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001216
Jon Hunter879fe322013-04-04 15:16:12 -05001217 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001218}
1219
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301220#ifdef CONFIG_ARCH_OMAP2PLUS
1221
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301222#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301223static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001224
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301225static int omap_gpio_runtime_suspend(struct device *dev)
1226{
1227 struct platform_device *pdev = to_platform_device(dev);
1228 struct gpio_bank *bank = platform_get_drvdata(pdev);
1229 u32 l1 = 0, l2 = 0;
1230 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001231 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301232
1233 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001234
1235 /*
1236 * Only edges can generate a wakeup event to the PRCM.
1237 *
1238 * Therefore, ensure any wake-up capable GPIOs have
1239 * edge-detection enabled before going idle to ensure a wakeup
1240 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1241 * NDA TRM 25.5.3.1)
1242 *
1243 * The normal values will be restored upon ->runtime_resume()
1244 * by writing back the values saved in bank->context.
1245 */
1246 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1247 if (wake_low)
1248 __raw_writel(wake_low | bank->context.fallingdetect,
1249 bank->base + bank->regs->fallingdetect);
1250 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1251 if (wake_hi)
1252 __raw_writel(wake_hi | bank->context.risingdetect,
1253 bank->base + bank->regs->risingdetect);
1254
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001255 if (!bank->enabled_non_wakeup_gpios)
1256 goto update_gpio_context_count;
1257
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301258 if (bank->power_mode != OFF_MODE) {
1259 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301260 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301261 }
1262 /*
1263 * If going to OFF, remove triggering for all
1264 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1265 * generated. See OMAP2420 Errata item 1.101.
1266 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301267 bank->saved_datain = __raw_readl(bank->base +
1268 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301269 l1 = bank->context.fallingdetect;
1270 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301271
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301272 l1 &= ~bank->enabled_non_wakeup_gpios;
1273 l2 &= ~bank->enabled_non_wakeup_gpios;
1274
1275 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1276 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1277
1278 bank->workaround_enabled = true;
1279
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301280update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301281 if (bank->get_context_loss_count)
1282 bank->context_loss_count =
1283 bank->get_context_loss_count(bank->dev);
1284
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301285 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301286 spin_unlock_irqrestore(&bank->lock, flags);
1287
1288 return 0;
1289}
1290
Jon Hunter352a2d52013-04-15 13:06:54 -05001291static void omap_gpio_init_context(struct gpio_bank *p);
1292
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301293static int omap_gpio_runtime_resume(struct device *dev)
1294{
1295 struct platform_device *pdev = to_platform_device(dev);
1296 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301297 u32 l = 0, gen, gen0, gen1;
1298 unsigned long flags;
Jon Huntera2797be2013-04-04 15:16:15 -05001299 int c;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301300
1301 spin_lock_irqsave(&bank->lock, flags);
Jon Hunter352a2d52013-04-15 13:06:54 -05001302
1303 /*
1304 * On the first resume during the probe, the context has not
1305 * been initialised and so initialise it now. Also initialise
1306 * the context loss count.
1307 */
1308 if (bank->loses_context && !bank->context_valid) {
1309 omap_gpio_init_context(bank);
1310
1311 if (bank->get_context_loss_count)
1312 bank->context_loss_count =
1313 bank->get_context_loss_count(bank->dev);
1314 }
1315
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301316 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001317
1318 /*
1319 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1320 * GPIOs were set to edge trigger also in order to be able to
1321 * generate a PRCM wakeup. Here we restore the
1322 * pre-runtime_suspend() values for edge triggering.
1323 */
1324 __raw_writel(bank->context.fallingdetect,
1325 bank->base + bank->regs->fallingdetect);
1326 __raw_writel(bank->context.risingdetect,
1327 bank->base + bank->regs->risingdetect);
1328
Jon Huntera2797be2013-04-04 15:16:15 -05001329 if (bank->loses_context) {
1330 if (!bank->get_context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301331 omap_gpio_restore_context(bank);
1332 } else {
Jon Huntera2797be2013-04-04 15:16:15 -05001333 c = bank->get_context_loss_count(bank->dev);
1334 if (c != bank->context_loss_count) {
1335 omap_gpio_restore_context(bank);
1336 } else {
1337 spin_unlock_irqrestore(&bank->lock, flags);
1338 return 0;
1339 }
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301340 }
1341 }
1342
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301343 if (!bank->workaround_enabled) {
1344 spin_unlock_irqrestore(&bank->lock, flags);
1345 return 0;
1346 }
1347
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301348 l = __raw_readl(bank->base + bank->regs->datain);
1349
1350 /*
1351 * Check if any of the non-wakeup interrupt GPIOs have changed
1352 * state. If so, generate an IRQ by software. This is
1353 * horribly racy, but it's the best we can do to work around
1354 * this silicon bug.
1355 */
1356 l ^= bank->saved_datain;
1357 l &= bank->enabled_non_wakeup_gpios;
1358
1359 /*
1360 * No need to generate IRQs for the rising edge for gpio IRQs
1361 * configured with falling edge only; and vice versa.
1362 */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301363 gen0 = l & bank->context.fallingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301364 gen0 &= bank->saved_datain;
1365
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301366 gen1 = l & bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301367 gen1 &= ~(bank->saved_datain);
1368
1369 /* FIXME: Consider GPIO IRQs with level detections properly! */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301370 gen = l & (~(bank->context.fallingdetect) &
1371 ~(bank->context.risingdetect));
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301372 /* Consider all GPIO IRQs needed to be updated */
1373 gen |= gen0 | gen1;
1374
1375 if (gen) {
1376 u32 old0, old1;
1377
1378 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1379 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1380
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301381 if (!bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301382 __raw_writel(old0 | gen, bank->base +
1383 bank->regs->leveldetect0);
1384 __raw_writel(old1 | gen, bank->base +
1385 bank->regs->leveldetect1);
1386 }
1387
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301388 if (bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301389 __raw_writel(old0 | l, bank->base +
1390 bank->regs->leveldetect0);
1391 __raw_writel(old1 | l, bank->base +
1392 bank->regs->leveldetect1);
1393 }
1394 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1395 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1396 }
1397
1398 bank->workaround_enabled = false;
1399 spin_unlock_irqrestore(&bank->lock, flags);
1400
1401 return 0;
1402}
1403#endif /* CONFIG_PM_RUNTIME */
1404
1405void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001406{
Charulatha V03e128c2011-05-05 19:58:01 +05301407 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001408
Charulatha V03e128c2011-05-05 19:58:01 +05301409 list_for_each_entry(bank, &omap_gpio_list, node) {
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +02001410 if (!BANK_USED(bank) || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301411 continue;
1412
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301413 bank->power_mode = pwr_mode;
1414
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301415 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001416 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001417}
1418
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001419void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001420{
Charulatha V03e128c2011-05-05 19:58:01 +05301421 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001422
Charulatha V03e128c2011-05-05 19:58:01 +05301423 list_for_each_entry(bank, &omap_gpio_list, node) {
Javier Martinez Canillasfa365e42013-09-25 02:36:52 +02001424 if (!BANK_USED(bank) || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301425 continue;
1426
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301427 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001428 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001429}
1430
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301431#if defined(CONFIG_PM_RUNTIME)
Jon Hunter352a2d52013-04-15 13:06:54 -05001432static void omap_gpio_init_context(struct gpio_bank *p)
1433{
1434 struct omap_gpio_reg_offs *regs = p->regs;
1435 void __iomem *base = p->base;
1436
1437 p->context.ctrl = __raw_readl(base + regs->ctrl);
1438 p->context.oe = __raw_readl(base + regs->direction);
1439 p->context.wake_en = __raw_readl(base + regs->wkup_en);
1440 p->context.leveldetect0 = __raw_readl(base + regs->leveldetect0);
1441 p->context.leveldetect1 = __raw_readl(base + regs->leveldetect1);
1442 p->context.risingdetect = __raw_readl(base + regs->risingdetect);
1443 p->context.fallingdetect = __raw_readl(base + regs->fallingdetect);
1444 p->context.irqenable1 = __raw_readl(base + regs->irqenable);
1445 p->context.irqenable2 = __raw_readl(base + regs->irqenable2);
1446
1447 if (regs->set_dataout && p->regs->clr_dataout)
1448 p->context.dataout = __raw_readl(base + regs->set_dataout);
1449 else
1450 p->context.dataout = __raw_readl(base + regs->dataout);
1451
1452 p->context_valid = true;
1453}
1454
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301455static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301456{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301457 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301458 bank->base + bank->regs->wkup_en);
1459 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301460 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301461 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301462 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301463 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301464 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301465 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301466 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301467 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301468 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1469 __raw_writel(bank->context.dataout,
1470 bank->base + bank->regs->set_dataout);
1471 else
1472 __raw_writel(bank->context.dataout,
1473 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301474 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1475
Nishanth Menonae547352011-09-09 19:08:58 +05301476 if (bank->dbck_enable_mask) {
1477 __raw_writel(bank->context.debounce, bank->base +
1478 bank->regs->debounce);
1479 __raw_writel(bank->context.debounce_en,
1480 bank->base + bank->regs->debounce_en);
1481 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301482
1483 __raw_writel(bank->context.irqenable1,
1484 bank->base + bank->regs->irqenable);
1485 __raw_writel(bank->context.irqenable2,
1486 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301487}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301488#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301489#else
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301490#define omap_gpio_runtime_suspend NULL
1491#define omap_gpio_runtime_resume NULL
Arnd Bergmannea4a21a2013-05-31 17:59:46 +02001492static inline void omap_gpio_init_context(struct gpio_bank *p) {}
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301493#endif
1494
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301495static const struct dev_pm_ops gpio_pm_ops = {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301496 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1497 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301498};
1499
Benoit Cousson384ebe12011-08-16 11:53:02 +02001500#if defined(CONFIG_OF)
1501static struct omap_gpio_reg_offs omap2_gpio_regs = {
1502 .revision = OMAP24XX_GPIO_REVISION,
1503 .direction = OMAP24XX_GPIO_OE,
1504 .datain = OMAP24XX_GPIO_DATAIN,
1505 .dataout = OMAP24XX_GPIO_DATAOUT,
1506 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1507 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1508 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1509 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1510 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1511 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1512 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1513 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1514 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1515 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1516 .ctrl = OMAP24XX_GPIO_CTRL,
1517 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1518 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1519 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1520 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1521 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1522};
1523
1524static struct omap_gpio_reg_offs omap4_gpio_regs = {
1525 .revision = OMAP4_GPIO_REVISION,
1526 .direction = OMAP4_GPIO_OE,
1527 .datain = OMAP4_GPIO_DATAIN,
1528 .dataout = OMAP4_GPIO_DATAOUT,
1529 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1530 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1531 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1532 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1533 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1534 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1535 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1536 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1537 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1538 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1539 .ctrl = OMAP4_GPIO_CTRL,
1540 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1541 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1542 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1543 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1544 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1545};
1546
Chen Gange9a65bb2013-02-06 18:44:32 +08001547static const struct omap_gpio_platform_data omap2_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001548 .regs = &omap2_gpio_regs,
1549 .bank_width = 32,
1550 .dbck_flag = false,
1551};
1552
Chen Gange9a65bb2013-02-06 18:44:32 +08001553static const struct omap_gpio_platform_data omap3_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001554 .regs = &omap2_gpio_regs,
1555 .bank_width = 32,
1556 .dbck_flag = true,
1557};
1558
Chen Gange9a65bb2013-02-06 18:44:32 +08001559static const struct omap_gpio_platform_data omap4_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001560 .regs = &omap4_gpio_regs,
1561 .bank_width = 32,
1562 .dbck_flag = true,
1563};
1564
1565static const struct of_device_id omap_gpio_match[] = {
1566 {
1567 .compatible = "ti,omap4-gpio",
1568 .data = &omap4_pdata,
1569 },
1570 {
1571 .compatible = "ti,omap3-gpio",
1572 .data = &omap3_pdata,
1573 },
1574 {
1575 .compatible = "ti,omap2-gpio",
1576 .data = &omap2_pdata,
1577 },
1578 { },
1579};
1580MODULE_DEVICE_TABLE(of, omap_gpio_match);
1581#endif
1582
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001583static struct platform_driver omap_gpio_driver = {
1584 .probe = omap_gpio_probe,
1585 .driver = {
1586 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301587 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001588 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001589 },
1590};
1591
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001592/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001593 * gpio driver register needs to be done before
1594 * machine_init functions access gpio APIs.
1595 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001596 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001597static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001598{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001599 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001600}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001601postcore_initcall(omap_gpio_drv_reg);