gpio-omap.c 43.5 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 522 523 524 525 526 527
		/*
		 * Edge IRQs are already cleared/acked in irq_handler and
		 * not need to be masked, as result handle_edge_irq()
		 * logic is excessed here and may cause lose of interrupts.
		 * So just use handle_simple_irq.
		 */
		irq_set_handler_locked(d, handle_simple_irq);
528

529 530 531
	return 0;

error:
532
	return retval;
533 534
}

535
static void omap_clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
536
{
537
	void __iomem *reg = bank->base;
538

539
	reg += bank->regs->irqstatus;
540
	writel_relaxed(gpio_mask, reg);
541 542

	/* Workaround for clearing DSP GPIO interrupts to allow retention */
543 544
	if (bank->regs->irqstatus2) {
		reg = bank->base + bank->regs->irqstatus2;
545
		writel_relaxed(gpio_mask, reg);
546
	}
547 548

	/* Flush posted write for the irq status to avoid spurious interrupts */
549
	readl_relaxed(reg);
550 551
}

552 553
static inline void omap_clear_gpio_irqstatus(struct gpio_bank *bank,
					     unsigned offset)
554
{
555
	omap_clear_gpio_irqbank(bank, BIT(offset));
556 557
}

558
static u32 omap_get_gpio_irqbank_mask(struct gpio_bank *bank)
559 560
{
	void __iomem *reg = bank->base;
561
	u32 l;
562
	u32 mask = (BIT(bank->width)) - 1;
563

564
	reg += bank->regs->irqenable;
565
	l = readl_relaxed(reg);
566
	if (bank->regs->irqenable_inv)
567 568 569
		l = ~l;
	l &= mask;
	return l;
570 571
}

572
static void omap_enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
573
{
574
	void __iomem *reg = bank->base;
575 576
	u32 l;

577 578 579
	if (bank->regs->set_irqenable) {
		reg += bank->regs->set_irqenable;
		l = gpio_mask;
580
		bank->context.irqenable1 |= gpio_mask;
581 582
	} else {
		reg += bank->regs->irqenable;
583
		l = readl_relaxed(reg);
584 585
		if (bank->regs->irqenable_inv)
			l &= ~gpio_mask;
586 587
		else
			l |= gpio_mask;
588
		bank->context.irqenable1 = l;
589 590
	}

591
	writel_relaxed(l, reg);
592 593
}

594
static void omap_disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
595 596 597 598 599 600
{
	void __iomem *reg = bank->base;
	u32 l;

	if (bank->regs->clr_irqenable) {
		reg += bank->regs->clr_irqenable;
601
		l = gpio_mask;
602
		bank->context.irqenable1 &= ~gpio_mask;
603 604
	} else {
		reg += bank->regs->irqenable;
605
		l = readl_relaxed(reg);
606
		if (bank->regs->irqenable_inv)
607
			l |= gpio_mask;
608
		else
609
			l &= ~gpio_mask;
610
		bank->context.irqenable1 = l;
611
	}
612

613
	writel_relaxed(l, reg);
614 615
}

616 617
static inline void omap_set_gpio_irqenable(struct gpio_bank *bank,
					   unsigned offset, int enable)
618
{
619
	if (enable)
620
		omap_enable_gpio_irqbank(bank, BIT(offset));
621
	else
622
		omap_disable_gpio_irqbank(bank, BIT(offset));
623 624
}

625
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
626
static int omap_gpio_wake_enable(struct irq_data *d, unsigned int enable)
627
{
628
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
629

630
	return irq_set_irq_wake(bank->irq, enable);
631 632
}

633
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
634
{
635
	struct gpio_bank *bank = gpiochip_get_data(chip);
D
David Brownell 已提交
636
	unsigned long flags;
D
David Brownell 已提交
637

638 639 640 641
	/*
	 * If this is the first gpio_request for the bank,
	 * enable the bank module.
	 */
642
	if (!BANK_USED(bank))
643
		pm_runtime_get_sync(chip->parent);
644

645
	raw_spin_lock_irqsave(&bank->lock, flags);
646
	omap_enable_gpio_module(bank, offset);
647
	bank->mod_usage |= BIT(offset);
648
	raw_spin_unlock_irqrestore(&bank->lock, flags);
649 650 651 652

	return 0;
}

653
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
654
{
655
	struct gpio_bank *bank = gpiochip_get_data(chip);
D
David Brownell 已提交
656
	unsigned long flags;
657

658
	raw_spin_lock_irqsave(&bank->lock, flags);
659
	bank->mod_usage &= ~(BIT(offset));
660 661 662 663
	if (!LINE_USED(bank->irq_usage, offset)) {
		omap_set_gpio_direction(bank, offset, 1);
		omap_clear_gpio_debounce(bank, offset);
	}
664
	omap_disable_gpio_module(bank, offset);
665
	raw_spin_unlock_irqrestore(&bank->lock, flags);
666 667 668 669 670

	/*
	 * If this is the last gpio to be freed in the bank,
	 * disable the bank module.
	 */
671
	if (!BANK_USED(bank))
672
		pm_runtime_put(chip->parent);
673 674 675 676 677 678 679 680 681 682 683
}

/*
 * 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.
 */
684
static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
685
{
686
	void __iomem *isr_reg = NULL;
687
	u32 enabled, isr, level_mask;
688
	unsigned int bit;
689 690
	struct gpio_bank *bank = gpiobank;
	unsigned long wa_lock_flags;
691
	unsigned long lock_flags;
692

693
	isr_reg = bank->base + bank->regs->irqstatus;
694 695 696
	if (WARN_ON(!isr_reg))
		goto exit;

697
	pm_runtime_get_sync(bank->chip.parent);
698

699
	while (1) {
700 701
		raw_spin_lock_irqsave(&bank->lock, lock_flags);

702
		enabled = omap_get_gpio_irqbank_mask(bank);
703
		isr = readl_relaxed(isr_reg) & enabled;
704

705
		if (bank->level_mask)
706
			level_mask = bank->level_mask & enabled;
707 708
		else
			level_mask = 0;
709 710 711 712

		/* clear edge sensitive interrupts before handler(s) are
		called so that we don't miss any interrupt occurred while
		executing them */
713 714
		if (isr & ~level_mask)
			omap_clear_gpio_irqbank(bank, isr & ~level_mask);
715

716 717
		raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

718 719 720
		if (!isr)
			break;

721 722
		while (isr) {
			bit = __ffs(isr);
723
			isr &= ~(BIT(bit));
724

725
			raw_spin_lock_irqsave(&bank->lock, lock_flags);
726 727 728 729 730 731 732
			/*
			 * 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.
			 */
733
			if (bank->toggle_mask & (BIT(bit)))
734
				omap_toggle_gpio_edge_triggering(bank, bit);
735

736 737
			raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

738 739
			raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);

740
			generic_handle_irq(irq_find_mapping(bank->chip.irq.domain,
741
							    bit));
742 743 744

			raw_spin_unlock_irqrestore(&bank->wa_lock,
						   wa_lock_flags);
745
		}
746
	}
747
exit:
748
	pm_runtime_put(bank->chip.parent);
749
	return IRQ_HANDLED;
750 751
}

752 753 754 755
static unsigned int omap_gpio_irq_startup(struct irq_data *d)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
	unsigned long flags;
756
	unsigned offset = d->hwirq;
757

758
	raw_spin_lock_irqsave(&bank->lock, flags);
759 760 761 762 763 764 765 766

	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);

767
	raw_spin_unlock_irqrestore(&bank->lock, flags);
768 769 770
	omap_gpio_unmask_irq(d);

	return 0;
771
err:
772
	raw_spin_unlock_irqrestore(&bank->lock, flags);
773
	return -EINVAL;
774 775
}

776
static void omap_gpio_irq_shutdown(struct irq_data *d)
777
{
778
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
779
	unsigned long flags;
780
	unsigned offset = d->hwirq;
781

782
	raw_spin_lock_irqsave(&bank->lock, flags);
783
	bank->irq_usage &= ~(BIT(offset));
784 785 786 787 788
	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);
789
	omap_disable_gpio_module(bank, offset);
790
	raw_spin_unlock_irqrestore(&bank->lock, flags);
791 792 793 794 795 796 797
}

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))
798
		pm_runtime_get_sync(bank->chip.parent);
799 800 801 802 803
}

static void gpio_irq_bus_sync_unlock(struct irq_data *data)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(data);
804 805 806 807 808 809

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

813
static void omap_gpio_ack_irq(struct irq_data *d)
814
{
815
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
816
	unsigned offset = d->hwirq;
817

818
	omap_clear_gpio_irqstatus(bank, offset);
819 820
}

821
static void omap_gpio_mask_irq(struct irq_data *d)
822
{
823
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
824
	unsigned offset = d->hwirq;
825
	unsigned long flags;
826

827
	raw_spin_lock_irqsave(&bank->lock, flags);
828 829
	omap_set_gpio_irqenable(bank, offset, 0);
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
830
	raw_spin_unlock_irqrestore(&bank->lock, flags);
831 832
}

833
static void omap_gpio_unmask_irq(struct irq_data *d)
834
{
835
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
836
	unsigned offset = d->hwirq;
837
	u32 trigger = irqd_get_trigger_type(d);
838
	unsigned long flags;
839

840
	raw_spin_lock_irqsave(&bank->lock, flags);
841
	if (trigger)
842
		omap_set_gpio_triggering(bank, offset, trigger);
843 844 845

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

851
	omap_set_gpio_irqenable(bank, offset, 1);
852
	raw_spin_unlock_irqrestore(&bank->lock, flags);
853 854
}

855 856
/*---------------------------------------------------------------------*/

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

865
	raw_spin_lock_irqsave(&bank->lock, flags);
866
	writel_relaxed(0xffff & ~bank->context.wake_en, mask_reg);
867
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
868 869 870 871

	return 0;
}

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

880
	raw_spin_lock_irqsave(&bank->lock, flags);
881
	writel_relaxed(bank->context.wake_en, mask_reg);
882
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
883 884 885 886

	return 0;
}

887
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
888 889 890 891
	.suspend_noirq = omap_mpuio_suspend_noirq,
	.resume_noirq = omap_mpuio_resume_noirq,
};

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

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

909
static inline void omap_mpuio_init(struct gpio_bank *bank)
D
David Brownell 已提交
910
{
911
	platform_set_drvdata(&omap_mpuio_device, bank);
912

D
David Brownell 已提交
913 914 915 916
	if (platform_driver_register(&omap_mpuio_driver) == 0)
		(void) platform_device_register(&omap_mpuio_device);
}

917
/*---------------------------------------------------------------------*/
918

919
static int omap_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
920 921 922 923 924 925
{
	struct gpio_bank *bank;
	unsigned long flags;
	void __iomem *reg;
	int dir;

926
	bank = gpiochip_get_data(chip);
927
	reg = bank->base + bank->regs->direction;
928
	raw_spin_lock_irqsave(&bank->lock, flags);
929
	dir = !!(readl_relaxed(reg) & BIT(offset));
930
	raw_spin_unlock_irqrestore(&bank->lock, flags);
931 932 933
	return dir;
}

934
static int omap_gpio_input(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
935 936 937 938
{
	struct gpio_bank *bank;
	unsigned long flags;

939
	bank = gpiochip_get_data(chip);
940
	raw_spin_lock_irqsave(&bank->lock, flags);
941
	omap_set_gpio_direction(bank, offset, 1);
942
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
943 944 945
	return 0;
}

946
static int omap_gpio_get(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
947
{
948 949
	struct gpio_bank *bank;

950
	bank = gpiochip_get_data(chip);
951

952
	if (omap_gpio_is_input(bank, offset))
953
		return omap_get_gpio_datain(bank, offset);
954
	else
955
		return omap_get_gpio_dataout(bank, offset);
D
David Brownell 已提交
956 957
}

958
static int omap_gpio_output(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
959 960 961 962
{
	struct gpio_bank *bank;
	unsigned long flags;

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

971 972
static int omap_gpio_debounce(struct gpio_chip *chip, unsigned offset,
			      unsigned debounce)
973 974 975
{
	struct gpio_bank *bank;
	unsigned long flags;
976
	int ret;
977

978
	bank = gpiochip_get_data(chip);
979

980
	raw_spin_lock_irqsave(&bank->lock, flags);
981
	ret = omap2_set_gpio_debounce(bank, offset, debounce);
982
	raw_spin_unlock_irqrestore(&bank->lock, flags);
983

984 985 986 987 988 989
	if (ret)
		dev_info(chip->parent,
			 "Could not set line %u debounce to %u microseconds (%d)",
			 offset, debounce, ret);

	return ret;
990 991
}

992 993 994 995 996 997 998 999 1000 1001 1002 1003
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);
}

1004
static void omap_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
1005 1006 1007 1008
{
	struct gpio_bank *bank;
	unsigned long flags;

1009
	bank = gpiochip_get_data(chip);
1010
	raw_spin_lock_irqsave(&bank->lock, flags);
1011
	bank->set_dataout(bank, offset, value);
1012
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
1013 1014 1015 1016
}

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

1017
static void omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
1018
{
1019
	static bool called;
T
Tony Lindgren 已提交
1020 1021
	u32 rev;

1022
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
1023 1024
		return;

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

	called = true;
T
Tony Lindgren 已提交
1030 1031
}

1032
static void omap_gpio_mod_init(struct gpio_bank *bank)
1033
{
1034 1035
	void __iomem *base = bank->base;
	u32 l = 0xffffffff;
1036

1037 1038 1039
	if (bank->width == 16)
		l = 0xffff;

1040
	if (bank->is_mpuio) {
1041
		writel_relaxed(l, bank->base + bank->regs->irqenable);
1042
		return;
1043
	}
1044

1045 1046 1047 1048
	omap_gpio_rmw(base, bank->regs->irqenable, l,
		      bank->regs->irqenable_inv);
	omap_gpio_rmw(base, bank->regs->irqstatus, l,
		      !bank->regs->irqenable_inv);
1049
	if (bank->regs->debounce_en)
1050
		writel_relaxed(0, base + bank->regs->debounce_en);
1051

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

N
Nishanth Menon 已提交
1059
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
1060
{
1061
	struct gpio_irq_chip *irq;
1062
	static int gpio;
1063
	const char *label;
1064
	int irq_base = 0;
1065
	int ret;
1066 1067 1068 1069 1070 1071 1072

	/*
	 * 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;
1073 1074 1075 1076
	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;
1077
	bank->chip.set_config = omap_gpio_set_config;
1078
	bank->chip.set = omap_gpio_set;
1079
	if (bank->is_mpuio) {
1080
		bank->chip.label = "mpuio";
1081
		if (bank->regs->wkup_en)
1082
			bank->chip.parent = &omap_mpuio_device.dev;
1083 1084
		bank->chip.base = OMAP_MPUIO(0);
	} else {
1085 1086 1087 1088 1089
		label = devm_kasprintf(bank->chip.parent, GFP_KERNEL, "gpio-%d-%d",
				       gpio, gpio + bank->width - 1);
		if (!label)
			return -ENOMEM;
		bank->chip.label = label;
1090 1091
		bank->chip.base = gpio;
	}
1092
	bank->chip.ngpio = bank->width;
1093

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;
	}

1114 1115 1116 1117 1118 1119 1120
	irq = &bank->chip.irq;
	irq->chip = irqc;
	irq->handler = handle_bad_irq;
	irq->default_type = IRQ_TYPE_NONE;
	irq->num_parents = 1;
	irq->parents = &bank->irq;
	irq->first = irq_base;
1121

1122
	ret = gpiochip_add_data(&bank->chip, bank);
1123
	if (ret) {
1124
		dev_err(bank->chip.parent,
1125 1126
			"Could not register gpio chip %d\n", ret);
		return ret;
1127 1128
	}

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

1135 1136 1137
	if (!bank->is_mpuio)
		gpio += bank->width;

1138
	return ret;
1139 1140
}

1141 1142
static const struct of_device_id omap_gpio_match[];

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

1154 1155
	match = of_match_device(of_match_ptr(omap_gpio_match), dev);

J
Jingoo Han 已提交
1156
	pdata = match ? match->data : dev_get_platdata(dev);
1157
	if (!pdata)
1158
		return -EINVAL;
1159

1160
	bank = devm_kzalloc(dev, sizeof(struct gpio_bank), GFP_KERNEL);
1161
	if (!bank) {
1162
		dev_err(dev, "Memory alloc failed\n");
1163
		return -ENOMEM;
1164
	}
1165

N
Nishanth Menon 已提交
1166 1167 1168 1169
	irqc = devm_kzalloc(dev, sizeof(*irqc), GFP_KERNEL);
	if (!irqc)
		return -ENOMEM;

1170
	irqc->irq_startup = omap_gpio_irq_startup,
N
Nishanth Menon 已提交
1171 1172 1173 1174 1175 1176
	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,
1177 1178
	irqc->irq_bus_lock = omap_gpio_irq_bus_lock,
	irqc->irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
N
Nishanth Menon 已提交
1179
	irqc->name = dev_name(&pdev->dev);
1180
	irqc->flags = IRQCHIP_MASK_ON_SUSPEND;
N
Nishanth Menon 已提交
1181

1182 1183 1184 1185 1186 1187 1188 1189
	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;
1190
	}
1191

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

		if (bank->loses_context)
			bank->get_context_loss_count =
				pdata->get_context_loss_count;
1212 1213
	}

1214
	if (bank->regs->set_dataout && bank->regs->clr_dataout)
1215
		bank->set_dataout = omap_set_gpio_dataout_reg;
1216
	else
1217
		bank->set_dataout = omap_set_gpio_dataout_mask;
T
Tony Lindgren 已提交
1218

1219
	raw_spin_lock_init(&bank->lock);
1220
	raw_spin_lock_init(&bank->wa_lock);
T
Tony Lindgren 已提交
1221

1222 1223
	/* Static mapping, never released */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1224 1225 1226
	bank->base = devm_ioremap_resource(dev, res);
	if (IS_ERR(bank->base)) {
		return PTR_ERR(bank->base);
1227 1228
	}

1229
	if (bank->dbck_flag) {
1230
		bank->dbck = devm_clk_get(dev, "dbclk");
1231
		if (IS_ERR(bank->dbck)) {
1232
			dev_err(dev,
1233 1234 1235 1236 1237 1238 1239
				"Could not get gpio dbck. Disable debounce\n");
			bank->dbck_flag = false;
		} else {
			clk_prepare(bank->dbck);
		}
	}

1240 1241
	platform_set_drvdata(pdev, bank);

1242 1243 1244
	pm_runtime_enable(dev);
	pm_runtime_irq_safe(dev);
	pm_runtime_get_sync(dev);
1245

1246
	if (bank->is_mpuio)
1247
		omap_mpuio_init(bank);
1248

1249
	omap_gpio_mod_init(bank);
1250

N
Nishanth Menon 已提交
1251
	ret = omap_gpio_chip_init(bank, irqc);
1252
	if (ret) {
1253 1254
		pm_runtime_put_sync(dev);
		pm_runtime_disable(dev);
1255 1256
		if (bank->dbck_flag)
			clk_unprepare(bank->dbck);
1257
		return ret;
1258
	}
1259

1260
	omap_gpio_show_rev(bank);
T
Tony Lindgren 已提交
1261

1262
	pm_runtime_put(dev);
1263

1264
	list_add_tail(&bank->node, &omap_gpio_list);
1265

1266
	return 0;
1267 1268
}

1269 1270 1271 1272 1273 1274
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);
1275
	pm_runtime_disable(&pdev->dev);
1276 1277
	if (bank->dbck_flag)
		clk_unprepare(bank->dbck);
1278 1279 1280 1281

	return 0;
}

1282 1283
#ifdef CONFIG_ARCH_OMAP2PLUS

1284
#if defined(CONFIG_PM)
1285
static void omap_gpio_restore_context(struct gpio_bank *bank);
1286

1287
static int omap_gpio_runtime_suspend(struct device *dev)
1288
{
1289 1290 1291 1292
	struct platform_device *pdev = to_platform_device(dev);
	struct gpio_bank *bank = platform_get_drvdata(pdev);
	u32 l1 = 0, l2 = 0;
	unsigned long flags;
1293
	u32 wake_low, wake_hi;
1294

1295
	raw_spin_lock_irqsave(&bank->lock, flags);
1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309

	/*
	 * 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)
1310
		writel_relaxed(wake_low | bank->context.fallingdetect,
1311 1312 1313
			     bank->base + bank->regs->fallingdetect);
	wake_hi = bank->context.leveldetect1 & bank->context.wake_en;
	if (wake_hi)
1314
		writel_relaxed(wake_hi | bank->context.risingdetect,
1315 1316
			     bank->base + bank->regs->risingdetect);

1317 1318 1319
	if (!bank->enabled_non_wakeup_gpios)
		goto update_gpio_context_count;

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

1334 1335
	l1 &= ~bank->enabled_non_wakeup_gpios;
	l2 &= ~bank->enabled_non_wakeup_gpios;
1336

1337 1338
	writel_relaxed(l1, bank->base + bank->regs->fallingdetect);
	writel_relaxed(l2, bank->base + bank->regs->risingdetect);
1339

1340
	bank->workaround_enabled = true;
1341

1342
update_gpio_context_count:
1343 1344
	if (bank->get_context_loss_count)
		bank->context_loss_count =
1345
				bank->get_context_loss_count(dev);
1346

1347
	omap_gpio_dbck_disable(bank);
1348
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1349

1350
	return 0;
1351 1352
}

1353 1354
static void omap_gpio_init_context(struct gpio_bank *p);

1355
static int omap_gpio_runtime_resume(struct device *dev)
1356
{
1357 1358 1359 1360
	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;
1361
	int c;
1362

1363
	raw_spin_lock_irqsave(&bank->lock, flags);
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374

	/*
	 * 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 =
1375
				bank->get_context_loss_count(dev);
1376 1377
	}

1378
	omap_gpio_dbck_enable(bank);
1379 1380 1381 1382 1383 1384 1385

	/*
	 * 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.
	 */
1386
	writel_relaxed(bank->context.fallingdetect,
1387
		     bank->base + bank->regs->fallingdetect);
1388
	writel_relaxed(bank->context.risingdetect,
1389 1390
		     bank->base + bank->regs->risingdetect);

1391 1392
	if (bank->loses_context) {
		if (!bank->get_context_loss_count) {
1393 1394
			omap_gpio_restore_context(bank);
		} else {
1395
			c = bank->get_context_loss_count(dev);
1396 1397 1398
			if (c != bank->context_loss_count) {
				omap_gpio_restore_context(bank);
			} else {
1399
				raw_spin_unlock_irqrestore(&bank->lock, flags);
1400 1401
				return 0;
			}
1402
		}
1403
	}
1404

1405
	if (!bank->workaround_enabled) {
1406
		raw_spin_unlock_irqrestore(&bank->lock, flags);
1407 1408 1409
		return 0;
	}

1410
	l = readl_relaxed(bank->base + bank->regs->datain);
1411

1412 1413 1414 1415 1416 1417 1418 1419
	/*
	 * 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;
1420

1421 1422 1423 1424
	/*
	 * No need to generate IRQs for the rising edge for gpio IRQs
	 * configured with falling edge only; and vice versa.
	 */
1425
	gen0 = l & bank->context.fallingdetect;
1426
	gen0 &= bank->saved_datain;
1427

1428
	gen1 = l & bank->context.risingdetect;
1429
	gen1 &= ~(bank->saved_datain);
1430

1431
	/* FIXME: Consider GPIO IRQs with level detections properly! */
1432 1433
	gen = l & (~(bank->context.fallingdetect) &
					 ~(bank->context.risingdetect));
1434 1435
	/* Consider all GPIO IRQs needed to be updated */
	gen |= gen0 | gen1;
1436

1437 1438
	if (gen) {
		u32 old0, old1;
1439

1440 1441
		old0 = readl_relaxed(bank->base + bank->regs->leveldetect0);
		old1 = readl_relaxed(bank->base + bank->regs->leveldetect1);
1442

1443
		if (!bank->regs->irqstatus_raw0) {
1444
			writel_relaxed(old0 | gen, bank->base +
1445
						bank->regs->leveldetect0);
1446
			writel_relaxed(old1 | gen, bank->base +
1447
						bank->regs->leveldetect1);
1448
		}
1449

1450
		if (bank->regs->irqstatus_raw0) {
1451
			writel_relaxed(old0 | l, bank->base +
1452
						bank->regs->leveldetect0);
1453
			writel_relaxed(old1 | l, bank->base +
1454
						bank->regs->leveldetect1);
1455
		}
1456 1457
		writel_relaxed(old0, bank->base + bank->regs->leveldetect0);
		writel_relaxed(old1, bank->base + bank->regs->leveldetect1);
1458 1459 1460
	}

	bank->workaround_enabled = false;
1461
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1462 1463 1464

	return 0;
}
1465
#endif /* CONFIG_PM */
1466

1467
#if IS_BUILTIN(CONFIG_GPIO_OMAP)
1468 1469 1470 1471 1472
void omap2_gpio_prepare_for_idle(int pwr_mode)
{
	struct gpio_bank *bank;

	list_for_each_entry(bank, &omap_gpio_list, node) {
1473
		if (!BANK_USED(bank) || !bank->loses_context)
1474 1475 1476 1477
			continue;

		bank->power_mode = pwr_mode;

1478
		pm_runtime_put_sync_suspend(bank->chip.parent);
1479 1480 1481 1482 1483 1484 1485 1486
	}
}

void omap2_gpio_resume_after_idle(void)
{
	struct gpio_bank *bank;

	list_for_each_entry(bank, &omap_gpio_list, node) {
1487
		if (!BANK_USED(bank) || !bank->loses_context)
1488 1489
			continue;

1490
		pm_runtime_get_sync(bank->chip.parent);
1491 1492
	}
}
1493
#endif
1494

1495
#if defined(CONFIG_PM)
1496 1497 1498 1499 1500
static void omap_gpio_init_context(struct gpio_bank *p)
{
	struct omap_gpio_reg_offs *regs = p->regs;
	void __iomem *base = p->base;

1501 1502 1503 1504 1505 1506 1507 1508 1509
	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);
1510 1511

	if (regs->set_dataout && p->regs->clr_dataout)
1512
		p->context.dataout = readl_relaxed(base + regs->set_dataout);
1513
	else
1514
		p->context.dataout = readl_relaxed(base + regs->dataout);
1515 1516 1517 1518

	p->context_valid = true;
}

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

1540
	if (bank->dbck_enable_mask) {
1541
		writel_relaxed(bank->context.debounce, bank->base +
1542
					bank->regs->debounce);
1543
		writel_relaxed(bank->context.debounce_en,
1544 1545
					bank->base + bank->regs->debounce_en);
	}
1546

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

1559
static const struct dev_pm_ops gpio_pm_ops = {
1560 1561
	SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
									NULL)
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 1606 1607 1608 1609 1610
#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,
};

1611
static const struct omap_gpio_platform_data omap2_pdata = {
1612 1613 1614 1615 1616
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = false,
};

1617
static const struct omap_gpio_platform_data omap3_pdata = {
1618 1619 1620 1621 1622
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

1623
static const struct omap_gpio_platform_data omap4_pdata = {
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646
	.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

1647 1648
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
1649
	.remove		= omap_gpio_remove,
1650 1651
	.driver		= {
		.name	= "omap_gpio",
1652
		.pm	= &gpio_pm_ops,
1653
		.of_match_table = of_match_ptr(omap_gpio_match),
1654 1655 1656
	},
};

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

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");