gpio-omap.c 43.3 KB
Newer Older
1 2 3
/*
 * Support functions for OMAP GPIO
 *
4
 * Copyright (C) 2003-2005 Nokia Corporation
5
 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
6
 *
7 8 9
 * Copyright (C) 2009 Texas Instruments
 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
 *
10 11 12 13 14 15 16 17
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/init.h>
#include <linux/module.h>
#include <linux/interrupt.h>
18
#include <linux/syscore_ops.h>
19
#include <linux/err.h>
20
#include <linux/clk.h>
21
#include <linux/io.h>
22
#include <linux/device.h>
23
#include <linux/pm_runtime.h>
24
#include <linux/pm.h>
25 26
#include <linux/of.h>
#include <linux/of_device.h>
27
#include <linux/gpio.h>
28
#include <linux/bitops.h>
29
#include <linux/platform_data/gpio-omap.h>
30

31
#define OFF_MODE	1
32
#define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
33

34 35
static LIST_HEAD(omap_gpio_list);

36 37 38 39 40 41 42 43 44 45 46
struct gpio_regs {
	u32 irqenable1;
	u32 irqenable2;
	u32 wake_en;
	u32 ctrl;
	u32 oe;
	u32 leveldetect0;
	u32 leveldetect1;
	u32 risingdetect;
	u32 fallingdetect;
	u32 dataout;
47 48
	u32 debounce;
	u32 debounce_en;
49 50
};

51
struct gpio_bank {
52
	struct list_head node;
53
	void __iomem *base;
54
	int irq;
55 56
	u32 non_wakeup_gpios;
	u32 enabled_non_wakeup_gpios;
57
	struct gpio_regs context;
58
	u32 saved_datain;
59
	u32 level_mask;
60
	u32 toggle_mask;
61
	raw_spinlock_t lock;
62
	raw_spinlock_t wa_lock;
D
David Brownell 已提交
63
	struct gpio_chip chip;
64
	struct clk *dbck;
C
Charulatha V 已提交
65
	u32 mod_usage;
66
	u32 irq_usage;
67
	u32 dbck_enable_mask;
68
	bool dbck_enabled;
69
	bool is_mpuio;
70
	bool dbck_flag;
71
	bool loses_context;
72
	bool context_valid;
73
	int stride;
74
	u32 width;
75
	int context_loss_count;
76 77
	int power_mode;
	bool workaround_enabled;
78

79
	void (*set_dataout)(struct gpio_bank *bank, unsigned gpio, int enable);
80
	int (*get_context_loss_count)(struct device *dev);
81 82

	struct omap_gpio_reg_offs *regs;
83 84
};

85
#define GPIO_MOD_CTRL_BIT	BIT(0)
86

87
#define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
88
#define LINE_USED(line, offset) (line & (BIT(offset)))
89

90 91
static void omap_gpio_unmask_irq(struct irq_data *d);

92
static inline struct gpio_bank *omap_irq_data_get_bank(struct irq_data *d)
93
{
94
	struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
95
	return gpiochip_get_data(chip);
96 97
}

98 99
static void omap_set_gpio_direction(struct gpio_bank *bank, int gpio,
				    int is_input)
100
{
101
	void __iomem *reg = bank->base;
102 103
	u32 l;

104
	reg += bank->regs->direction;
105
	l = readl_relaxed(reg);
106
	if (is_input)
107
		l |= BIT(gpio);
108
	else
109
		l &= ~(BIT(gpio));
110
	writel_relaxed(l, reg);
111
	bank->context.oe = l;
112 113
}

114 115

/* set data out value using dedicate set/clear register */
116
static void omap_set_gpio_dataout_reg(struct gpio_bank *bank, unsigned offset,
117
				      int enable)
118
{
119
	void __iomem *reg = bank->base;
120
	u32 l = BIT(offset);
121

122
	if (enable) {
123
		reg += bank->regs->set_dataout;
124 125
		bank->context.dataout |= l;
	} else {
126
		reg += bank->regs->clr_dataout;
127 128
		bank->context.dataout &= ~l;
	}
129

130
	writel_relaxed(l, reg);
131 132
}

133
/* set data out value using mask register */
134
static void omap_set_gpio_dataout_mask(struct gpio_bank *bank, unsigned offset,
135
				       int enable)
136
{
137
	void __iomem *reg = bank->base + bank->regs->dataout;
138
	u32 gpio_bit = BIT(offset);
139
	u32 l;
140

141
	l = readl_relaxed(reg);
142 143 144 145
	if (enable)
		l |= gpio_bit;
	else
		l &= ~gpio_bit;
146
	writel_relaxed(l, reg);
147
	bank->context.dataout = l;
148 149
}

150
static int omap_get_gpio_datain(struct gpio_bank *bank, int offset)
151
{
152
	void __iomem *reg = bank->base + bank->regs->datain;
153

154
	return (readl_relaxed(reg) & (BIT(offset))) != 0;
155
}
156

157
static int omap_get_gpio_dataout(struct gpio_bank *bank, int offset)
158
{
159
	void __iomem *reg = bank->base + bank->regs->dataout;
160

161
	return (readl_relaxed(reg) & (BIT(offset))) != 0;
162 163
}

164
static inline void omap_gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
165
{
166
	int l = readl_relaxed(base + reg);
167

168
	if (set)
169 170 171 172
		l |= mask;
	else
		l &= ~mask;

173
	writel_relaxed(l, base + reg);
174
}
175

176
static inline void omap_gpio_dbck_enable(struct gpio_bank *bank)
177 178
{
	if (bank->dbck_enable_mask && !bank->dbck_enabled) {
179
		clk_enable(bank->dbck);
180
		bank->dbck_enabled = true;
181

182
		writel_relaxed(bank->dbck_enable_mask,
183
			     bank->base + bank->regs->debounce_en);
184 185 186
	}
}

187
static inline void omap_gpio_dbck_disable(struct gpio_bank *bank)
188 189
{
	if (bank->dbck_enable_mask && bank->dbck_enabled) {
190 191 192 193 194
		/*
		 * Disable debounce before cutting it's clock. If debounce is
		 * enabled but the clock is not, GPIO module seems to be unable
		 * to detect events and generate interrupts at least on OMAP3.
		 */
195
		writel_relaxed(0, bank->base + bank->regs->debounce_en);
196

197
		clk_disable(bank->dbck);
198 199 200 201
		bank->dbck_enabled = false;
	}
}

202
/**
203
 * omap2_set_gpio_debounce - low level gpio debounce time
204
 * @bank: the gpio bank we're acting upon
205
 * @offset: the gpio number on this @bank
206 207
 * @debounce: debounce time to use
 *
208 209 210
 * OMAP's debounce time is in 31us steps
 *   <debounce time> = (GPIO_DEBOUNCINGTIME[7:0].DEBOUNCETIME + 1) x 31
 * so we need to convert and round up to the closest unit.
211 212
 *
 * Return: 0 on success, negative error otherwise.
213
 */
214 215
static int omap2_set_gpio_debounce(struct gpio_bank *bank, unsigned offset,
				   unsigned debounce)
216
{
217
	void __iomem		*reg;
218 219
	u32			val;
	u32			l;
220
	bool			enable = !!debounce;
221

222
	if (!bank->dbck_flag)
223
		return -ENOTSUPP;
224

225 226
	if (enable) {
		debounce = DIV_ROUND_UP(debounce, 31) - 1;
227 228
		if ((debounce & OMAP4_GPIO_DEBOUNCINGTIME_MASK) != debounce)
			return -EINVAL;
229
	}
230

231
	l = BIT(offset);
232

233
	clk_enable(bank->dbck);
234
	reg = bank->base + bank->regs->debounce;
235
	writel_relaxed(debounce, reg);
236

237
	reg = bank->base + bank->regs->debounce_en;
238
	val = readl_relaxed(reg);
239

240
	if (enable)
241
		val |= l;
242
	else
243
		val &= ~l;
244
	bank->dbck_enable_mask = val;
245

246
	writel_relaxed(val, reg);
247
	clk_disable(bank->dbck);
248 249 250 251 252 253 254 255
	/*
	 * Enable debounce clock per module.
	 * This call is mandatory because in omap_gpio_request() when
	 * *_runtime_get_sync() is called,  _gpio_dbck_enable() within
	 * runtime callbck fails to turn on dbck because dbck_enable_mask
	 * used within _gpio_dbck_enable() is still not initialized at
	 * that point. Therefore we have to enable dbck here.
	 */
256
	omap_gpio_dbck_enable(bank);
257 258 259 260
	if (bank->dbck_enable_mask) {
		bank->context.debounce = debounce;
		bank->context.debounce_en = val;
	}
261 262

	return 0;
263 264
}

265
/**
266
 * omap_clear_gpio_debounce - clear debounce settings for a gpio
267
 * @bank: the gpio bank we're acting upon
268
 * @offset: the gpio number on this @bank
269 270 271 272 273 274
 *
 * If a gpio is using debounce, then clear the debounce enable bit and if
 * this is the only gpio in this bank using debounce, then clear the debounce
 * time too. The debounce clock will also be disabled when calling this function
 * if this is the only gpio in the bank using debounce.
 */
275
static void omap_clear_gpio_debounce(struct gpio_bank *bank, unsigned offset)
276
{
277
	u32 gpio_bit = BIT(offset);
278 279 280 281 282 283 284 285 286

	if (!bank->dbck_flag)
		return;

	if (!(bank->dbck_enable_mask & gpio_bit))
		return;

	bank->dbck_enable_mask &= ~gpio_bit;
	bank->context.debounce_en &= ~gpio_bit;
287
        writel_relaxed(bank->context.debounce_en,
288 289 290 291
		     bank->base + bank->regs->debounce_en);

	if (!bank->dbck_enable_mask) {
		bank->context.debounce = 0;
292
		writel_relaxed(bank->context.debounce, bank->base +
293
			     bank->regs->debounce);
294
		clk_disable(bank->dbck);
295 296 297 298
		bank->dbck_enabled = false;
	}
}

299
static inline void omap_set_gpio_trigger(struct gpio_bank *bank, int gpio,
300
						unsigned trigger)
301
{
302
	void __iomem *base = bank->base;
303
	u32 gpio_bit = BIT(gpio);
304

305 306 307 308 309 310 311 312
	omap_gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
		      trigger & IRQ_TYPE_LEVEL_LOW);
	omap_gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
		      trigger & IRQ_TYPE_LEVEL_HIGH);
	omap_gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
		      trigger & IRQ_TYPE_EDGE_RISING);
	omap_gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
		      trigger & IRQ_TYPE_EDGE_FALLING);
313

314
	bank->context.leveldetect0 =
315
			readl_relaxed(bank->base + bank->regs->leveldetect0);
316
	bank->context.leveldetect1 =
317
			readl_relaxed(bank->base + bank->regs->leveldetect1);
318
	bank->context.risingdetect =
319
			readl_relaxed(bank->base + bank->regs->risingdetect);
320
	bank->context.fallingdetect =
321
			readl_relaxed(bank->base + bank->regs->fallingdetect);
322 323

	if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
324
		omap_gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);
325
		bank->context.wake_en =
326
			readl_relaxed(bank->base + bank->regs->wkup_en);
327
	}
328

329
	/* This part needs to be executed always for OMAP{34xx, 44xx} */
330 331 332 333 334 335 336
	if (!bank->regs->irqctrl) {
		/* On omap24xx proceed only when valid GPIO bit is set */
		if (bank->non_wakeup_gpios) {
			if (!(bank->non_wakeup_gpios & gpio_bit))
				goto exit;
		}

337 338 339 340 341 342 343
		/*
		 * Log the edge gpio and manually trigger the IRQ
		 * after resume if the input level changes
		 * to avoid irq lost during PER RET/OFF mode
		 * Applies for omap2 non-wakeup gpio and all omap3 gpios
		 */
		if (trigger & IRQ_TYPE_EDGE_BOTH)
344 345 346 347
			bank->enabled_non_wakeup_gpios |= gpio_bit;
		else
			bank->enabled_non_wakeup_gpios &= ~gpio_bit;
	}
348

349
exit:
350
	bank->level_mask =
351 352
		readl_relaxed(bank->base + bank->regs->leveldetect0) |
		readl_relaxed(bank->base + bank->regs->leveldetect1);
353 354
}

355
#ifdef CONFIG_ARCH_OMAP1
356 357 358 359
/*
 * This only applies to chips that can't do both rising and falling edge
 * detection at once.  For all other chips, this function is a noop.
 */
360
static void omap_toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
361 362 363 364
{
	void __iomem *reg = bank->base;
	u32 l = 0;

365
	if (!bank->regs->irqctrl)
366
		return;
367 368

	reg += bank->regs->irqctrl;
369

370
	l = readl_relaxed(reg);
371
	if ((l >> gpio) & 1)
372
		l &= ~(BIT(gpio));
373
	else
374
		l |= BIT(gpio);
375

376
	writel_relaxed(l, reg);
377
}
378
#else
379
static void omap_toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
380
#endif
381

382 383
static int omap_set_gpio_triggering(struct gpio_bank *bank, int gpio,
				    unsigned trigger)
384 385
{
	void __iomem *reg = bank->base;
386
	void __iomem *base = bank->base;
387
	u32 l = 0;
388

389
	if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
390
		omap_set_gpio_trigger(bank, gpio, trigger);
391 392 393
	} else if (bank->regs->irqctrl) {
		reg += bank->regs->irqctrl;

394
		l = readl_relaxed(reg);
395
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
396
			bank->toggle_mask |= BIT(gpio);
397
		if (trigger & IRQ_TYPE_EDGE_RISING)
398
			l |= BIT(gpio);
399
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
400
			l &= ~(BIT(gpio));
401
		else
402 403
			return -EINVAL;

404
		writel_relaxed(l, reg);
405
	} else if (bank->regs->edgectrl1) {
406
		if (gpio & 0x08)
407
			reg += bank->regs->edgectrl2;
408
		else
409 410
			reg += bank->regs->edgectrl1;

411
		gpio &= 0x07;
412
		l = readl_relaxed(reg);
413
		l &= ~(3 << (gpio << 1));
414
		if (trigger & IRQ_TYPE_EDGE_RISING)
415
			l |= 2 << (gpio << 1);
416
		if (trigger & IRQ_TYPE_EDGE_FALLING)
417
			l |= BIT(gpio << 1);
418 419

		/* Enable wake-up during idle for dynamic tick */
420
		omap_gpio_rmw(base, bank->regs->wkup_en, BIT(gpio), trigger);
421
		bank->context.wake_en =
422 423
			readl_relaxed(bank->base + bank->regs->wkup_en);
		writel_relaxed(l, reg);
424
	}
425
	return 0;
426 427
}

428
static void omap_enable_gpio_module(struct gpio_bank *bank, unsigned offset)
429 430 431 432 433
{
	if (bank->regs->pinctrl) {
		void __iomem *reg = bank->base + bank->regs->pinctrl;

		/* Claim the pin for MPU */
434
		writel_relaxed(readl_relaxed(reg) | (BIT(offset)), reg);
435 436 437 438 439 440
	}

	if (bank->regs->ctrl && !BANK_USED(bank)) {
		void __iomem *reg = bank->base + bank->regs->ctrl;
		u32 ctrl;

441
		ctrl = readl_relaxed(reg);
442 443
		/* Module is enabled, clocks are not gated */
		ctrl &= ~GPIO_MOD_CTRL_BIT;
444
		writel_relaxed(ctrl, reg);
445 446 447 448
		bank->context.ctrl = ctrl;
	}
}

449
static void omap_disable_gpio_module(struct gpio_bank *bank, unsigned offset)
450 451 452 453 454 455 456
{
	void __iomem *base = bank->base;

	if (bank->regs->wkup_en &&
	    !LINE_USED(bank->mod_usage, offset) &&
	    !LINE_USED(bank->irq_usage, offset)) {
		/* Disable wake-up during idle for dynamic tick */
457
		omap_gpio_rmw(base, bank->regs->wkup_en, BIT(offset), 0);
458
		bank->context.wake_en =
459
			readl_relaxed(bank->base + bank->regs->wkup_en);
460 461 462 463 464 465
	}

	if (bank->regs->ctrl && !BANK_USED(bank)) {
		void __iomem *reg = bank->base + bank->regs->ctrl;
		u32 ctrl;

466
		ctrl = readl_relaxed(reg);
467 468
		/* Module is disabled, clocks are gated */
		ctrl |= GPIO_MOD_CTRL_BIT;
469
		writel_relaxed(ctrl, reg);
470 471 472 473
		bank->context.ctrl = ctrl;
	}
}

474
static int omap_gpio_is_input(struct gpio_bank *bank, unsigned offset)
475 476 477
{
	void __iomem *reg = bank->base + bank->regs->direction;

478
	return readl_relaxed(reg) & BIT(offset);
479 480
}

481
static void omap_gpio_init_irq(struct gpio_bank *bank, unsigned offset)
482 483 484 485 486
{
	if (!LINE_USED(bank->mod_usage, offset)) {
		omap_enable_gpio_module(bank, offset);
		omap_set_gpio_direction(bank, offset, 1);
	}
487
	bank->irq_usage |= BIT(offset);
488 489
}

490
static int omap_gpio_irq_type(struct irq_data *d, unsigned type)
491
{
492
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
493
	int retval;
D
David Brownell 已提交
494
	unsigned long flags;
495
	unsigned offset = d->hwirq;
496

497
	if (type & ~IRQ_TYPE_SENSE_MASK)
498
		return -EINVAL;
499

500 501
	if (!bank->regs->leveldetect0 &&
		(type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
502 503
		return -EINVAL;

504
	raw_spin_lock_irqsave(&bank->lock, flags);
505
	retval = omap_set_gpio_triggering(bank, offset, type);
506
	if (retval) {
507
		raw_spin_unlock_irqrestore(&bank->lock, flags);
508
		goto error;
509
	}
510
	omap_gpio_init_irq(bank, offset);
511
	if (!omap_gpio_is_input(bank, offset)) {
512
		raw_spin_unlock_irqrestore(&bank->lock, flags);
513 514
		retval = -EINVAL;
		goto error;
515
	}
516
	raw_spin_unlock_irqrestore(&bank->lock, flags);
517 518

	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
519
		irq_set_handler_locked(d, handle_level_irq);
520
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
521
		irq_set_handler_locked(d, handle_edge_irq);
522

523 524 525
	return 0;

error:
526
	return retval;
527 528
}

529
static void omap_clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
530
{
531
	void __iomem *reg = bank->base;
532

533
	reg += bank->regs->irqstatus;
534
	writel_relaxed(gpio_mask, reg);
535 536

	/* Workaround for clearing DSP GPIO interrupts to allow retention */
537 538
	if (bank->regs->irqstatus2) {
		reg = bank->base + bank->regs->irqstatus2;
539
		writel_relaxed(gpio_mask, reg);
540
	}
541 542

	/* Flush posted write for the irq status to avoid spurious interrupts */
543
	readl_relaxed(reg);
544 545
}

546 547
static inline void omap_clear_gpio_irqstatus(struct gpio_bank *bank,
					     unsigned offset)
548
{
549
	omap_clear_gpio_irqbank(bank, BIT(offset));
550 551
}

552
static u32 omap_get_gpio_irqbank_mask(struct gpio_bank *bank)
553 554
{
	void __iomem *reg = bank->base;
555
	u32 l;
556
	u32 mask = (BIT(bank->width)) - 1;
557

558
	reg += bank->regs->irqenable;
559
	l = readl_relaxed(reg);
560
	if (bank->regs->irqenable_inv)
561 562 563
		l = ~l;
	l &= mask;
	return l;
564 565
}

566
static void omap_enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
567
{
568
	void __iomem *reg = bank->base;
569 570
	u32 l;

571 572 573
	if (bank->regs->set_irqenable) {
		reg += bank->regs->set_irqenable;
		l = gpio_mask;
574
		bank->context.irqenable1 |= gpio_mask;
575 576
	} else {
		reg += bank->regs->irqenable;
577
		l = readl_relaxed(reg);
578 579
		if (bank->regs->irqenable_inv)
			l &= ~gpio_mask;
580 581
		else
			l |= gpio_mask;
582
		bank->context.irqenable1 = l;
583 584
	}

585
	writel_relaxed(l, reg);
586 587
}

588
static void omap_disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
589 590 591 592 593 594
{
	void __iomem *reg = bank->base;
	u32 l;

	if (bank->regs->clr_irqenable) {
		reg += bank->regs->clr_irqenable;
595
		l = gpio_mask;
596
		bank->context.irqenable1 &= ~gpio_mask;
597 598
	} else {
		reg += bank->regs->irqenable;
599
		l = readl_relaxed(reg);
600
		if (bank->regs->irqenable_inv)
601
			l |= gpio_mask;
602
		else
603
			l &= ~gpio_mask;
604
		bank->context.irqenable1 = l;
605
	}
606

607
	writel_relaxed(l, reg);
608 609
}

610 611
static inline void omap_set_gpio_irqenable(struct gpio_bank *bank,
					   unsigned offset, int enable)
612
{
613
	if (enable)
614
		omap_enable_gpio_irqbank(bank, BIT(offset));
615
	else
616
		omap_disable_gpio_irqbank(bank, BIT(offset));
617 618
}

619
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
620
static int omap_gpio_wake_enable(struct irq_data *d, unsigned int enable)
621
{
622
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
623

624
	return irq_set_irq_wake(bank->irq, enable);
625 626
}

627
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
628
{
629
	struct gpio_bank *bank = gpiochip_get_data(chip);
D
David Brownell 已提交
630
	unsigned long flags;
D
David Brownell 已提交
631

632 633 634 635
	/*
	 * If this is the first gpio_request for the bank,
	 * enable the bank module.
	 */
636
	if (!BANK_USED(bank))
637
		pm_runtime_get_sync(chip->parent);
638

639
	raw_spin_lock_irqsave(&bank->lock, flags);
640
	omap_enable_gpio_module(bank, offset);
641
	bank->mod_usage |= BIT(offset);
642
	raw_spin_unlock_irqrestore(&bank->lock, flags);
643 644 645 646

	return 0;
}

647
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
648
{
649
	struct gpio_bank *bank = gpiochip_get_data(chip);
D
David Brownell 已提交
650
	unsigned long flags;
651

652
	raw_spin_lock_irqsave(&bank->lock, flags);
653
	bank->mod_usage &= ~(BIT(offset));
654 655 656 657
	if (!LINE_USED(bank->irq_usage, offset)) {
		omap_set_gpio_direction(bank, offset, 1);
		omap_clear_gpio_debounce(bank, offset);
	}
658
	omap_disable_gpio_module(bank, offset);
659
	raw_spin_unlock_irqrestore(&bank->lock, flags);
660 661 662 663 664

	/*
	 * If this is the last gpio to be freed in the bank,
	 * disable the bank module.
	 */
665
	if (!BANK_USED(bank))
666
		pm_runtime_put(chip->parent);
667 668 669 670 671 672 673 674 675 676 677
}

/*
 * We need to unmask the GPIO bank interrupt as soon as possible to
 * avoid missing GPIO interrupts for other lines in the bank.
 * Then we need to mask-read-clear-unmask the triggered GPIO lines
 * in the bank to avoid missing nested interrupts for a GPIO line.
 * If we wait to unmask individual GPIO lines in the bank after the
 * line's interrupt handler has been run, we may miss some nested
 * interrupts.
 */
678
static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
679
{
680
	void __iomem *isr_reg = NULL;
681
	u32 isr;
682
	unsigned int bit;
683 684
	struct gpio_bank *bank = gpiobank;
	unsigned long wa_lock_flags;
685
	unsigned long lock_flags;
686

687
	isr_reg = bank->base + bank->regs->irqstatus;
688 689 690
	if (WARN_ON(!isr_reg))
		goto exit;

691
	pm_runtime_get_sync(bank->chip.parent);
692

693
	while (1) {
694
		u32 isr_saved, level_mask = 0;
695
		u32 enabled;
696

697 698
		raw_spin_lock_irqsave(&bank->lock, lock_flags);

699
		enabled = omap_get_gpio_irqbank_mask(bank);
700
		isr_saved = isr = readl_relaxed(isr_reg) & enabled;
701

702
		if (bank->level_mask)
703
			level_mask = bank->level_mask & enabled;
704 705 706 707

		/* clear edge sensitive interrupts before handler(s) are
		called so that we don't miss any interrupt occurred while
		executing them */
708 709 710
		omap_disable_gpio_irqbank(bank, isr_saved & ~level_mask);
		omap_clear_gpio_irqbank(bank, isr_saved & ~level_mask);
		omap_enable_gpio_irqbank(bank, isr_saved & ~level_mask);
711

712 713
		raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

714 715 716
		if (!isr)
			break;

717 718
		while (isr) {
			bit = __ffs(isr);
719
			isr &= ~(BIT(bit));
720

721
			raw_spin_lock_irqsave(&bank->lock, lock_flags);
722 723 724 725 726 727 728
			/*
			 * Some chips can't respond to both rising and falling
			 * at the same time.  If this irq was requested with
			 * both flags, we need to flip the ICR data for the IRQ
			 * to respond to the IRQ for the opposite direction.
			 * This will be indicated in the bank toggle_mask.
			 */
729
			if (bank->toggle_mask & (BIT(bit)))
730
				omap_toggle_gpio_edge_triggering(bank, bit);
731

732 733
			raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

734 735
			raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);

736 737
			generic_handle_irq(irq_find_mapping(bank->chip.irqdomain,
							    bit));
738 739 740

			raw_spin_unlock_irqrestore(&bank->wa_lock,
						   wa_lock_flags);
741
		}
742
	}
743
exit:
744
	pm_runtime_put(bank->chip.parent);
745
	return IRQ_HANDLED;
746 747
}

748 749 750 751
static unsigned int omap_gpio_irq_startup(struct irq_data *d)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
	unsigned long flags;
752
	unsigned offset = d->hwirq;
753

754
	raw_spin_lock_irqsave(&bank->lock, flags);
755 756 757 758 759 760 761 762

	if (!LINE_USED(bank->mod_usage, offset))
		omap_set_gpio_direction(bank, offset, 1);
	else if (!omap_gpio_is_input(bank, offset))
		goto err;
	omap_enable_gpio_module(bank, offset);
	bank->irq_usage |= BIT(offset);

763
	raw_spin_unlock_irqrestore(&bank->lock, flags);
764 765 766
	omap_gpio_unmask_irq(d);

	return 0;
767
err:
768
	raw_spin_unlock_irqrestore(&bank->lock, flags);
769
	return -EINVAL;
770 771
}

772
static void omap_gpio_irq_shutdown(struct irq_data *d)
773
{
774
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
775
	unsigned long flags;
776
	unsigned offset = d->hwirq;
777

778
	raw_spin_lock_irqsave(&bank->lock, flags);
779
	bank->irq_usage &= ~(BIT(offset));
780 781 782 783 784
	omap_set_gpio_irqenable(bank, offset, 0);
	omap_clear_gpio_irqstatus(bank, offset);
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
	if (!LINE_USED(bank->mod_usage, offset))
		omap_clear_gpio_debounce(bank, offset);
785
	omap_disable_gpio_module(bank, offset);
786
	raw_spin_unlock_irqrestore(&bank->lock, flags);
787 788 789 790 791 792 793
}

static void omap_gpio_irq_bus_lock(struct irq_data *data)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(data);

	if (!BANK_USED(bank))
794
		pm_runtime_get_sync(bank->chip.parent);
795 796 797 798 799
}

static void gpio_irq_bus_sync_unlock(struct irq_data *data)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(data);
800 801 802 803 804 805

	/*
	 * If this is the last IRQ to be freed in the bank,
	 * disable the bank module.
	 */
	if (!BANK_USED(bank))
806
		pm_runtime_put(bank->chip.parent);
807 808
}

809
static void omap_gpio_ack_irq(struct irq_data *d)
810
{
811
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
812
	unsigned offset = d->hwirq;
813

814
	omap_clear_gpio_irqstatus(bank, offset);
815 816
}

817
static void omap_gpio_mask_irq(struct irq_data *d)
818
{
819
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
820
	unsigned offset = d->hwirq;
821
	unsigned long flags;
822

823
	raw_spin_lock_irqsave(&bank->lock, flags);
824 825
	omap_set_gpio_irqenable(bank, offset, 0);
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
826
	raw_spin_unlock_irqrestore(&bank->lock, flags);
827 828
}

829
static void omap_gpio_unmask_irq(struct irq_data *d)
830
{
831
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
832
	unsigned offset = d->hwirq;
833
	u32 trigger = irqd_get_trigger_type(d);
834
	unsigned long flags;
835

836
	raw_spin_lock_irqsave(&bank->lock, flags);
837
	if (trigger)
838
		omap_set_gpio_triggering(bank, offset, trigger);
839 840 841

	/* For level-triggered GPIOs, the clearing must be done after
	 * the HW source is cleared, thus after the handler has run */
842 843 844
	if (bank->level_mask & BIT(offset)) {
		omap_set_gpio_irqenable(bank, offset, 0);
		omap_clear_gpio_irqstatus(bank, offset);
845
	}
846

847
	omap_set_gpio_irqenable(bank, offset, 1);
848
	raw_spin_unlock_irqrestore(&bank->lock, flags);
849 850
}

851 852
/*---------------------------------------------------------------------*/

853
static int omap_mpuio_suspend_noirq(struct device *dev)
D
David Brownell 已提交
854
{
855
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
856
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
857 858
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
859
	unsigned long		flags;
D
David Brownell 已提交
860

861
	raw_spin_lock_irqsave(&bank->lock, flags);
862
	writel_relaxed(0xffff & ~bank->context.wake_en, mask_reg);
863
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
864 865 866 867

	return 0;
}

868
static int omap_mpuio_resume_noirq(struct device *dev)
D
David Brownell 已提交
869
{
870
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
871
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
872 873
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
874
	unsigned long		flags;
D
David Brownell 已提交
875

876
	raw_spin_lock_irqsave(&bank->lock, flags);
877
	writel_relaxed(bank->context.wake_en, mask_reg);
878
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
879 880 881 882

	return 0;
}

883
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
884 885 886 887
	.suspend_noirq = omap_mpuio_suspend_noirq,
	.resume_noirq = omap_mpuio_resume_noirq,
};

888
/* use platform_driver for this. */
D
David Brownell 已提交
889 890 891
static struct platform_driver omap_mpuio_driver = {
	.driver		= {
		.name	= "mpuio",
892
		.pm	= &omap_mpuio_dev_pm_ops,
D
David Brownell 已提交
893 894 895 896 897 898 899 900 901 902 903 904
	},
};

static struct platform_device omap_mpuio_device = {
	.name		= "mpuio",
	.id		= -1,
	.dev = {
		.driver = &omap_mpuio_driver.driver,
	}
	/* could list the /proc/iomem resources */
};

905
static inline void omap_mpuio_init(struct gpio_bank *bank)
D
David Brownell 已提交
906
{
907
	platform_set_drvdata(&omap_mpuio_device, bank);
908

D
David Brownell 已提交
909 910 911 912
	if (platform_driver_register(&omap_mpuio_driver) == 0)
		(void) platform_device_register(&omap_mpuio_device);
}

913
/*---------------------------------------------------------------------*/
914

915
static int omap_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
916 917 918 919 920 921
{
	struct gpio_bank *bank;
	unsigned long flags;
	void __iomem *reg;
	int dir;

922
	bank = gpiochip_get_data(chip);
923
	reg = bank->base + bank->regs->direction;
924
	raw_spin_lock_irqsave(&bank->lock, flags);
925
	dir = !!(readl_relaxed(reg) & BIT(offset));
926
	raw_spin_unlock_irqrestore(&bank->lock, flags);
927 928 929
	return dir;
}

930
static int omap_gpio_input(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
931 932 933 934
{
	struct gpio_bank *bank;
	unsigned long flags;

935
	bank = gpiochip_get_data(chip);
936
	raw_spin_lock_irqsave(&bank->lock, flags);
937
	omap_set_gpio_direction(bank, offset, 1);
938
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
939 940 941
	return 0;
}

942
static int omap_gpio_get(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
943
{
944 945
	struct gpio_bank *bank;

946
	bank = gpiochip_get_data(chip);
947

948
	if (omap_gpio_is_input(bank, offset))
949
		return omap_get_gpio_datain(bank, offset);
950
	else
951
		return omap_get_gpio_dataout(bank, offset);
D
David Brownell 已提交
952 953
}

954
static int omap_gpio_output(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
955 956 957 958
{
	struct gpio_bank *bank;
	unsigned long flags;

959
	bank = gpiochip_get_data(chip);
960
	raw_spin_lock_irqsave(&bank->lock, flags);
961
	bank->set_dataout(bank, offset, value);
962
	omap_set_gpio_direction(bank, offset, 0);
963
	raw_spin_unlock_irqrestore(&bank->lock, flags);
964
	return 0;
D
David Brownell 已提交
965 966
}

967 968
static int omap_gpio_debounce(struct gpio_chip *chip, unsigned offset,
			      unsigned debounce)
969 970 971
{
	struct gpio_bank *bank;
	unsigned long flags;
972
	int ret;
973

974
	bank = gpiochip_get_data(chip);
975

976
	raw_spin_lock_irqsave(&bank->lock, flags);
977
	ret = omap2_set_gpio_debounce(bank, offset, debounce);
978
	raw_spin_unlock_irqrestore(&bank->lock, flags);
979

980 981 982 983 984 985
	if (ret)
		dev_info(chip->parent,
			 "Could not set line %u debounce to %u microseconds (%d)",
			 offset, debounce, ret);

	return ret;
986 987
}

988 989 990 991 992 993 994 995 996 997 998 999
static int omap_gpio_set_config(struct gpio_chip *chip, unsigned offset,
				unsigned long config)
{
	u32 debounce;

	if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
		return -ENOTSUPP;

	debounce = pinconf_to_config_argument(config);
	return omap_gpio_debounce(chip, offset, debounce);
}

1000
static void omap_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
1001 1002 1003 1004
{
	struct gpio_bank *bank;
	unsigned long flags;

1005
	bank = gpiochip_get_data(chip);
1006
	raw_spin_lock_irqsave(&bank->lock, flags);
1007
	bank->set_dataout(bank, offset, value);
1008
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
1009 1010 1011 1012
}

/*---------------------------------------------------------------------*/

1013
static void __init omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
1014
{
1015
	static bool called;
T
Tony Lindgren 已提交
1016 1017
	u32 rev;

1018
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
1019 1020
		return;

1021
	rev = readw_relaxed(bank->base + bank->regs->revision);
1022
	pr_info("OMAP GPIO hardware version %d.%d\n",
T
Tony Lindgren 已提交
1023
		(rev >> 4) & 0x0f, rev & 0x0f);
1024 1025

	called = true;
T
Tony Lindgren 已提交
1026 1027
}

1028
static void omap_gpio_mod_init(struct gpio_bank *bank)
1029
{
1030 1031
	void __iomem *base = bank->base;
	u32 l = 0xffffffff;
1032

1033 1034 1035
	if (bank->width == 16)
		l = 0xffff;

1036
	if (bank->is_mpuio) {
1037
		writel_relaxed(l, bank->base + bank->regs->irqenable);
1038
		return;
1039
	}
1040

1041 1042 1043 1044
	omap_gpio_rmw(base, bank->regs->irqenable, l,
		      bank->regs->irqenable_inv);
	omap_gpio_rmw(base, bank->regs->irqstatus, l,
		      !bank->regs->irqenable_inv);
1045
	if (bank->regs->debounce_en)
1046
		writel_relaxed(0, base + bank->regs->debounce_en);
1047

1048
	/* Save OE default value (0xffffffff) in the context */
1049
	bank->context.oe = readl_relaxed(bank->base + bank->regs->direction);
1050 1051
	 /* Initialize interface clk ungated, module enabled */
	if (bank->regs->ctrl)
1052
		writel_relaxed(0, base + bank->regs->ctrl);
1053 1054
}

N
Nishanth Menon 已提交
1055
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
1056 1057
{
	static int gpio;
1058
	int irq_base = 0;
1059
	int ret;
1060 1061 1062 1063 1064 1065 1066

	/*
	 * REVISIT eventually switch from OMAP-specific gpio structs
	 * over to the generic ones
	 */
	bank->chip.request = omap_gpio_request;
	bank->chip.free = omap_gpio_free;
1067 1068 1069 1070
	bank->chip.get_direction = omap_gpio_get_direction;
	bank->chip.direction_input = omap_gpio_input;
	bank->chip.get = omap_gpio_get;
	bank->chip.direction_output = omap_gpio_output;
1071
	bank->chip.set_config = omap_gpio_set_config;
1072
	bank->chip.set = omap_gpio_set;
1073
	if (bank->is_mpuio) {
1074
		bank->chip.label = "mpuio";
1075
		if (bank->regs->wkup_en)
1076
			bank->chip.parent = &omap_mpuio_device.dev;
1077 1078 1079 1080 1081
		bank->chip.base = OMAP_MPUIO(0);
	} else {
		bank->chip.label = "gpio";
		bank->chip.base = gpio;
	}
1082
	bank->chip.ngpio = bank->width;
1083

1084
	ret = gpiochip_add_data(&bank->chip, bank);
1085
	if (ret) {
1086 1087
		dev_err(bank->chip.parent,
			"Could not register gpio chip %d\n", ret);
1088 1089
		return ret;
	}
1090

1091 1092 1093
	if (!bank->is_mpuio)
		gpio += bank->width;

1094 1095 1096 1097 1098
#ifdef CONFIG_ARCH_OMAP1
	/*
	 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
	 * irq_alloc_descs() since a base IRQ offset will no longer be needed.
	 */
1099 1100
	irq_base = devm_irq_alloc_descs(bank->chip.parent,
					-1, 0, bank->width, 0);
1101
	if (irq_base < 0) {
1102
		dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
1103 1104 1105 1106
		return -ENODEV;
	}
#endif

1107 1108 1109 1110 1111 1112 1113
	/* MPUIO is a bit different, reading IRQ status clears it */
	if (bank->is_mpuio) {
		irqc->irq_ack = dummy_irq_chip.irq_ack;
		if (!bank->regs->wkup_en)
			irqc->irq_set_wake = NULL;
	}

N
Nishanth Menon 已提交
1114
	ret = gpiochip_irqchip_add(&bank->chip, irqc,
1115
				   irq_base, handle_bad_irq,
1116 1117 1118
				   IRQ_TYPE_NONE);

	if (ret) {
1119 1120
		dev_err(bank->chip.parent,
			"Couldn't add irqchip to gpiochip %d\n", ret);
1121
		gpiochip_remove(&bank->chip);
1122 1123 1124
		return -ENODEV;
	}

1125
	gpiochip_set_chained_irqchip(&bank->chip, irqc, bank->irq, NULL);
1126

1127 1128 1129
	ret = devm_request_irq(bank->chip.parent, bank->irq,
			       omap_gpio_irq_handler,
			       0, dev_name(bank->chip.parent), bank);
1130 1131 1132 1133
	if (ret)
		gpiochip_remove(&bank->chip);

	return ret;
1134 1135
}

1136 1137
static const struct of_device_id omap_gpio_match[];

B
Bill Pemberton 已提交
1138
static int omap_gpio_probe(struct platform_device *pdev)
1139
{
1140
	struct device *dev = &pdev->dev;
1141 1142
	struct device_node *node = dev->of_node;
	const struct of_device_id *match;
1143
	const struct omap_gpio_platform_data *pdata;
1144
	struct resource *res;
1145
	struct gpio_bank *bank;
N
Nishanth Menon 已提交
1146
	struct irq_chip *irqc;
1147
	int ret;
1148

1149 1150
	match = of_match_device(of_match_ptr(omap_gpio_match), dev);

J
Jingoo Han 已提交
1151
	pdata = match ? match->data : dev_get_platdata(dev);
1152
	if (!pdata)
1153
		return -EINVAL;
1154

1155
	bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
1156
	if (!bank) {
1157
		dev_err(dev, "Memory alloc failed\n");
1158
		return -ENOMEM;
1159
	}
1160

N
Nishanth Menon 已提交
1161 1162 1163 1164
	irqc = devm_kzalloc(dev, sizeof(*irqc), GFP_KERNEL);
	if (!irqc)
		return -ENOMEM;

1165
	irqc->irq_startup = omap_gpio_irq_startup,
N
Nishanth Menon 已提交
1166 1167 1168 1169 1170 1171
	irqc->irq_shutdown = omap_gpio_irq_shutdown,
	irqc->irq_ack = omap_gpio_ack_irq,
	irqc->irq_mask = omap_gpio_mask_irq,
	irqc->irq_unmask = omap_gpio_unmask_irq,
	irqc->irq_set_type = omap_gpio_irq_type,
	irqc->irq_set_wake = omap_gpio_wake_enable,
1172 1173
	irqc->irq_bus_lock = omap_gpio_irq_bus_lock,
	irqc->irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
N
Nishanth Menon 已提交
1174
	irqc->name = dev_name(&pdev->dev);
1175
	irqc->flags = IRQCHIP_MASK_ON_SUSPEND;
N
Nishanth Menon 已提交
1176

1177 1178 1179 1180 1181 1182 1183 1184
	bank->irq = platform_get_irq(pdev, 0);
	if (bank->irq <= 0) {
		if (!bank->irq)
			bank->irq = -ENXIO;
		if (bank->irq != -EPROBE_DEFER)
			dev_err(dev,
				"can't get irq resource ret=%d\n", bank->irq);
		return bank->irq;
1185
	}
1186

1187
	bank->chip.parent = dev;
1188
	bank->chip.owner = THIS_MODULE;
1189
	bank->dbck_flag = pdata->dbck_flag;
1190
	bank->stride = pdata->bank_stride;
1191
	bank->width = pdata->bank_width;
1192
	bank->is_mpuio = pdata->is_mpuio;
1193
	bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
1194
	bank->regs = pdata->regs;
1195 1196 1197
#ifdef CONFIG_OF_GPIO
	bank->chip.of_node = of_node_get(node);
#endif
1198 1199 1200 1201 1202
	if (node) {
		if (!of_property_read_bool(node, "ti,gpio-always-on"))
			bank->loses_context = true;
	} else {
		bank->loses_context = pdata->loses_context;
1203 1204 1205 1206

		if (bank->loses_context)
			bank->get_context_loss_count =
				pdata->get_context_loss_count;
1207 1208
	}

1209
	if (bank->regs->set_dataout && bank->regs->clr_dataout)
1210
		bank->set_dataout = omap_set_gpio_dataout_reg;
1211
	else
1212
		bank->set_dataout = omap_set_gpio_dataout_mask;
T
Tony Lindgren 已提交
1213

1214
	raw_spin_lock_init(&bank->lock);
1215
	raw_spin_lock_init(&bank->wa_lock);
T
Tony Lindgren 已提交
1216

1217 1218
	/* Static mapping, never released */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1219 1220 1221
	bank->base = devm_ioremap_resource(dev, res);
	if (IS_ERR(bank->base)) {
		return PTR_ERR(bank->base);
1222 1223
	}

1224
	if (bank->dbck_flag) {
1225
		bank->dbck = devm_clk_get(dev, "dbclk");
1226
		if (IS_ERR(bank->dbck)) {
1227
			dev_err(dev,
1228 1229 1230 1231 1232 1233 1234
				"Could not get gpio dbck. Disable debounce\n");
			bank->dbck_flag = false;
		} else {
			clk_prepare(bank->dbck);
		}
	}

1235 1236
	platform_set_drvdata(pdev, bank);

1237 1238 1239
	pm_runtime_enable(dev);
	pm_runtime_irq_safe(dev);
	pm_runtime_get_sync(dev);
1240

1241
	if (bank->is_mpuio)
1242
		omap_mpuio_init(bank);
1243

1244
	omap_gpio_mod_init(bank);
1245

N
Nishanth Menon 已提交
1246
	ret = omap_gpio_chip_init(bank, irqc);
1247
	if (ret) {
1248 1249
		pm_runtime_put_sync(dev);
		pm_runtime_disable(dev);
1250 1251
		if (bank->dbck_flag)
			clk_unprepare(bank->dbck);
1252
		return ret;
1253
	}
1254

1255
	omap_gpio_show_rev(bank);
T
Tony Lindgren 已提交
1256

1257
	pm_runtime_put(dev);
1258

1259
	list_add_tail(&bank->node, &omap_gpio_list);
1260

1261
	return 0;
1262 1263
}

1264 1265 1266 1267 1268 1269
static int omap_gpio_remove(struct platform_device *pdev)
{
	struct gpio_bank *bank = platform_get_drvdata(pdev);

	list_del(&bank->node);
	gpiochip_remove(&bank->chip);
1270
	pm_runtime_disable(&pdev->dev);
1271 1272
	if (bank->dbck_flag)
		clk_unprepare(bank->dbck);
1273 1274 1275 1276

	return 0;
}

1277 1278
#ifdef CONFIG_ARCH_OMAP2PLUS

1279
#if defined(CONFIG_PM)
1280
static void omap_gpio_restore_context(struct gpio_bank *bank);
1281

1282
static int omap_gpio_runtime_suspend(struct device *dev)
1283
{
1284 1285 1286 1287
	struct platform_device *pdev = to_platform_device(dev);
	struct gpio_bank *bank = platform_get_drvdata(pdev);
	u32 l1 = 0, l2 = 0;
	unsigned long flags;
1288
	u32 wake_low, wake_hi;
1289

1290
	raw_spin_lock_irqsave(&bank->lock, flags);
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304

	/*
	 * Only edges can generate a wakeup event to the PRCM.
	 *
	 * Therefore, ensure any wake-up capable GPIOs have
	 * edge-detection enabled before going idle to ensure a wakeup
	 * to the PRCM is generated on a GPIO transition. (c.f. 34xx
	 * NDA TRM 25.5.3.1)
	 *
	 * The normal values will be restored upon ->runtime_resume()
	 * by writing back the values saved in bank->context.
	 */
	wake_low = bank->context.leveldetect0 & bank->context.wake_en;
	if (wake_low)
1305
		writel_relaxed(wake_low | bank->context.fallingdetect,
1306 1307 1308
			     bank->base + bank->regs->fallingdetect);
	wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
	if (wake_hi)
1309
		writel_relaxed(wake_hi | bank->context.risingdetect,
1310 1311
			     bank->base + bank->regs->risingdetect);

1312 1313 1314
	if (!bank->enabled_non_wakeup_gpios)
		goto update_gpio_context_count;

1315 1316
	if (bank->power_mode != OFF_MODE) {
		bank->power_mode = 0;
1317
		goto update_gpio_context_count;
1318 1319 1320 1321 1322 1323
	}
	/*
	 * If going to OFF, remove triggering for all
	 * non-wakeup GPIOs.  Otherwise spurious IRQs will be
	 * generated.  See OMAP2420 Errata item 1.101.
	 */
1324
	bank->saved_datain = readl_relaxed(bank->base +
1325
						bank->regs->datain);
1326 1327
	l1 = bank->context.fallingdetect;
	l2 = bank->context.risingdetect;
1328

1329 1330
	l1 &= ~bank->enabled_non_wakeup_gpios;
	l2 &= ~bank->enabled_non_wakeup_gpios;
1331

1332 1333
	writel_relaxed(l1, bank->base + bank->regs->fallingdetect);
	writel_relaxed(l2, bank->base + bank->regs->risingdetect);
1334

1335
	bank->workaround_enabled = true;
1336

1337
update_gpio_context_count:
1338 1339
	if (bank->get_context_loss_count)
		bank->context_loss_count =
1340
				bank->get_context_loss_count(dev);
1341

1342
	omap_gpio_dbck_disable(bank);
1343
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1344

1345
	return 0;
1346 1347
}

1348 1349
static void omap_gpio_init_context(struct gpio_bank *p);

1350
static int omap_gpio_runtime_resume(struct device *dev)
1351
{
1352 1353 1354 1355
	struct platform_device *pdev = to_platform_device(dev);
	struct gpio_bank *bank = platform_get_drvdata(pdev);
	u32 l = 0, gen, gen0, gen1;
	unsigned long flags;
1356
	int c;
1357

1358
	raw_spin_lock_irqsave(&bank->lock, flags);
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369

	/*
	 * On the first resume during the probe, the context has not
	 * been initialised and so initialise it now. Also initialise
	 * the context loss count.
	 */
	if (bank->loses_context && !bank->context_valid) {
		omap_gpio_init_context(bank);

		if (bank->get_context_loss_count)
			bank->context_loss_count =
1370
				bank->get_context_loss_count(dev);
1371 1372
	}

1373
	omap_gpio_dbck_enable(bank);
1374 1375 1376 1377 1378 1379 1380

	/*
	 * In ->runtime_suspend(), level-triggered, wakeup-enabled
	 * GPIOs were set to edge trigger also in order to be able to
	 * generate a PRCM wakeup.  Here we restore the
	 * pre-runtime_suspend() values for edge triggering.
	 */
1381
	writel_relaxed(bank->context.fallingdetect,
1382
		     bank->base + bank->regs->fallingdetect);
1383
	writel_relaxed(bank->context.risingdetect,
1384 1385
		     bank->base + bank->regs->risingdetect);

1386 1387
	if (bank->loses_context) {
		if (!bank->get_context_loss_count) {
1388 1389
			omap_gpio_restore_context(bank);
		} else {
1390
			c = bank->get_context_loss_count(dev);
1391 1392 1393
			if (c != bank->context_loss_count) {
				omap_gpio_restore_context(bank);
			} else {
1394
				raw_spin_unlock_irqrestore(&bank->lock, flags);
1395 1396
				return 0;
			}
1397
		}
1398
	}
1399

1400
	if (!bank->workaround_enabled) {
1401
		raw_spin_unlock_irqrestore(&bank->lock, flags);
1402 1403 1404
		return 0;
	}

1405
	l = readl_relaxed(bank->base + bank->regs->datain);
1406

1407 1408 1409 1410 1411 1412 1413 1414
	/*
	 * Check if any of the non-wakeup interrupt GPIOs have changed
	 * state.  If so, generate an IRQ by software.  This is
	 * horribly racy, but it's the best we can do to work around
	 * this silicon bug.
	 */
	l ^= bank->saved_datain;
	l &= bank->enabled_non_wakeup_gpios;
1415

1416 1417 1418 1419
	/*
	 * No need to generate IRQs for the rising edge for gpio IRQs
	 * configured with falling edge only; and vice versa.
	 */
1420
	gen0 = l & bank->context.fallingdetect;
1421
	gen0 &= bank->saved_datain;
1422

1423
	gen1 = l & bank->context.risingdetect;
1424
	gen1 &= ~(bank->saved_datain);
1425

1426
	/* FIXME: Consider GPIO IRQs with level detections properly! */
1427 1428
	gen = l & (~(bank->context.fallingdetect) &
					 ~(bank->context.risingdetect));
1429 1430
	/* Consider all GPIO IRQs needed to be updated */
	gen |= gen0 | gen1;
1431

1432 1433
	if (gen) {
		u32 old0, old1;
1434

1435 1436
		old0 = readl_relaxed(bank->base + bank->regs->leveldetect0);
		old1 = readl_relaxed(bank->base + bank->regs->leveldetect1);
1437

1438
		if (!bank->regs->irqstatus_raw0) {
1439
			writel_relaxed(old0 | gen, bank->base +
1440
						bank->regs->leveldetect0);
1441
			writel_relaxed(old1 | gen, bank->base +
1442
						bank->regs->leveldetect1);
1443
		}
1444

1445
		if (bank->regs->irqstatus_raw0) {
1446
			writel_relaxed(old0 | l, bank->base +
1447
						bank->regs->leveldetect0);
1448
			writel_relaxed(old1 | l, bank->base +
1449
						bank->regs->leveldetect1);
1450
		}
1451 1452
		writel_relaxed(old0, bank->base + bank->regs->leveldetect0);
		writel_relaxed(old1, bank->base + bank->regs->leveldetect1);
1453 1454 1455
	}

	bank->workaround_enabled = false;
1456
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1457 1458 1459

	return 0;
}
1460
#endif /* CONFIG_PM */
1461

1462
#if IS_BUILTIN(CONFIG_GPIO_OMAP)
1463 1464 1465 1466 1467
void omap2_gpio_prepare_for_idle(int pwr_mode)
{
	struct gpio_bank *bank;

	list_for_each_entry(bank, &omap_gpio_list, node) {
1468
		if (!BANK_USED(bank) || !bank->loses_context)
1469 1470 1471 1472
			continue;

		bank->power_mode = pwr_mode;

1473
		pm_runtime_put_sync_suspend(bank->chip.parent);
1474 1475 1476 1477 1478 1479 1480 1481
	}
}

void omap2_gpio_resume_after_idle(void)
{
	struct gpio_bank *bank;

	list_for_each_entry(bank, &omap_gpio_list, node) {
1482
		if (!BANK_USED(bank) || !bank->loses_context)
1483 1484
			continue;

1485
		pm_runtime_get_sync(bank->chip.parent);
1486 1487
	}
}
1488
#endif
1489

1490
#if defined(CONFIG_PM)
1491 1492 1493 1494 1495
static void omap_gpio_init_context(struct gpio_bank *p)
{
	struct omap_gpio_reg_offs *regs = p->regs;
	void __iomem *base = p->base;

1496 1497 1498 1499 1500 1501 1502 1503 1504
	p->context.ctrl		= readl_relaxed(base + regs->ctrl);
	p->context.oe		= readl_relaxed(base + regs->direction);
	p->context.wake_en	= readl_relaxed(base + regs->wkup_en);
	p->context.leveldetect0	= readl_relaxed(base + regs->leveldetect0);
	p->context.leveldetect1	= readl_relaxed(base + regs->leveldetect1);
	p->context.risingdetect	= readl_relaxed(base + regs->risingdetect);
	p->context.fallingdetect = readl_relaxed(base + regs->fallingdetect);
	p->context.irqenable1	= readl_relaxed(base + regs->irqenable);
	p->context.irqenable2	= readl_relaxed(base + regs->irqenable2);
1505 1506

	if (regs->set_dataout && p->regs->clr_dataout)
1507
		p->context.dataout = readl_relaxed(base + regs->set_dataout);
1508
	else
1509
		p->context.dataout = readl_relaxed(base + regs->dataout);
1510 1511 1512 1513

	p->context_valid = true;
}

1514
static void omap_gpio_restore_context(struct gpio_bank *bank)
1515
{
1516
	writel_relaxed(bank->context.wake_en,
1517
				bank->base + bank->regs->wkup_en);
1518 1519
	writel_relaxed(bank->context.ctrl, bank->base + bank->regs->ctrl);
	writel_relaxed(bank->context.leveldetect0,
1520
				bank->base + bank->regs->leveldetect0);
1521
	writel_relaxed(bank->context.leveldetect1,
1522
				bank->base + bank->regs->leveldetect1);
1523
	writel_relaxed(bank->context.risingdetect,
1524
				bank->base + bank->regs->risingdetect);
1525
	writel_relaxed(bank->context.fallingdetect,
1526
				bank->base + bank->regs->fallingdetect);
1527
	if (bank->regs->set_dataout && bank->regs->clr_dataout)
1528
		writel_relaxed(bank->context.dataout,
1529 1530
				bank->base + bank->regs->set_dataout);
	else
1531
		writel_relaxed(bank->context.dataout,
1532
				bank->base + bank->regs->dataout);
1533
	writel_relaxed(bank->context.oe, bank->base + bank->regs->direction);
1534

1535
	if (bank->dbck_enable_mask) {
1536
		writel_relaxed(bank->context.debounce, bank->base +
1537
					bank->regs->debounce);
1538
		writel_relaxed(bank->context.debounce_en,
1539 1540
					bank->base + bank->regs->debounce_en);
	}
1541

1542
	writel_relaxed(bank->context.irqenable1,
1543
				bank->base + bank->regs->irqenable);
1544
	writel_relaxed(bank->context.irqenable2,
1545
				bank->base + bank->regs->irqenable2);
1546
}
1547
#endif /* CONFIG_PM */
1548
#else
1549 1550
#define omap_gpio_runtime_suspend NULL
#define omap_gpio_runtime_resume NULL
1551
static inline void omap_gpio_init_context(struct gpio_bank *p) {}
1552 1553
#endif

1554
static const struct dev_pm_ops gpio_pm_ops = {
1555 1556
	SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
									NULL)
1557 1558
};

1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
#if defined(CONFIG_OF)
static struct omap_gpio_reg_offs omap2_gpio_regs = {
	.revision =		OMAP24XX_GPIO_REVISION,
	.direction =		OMAP24XX_GPIO_OE,
	.datain =		OMAP24XX_GPIO_DATAIN,
	.dataout =		OMAP24XX_GPIO_DATAOUT,
	.set_dataout =		OMAP24XX_GPIO_SETDATAOUT,
	.clr_dataout =		OMAP24XX_GPIO_CLEARDATAOUT,
	.irqstatus =		OMAP24XX_GPIO_IRQSTATUS1,
	.irqstatus2 =		OMAP24XX_GPIO_IRQSTATUS2,
	.irqenable =		OMAP24XX_GPIO_IRQENABLE1,
	.irqenable2 =		OMAP24XX_GPIO_IRQENABLE2,
	.set_irqenable =	OMAP24XX_GPIO_SETIRQENABLE1,
	.clr_irqenable =	OMAP24XX_GPIO_CLEARIRQENABLE1,
	.debounce =		OMAP24XX_GPIO_DEBOUNCE_VAL,
	.debounce_en =		OMAP24XX_GPIO_DEBOUNCE_EN,
	.ctrl =			OMAP24XX_GPIO_CTRL,
	.wkup_en =		OMAP24XX_GPIO_WAKE_EN,
	.leveldetect0 =		OMAP24XX_GPIO_LEVELDETECT0,
	.leveldetect1 =		OMAP24XX_GPIO_LEVELDETECT1,
	.risingdetect =		OMAP24XX_GPIO_RISINGDETECT,
	.fallingdetect =	OMAP24XX_GPIO_FALLINGDETECT,
};

static struct omap_gpio_reg_offs omap4_gpio_regs = {
	.revision =		OMAP4_GPIO_REVISION,
	.direction =		OMAP4_GPIO_OE,
	.datain =		OMAP4_GPIO_DATAIN,
	.dataout =		OMAP4_GPIO_DATAOUT,
	.set_dataout =		OMAP4_GPIO_SETDATAOUT,
	.clr_dataout =		OMAP4_GPIO_CLEARDATAOUT,
	.irqstatus =		OMAP4_GPIO_IRQSTATUS0,
	.irqstatus2 =		OMAP4_GPIO_IRQSTATUS1,
	.irqenable =		OMAP4_GPIO_IRQSTATUSSET0,
	.irqenable2 =		OMAP4_GPIO_IRQSTATUSSET1,
	.set_irqenable =	OMAP4_GPIO_IRQSTATUSSET0,
	.clr_irqenable =	OMAP4_GPIO_IRQSTATUSCLR0,
	.debounce =		OMAP4_GPIO_DEBOUNCINGTIME,
	.debounce_en =		OMAP4_GPIO_DEBOUNCENABLE,
	.ctrl =			OMAP4_GPIO_CTRL,
	.wkup_en =		OMAP4_GPIO_IRQWAKEN0,
	.leveldetect0 =		OMAP4_GPIO_LEVELDETECT0,
	.leveldetect1 =		OMAP4_GPIO_LEVELDETECT1,
	.risingdetect =		OMAP4_GPIO_RISINGDETECT,
	.fallingdetect =	OMAP4_GPIO_FALLINGDETECT,
};

1606
static const struct omap_gpio_platform_data omap2_pdata = {
1607 1608 1609 1610 1611
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = false,
};

1612
static const struct omap_gpio_platform_data omap3_pdata = {
1613 1614 1615 1616 1617
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

1618
static const struct omap_gpio_platform_data omap4_pdata = {
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
	.regs = &omap4_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

static const struct of_device_id omap_gpio_match[] = {
	{
		.compatible = "ti,omap4-gpio",
		.data = &omap4_pdata,
	},
	{
		.compatible = "ti,omap3-gpio",
		.data = &omap3_pdata,
	},
	{
		.compatible = "ti,omap2-gpio",
		.data = &omap2_pdata,
	},
	{ },
};
MODULE_DEVICE_TABLE(of, omap_gpio_match);
#endif

1642 1643
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
1644
	.remove		= omap_gpio_remove,
1645 1646
	.driver		= {
		.name	= "omap_gpio",
1647
		.pm	= &gpio_pm_ops,
1648
		.of_match_table = of_match_ptr(omap_gpio_match),
1649 1650 1651
	},
};

1652
/*
1653 1654 1655
 * gpio driver register needs to be done before
 * machine_init functions access gpio APIs.
 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1656
 */
1657
static int __init omap_gpio_drv_reg(void)
1658
{
1659
	return platform_driver_register(&omap_gpio_driver);
1660
}
1661
postcore_initcall(omap_gpio_drv_reg);
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671

static void __exit omap_gpio_exit(void)
{
	platform_driver_unregister(&omap_gpio_driver);
}
module_exit(omap_gpio_exit);

MODULE_DESCRIPTION("omap gpio driver");
MODULE_ALIAS("platform:gpio-omap");
MODULE_LICENSE("GPL v2");