blob: c48de8ffe9eff9502023a4ac0f2af85f8c7c3960 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01002 * Support functions for OMAP GPIO
3 *
Tony Lindgren92105bb2005-09-07 17:20:26 +01004 * Copyright (C) 2003-2005 Nokia Corporation
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01006 *
Santosh Shilimkar44169072009-05-28 14:16:04 -07007 * Copyright (C) 2009 Texas Instruments
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
9 *
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010015#include <linux/init.h>
16#include <linux/module.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010017#include <linux/interrupt.h>
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +020018#include <linux/syscore_ops.h>
Tony Lindgren92105bb2005-09-07 17:20:26 +010019#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000020#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
Benoit Cousson96751fc2012-02-01 16:01:39 +010022#include <linux/device.h>
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080023#include <linux/pm_runtime.h>
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +053024#include <linux/pm.h>
Benoit Cousson384ebe12011-08-16 11:53:02 +020025#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/irqdomain.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010028
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010030#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/irqs.h>
Russell King1bc857f2011-07-26 10:54:55 +010032#include <asm/gpio.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010033#include <asm/mach/irq.h>
34
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053035#define OFF_MODE 1
36
Charulatha V03e128c2011-05-05 19:58:01 +053037static LIST_HEAD(omap_gpio_list);
38
Charulatha V6d62e212011-04-18 15:06:51 +000039struct gpio_regs {
40 u32 irqenable1;
41 u32 irqenable2;
42 u32 wake_en;
43 u32 ctrl;
44 u32 oe;
45 u32 leveldetect0;
46 u32 leveldetect1;
47 u32 risingdetect;
48 u32 fallingdetect;
49 u32 dataout;
Nishanth Menonae547352011-09-09 19:08:58 +053050 u32 debounce;
51 u32 debounce_en;
Charulatha V6d62e212011-04-18 15:06:51 +000052};
53
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010054struct gpio_bank {
Charulatha V03e128c2011-05-05 19:58:01 +053055 struct list_head node;
Tony Lindgren92105bb2005-09-07 17:20:26 +010056 void __iomem *base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010057 u16 irq;
Benoit Cousson384ebe12011-08-16 11:53:02 +020058 int irq_base;
59 struct irq_domain *domain;
Tony Lindgren92105bb2005-09-07 17:20:26 +010060 u32 suspend_wakeup;
61 u32 saved_wakeup;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080062 u32 non_wakeup_gpios;
63 u32 enabled_non_wakeup_gpios;
Charulatha V6d62e212011-04-18 15:06:51 +000064 struct gpio_regs context;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -080065 u32 saved_datain;
66 u32 saved_fallingdetect;
67 u32 saved_risingdetect;
Kevin Hilmanb144ff62008-01-16 21:56:15 -080068 u32 level_mask;
Cory Maccarrone4318f362010-01-08 10:29:04 -080069 u32 toggle_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010070 spinlock_t lock;
David Brownell52e31342008-03-03 12:43:23 -080071 struct gpio_chip chip;
Jouni Hogander89db9482008-12-10 17:35:24 -080072 struct clk *dbck;
Charulatha V058af1e2009-11-22 10:11:25 -080073 u32 mod_usage;
Kevin Hilman8865b9b2009-01-27 11:15:34 -080074 u32 dbck_enable_mask;
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +053075 bool dbck_enabled;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080076 struct device *dev;
Charulatha Vd0d665a2011-08-31 00:02:21 +053077 bool is_mpuio;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -080078 bool dbck_flag;
Charulatha V0cde8d02011-05-05 20:15:16 +053079 bool loses_context;
Tony Lindgren5de62b82010-12-07 16:26:58 -080080 int stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -070081 u32 width;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053082 int context_loss_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +053083 int power_mode;
84 bool workaround_enabled;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070085
86 void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +053087 int (*get_context_loss_count)(struct device *dev);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -070088
89 struct omap_gpio_reg_offs *regs;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010090};
91
Kevin Hilman129fd222011-04-22 07:59:07 -070092#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
93#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
Charulatha Vc8eef652011-05-02 15:21:42 +053094#define GPIO_MOD_CTRL_BIT BIT(0)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010095
Benoit Cousson25db7112012-02-23 21:50:10 +010096static int irq_to_gpio(struct gpio_bank *bank, unsigned int gpio_irq)
97{
98 return gpio_irq - bank->irq_base + bank->chip.base;
99}
100
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100101static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
102{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100103 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100104 u32 l;
105
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700106 reg += bank->regs->direction;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100107 l = __raw_readl(reg);
108 if (is_input)
109 l |= 1 << gpio;
110 else
111 l &= ~(1 << gpio);
112 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530113 bank->context.oe = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100114}
115
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700116
117/* set data out value using dedicate set/clear register */
118static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100119{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100120 void __iomem *reg = bank->base;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700121 u32 l = GPIO_BIT(bank, gpio);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100122
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700123 if (enable)
124 reg += bank->regs->set_dataout;
125 else
126 reg += bank->regs->clr_dataout;
127
128 __raw_writel(l, reg);
129}
130
131/* set data out value using mask register */
132static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
133{
134 void __iomem *reg = bank->base + bank->regs->dataout;
135 u32 gpio_bit = GPIO_BIT(bank, gpio);
136 u32 l;
137
138 l = __raw_readl(reg);
139 if (enable)
140 l |= gpio_bit;
141 else
142 l &= ~gpio_bit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100143 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530144 bank->context.dataout = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145}
146
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300147static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100148{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700149 void __iomem *reg = bank->base + bank->regs->datain;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100150
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700151 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100152}
153
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300154static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
155{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700156 void __iomem *reg = bank->base + bank->regs->dataout;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300157
Kevin Hilman129fd222011-04-22 07:59:07 -0700158 return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300159}
160
Kevin Hilmanece95282011-07-12 08:18:15 -0700161static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
162{
163 int l = __raw_readl(base + reg);
164
Benoit Cousson862ff642012-02-01 15:58:56 +0100165 if (set)
Kevin Hilmanece95282011-07-12 08:18:15 -0700166 l |= mask;
167 else
168 l &= ~mask;
169
170 __raw_writel(l, base + reg);
171}
Tony Lindgren92105bb2005-09-07 17:20:26 +0100172
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +0530173static inline void _gpio_dbck_enable(struct gpio_bank *bank)
174{
175 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
176 clk_enable(bank->dbck);
177 bank->dbck_enabled = true;
178 }
179}
180
181static inline void _gpio_dbck_disable(struct gpio_bank *bank)
182{
183 if (bank->dbck_enable_mask && bank->dbck_enabled) {
184 clk_disable(bank->dbck);
185 bank->dbck_enabled = false;
186 }
187}
188
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700189/**
190 * _set_gpio_debounce - low level gpio debounce time
191 * @bank: the gpio bank we're acting upon
192 * @gpio: the gpio number on this @gpio
193 * @debounce: debounce time to use
194 *
195 * OMAP's debounce time is in 31us steps so we need
196 * to convert and round up to the closest unit.
197 */
198static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
199 unsigned debounce)
200{
Kevin Hilman9942da02011-04-22 12:02:05 -0700201 void __iomem *reg;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700202 u32 val;
203 u32 l;
204
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800205 if (!bank->dbck_flag)
206 return;
207
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700208 if (debounce < 32)
209 debounce = 0x01;
210 else if (debounce > 7936)
211 debounce = 0xff;
212 else
213 debounce = (debounce / 0x1f) - 1;
214
Kevin Hilman129fd222011-04-22 07:59:07 -0700215 l = GPIO_BIT(bank, gpio);
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700216
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530217 clk_enable(bank->dbck);
Kevin Hilman9942da02011-04-22 12:02:05 -0700218 reg = bank->base + bank->regs->debounce;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700219 __raw_writel(debounce, reg);
220
Kevin Hilman9942da02011-04-22 12:02:05 -0700221 reg = bank->base + bank->regs->debounce_en;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700222 val = __raw_readl(reg);
223
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530224 if (debounce)
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700225 val |= l;
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530226 else
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700227 val &= ~l;
Kevin Hilmanf7ec0b02010-06-09 13:53:07 +0300228 bank->dbck_enable_mask = val;
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700229
230 __raw_writel(val, reg);
Tarun Kanti DebBarma6fd9c422011-11-24 03:58:54 +0530231 clk_disable(bank->dbck);
232 /*
233 * Enable debounce clock per module.
234 * This call is mandatory because in omap_gpio_request() when
235 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
236 * runtime callbck fails to turn on dbck because dbck_enable_mask
237 * used within _gpio_dbck_enable() is still not initialized at
238 * that point. Therefore we have to enable dbck here.
239 */
240 _gpio_dbck_enable(bank);
Nishanth Menonae547352011-09-09 19:08:58 +0530241 if (bank->dbck_enable_mask) {
242 bank->context.debounce = debounce;
243 bank->context.debounce_en = val;
244 }
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700245}
246
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530247static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700248 int trigger)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100249{
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800250 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100251 u32 gpio_bit = 1 << gpio;
252
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530253 _gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
254 trigger & IRQ_TYPE_LEVEL_LOW);
255 _gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
256 trigger & IRQ_TYPE_LEVEL_HIGH);
257 _gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
258 trigger & IRQ_TYPE_EDGE_RISING);
259 _gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
260 trigger & IRQ_TYPE_EDGE_FALLING);
261
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530262 bank->context.leveldetect0 =
263 __raw_readl(bank->base + bank->regs->leveldetect0);
264 bank->context.leveldetect1 =
265 __raw_readl(bank->base + bank->regs->leveldetect1);
266 bank->context.risingdetect =
267 __raw_readl(bank->base + bank->regs->risingdetect);
268 bank->context.fallingdetect =
269 __raw_readl(bank->base + bank->regs->fallingdetect);
270
271 if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530272 _gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530273 bank->context.wake_en =
274 __raw_readl(bank->base + bank->regs->wkup_en);
275 }
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530276
Ambresh K55b220c2011-06-15 13:40:45 -0700277 /* This part needs to be executed always for OMAP{34xx, 44xx} */
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530278 if (!bank->regs->irqctrl) {
279 /* On omap24xx proceed only when valid GPIO bit is set */
280 if (bank->non_wakeup_gpios) {
281 if (!(bank->non_wakeup_gpios & gpio_bit))
282 goto exit;
283 }
284
Chunqiu Wang699117a62009-06-24 17:13:39 +0000285 /*
286 * Log the edge gpio and manually trigger the IRQ
287 * after resume if the input level changes
288 * to avoid irq lost during PER RET/OFF mode
289 * Applies for omap2 non-wakeup gpio and all omap3 gpios
290 */
291 if (trigger & IRQ_TYPE_EDGE_BOTH)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -0800292 bank->enabled_non_wakeup_gpios |= gpio_bit;
293 else
294 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
295 }
Kevin Hilman5eb3bb92007-05-05 11:40:29 -0700296
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530297exit:
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530298 bank->level_mask =
299 __raw_readl(bank->base + bank->regs->leveldetect0) |
300 __raw_readl(bank->base + bank->regs->leveldetect1);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100301}
302
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800303#ifdef CONFIG_ARCH_OMAP1
Cory Maccarrone4318f362010-01-08 10:29:04 -0800304/*
305 * This only applies to chips that can't do both rising and falling edge
306 * detection at once. For all other chips, this function is a noop.
307 */
308static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
309{
310 void __iomem *reg = bank->base;
311 u32 l = 0;
312
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530313 if (!bank->regs->irqctrl)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800314 return;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530315
316 reg += bank->regs->irqctrl;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800317
318 l = __raw_readl(reg);
319 if ((l >> gpio) & 1)
320 l &= ~(1 << gpio);
321 else
322 l |= 1 << gpio;
323
324 __raw_writel(l, reg);
325}
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530326#else
327static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
Uwe Kleine-König9198bcd2010-01-29 14:20:05 -0800328#endif
Cory Maccarrone4318f362010-01-08 10:29:04 -0800329
Tony Lindgren92105bb2005-09-07 17:20:26 +0100330static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
331{
332 void __iomem *reg = bank->base;
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530333 void __iomem *base = bank->base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100334 u32 l = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100335
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530336 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
337 set_gpio_trigger(bank, gpio, trigger);
338 } else if (bank->regs->irqctrl) {
339 reg += bank->regs->irqctrl;
340
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100341 l = __raw_readl(reg);
Janusz Krzysztofik29501572010-04-05 11:38:06 +0000342 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Cory Maccarrone4318f362010-01-08 10:29:04 -0800343 bank->toggle_mask |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100344 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100345 l |= 1 << gpio;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100346 else if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100347 l &= ~(1 << gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100348 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530349 return -EINVAL;
350
351 __raw_writel(l, reg);
352 } else if (bank->regs->edgectrl1) {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100353 if (gpio & 0x08)
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530354 reg += bank->regs->edgectrl2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100355 else
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530356 reg += bank->regs->edgectrl1;
357
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100358 gpio &= 0x07;
359 l = __raw_readl(reg);
360 l &= ~(3 << (gpio << 1));
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100361 if (trigger & IRQ_TYPE_EDGE_RISING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100362 l |= 2 << (gpio << 1);
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100363 if (trigger & IRQ_TYPE_EDGE_FALLING)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100364 l |= 1 << (gpio << 1);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530365
366 /* Enable wake-up during idle for dynamic tick */
367 _gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530368 bank->context.wake_en =
369 __raw_readl(bank->base + bank->regs->wkup_en);
Tarun Kanti DebBarma5e571f32011-09-13 15:02:14 +0530370 __raw_writel(l, reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100371 }
Tony Lindgren92105bb2005-09-07 17:20:26 +0100372 return 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100373}
374
Lennert Buytenheke9191022010-11-29 11:17:17 +0100375static int gpio_irq_type(struct irq_data *d, unsigned type)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100376{
Benoit Cousson25db7112012-02-23 21:50:10 +0100377 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100378 unsigned gpio;
379 int retval;
David Brownella6472532008-03-03 04:33:30 -0800380 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100381
Lennert Buytenheke9191022010-11-29 11:17:17 +0100382 if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
383 gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100384 else
Benoit Cousson25db7112012-02-23 21:50:10 +0100385 gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100386
David Brownelle5c56ed2006-12-06 17:13:59 -0800387 if (type & ~IRQ_TYPE_SENSE_MASK)
Tony Lindgren6e60e792006-04-02 17:46:23 +0100388 return -EINVAL;
David Brownelle5c56ed2006-12-06 17:13:59 -0800389
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530390 if (!bank->regs->leveldetect0 &&
391 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
Tony Lindgren92105bb2005-09-07 17:20:26 +0100392 return -EINVAL;
393
David Brownella6472532008-03-03 04:33:30 -0800394 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman129fd222011-04-22 07:59:07 -0700395 retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
David Brownella6472532008-03-03 04:33:30 -0800396 spin_unlock_irqrestore(&bank->lock, flags);
Kevin Hilman672e3022008-01-16 21:56:16 -0800397
398 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100399 __irq_set_handler_locked(d->irq, handle_level_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800400 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100401 __irq_set_handler_locked(d->irq, handle_edge_irq);
Kevin Hilman672e3022008-01-16 21:56:16 -0800402
Tony Lindgren92105bb2005-09-07 17:20:26 +0100403 return retval;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100404}
405
406static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
407{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100408 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100409
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700410 reg += bank->regs->irqstatus;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100411 __raw_writel(gpio_mask, reg);
Hiroshi DOYUbee79302006-09-25 12:41:46 +0300412
413 /* Workaround for clearing DSP GPIO interrupts to allow retention */
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700414 if (bank->regs->irqstatus2) {
415 reg = bank->base + bank->regs->irqstatus2;
Roger Quadrosbedfd152009-04-23 11:10:50 -0700416 __raw_writel(gpio_mask, reg);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700417 }
Roger Quadrosbedfd152009-04-23 11:10:50 -0700418
419 /* Flush posted write for the irq status to avoid spurious interrupts */
420 __raw_readl(reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100421}
422
423static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
424{
Kevin Hilman129fd222011-04-22 07:59:07 -0700425 _clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100426}
427
Imre Deakea6dedd2006-06-26 16:16:00 -0700428static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
429{
430 void __iomem *reg = bank->base;
Imre Deak99c47702006-06-26 16:16:07 -0700431 u32 l;
Kevin Hilmanc390aad02011-04-21 09:33:36 -0700432 u32 mask = (1 << bank->width) - 1;
Imre Deakea6dedd2006-06-26 16:16:00 -0700433
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700434 reg += bank->regs->irqenable;
Imre Deak99c47702006-06-26 16:16:07 -0700435 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700436 if (bank->regs->irqenable_inv)
Imre Deak99c47702006-06-26 16:16:07 -0700437 l = ~l;
438 l &= mask;
439 return l;
Imre Deakea6dedd2006-06-26 16:16:00 -0700440}
441
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700442static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100443{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100444 void __iomem *reg = bank->base;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100445 u32 l;
446
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700447 if (bank->regs->set_irqenable) {
448 reg += bank->regs->set_irqenable;
449 l = gpio_mask;
450 } else {
451 reg += bank->regs->irqenable;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100452 l = __raw_readl(reg);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700453 if (bank->regs->irqenable_inv)
454 l &= ~gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100455 else
456 l |= gpio_mask;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100457 }
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700458
459 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530460 bank->context.irqenable1 = l;
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700461}
462
463static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
464{
465 void __iomem *reg = bank->base;
466 u32 l;
467
468 if (bank->regs->clr_irqenable) {
469 reg += bank->regs->clr_irqenable;
470 l = gpio_mask;
471 } else {
472 reg += bank->regs->irqenable;
473 l = __raw_readl(reg);
474 if (bank->regs->irqenable_inv)
475 l |= gpio_mask;
476 else
477 l &= ~gpio_mask;
478 }
479
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100480 __raw_writel(l, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530481 bank->context.irqenable1 = l;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100482}
483
484static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
485{
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700486 _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100487}
488
Tony Lindgren92105bb2005-09-07 17:20:26 +0100489/*
490 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
491 * 1510 does not seem to have a wake-up register. If JTAG is connected
492 * to the target, system will wake up always on GPIO events. While
493 * system is running all registered GPIO interrupts need to have wake-up
494 * enabled. When system is suspended, only selected GPIO interrupts need
495 * to have wake-up enabled.
496 */
497static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
498{
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700499 u32 gpio_bit = GPIO_BIT(bank, gpio);
500 unsigned long flags;
David Brownella6472532008-03-03 04:33:30 -0800501
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700502 if (bank->non_wakeup_gpios & gpio_bit) {
Benoit Cousson862ff642012-02-01 15:58:56 +0100503 dev_err(bank->dev,
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700504 "Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100505 return -EINVAL;
506 }
Kevin Hilmanf64ad1a2011-04-22 09:45:27 -0700507
508 spin_lock_irqsave(&bank->lock, flags);
509 if (enable)
510 bank->suspend_wakeup |= gpio_bit;
511 else
512 bank->suspend_wakeup &= ~gpio_bit;
513
514 spin_unlock_irqrestore(&bank->lock, flags);
515
516 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100517}
518
Tony Lindgren4196dd62006-09-25 12:41:38 +0300519static void _reset_gpio(struct gpio_bank *bank, int gpio)
520{
Kevin Hilman129fd222011-04-22 07:59:07 -0700521 _set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300522 _set_gpio_irqenable(bank, gpio, 0);
523 _clear_gpio_irqstatus(bank, gpio);
Kevin Hilman129fd222011-04-22 07:59:07 -0700524 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300525}
526
Tony Lindgren92105bb2005-09-07 17:20:26 +0100527/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
Lennert Buytenheke9191022010-11-29 11:17:17 +0100528static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
Tony Lindgren92105bb2005-09-07 17:20:26 +0100529{
Benoit Cousson25db7112012-02-23 21:50:10 +0100530 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
531 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100532
Benoit Cousson25db7112012-02-23 21:50:10 +0100533 return _set_gpio_wakeup(bank, gpio, enable);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100534}
535
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800536static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100537{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800538 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
David Brownella6472532008-03-03 04:33:30 -0800539 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100540
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530541 /*
542 * If this is the first gpio_request for the bank,
543 * enable the bank module.
544 */
545 if (!bank->mod_usage)
546 pm_runtime_get_sync(bank->dev);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100547
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530548 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300549 /* Set trigger to none. You need to enable the desired trigger with
550 * request_irq() or set_irq_type().
551 */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800552 _set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100553
Charulatha Vfad96ea2011-05-25 11:23:50 +0530554 if (bank->regs->pinctrl) {
555 void __iomem *reg = bank->base + bank->regs->pinctrl;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100556
Tony Lindgren92105bb2005-09-07 17:20:26 +0100557 /* Claim the pin for MPU */
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800558 __raw_writel(__raw_readl(reg) | (1 << offset), reg);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100559 }
Charulatha Vfad96ea2011-05-25 11:23:50 +0530560
Charulatha Vc8eef652011-05-02 15:21:42 +0530561 if (bank->regs->ctrl && !bank->mod_usage) {
562 void __iomem *reg = bank->base + bank->regs->ctrl;
563 u32 ctrl;
Charulatha V9f096862010-05-14 12:05:27 -0700564
Charulatha Vc8eef652011-05-02 15:21:42 +0530565 ctrl = __raw_readl(reg);
566 /* Module is enabled, clocks are not gated */
567 ctrl &= ~GPIO_MOD_CTRL_BIT;
568 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530569 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800570 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530571
572 bank->mod_usage |= 1 << offset;
573
David Brownella6472532008-03-03 04:33:30 -0800574 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100575
576 return 0;
577}
578
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800579static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100580{
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800581 struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530582 void __iomem *base = bank->base;
David Brownella6472532008-03-03 04:33:30 -0800583 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100584
David Brownella6472532008-03-03 04:33:30 -0800585 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530586
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530587 if (bank->regs->wkup_en) {
Tony Lindgren92105bb2005-09-07 17:20:26 +0100588 /* Disable wake-up during idle for dynamic tick */
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530589 _gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530590 bank->context.wake_en =
591 __raw_readl(bank->base + bank->regs->wkup_en);
592 }
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530593
Charulatha Vc8eef652011-05-02 15:21:42 +0530594 bank->mod_usage &= ~(1 << offset);
Charulatha V9f096862010-05-14 12:05:27 -0700595
Charulatha Vc8eef652011-05-02 15:21:42 +0530596 if (bank->regs->ctrl && !bank->mod_usage) {
597 void __iomem *reg = bank->base + bank->regs->ctrl;
598 u32 ctrl;
599
600 ctrl = __raw_readl(reg);
601 /* Module is disabled, clocks are gated */
602 ctrl |= GPIO_MOD_CTRL_BIT;
603 __raw_writel(ctrl, reg);
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +0530604 bank->context.ctrl = ctrl;
Charulatha V058af1e2009-11-22 10:11:25 -0800605 }
Charulatha Vc8eef652011-05-02 15:21:42 +0530606
Jarkko Nikula3ff164e2008-12-10 17:35:27 -0800607 _reset_gpio(bank, bank->chip.base + offset);
David Brownella6472532008-03-03 04:33:30 -0800608 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530609
610 /*
611 * If this is the last gpio to be freed in the bank,
612 * disable the bank module.
613 */
614 if (!bank->mod_usage)
615 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100616}
617
618/*
619 * We need to unmask the GPIO bank interrupt as soon as possible to
620 * avoid missing GPIO interrupts for other lines in the bank.
621 * Then we need to mask-read-clear-unmask the triggered GPIO lines
622 * in the bank to avoid missing nested interrupts for a GPIO line.
623 * If we wait to unmask individual GPIO lines in the bank after the
624 * line's interrupt handler has been run, we may miss some nested
625 * interrupts.
626 */
Russell King10dd5ce2006-11-23 11:41:32 +0000627static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100628{
Tony Lindgren92105bb2005-09-07 17:20:26 +0100629 void __iomem *isr_reg = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100630 u32 isr;
Cory Maccarrone4318f362010-01-08 10:29:04 -0800631 unsigned int gpio_irq, gpio_index;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100632 struct gpio_bank *bank;
Imre Deakea6dedd2006-06-26 16:16:00 -0700633 u32 retrigger = 0;
634 int unmasked = 0;
Will Deaconee144182011-02-21 13:46:08 +0000635 struct irq_chip *chip = irq_desc_get_chip(desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100636
Will Deaconee144182011-02-21 13:46:08 +0000637 chained_irq_enter(chip, desc);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100638
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100639 bank = irq_get_handler_data(irq);
Kevin Hilmaneef4bec2011-04-21 09:17:35 -0700640 isr_reg = bank->base + bank->regs->irqstatus;
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530641 pm_runtime_get_sync(bank->dev);
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800642
643 if (WARN_ON(!isr_reg))
644 goto exit;
645
Tony Lindgren92105bb2005-09-07 17:20:26 +0100646 while(1) {
Tony Lindgren6e60e792006-04-02 17:46:23 +0100647 u32 isr_saved, level_mask = 0;
Imre Deakea6dedd2006-06-26 16:16:00 -0700648 u32 enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100649
Imre Deakea6dedd2006-06-26 16:16:00 -0700650 enabled = _get_gpio_irqbank_mask(bank);
651 isr_saved = isr = __raw_readl(isr_reg) & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100652
Tarun Kanti DebBarma9ea14d82011-08-30 15:05:44 +0530653 if (bank->level_mask)
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800654 level_mask = bank->level_mask & enabled;
Tony Lindgren6e60e792006-04-02 17:46:23 +0100655
656 /* clear edge sensitive interrupts before handler(s) are
657 called so that we don't miss any interrupt occurred while
658 executing them */
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700659 _disable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100660 _clear_gpio_irqbank(bank, isr_saved & ~level_mask);
Kevin Hilman28f3b5a2011-04-21 09:53:06 -0700661 _enable_gpio_irqbank(bank, isr_saved & ~level_mask);
Tony Lindgren6e60e792006-04-02 17:46:23 +0100662
663 /* if there is only edge sensitive GPIO pin interrupts
664 configured, we could unmask GPIO bank interrupt immediately */
Imre Deakea6dedd2006-06-26 16:16:00 -0700665 if (!level_mask && !unmasked) {
666 unmasked = 1;
Will Deaconee144182011-02-21 13:46:08 +0000667 chained_irq_exit(chip, desc);
Imre Deakea6dedd2006-06-26 16:16:00 -0700668 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100669
Imre Deakea6dedd2006-06-26 16:16:00 -0700670 isr |= retrigger;
671 retrigger = 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100672 if (!isr)
673 break;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100674
Benoit Cousson384ebe12011-08-16 11:53:02 +0200675 gpio_irq = bank->irq_base;
Tony Lindgren92105bb2005-09-07 17:20:26 +0100676 for (; isr != 0; isr >>= 1, gpio_irq++) {
Benoit Cousson25db7112012-02-23 21:50:10 +0100677 int gpio = irq_to_gpio(bank, gpio_irq);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800678
Tony Lindgren92105bb2005-09-07 17:20:26 +0100679 if (!(isr & 1))
680 continue;
Thomas Gleixner29454dd2006-07-03 02:22:22 +0200681
Benoit Cousson25db7112012-02-23 21:50:10 +0100682 gpio_index = GPIO_INDEX(bank, gpio);
683
Cory Maccarrone4318f362010-01-08 10:29:04 -0800684 /*
685 * Some chips can't respond to both rising and falling
686 * at the same time. If this irq was requested with
687 * both flags, we need to flip the ICR data for the IRQ
688 * to respond to the IRQ for the opposite direction.
689 * This will be indicated in the bank toggle_mask.
690 */
691 if (bank->toggle_mask & (1 << gpio_index))
692 _toggle_gpio_edge_triggering(bank, gpio_index);
Cory Maccarrone4318f362010-01-08 10:29:04 -0800693
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100694 generic_handle_irq(gpio_irq);
Tony Lindgren92105bb2005-09-07 17:20:26 +0100695 }
Tony Lindgren1a8bfa12005-11-10 14:26:50 +0000696 }
Imre Deakea6dedd2006-06-26 16:16:00 -0700697 /* if bank has any level sensitive GPIO pin interrupt
698 configured, we must unmask the bank interrupt only after
699 handler(s) are executed in order to avoid spurious bank
700 interrupt */
Evgeny Kuznetsovb1cc4c52010-12-07 16:25:40 -0800701exit:
Imre Deakea6dedd2006-06-26 16:16:00 -0700702 if (!unmasked)
Will Deaconee144182011-02-21 13:46:08 +0000703 chained_irq_exit(chip, desc);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +0530704 pm_runtime_put(bank->dev);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100705}
706
Lennert Buytenheke9191022010-11-29 11:17:17 +0100707static void gpio_irq_shutdown(struct irq_data *d)
Tony Lindgren4196dd62006-09-25 12:41:38 +0300708{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100709 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100710 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700711 unsigned long flags;
Tony Lindgren4196dd62006-09-25 12:41:38 +0300712
Colin Cross85ec7b92011-06-06 13:38:18 -0700713 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300714 _reset_gpio(bank, gpio);
Colin Cross85ec7b92011-06-06 13:38:18 -0700715 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren4196dd62006-09-25 12:41:38 +0300716}
717
Lennert Buytenheke9191022010-11-29 11:17:17 +0100718static void gpio_ack_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100719{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100720 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100721 unsigned int gpio = irq_to_gpio(bank, d->irq);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100722
723 _clear_gpio_irqstatus(bank, gpio);
724}
725
Lennert Buytenheke9191022010-11-29 11:17:17 +0100726static void gpio_mask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100727{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100728 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100729 unsigned int gpio = irq_to_gpio(bank, d->irq);
Colin Cross85ec7b92011-06-06 13:38:18 -0700730 unsigned long flags;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100731
Colin Cross85ec7b92011-06-06 13:38:18 -0700732 spin_lock_irqsave(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100733 _set_gpio_irqenable(bank, gpio, 0);
Kevin Hilman129fd222011-04-22 07:59:07 -0700734 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
Colin Cross85ec7b92011-06-06 13:38:18 -0700735 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100736}
737
Lennert Buytenheke9191022010-11-29 11:17:17 +0100738static void gpio_unmask_irq(struct irq_data *d)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100739{
Lennert Buytenheke9191022010-11-29 11:17:17 +0100740 struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
Benoit Cousson25db7112012-02-23 21:50:10 +0100741 unsigned int gpio = irq_to_gpio(bank, d->irq);
Kevin Hilman129fd222011-04-22 07:59:07 -0700742 unsigned int irq_mask = GPIO_BIT(bank, gpio);
Thomas Gleixner8c04a172011-03-24 12:40:15 +0100743 u32 trigger = irqd_get_trigger_type(d);
Colin Cross85ec7b92011-06-06 13:38:18 -0700744 unsigned long flags;
Kevin Hilman55b60192009-06-04 15:57:10 -0700745
Colin Cross85ec7b92011-06-06 13:38:18 -0700746 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman55b60192009-06-04 15:57:10 -0700747 if (trigger)
Kevin Hilman129fd222011-04-22 07:59:07 -0700748 _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
Kevin Hilmanb144ff62008-01-16 21:56:15 -0800749
750 /* For level-triggered GPIOs, the clearing must be done after
751 * the HW source is cleared, thus after the handler has run */
752 if (bank->level_mask & irq_mask) {
753 _set_gpio_irqenable(bank, gpio, 0);
754 _clear_gpio_irqstatus(bank, gpio);
755 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100756
Kevin Hilman4de8c752008-01-16 21:56:14 -0800757 _set_gpio_irqenable(bank, gpio, 1);
Colin Cross85ec7b92011-06-06 13:38:18 -0700758 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100759}
760
David Brownelle5c56ed2006-12-06 17:13:59 -0800761static struct irq_chip gpio_irq_chip = {
762 .name = "GPIO",
Lennert Buytenheke9191022010-11-29 11:17:17 +0100763 .irq_shutdown = gpio_irq_shutdown,
764 .irq_ack = gpio_ack_irq,
765 .irq_mask = gpio_mask_irq,
766 .irq_unmask = gpio_unmask_irq,
767 .irq_set_type = gpio_irq_type,
768 .irq_set_wake = gpio_wake_enable,
David Brownelle5c56ed2006-12-06 17:13:59 -0800769};
770
771/*---------------------------------------------------------------------*/
772
Magnus Damm79ee0312009-07-08 13:22:04 +0200773static int omap_mpuio_suspend_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800774{
Magnus Damm79ee0312009-07-08 13:22:04 +0200775 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800776 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800777 void __iomem *mask_reg = bank->base +
778 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800779 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800780
David Brownella6472532008-03-03 04:33:30 -0800781 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800782 bank->saved_wakeup = __raw_readl(mask_reg);
783 __raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800784 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800785
786 return 0;
787}
788
Magnus Damm79ee0312009-07-08 13:22:04 +0200789static int omap_mpuio_resume_noirq(struct device *dev)
David Brownell11a78b72006-12-06 17:14:11 -0800790{
Magnus Damm79ee0312009-07-08 13:22:04 +0200791 struct platform_device *pdev = to_platform_device(dev);
David Brownell11a78b72006-12-06 17:14:11 -0800792 struct gpio_bank *bank = platform_get_drvdata(pdev);
Tony Lindgren5de62b82010-12-07 16:26:58 -0800793 void __iomem *mask_reg = bank->base +
794 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
David Brownella6472532008-03-03 04:33:30 -0800795 unsigned long flags;
David Brownell11a78b72006-12-06 17:14:11 -0800796
David Brownella6472532008-03-03 04:33:30 -0800797 spin_lock_irqsave(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800798 __raw_writel(bank->saved_wakeup, mask_reg);
David Brownella6472532008-03-03 04:33:30 -0800799 spin_unlock_irqrestore(&bank->lock, flags);
David Brownell11a78b72006-12-06 17:14:11 -0800800
801 return 0;
802}
803
Alexey Dobriyan47145212009-12-14 18:00:08 -0800804static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
Magnus Damm79ee0312009-07-08 13:22:04 +0200805 .suspend_noirq = omap_mpuio_suspend_noirq,
806 .resume_noirq = omap_mpuio_resume_noirq,
807};
808
Rafael J. Wysocki3c437ff2011-04-22 22:02:46 +0200809/* use platform_driver for this. */
David Brownell11a78b72006-12-06 17:14:11 -0800810static struct platform_driver omap_mpuio_driver = {
David Brownell11a78b72006-12-06 17:14:11 -0800811 .driver = {
812 .name = "mpuio",
Magnus Damm79ee0312009-07-08 13:22:04 +0200813 .pm = &omap_mpuio_dev_pm_ops,
David Brownell11a78b72006-12-06 17:14:11 -0800814 },
815};
816
817static struct platform_device omap_mpuio_device = {
818 .name = "mpuio",
819 .id = -1,
820 .dev = {
821 .driver = &omap_mpuio_driver.driver,
822 }
823 /* could list the /proc/iomem resources */
824};
825
Charulatha V03e128c2011-05-05 19:58:01 +0530826static inline void mpuio_init(struct gpio_bank *bank)
David Brownell11a78b72006-12-06 17:14:11 -0800827{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800828 platform_set_drvdata(&omap_mpuio_device, bank);
David Brownellfcf126d2007-04-02 12:46:47 -0700829
David Brownell11a78b72006-12-06 17:14:11 -0800830 if (platform_driver_register(&omap_mpuio_driver) == 0)
831 (void) platform_device_register(&omap_mpuio_device);
832}
833
David Brownelle5c56ed2006-12-06 17:13:59 -0800834/*---------------------------------------------------------------------*/
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100835
David Brownell52e31342008-03-03 12:43:23 -0800836static int gpio_input(struct gpio_chip *chip, unsigned offset)
837{
838 struct gpio_bank *bank;
839 unsigned long flags;
840
841 bank = container_of(chip, struct gpio_bank, chip);
842 spin_lock_irqsave(&bank->lock, flags);
843 _set_gpio_direction(bank, offset, 1);
844 spin_unlock_irqrestore(&bank->lock, flags);
845 return 0;
846}
847
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300848static int gpio_is_input(struct gpio_bank *bank, int mask)
849{
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700850 void __iomem *reg = bank->base + bank->regs->direction;
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300851
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300852 return __raw_readl(reg) & mask;
853}
854
David Brownell52e31342008-03-03 12:43:23 -0800855static int gpio_get(struct gpio_chip *chip, unsigned offset)
856{
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300857 struct gpio_bank *bank;
858 void __iomem *reg;
859 int gpio;
860 u32 mask;
861
862 gpio = chip->base + offset;
Charulatha Va8be8da2011-04-22 16:38:16 +0530863 bank = container_of(chip, struct gpio_bank, chip);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300864 reg = bank->base;
Kevin Hilman129fd222011-04-22 07:59:07 -0700865 mask = GPIO_BIT(bank, gpio);
Roger Quadrosb37c45b2009-08-05 16:53:24 +0300866
867 if (gpio_is_input(bank, mask))
868 return _get_gpio_datain(bank, gpio);
869 else
870 return _get_gpio_dataout(bank, gpio);
David Brownell52e31342008-03-03 12:43:23 -0800871}
872
873static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
874{
875 struct gpio_bank *bank;
876 unsigned long flags;
877
878 bank = container_of(chip, struct gpio_bank, chip);
879 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700880 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800881 _set_gpio_direction(bank, offset, 0);
882 spin_unlock_irqrestore(&bank->lock, flags);
883 return 0;
884}
885
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700886static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
887 unsigned debounce)
888{
889 struct gpio_bank *bank;
890 unsigned long flags;
891
892 bank = container_of(chip, struct gpio_bank, chip);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -0800893
894 if (!bank->dbck) {
895 bank->dbck = clk_get(bank->dev, "dbclk");
896 if (IS_ERR(bank->dbck))
897 dev_err(bank->dev, "Could not get gpio dbck\n");
898 }
899
Felipe Balbi168ef3d2010-05-26 14:42:23 -0700900 spin_lock_irqsave(&bank->lock, flags);
901 _set_gpio_debounce(bank, offset, debounce);
902 spin_unlock_irqrestore(&bank->lock, flags);
903
904 return 0;
905}
906
David Brownell52e31342008-03-03 12:43:23 -0800907static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
908{
909 struct gpio_bank *bank;
910 unsigned long flags;
911
912 bank = container_of(chip, struct gpio_bank, chip);
913 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -0700914 bank->set_dataout(bank, offset, value);
David Brownell52e31342008-03-03 12:43:23 -0800915 spin_unlock_irqrestore(&bank->lock, flags);
916}
917
David Brownella007b702008-12-10 17:35:25 -0800918static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
919{
920 struct gpio_bank *bank;
921
922 bank = container_of(chip, struct gpio_bank, chip);
Benoit Cousson384ebe12011-08-16 11:53:02 +0200923 return bank->irq_base + offset;
David Brownella007b702008-12-10 17:35:25 -0800924}
925
David Brownell52e31342008-03-03 12:43:23 -0800926/*---------------------------------------------------------------------*/
927
Tony Lindgren9a748052010-12-07 16:26:56 -0800928static void __init omap_gpio_show_rev(struct gpio_bank *bank)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700929{
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700930 static bool called;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700931 u32 rev;
932
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700933 if (called || bank->regs->revision == USHRT_MAX)
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700934 return;
935
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700936 rev = __raw_readw(bank->base + bank->regs->revision);
937 pr_info("OMAP GPIO hardware version %d.%d\n",
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700938 (rev >> 4) & 0x0f, rev & 0x0f);
Kevin Hilmane5ff4442011-04-22 14:37:16 -0700939
940 called = true;
Tony Lindgren9f7065d2009-10-19 15:25:20 -0700941}
942
David Brownell8ba55c52008-02-26 11:10:50 -0800943/* This lock class tells lockdep that GPIO irqs are in a different
944 * category than their parents, so it won't report false recursion.
945 */
946static struct lock_class_key gpio_lock_class;
947
Charulatha V03e128c2011-05-05 19:58:01 +0530948static void omap_gpio_mod_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800949{
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530950 void __iomem *base = bank->base;
951 u32 l = 0xffffffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800952
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530953 if (bank->width == 16)
954 l = 0xffff;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800955
Charulatha Vd0d665a2011-08-31 00:02:21 +0530956 if (bank->is_mpuio) {
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530957 __raw_writel(l, bank->base + bank->regs->irqenable);
958 return;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800959 }
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530960
961 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->irqenable_inv);
962 _gpio_rmw(base, bank->regs->irqstatus, l,
963 bank->regs->irqenable_inv == false);
964 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->debounce_en != 0);
965 _gpio_rmw(base, bank->regs->irqenable, l, bank->regs->ctrl != 0);
966 if (bank->regs->debounce_en)
967 _gpio_rmw(base, bank->regs->debounce_en, 0, 1);
968
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +0530969 /* Save OE default value (0xffffffff) in the context */
970 bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +0530971 /* Initialize interface clk ungated, module enabled */
972 if (bank->regs->ctrl)
973 _gpio_rmw(base, bank->regs->ctrl, 0, 1);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -0800974}
975
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700976static __init void
977omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
978 unsigned int num)
979{
980 struct irq_chip_generic *gc;
981 struct irq_chip_type *ct;
982
983 gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
984 handle_simple_irq);
Todd Poynor83233742011-07-18 07:43:14 -0700985 if (!gc) {
986 dev_err(bank->dev, "Memory alloc failed for gc\n");
987 return;
988 }
989
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700990 ct = gc->chip_types;
991
992 /* NOTE: No ack required, reading IRQ status clears it. */
993 ct->chip.irq_mask = irq_gc_mask_set_bit;
994 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
995 ct->chip.irq_set_type = gpio_irq_type;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +0530996
997 if (bank->regs->wkup_en)
Kevin Hilmanf8b46b52011-04-21 13:23:34 -0700998 ct->chip.irq_set_wake = gpio_wake_enable,
999
1000 ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
1001 irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
1002 IRQ_NOREQUEST | IRQ_NOPROBE, 0);
1003}
1004
Russell Kingd52b31d2011-05-27 13:56:12 -07001005static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001006{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001007 int j;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001008 static int gpio;
1009
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001010 /*
1011 * REVISIT eventually switch from OMAP-specific gpio structs
1012 * over to the generic ones
1013 */
1014 bank->chip.request = omap_gpio_request;
1015 bank->chip.free = omap_gpio_free;
1016 bank->chip.direction_input = gpio_input;
1017 bank->chip.get = gpio_get;
1018 bank->chip.direction_output = gpio_output;
1019 bank->chip.set_debounce = gpio_debounce;
1020 bank->chip.set = gpio_set;
1021 bank->chip.to_irq = gpio_2irq;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301022 if (bank->is_mpuio) {
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001023 bank->chip.label = "mpuio";
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301024 if (bank->regs->wkup_en)
1025 bank->chip.dev = &omap_mpuio_device.dev;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001026 bank->chip.base = OMAP_MPUIO(0);
1027 } else {
1028 bank->chip.label = "gpio";
1029 bank->chip.base = gpio;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001030 gpio += bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001031 }
Kevin Hilmand5f46242011-04-21 09:23:00 -07001032 bank->chip.ngpio = bank->width;
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001033
1034 gpiochip_add(&bank->chip);
1035
Benoit Cousson384ebe12011-08-16 11:53:02 +02001036 for (j = bank->irq_base; j < bank->irq_base + bank->width; j++) {
Thomas Gleixner1475b852011-03-22 17:11:09 +01001037 irq_set_lockdep_class(j, &gpio_lock_class);
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001038 irq_set_chip_data(j, bank);
Charulatha Vd0d665a2011-08-31 00:02:21 +05301039 if (bank->is_mpuio) {
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001040 omap_mpuio_alloc_gc(bank, j, bank->width);
1041 } else {
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001042 irq_set_chip(j, &gpio_irq_chip);
Kevin Hilmanf8b46b52011-04-21 13:23:34 -07001043 irq_set_handler(j, handle_simple_irq);
1044 set_irq_flags(j, IRQF_VALID);
1045 }
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001046 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +01001047 irq_set_chained_handler(bank->irq, gpio_irq_handler);
1048 irq_set_handler_data(bank->irq, bank);
Varadarajan, Charulatha2fae7fb2010-12-07 16:26:55 -08001049}
1050
Benoit Cousson384ebe12011-08-16 11:53:02 +02001051static const struct of_device_id omap_gpio_match[];
1052
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001053static int __devinit omap_gpio_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001054{
Benoit Cousson862ff642012-02-01 15:58:56 +01001055 struct device *dev = &pdev->dev;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001056 struct device_node *node = dev->of_node;
1057 const struct of_device_id *match;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001058 struct omap_gpio_platform_data *pdata;
1059 struct resource *res;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001060 struct gpio_bank *bank;
Charulatha V03e128c2011-05-05 19:58:01 +05301061 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001062
Benoit Cousson384ebe12011-08-16 11:53:02 +02001063 match = of_match_device(of_match_ptr(omap_gpio_match), dev);
1064
1065 pdata = match ? match->data : dev->platform_data;
1066 if (!pdata)
Benoit Cousson96751fc2012-02-01 16:01:39 +01001067 return -EINVAL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001068
Benoit Cousson96751fc2012-02-01 16:01:39 +01001069 bank = devm_kzalloc(&pdev->dev, sizeof(struct gpio_bank), GFP_KERNEL);
Charulatha V03e128c2011-05-05 19:58:01 +05301070 if (!bank) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001071 dev_err(dev, "Memory alloc failed\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001072 return -ENOMEM;
Charulatha V03e128c2011-05-05 19:58:01 +05301073 }
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001074
1075 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1076 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001077 dev_err(dev, "Invalid IRQ resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001078 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001079 }
1080
1081 bank->irq = res->start;
Benoit Cousson862ff642012-02-01 15:58:56 +01001082 bank->dev = dev;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001083 bank->dbck_flag = pdata->dbck_flag;
Tony Lindgren5de62b82010-12-07 16:26:58 -08001084 bank->stride = pdata->bank_stride;
Kevin Hilmand5f46242011-04-21 09:23:00 -07001085 bank->width = pdata->bank_width;
Charulatha Vd0d665a2011-08-31 00:02:21 +05301086 bank->is_mpuio = pdata->is_mpuio;
Charulatha V803a2432011-05-05 17:04:12 +05301087 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
Charulatha V0cde8d02011-05-05 20:15:16 +05301088 bank->loses_context = pdata->loses_context;
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301089 bank->get_context_loss_count = pdata->get_context_loss_count;
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001090 bank->regs = pdata->regs;
Benoit Cousson384ebe12011-08-16 11:53:02 +02001091#ifdef CONFIG_OF_GPIO
1092 bank->chip.of_node = of_node_get(node);
1093#endif
1094
1095 bank->irq_base = irq_alloc_descs(-1, 0, bank->width, 0);
1096 if (bank->irq_base < 0) {
1097 dev_err(dev, "Couldn't allocate IRQ numbers\n");
1098 return -ENODEV;
1099 }
1100
1101 bank->domain = irq_domain_add_legacy(node, bank->width, bank->irq_base,
1102 0, &irq_domain_simple_ops, NULL);
Kevin Hilmanfa87931a2011-04-20 16:31:23 -07001103
1104 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1105 bank->set_dataout = _set_gpio_dataout_reg;
1106 else
1107 bank->set_dataout = _set_gpio_dataout_mask;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001108
1109 spin_lock_init(&bank->lock);
1110
1111 /* Static mapping, never released */
1112 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1113 if (unlikely(!res)) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001114 dev_err(dev, "Invalid mem resource\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001115 return -ENODEV;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001116 }
1117
Benoit Cousson96751fc2012-02-01 16:01:39 +01001118 if (!devm_request_mem_region(dev, res->start, resource_size(res),
1119 pdev->name)) {
1120 dev_err(dev, "Region already claimed\n");
1121 return -EBUSY;
1122 }
1123
1124 bank->base = devm_ioremap(dev, res->start, resource_size(res));
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001125 if (!bank->base) {
Benoit Cousson862ff642012-02-01 15:58:56 +01001126 dev_err(dev, "Could not ioremap\n");
Benoit Cousson96751fc2012-02-01 16:01:39 +01001127 return -ENOMEM;
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001128 }
1129
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301130 platform_set_drvdata(pdev, bank);
1131
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001132 pm_runtime_enable(bank->dev);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301133 pm_runtime_irq_safe(bank->dev);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001134 pm_runtime_get_sync(bank->dev);
1135
Charulatha Vd0d665a2011-08-31 00:02:21 +05301136 if (bank->is_mpuio)
Tarun Kanti DebBarmaab985f02011-09-13 15:12:05 +05301137 mpuio_init(bank);
1138
Charulatha V03e128c2011-05-05 19:58:01 +05301139 omap_gpio_mod_init(bank);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001140 omap_gpio_chip_init(bank);
Tony Lindgren9a748052010-12-07 16:26:56 -08001141 omap_gpio_show_rev(bank);
Tony Lindgren9f7065d2009-10-19 15:25:20 -07001142
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301143 pm_runtime_put(bank->dev);
1144
Charulatha V03e128c2011-05-05 19:58:01 +05301145 list_add_tail(&bank->node, &omap_gpio_list);
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001146
Charulatha V03e128c2011-05-05 19:58:01 +05301147 return ret;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001148}
1149
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301150#ifdef CONFIG_ARCH_OMAP2PLUS
1151
1152#if defined(CONFIG_PM_SLEEP)
1153static int omap_gpio_suspend(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001154{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301155 struct platform_device *pdev = to_platform_device(dev);
1156 struct gpio_bank *bank = platform_get_drvdata(pdev);
1157 void __iomem *base = bank->base;
1158 void __iomem *wakeup_enable;
1159 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001160
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301161 if (!bank->mod_usage || !bank->loses_context)
1162 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001163
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301164 if (!bank->regs->wkup_en || !bank->suspend_wakeup)
1165 return 0;
Tarun Kanti DebBarma6ed87c52011-09-13 14:41:44 +05301166
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301167 wakeup_enable = bank->base + bank->regs->wkup_en;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001168
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301169 spin_lock_irqsave(&bank->lock, flags);
1170 bank->saved_wakeup = __raw_readl(wakeup_enable);
1171 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1172 _gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
1173 spin_unlock_irqrestore(&bank->lock, flags);
Tony Lindgren92105bb2005-09-07 17:20:26 +01001174
1175 return 0;
1176}
1177
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301178static int omap_gpio_resume(struct device *dev)
Tony Lindgren92105bb2005-09-07 17:20:26 +01001179{
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301180 struct platform_device *pdev = to_platform_device(dev);
1181 struct gpio_bank *bank = platform_get_drvdata(pdev);
1182 void __iomem *base = bank->base;
1183 unsigned long flags;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001184
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301185 if (!bank->mod_usage || !bank->loses_context)
1186 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001187
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301188 if (!bank->regs->wkup_en || !bank->saved_wakeup)
1189 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001190
Tarun Kanti DebBarma065cd792011-11-24 01:48:52 +05301191 spin_lock_irqsave(&bank->lock, flags);
1192 _gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
1193 _gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
1194 spin_unlock_irqrestore(&bank->lock, flags);
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301195
1196 return 0;
Tony Lindgren92105bb2005-09-07 17:20:26 +01001197}
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301198#endif /* CONFIG_PM_SLEEP */
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001199
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301200#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301201static void omap_gpio_restore_context(struct gpio_bank *bank);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001202
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301203static int omap_gpio_runtime_suspend(struct device *dev)
1204{
1205 struct platform_device *pdev = to_platform_device(dev);
1206 struct gpio_bank *bank = platform_get_drvdata(pdev);
1207 u32 l1 = 0, l2 = 0;
1208 unsigned long flags;
Kevin Hilman68942ed2012-03-05 15:10:04 -08001209 u32 wake_low, wake_hi;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301210
1211 spin_lock_irqsave(&bank->lock, flags);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001212
1213 /*
1214 * Only edges can generate a wakeup event to the PRCM.
1215 *
1216 * Therefore, ensure any wake-up capable GPIOs have
1217 * edge-detection enabled before going idle to ensure a wakeup
1218 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
1219 * NDA TRM 25.5.3.1)
1220 *
1221 * The normal values will be restored upon ->runtime_resume()
1222 * by writing back the values saved in bank->context.
1223 */
1224 wake_low = bank->context.leveldetect0 & bank->context.wake_en;
1225 if (wake_low)
1226 __raw_writel(wake_low | bank->context.fallingdetect,
1227 bank->base + bank->regs->fallingdetect);
1228 wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
1229 if (wake_hi)
1230 __raw_writel(wake_hi | bank->context.risingdetect,
1231 bank->base + bank->regs->risingdetect);
1232
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301233 if (bank->power_mode != OFF_MODE) {
1234 bank->power_mode = 0;
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301235 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301236 }
1237 /*
1238 * If going to OFF, remove triggering for all
1239 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1240 * generated. See OMAP2420 Errata item 1.101.
1241 */
1242 if (!(bank->enabled_non_wakeup_gpios))
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301243 goto update_gpio_context_count;
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301244
1245 bank->saved_datain = __raw_readl(bank->base +
1246 bank->regs->datain);
1247 l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
1248 l2 = __raw_readl(bank->base + bank->regs->risingdetect);
1249
1250 bank->saved_fallingdetect = l1;
1251 bank->saved_risingdetect = l2;
1252 l1 &= ~bank->enabled_non_wakeup_gpios;
1253 l2 &= ~bank->enabled_non_wakeup_gpios;
1254
1255 __raw_writel(l1, bank->base + bank->regs->fallingdetect);
1256 __raw_writel(l2, bank->base + bank->regs->risingdetect);
1257
1258 bank->workaround_enabled = true;
1259
Tarun Kanti DebBarma41d87cb2011-11-15 12:52:38 +05301260update_gpio_context_count:
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301261 if (bank->get_context_loss_count)
1262 bank->context_loss_count =
1263 bank->get_context_loss_count(bank->dev);
1264
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301265 _gpio_dbck_disable(bank);
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301266 spin_unlock_irqrestore(&bank->lock, flags);
1267
1268 return 0;
1269}
1270
1271static int omap_gpio_runtime_resume(struct device *dev)
1272{
1273 struct platform_device *pdev = to_platform_device(dev);
1274 struct gpio_bank *bank = platform_get_drvdata(pdev);
1275 int context_lost_cnt_after;
1276 u32 l = 0, gen, gen0, gen1;
1277 unsigned long flags;
1278
1279 spin_lock_irqsave(&bank->lock, flags);
Tarun Kanti DebBarma72f83af92011-11-24 03:03:28 +05301280 _gpio_dbck_enable(bank);
Kevin Hilman68942ed2012-03-05 15:10:04 -08001281
1282 /*
1283 * In ->runtime_suspend(), level-triggered, wakeup-enabled
1284 * GPIOs were set to edge trigger also in order to be able to
1285 * generate a PRCM wakeup. Here we restore the
1286 * pre-runtime_suspend() values for edge triggering.
1287 */
1288 __raw_writel(bank->context.fallingdetect,
1289 bank->base + bank->regs->fallingdetect);
1290 __raw_writel(bank->context.risingdetect,
1291 bank->base + bank->regs->risingdetect);
1292
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301293 if (!bank->enabled_non_wakeup_gpios || !bank->workaround_enabled) {
1294 spin_unlock_irqrestore(&bank->lock, flags);
1295 return 0;
1296 }
1297
1298 if (bank->get_context_loss_count) {
1299 context_lost_cnt_after =
1300 bank->get_context_loss_count(bank->dev);
1301 if (context_lost_cnt_after != bank->context_loss_count ||
1302 !context_lost_cnt_after) {
1303 omap_gpio_restore_context(bank);
1304 } else {
1305 spin_unlock_irqrestore(&bank->lock, flags);
1306 return 0;
1307 }
1308 }
1309
1310 __raw_writel(bank->saved_fallingdetect,
1311 bank->base + bank->regs->fallingdetect);
1312 __raw_writel(bank->saved_risingdetect,
1313 bank->base + bank->regs->risingdetect);
1314 l = __raw_readl(bank->base + bank->regs->datain);
1315
1316 /*
1317 * Check if any of the non-wakeup interrupt GPIOs have changed
1318 * state. If so, generate an IRQ by software. This is
1319 * horribly racy, but it's the best we can do to work around
1320 * this silicon bug.
1321 */
1322 l ^= bank->saved_datain;
1323 l &= bank->enabled_non_wakeup_gpios;
1324
1325 /*
1326 * No need to generate IRQs for the rising edge for gpio IRQs
1327 * configured with falling edge only; and vice versa.
1328 */
1329 gen0 = l & bank->saved_fallingdetect;
1330 gen0 &= bank->saved_datain;
1331
1332 gen1 = l & bank->saved_risingdetect;
1333 gen1 &= ~(bank->saved_datain);
1334
1335 /* FIXME: Consider GPIO IRQs with level detections properly! */
1336 gen = l & (~(bank->saved_fallingdetect) & ~(bank->saved_risingdetect));
1337 /* Consider all GPIO IRQs needed to be updated */
1338 gen |= gen0 | gen1;
1339
1340 if (gen) {
1341 u32 old0, old1;
1342
1343 old0 = __raw_readl(bank->base + bank->regs->leveldetect0);
1344 old1 = __raw_readl(bank->base + bank->regs->leveldetect1);
1345
1346 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1347 __raw_writel(old0 | gen, bank->base +
1348 bank->regs->leveldetect0);
1349 __raw_writel(old1 | gen, bank->base +
1350 bank->regs->leveldetect1);
1351 }
1352
1353 if (cpu_is_omap44xx()) {
1354 __raw_writel(old0 | l, bank->base +
1355 bank->regs->leveldetect0);
1356 __raw_writel(old1 | l, bank->base +
1357 bank->regs->leveldetect1);
1358 }
1359 __raw_writel(old0, bank->base + bank->regs->leveldetect0);
1360 __raw_writel(old1, bank->base + bank->regs->leveldetect1);
1361 }
1362
1363 bank->workaround_enabled = false;
1364 spin_unlock_irqrestore(&bank->lock, flags);
1365
1366 return 0;
1367}
1368#endif /* CONFIG_PM_RUNTIME */
1369
1370void omap2_gpio_prepare_for_idle(int pwr_mode)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001371{
Charulatha V03e128c2011-05-05 19:58:01 +05301372 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001373
Charulatha V03e128c2011-05-05 19:58:01 +05301374 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301375 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301376 continue;
1377
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301378 bank->power_mode = pwr_mode;
1379
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301380 pm_runtime_put_sync_suspend(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001381 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001382}
1383
Kevin Hilman43ffcd92009-01-27 11:09:24 -08001384void omap2_gpio_resume_after_idle(void)
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001385{
Charulatha V03e128c2011-05-05 19:58:01 +05301386 struct gpio_bank *bank;
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001387
Charulatha V03e128c2011-05-05 19:58:01 +05301388 list_for_each_entry(bank, &omap_gpio_list, node) {
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301389 if (!bank->mod_usage || !bank->loses_context)
Charulatha V03e128c2011-05-05 19:58:01 +05301390 continue;
1391
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301392 pm_runtime_get_sync(bank->dev);
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001393 }
Juha Yrjola3ac4fa92006-12-06 17:13:52 -08001394}
1395
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301396#if defined(CONFIG_PM_RUNTIME)
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301397static void omap_gpio_restore_context(struct gpio_bank *bank)
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301398{
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301399 __raw_writel(bank->context.wake_en,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301400 bank->base + bank->regs->wkup_en);
1401 __raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301402 __raw_writel(bank->context.leveldetect0,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301403 bank->base + bank->regs->leveldetect0);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301404 __raw_writel(bank->context.leveldetect1,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301405 bank->base + bank->regs->leveldetect1);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301406 __raw_writel(bank->context.risingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301407 bank->base + bank->regs->risingdetect);
Tarun Kanti DebBarma60a34372011-09-29 04:47:25 +05301408 __raw_writel(bank->context.fallingdetect,
Tarun Kanti DebBarmaae10f232011-08-30 15:24:27 +05301409 bank->base + bank->regs->fallingdetect);
Nishanth Menonf86bcc32011-09-09 19:14:08 +05301410 if (bank->regs->set_dataout && bank->regs->clr_dataout)
1411 __raw_writel(bank->context.dataout,
1412 bank->base + bank->regs->set_dataout);
1413 else
1414 __raw_writel(bank->context.dataout,
1415 bank->base + bank->regs->dataout);
Nishanth Menon6d13eaa2011-08-29 18:54:50 +05301416 __raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1417
Nishanth Menonae547352011-09-09 19:08:58 +05301418 if (bank->dbck_enable_mask) {
1419 __raw_writel(bank->context.debounce, bank->base +
1420 bank->regs->debounce);
1421 __raw_writel(bank->context.debounce_en,
1422 bank->base + bank->regs->debounce_en);
1423 }
Nishanth Menonba805be2011-08-29 18:41:08 +05301424
1425 __raw_writel(bank->context.irqenable1,
1426 bank->base + bank->regs->irqenable);
1427 __raw_writel(bank->context.irqenable2,
1428 bank->base + bank->regs->irqenable2);
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301429}
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301430#endif /* CONFIG_PM_RUNTIME */
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301431#else
1432#define omap_gpio_suspend NULL
1433#define omap_gpio_resume NULL
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301434#define omap_gpio_runtime_suspend NULL
1435#define omap_gpio_runtime_resume NULL
Rajendra Nayak40c670f2008-09-26 17:47:48 +05301436#endif
1437
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301438static const struct dev_pm_ops gpio_pm_ops = {
1439 SET_SYSTEM_SLEEP_PM_OPS(omap_gpio_suspend, omap_gpio_resume)
Tarun Kanti DebBarma2dc983c2011-11-24 02:44:29 +05301440 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1441 NULL)
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301442};
1443
Benoit Cousson384ebe12011-08-16 11:53:02 +02001444#if defined(CONFIG_OF)
1445static struct omap_gpio_reg_offs omap2_gpio_regs = {
1446 .revision = OMAP24XX_GPIO_REVISION,
1447 .direction = OMAP24XX_GPIO_OE,
1448 .datain = OMAP24XX_GPIO_DATAIN,
1449 .dataout = OMAP24XX_GPIO_DATAOUT,
1450 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1451 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1452 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1453 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1454 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1455 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1456 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1457 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1458 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1459 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1460 .ctrl = OMAP24XX_GPIO_CTRL,
1461 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1462 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1463 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1464 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1465 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1466};
1467
1468static struct omap_gpio_reg_offs omap4_gpio_regs = {
1469 .revision = OMAP4_GPIO_REVISION,
1470 .direction = OMAP4_GPIO_OE,
1471 .datain = OMAP4_GPIO_DATAIN,
1472 .dataout = OMAP4_GPIO_DATAOUT,
1473 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1474 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1475 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1476 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
1477 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1478 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1479 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1480 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1481 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1482 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1483 .ctrl = OMAP4_GPIO_CTRL,
1484 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1485 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1486 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1487 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1488 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1489};
1490
1491static struct omap_gpio_platform_data omap2_pdata = {
1492 .regs = &omap2_gpio_regs,
1493 .bank_width = 32,
1494 .dbck_flag = false,
1495};
1496
1497static struct omap_gpio_platform_data omap3_pdata = {
1498 .regs = &omap2_gpio_regs,
1499 .bank_width = 32,
1500 .dbck_flag = true,
1501};
1502
1503static struct omap_gpio_platform_data omap4_pdata = {
1504 .regs = &omap4_gpio_regs,
1505 .bank_width = 32,
1506 .dbck_flag = true,
1507};
1508
1509static const struct of_device_id omap_gpio_match[] = {
1510 {
1511 .compatible = "ti,omap4-gpio",
1512 .data = &omap4_pdata,
1513 },
1514 {
1515 .compatible = "ti,omap3-gpio",
1516 .data = &omap3_pdata,
1517 },
1518 {
1519 .compatible = "ti,omap2-gpio",
1520 .data = &omap2_pdata,
1521 },
1522 { },
1523};
1524MODULE_DEVICE_TABLE(of, omap_gpio_match);
1525#endif
1526
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001527static struct platform_driver omap_gpio_driver = {
1528 .probe = omap_gpio_probe,
1529 .driver = {
1530 .name = "omap_gpio",
Tarun Kanti DebBarma55b93c32011-09-29 07:23:22 +05301531 .pm = &gpio_pm_ops,
Benoit Cousson384ebe12011-08-16 11:53:02 +02001532 .of_match_table = of_match_ptr(omap_gpio_match),
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001533 },
1534};
1535
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001536/*
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001537 * gpio driver register needs to be done before
1538 * machine_init functions access gpio APIs.
1539 * Hence omap_gpio_drv_reg() is a postcore_initcall.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001540 */
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001541static int __init omap_gpio_drv_reg(void)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001542{
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001543 return platform_driver_register(&omap_gpio_driver);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001544}
Varadarajan, Charulatha77640aa2010-12-07 16:26:57 -08001545postcore_initcall(omap_gpio_drv_reg);