Merge tag 'landlock-6.8-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/mic...
[linux-block.git] / drivers / gpio / gpio-omap.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
5e1c5ff4 2/*
5e1c5ff4
TL
3 * Support functions for OMAP GPIO
4 *
92105bb7 5 * Copyright (C) 2003-2005 Nokia Corporation
96de0e25 6 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
5e1c5ff4 7 *
44169075
SS
8 * Copyright (C) 2009 Texas Instruments
9 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
5e1c5ff4
TL
10 */
11
5e1c5ff4
TL
12#include <linux/init.h>
13#include <linux/module.h>
5e1c5ff4 14#include <linux/interrupt.h>
39575d11 15#include <linux/seq_file.h>
3c437ffd 16#include <linux/syscore_ops.h>
92105bb7 17#include <linux/err.h>
f8ce2547 18#include <linux/clk.h>
fced80c7 19#include <linux/io.h>
b764a586 20#include <linux/cpu_pm.h>
96751fcb 21#include <linux/device.h>
77640aab 22#include <linux/pm_runtime.h>
55b93c32 23#include <linux/pm.h>
384ebe1c 24#include <linux/of.h>
b7351b07 25#include <linux/gpio/driver.h>
9370084e 26#include <linux/bitops.h>
4b25408f 27#include <linux/platform_data/gpio-omap.h>
5e1c5ff4 28
e85ec6c3 29#define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
2dc983c5 30
6d62e216 31struct gpio_regs {
ddd8d94c 32 u32 sysconfig;
6d62e216
C
33 u32 irqenable1;
34 u32 irqenable2;
35 u32 wake_en;
36 u32 ctrl;
37 u32 oe;
38 u32 leveldetect0;
39 u32 leveldetect1;
40 u32 risingdetect;
41 u32 fallingdetect;
42 u32 dataout;
ae547354
NM
43 u32 debounce;
44 u32 debounce_en;
6d62e216
C
45};
46
5e1c5ff4 47struct gpio_bank {
92105bb7 48 void __iomem *base;
18bd49c4 49 const struct omap_gpio_reg_offs *regs;
39575d11 50 struct device *dev;
18bd49c4 51
30cefeac 52 int irq;
3ac4fa99
JY
53 u32 non_wakeup_gpios;
54 u32 enabled_non_wakeup_gpios;
6d62e216 55 struct gpio_regs context;
3ac4fa99 56 u32 saved_datain;
b144ff6f 57 u32 level_mask;
4318f36b 58 u32 toggle_mask;
4dbada2b 59 raw_spinlock_t lock;
450fa54c 60 raw_spinlock_t wa_lock;
52e31344 61 struct gpio_chip chip;
89db9482 62 struct clk *dbck;
b764a586
TL
63 struct notifier_block nb;
64 unsigned int is_suspended:1;
f02a0398 65 unsigned int needs_resume:1;
058af1ea 66 u32 mod_usage;
fa365e4d 67 u32 irq_usage;
8865b9b6 68 u32 dbck_enable_mask;
72f83af9 69 bool dbck_enabled;
d0d665a8 70 bool is_mpuio;
77640aab 71 bool dbck_flag;
0cde8d03 72 bool loses_context;
352a2d5b 73 bool context_valid;
5de62b86 74 int stride;
d5f46247 75 u32 width;
60a3437d 76 int context_loss_count;
fa87931a 77
04ebcbd8 78 void (*set_dataout)(struct gpio_bank *bank, unsigned gpio, int enable);
60a3437d 79 int (*get_context_loss_count)(struct device *dev);
5e1c5ff4
TL
80};
81
c8eef65a 82#define GPIO_MOD_CTRL_BIT BIT(0)
5e1c5ff4 83
fa365e4d 84#define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
b1e9fec2 85#define LINE_USED(line, offset) (line & (BIT(offset)))
fa365e4d 86
3d009c8c
TL
87static void omap_gpio_unmask_irq(struct irq_data *d);
88
a0e827c6 89static inline struct gpio_bank *omap_irq_data_get_bank(struct irq_data *d)
ede4d7a5 90{
fb655f57 91 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
d99f7aec 92 return gpiochip_get_data(chip);
25db711d
BC
93}
94
8ee1de65 95static inline u32 omap_gpio_rmw(void __iomem *reg, u32 mask, bool set)
5e1c5ff4 96{
8ee1de65 97 u32 val = readl_relaxed(reg);
5e1c5ff4 98
8ee1de65
RK
99 if (set)
100 val |= mask;
5e1c5ff4 101 else
8ee1de65
RK
102 val &= ~mask;
103
104 writel_relaxed(val, reg);
105
106 return val;
107}
108
109static void omap_set_gpio_direction(struct gpio_bank *bank, int gpio,
110 int is_input)
111{
112 bank->context.oe = omap_gpio_rmw(bank->base + bank->regs->direction,
113 BIT(gpio), is_input);
5e1c5ff4
TL
114}
115
fa87931a
KH
116
117/* set data out value using dedicate set/clear register */
04ebcbd8 118static void omap_set_gpio_dataout_reg(struct gpio_bank *bank, unsigned offset,
a0e827c6 119 int enable)
5e1c5ff4 120{
92105bb7 121 void __iomem *reg = bank->base;
04ebcbd8 122 u32 l = BIT(offset);
5e1c5ff4 123
2c836f7e 124 if (enable) {
fa87931a 125 reg += bank->regs->set_dataout;
2c836f7e
TKD
126 bank->context.dataout |= l;
127 } else {
fa87931a 128 reg += bank->regs->clr_dataout;
2c836f7e
TKD
129 bank->context.dataout &= ~l;
130 }
5e1c5ff4 131
661553b9 132 writel_relaxed(l, reg);
5e1c5ff4
TL
133}
134
fa87931a 135/* set data out value using mask register */
04ebcbd8 136static void omap_set_gpio_dataout_mask(struct gpio_bank *bank, unsigned offset,
a0e827c6 137 int enable)
5e1c5ff4 138{
8ee1de65
RK
139 bank->context.dataout = omap_gpio_rmw(bank->base + bank->regs->dataout,
140 BIT(offset), enable);
ece9528e 141}
92105bb7 142
a0e827c6 143static inline void omap_gpio_dbck_enable(struct gpio_bank *bank)
72f83af9
TKD
144{
145 if (bank->dbck_enable_mask && !bank->dbck_enabled) {
5d9452e7 146 clk_enable(bank->dbck);
72f83af9 147 bank->dbck_enabled = true;
9e303f22 148
661553b9 149 writel_relaxed(bank->dbck_enable_mask,
9e303f22 150 bank->base + bank->regs->debounce_en);
72f83af9
TKD
151 }
152}
153
a0e827c6 154static inline void omap_gpio_dbck_disable(struct gpio_bank *bank)
72f83af9
TKD
155{
156 if (bank->dbck_enable_mask && bank->dbck_enabled) {
9e303f22
GI
157 /*
158 * Disable debounce before cutting it's clock. If debounce is
159 * enabled but the clock is not, GPIO module seems to be unable
160 * to detect events and generate interrupts at least on OMAP3.
161 */
661553b9 162 writel_relaxed(0, bank->base + bank->regs->debounce_en);
9e303f22 163
5d9452e7 164 clk_disable(bank->dbck);
72f83af9
TKD
165 bank->dbck_enabled = false;
166 }
167}
168
168ef3d9 169/**
a0e827c6 170 * omap2_set_gpio_debounce - low level gpio debounce time
168ef3d9 171 * @bank: the gpio bank we're acting upon
4a58d229 172 * @offset: the gpio number on this @bank
168ef3d9
FB
173 * @debounce: debounce time to use
174 *
e85ec6c3
GS
175 * OMAP's debounce time is in 31us steps
176 * <debounce time> = (GPIO_DEBOUNCINGTIME[7:0].DEBOUNCETIME + 1) x 31
177 * so we need to convert and round up to the closest unit.
83977443
DR
178 *
179 * Return: 0 on success, negative error otherwise.
168ef3d9 180 */
83977443
DR
181static int omap2_set_gpio_debounce(struct gpio_bank *bank, unsigned offset,
182 unsigned debounce)
168ef3d9 183{
168ef3d9
FB
184 u32 val;
185 u32 l;
e85ec6c3 186 bool enable = !!debounce;
168ef3d9 187
77640aab 188 if (!bank->dbck_flag)
83977443 189 return -ENOTSUPP;
77640aab 190
e85ec6c3
GS
191 if (enable) {
192 debounce = DIV_ROUND_UP(debounce, 31) - 1;
83977443
DR
193 if ((debounce & OMAP4_GPIO_DEBOUNCINGTIME_MASK) != debounce)
194 return -EINVAL;
e85ec6c3 195 }
168ef3d9 196
4a58d229 197 l = BIT(offset);
168ef3d9 198
5d9452e7 199 clk_enable(bank->dbck);
754dfd79 200 writel_relaxed(debounce, bank->base + bank->regs->debounce);
168ef3d9 201
8ee1de65 202 val = omap_gpio_rmw(bank->base + bank->regs->debounce_en, l, enable);
f7ec0b0b 203 bank->dbck_enable_mask = val;
168ef3d9 204
5d9452e7 205 clk_disable(bank->dbck);
6fd9c421
TKD
206 /*
207 * Enable debounce clock per module.
208 * This call is mandatory because in omap_gpio_request() when
209 * *_runtime_get_sync() is called, _gpio_dbck_enable() within
210 * runtime callbck fails to turn on dbck because dbck_enable_mask
211 * used within _gpio_dbck_enable() is still not initialized at
212 * that point. Therefore we have to enable dbck here.
213 */
a0e827c6 214 omap_gpio_dbck_enable(bank);
ae547354
NM
215 if (bank->dbck_enable_mask) {
216 bank->context.debounce = debounce;
217 bank->context.debounce_en = val;
218 }
83977443
DR
219
220 return 0;
168ef3d9
FB
221}
222
c9c55d92 223/**
a0e827c6 224 * omap_clear_gpio_debounce - clear debounce settings for a gpio
c9c55d92 225 * @bank: the gpio bank we're acting upon
4a58d229 226 * @offset: the gpio number on this @bank
c9c55d92
JH
227 *
228 * If a gpio is using debounce, then clear the debounce enable bit and if
229 * this is the only gpio in this bank using debounce, then clear the debounce
230 * time too. The debounce clock will also be disabled when calling this function
231 * if this is the only gpio in the bank using debounce.
232 */
4a58d229 233static void omap_clear_gpio_debounce(struct gpio_bank *bank, unsigned offset)
c9c55d92 234{
4a58d229 235 u32 gpio_bit = BIT(offset);
c9c55d92
JH
236
237 if (!bank->dbck_flag)
238 return;
239
240 if (!(bank->dbck_enable_mask & gpio_bit))
241 return;
242
243 bank->dbck_enable_mask &= ~gpio_bit;
244 bank->context.debounce_en &= ~gpio_bit;
661553b9 245 writel_relaxed(bank->context.debounce_en,
c9c55d92
JH
246 bank->base + bank->regs->debounce_en);
247
248 if (!bank->dbck_enable_mask) {
249 bank->context.debounce = 0;
661553b9 250 writel_relaxed(bank->context.debounce, bank->base +
c9c55d92 251 bank->regs->debounce);
5d9452e7 252 clk_disable(bank->dbck);
c9c55d92
JH
253 bank->dbck_enabled = false;
254 }
255}
256
da38ef3e
TL
257/*
258 * Off mode wake-up capable GPIOs in bank(s) that are in the wakeup domain.
259 * See TRM section for GPIO for "Wake-Up Generation" for the list of GPIOs
260 * in wakeup domain. If bank->non_wakeup_gpios is not configured, assume none
261 * are capable waking up the system from off mode.
262 */
263static bool omap_gpio_is_off_wakeup_capable(struct gpio_bank *bank, u32 gpio_mask)
264{
265 u32 no_wake = bank->non_wakeup_gpios;
266
267 if (no_wake)
268 return !!(~no_wake & gpio_mask);
269
270 return false;
271}
272
a0e827c6 273static inline void omap_set_gpio_trigger(struct gpio_bank *bank, int gpio,
00ece7e4 274 unsigned trigger)
5e1c5ff4 275{
3ac4fa99 276 void __iomem *base = bank->base;
b1e9fec2 277 u32 gpio_bit = BIT(gpio);
92105bb7 278
8ee1de65 279 omap_gpio_rmw(base + bank->regs->leveldetect0, gpio_bit,
a0e827c6 280 trigger & IRQ_TYPE_LEVEL_LOW);
8ee1de65 281 omap_gpio_rmw(base + bank->regs->leveldetect1, gpio_bit,
a0e827c6 282 trigger & IRQ_TYPE_LEVEL_HIGH);
e6818d29
RK
283
284 /*
285 * We need the edge detection enabled for to allow the GPIO block
286 * to be woken from idle state. Set the appropriate edge detection
287 * in addition to the level detection.
288 */
8ee1de65 289 omap_gpio_rmw(base + bank->regs->risingdetect, gpio_bit,
e6818d29 290 trigger & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH));
8ee1de65 291 omap_gpio_rmw(base + bank->regs->fallingdetect, gpio_bit,
e6818d29 292 trigger & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW));
5e571f38 293
41d87cbd 294 bank->context.leveldetect0 =
661553b9 295 readl_relaxed(bank->base + bank->regs->leveldetect0);
41d87cbd 296 bank->context.leveldetect1 =
661553b9 297 readl_relaxed(bank->base + bank->regs->leveldetect1);
41d87cbd 298 bank->context.risingdetect =
661553b9 299 readl_relaxed(bank->base + bank->regs->risingdetect);
41d87cbd 300 bank->context.fallingdetect =
661553b9 301 readl_relaxed(bank->base + bank->regs->fallingdetect);
41d87cbd 302
a0e881e2
RK
303 bank->level_mask = bank->context.leveldetect0 |
304 bank->context.leveldetect1;
5e571f38 305
55b220ca 306 /* This part needs to be executed always for OMAP{34xx, 44xx} */
da38ef3e 307 if (!bank->regs->irqctrl && !omap_gpio_is_off_wakeup_capable(bank, gpio)) {
699117a6
CW
308 /*
309 * Log the edge gpio and manually trigger the IRQ
310 * after resume if the input level changes
311 * to avoid irq lost during PER RET/OFF mode
312 * Applies for omap2 non-wakeup gpio and all omap3 gpios
313 */
314 if (trigger & IRQ_TYPE_EDGE_BOTH)
3ac4fa99
JY
315 bank->enabled_non_wakeup_gpios |= gpio_bit;
316 else
317 bank->enabled_non_wakeup_gpios &= ~gpio_bit;
318 }
92105bb7
TL
319}
320
4318f36b
CM
321/*
322 * This only applies to chips that can't do both rising and falling edge
323 * detection at once. For all other chips, this function is a noop.
324 */
a0e827c6 325static void omap_toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
4318f36b 326{
a47b9158
RK
327 if (IS_ENABLED(CONFIG_ARCH_OMAP1) && bank->regs->irqctrl) {
328 void __iomem *reg = bank->base + bank->regs->irqctrl;
5e571f38 329
a47b9158
RK
330 writel_relaxed(readl_relaxed(reg) ^ BIT(gpio), reg);
331 }
4318f36b
CM
332}
333
a0e827c6
JMC
334static int omap_set_gpio_triggering(struct gpio_bank *bank, int gpio,
335 unsigned trigger)
92105bb7
TL
336{
337 void __iomem *reg = bank->base;
338 u32 l = 0;
5e1c5ff4 339
5e571f38 340 if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
a0e827c6 341 omap_set_gpio_trigger(bank, gpio, trigger);
5e571f38
TKD
342 } else if (bank->regs->irqctrl) {
343 reg += bank->regs->irqctrl;
344
661553b9 345 l = readl_relaxed(reg);
29501577 346 if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
b1e9fec2 347 bank->toggle_mask |= BIT(gpio);
6cab4860 348 if (trigger & IRQ_TYPE_EDGE_RISING)
b1e9fec2 349 l |= BIT(gpio);
6cab4860 350 else if (trigger & IRQ_TYPE_EDGE_FALLING)
b1e9fec2 351 l &= ~(BIT(gpio));
92105bb7 352 else
5e571f38
TKD
353 return -EINVAL;
354
661553b9 355 writel_relaxed(l, reg);
5e571f38 356 } else if (bank->regs->edgectrl1) {
5e1c5ff4 357 if (gpio & 0x08)
5e571f38 358 reg += bank->regs->edgectrl2;
5e1c5ff4 359 else
5e571f38
TKD
360 reg += bank->regs->edgectrl1;
361
5e1c5ff4 362 gpio &= 0x07;
661553b9 363 l = readl_relaxed(reg);
5e1c5ff4 364 l &= ~(3 << (gpio << 1));
6cab4860 365 if (trigger & IRQ_TYPE_EDGE_RISING)
6e60e79a 366 l |= 2 << (gpio << 1);
6cab4860 367 if (trigger & IRQ_TYPE_EDGE_FALLING)
b1e9fec2 368 l |= BIT(gpio << 1);
661553b9 369 writel_relaxed(l, reg);
5e1c5ff4 370 }
92105bb7 371 return 0;
5e1c5ff4
TL
372}
373
a0e827c6 374static void omap_enable_gpio_module(struct gpio_bank *bank, unsigned offset)
fac7fa16
JMC
375{
376 if (bank->regs->pinctrl) {
377 void __iomem *reg = bank->base + bank->regs->pinctrl;
378
379 /* Claim the pin for MPU */
b1e9fec2 380 writel_relaxed(readl_relaxed(reg) | (BIT(offset)), reg);
fac7fa16
JMC
381 }
382
383 if (bank->regs->ctrl && !BANK_USED(bank)) {
384 void __iomem *reg = bank->base + bank->regs->ctrl;
385 u32 ctrl;
386
661553b9 387 ctrl = readl_relaxed(reg);
fac7fa16
JMC
388 /* Module is enabled, clocks are not gated */
389 ctrl &= ~GPIO_MOD_CTRL_BIT;
661553b9 390 writel_relaxed(ctrl, reg);
fac7fa16
JMC
391 bank->context.ctrl = ctrl;
392 }
393}
394
a0e827c6 395static void omap_disable_gpio_module(struct gpio_bank *bank, unsigned offset)
fac7fa16 396{
fac7fa16
JMC
397 if (bank->regs->ctrl && !BANK_USED(bank)) {
398 void __iomem *reg = bank->base + bank->regs->ctrl;
399 u32 ctrl;
400
661553b9 401 ctrl = readl_relaxed(reg);
fac7fa16
JMC
402 /* Module is disabled, clocks are gated */
403 ctrl |= GPIO_MOD_CTRL_BIT;
661553b9 404 writel_relaxed(ctrl, reg);
fac7fa16
JMC
405 bank->context.ctrl = ctrl;
406 }
407}
408
b2b20045 409static int omap_gpio_is_input(struct gpio_bank *bank, unsigned offset)
fa365e4d
JMC
410{
411 void __iomem *reg = bank->base + bank->regs->direction;
412
b2b20045 413 return readl_relaxed(reg) & BIT(offset);
fa365e4d
JMC
414}
415
37e14ecf 416static void omap_gpio_init_irq(struct gpio_bank *bank, unsigned offset)
3d009c8c
TL
417{
418 if (!LINE_USED(bank->mod_usage, offset)) {
419 omap_enable_gpio_module(bank, offset);
420 omap_set_gpio_direction(bank, offset, 1);
421 }
37e14ecf 422 bank->irq_usage |= BIT(offset);
3d009c8c
TL
423}
424
a0e827c6 425static int omap_gpio_irq_type(struct irq_data *d, unsigned type)
5e1c5ff4 426{
a0e827c6 427 struct gpio_bank *bank = omap_irq_data_get_bank(d);
92105bb7 428 int retval;
a6472533 429 unsigned long flags;
ea5fbe8d 430 unsigned offset = d->hwirq;
92105bb7 431
e5c56ed3 432 if (type & ~IRQ_TYPE_SENSE_MASK)
6e60e79a 433 return -EINVAL;
e5c56ed3 434
9ea14d8c
TKD
435 if (!bank->regs->leveldetect0 &&
436 (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
92105bb7
TL
437 return -EINVAL;
438
4dbada2b 439 raw_spin_lock_irqsave(&bank->lock, flags);
a0e827c6 440 retval = omap_set_gpio_triggering(bank, offset, type);
977bd8a9 441 if (retval) {
627c89b4 442 raw_spin_unlock_irqrestore(&bank->lock, flags);
1562e461 443 goto error;
977bd8a9 444 }
37e14ecf 445 omap_gpio_init_irq(bank, offset);
b2b20045 446 if (!omap_gpio_is_input(bank, offset)) {
4dbada2b 447 raw_spin_unlock_irqrestore(&bank->lock, flags);
1562e461
GS
448 retval = -EINVAL;
449 goto error;
fac7fa16 450 }
4dbada2b 451 raw_spin_unlock_irqrestore(&bank->lock, flags);
672e302e
KH
452
453 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
43ec2e43 454 irq_set_handler_locked(d, handle_level_irq);
672e302e 455 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
80ac93c2
GS
456 /*
457 * Edge IRQs are already cleared/acked in irq_handler and
458 * not need to be masked, as result handle_edge_irq()
459 * logic is excessed here and may cause lose of interrupts.
460 * So just use handle_simple_irq.
461 */
462 irq_set_handler_locked(d, handle_simple_irq);
672e302e 463
1562e461
GS
464 return 0;
465
466error:
92105bb7 467 return retval;
5e1c5ff4
TL
468}
469
a0e827c6 470static void omap_clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
5e1c5ff4 471{
92105bb7 472 void __iomem *reg = bank->base;
5e1c5ff4 473
eef4bec7 474 reg += bank->regs->irqstatus;
661553b9 475 writel_relaxed(gpio_mask, reg);
bee7930f
HD
476
477 /* Workaround for clearing DSP GPIO interrupts to allow retention */
eef4bec7
KH
478 if (bank->regs->irqstatus2) {
479 reg = bank->base + bank->regs->irqstatus2;
661553b9 480 writel_relaxed(gpio_mask, reg);
eef4bec7 481 }
bedfd154
RQ
482
483 /* Flush posted write for the irq status to avoid spurious interrupts */
661553b9 484 readl_relaxed(reg);
5e1c5ff4
TL
485}
486
9943f261
GS
487static inline void omap_clear_gpio_irqstatus(struct gpio_bank *bank,
488 unsigned offset)
5e1c5ff4 489{
9943f261 490 omap_clear_gpio_irqbank(bank, BIT(offset));
5e1c5ff4
TL
491}
492
a0e827c6 493static u32 omap_get_gpio_irqbank_mask(struct gpio_bank *bank)
ea6dedd7
ID
494{
495 void __iomem *reg = bank->base;
99c47707 496 u32 l;
b1e9fec2 497 u32 mask = (BIT(bank->width)) - 1;
ea6dedd7 498
28f3b5a0 499 reg += bank->regs->irqenable;
661553b9 500 l = readl_relaxed(reg);
28f3b5a0 501 if (bank->regs->irqenable_inv)
99c47707
ID
502 l = ~l;
503 l &= mask;
504 return l;
ea6dedd7
ID
505}
506
31b2d7f7
RK
507static inline void omap_set_gpio_irqenable(struct gpio_bank *bank,
508 unsigned offset, int enable)
5e1c5ff4 509{
92105bb7 510 void __iomem *reg = bank->base;
31b2d7f7 511 u32 gpio_mask = BIT(offset);
5e1c5ff4 512
31b2d7f7
RK
513 if (bank->regs->set_irqenable && bank->regs->clr_irqenable) {
514 if (enable) {
515 reg += bank->regs->set_irqenable;
516 bank->context.irqenable1 |= gpio_mask;
517 } else {
518 reg += bank->regs->clr_irqenable;
519 bank->context.irqenable1 &= ~gpio_mask;
520 }
521 writel_relaxed(gpio_mask, reg);
28f3b5a0 522 } else {
31b2d7f7
RK
523 bank->context.irqenable1 =
524 omap_gpio_rmw(reg + bank->regs->irqenable, gpio_mask,
525 enable ^ bank->regs->irqenable_inv);
28f3b5a0
KH
526 }
527
40fd422a
RK
528 /*
529 * Program GPIO wakeup along with IRQ enable to satisfy OMAP4430 TRM
530 * note requiring correlation between the IRQ enable registers and
531 * the wakeup registers. In any case, we want wakeup from idle
532 * enabled for the GPIOs which support this feature.
533 */
534 if (bank->regs->wkup_en &&
535 (bank->regs->edgectrl1 || !(bank->non_wakeup_gpios & gpio_mask))) {
536 bank->context.wake_en =
537 omap_gpio_rmw(bank->base + bank->regs->wkup_en,
538 gpio_mask, enable);
5e1c5ff4 539 }
5e1c5ff4
TL
540}
541
92105bb7 542/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
a0e827c6 543static int omap_gpio_wake_enable(struct irq_data *d, unsigned int enable)
92105bb7 544{
a0e827c6 545 struct gpio_bank *bank = omap_irq_data_get_bank(d);
450fa54c 546
0c0451e7 547 return irq_set_irq_wake(bank->irq, enable);
92105bb7
TL
548}
549
5e1c5ff4
TL
550/*
551 * We need to unmask the GPIO bank interrupt as soon as possible to
552 * avoid missing GPIO interrupts for other lines in the bank.
553 * Then we need to mask-read-clear-unmask the triggered GPIO lines
554 * in the bank to avoid missing nested interrupts for a GPIO line.
555 * If we wait to unmask individual GPIO lines in the bank after the
556 * line's interrupt handler has been run, we may miss some nested
557 * interrupts.
558 */
450fa54c 559static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
5e1c5ff4 560{
92105bb7 561 void __iomem *isr_reg = NULL;
395373c7 562 u32 enabled, isr, edge;
3513cdec 563 unsigned int bit;
450fa54c
GS
564 struct gpio_bank *bank = gpiobank;
565 unsigned long wa_lock_flags;
235f1eb1 566 unsigned long lock_flags;
5e1c5ff4 567
eef4bec7 568 isr_reg = bank->base + bank->regs->irqstatus;
b1cc4c55
EK
569 if (WARN_ON(!isr_reg))
570 goto exit;
571
5284521a
TL
572 if (WARN_ONCE(!pm_runtime_active(bank->chip.parent),
573 "gpio irq%i while runtime suspended?\n", irq))
574 return IRQ_NONE;
450fa54c 575
e83507b7 576 while (1) {
235f1eb1
GS
577 raw_spin_lock_irqsave(&bank->lock, lock_flags);
578
a0e827c6 579 enabled = omap_get_gpio_irqbank_mask(bank);
80ac93c2 580 isr = readl_relaxed(isr_reg) & enabled;
6e60e79a 581
395373c7
RK
582 /*
583 * Clear edge sensitive interrupts before calling handler(s)
584 * so subsequent edge transitions are not missed while the
585 * handlers are running.
586 */
587 edge = isr & ~bank->level_mask;
588 if (edge)
589 omap_clear_gpio_irqbank(bank, edge);
6e60e79a 590
235f1eb1
GS
591 raw_spin_unlock_irqrestore(&bank->lock, lock_flags);
592
92105bb7
TL
593 if (!isr)
594 break;
595
3513cdec
JH
596 while (isr) {
597 bit = __ffs(isr);
b1e9fec2 598 isr &= ~(BIT(bit));
25db711d 599
235f1eb1 600 raw_spin_lock_irqsave(&bank->lock, lock_flags);
4318f36b
CM
601 /*
602 * Some chips can't respond to both rising and falling
603 * at the same time. If this irq was requested with
604 * both flags, we need to flip the ICR data for the IRQ
605 * to respond to the IRQ for the opposite direction.
606 * This will be indicated in the bank toggle_mask.
607 */
b1e9fec2 608 if (bank->toggle_mask & (BIT(bit)))
a0e827c6 609 omap_toggle_gpio_edge_triggering(bank, bit);
4318f36b 610
235f1eb1
GS
611 raw_spin_unlock_irqrestore(&bank->lock, lock_flags);
612
450fa54c
GS
613 raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);
614
dbd1c54f 615 generic_handle_domain_irq(bank->chip.irq.domain, bit);
450fa54c
GS
616
617 raw_spin_unlock_irqrestore(&bank->wa_lock,
618 wa_lock_flags);
92105bb7 619 }
1a8bfa1e 620 }
b1cc4c55 621exit:
450fa54c 622 return IRQ_HANDLED;
5e1c5ff4
TL
623}
624
3d009c8c
TL
625static unsigned int omap_gpio_irq_startup(struct irq_data *d)
626{
627 struct gpio_bank *bank = omap_irq_data_get_bank(d);
3d009c8c 628 unsigned long flags;
37e14ecf 629 unsigned offset = d->hwirq;
3d009c8c 630
4dbada2b 631 raw_spin_lock_irqsave(&bank->lock, flags);
121dcb76
GS
632
633 if (!LINE_USED(bank->mod_usage, offset))
634 omap_set_gpio_direction(bank, offset, 1);
121dcb76
GS
635 omap_enable_gpio_module(bank, offset);
636 bank->irq_usage |= BIT(offset);
637
4dbada2b 638 raw_spin_unlock_irqrestore(&bank->lock, flags);
3d009c8c
TL
639 omap_gpio_unmask_irq(d);
640
641 return 0;
642}
643
a0e827c6 644static void omap_gpio_irq_shutdown(struct irq_data *d)
4196dd6b 645{
a0e827c6 646 struct gpio_bank *bank = omap_irq_data_get_bank(d);
85ec7b97 647 unsigned long flags;
9943f261 648 unsigned offset = d->hwirq;
4196dd6b 649
4dbada2b 650 raw_spin_lock_irqsave(&bank->lock, flags);
b1e9fec2 651 bank->irq_usage &= ~(BIT(offset));
6e96c1b5 652 omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
c859e0d4
RK
653 omap_clear_gpio_irqstatus(bank, offset);
654 omap_set_gpio_irqenable(bank, offset, 0);
6e96c1b5
GS
655 if (!LINE_USED(bank->mod_usage, offset))
656 omap_clear_gpio_debounce(bank, offset);
a0e827c6 657 omap_disable_gpio_module(bank, offset);
4dbada2b 658 raw_spin_unlock_irqrestore(&bank->lock, flags);
aca82d1c
GS
659}
660
661static void omap_gpio_irq_bus_lock(struct irq_data *data)
662{
663 struct gpio_bank *bank = omap_irq_data_get_bank(data);
664
46748073 665 pm_runtime_get_sync(bank->chip.parent);
aca82d1c
GS
666}
667
668static void gpio_irq_bus_sync_unlock(struct irq_data *data)
669{
670 struct gpio_bank *bank = omap_irq_data_get_bank(data);
fac7fa16 671
46748073 672 pm_runtime_put(bank->chip.parent);
4196dd6b
TL
673}
674
a0e827c6 675static void omap_gpio_mask_irq(struct irq_data *d)
5e1c5ff4 676{
a0e827c6 677 struct gpio_bank *bank = omap_irq_data_get_bank(d);
9943f261 678 unsigned offset = d->hwirq;
85ec7b97 679 unsigned long flags;
5e1c5ff4 680
4dbada2b 681 raw_spin_lock_irqsave(&bank->lock, flags);
9943f261 682 omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
c859e0d4 683 omap_set_gpio_irqenable(bank, offset, 0);
4dbada2b 684 raw_spin_unlock_irqrestore(&bank->lock, flags);
39575d11 685 gpiochip_disable_irq(&bank->chip, offset);
5e1c5ff4
TL
686}
687
a0e827c6 688static void omap_gpio_unmask_irq(struct irq_data *d)
5e1c5ff4 689{
a0e827c6 690 struct gpio_bank *bank = omap_irq_data_get_bank(d);
9943f261 691 unsigned offset = d->hwirq;
8c04a176 692 u32 trigger = irqd_get_trigger_type(d);
85ec7b97 693 unsigned long flags;
55b6019a 694
39575d11 695 gpiochip_enable_irq(&bank->chip, offset);
4dbada2b 696 raw_spin_lock_irqsave(&bank->lock, flags);
d01849f7
RK
697 omap_set_gpio_irqenable(bank, offset, 1);
698
699 /*
700 * For level-triggered GPIOs, clearing must be done after the source
701 * is cleared, thus after the handler has run. OMAP4 needs this done
702 * after enabing the interrupt to clear the wakeup status.
703 */
c859e0d4
RK
704 if (bank->regs->leveldetect0 && bank->regs->wkup_en &&
705 trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
9943f261 706 omap_clear_gpio_irqstatus(bank, offset);
5e1c5ff4 707
c859e0d4
RK
708 if (trigger)
709 omap_set_gpio_triggering(bank, offset, trigger);
710
4dbada2b 711 raw_spin_unlock_irqrestore(&bank->lock, flags);
5e1c5ff4
TL
712}
713
39575d11
LW
714static void omap_gpio_irq_print_chip(struct irq_data *d, struct seq_file *p)
715{
716 struct gpio_bank *bank = omap_irq_data_get_bank(d);
717
718 seq_printf(p, dev_name(bank->dev));
719}
720
721static const struct irq_chip omap_gpio_irq_chip = {
722 .irq_startup = omap_gpio_irq_startup,
723 .irq_shutdown = omap_gpio_irq_shutdown,
724 .irq_mask = omap_gpio_mask_irq,
725 .irq_unmask = omap_gpio_unmask_irq,
726 .irq_set_type = omap_gpio_irq_type,
727 .irq_set_wake = omap_gpio_wake_enable,
728 .irq_bus_lock = omap_gpio_irq_bus_lock,
729 .irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
730 .irq_print_chip = omap_gpio_irq_print_chip,
731 .flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_IMMUTABLE,
732 GPIOCHIP_IRQ_RESOURCE_HELPERS,
733};
734
735static const struct irq_chip omap_gpio_irq_chip_nowake = {
736 .irq_startup = omap_gpio_irq_startup,
737 .irq_shutdown = omap_gpio_irq_shutdown,
738 .irq_mask = omap_gpio_mask_irq,
739 .irq_unmask = omap_gpio_unmask_irq,
740 .irq_set_type = omap_gpio_irq_type,
741 .irq_bus_lock = omap_gpio_irq_bus_lock,
742 .irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
743 .irq_print_chip = omap_gpio_irq_print_chip,
744 .flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_IMMUTABLE,
745 GPIOCHIP_IRQ_RESOURCE_HELPERS,
746};
747
e5c56ed3
DB
748/*---------------------------------------------------------------------*/
749
79ee031f 750static int omap_mpuio_suspend_noirq(struct device *dev)
11a78b79 751{
a3f4f728 752 struct gpio_bank *bank = dev_get_drvdata(dev);
5de62b86
TL
753 void __iomem *mask_reg = bank->base +
754 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
a6472533 755 unsigned long flags;
11a78b79 756
4dbada2b 757 raw_spin_lock_irqsave(&bank->lock, flags);
661553b9 758 writel_relaxed(0xffff & ~bank->context.wake_en, mask_reg);
4dbada2b 759 raw_spin_unlock_irqrestore(&bank->lock, flags);
11a78b79
DB
760
761 return 0;
762}
763
79ee031f 764static int omap_mpuio_resume_noirq(struct device *dev)
11a78b79 765{
a3f4f728 766 struct gpio_bank *bank = dev_get_drvdata(dev);
5de62b86
TL
767 void __iomem *mask_reg = bank->base +
768 OMAP_MPUIO_GPIO_MASKIT / bank->stride;
a6472533 769 unsigned long flags;
11a78b79 770
4dbada2b 771 raw_spin_lock_irqsave(&bank->lock, flags);
661553b9 772 writel_relaxed(bank->context.wake_en, mask_reg);
4dbada2b 773 raw_spin_unlock_irqrestore(&bank->lock, flags);
11a78b79
DB
774
775 return 0;
776}
777
47145210 778static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
79ee031f
MD
779 .suspend_noirq = omap_mpuio_suspend_noirq,
780 .resume_noirq = omap_mpuio_resume_noirq,
781};
782
3c437ffd 783/* use platform_driver for this. */
11a78b79 784static struct platform_driver omap_mpuio_driver = {
11a78b79
DB
785 .driver = {
786 .name = "mpuio",
79ee031f 787 .pm = &omap_mpuio_dev_pm_ops,
11a78b79
DB
788 },
789};
790
791static struct platform_device omap_mpuio_device = {
792 .name = "mpuio",
793 .id = -1,
794 .dev = {
795 .driver = &omap_mpuio_driver.driver,
796 }
797 /* could list the /proc/iomem resources */
798};
799
a0e827c6 800static inline void omap_mpuio_init(struct gpio_bank *bank)
11a78b79 801{
77640aab 802 platform_set_drvdata(&omap_mpuio_device, bank);
fcf126d8 803
11a78b79
DB
804 if (platform_driver_register(&omap_mpuio_driver) == 0)
805 (void) platform_device_register(&omap_mpuio_device);
806}
807
e5c56ed3 808/*---------------------------------------------------------------------*/
5e1c5ff4 809
dfbc6c7a 810static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
9370084e 811{
dfbc6c7a
RK
812 struct gpio_bank *bank = gpiochip_get_data(chip);
813 unsigned long flags;
814
815 pm_runtime_get_sync(chip->parent);
816
817 raw_spin_lock_irqsave(&bank->lock, flags);
818 omap_enable_gpio_module(bank, offset);
819 bank->mod_usage |= BIT(offset);
820 raw_spin_unlock_irqrestore(&bank->lock, flags);
821
822 return 0;
823}
824
825static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
826{
827 struct gpio_bank *bank = gpiochip_get_data(chip);
9370084e 828 unsigned long flags;
9370084e 829
4dbada2b 830 raw_spin_lock_irqsave(&bank->lock, flags);
dfbc6c7a
RK
831 bank->mod_usage &= ~(BIT(offset));
832 if (!LINE_USED(bank->irq_usage, offset)) {
833 omap_set_gpio_direction(bank, offset, 1);
834 omap_clear_gpio_debounce(bank, offset);
835 }
836 omap_disable_gpio_module(bank, offset);
4dbada2b 837 raw_spin_unlock_irqrestore(&bank->lock, flags);
dfbc6c7a
RK
838
839 pm_runtime_put(chip->parent);
840}
841
a0e827c6 842static int omap_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
9370084e 843{
40bb2273 844 struct gpio_bank *bank = gpiochip_get_data(chip);
9370084e 845
e42615ec
MV
846 if (readl_relaxed(bank->base + bank->regs->direction) & BIT(offset))
847 return GPIO_LINE_DIRECTION_IN;
848
849 return GPIO_LINE_DIRECTION_OUT;
9370084e
YY
850}
851
a0e827c6 852static int omap_gpio_input(struct gpio_chip *chip, unsigned offset)
52e31344
DB
853{
854 struct gpio_bank *bank;
855 unsigned long flags;
856
d99f7aec 857 bank = gpiochip_get_data(chip);
4dbada2b 858 raw_spin_lock_irqsave(&bank->lock, flags);
a0e827c6 859 omap_set_gpio_direction(bank, offset, 1);
4dbada2b 860 raw_spin_unlock_irqrestore(&bank->lock, flags);
52e31344
DB
861 return 0;
862}
863
a0e827c6 864static int omap_gpio_get(struct gpio_chip *chip, unsigned offset)
52e31344 865{
5ca5f92c
RK
866 struct gpio_bank *bank = gpiochip_get_data(chip);
867 void __iomem *reg;
b37c45b8 868
b2b20045 869 if (omap_gpio_is_input(bank, offset))
5ca5f92c 870 reg = bank->base + bank->regs->datain;
b37c45b8 871 else
5ca5f92c
RK
872 reg = bank->base + bank->regs->dataout;
873
874 return (readl_relaxed(reg) & BIT(offset)) != 0;
52e31344
DB
875}
876
a0e827c6 877static int omap_gpio_output(struct gpio_chip *chip, unsigned offset, int value)
52e31344
DB
878{
879 struct gpio_bank *bank;
880 unsigned long flags;
881
d99f7aec 882 bank = gpiochip_get_data(chip);
4dbada2b 883 raw_spin_lock_irqsave(&bank->lock, flags);
fa87931a 884 bank->set_dataout(bank, offset, value);
a0e827c6 885 omap_set_gpio_direction(bank, offset, 0);
4dbada2b 886 raw_spin_unlock_irqrestore(&bank->lock, flags);
2f56e0a5 887 return 0;
52e31344
DB
888}
889
442af140
JK
890static int omap_gpio_get_multiple(struct gpio_chip *chip, unsigned long *mask,
891 unsigned long *bits)
892{
893 struct gpio_bank *bank = gpiochip_get_data(chip);
6653dd88
RK
894 void __iomem *base = bank->base;
895 u32 direction, m, val = 0;
442af140 896
6653dd88 897 direction = readl_relaxed(base + bank->regs->direction);
442af140 898
6653dd88
RK
899 m = direction & *mask;
900 if (m)
901 val |= readl_relaxed(base + bank->regs->datain) & m;
442af140 902
6653dd88
RK
903 m = ~direction & *mask;
904 if (m)
905 val |= readl_relaxed(base + bank->regs->dataout) & m;
442af140 906
6653dd88 907 *bits = val;
442af140
JK
908
909 return 0;
910}
911
a0e827c6
JMC
912static int omap_gpio_debounce(struct gpio_chip *chip, unsigned offset,
913 unsigned debounce)
168ef3d9
FB
914{
915 struct gpio_bank *bank;
916 unsigned long flags;
83977443 917 int ret;
168ef3d9 918
d99f7aec 919 bank = gpiochip_get_data(chip);
77640aab 920
4dbada2b 921 raw_spin_lock_irqsave(&bank->lock, flags);
83977443 922 ret = omap2_set_gpio_debounce(bank, offset, debounce);
4dbada2b 923 raw_spin_unlock_irqrestore(&bank->lock, flags);
168ef3d9 924
83977443
DR
925 if (ret)
926 dev_info(chip->parent,
927 "Could not set line %u debounce to %u microseconds (%d)",
928 offset, debounce, ret);
929
930 return ret;
168ef3d9
FB
931}
932
2956b5d9
MW
933static int omap_gpio_set_config(struct gpio_chip *chip, unsigned offset,
934 unsigned long config)
935{
936 u32 debounce;
75dec567
DF
937 int ret = -ENOTSUPP;
938
bde8c0e6
DF
939 switch (pinconf_to_config_param(config)) {
940 case PIN_CONFIG_BIAS_DISABLE:
941 case PIN_CONFIG_BIAS_PULL_UP:
942 case PIN_CONFIG_BIAS_PULL_DOWN:
75dec567 943 ret = gpiochip_generic_config(chip, offset, config);
bde8c0e6
DF
944 break;
945 case PIN_CONFIG_INPUT_DEBOUNCE:
75dec567
DF
946 debounce = pinconf_to_config_argument(config);
947 ret = omap_gpio_debounce(chip, offset, debounce);
bde8c0e6
DF
948 break;
949 default:
950 break;
75dec567 951 }
2956b5d9 952
75dec567 953 return ret;
2956b5d9
MW
954}
955
a0e827c6 956static void omap_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
52e31344
DB
957{
958 struct gpio_bank *bank;
959 unsigned long flags;
960
d99f7aec 961 bank = gpiochip_get_data(chip);
4dbada2b 962 raw_spin_lock_irqsave(&bank->lock, flags);
fa87931a 963 bank->set_dataout(bank, offset, value);
4dbada2b 964 raw_spin_unlock_irqrestore(&bank->lock, flags);
52e31344
DB
965}
966
442af140
JK
967static void omap_gpio_set_multiple(struct gpio_chip *chip, unsigned long *mask,
968 unsigned long *bits)
969{
970 struct gpio_bank *bank = gpiochip_get_data(chip);
8ba70595 971 void __iomem *reg = bank->base + bank->regs->dataout;
442af140 972 unsigned long flags;
8ba70595 973 u32 l;
442af140
JK
974
975 raw_spin_lock_irqsave(&bank->lock, flags);
8ba70595
RK
976 l = (readl_relaxed(reg) & ~*mask) | (*bits & *mask);
977 writel_relaxed(l, reg);
978 bank->context.dataout = l;
442af140
JK
979 raw_spin_unlock_irqrestore(&bank->lock, flags);
980}
981
52e31344
DB
982/*---------------------------------------------------------------------*/
983
e4b2ae7a 984static void omap_gpio_show_rev(struct gpio_bank *bank)
9f7065da 985{
e5ff4440 986 static bool called;
9f7065da
TL
987 u32 rev;
988
e5ff4440 989 if (called || bank->regs->revision == USHRT_MAX)
9f7065da
TL
990 return;
991
661553b9 992 rev = readw_relaxed(bank->base + bank->regs->revision);
e5ff4440 993 pr_info("OMAP GPIO hardware version %d.%d\n",
9f7065da 994 (rev >> 4) & 0x0f, rev & 0x0f);
e5ff4440
KH
995
996 called = true;
9f7065da
TL
997}
998
03e128ca 999static void omap_gpio_mod_init(struct gpio_bank *bank)
2fae7fbe 1000{
ab985f0f
TKD
1001 void __iomem *base = bank->base;
1002 u32 l = 0xffffffff;
2fae7fbe 1003
ab985f0f
TKD
1004 if (bank->width == 16)
1005 l = 0xffff;
1006
d0d665a8 1007 if (bank->is_mpuio) {
661553b9 1008 writel_relaxed(l, bank->base + bank->regs->irqenable);
ab985f0f 1009 return;
2fae7fbe 1010 }
ab985f0f 1011
8ee1de65 1012 omap_gpio_rmw(base + bank->regs->irqenable, l,
a0e827c6 1013 bank->regs->irqenable_inv);
8ee1de65 1014 omap_gpio_rmw(base + bank->regs->irqstatus, l,
a0e827c6 1015 !bank->regs->irqenable_inv);
ab985f0f 1016 if (bank->regs->debounce_en)
661553b9 1017 writel_relaxed(0, base + bank->regs->debounce_en);
ab985f0f 1018
2dc983c5 1019 /* Save OE default value (0xffffffff) in the context */
661553b9 1020 bank->context.oe = readl_relaxed(bank->base + bank->regs->direction);
ab985f0f
TKD
1021 /* Initialize interface clk ungated, module enabled */
1022 if (bank->regs->ctrl)
661553b9 1023 writel_relaxed(0, base + bank->regs->ctrl);
2fae7fbe
VC
1024}
1025
39575d11 1026static int omap_gpio_chip_init(struct gpio_bank *bank, struct device *pm_dev)
2fae7fbe 1027{
81930328 1028 struct gpio_irq_chip *irq;
2fae7fbe 1029 static int gpio;
088413bc 1030 const char *label;
6ef7f385 1031 int ret;
2fae7fbe 1032
2fae7fbe
VC
1033 /*
1034 * REVISIT eventually switch from OMAP-specific gpio structs
1035 * over to the generic ones
1036 */
1037 bank->chip.request = omap_gpio_request;
1038 bank->chip.free = omap_gpio_free;
a0e827c6
JMC
1039 bank->chip.get_direction = omap_gpio_get_direction;
1040 bank->chip.direction_input = omap_gpio_input;
1041 bank->chip.get = omap_gpio_get;
442af140 1042 bank->chip.get_multiple = omap_gpio_get_multiple;
a0e827c6 1043 bank->chip.direction_output = omap_gpio_output;
2956b5d9 1044 bank->chip.set_config = omap_gpio_set_config;
a0e827c6 1045 bank->chip.set = omap_gpio_set;
442af140 1046 bank->chip.set_multiple = omap_gpio_set_multiple;
d0d665a8 1047 if (bank->is_mpuio) {
2fae7fbe 1048 bank->chip.label = "mpuio";
6ed87c5b 1049 if (bank->regs->wkup_en)
58383c78 1050 bank->chip.parent = &omap_mpuio_device.dev;
2fae7fbe 1051 } else {
088413bc
LW
1052 label = devm_kasprintf(bank->chip.parent, GFP_KERNEL, "gpio-%d-%d",
1053 gpio, gpio + bank->width - 1);
1054 if (!label)
1055 return -ENOMEM;
1056 bank->chip.label = label;
2fae7fbe 1057 }
968118fc 1058 bank->chip.base = -1;
d5f46247 1059 bank->chip.ngpio = bank->width;
2fae7fbe 1060
39575d11 1061 irq = &bank->chip.irq;
d2d05c65 1062 /* MPUIO is a bit different, reading IRQ status clears it */
693de831 1063 if (bank->is_mpuio && !bank->regs->wkup_en)
39575d11
LW
1064 gpio_irq_chip_set_chip(irq, &omap_gpio_irq_chip_nowake);
1065 else
1066 gpio_irq_chip_set_chip(irq, &omap_gpio_irq_chip);
81930328
GS
1067 irq->handler = handle_bad_irq;
1068 irq->default_type = IRQ_TYPE_NONE;
1069 irq->num_parents = 1;
1070 irq->parents = &bank->irq;
fb655f57 1071
81930328 1072 ret = gpiochip_add_data(&bank->chip, bank);
2ae136a3
GS
1073 if (ret)
1074 return dev_err_probe(bank->chip.parent, ret, "Could not register gpio chip\n");
fb655f57 1075
989c78f2 1076 irq_domain_set_pm_device(bank->chip.irq.domain, pm_dev);
7b1e5dc8
GS
1077 ret = devm_request_irq(bank->chip.parent, bank->irq,
1078 omap_gpio_irq_handler,
1079 0, dev_name(bank->chip.parent), bank);
450fa54c
GS
1080 if (ret)
1081 gpiochip_remove(&bank->chip);
1082
81930328
GS
1083 if (!bank->is_mpuio)
1084 gpio += bank->width;
1085
450fa54c 1086 return ret;
2fae7fbe
VC
1087}
1088
7c68571f 1089static void omap_gpio_init_context(struct gpio_bank *p)
b764a586 1090{
18bd49c4 1091 const struct omap_gpio_reg_offs *regs = p->regs;
7c68571f 1092 void __iomem *base = p->base;
b764a586 1093
ddd8d94c 1094 p->context.sysconfig = readl_relaxed(base + regs->sysconfig);
7c68571f
AB
1095 p->context.ctrl = readl_relaxed(base + regs->ctrl);
1096 p->context.oe = readl_relaxed(base + regs->direction);
1097 p->context.wake_en = readl_relaxed(base + regs->wkup_en);
1098 p->context.leveldetect0 = readl_relaxed(base + regs->leveldetect0);
1099 p->context.leveldetect1 = readl_relaxed(base + regs->leveldetect1);
1100 p->context.risingdetect = readl_relaxed(base + regs->risingdetect);
1101 p->context.fallingdetect = readl_relaxed(base + regs->fallingdetect);
1102 p->context.irqenable1 = readl_relaxed(base + regs->irqenable);
1103 p->context.irqenable2 = readl_relaxed(base + regs->irqenable2);
9a302781 1104 p->context.dataout = readl_relaxed(base + regs->dataout);
b764a586 1105
7c68571f 1106 p->context_valid = true;
b764a586
TL
1107}
1108
7c68571f 1109static void omap_gpio_restore_context(struct gpio_bank *bank)
5e1c5ff4 1110{
18bd49c4 1111 const struct omap_gpio_reg_offs *regs = bank->regs;
9c7f798d
RK
1112 void __iomem *base = bank->base;
1113
ddd8d94c 1114 writel_relaxed(bank->context.sysconfig, base + regs->sysconfig);
9c7f798d
RK
1115 writel_relaxed(bank->context.wake_en, base + regs->wkup_en);
1116 writel_relaxed(bank->context.ctrl, base + regs->ctrl);
1117 writel_relaxed(bank->context.leveldetect0, base + regs->leveldetect0);
1118 writel_relaxed(bank->context.leveldetect1, base + regs->leveldetect1);
1119 writel_relaxed(bank->context.risingdetect, base + regs->risingdetect);
1120 writel_relaxed(bank->context.fallingdetect, base + regs->fallingdetect);
1121 writel_relaxed(bank->context.dataout, base + regs->dataout);
1122 writel_relaxed(bank->context.oe, base + regs->direction);
9f7065da 1123
7c68571f 1124 if (bank->dbck_enable_mask) {
9c7f798d 1125 writel_relaxed(bank->context.debounce, base + regs->debounce);
7c68571f 1126 writel_relaxed(bank->context.debounce_en,
9c7f798d 1127 base + regs->debounce_en);
b764a586
TL
1128 }
1129
9c7f798d
RK
1130 writel_relaxed(bank->context.irqenable1, base + regs->irqenable);
1131 writel_relaxed(bank->context.irqenable2, base + regs->irqenable2);
cac089f9
TL
1132}
1133
b764a586 1134static void omap_gpio_idle(struct gpio_bank *bank, bool may_lose_context)
3ac4fa99 1135{
b764a586 1136 struct device *dev = bank->chip.parent;
21e2118f 1137 void __iomem *base = bank->base;
7ffa0816 1138 u32 mask, nowake;
21e2118f
TL
1139
1140 bank->saved_datain = readl_relaxed(base + bank->regs->datain);
68942edb 1141
ddd8d94c
TL
1142 /* Save syconfig, it's runtime value can be different from init value */
1143 if (bank->loses_context)
1144 bank->context.sysconfig = readl_relaxed(base + bank->regs->sysconfig);
1145
b3c64bc3
KH
1146 if (!bank->enabled_non_wakeup_gpios)
1147 goto update_gpio_context_count;
1148
7ffa0816
TL
1149 /* Check for pending EDGE_FALLING, ignore EDGE_BOTH */
1150 mask = bank->enabled_non_wakeup_gpios & bank->context.fallingdetect;
1151 mask &= ~bank->context.risingdetect;
1152 bank->saved_datain |= mask;
1153
1154 /* Check for pending EDGE_RISING, ignore EDGE_BOTH */
1155 mask = bank->enabled_non_wakeup_gpios & bank->context.risingdetect;
1156 mask &= ~bank->context.fallingdetect;
1157 bank->saved_datain &= ~mask;
1158
b764a586 1159 if (!may_lose_context)
41d87cbd 1160 goto update_gpio_context_count;
b764a586 1161
2dc983c5 1162 /*
21e2118f 1163 * If going to OFF, remove triggering for all wkup domain
2dc983c5
TKD
1164 * non-wakeup GPIOs. Otherwise spurious IRQs will be
1165 * generated. See OMAP2420 Errata item 1.101.
1166 */
21e2118f
TL
1167 if (!bank->loses_context && bank->enabled_non_wakeup_gpios) {
1168 nowake = bank->enabled_non_wakeup_gpios;
8ee1de65
RK
1169 omap_gpio_rmw(base + bank->regs->fallingdetect, nowake, ~nowake);
1170 omap_gpio_rmw(base + bank->regs->risingdetect, nowake, ~nowake);
21e2118f 1171 }
3f1686a9 1172
41d87cbd 1173update_gpio_context_count:
2dc983c5
TKD
1174 if (bank->get_context_loss_count)
1175 bank->context_loss_count =
7b1e5dc8 1176 bank->get_context_loss_count(dev);
60a3437d 1177
a0e827c6 1178 omap_gpio_dbck_disable(bank);
3ac4fa99
JY
1179}
1180
b764a586 1181static void omap_gpio_unidle(struct gpio_bank *bank)
3ac4fa99 1182{
b764a586 1183 struct device *dev = bank->chip.parent;
2dc983c5 1184 u32 l = 0, gen, gen0, gen1;
a2797bea 1185 int c;
8865b9b6 1186
352a2d5b
JH
1187 /*
1188 * On the first resume during the probe, the context has not
1189 * been initialised and so initialise it now. Also initialise
1190 * the context loss count.
1191 */
1192 if (bank->loses_context && !bank->context_valid) {
1193 omap_gpio_init_context(bank);
1194
1195 if (bank->get_context_loss_count)
1196 bank->context_loss_count =
7b1e5dc8 1197 bank->get_context_loss_count(dev);
352a2d5b
JH
1198 }
1199
a0e827c6 1200 omap_gpio_dbck_enable(bank);
68942edb 1201
a2797bea
JH
1202 if (bank->loses_context) {
1203 if (!bank->get_context_loss_count) {
2dc983c5
TKD
1204 omap_gpio_restore_context(bank);
1205 } else {
7b1e5dc8 1206 c = bank->get_context_loss_count(dev);
a2797bea
JH
1207 if (c != bank->context_loss_count) {
1208 omap_gpio_restore_context(bank);
1209 } else {
b764a586 1210 return;
a2797bea 1211 }
60a3437d 1212 }
21e2118f
TL
1213 } else {
1214 /* Restore changes done for OMAP2420 errata 1.101 */
1215 writel_relaxed(bank->context.fallingdetect,
1216 bank->base + bank->regs->fallingdetect);
1217 writel_relaxed(bank->context.risingdetect,
1218 bank->base + bank->regs->risingdetect);
2dc983c5 1219 }
43ffcd9a 1220
661553b9 1221 l = readl_relaxed(bank->base + bank->regs->datain);
3f1686a9 1222
2dc983c5
TKD
1223 /*
1224 * Check if any of the non-wakeup interrupt GPIOs have changed
1225 * state. If so, generate an IRQ by software. This is
1226 * horribly racy, but it's the best we can do to work around
1227 * this silicon bug.
1228 */
1229 l ^= bank->saved_datain;
1230 l &= bank->enabled_non_wakeup_gpios;
3f1686a9 1231
2dc983c5
TKD
1232 /*
1233 * No need to generate IRQs for the rising edge for gpio IRQs
1234 * configured with falling edge only; and vice versa.
1235 */
c6f31c9e 1236 gen0 = l & bank->context.fallingdetect;
2dc983c5 1237 gen0 &= bank->saved_datain;
82dbb9d3 1238
c6f31c9e 1239 gen1 = l & bank->context.risingdetect;
2dc983c5 1240 gen1 &= ~(bank->saved_datain);
82dbb9d3 1241
2dc983c5 1242 /* FIXME: Consider GPIO IRQs with level detections properly! */
c6f31c9e
TKD
1243 gen = l & (~(bank->context.fallingdetect) &
1244 ~(bank->context.risingdetect));
2dc983c5
TKD
1245 /* Consider all GPIO IRQs needed to be updated */
1246 gen |= gen0 | gen1;
82dbb9d3 1247
2dc983c5
TKD
1248 if (gen) {
1249 u32 old0, old1;
82dbb9d3 1250
661553b9
VK
1251 old0 = readl_relaxed(bank->base + bank->regs->leveldetect0);
1252 old1 = readl_relaxed(bank->base + bank->regs->leveldetect1);
3f1686a9 1253
4e962e89 1254 if (!bank->regs->irqstatus_raw0) {
661553b9 1255 writel_relaxed(old0 | gen, bank->base +
9ea14d8c 1256 bank->regs->leveldetect0);
661553b9 1257 writel_relaxed(old1 | gen, bank->base +
9ea14d8c 1258 bank->regs->leveldetect1);
2dc983c5 1259 }
9ea14d8c 1260
4e962e89 1261 if (bank->regs->irqstatus_raw0) {
661553b9 1262 writel_relaxed(old0 | l, bank->base +
9ea14d8c 1263 bank->regs->leveldetect0);
661553b9 1264 writel_relaxed(old1 | l, bank->base +
9ea14d8c 1265 bank->regs->leveldetect1);
3ac4fa99 1266 }
661553b9
VK
1267 writel_relaxed(old0, bank->base + bank->regs->leveldetect0);
1268 writel_relaxed(old1, bank->base + bank->regs->leveldetect1);
2dc983c5 1269 }
2dc983c5 1270}
2dc983c5 1271
7c68571f
AB
1272static int gpio_omap_cpu_notifier(struct notifier_block *nb,
1273 unsigned long cmd, void *v)
352a2d5b 1274{
7c68571f
AB
1275 struct gpio_bank *bank;
1276 unsigned long flags;
43582265
TL
1277 int ret = NOTIFY_OK;
1278 u32 isr, mask;
352a2d5b 1279
7c68571f 1280 bank = container_of(nb, struct gpio_bank, nb);
352a2d5b 1281
7c68571f 1282 raw_spin_lock_irqsave(&bank->lock, flags);
43582265
TL
1283 if (bank->is_suspended)
1284 goto out_unlock;
1285
7c68571f
AB
1286 switch (cmd) {
1287 case CPU_CLUSTER_PM_ENTER:
43582265
TL
1288 mask = omap_get_gpio_irqbank_mask(bank);
1289 isr = readl_relaxed(bank->base + bank->regs->irqstatus) & mask;
1290 if (isr) {
1291 ret = NOTIFY_BAD;
7c68571f 1292 break;
43582265 1293 }
7c68571f
AB
1294 omap_gpio_idle(bank, true);
1295 break;
1296 case CPU_CLUSTER_PM_ENTER_FAILED:
1297 case CPU_CLUSTER_PM_EXIT:
7c68571f
AB
1298 omap_gpio_unidle(bank);
1299 break;
1300 }
43582265
TL
1301
1302out_unlock:
7c68571f 1303 raw_spin_unlock_irqrestore(&bank->lock, flags);
352a2d5b 1304
43582265 1305 return ret;
b764a586
TL
1306}
1307
18bd49c4 1308static const struct omap_gpio_reg_offs omap2_gpio_regs = {
384ebe1c 1309 .revision = OMAP24XX_GPIO_REVISION,
ddd8d94c 1310 .sysconfig = OMAP24XX_GPIO_SYSCONFIG,
384ebe1c
BC
1311 .direction = OMAP24XX_GPIO_OE,
1312 .datain = OMAP24XX_GPIO_DATAIN,
1313 .dataout = OMAP24XX_GPIO_DATAOUT,
1314 .set_dataout = OMAP24XX_GPIO_SETDATAOUT,
1315 .clr_dataout = OMAP24XX_GPIO_CLEARDATAOUT,
1316 .irqstatus = OMAP24XX_GPIO_IRQSTATUS1,
1317 .irqstatus2 = OMAP24XX_GPIO_IRQSTATUS2,
1318 .irqenable = OMAP24XX_GPIO_IRQENABLE1,
1319 .irqenable2 = OMAP24XX_GPIO_IRQENABLE2,
1320 .set_irqenable = OMAP24XX_GPIO_SETIRQENABLE1,
1321 .clr_irqenable = OMAP24XX_GPIO_CLEARIRQENABLE1,
1322 .debounce = OMAP24XX_GPIO_DEBOUNCE_VAL,
1323 .debounce_en = OMAP24XX_GPIO_DEBOUNCE_EN,
1324 .ctrl = OMAP24XX_GPIO_CTRL,
1325 .wkup_en = OMAP24XX_GPIO_WAKE_EN,
1326 .leveldetect0 = OMAP24XX_GPIO_LEVELDETECT0,
1327 .leveldetect1 = OMAP24XX_GPIO_LEVELDETECT1,
1328 .risingdetect = OMAP24XX_GPIO_RISINGDETECT,
1329 .fallingdetect = OMAP24XX_GPIO_FALLINGDETECT,
1330};
1331
18bd49c4 1332static const struct omap_gpio_reg_offs omap4_gpio_regs = {
384ebe1c 1333 .revision = OMAP4_GPIO_REVISION,
ddd8d94c 1334 .sysconfig = OMAP4_GPIO_SYSCONFIG,
384ebe1c
BC
1335 .direction = OMAP4_GPIO_OE,
1336 .datain = OMAP4_GPIO_DATAIN,
1337 .dataout = OMAP4_GPIO_DATAOUT,
1338 .set_dataout = OMAP4_GPIO_SETDATAOUT,
1339 .clr_dataout = OMAP4_GPIO_CLEARDATAOUT,
1340 .irqstatus = OMAP4_GPIO_IRQSTATUS0,
1341 .irqstatus2 = OMAP4_GPIO_IRQSTATUS1,
64ea3e90
RK
1342 .irqstatus_raw0 = OMAP4_GPIO_IRQSTATUSRAW0,
1343 .irqstatus_raw1 = OMAP4_GPIO_IRQSTATUSRAW1,
384ebe1c
BC
1344 .irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1345 .irqenable2 = OMAP4_GPIO_IRQSTATUSSET1,
1346 .set_irqenable = OMAP4_GPIO_IRQSTATUSSET0,
1347 .clr_irqenable = OMAP4_GPIO_IRQSTATUSCLR0,
1348 .debounce = OMAP4_GPIO_DEBOUNCINGTIME,
1349 .debounce_en = OMAP4_GPIO_DEBOUNCENABLE,
1350 .ctrl = OMAP4_GPIO_CTRL,
1351 .wkup_en = OMAP4_GPIO_IRQWAKEN0,
1352 .leveldetect0 = OMAP4_GPIO_LEVELDETECT0,
1353 .leveldetect1 = OMAP4_GPIO_LEVELDETECT1,
1354 .risingdetect = OMAP4_GPIO_RISINGDETECT,
1355 .fallingdetect = OMAP4_GPIO_FALLINGDETECT,
1356};
1357
e9a65bb6 1358static const struct omap_gpio_platform_data omap2_pdata = {
384ebe1c
BC
1359 .regs = &omap2_gpio_regs,
1360 .bank_width = 32,
1361 .dbck_flag = false,
1362};
1363
e9a65bb6 1364static const struct omap_gpio_platform_data omap3_pdata = {
384ebe1c
BC
1365 .regs = &omap2_gpio_regs,
1366 .bank_width = 32,
1367 .dbck_flag = true,
1368};
1369
e9a65bb6 1370static const struct omap_gpio_platform_data omap4_pdata = {
384ebe1c
BC
1371 .regs = &omap4_gpio_regs,
1372 .bank_width = 32,
1373 .dbck_flag = true,
1374};
1375
1376static const struct of_device_id omap_gpio_match[] = {
1377 {
1378 .compatible = "ti,omap4-gpio",
1379 .data = &omap4_pdata,
1380 },
1381 {
1382 .compatible = "ti,omap3-gpio",
1383 .data = &omap3_pdata,
1384 },
1385 {
1386 .compatible = "ti,omap2-gpio",
1387 .data = &omap2_pdata,
1388 },
1389 { },
1390};
1391MODULE_DEVICE_TABLE(of, omap_gpio_match);
7c68571f
AB
1392
1393static int omap_gpio_probe(struct platform_device *pdev)
1394{
1395 struct device *dev = &pdev->dev;
1396 struct device_node *node = dev->of_node;
7c68571f 1397 const struct omap_gpio_platform_data *pdata;
7c68571f 1398 struct gpio_bank *bank;
7c68571f
AB
1399 int ret;
1400
ca40daf3 1401 pdata = device_get_match_data(dev);
7c68571f 1402
ca40daf3 1403 pdata = pdata ?: dev_get_platdata(dev);
7c68571f
AB
1404 if (!pdata)
1405 return -EINVAL;
1406
1407 bank = devm_kzalloc(dev, sizeof(*bank), GFP_KERNEL);
1408 if (!bank)
1409 return -ENOMEM;
1410
39575d11 1411 bank->dev = dev;
7c68571f
AB
1412
1413 bank->irq = platform_get_irq(pdev, 0);
291bc793
RJ
1414 if (bank->irq < 0)
1415 return bank->irq;
7c68571f
AB
1416
1417 bank->chip.parent = dev;
1418 bank->chip.owner = THIS_MODULE;
1419 bank->dbck_flag = pdata->dbck_flag;
7c68571f
AB
1420 bank->stride = pdata->bank_stride;
1421 bank->width = pdata->bank_width;
1422 bank->is_mpuio = pdata->is_mpuio;
1423 bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
1424 bank->regs = pdata->regs;
384ebe1c 1425
7c68571f
AB
1426 if (node) {
1427 if (!of_property_read_bool(node, "ti,gpio-always-on"))
1428 bank->loses_context = true;
1429 } else {
1430 bank->loses_context = pdata->loses_context;
1431
1432 if (bank->loses_context)
1433 bank->get_context_loss_count =
1434 pdata->get_context_loss_count;
1435 }
1436
8ba70595 1437 if (bank->regs->set_dataout && bank->regs->clr_dataout)
7c68571f 1438 bank->set_dataout = omap_set_gpio_dataout_reg;
8ba70595 1439 else
7c68571f 1440 bank->set_dataout = omap_set_gpio_dataout_mask;
7c68571f 1441
7c68571f
AB
1442 raw_spin_lock_init(&bank->lock);
1443 raw_spin_lock_init(&bank->wa_lock);
1444
1445 /* Static mapping, never released */
58f57f86 1446 bank->base = devm_platform_ioremap_resource(pdev, 0);
7c68571f
AB
1447 if (IS_ERR(bank->base)) {
1448 return PTR_ERR(bank->base);
1449 }
1450
1451 if (bank->dbck_flag) {
1452 bank->dbck = devm_clk_get(dev, "dbclk");
1453 if (IS_ERR(bank->dbck)) {
1454 dev_err(dev,
1455 "Could not get gpio dbck. Disable debounce\n");
1456 bank->dbck_flag = false;
1457 } else {
1458 clk_prepare(bank->dbck);
1459 }
1460 }
1461
1462 platform_set_drvdata(pdev, bank);
1463
1464 pm_runtime_enable(dev);
1465 pm_runtime_get_sync(dev);
1466
1467 if (bank->is_mpuio)
1468 omap_mpuio_init(bank);
1469
1470 omap_gpio_mod_init(bank);
1471
39575d11 1472 ret = omap_gpio_chip_init(bank, dev);
7c68571f
AB
1473 if (ret) {
1474 pm_runtime_put_sync(dev);
1475 pm_runtime_disable(dev);
1476 if (bank->dbck_flag)
1477 clk_unprepare(bank->dbck);
1478 return ret;
1479 }
1480
1481 omap_gpio_show_rev(bank);
1482
e6818d29
RK
1483 bank->nb.notifier_call = gpio_omap_cpu_notifier;
1484 cpu_pm_register_notifier(&bank->nb);
7c68571f
AB
1485
1486 pm_runtime_put(dev);
1487
1488 return 0;
1489}
1490
f822f46f 1491static void omap_gpio_remove(struct platform_device *pdev)
7c68571f
AB
1492{
1493 struct gpio_bank *bank = platform_get_drvdata(pdev);
1494
e6818d29 1495 cpu_pm_unregister_notifier(&bank->nb);
7c68571f
AB
1496 gpiochip_remove(&bank->chip);
1497 pm_runtime_disable(&pdev->dev);
1498 if (bank->dbck_flag)
1499 clk_unprepare(bank->dbck);
7c68571f
AB
1500}
1501
1502static int __maybe_unused omap_gpio_runtime_suspend(struct device *dev)
1503{
1504 struct gpio_bank *bank = dev_get_drvdata(dev);
1505 unsigned long flags;
7c68571f
AB
1506
1507 raw_spin_lock_irqsave(&bank->lock, flags);
7c68571f
AB
1508 omap_gpio_idle(bank, true);
1509 bank->is_suspended = true;
7c68571f
AB
1510 raw_spin_unlock_irqrestore(&bank->lock, flags);
1511
044e499a 1512 return 0;
7c68571f
AB
1513}
1514
1515static int __maybe_unused omap_gpio_runtime_resume(struct device *dev)
1516{
1517 struct gpio_bank *bank = dev_get_drvdata(dev);
1518 unsigned long flags;
7c68571f
AB
1519
1520 raw_spin_lock_irqsave(&bank->lock, flags);
7c68571f
AB
1521 omap_gpio_unidle(bank);
1522 bank->is_suspended = false;
7c68571f
AB
1523 raw_spin_unlock_irqrestore(&bank->lock, flags);
1524
044e499a 1525 return 0;
7c68571f
AB
1526}
1527
d3f99f91 1528static int __maybe_unused omap_gpio_suspend(struct device *dev)
f02a0398
TL
1529{
1530 struct gpio_bank *bank = dev_get_drvdata(dev);
1531
1532 if (bank->is_suspended)
1533 return 0;
1534
1535 bank->needs_resume = 1;
1536
1537 return omap_gpio_runtime_suspend(dev);
1538}
1539
d3f99f91 1540static int __maybe_unused omap_gpio_resume(struct device *dev)
f02a0398
TL
1541{
1542 struct gpio_bank *bank = dev_get_drvdata(dev);
1543
1544 if (!bank->needs_resume)
1545 return 0;
1546
1547 bank->needs_resume = 0;
1548
1549 return omap_gpio_runtime_resume(dev);
1550}
1551
7c68571f
AB
1552static const struct dev_pm_ops gpio_pm_ops = {
1553 SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
1554 NULL)
f02a0398 1555 SET_LATE_SYSTEM_SLEEP_PM_OPS(omap_gpio_suspend, omap_gpio_resume)
7c68571f
AB
1556};
1557
77640aab
VC
1558static struct platform_driver omap_gpio_driver = {
1559 .probe = omap_gpio_probe,
f822f46f 1560 .remove_new = omap_gpio_remove,
77640aab
VC
1561 .driver = {
1562 .name = "omap_gpio",
55b93c32 1563 .pm = &gpio_pm_ops,
7c68571f 1564 .of_match_table = omap_gpio_match,
77640aab
VC
1565 },
1566};
1567
5e1c5ff4 1568/*
77640aab
VC
1569 * gpio driver register needs to be done before
1570 * machine_init functions access gpio APIs.
1571 * Hence omap_gpio_drv_reg() is a postcore_initcall.
5e1c5ff4 1572 */
77640aab 1573static int __init omap_gpio_drv_reg(void)
5e1c5ff4 1574{
77640aab 1575 return platform_driver_register(&omap_gpio_driver);
5e1c5ff4 1576}
77640aab 1577postcore_initcall(omap_gpio_drv_reg);
cac089f9
TL
1578
1579static void __exit omap_gpio_exit(void)
1580{
1581 platform_driver_unregister(&omap_gpio_driver);
1582}
1583module_exit(omap_gpio_exit);
1584
1585MODULE_DESCRIPTION("omap gpio driver");
1586MODULE_ALIAS("platform:gpio-omap");
1587MODULE_LICENSE("GPL v2");