blob: c3598d143aa9419111d9920ec6983f72d51d0d38 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01002 * Support functions for OMAP GPIO
3 *
Tony Lindgren92105bb2005-09-07 17:20:26 +01004 * Copyright (C) 2003-2005 Nokia Corporation
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01006 *
Santosh Shilimkar44169072009-05-28 14:16:04 -07007 * Copyright (C) 2009 Texas Instruments
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
9 *
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010015#include <linux/init.h>
16#include <linux/module.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010017#include <linux/interrupt.h>
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +020018#include <linux/syscore_ops.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010019#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000020#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
Benoit Cousson96751fc2012-02-01 16:01:39 +010022#include <linux/device.h>
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080023#include <linux/pm_runtime.h>
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +053024#include <linux/pm.h>
Benoit Cousson384ebe12011-08-16 11:53:02 +020025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/irqdomain.h>
Tony Lindgren4b254082012-08-30 15:37:24 -070028#include <linux/gpio.h>
29#include <linux/platform_data/gpio-omap.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010030
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010031#include <asm/mach/irq.h>
32
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053033#define OFF_MODE 1
34
Charulatha V03e128c2011-05-05 19:58:01 +053035static LIST_HEAD(omap_gpio_list);
36
Charulatha V6d62e212011-04-18 15:06:51 +000037struct gpio_regs {
38 u32 irqenable1;
39 u32 irqenable2;
40 u32 wake_en;
41 u32 ctrl;
42 u32 oe;
43 u32 leveldetect0;
44 u32 leveldetect1;
45 u32 risingdetect;
46 u32 fallingdetect;
47 u32 dataout;
Nishanth Menonae547352011-09-09 19:08:58 +053048 u32 debounce;
49 u32 debounce_en;
Charulatha V6d62e212011-04-18 15:06:51 +000050};
51
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010052struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053053 struct list_head node;
Tony Lindgren92105bb2005-09-07 17:20:26 +010054 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010055 u16 irq;
Benoit Cousson384ebe12011-08-16 11:53:02 +020056 struct irq_domain *domain;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080057 u32 non_wakeup_gpios;
58 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000059 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080060 u32 saved_datain;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080061 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080062 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010063 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080064 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080065 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080066 u32 mod_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;
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
Tony Lindgren4b254082012-08-30 15:37:24 -0700430#ifdef CONFIG_ARCH_OMAP1
431 if (d->irq > IH_MPUIO_BASE)
Lennert Buytenheke9191022010-11-29 11:17:17 +0100432 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren4b254082012-08-30 15:37:24 -0700433#endif
434
435 if (!gpio)
Jon Hunterede4d7a2013-03-01 11:22:47 -0600436 gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100437
David Brownelle5c56ed2006-12-06 17:13:59 -0800438 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100439 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800440
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530441 if (!bank->regs->leveldetect0 &&
442 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100443 return -EINVAL;
444
David Brownella6472532008-03-03 04:33:30 -0800445 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700446 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800447 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800448
449 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100450 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800451 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100452 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800453
Tony Lindgren92105bb2005-09-07 17:20:26 +0100454 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100455}
456
457static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
458{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100459 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100460
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700461 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100462 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300463
464 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700465 if (bank->regs->irqstatus2) {
466 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700467 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700468 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700469
470 /* Flush posted write for the irq status to avoid spurious interrupts */
471 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100472}
473
474static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
475{
Kevin Hilman129fd222011-04-22 07:59:07 -0700476 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100477}
478
Imre Deakea6dedd2006-06-26 16:16:00 -0700479static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
480{
481 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700482 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700483 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700484
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700485 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700486 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700487 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700488 l = ~l;
489 l &= mask;
490 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700491}
492
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700493static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100494{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100495 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100496 u32 l;
497
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700498 if (bank->regs->set_irqenable) {
499 reg += bank->regs->set_irqenable;
500 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530501 bank->context.irqenable1 |= gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700502 } else {
503 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100504 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700505 if (bank->regs->irqenable_inv)
506 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100507 else
508 l |= gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530509 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100510 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700511
512 __raw_writel(l, reg);
513}
514
515static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
516{
517 void __iomem *reg = bank->base;
518 u32 l;
519
520 if (bank->regs->clr_irqenable) {
521 reg += bank->regs->clr_irqenable;
522 l = gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530523 bank->context.irqenable1 &= ~gpio_mask;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700524 } else {
525 reg += bank->regs->irqenable;
526 l = __raw_readl(reg);
527 if (bank->regs->irqenable_inv)
528 l |= gpio_mask;
529 else
530 l &= ~gpio_mask;
Tarun Kanti DebBarma2a900eb2012-03-06 12:08:16 +0530531 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700532 }
533
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100534 __raw_writel(l, reg);
535}
536
537static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
538{
Tarun Kanti DebBarma8276536c2011-11-25 15:27:37 +0530539 if (enable)
540 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
541 else
542 _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100543}
544
Tony Lindgren92105bb2005-09-07 17:20:26 +0100545/*
546 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
547 * 1510 does not seem to have a wake-up register. If JTAG is connected
548 * to the target, system will wake up always on GPIO events. While
549 * system is running all registered GPIO interrupts need to have wake-up
550 * enabled. When system is suspended, only selected GPIO interrupts need
551 * to have wake-up enabled.
552 */
553static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
554{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700555 u32 gpio_bit = GPIO_BIT(bank, gpio);
556 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800557
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700558 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100559 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700560 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100561 return -EINVAL;
562 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700563
564 spin_lock_irqsave(&bank->lock, flags);
565 if (enable)
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530566 bank->context.wake_en |= gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700567 else
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530568 bank->context.wake_en &= ~gpio_bit;
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700569
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530570 __raw_writel(bank->context.wake_en, bank->base + bank->regs->wkup_en);
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700571 spin_unlock_irqrestore(&bank->lock, flags);
572
573 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100574}
575
Tony Lindgren4196dd62006-09-25 12:41:38 +0300576static void _reset_gpio(struct gpio_bank *bank, int gpio)
577{
Kevin Hilman129fd222011-04-22 07:59:07 -0700578 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300579 _set_gpio_irqenable(bank, gpio, 0);
580 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700581 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Jon Hunterc9c55d92012-10-26 14:26:04 -0500582 _clear_gpio_debounce(bank, gpio);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300583}
584
Tony Lindgren92105bb2005-09-07 17:20:26 +0100585/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100586static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100587{
Benoit Cousson25db7112012-02-23 21:50:10 +0100588 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600589 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100590
Benoit Cousson25db7112012-02-23 21:50:10 +0100591 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100592}
593
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800594static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100595{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800596 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800597 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100598
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530599 /*
600 * If this is the first gpio_request for the bank,
601 * enable the bank module.
602 */
603 if (!bank->mod_usage)
604 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100605
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530606 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300607 /* Set trigger to none. You need to enable the desired trigger with
608 * request_irq() or set_irq_type().
609 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800610 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100611
Charulatha Vfad96ea2011-05-25 11:23:50 +0530612 if (bank->regs->pinctrl) {
613 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100614
Tony Lindgren92105bb2005-09-07 17:20:26 +0100615 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800616 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100617 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530618
Charulatha Vc8eef652011-05-02 15:21:42 +0530619 if (bank->regs->ctrl && !bank->mod_usage) {
620 void __iomem *reg = bank->base + bank->regs->ctrl;
621 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700622
Charulatha Vc8eef652011-05-02 15:21:42 +0530623 ctrl = __raw_readl(reg);
624 /* Module is enabled, clocks are not gated */
625 ctrl &= ~GPIO_MOD_CTRL_BIT;
626 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530627 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800628 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530629
630 bank->mod_usage |= 1 << offset;
631
David Brownella6472532008-03-03 04:33:30 -0800632 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100633
634 return 0;
635}
636
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800637static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800639 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530640 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800641 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100642
David Brownella6472532008-03-03 04:33:30 -0800643 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530644
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530645 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100646 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530647 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530648 bank->context.wake_en =
649 __raw_readl(bank->base + bank->regs->wkup_en);
650 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530651
Charulatha Vc8eef652011-05-02 15:21:42 +0530652 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700653
Charulatha Vc8eef652011-05-02 15:21:42 +0530654 if (bank->regs->ctrl && !bank->mod_usage) {
655 void __iomem *reg = bank->base + bank->regs->ctrl;
656 u32 ctrl;
657
658 ctrl = __raw_readl(reg);
659 /* Module is disabled, clocks are gated */
660 ctrl |= GPIO_MOD_CTRL_BIT;
661 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530662 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800663 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530664
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800665 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800666 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530667
668 /*
669 * If this is the last gpio to be freed in the bank,
670 * disable the bank module.
671 */
672 if (!bank->mod_usage)
673 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100674}
675
676/*
677 * We need to unmask the GPIO bank interrupt as soon as possible to
678 * avoid missing GPIO interrupts for other lines in the bank.
679 * Then we need to mask-read-clear-unmask the triggered GPIO lines
680 * in the bank to avoid missing nested interrupts for a GPIO line.
681 * If we wait to unmask individual GPIO lines in the bank after the
682 * line's interrupt handler has been run, we may miss some nested
683 * interrupts.
684 */
Russell King10dd5ce2006-11-23 11:41:32 +0000685static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100686{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100687 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100688 u32 isr;
Jon Hunterede4d7a2013-03-01 11:22:47 -0600689 unsigned int i;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100690 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700691 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000692 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100693
Will Deaconee144182011-02-21 13:46:08 +0000694 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100695
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100696 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700697 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530698 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800699
700 if (WARN_ON(!isr_reg))
701 goto exit;
702
Tony Lindgren92105bb2005-09-07 17:20:26 +0100703 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100704 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700705 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100706
Imre Deakea6dedd2006-06-26 16:16:00 -0700707 enabled = _get_gpio_irqbank_mask(bank);
708 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100709
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530710 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800711 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100712
713 /* clear edge sensitive interrupts before handler(s) are
714 called so that we don't miss any interrupt occurred while
715 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700716 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100717 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700718 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100719
720 /* if there is only edge sensitive GPIO pin interrupts
721 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700722 if (!level_mask && !unmasked) {
723 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000724 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700725 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100726
Tony Lindgren92105bb2005-09-07 17:20:26 +0100727 if (!isr)
728 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100729
Jon Hunterede4d7a2013-03-01 11:22:47 -0600730 for (i = 0; isr != 0; isr >>= 1, i++) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100731 if (!(isr & 1))
732 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200733
Cory Maccarrone4318f362010-01-08 10:29:04 -0800734 /*
735 * Some chips can't respond to both rising and falling
736 * at the same time. If this irq was requested with
737 * both flags, we need to flip the ICR data for the IRQ
738 * to respond to the IRQ for the opposite direction.
739 * This will be indicated in the bank toggle_mask.
740 */
Jon Hunterede4d7a2013-03-01 11:22:47 -0600741 if (bank->toggle_mask & (1 << i))
742 _toggle_gpio_edge_triggering(bank, i);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800743
Jon Hunterede4d7a2013-03-01 11:22:47 -0600744 generic_handle_irq(irq_find_mapping(bank->domain, i));
Tony Lindgren92105bb2005-09-07 17:20:26 +0100745 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000746 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700747 /* if bank has any level sensitive GPIO pin interrupt
748 configured, we must unmask the bank interrupt only after
749 handler(s) are executed in order to avoid spurious bank
750 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800751exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700752 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000753 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530754 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100755}
756
Lennert Buytenheke9191022010-11-29 11:17:17 +0100757static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300758{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100759 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600760 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700761 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300762
Colin Cross85ec7b92011-06-06 13:38:18 -0700763 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300764 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700765 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300766}
767
Lennert Buytenheke9191022010-11-29 11:17:17 +0100768static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100769{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100770 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600771 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100772
773 _clear_gpio_irqstatus(bank, gpio);
774}
775
Lennert Buytenheke9191022010-11-29 11:17:17 +0100776static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100777{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100778 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600779 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700780 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100781
Colin Cross85ec7b92011-06-06 13:38:18 -0700782 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100783 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700784 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700785 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100786}
787
Lennert Buytenheke9191022010-11-29 11:17:17 +0100788static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100789{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100790 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Jon Hunterede4d7a2013-03-01 11:22:47 -0600791 unsigned int gpio = irq_to_gpio(bank, d->hwirq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700792 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100793 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700794 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700795
Colin Cross85ec7b92011-06-06 13:38:18 -0700796 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700797 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700798 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800799
800 /* For level-triggered GPIOs, the clearing must be done after
801 * the HW source is cleared, thus after the handler has run */
802 if (bank->level_mask & irq_mask) {
803 _set_gpio_irqenable(bank, gpio, 0);
804 _clear_gpio_irqstatus(bank, gpio);
805 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100806
Kevin Hilman4de8c752008-01-16 21:56:14 -0800807 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700808 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100809}
810
David Brownelle5c56ed2006-12-06 17:13:59 -0800811static struct irq_chip gpio_irq_chip = {
812 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100813 .irq_shutdown = gpio_irq_shutdown,
814 .irq_ack = gpio_ack_irq,
815 .irq_mask = gpio_mask_irq,
816 .irq_unmask = gpio_unmask_irq,
817 .irq_set_type = gpio_irq_type,
818 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800819};
820
821/*---------------------------------------------------------------------*/
822
Magnus Damm79ee0312009-07-08 13:22:04 +0200823static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800824{
Magnus Damm79ee0312009-07-08 13:22:04 +0200825 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800826 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800827 void __iomem *mask_reg = bank->base +
828 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800829 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800830
David Brownella6472532008-03-03 04:33:30 -0800831 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma0aa27272012-04-27 19:43:33 +0530832 __raw_writel(0xffff & ~bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800833 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800834
835 return 0;
836}
837
Magnus Damm79ee0312009-07-08 13:22:04 +0200838static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800839{
Magnus Damm79ee0312009-07-08 13:22:04 +0200840 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800841 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800842 void __iomem *mask_reg = bank->base +
843 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800844 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800845
David Brownella6472532008-03-03 04:33:30 -0800846 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma499fa282012-04-27 19:43:34 +0530847 __raw_writel(bank->context.wake_en, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800848 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800849
850 return 0;
851}
852
Alexey Dobriyan47145212009-12-14 18:00:08 -0800853static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200854 .suspend_noirq = omap_mpuio_suspend_noirq,
855 .resume_noirq = omap_mpuio_resume_noirq,
856};
857
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200858/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800859static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800860 .driver = {
861 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200862 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800863 },
864};
865
866static struct platform_device omap_mpuio_device = {
867 .name = "mpuio",
868 .id = -1,
869 .dev = {
870 .driver = &omap_mpuio_driver.driver,
871 }
872 /* could list the /proc/iomem resources */
873};
874
Charulatha V03e128c2011-05-05 19:58:01 +0530875static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800876{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800877 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700878
David Brownell11a78b72006-12-06 17:14:11 -0800879 if (platform_driver_register(&omap_mpuio_driver) == 0)
880 (void) platform_device_register(&omap_mpuio_device);
881}
882
David Brownelle5c56ed2006-12-06 17:13:59 -0800883/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100884
David Brownell52e31342008-03-03 12:43:23 -0800885static int gpio_input(struct gpio_chip *chip, unsigned offset)
886{
887 struct gpio_bank *bank;
888 unsigned long flags;
889
890 bank = container_of(chip, struct gpio_bank, chip);
891 spin_lock_irqsave(&bank->lock, flags);
892 _set_gpio_direction(bank, offset, 1);
893 spin_unlock_irqrestore(&bank->lock, flags);
894 return 0;
895}
896
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300897static int gpio_is_input(struct gpio_bank *bank, int mask)
898{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700899 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300900
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300901 return __raw_readl(reg) & mask;
902}
903
David Brownell52e31342008-03-03 12:43:23 -0800904static int gpio_get(struct gpio_chip *chip, unsigned offset)
905{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300906 struct gpio_bank *bank;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300907 u32 mask;
908
Charulatha Va8be8da2011-04-22 16:38:16 +0530909 bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530910 mask = (1 << offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300911
912 if (gpio_is_input(bank, mask))
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530913 return _get_gpio_datain(bank, offset);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300914 else
Tarun Kanti DebBarma7fcca712012-02-27 11:46:09 +0530915 return _get_gpio_dataout(bank, offset);
David Brownell52e31342008-03-03 12:43:23 -0800916}
917
918static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
919{
920 struct gpio_bank *bank;
921 unsigned long flags;
922
923 bank = container_of(chip, struct gpio_bank, chip);
924 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700925 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800926 _set_gpio_direction(bank, offset, 0);
927 spin_unlock_irqrestore(&bank->lock, flags);
928 return 0;
929}
930
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700931static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
932 unsigned debounce)
933{
934 struct gpio_bank *bank;
935 unsigned long flags;
936
937 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800938
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700939 spin_lock_irqsave(&bank->lock, flags);
940 _set_gpio_debounce(bank, offset, debounce);
941 spin_unlock_irqrestore(&bank->lock, flags);
942
943 return 0;
944}
945
David Brownell52e31342008-03-03 12:43:23 -0800946static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
947{
948 struct gpio_bank *bank;
949 unsigned long flags;
950
951 bank = container_of(chip, struct gpio_bank, chip);
952 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700953 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800954 spin_unlock_irqrestore(&bank->lock, flags);
955}
956
957/*---------------------------------------------------------------------*/
958
Tony Lindgren9a748052010-12-07 16:26:56 -0800959static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700960{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700961 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700962 u32 rev;
963
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700964 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700965 return;
966
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700967 rev = __raw_readw(bank->base + bank->regs->revision);
968 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700969 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700970
971 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700972}
973
David Brownell8ba55c52008-02-26 11:10:50 -0800974/* This lock class tells lockdep that GPIO irqs are in a different
975 * category than their parents, so it won't report false recursion.
976 */
977static struct lock_class_key gpio_lock_class;
978
Charulatha V03e128c2011-05-05 19:58:01 +0530979static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800980{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530981 void __iomem *base = bank->base;
982 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800983
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530984 if (bank->width == 16)
985 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800986
Charulatha Vd0d665a2011-08-31 00:02:21 +0530987 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530988 __raw_writel(l, bank->base + bank->regs->irqenable);
989 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800990 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530991
992 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530993 _gpio_rmw(base, bank->regs->irqstatus, l, !bank->regs->irqenable_inv);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530994 if (bank->regs->debounce_en)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +0530995 __raw_writel(0, base + bank->regs->debounce_en);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530996
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530997 /* Save OE default value (0xffffffff) in the context */
998 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530999 /* Initialize interface clk ungated, module enabled */
1000 if (bank->regs->ctrl)
Tarun Kanti DebBarma6edd94d2012-04-30 12:50:12 +05301001 __raw_writel(0, base + bank->regs->ctrl);
Tarun Kanti DebBarma34672012012-07-11 14:43:14 +05301002
1003 bank->dbck = clk_get(bank->dev, "dbclk");
1004 if (IS_ERR(bank->dbck))
1005 dev_err(bank->dev, "Could not get gpio dbck\n");
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001006}
1007
Bill Pemberton38363092012-11-19 13:22:34 -05001008static void
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001009omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
1010 unsigned int num)
1011{
1012 struct irq_chip_generic *gc;
1013 struct irq_chip_type *ct;
1014
1015 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
1016 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -07001017 if (!gc) {
1018 dev_err(bank->dev, "Memory alloc failed for gc\n");
1019 return;
1020 }
1021
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001022 ct = gc->chip_types;
1023
1024 /* NOTE: No ack required, reading IRQ status clears it. */
1025 ct->chip.irq_mask = irq_gc_mask_set_bit;
1026 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
1027 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301028
1029 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001030 ct->chip.irq_set_wake = gpio_wake_enable,
1031
1032 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1033 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1034 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1035}
1036
Bill Pemberton38363092012-11-19 13:22:34 -05001037static void omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001038{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001039 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001040 static int gpio;
1041
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001042 /*
1043 * REVISIT eventually switch from OMAP-specific gpio structs
1044 * over to the generic ones
1045 */
1046 bank->chip.request = omap_gpio_request;
1047 bank->chip.free = omap_gpio_free;
1048 bank->chip.direction_input = gpio_input;
1049 bank->chip.get = gpio_get;
1050 bank->chip.direction_output = gpio_output;
1051 bank->chip.set_debounce = gpio_debounce;
1052 bank->chip.set = gpio_set;
Jon Hunterede4d7a2013-03-01 11:22:47 -06001053 bank->chip.to_irq = omap_gpio_to_irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301054 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001055 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301056 if (bank->regs->wkup_en)
1057 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001058 bank->chip.base = OMAP_MPUIO(0);
1059 } else {
1060 bank->chip.label = "gpio";
1061 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001062 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001063 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001064 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001065
1066 gpiochip_add(&bank->chip);
1067
Jon Hunterede4d7a2013-03-01 11:22:47 -06001068 for (j = 0; j < bank->width; j++) {
1069 int irq = irq_create_mapping(bank->domain, j);
1070 irq_set_lockdep_class(irq, &gpio_lock_class);
1071 irq_set_chip_data(irq, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301072 if (bank->is_mpuio) {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001073 omap_mpuio_alloc_gc(bank, irq, bank->width);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001074 } else {
Jon Hunterede4d7a2013-03-01 11:22:47 -06001075 irq_set_chip_and_handler(irq, &gpio_irq_chip,
1076 handle_simple_irq);
1077 set_irq_flags(irq, IRQF_VALID);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001078 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001079 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001080 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1081 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001082}
1083
Benoit Cousson384ebe12011-08-16 11:53:02 +02001084static const struct of_device_id omap_gpio_match[];
1085
Bill Pemberton38363092012-11-19 13:22:34 -05001086static int omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001087{
Benoit Cousson862ff642012-02-01 15:58:56 +01001088 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001089 struct device_node *node = dev->of_node;
1090 const struct of_device_id *match;
Uwe Kleine-Königf6817a22012-05-21 21:57:39 +02001091 const struct omap_gpio_platform_data *pdata;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001092 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001093 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301094 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001095
Benoit Cousson384ebe12011-08-16 11:53:02 +02001096 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1097
1098 pdata = match ? match->data : dev->platform_data;
1099 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001100 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001101
Tobias Klauser086d5852012-10-05 11:37:38 +02001102 bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301103 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001104 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001105 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301106 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001107
1108 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1109 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001110 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001111 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001112 }
1113
1114 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001115 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001116 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001117 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001118 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301119 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301120 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301121 bank->loses_context = pdata->loses_context;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001122 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001123#ifdef CONFIG_OF_GPIO
1124 bank->chip.of_node = of_node_get(node);
1125#endif
1126
Jon Hunterede4d7a2013-03-01 11:22:47 -06001127 bank->domain = irq_domain_add_linear(node, bank->width,
1128 &irq_domain_simple_ops, NULL);
1129 if (!bank->domain)
Benoit Cousson384ebe12011-08-16 11:53:02 +02001130 return -ENODEV;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001131
1132 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1133 bank->set_dataout = _set_gpio_dataout_reg;
1134 else
1135 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001136
1137 spin_lock_init(&bank->lock);
1138
1139 /* Static mapping, never released */
1140 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1141 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001142 dev_err(dev, "Invalid mem resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001143 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001144 }
1145
Benoit Cousson96751fc2012-02-01 16:01:39 +01001146 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1147 pdev->name)) {
1148 dev_err(dev, "Region already claimed\n");
1149 return -EBUSY;
1150 }
1151
1152 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001153 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001154 dev_err(dev, "Could not ioremap\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001155 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001156 }
1157
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301158 platform_set_drvdata(pdev, bank);
1159
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001160 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301161 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001162 pm_runtime_get_sync(bank->dev);
1163
Charulatha Vd0d665a2011-08-31 00:02:21 +05301164 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301165 mpuio_init(bank);
1166
Charulatha V03e128c2011-05-05 19:58:01 +05301167 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001168 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001169 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001170
Jon Hunter7b86cef2012-07-03 11:05:50 -05001171 if (bank->loses_context)
1172 bank->get_context_loss_count = pdata->get_context_loss_count;
1173
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301174 pm_runtime_put(bank->dev);
1175
Charulatha V03e128c2011-05-05 19:58:01 +05301176 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001177
Charulatha V03e128c2011-05-05 19:58:01 +05301178 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001179}
1180
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301181#ifdef CONFIG_ARCH_OMAP2PLUS
1182
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301183#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301184static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001185
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301186static int omap_gpio_runtime_suspend(struct device *dev)
1187{
1188 struct platform_device *pdev = to_platform_device(dev);
1189 struct gpio_bank *bank = platform_get_drvdata(pdev);
1190 u32 l1 = 0, l2 = 0;
1191 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001192 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301193
1194 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001195
1196 /*
1197 * Only edges can generate a wakeup event to the PRCM.
1198 *
1199 * Therefore, ensure any wake-up capable GPIOs have
1200 * edge-detection enabled before going idle to ensure a wakeup
1201 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1202 * NDA TRM 25.5.3.1)
1203 *
1204 * The normal values will be restored upon ->runtime_resume()
1205 * by writing back the values saved in bank->context.
1206 */
1207 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1208 if (wake_low)
1209 __raw_writel(wake_low | bank->context.fallingdetect,
1210 bank->base + bank->regs->fallingdetect);
1211 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1212 if (wake_hi)
1213 __raw_writel(wake_hi | bank->context.risingdetect,
1214 bank->base + bank->regs->risingdetect);
1215
Kevin Hilmanb3c64bc2012-05-17 16:42:16 -07001216 if (!bank->enabled_non_wakeup_gpios)
1217 goto update_gpio_context_count;
1218
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301219 if (bank->power_mode != OFF_MODE) {
1220 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301221 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301222 }
1223 /*
1224 * If going to OFF, remove triggering for all
1225 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1226 * generated. See OMAP2420 Errata item 1.101.
1227 */
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301228 bank->saved_datain = __raw_readl(bank->base +
1229 bank->regs->datain);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301230 l1 = bank->context.fallingdetect;
1231 l2 = bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301232
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301233 l1 &= ~bank->enabled_non_wakeup_gpios;
1234 l2 &= ~bank->enabled_non_wakeup_gpios;
1235
1236 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1237 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1238
1239 bank->workaround_enabled = true;
1240
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301241update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301242 if (bank->get_context_loss_count)
1243 bank->context_loss_count =
1244 bank->get_context_loss_count(bank->dev);
1245
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301246 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301247 spin_unlock_irqrestore(&bank->lock, flags);
1248
1249 return 0;
1250}
1251
1252static int omap_gpio_runtime_resume(struct device *dev)
1253{
1254 struct platform_device *pdev = to_platform_device(dev);
1255 struct gpio_bank *bank = platform_get_drvdata(pdev);
1256 int context_lost_cnt_after;
1257 u32 l = 0, gen, gen0, gen1;
1258 unsigned long flags;
1259
1260 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301261 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001262
1263 /*
1264 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1265 * GPIOs were set to edge trigger also in order to be able to
1266 * generate a PRCM wakeup. Here we restore the
1267 * pre-runtime_suspend() values for edge triggering.
1268 */
1269 __raw_writel(bank->context.fallingdetect,
1270 bank->base + bank->regs->fallingdetect);
1271 __raw_writel(bank->context.risingdetect,
1272 bank->base + bank->regs->risingdetect);
1273
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301274 if (bank->get_context_loss_count) {
1275 context_lost_cnt_after =
1276 bank->get_context_loss_count(bank->dev);
Kevin Hilman22770de2012-05-17 14:52:56 -07001277 if (context_lost_cnt_after != bank->context_loss_count) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301278 omap_gpio_restore_context(bank);
1279 } else {
1280 spin_unlock_irqrestore(&bank->lock, flags);
1281 return 0;
1282 }
1283 }
1284
Tarun Kanti DebBarma1b1287032012-04-27 19:43:38 +05301285 if (!bank->workaround_enabled) {
1286 spin_unlock_irqrestore(&bank->lock, flags);
1287 return 0;
1288 }
1289
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301290 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301291 bank->base + bank->regs->fallingdetect);
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301292 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301293 bank->base + bank->regs->risingdetect);
1294 l = __raw_readl(bank->base + bank->regs->datain);
1295
1296 /*
1297 * Check if any of the non-wakeup interrupt GPIOs have changed
1298 * state. If so, generate an IRQ by software. This is
1299 * horribly racy, but it's the best we can do to work around
1300 * this silicon bug.
1301 */
1302 l ^= bank->saved_datain;
1303 l &= bank->enabled_non_wakeup_gpios;
1304
1305 /*
1306 * No need to generate IRQs for the rising edge for gpio IRQs
1307 * configured with falling edge only; and vice versa.
1308 */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301309 gen0 = l & bank->context.fallingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301310 gen0 &= bank->saved_datain;
1311
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301312 gen1 = l & bank->context.risingdetect;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301313 gen1 &= ~(bank->saved_datain);
1314
1315 /* FIXME: Consider GPIO IRQs with level detections properly! */
Tarun Kanti DebBarmac6f31c92012-04-27 19:43:32 +05301316 gen = l & (~(bank->context.fallingdetect) &
1317 ~(bank->context.risingdetect));
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301318 /* Consider all GPIO IRQs needed to be updated */
1319 gen |= gen0 | gen1;
1320
1321 if (gen) {
1322 u32 old0, old1;
1323
1324 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1325 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1326
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301327 if (!bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301328 __raw_writel(old0 | gen, bank->base +
1329 bank->regs->leveldetect0);
1330 __raw_writel(old1 | gen, bank->base +
1331 bank->regs->leveldetect1);
1332 }
1333
Tarun Kanti DebBarma4e962e82012-04-27 19:43:37 +05301334 if (bank->regs->irqstatus_raw0) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301335 __raw_writel(old0 | l, bank->base +
1336 bank->regs->leveldetect0);
1337 __raw_writel(old1 | l, bank->base +
1338 bank->regs->leveldetect1);
1339 }
1340 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1341 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1342 }
1343
1344 bank->workaround_enabled = false;
1345 spin_unlock_irqrestore(&bank->lock, flags);
1346
1347 return 0;
1348}
1349#endif /* CONFIG_PM_RUNTIME */
1350
1351void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001352{
Charulatha V03e128c2011-05-05 19:58:01 +05301353 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001354
Charulatha V03e128c2011-05-05 19:58:01 +05301355 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301356 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301357 continue;
1358
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301359 bank->power_mode = pwr_mode;
1360
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301361 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001362 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001363}
1364
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001365void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001366{
Charulatha V03e128c2011-05-05 19:58:01 +05301367 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001368
Charulatha V03e128c2011-05-05 19:58:01 +05301369 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301370 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301371 continue;
1372
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301373 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001374 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001375}
1376
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301377#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301378static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301379{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301380 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301381 bank->base + bank->regs->wkup_en);
1382 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301383 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301384 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301385 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301386 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301387 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301388 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301389 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301390 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301391 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1392 __raw_writel(bank->context.dataout,
1393 bank->base + bank->regs->set_dataout);
1394 else
1395 __raw_writel(bank->context.dataout,
1396 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301397 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1398
Nishanth Menonae547352011-09-09 19:08:58 +05301399 if (bank->dbck_enable_mask) {
1400 __raw_writel(bank->context.debounce, bank->base +
1401 bank->regs->debounce);
1402 __raw_writel(bank->context.debounce_en,
1403 bank->base + bank->regs->debounce_en);
1404 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301405
1406 __raw_writel(bank->context.irqenable1,
1407 bank->base + bank->regs->irqenable);
1408 __raw_writel(bank->context.irqenable2,
1409 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301410}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301411#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301412#else
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301413#define omap_gpio_runtime_suspend NULL
1414#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301415#endif
1416
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301417static const struct dev_pm_ops gpio_pm_ops = {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301418 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1419 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301420};
1421
Benoit Cousson384ebe12011-08-16 11:53:02 +02001422#if defined(CONFIG_OF)
1423static struct omap_gpio_reg_offs omap2_gpio_regs = {
1424 .revision = OMAP24XX_GPIO_REVISION,
1425 .direction = OMAP24XX_GPIO_OE,
1426 .datain = OMAP24XX_GPIO_DATAIN,
1427 .dataout = OMAP24XX_GPIO_DATAOUT,
1428 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1429 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1430 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1431 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1432 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1433 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1434 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1435 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1436 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1437 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1438 .ctrl = OMAP24XX_GPIO_CTRL,
1439 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1440 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1441 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1442 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1443 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1444};
1445
1446static struct omap_gpio_reg_offs omap4_gpio_regs = {
1447 .revision = OMAP4_GPIO_REVISION,
1448 .direction = OMAP4_GPIO_OE,
1449 .datain = OMAP4_GPIO_DATAIN,
1450 .dataout = OMAP4_GPIO_DATAOUT,
1451 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1452 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1453 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1454 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1455 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1456 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1457 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1458 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1459 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1460 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1461 .ctrl = OMAP4_GPIO_CTRL,
1462 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1463 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1464 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1465 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1466 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1467};
1468
Chen Gange9a65bb2013-02-06 18:44:32 +08001469static const struct omap_gpio_platform_data omap2_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001470 .regs = &omap2_gpio_regs,
1471 .bank_width = 32,
1472 .dbck_flag = false,
1473};
1474
Chen Gange9a65bb2013-02-06 18:44:32 +08001475static const struct omap_gpio_platform_data omap3_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001476 .regs = &omap2_gpio_regs,
1477 .bank_width = 32,
1478 .dbck_flag = true,
1479};
1480
Chen Gange9a65bb2013-02-06 18:44:32 +08001481static const struct omap_gpio_platform_data omap4_pdata = {
Benoit Cousson384ebe12011-08-16 11:53:02 +02001482 .regs = &omap4_gpio_regs,
1483 .bank_width = 32,
1484 .dbck_flag = true,
1485};
1486
1487static const struct of_device_id omap_gpio_match[] = {
1488 {
1489 .compatible = "ti,omap4-gpio",
1490 .data = &omap4_pdata,
1491 },
1492 {
1493 .compatible = "ti,omap3-gpio",
1494 .data = &omap3_pdata,
1495 },
1496 {
1497 .compatible = "ti,omap2-gpio",
1498 .data = &omap2_pdata,
1499 },
1500 { },
1501};
1502MODULE_DEVICE_TABLE(of, omap_gpio_match);
1503#endif
1504
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001505static struct platform_driver omap_gpio_driver = {
1506 .probe = omap_gpio_probe,
1507 .driver = {
1508 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301509 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001510 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001511 },
1512};
1513
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001514/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001515 * gpio driver register needs to be done before
1516 * machine_init functions access gpio APIs.
1517 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001518 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001519static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001520{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001521 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001522}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001523postcore_initcall(omap_gpio_drv_reg);