gpio-omap.c 40.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 23
#include <linux/slab.h>
#include <linux/pm_runtime.h>
24

25
#include <mach/hardware.h>
26
#include <asm/irq.h>
27
#include <mach/irqs.h>
28
#include <asm/gpio.h>
29 30
#include <asm/mach/irq.h>

31 32
static LIST_HEAD(omap_gpio_list);

33
struct gpio_bank {
34
	struct list_head node;
T
Tony Lindgren 已提交
35
	unsigned long pbase;
36
	void __iomem *base;
37 38
	u16 irq;
	u16 virtual_irq_start;
39 40
	int method;
	u32 suspend_wakeup;
41
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
42
	u32 saved_wakeup;
43 44 45 46 47 48 49
#endif
	u32 non_wakeup_gpios;
	u32 enabled_non_wakeup_gpios;

	u32 saved_datain;
	u32 saved_fallingdetect;
	u32 saved_risingdetect;
50
	u32 level_mask;
51
	u32 toggle_mask;
52
	spinlock_t lock;
D
David Brownell 已提交
53
	struct gpio_chip chip;
54
	struct clk *dbck;
C
Charulatha V 已提交
55
	u32 mod_usage;
56
	u32 dbck_enable_mask;
57 58
	struct device *dev;
	bool dbck_flag;
59
	int stride;
60
	u32 width;
61
	u16 id;
62 63 64 65

	void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);

	struct omap_gpio_reg_offs *regs;
66 67
};

68
#ifdef CONFIG_ARCH_OMAP3
69 70 71 72 73 74 75 76 77 78 79
struct omap3_gpio_regs {
	u32 irqenable1;
	u32 irqenable2;
	u32 wake_en;
	u32 ctrl;
	u32 oe;
	u32 leveldetect0;
	u32 leveldetect1;
	u32 risingdetect;
	u32 fallingdetect;
	u32 dataout;
80 81
};

82
static struct omap3_gpio_regs gpio_context[OMAP34XX_NR_GPIOS];
83 84
#endif

85 86
#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
87 88 89

static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
{
90
	void __iomem *reg = bank->base;
91 92
	u32 l;

93
	reg += bank->regs->direction;
94 95 96 97 98 99 100 101
	l = __raw_readl(reg);
	if (is_input)
		l |= 1 << gpio;
	else
		l &= ~(1 << gpio);
	__raw_writel(l, reg);
}

102 103 104

/* set data out value using dedicate set/clear register */
static void _set_gpio_dataout_reg(struct gpio_bank *bank, int gpio, int enable)
105
{
106
	void __iomem *reg = bank->base;
107
	u32 l = GPIO_BIT(bank, gpio);
108

109 110 111 112
	if (enable)
		reg += bank->regs->set_dataout;
	else
		reg += bank->regs->clr_dataout;
113 114 115 116

	__raw_writel(l, reg);
}

117 118
/* set data out value using mask register */
static void _set_gpio_dataout_mask(struct gpio_bank *bank, int gpio, int enable)
119
{
120 121 122
	void __iomem *reg = bank->base + bank->regs->dataout;
	u32 gpio_bit = GPIO_BIT(bank, gpio);
	u32 l;
123

124 125 126 127 128
	l = __raw_readl(reg);
	if (enable)
		l |= gpio_bit;
	else
		l &= ~gpio_bit;
129 130 131
	__raw_writel(l, reg);
}

132 133
static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
{
134
	void __iomem *reg = bank->base + bank->regs->datain;
135

136
	return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
137
}
138 139 140

static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
{
141
	void __iomem *reg = bank->base + bank->regs->dataout;
142

143
	return (__raw_readl(reg) & GPIO_BIT(bank, gpio)) != 0;
144 145
}

146 147 148 149 150 151 152 153 154 155 156
static inline void _gpio_rmw(void __iomem *base, u32 reg, u32 mask, bool set)
{
	int l = __raw_readl(base + reg);

	if (set) 
		l |= mask;
	else
		l &= ~mask;

	__raw_writel(l, base + reg);
}
157

158 159 160 161 162 163 164 165 166 167 168 169
/**
 * _set_gpio_debounce - low level gpio debounce time
 * @bank: the gpio bank we're acting upon
 * @gpio: the gpio number on this @gpio
 * @debounce: debounce time to use
 *
 * OMAP's debounce time is in 31us steps so we need
 * to convert and round up to the closest unit.
 */
static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
		unsigned debounce)
{
170
	void __iomem		*reg;
171 172 173
	u32			val;
	u32			l;

174 175 176
	if (!bank->dbck_flag)
		return;

177 178 179 180 181 182 183
	if (debounce < 32)
		debounce = 0x01;
	else if (debounce > 7936)
		debounce = 0xff;
	else
		debounce = (debounce / 0x1f) - 1;

184
	l = GPIO_BIT(bank, gpio);
185

186
	reg = bank->base + bank->regs->debounce;
187 188
	__raw_writel(debounce, reg);

189
	reg = bank->base + bank->regs->debounce_en;
190 191 192 193
	val = __raw_readl(reg);

	if (debounce) {
		val |= l;
194
		clk_enable(bank->dbck);
195 196
	} else {
		val &= ~l;
197
		clk_disable(bank->dbck);
198
	}
199
	bank->dbck_enable_mask = val;
200 201 202 203

	__raw_writel(val, reg);
}

204
#ifdef CONFIG_ARCH_OMAP2PLUS
205 206
static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio,
						int trigger)
207
{
208
	void __iomem *base = bank->base;
209 210
	u32 gpio_bit = 1 << gpio;

211
	if (cpu_is_omap44xx()) {
212 213 214 215 216 217 218 219
		_gpio_rmw(base, OMAP4_GPIO_LEVELDETECT0, gpio_bit,
			  trigger & IRQ_TYPE_LEVEL_LOW);
		_gpio_rmw(base, OMAP4_GPIO_LEVELDETECT1, gpio_bit,
			  trigger & IRQ_TYPE_LEVEL_HIGH);
		_gpio_rmw(base, OMAP4_GPIO_RISINGDETECT, gpio_bit,
			  trigger & IRQ_TYPE_EDGE_RISING);
		_gpio_rmw(base, OMAP4_GPIO_FALLINGDETECT, gpio_bit,
			  trigger & IRQ_TYPE_EDGE_FALLING);
220
	} else {
221 222 223 224 225 226 227 228
		_gpio_rmw(base, OMAP24XX_GPIO_LEVELDETECT0, gpio_bit,
			  trigger & IRQ_TYPE_LEVEL_LOW);
		_gpio_rmw(base, OMAP24XX_GPIO_LEVELDETECT1, gpio_bit,
			  trigger & IRQ_TYPE_LEVEL_HIGH);
		_gpio_rmw(base, OMAP24XX_GPIO_RISINGDETECT, gpio_bit,
			  trigger & IRQ_TYPE_EDGE_RISING);
		_gpio_rmw(base, OMAP24XX_GPIO_FALLINGDETECT, gpio_bit,
			  trigger & IRQ_TYPE_EDGE_FALLING);
229
	}
230
	if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
231
		if (cpu_is_omap44xx()) {
232 233
			_gpio_rmw(base, OMAP4_GPIO_IRQWAKEN0, gpio_bit,
				  trigger != 0);
234
		} else {
235 236 237 238 239
			/*
			 * GPIO wakeup request can only be generated on edge
			 * transitions
			 */
			if (trigger & IRQ_TYPE_EDGE_BOTH)
240
				__raw_writel(1 << gpio, bank->base
241
					+ OMAP24XX_GPIO_SETWKUENA);
242 243
			else
				__raw_writel(1 << gpio, bank->base
244
					+ OMAP24XX_GPIO_CLEARWKUENA);
245
		}
T
Tero Kristo 已提交
246
	}
247 248 249
	/* This part needs to be executed always for OMAP{34xx, 44xx} */
	if (cpu_is_omap34xx() || cpu_is_omap44xx() ||
			(bank->non_wakeup_gpios & gpio_bit)) {
250 251 252 253 254 255 256
		/*
		 * 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)
257 258 259 260
			bank->enabled_non_wakeup_gpios |= gpio_bit;
		else
			bank->enabled_non_wakeup_gpios &= ~gpio_bit;
	}
261

262 263 264 265 266 267 268 269 270
	if (cpu_is_omap44xx()) {
		bank->level_mask =
			__raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT0) |
			__raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT1);
	} else {
		bank->level_mask =
			__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0) |
			__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
	}
271
}
272
#endif
273

274
#ifdef CONFIG_ARCH_OMAP1
275 276 277 278 279 280 281 282 283 284 285
/*
 * 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.
 */
static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
{
	void __iomem *reg = bank->base;
	u32 l = 0;

	switch (bank->method) {
	case METHOD_MPUIO:
286
		reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
		break;
#ifdef CONFIG_ARCH_OMAP15XX
	case METHOD_GPIO_1510:
		reg += OMAP1510_GPIO_INT_CONTROL;
		break;
#endif
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
	case METHOD_GPIO_7XX:
		reg += OMAP7XX_GPIO_INT_CONTROL;
		break;
#endif
	default:
		return;
	}

	l = __raw_readl(reg);
	if ((l >> gpio) & 1)
		l &= ~(1 << gpio);
	else
		l |= 1 << gpio;

	__raw_writel(l, reg);
}
310
#endif
311

312 313 314 315
static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
{
	void __iomem *reg = bank->base;
	u32 l = 0;
316 317

	switch (bank->method) {
318
#ifdef CONFIG_ARCH_OMAP1
319
	case METHOD_MPUIO:
320
		reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
321
		l = __raw_readl(reg);
322
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
323
			bank->toggle_mask |= 1 << gpio;
324
		if (trigger & IRQ_TYPE_EDGE_RISING)
325
			l |= 1 << gpio;
326
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
327
			l &= ~(1 << gpio);
328 329
		else
			goto bad;
330
		break;
331 332
#endif
#ifdef CONFIG_ARCH_OMAP15XX
333 334 335
	case METHOD_GPIO_1510:
		reg += OMAP1510_GPIO_INT_CONTROL;
		l = __raw_readl(reg);
336
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
337
			bank->toggle_mask |= 1 << gpio;
338
		if (trigger & IRQ_TYPE_EDGE_RISING)
339
			l |= 1 << gpio;
340
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
341
			l &= ~(1 << gpio);
342 343
		else
			goto bad;
344
		break;
345
#endif
346
#ifdef CONFIG_ARCH_OMAP16XX
347 348 349 350 351 352 353 354
	case METHOD_GPIO_1610:
		if (gpio & 0x08)
			reg += OMAP1610_GPIO_EDGE_CTRL2;
		else
			reg += OMAP1610_GPIO_EDGE_CTRL1;
		gpio &= 0x07;
		l = __raw_readl(reg);
		l &= ~(3 << (gpio << 1));
355
		if (trigger & IRQ_TYPE_EDGE_RISING)
356
			l |= 2 << (gpio << 1);
357
		if (trigger & IRQ_TYPE_EDGE_FALLING)
358
			l |= 1 << (gpio << 1);
359 360 361 362 363
		if (trigger)
			/* Enable wake-up during idle for dynamic tick */
			__raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_SET_WAKEUPENA);
		else
			__raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA);
364
		break;
365
#endif
366
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
367 368
	case METHOD_GPIO_7XX:
		reg += OMAP7XX_GPIO_INT_CONTROL;
369
		l = __raw_readl(reg);
370
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
371
			bank->toggle_mask |= 1 << gpio;
372 373 374 375 376 377 378 379
		if (trigger & IRQ_TYPE_EDGE_RISING)
			l |= 1 << gpio;
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
			l &= ~(1 << gpio);
		else
			goto bad;
		break;
#endif
380
#ifdef CONFIG_ARCH_OMAP2PLUS
381
	case METHOD_GPIO_24XX:
382
	case METHOD_GPIO_44XX:
383
		set_24xx_gpio_triggering(bank, gpio, trigger);
384
		return 0;
385
#endif
386
	default:
387
		goto bad;
388
	}
389 390 391 392
	__raw_writel(l, reg);
	return 0;
bad:
	return -EINVAL;
393 394
}

395
static int gpio_irq_type(struct irq_data *d, unsigned type)
396 397
{
	struct gpio_bank *bank;
398 399
	unsigned gpio;
	int retval;
D
David Brownell 已提交
400
	unsigned long flags;
401

402 403
	if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
		gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
404
	else
405
		gpio = d->irq - IH_GPIO_BASE;
406

407
	if (type & ~IRQ_TYPE_SENSE_MASK)
408
		return -EINVAL;
409 410

	/* OMAP1 allows only only edge triggering */
411
	if (!cpu_class_is_omap2()
412
			&& (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
413 414
		return -EINVAL;

415
	bank = irq_data_get_irq_chip_data(d);
D
David Brownell 已提交
416
	spin_lock_irqsave(&bank->lock, flags);
417
	retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
D
David Brownell 已提交
418
	spin_unlock_irqrestore(&bank->lock, flags);
419 420

	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
T
Thomas Gleixner 已提交
421
		__irq_set_handler_locked(d->irq, handle_level_irq);
422
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
T
Thomas Gleixner 已提交
423
		__irq_set_handler_locked(d->irq, handle_edge_irq);
424

425
	return retval;
426 427 428 429
}

static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
{
430
	void __iomem *reg = bank->base;
431

432
	reg += bank->regs->irqstatus;
433
	__raw_writel(gpio_mask, reg);
434 435

	/* Workaround for clearing DSP GPIO interrupts to allow retention */
436 437
	if (bank->regs->irqstatus2) {
		reg = bank->base + bank->regs->irqstatus2;
438
		__raw_writel(gpio_mask, reg);
439
	}
440 441 442

	/* Flush posted write for the irq status to avoid spurious interrupts */
	__raw_readl(reg);
443 444 445 446
}

static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
{
447
	_clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
448 449
}

450 451 452
static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
{
	void __iomem *reg = bank->base;
453
	u32 l;
454
	u32 mask = (1 << bank->width) - 1;
455

456
	reg += bank->regs->irqenable;
457
	l = __raw_readl(reg);
458
	if (bank->regs->irqenable_inv)
459 460 461
		l = ~l;
	l &= mask;
	return l;
462 463
}

464
static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
465
{
466
	void __iomem *reg = bank->base;
467 468
	u32 l;

469 470 471 472 473
	if (bank->regs->set_irqenable) {
		reg += bank->regs->set_irqenable;
		l = gpio_mask;
	} else {
		reg += bank->regs->irqenable;
474
		l = __raw_readl(reg);
475 476
		if (bank->regs->irqenable_inv)
			l &= ~gpio_mask;
477 478
		else
			l |= gpio_mask;
479 480 481 482 483 484 485 486 487 488 489 490
	}

	__raw_writel(l, reg);
}

static void _disable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
{
	void __iomem *reg = bank->base;
	u32 l;

	if (bank->regs->clr_irqenable) {
		reg += bank->regs->clr_irqenable;
491
		l = gpio_mask;
492 493
	} else {
		reg += bank->regs->irqenable;
494
		l = __raw_readl(reg);
495
		if (bank->regs->irqenable_inv)
496
			l |= gpio_mask;
497
		else
498
			l &= ~gpio_mask;
499
	}
500

501 502 503 504 505
	__raw_writel(l, reg);
}

static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
{
506
	_enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
507 508
}

509 510 511 512 513 514 515 516 517 518
/*
 * Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
 * 1510 does not seem to have a wake-up register. If JTAG is connected
 * to the target, system will wake up always on GPIO events. While
 * system is running all registered GPIO interrupts need to have wake-up
 * enabled. When system is suspended, only selected GPIO interrupts need
 * to have wake-up enabled.
 */
static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
{
519 520
	u32 gpio_bit = GPIO_BIT(bank, gpio);
	unsigned long flags;
D
David Brownell 已提交
521

522 523 524
	if (bank->non_wakeup_gpios & gpio_bit) {
		dev_err(bank->dev, 
			"Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
525 526
		return -EINVAL;
	}
527 528 529 530 531 532 533 534 535 536

	spin_lock_irqsave(&bank->lock, flags);
	if (enable)
		bank->suspend_wakeup |= gpio_bit;
	else
		bank->suspend_wakeup &= ~gpio_bit;

	spin_unlock_irqrestore(&bank->lock, flags);

	return 0;
537 538
}

539 540
static void _reset_gpio(struct gpio_bank *bank, int gpio)
{
541
	_set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
542 543
	_set_gpio_irqenable(bank, gpio, 0);
	_clear_gpio_irqstatus(bank, gpio);
544
	_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
545 546
}

547
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
548
static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
549
{
550
	unsigned int gpio = d->irq - IH_GPIO_BASE;
551 552 553
	struct gpio_bank *bank;
	int retval;

554
	bank = irq_data_get_irq_chip_data(d);
555
	retval = _set_gpio_wakeup(bank, gpio, enable);
556 557 558 559

	return retval;
}

560
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
561
{
562
	struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
D
David Brownell 已提交
563
	unsigned long flags;
D
David Brownell 已提交
564

D
David Brownell 已提交
565
	spin_lock_irqsave(&bank->lock, flags);
566

567 568 569
	/* Set trigger to none. You need to enable the desired trigger with
	 * request_irq() or set_irq_type().
	 */
570
	_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
571

572
#ifdef CONFIG_ARCH_OMAP15XX
573
	if (bank->method == METHOD_GPIO_1510) {
574
		void __iomem *reg;
575

576
		/* Claim the pin for MPU */
577
		reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
578
		__raw_writel(__raw_readl(reg) | (1 << offset), reg);
579 580
	}
#endif
C
Charulatha V 已提交
581 582
	if (!cpu_class_is_omap1()) {
		if (!bank->mod_usage) {
583
			void __iomem *reg = bank->base;
C
Charulatha V 已提交
584
			u32 ctrl;
585 586 587 588 589 590

			if (cpu_is_omap24xx() || cpu_is_omap34xx())
				reg += OMAP24XX_GPIO_CTRL;
			else if (cpu_is_omap44xx())
				reg += OMAP4_GPIO_CTRL;
			ctrl = __raw_readl(reg);
C
Charulatha V 已提交
591
			/* Module is enabled, clocks are not gated */
592 593
			ctrl &= 0xFFFFFFFE;
			__raw_writel(ctrl, reg);
C
Charulatha V 已提交
594 595 596
		}
		bank->mod_usage |= 1 << offset;
	}
D
David Brownell 已提交
597
	spin_unlock_irqrestore(&bank->lock, flags);
598 599 600 601

	return 0;
}

602
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
603
{
604
	struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
D
David Brownell 已提交
605
	unsigned long flags;
606

D
David Brownell 已提交
607
	spin_lock_irqsave(&bank->lock, flags);
608 609 610 611
#ifdef CONFIG_ARCH_OMAP16XX
	if (bank->method == METHOD_GPIO_1610) {
		/* Disable wake-up during idle for dynamic tick */
		void __iomem *reg = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
612
		__raw_writel(1 << offset, reg);
613 614
	}
#endif
615 616
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
	if (bank->method == METHOD_GPIO_24XX) {
617 618
		/* Disable wake-up during idle for dynamic tick */
		void __iomem *reg = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
619
		__raw_writel(1 << offset, reg);
620
	}
621 622 623 624 625 626 627
#endif
#ifdef CONFIG_ARCH_OMAP4
	if (bank->method == METHOD_GPIO_44XX) {
		/* Disable wake-up during idle for dynamic tick */
		void __iomem *reg = bank->base + OMAP4_GPIO_IRQWAKEN0;
		__raw_writel(1 << offset, reg);
	}
628
#endif
C
Charulatha V 已提交
629 630 631
	if (!cpu_class_is_omap1()) {
		bank->mod_usage &= ~(1 << offset);
		if (!bank->mod_usage) {
632
			void __iomem *reg = bank->base;
C
Charulatha V 已提交
633
			u32 ctrl;
634 635 636 637 638 639

			if (cpu_is_omap24xx() || cpu_is_omap34xx())
				reg += OMAP24XX_GPIO_CTRL;
			else if (cpu_is_omap44xx())
				reg += OMAP4_GPIO_CTRL;
			ctrl = __raw_readl(reg);
C
Charulatha V 已提交
640 641
			/* Module is disabled, clocks are gated */
			ctrl |= 1;
642
			__raw_writel(ctrl, reg);
C
Charulatha V 已提交
643 644
		}
	}
645
	_reset_gpio(bank, bank->chip.base + offset);
D
David Brownell 已提交
646
	spin_unlock_irqrestore(&bank->lock, flags);
647 648 649 650 651 652 653 654 655 656 657
}

/*
 * 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.
 */
658
static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
659
{
660
	void __iomem *isr_reg = NULL;
661
	u32 isr;
662
	unsigned int gpio_irq, gpio_index;
663
	struct gpio_bank *bank;
664 665
	u32 retrigger = 0;
	int unmasked = 0;
666
	struct irq_chip *chip = irq_desc_get_chip(desc);
667

668
	chained_irq_enter(chip, desc);
669

T
Thomas Gleixner 已提交
670
	bank = irq_get_handler_data(irq);
671
	isr_reg = bank->base + bank->regs->irqstatus;
672 673 674 675

	if (WARN_ON(!isr_reg))
		goto exit;

676
	while(1) {
677
		u32 isr_saved, level_mask = 0;
678
		u32 enabled;
679

680 681
		enabled = _get_gpio_irqbank_mask(bank);
		isr_saved = isr = __raw_readl(isr_reg) & enabled;
682 683 684 685

		if (cpu_is_omap15xx() && (bank->method == METHOD_MPUIO))
			isr &= 0x0000ffff;

686
		if (cpu_class_is_omap2()) {
687
			level_mask = bank->level_mask & enabled;
688
		}
689 690 691 692

		/* clear edge sensitive interrupts before handler(s) are
		called so that we don't miss any interrupt occurred while
		executing them */
693
		_disable_gpio_irqbank(bank, isr_saved & ~level_mask);
694
		_clear_gpio_irqbank(bank, isr_saved & ~level_mask);
695
		_enable_gpio_irqbank(bank, isr_saved & ~level_mask);
696 697 698

		/* if there is only edge sensitive GPIO pin interrupts
		configured, we could unmask GPIO bank interrupt immediately */
699 700
		if (!level_mask && !unmasked) {
			unmasked = 1;
701
			chained_irq_exit(chip, desc);
702
		}
703

704 705
		isr |= retrigger;
		retrigger = 0;
706 707 708 709 710
		if (!isr)
			break;

		gpio_irq = bank->virtual_irq_start;
		for (; isr != 0; isr >>= 1, gpio_irq++) {
711
			gpio_index = GPIO_INDEX(bank, irq_to_gpio(gpio_irq));
712

713 714
			if (!(isr & 1))
				continue;
715

716 717 718 719 720 721 722 723 724 725 726 727
#ifdef CONFIG_ARCH_OMAP1
			/*
			 * 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.
			 */
			if (bank->toggle_mask & (1 << gpio_index))
				_toggle_gpio_edge_triggering(bank, gpio_index);
#endif

728
			generic_handle_irq(gpio_irq);
729
		}
730
	}
731 732 733 734
	/* if bank has any level sensitive GPIO pin interrupt
	configured, we must unmask the bank interrupt only after
	handler(s) are executed in order to avoid spurious bank
	interrupt */
735
exit:
736
	if (!unmasked)
737
		chained_irq_exit(chip, desc);
738 739
}

740
static void gpio_irq_shutdown(struct irq_data *d)
741
{
742 743
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
744
	unsigned long flags;
745

746
	spin_lock_irqsave(&bank->lock, flags);
747
	_reset_gpio(bank, gpio);
748
	spin_unlock_irqrestore(&bank->lock, flags);
749 750
}

751
static void gpio_ack_irq(struct irq_data *d)
752
{
753 754
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
755 756 757 758

	_clear_gpio_irqstatus(bank, gpio);
}

759
static void gpio_mask_irq(struct irq_data *d)
760
{
761 762
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
763
	unsigned long flags;
764

765
	spin_lock_irqsave(&bank->lock, flags);
766
	_set_gpio_irqenable(bank, gpio, 0);
767
	_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
768
	spin_unlock_irqrestore(&bank->lock, flags);
769 770
}

771
static void gpio_unmask_irq(struct irq_data *d)
772
{
773 774
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
775
	unsigned int irq_mask = GPIO_BIT(bank, gpio);
776
	u32 trigger = irqd_get_trigger_type(d);
777
	unsigned long flags;
778

779
	spin_lock_irqsave(&bank->lock, flags);
780
	if (trigger)
781
		_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
782 783 784 785 786 787 788

	/* For level-triggered GPIOs, the clearing must be done after
	 * the HW source is cleared, thus after the handler has run */
	if (bank->level_mask & irq_mask) {
		_set_gpio_irqenable(bank, gpio, 0);
		_clear_gpio_irqstatus(bank, gpio);
	}
789

K
Kevin Hilman 已提交
790
	_set_gpio_irqenable(bank, gpio, 1);
791
	spin_unlock_irqrestore(&bank->lock, flags);
792 793
}

794 795
static struct irq_chip gpio_irq_chip = {
	.name		= "GPIO",
796 797 798 799 800 801
	.irq_shutdown	= gpio_irq_shutdown,
	.irq_ack	= gpio_ack_irq,
	.irq_mask	= gpio_mask_irq,
	.irq_unmask	= gpio_unmask_irq,
	.irq_set_type	= gpio_irq_type,
	.irq_set_wake	= gpio_wake_enable,
802 803 804 805 806 807 808 809
};

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

#ifdef CONFIG_ARCH_OMAP1

#define bank_is_mpuio(bank)	((bank)->method == METHOD_MPUIO)

D
David Brownell 已提交
810 811 812 813
#ifdef CONFIG_ARCH_OMAP16XX

#include <linux/platform_device.h>

814
static int omap_mpuio_suspend_noirq(struct device *dev)
D
David Brownell 已提交
815
{
816
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
817
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
818 819
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
820
	unsigned long		flags;
D
David Brownell 已提交
821

D
David Brownell 已提交
822
	spin_lock_irqsave(&bank->lock, flags);
D
David Brownell 已提交
823 824
	bank->saved_wakeup = __raw_readl(mask_reg);
	__raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
D
David Brownell 已提交
825
	spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
826 827 828 829

	return 0;
}

830
static int omap_mpuio_resume_noirq(struct device *dev)
D
David Brownell 已提交
831
{
832
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
833
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
834 835
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
836
	unsigned long		flags;
D
David Brownell 已提交
837

D
David Brownell 已提交
838
	spin_lock_irqsave(&bank->lock, flags);
D
David Brownell 已提交
839
	__raw_writel(bank->saved_wakeup, mask_reg);
D
David Brownell 已提交
840
	spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
841 842 843 844

	return 0;
}

845
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
846 847 848 849
	.suspend_noirq = omap_mpuio_suspend_noirq,
	.resume_noirq = omap_mpuio_resume_noirq,
};

850
/* use platform_driver for this. */
D
David Brownell 已提交
851 852 853
static struct platform_driver omap_mpuio_driver = {
	.driver		= {
		.name	= "mpuio",
854
		.pm	= &omap_mpuio_dev_pm_ops,
D
David Brownell 已提交
855 856 857 858 859 860 861 862 863 864 865 866
	},
};

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

867
static inline void mpuio_init(struct gpio_bank *bank)
D
David Brownell 已提交
868
{
869
	platform_set_drvdata(&omap_mpuio_device, bank);
870

D
David Brownell 已提交
871 872 873 874 875
	if (platform_driver_register(&omap_mpuio_driver) == 0)
		(void) platform_device_register(&omap_mpuio_device);
}

#else
876
static inline void mpuio_init(struct gpio_bank *bank) {}
D
David Brownell 已提交
877 878
#endif	/* 16xx */

879 880 881
#else

#define bank_is_mpuio(bank)	0
882
static inline void mpuio_init(struct gpio_bank *bank) {}
883 884 885 886

#endif

/*---------------------------------------------------------------------*/
887

D
David Brownell 已提交
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
/* REVISIT these are stupid implementations!  replace by ones that
 * don't switch on METHOD_* and which mostly avoid spinlocks
 */

static int gpio_input(struct gpio_chip *chip, unsigned offset)
{
	struct gpio_bank *bank;
	unsigned long flags;

	bank = container_of(chip, struct gpio_bank, chip);
	spin_lock_irqsave(&bank->lock, flags);
	_set_gpio_direction(bank, offset, 1);
	spin_unlock_irqrestore(&bank->lock, flags);
	return 0;
}

904 905
static int gpio_is_input(struct gpio_bank *bank, int mask)
{
906
	void __iomem *reg = bank->base + bank->regs->direction;
907 908 909 910

	return __raw_readl(reg) & mask;
}

D
David Brownell 已提交
911 912
static int gpio_get(struct gpio_chip *chip, unsigned offset)
{
913 914 915 916 917 918
	struct gpio_bank *bank;
	void __iomem *reg;
	int gpio;
	u32 mask;

	gpio = chip->base + offset;
C
Charulatha V 已提交
919
	bank = container_of(chip, struct gpio_bank, chip);
920
	reg = bank->base;
921
	mask = GPIO_BIT(bank, gpio);
922 923 924 925 926

	if (gpio_is_input(bank, mask))
		return _get_gpio_datain(bank, gpio);
	else
		return _get_gpio_dataout(bank, gpio);
D
David Brownell 已提交
927 928 929 930 931 932 933 934 935
}

static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
{
	struct gpio_bank *bank;
	unsigned long flags;

	bank = container_of(chip, struct gpio_bank, chip);
	spin_lock_irqsave(&bank->lock, flags);
936
	bank->set_dataout(bank, offset, value);
D
David Brownell 已提交
937 938 939 940 941
	_set_gpio_direction(bank, offset, 0);
	spin_unlock_irqrestore(&bank->lock, flags);
	return 0;
}

942 943 944 945 946 947 948
static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
		unsigned debounce)
{
	struct gpio_bank *bank;
	unsigned long flags;

	bank = container_of(chip, struct gpio_bank, chip);
949 950 951 952 953 954 955

	if (!bank->dbck) {
		bank->dbck = clk_get(bank->dev, "dbclk");
		if (IS_ERR(bank->dbck))
			dev_err(bank->dev, "Could not get gpio dbck\n");
	}

956 957 958 959 960 961 962
	spin_lock_irqsave(&bank->lock, flags);
	_set_gpio_debounce(bank, offset, debounce);
	spin_unlock_irqrestore(&bank->lock, flags);

	return 0;
}

D
David Brownell 已提交
963 964 965 966 967 968 969
static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
{
	struct gpio_bank *bank;
	unsigned long flags;

	bank = container_of(chip, struct gpio_bank, chip);
	spin_lock_irqsave(&bank->lock, flags);
970
	bank->set_dataout(bank, offset, value);
D
David Brownell 已提交
971 972 973
	spin_unlock_irqrestore(&bank->lock, flags);
}

974 975 976 977 978 979 980 981
static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
{
	struct gpio_bank *bank;

	bank = container_of(chip, struct gpio_bank, chip);
	return bank->virtual_irq_start + offset;
}

D
David Brownell 已提交
982 983
/*---------------------------------------------------------------------*/

984
static void __init omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
985
{
986
	static bool called;
T
Tony Lindgren 已提交
987 988
	u32 rev;

989
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
990 991
		return;

992 993
	rev = __raw_readw(bank->base + bank->regs->revision);
	pr_info("OMAP GPIO hardware version %d.%d\n",
T
Tony Lindgren 已提交
994
		(rev >> 4) & 0x0f, rev & 0x0f);
995 996

	called = true;
T
Tony Lindgren 已提交
997 998
}

999 1000 1001 1002 1003
/* This lock class tells lockdep that GPIO irqs are in a different
 * category than their parents, so it won't report false recursion.
 */
static struct lock_class_key gpio_lock_class;

1004
/* TODO: Cleanup cpu_is_* checks */
1005
static void omap_gpio_mod_init(struct gpio_bank *bank)
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
{
	if (cpu_class_is_omap2()) {
		if (cpu_is_omap44xx()) {
			__raw_writel(0xffffffff, bank->base +
					OMAP4_GPIO_IRQSTATUSCLR0);
			__raw_writel(0x00000000, bank->base +
					 OMAP4_GPIO_DEBOUNCENABLE);
			/* Initialize interface clk ungated, module enabled */
			__raw_writel(0, bank->base + OMAP4_GPIO_CTRL);
		} else if (cpu_is_omap34xx()) {
			__raw_writel(0x00000000, bank->base +
					OMAP24XX_GPIO_IRQENABLE1);
			__raw_writel(0xffffffff, bank->base +
					OMAP24XX_GPIO_IRQSTATUS1);
			__raw_writel(0x00000000, bank->base +
					OMAP24XX_GPIO_DEBOUNCE_EN);

			/* Initialize interface clk ungated, module enabled */
			__raw_writel(0, bank->base + OMAP24XX_GPIO_CTRL);
		} else if (cpu_is_omap24xx()) {
			static const u32 non_wakeup_gpios[] = {
				0xe203ffc0, 0x08700040
			};
1029 1030 1031
			if (bank->id < ARRAY_SIZE(non_wakeup_gpios))
				bank->non_wakeup_gpios =
						non_wakeup_gpios[bank->id];
1032 1033
		}
	} else if (cpu_class_is_omap1()) {
1034
		if (bank_is_mpuio(bank)) {
1035 1036
			__raw_writew(0xffff, bank->base +
				OMAP_MPUIO_GPIO_MASKIT / bank->stride);
1037 1038
			mpuio_init(bank);
		}
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
		if (cpu_is_omap15xx() && bank->method == METHOD_GPIO_1510) {
			__raw_writew(0xffff, bank->base
						+ OMAP1510_GPIO_INT_MASK);
			__raw_writew(0x0000, bank->base
						+ OMAP1510_GPIO_INT_STATUS);
		}
		if (cpu_is_omap16xx() && bank->method == METHOD_GPIO_1610) {
			__raw_writew(0x0000, bank->base
						+ OMAP1610_GPIO_IRQENABLE1);
			__raw_writew(0xffff, bank->base
						+ OMAP1610_GPIO_IRQSTATUS1);
			__raw_writew(0x0014, bank->base
						+ OMAP1610_GPIO_SYSCONFIG);

			/*
			 * Enable system clock for GPIO module.
			 * The CAM_CLK_CTRL *is* really the right place.
			 */
			omap_writel(omap_readl(ULPD_CAM_CLK_CTRL) | 0x04,
						ULPD_CAM_CLK_CTRL);
		}
		if (cpu_is_omap7xx() && bank->method == METHOD_GPIO_7XX) {
			__raw_writel(0xffffffff, bank->base
						+ OMAP7XX_GPIO_INT_MASK);
			__raw_writel(0x00000000, bank->base
						+ OMAP7XX_GPIO_INT_STATUS);
		}
	}
}

1069 1070 1071 1072 1073 1074 1075 1076 1077
static __init void
omap_mpuio_alloc_gc(struct gpio_bank *bank, unsigned int irq_start,
		    unsigned int num)
{
	struct irq_chip_generic *gc;
	struct irq_chip_type *ct;

	gc = irq_alloc_generic_chip("MPUIO", 1, irq_start, bank->base,
				    handle_simple_irq);
1078 1079 1080 1081 1082
	if (!gc) {
		dev_err(bank->dev, "Memory alloc failed for gc\n");
		return;
	}

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
	ct = gc->chip_types;

	/* NOTE: No ack required, reading IRQ status clears it. */
	ct->chip.irq_mask = irq_gc_mask_set_bit;
	ct->chip.irq_unmask = irq_gc_mask_clr_bit;
	ct->chip.irq_set_type = gpio_irq_type;
	/* REVISIT: assuming only 16xx supports MPUIO wake events */
	if (cpu_is_omap16xx())
		ct->chip.irq_set_wake = gpio_wake_enable,

	ct->regs.mask = OMAP_MPUIO_GPIO_INT / bank->stride;
	irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
			       IRQ_NOREQUEST | IRQ_NOPROBE, 0);
}

1098
static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
1099
{
1100
	int j;
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
	static int gpio;

	bank->mod_usage = 0;
	/*
	 * 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;
	bank->chip.direction_input = gpio_input;
	bank->chip.get = gpio_get;
	bank->chip.direction_output = gpio_output;
	bank->chip.set_debounce = gpio_debounce;
	bank->chip.set = gpio_set;
	bank->chip.to_irq = gpio_2irq;
	if (bank_is_mpuio(bank)) {
		bank->chip.label = "mpuio";
#ifdef CONFIG_ARCH_OMAP16XX
		bank->chip.dev = &omap_mpuio_device.dev;
#endif
		bank->chip.base = OMAP_MPUIO(0);
	} else {
		bank->chip.label = "gpio";
		bank->chip.base = gpio;
1125
		gpio += bank->width;
1126
	}
1127
	bank->chip.ngpio = bank->width;
1128 1129 1130 1131

	gpiochip_add(&bank->chip);

	for (j = bank->virtual_irq_start;
1132
		     j < bank->virtual_irq_start + bank->width; j++) {
1133
		irq_set_lockdep_class(j, &gpio_lock_class);
T
Thomas Gleixner 已提交
1134
		irq_set_chip_data(j, bank);
1135 1136 1137
		if (bank_is_mpuio(bank)) {
			omap_mpuio_alloc_gc(bank, j, bank->width);
		} else {
T
Thomas Gleixner 已提交
1138
			irq_set_chip(j, &gpio_irq_chip);
1139 1140 1141
			irq_set_handler(j, handle_simple_irq);
			set_irq_flags(j, IRQF_VALID);
		}
1142
	}
T
Thomas Gleixner 已提交
1143 1144
	irq_set_chained_handler(bank->irq, gpio_irq_handler);
	irq_set_handler_data(bank->irq, bank);
1145 1146
}

1147
static int __devinit omap_gpio_probe(struct platform_device *pdev)
1148
{
1149 1150
	struct omap_gpio_platform_data *pdata;
	struct resource *res;
1151
	struct gpio_bank *bank;
1152
	int ret = 0;
1153

1154 1155 1156
	if (!pdev->dev.platform_data) {
		ret = -EINVAL;
		goto err_exit;
1157 1158
	}

1159 1160 1161 1162 1163 1164
	bank = kzalloc(sizeof(struct gpio_bank), GFP_KERNEL);
	if (!bank) {
		dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
		ret = -ENOMEM;
		goto err_exit;
	}
1165

1166 1167
	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (unlikely(!res)) {
1168 1169 1170 1171
		dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n",
				pdev->id);
		ret = -ENODEV;
		goto err_free;
1172
	}
1173

1174
	bank->irq = res->start;
1175 1176 1177
	bank->id = pdev->id;

	pdata = pdev->dev.platform_data;
1178 1179 1180 1181
	bank->virtual_irq_start = pdata->virtual_irq_start;
	bank->method = pdata->bank_type;
	bank->dev = &pdev->dev;
	bank->dbck_flag = pdata->dbck_flag;
1182
	bank->stride = pdata->bank_stride;
1183
	bank->width = pdata->bank_width;
T
Tony Lindgren 已提交
1184

1185 1186 1187 1188 1189 1190
	bank->regs = pdata->regs;

	if (bank->regs->set_dataout && bank->regs->clr_dataout)
		bank->set_dataout = _set_gpio_dataout_reg;
	else
		bank->set_dataout = _set_gpio_dataout_mask;
T
Tony Lindgren 已提交
1191

1192
	spin_lock_init(&bank->lock);
T
Tony Lindgren 已提交
1193

1194 1195 1196
	/* Static mapping, never released */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (unlikely(!res)) {
1197 1198 1199 1200
		dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n",
				pdev->id);
		ret = -ENODEV;
		goto err_free;
1201
	}
1202

1203 1204
	bank->base = ioremap(res->start, resource_size(res));
	if (!bank->base) {
1205 1206 1207 1208
		dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n",
				pdev->id);
		ret = -ENOMEM;
		goto err_free;
1209 1210
	}

1211 1212 1213
	pm_runtime_enable(bank->dev);
	pm_runtime_get_sync(bank->dev);

1214
	omap_gpio_mod_init(bank);
1215
	omap_gpio_chip_init(bank);
1216
	omap_gpio_show_rev(bank);
T
Tony Lindgren 已提交
1217

1218
	list_add_tail(&bank->node, &omap_gpio_list);
1219

1220 1221 1222 1223 1224 1225
	return ret;

err_free:
	kfree(bank);
err_exit:
	return ret;
1226 1227
}

1228
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
1229
static int omap_gpio_suspend(void)
1230
{
1231
	struct gpio_bank *bank;
1232

1233
	if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
1234 1235
		return 0;

1236
	list_for_each_entry(bank, &omap_gpio_list, node) {
1237 1238 1239
		void __iomem *wake_status;
		void __iomem *wake_clear;
		void __iomem *wake_set;
D
David Brownell 已提交
1240
		unsigned long flags;
1241 1242

		switch (bank->method) {
1243
#ifdef CONFIG_ARCH_OMAP16XX
1244 1245 1246 1247 1248
		case METHOD_GPIO_1610:
			wake_status = bank->base + OMAP1610_GPIO_WAKEUPENABLE;
			wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
			wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
			break;
1249
#endif
1250
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
1251
		case METHOD_GPIO_24XX:
1252
			wake_status = bank->base + OMAP24XX_GPIO_WAKE_EN;
1253 1254 1255
			wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
			wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
			break;
1256 1257
#endif
#ifdef CONFIG_ARCH_OMAP4
1258
		case METHOD_GPIO_44XX:
1259 1260 1261 1262
			wake_status = bank->base + OMAP4_GPIO_IRQWAKEN0;
			wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
			wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
			break;
1263
#endif
1264 1265 1266 1267
		default:
			continue;
		}

D
David Brownell 已提交
1268
		spin_lock_irqsave(&bank->lock, flags);
1269 1270 1271
		bank->saved_wakeup = __raw_readl(wake_status);
		__raw_writel(0xffffffff, wake_clear);
		__raw_writel(bank->suspend_wakeup, wake_set);
D
David Brownell 已提交
1272
		spin_unlock_irqrestore(&bank->lock, flags);
1273 1274 1275 1276 1277
	}

	return 0;
}

1278
static void omap_gpio_resume(void)
1279
{
1280
	struct gpio_bank *bank;
1281

1282
	if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
1283
		return;
1284

1285
	list_for_each_entry(bank, &omap_gpio_list, node) {
1286 1287
		void __iomem *wake_clear;
		void __iomem *wake_set;
D
David Brownell 已提交
1288
		unsigned long flags;
1289 1290

		switch (bank->method) {
1291
#ifdef CONFIG_ARCH_OMAP16XX
1292 1293 1294 1295
		case METHOD_GPIO_1610:
			wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
			wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
			break;
1296
#endif
1297
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
1298
		case METHOD_GPIO_24XX:
1299 1300
			wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
			wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
1301
			break;
1302 1303
#endif
#ifdef CONFIG_ARCH_OMAP4
1304
		case METHOD_GPIO_44XX:
1305 1306 1307
			wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
			wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
			break;
1308
#endif
1309 1310 1311 1312
		default:
			continue;
		}

D
David Brownell 已提交
1313
		spin_lock_irqsave(&bank->lock, flags);
1314 1315
		__raw_writel(0xffffffff, wake_clear);
		__raw_writel(bank->saved_wakeup, wake_set);
D
David Brownell 已提交
1316
		spin_unlock_irqrestore(&bank->lock, flags);
1317 1318 1319
	}
}

1320
static struct syscore_ops omap_gpio_syscore_ops = {
1321 1322 1323 1324
	.suspend	= omap_gpio_suspend,
	.resume		= omap_gpio_resume,
};

1325 1326
#endif

1327
#ifdef CONFIG_ARCH_OMAP2PLUS
1328 1329 1330

static int workaround_enabled;

1331
void omap2_gpio_prepare_for_idle(int off_mode)
1332
{
1333 1334
	int c = 0;
	struct gpio_bank *bank;
1335

1336
	list_for_each_entry(bank, &omap_gpio_list, node) {
1337
		u32 l1 = 0, l2 = 0;
1338
		int j;
1339

1340 1341 1342 1343
		/* TODO: Do not use cpu_is_omap34xx */
		if ((cpu_is_omap34xx()) && (bank->id == 0))
			continue;

1344
		for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
1345 1346
			clk_disable(bank->dbck);

1347
		if (!off_mode)
1348 1349 1350 1351 1352
			continue;

		/* If going to OFF, remove triggering for all
		 * non-wakeup GPIOs.  Otherwise spurious IRQs will be
		 * generated.  See OMAP2420 Errata item 1.101. */
1353 1354
		if (!(bank->enabled_non_wakeup_gpios))
			continue;
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373

		if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
			bank->saved_datain = __raw_readl(bank->base +
					OMAP24XX_GPIO_DATAIN);
			l1 = __raw_readl(bank->base +
					OMAP24XX_GPIO_FALLINGDETECT);
			l2 = __raw_readl(bank->base +
					OMAP24XX_GPIO_RISINGDETECT);
		}

		if (cpu_is_omap44xx()) {
			bank->saved_datain = __raw_readl(bank->base +
						OMAP4_GPIO_DATAIN);
			l1 = __raw_readl(bank->base +
						OMAP4_GPIO_FALLINGDETECT);
			l2 = __raw_readl(bank->base +
						OMAP4_GPIO_RISINGDETECT);
		}

1374 1375 1376 1377
		bank->saved_fallingdetect = l1;
		bank->saved_risingdetect = l2;
		l1 &= ~bank->enabled_non_wakeup_gpios;
		l2 &= ~bank->enabled_non_wakeup_gpios;
1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390

		if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
			__raw_writel(l1, bank->base +
					OMAP24XX_GPIO_FALLINGDETECT);
			__raw_writel(l2, bank->base +
					OMAP24XX_GPIO_RISINGDETECT);
		}

		if (cpu_is_omap44xx()) {
			__raw_writel(l1, bank->base + OMAP4_GPIO_FALLINGDETECT);
			__raw_writel(l2, bank->base + OMAP4_GPIO_RISINGDETECT);
		}

1391 1392 1393 1394 1395 1396 1397 1398 1399
		c++;
	}
	if (!c) {
		workaround_enabled = 0;
		return;
	}
	workaround_enabled = 1;
}

1400
void omap2_gpio_resume_after_idle(void)
1401
{
1402
	struct gpio_bank *bank;
1403

1404
	list_for_each_entry(bank, &omap_gpio_list, node) {
1405
		u32 l = 0, gen, gen0, gen1;
1406
		int j;
1407

1408 1409 1410 1411
		/* TODO: Do not use cpu_is_omap34xx */
		if ((cpu_is_omap34xx()) && (bank->id == 0))
			continue;

1412
		for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
1413 1414
			clk_enable(bank->dbck);

1415 1416 1417
		if (!workaround_enabled)
			continue;

1418 1419
		if (!(bank->enabled_non_wakeup_gpios))
			continue;
1420 1421 1422

		if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
			__raw_writel(bank->saved_fallingdetect,
1423
				 bank->base + OMAP24XX_GPIO_FALLINGDETECT);
1424
			__raw_writel(bank->saved_risingdetect,
1425
				 bank->base + OMAP24XX_GPIO_RISINGDETECT);
1426 1427 1428 1429 1430
			l = __raw_readl(bank->base + OMAP24XX_GPIO_DATAIN);
		}

		if (cpu_is_omap44xx()) {
			__raw_writel(bank->saved_fallingdetect,
1431
				 bank->base + OMAP4_GPIO_FALLINGDETECT);
1432
			__raw_writel(bank->saved_risingdetect,
1433
				 bank->base + OMAP4_GPIO_RISINGDETECT);
1434 1435 1436
			l = __raw_readl(bank->base + OMAP4_GPIO_DATAIN);
		}

1437 1438 1439 1440 1441
		/* 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;
T
Tero Kristo 已提交
1442
		l &= bank->enabled_non_wakeup_gpios;
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460

		/*
		 * No need to generate IRQs for the rising edge for gpio IRQs
		 * configured with falling edge only; and vice versa.
		 */
		gen0 = l & bank->saved_fallingdetect;
		gen0 &= bank->saved_datain;

		gen1 = l & bank->saved_risingdetect;
		gen1 &= ~(bank->saved_datain);

		/* FIXME: Consider GPIO IRQs with level detections properly! */
		gen = l & (~(bank->saved_fallingdetect) &
				~(bank->saved_risingdetect));
		/* Consider all GPIO IRQs needed to be updated */
		gen |= gen0 | gen1;

		if (gen) {
1461
			u32 old0, old1;
1462

1463
			if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1464 1465 1466 1467
				old0 = __raw_readl(bank->base +
					OMAP24XX_GPIO_LEVELDETECT0);
				old1 = __raw_readl(bank->base +
					OMAP24XX_GPIO_LEVELDETECT1);
1468
				__raw_writel(old0 | gen, bank->base +
1469
					OMAP24XX_GPIO_LEVELDETECT0);
1470
				__raw_writel(old1 | gen, bank->base +
1471
					OMAP24XX_GPIO_LEVELDETECT1);
1472
				__raw_writel(old0, bank->base +
1473
					OMAP24XX_GPIO_LEVELDETECT0);
1474
				__raw_writel(old1, bank->base +
1475 1476 1477 1478 1479
					OMAP24XX_GPIO_LEVELDETECT1);
			}

			if (cpu_is_omap44xx()) {
				old0 = __raw_readl(bank->base +
1480
						OMAP4_GPIO_LEVELDETECT0);
1481
				old1 = __raw_readl(bank->base +
1482
						OMAP4_GPIO_LEVELDETECT1);
1483
				__raw_writel(old0 | l, bank->base +
1484
						OMAP4_GPIO_LEVELDETECT0);
1485
				__raw_writel(old1 | l, bank->base +
1486
						OMAP4_GPIO_LEVELDETECT1);
1487
				__raw_writel(old0, bank->base +
1488
						OMAP4_GPIO_LEVELDETECT0);
1489
				__raw_writel(old1, bank->base +
1490
						OMAP4_GPIO_LEVELDETECT1);
1491
			}
1492 1493 1494 1495 1496
		}
	}

}

1497 1498
#endif

1499
#ifdef CONFIG_ARCH_OMAP3
1500 1501
void omap_gpio_save_context(void)
{
1502 1503 1504 1505 1506 1507 1508 1509
	struct gpio_bank *bank;
	int i = 0;

	list_for_each_entry(bank, &omap_gpio_list, node) {
		i++;

		if (bank->id == 0)
			continue;
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535

		gpio_context[i].irqenable1 =
			__raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE1);
		gpio_context[i].irqenable2 =
			__raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE2);
		gpio_context[i].wake_en =
			__raw_readl(bank->base + OMAP24XX_GPIO_WAKE_EN);
		gpio_context[i].ctrl =
			__raw_readl(bank->base + OMAP24XX_GPIO_CTRL);
		gpio_context[i].oe =
			__raw_readl(bank->base + OMAP24XX_GPIO_OE);
		gpio_context[i].leveldetect0 =
			__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0);
		gpio_context[i].leveldetect1 =
			__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
		gpio_context[i].risingdetect =
			__raw_readl(bank->base + OMAP24XX_GPIO_RISINGDETECT);
		gpio_context[i].fallingdetect =
			__raw_readl(bank->base + OMAP24XX_GPIO_FALLINGDETECT);
		gpio_context[i].dataout =
			__raw_readl(bank->base + OMAP24XX_GPIO_DATAOUT);
	}
}

void omap_gpio_restore_context(void)
{
1536 1537 1538 1539 1540 1541 1542 1543
	struct gpio_bank *bank;
	int i = 0;

	list_for_each_entry(bank, &omap_gpio_list, node) {
		i++;

		if (bank->id == 0)
			continue;
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568

		__raw_writel(gpio_context[i].irqenable1,
				bank->base + OMAP24XX_GPIO_IRQENABLE1);
		__raw_writel(gpio_context[i].irqenable2,
				bank->base + OMAP24XX_GPIO_IRQENABLE2);
		__raw_writel(gpio_context[i].wake_en,
				bank->base + OMAP24XX_GPIO_WAKE_EN);
		__raw_writel(gpio_context[i].ctrl,
				bank->base + OMAP24XX_GPIO_CTRL);
		__raw_writel(gpio_context[i].oe,
				bank->base + OMAP24XX_GPIO_OE);
		__raw_writel(gpio_context[i].leveldetect0,
				bank->base + OMAP24XX_GPIO_LEVELDETECT0);
		__raw_writel(gpio_context[i].leveldetect1,
				bank->base + OMAP24XX_GPIO_LEVELDETECT1);
		__raw_writel(gpio_context[i].risingdetect,
				bank->base + OMAP24XX_GPIO_RISINGDETECT);
		__raw_writel(gpio_context[i].fallingdetect,
				bank->base + OMAP24XX_GPIO_FALLINGDETECT);
		__raw_writel(gpio_context[i].dataout,
				bank->base + OMAP24XX_GPIO_DATAOUT);
	}
}
#endif

1569 1570 1571 1572 1573 1574 1575
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
	.driver		= {
		.name	= "omap_gpio",
	},
};

1576
/*
1577 1578 1579
 * gpio driver register needs to be done before
 * machine_init functions access gpio APIs.
 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1580
 */
1581
static int __init omap_gpio_drv_reg(void)
1582
{
1583
	return platform_driver_register(&omap_gpio_driver);
1584
}
1585
postcore_initcall(omap_gpio_drv_reg);
1586

1587 1588
static int __init omap_gpio_sysinit(void)
{
D
David Brownell 已提交
1589

1590
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
1591 1592
	if (cpu_is_omap16xx() || cpu_class_is_omap2())
		register_syscore_ops(&omap_gpio_syscore_ops);
1593 1594
#endif

1595
	return 0;
1596 1597 1598
}

arch_initcall(omap_gpio_sysinit);