gpio-omap.c 34.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 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 34 35 36 37 38 39 40 41 42 43 44 45
struct gpio_regs {
	u32 irqenable1;
	u32 irqenable2;
	u32 wake_en;
	u32 ctrl;
	u32 oe;
	u32 leveldetect0;
	u32 leveldetect1;
	u32 risingdetect;
	u32 fallingdetect;
	u32 dataout;
};

46
struct gpio_bank {
47
	struct list_head node;
T
Tony Lindgren 已提交
48
	unsigned long pbase;
49
	void __iomem *base;
50 51
	u16 irq;
	u16 virtual_irq_start;
52 53 54
	int method;
	u32 suspend_wakeup;
	u32 saved_wakeup;
55 56
	u32 non_wakeup_gpios;
	u32 enabled_non_wakeup_gpios;
57
	struct gpio_regs context;
58 59 60
	u32 saved_datain;
	u32 saved_fallingdetect;
	u32 saved_risingdetect;
61
	u32 level_mask;
62
	u32 toggle_mask;
63
	spinlock_t lock;
D
David Brownell 已提交
64
	struct gpio_chip chip;
65
	struct clk *dbck;
C
Charulatha V 已提交
66
	u32 mod_usage;
67
	u32 dbck_enable_mask;
68 69
	struct device *dev;
	bool dbck_flag;
70
	bool loses_context;
71
	int stride;
72
	u32 width;
73
	int context_loss_count;
74
	u16 id;
75 76

	void (*set_dataout)(struct gpio_bank *bank, int gpio, int enable);
77
	int (*get_context_loss_count)(struct device *dev);
78 79

	struct omap_gpio_reg_offs *regs;
80 81
};

82 83
#define GPIO_INDEX(bank, gpio) (gpio % bank->width)
#define GPIO_BIT(bank, gpio) (1 << GPIO_INDEX(bank, gpio))
84
#define GPIO_MOD_CTRL_BIT	BIT(0)
85 86 87

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

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

100 101 102

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

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

	__raw_writel(l, reg);
}

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

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

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

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

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

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

144 145 146 147 148 149 150 151 152 153 154
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);
}
155

156 157 158 159 160 161 162 163 164 165 166 167
/**
 * _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)
{
168
	void __iomem		*reg;
169 170 171
	u32			val;
	u32			l;

172 173 174
	if (!bank->dbck_flag)
		return;

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

182
	l = GPIO_BIT(bank, gpio);
183

184
	reg = bank->base + bank->regs->debounce;
185 186
	__raw_writel(debounce, reg);

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

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

	__raw_writel(val, reg);
}

202
static inline void set_gpio_trigger(struct gpio_bank *bank, int gpio,
203
						int trigger)
204
{
205
	void __iomem *base = bank->base;
206 207
	u32 gpio_bit = 1 << gpio;

208 209 210 211 212 213 214 215 216 217 218 219
	_gpio_rmw(base, bank->regs->leveldetect0, gpio_bit,
		  trigger & IRQ_TYPE_LEVEL_LOW);
	_gpio_rmw(base, bank->regs->leveldetect1, gpio_bit,
		  trigger & IRQ_TYPE_LEVEL_HIGH);
	_gpio_rmw(base, bank->regs->risingdetect, gpio_bit,
		  trigger & IRQ_TYPE_EDGE_RISING);
	_gpio_rmw(base, bank->regs->fallingdetect, gpio_bit,
		  trigger & IRQ_TYPE_EDGE_FALLING);

	if (likely(!(bank->non_wakeup_gpios & gpio_bit)))
		_gpio_rmw(base, bank->regs->wkup_en, gpio_bit, trigger != 0);

220
	/* This part needs to be executed always for OMAP{34xx, 44xx} */
221 222 223 224 225 226 227
	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;
		}

228 229 230 231 232 233 234
		/*
		 * 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)
235 236 237 238
			bank->enabled_non_wakeup_gpios |= gpio_bit;
		else
			bank->enabled_non_wakeup_gpios &= ~gpio_bit;
	}
239

240
exit:
241 242 243
	bank->level_mask =
		__raw_readl(bank->base + bank->regs->leveldetect0) |
		__raw_readl(bank->base + bank->regs->leveldetect1);
244 245
}

246
#ifdef CONFIG_ARCH_OMAP1
247 248 249 250 251 252 253 254 255
/*
 * 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;

256
	if (!bank->regs->irqctrl)
257
		return;
258 259

	reg += bank->regs->irqctrl;
260 261 262 263 264 265 266 267 268

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

	__raw_writel(l, reg);
}
269 270
#else
static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) {}
271
#endif
272

273 274 275
static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
{
	void __iomem *reg = bank->base;
276
	void __iomem *base = bank->base;
277
	u32 l = 0;
278

279 280 281 282 283
	if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
		set_gpio_trigger(bank, gpio, trigger);
	} else if (bank->regs->irqctrl) {
		reg += bank->regs->irqctrl;

284
		l = __raw_readl(reg);
285
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
286
			bank->toggle_mask |= 1 << gpio;
287
		if (trigger & IRQ_TYPE_EDGE_RISING)
288
			l |= 1 << gpio;
289
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
290
			l &= ~(1 << gpio);
291
		else
292 293 294 295
			return -EINVAL;

		__raw_writel(l, reg);
	} else if (bank->regs->edgectrl1) {
296
		if (gpio & 0x08)
297
			reg += bank->regs->edgectrl2;
298
		else
299 300
			reg += bank->regs->edgectrl1;

301 302 303
		gpio &= 0x07;
		l = __raw_readl(reg);
		l &= ~(3 << (gpio << 1));
304
		if (trigger & IRQ_TYPE_EDGE_RISING)
305
			l |= 2 << (gpio << 1);
306
		if (trigger & IRQ_TYPE_EDGE_FALLING)
307
			l |= 1 << (gpio << 1);
308 309 310 311

		/* Enable wake-up during idle for dynamic tick */
		_gpio_rmw(base, bank->regs->wkup_en, 1 << gpio, trigger);
		__raw_writel(l, reg);
312
	}
313
	return 0;
314 315
}

316
static int gpio_irq_type(struct irq_data *d, unsigned type)
317 318
{
	struct gpio_bank *bank;
319 320
	unsigned gpio;
	int retval;
D
David Brownell 已提交
321
	unsigned long flags;
322

323 324
	if (!cpu_class_is_omap2() && d->irq > IH_MPUIO_BASE)
		gpio = OMAP_MPUIO(d->irq - IH_MPUIO_BASE);
325
	else
326
		gpio = d->irq - IH_GPIO_BASE;
327

328
	if (type & ~IRQ_TYPE_SENSE_MASK)
329
		return -EINVAL;
330

331 332 333 334
	bank = irq_data_get_irq_chip_data(d);

	if (!bank->regs->leveldetect0 &&
		(type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
335 336
		return -EINVAL;

D
David Brownell 已提交
337
	spin_lock_irqsave(&bank->lock, flags);
338
	retval = _set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), type);
D
David Brownell 已提交
339
	spin_unlock_irqrestore(&bank->lock, flags);
340 341

	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
T
Thomas Gleixner 已提交
342
		__irq_set_handler_locked(d->irq, handle_level_irq);
343
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
T
Thomas Gleixner 已提交
344
		__irq_set_handler_locked(d->irq, handle_edge_irq);
345

346
	return retval;
347 348 349 350
}

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

353
	reg += bank->regs->irqstatus;
354
	__raw_writel(gpio_mask, reg);
355 356

	/* Workaround for clearing DSP GPIO interrupts to allow retention */
357 358
	if (bank->regs->irqstatus2) {
		reg = bank->base + bank->regs->irqstatus2;
359
		__raw_writel(gpio_mask, reg);
360
	}
361 362 363

	/* Flush posted write for the irq status to avoid spurious interrupts */
	__raw_readl(reg);
364 365 366 367
}

static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
{
368
	_clear_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
369 370
}

371 372 373
static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
{
	void __iomem *reg = bank->base;
374
	u32 l;
375
	u32 mask = (1 << bank->width) - 1;
376

377
	reg += bank->regs->irqenable;
378
	l = __raw_readl(reg);
379
	if (bank->regs->irqenable_inv)
380 381 382
		l = ~l;
	l &= mask;
	return l;
383 384
}

385
static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
386
{
387
	void __iomem *reg = bank->base;
388 389
	u32 l;

390 391 392 393 394
	if (bank->regs->set_irqenable) {
		reg += bank->regs->set_irqenable;
		l = gpio_mask;
	} else {
		reg += bank->regs->irqenable;
395
		l = __raw_readl(reg);
396 397
		if (bank->regs->irqenable_inv)
			l &= ~gpio_mask;
398 399
		else
			l |= gpio_mask;
400 401 402 403 404 405 406 407 408 409 410 411
	}

	__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;
412
		l = gpio_mask;
413 414
	} else {
		reg += bank->regs->irqenable;
415
		l = __raw_readl(reg);
416
		if (bank->regs->irqenable_inv)
417
			l |= gpio_mask;
418
		else
419
			l &= ~gpio_mask;
420
	}
421

422 423 424 425 426
	__raw_writel(l, reg);
}

static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
{
427
	_enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio));
428 429
}

430 431 432 433 434 435 436 437 438 439
/*
 * 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)
{
440 441
	u32 gpio_bit = GPIO_BIT(bank, gpio);
	unsigned long flags;
D
David Brownell 已提交
442

443 444 445
	if (bank->non_wakeup_gpios & gpio_bit) {
		dev_err(bank->dev, 
			"Unable to modify wakeup on non-wakeup GPIO%d\n", gpio);
446 447
		return -EINVAL;
	}
448 449 450 451 452 453 454 455 456 457

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

460 461
static void _reset_gpio(struct gpio_bank *bank, int gpio)
{
462
	_set_gpio_direction(bank, GPIO_INDEX(bank, gpio), 1);
463 464
	_set_gpio_irqenable(bank, gpio, 0);
	_clear_gpio_irqstatus(bank, gpio);
465
	_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
466 467
}

468
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
469
static int gpio_wake_enable(struct irq_data *d, unsigned int enable)
470
{
471
	unsigned int gpio = d->irq - IH_GPIO_BASE;
472 473 474
	struct gpio_bank *bank;
	int retval;

475
	bank = irq_data_get_irq_chip_data(d);
476
	retval = _set_gpio_wakeup(bank, gpio, enable);
477 478 479 480

	return retval;
}

481
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
482
{
483
	struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
D
David Brownell 已提交
484
	unsigned long flags;
D
David Brownell 已提交
485

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

488 489 490
	/* Set trigger to none. You need to enable the desired trigger with
	 * request_irq() or set_irq_type().
	 */
491
	_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
492

493
#ifdef CONFIG_ARCH_OMAP15XX
494
	if (bank->method == METHOD_GPIO_1510) {
495
		void __iomem *reg;
496

497
		/* Claim the pin for MPU */
498
		reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
499
		__raw_writel(__raw_readl(reg) | (1 << offset), reg);
500 501
	}
#endif
502 503 504 505 506 507 508 509
	if (bank->regs->ctrl && !bank->mod_usage) {
		void __iomem *reg = bank->base + bank->regs->ctrl;
		u32 ctrl;

		ctrl = __raw_readl(reg);
		/* Module is enabled, clocks are not gated */
		ctrl &= ~GPIO_MOD_CTRL_BIT;
		__raw_writel(ctrl, reg);
C
Charulatha V 已提交
510
	}
511 512 513

	bank->mod_usage |= 1 << offset;

D
David Brownell 已提交
514
	spin_unlock_irqrestore(&bank->lock, flags);
515 516 517 518

	return 0;
}

519
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
520
{
521
	struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
522
	void __iomem *base = bank->base;
D
David Brownell 已提交
523
	unsigned long flags;
524

D
David Brownell 已提交
525
	spin_lock_irqsave(&bank->lock, flags);
526 527

	if (bank->regs->wkup_en)
528
		/* Disable wake-up during idle for dynamic tick */
529 530
		_gpio_rmw(base, bank->regs->wkup_en, 1 << offset, 0);

531 532 533 534 535 536 537 538 539 540
	bank->mod_usage &= ~(1 << offset);

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

		ctrl = __raw_readl(reg);
		/* Module is disabled, clocks are gated */
		ctrl |= GPIO_MOD_CTRL_BIT;
		__raw_writel(ctrl, reg);
C
Charulatha V 已提交
541
	}
542

543
	_reset_gpio(bank, bank->chip.base + offset);
D
David Brownell 已提交
544
	spin_unlock_irqrestore(&bank->lock, flags);
545 546 547 548 549 550 551 552 553 554 555
}

/*
 * 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.
 */
556
static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
557
{
558
	void __iomem *isr_reg = NULL;
559
	u32 isr;
560
	unsigned int gpio_irq, gpio_index;
561
	struct gpio_bank *bank;
562 563
	u32 retrigger = 0;
	int unmasked = 0;
564
	struct irq_chip *chip = irq_desc_get_chip(desc);
565

566
	chained_irq_enter(chip, desc);
567

T
Thomas Gleixner 已提交
568
	bank = irq_get_handler_data(irq);
569
	isr_reg = bank->base + bank->regs->irqstatus;
570 571 572 573

	if (WARN_ON(!isr_reg))
		goto exit;

574
	while(1) {
575
		u32 isr_saved, level_mask = 0;
576
		u32 enabled;
577

578 579
		enabled = _get_gpio_irqbank_mask(bank);
		isr_saved = isr = __raw_readl(isr_reg) & enabled;
580 581 582 583

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

584
		if (bank->level_mask)
585
			level_mask = bank->level_mask & enabled;
586 587 588 589

		/* clear edge sensitive interrupts before handler(s) are
		called so that we don't miss any interrupt occurred while
		executing them */
590
		_disable_gpio_irqbank(bank, isr_saved & ~level_mask);
591
		_clear_gpio_irqbank(bank, isr_saved & ~level_mask);
592
		_enable_gpio_irqbank(bank, isr_saved & ~level_mask);
593 594 595

		/* if there is only edge sensitive GPIO pin interrupts
		configured, we could unmask GPIO bank interrupt immediately */
596 597
		if (!level_mask && !unmasked) {
			unmasked = 1;
598
			chained_irq_exit(chip, desc);
599
		}
600

601 602
		isr |= retrigger;
		retrigger = 0;
603 604 605 606 607
		if (!isr)
			break;

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

610 611
			if (!(isr & 1))
				continue;
612

613 614 615 616 617 618 619 620 621 622 623 624
#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

625
			generic_handle_irq(gpio_irq);
626
		}
627
	}
628 629 630 631
	/* 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 */
632
exit:
633
	if (!unmasked)
634
		chained_irq_exit(chip, desc);
635 636
}

637
static void gpio_irq_shutdown(struct irq_data *d)
638
{
639 640
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
641
	unsigned long flags;
642

643
	spin_lock_irqsave(&bank->lock, flags);
644
	_reset_gpio(bank, gpio);
645
	spin_unlock_irqrestore(&bank->lock, flags);
646 647
}

648
static void gpio_ack_irq(struct irq_data *d)
649
{
650 651
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
652 653 654 655

	_clear_gpio_irqstatus(bank, gpio);
}

656
static void gpio_mask_irq(struct irq_data *d)
657
{
658 659
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
660
	unsigned long flags;
661

662
	spin_lock_irqsave(&bank->lock, flags);
663
	_set_gpio_irqenable(bank, gpio, 0);
664
	_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), IRQ_TYPE_NONE);
665
	spin_unlock_irqrestore(&bank->lock, flags);
666 667
}

668
static void gpio_unmask_irq(struct irq_data *d)
669
{
670 671
	unsigned int gpio = d->irq - IH_GPIO_BASE;
	struct gpio_bank *bank = irq_data_get_irq_chip_data(d);
672
	unsigned int irq_mask = GPIO_BIT(bank, gpio);
673
	u32 trigger = irqd_get_trigger_type(d);
674
	unsigned long flags;
675

676
	spin_lock_irqsave(&bank->lock, flags);
677
	if (trigger)
678
		_set_gpio_triggering(bank, GPIO_INDEX(bank, gpio), trigger);
679 680 681 682 683 684 685

	/* 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);
	}
686

K
Kevin Hilman 已提交
687
	_set_gpio_irqenable(bank, gpio, 1);
688
	spin_unlock_irqrestore(&bank->lock, flags);
689 690
}

691 692
static struct irq_chip gpio_irq_chip = {
	.name		= "GPIO",
693 694 695 696 697 698
	.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,
699 700 701 702 703 704 705 706
};

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

#ifdef CONFIG_ARCH_OMAP1

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

D
David Brownell 已提交
707 708 709 710
#ifdef CONFIG_ARCH_OMAP16XX

#include <linux/platform_device.h>

711
static int omap_mpuio_suspend_noirq(struct device *dev)
D
David Brownell 已提交
712
{
713
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
714
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
715 716
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
717
	unsigned long		flags;
D
David Brownell 已提交
718

D
David Brownell 已提交
719
	spin_lock_irqsave(&bank->lock, flags);
D
David Brownell 已提交
720 721
	bank->saved_wakeup = __raw_readl(mask_reg);
	__raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
D
David Brownell 已提交
722
	spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
723 724 725 726

	return 0;
}

727
static int omap_mpuio_resume_noirq(struct device *dev)
D
David Brownell 已提交
728
{
729
	struct platform_device *pdev = to_platform_device(dev);
D
David Brownell 已提交
730
	struct gpio_bank	*bank = platform_get_drvdata(pdev);
731 732
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
733
	unsigned long		flags;
D
David Brownell 已提交
734

D
David Brownell 已提交
735
	spin_lock_irqsave(&bank->lock, flags);
D
David Brownell 已提交
736
	__raw_writel(bank->saved_wakeup, mask_reg);
D
David Brownell 已提交
737
	spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
738 739 740 741

	return 0;
}

742
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
743 744 745 746
	.suspend_noirq = omap_mpuio_suspend_noirq,
	.resume_noirq = omap_mpuio_resume_noirq,
};

747
/* use platform_driver for this. */
D
David Brownell 已提交
748 749 750
static struct platform_driver omap_mpuio_driver = {
	.driver		= {
		.name	= "mpuio",
751
		.pm	= &omap_mpuio_dev_pm_ops,
D
David Brownell 已提交
752 753 754 755 756 757 758 759 760 761 762 763
	},
};

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

764
static inline void mpuio_init(struct gpio_bank *bank)
D
David Brownell 已提交
765
{
766
	platform_set_drvdata(&omap_mpuio_device, bank);
767

D
David Brownell 已提交
768 769 770 771 772
	if (platform_driver_register(&omap_mpuio_driver) == 0)
		(void) platform_device_register(&omap_mpuio_device);
}

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

776 777 778
#else

#define bank_is_mpuio(bank)	0
779
static inline void mpuio_init(struct gpio_bank *bank) {}
780 781 782 783

#endif

/*---------------------------------------------------------------------*/
784

D
David Brownell 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
/* 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;
}

801 802
static int gpio_is_input(struct gpio_bank *bank, int mask)
{
803
	void __iomem *reg = bank->base + bank->regs->direction;
804 805 806 807

	return __raw_readl(reg) & mask;
}

D
David Brownell 已提交
808 809
static int gpio_get(struct gpio_chip *chip, unsigned offset)
{
810 811 812 813 814 815
	struct gpio_bank *bank;
	void __iomem *reg;
	int gpio;
	u32 mask;

	gpio = chip->base + offset;
C
Charulatha V 已提交
816
	bank = container_of(chip, struct gpio_bank, chip);
817
	reg = bank->base;
818
	mask = GPIO_BIT(bank, gpio);
819 820 821 822 823

	if (gpio_is_input(bank, mask))
		return _get_gpio_datain(bank, gpio);
	else
		return _get_gpio_dataout(bank, gpio);
D
David Brownell 已提交
824 825 826 827 828 829 830 831 832
}

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);
833
	bank->set_dataout(bank, offset, value);
D
David Brownell 已提交
834 835 836 837 838
	_set_gpio_direction(bank, offset, 0);
	spin_unlock_irqrestore(&bank->lock, flags);
	return 0;
}

839 840 841 842 843 844 845
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);
846 847 848 849 850 851 852

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

853 854 855 856 857 858 859
	spin_lock_irqsave(&bank->lock, flags);
	_set_gpio_debounce(bank, offset, debounce);
	spin_unlock_irqrestore(&bank->lock, flags);

	return 0;
}

D
David Brownell 已提交
860 861 862 863 864 865 866
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);
867
	bank->set_dataout(bank, offset, value);
D
David Brownell 已提交
868 869 870
	spin_unlock_irqrestore(&bank->lock, flags);
}

871 872 873 874 875 876 877 878
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 已提交
879 880
/*---------------------------------------------------------------------*/

881
static void __init omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
882
{
883
	static bool called;
T
Tony Lindgren 已提交
884 885
	u32 rev;

886
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
887 888
		return;

889 890
	rev = __raw_readw(bank->base + bank->regs->revision);
	pr_info("OMAP GPIO hardware version %d.%d\n",
T
Tony Lindgren 已提交
891
		(rev >> 4) & 0x0f, rev & 0x0f);
892 893

	called = true;
T
Tony Lindgren 已提交
894 895
}

896 897 898 899 900
/* 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;

901
/* TODO: Cleanup cpu_is_* checks */
902
static void omap_gpio_mod_init(struct gpio_bank *bank)
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
{
	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_class_is_omap1()) {
924
		if (bank_is_mpuio(bank)) {
925 926
			__raw_writew(0xffff, bank->base +
				OMAP_MPUIO_GPIO_MASKIT / bank->stride);
927 928
			mpuio_init(bank);
		}
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958
		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);
		}
	}
}

959 960 961 962 963 964 965 966 967
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);
968 969 970 971 972
	if (!gc) {
		dev_err(bank->dev, "Memory alloc failed for gc\n");
		return;
	}

973 974 975 976 977 978
	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;
979 980

	if (bank->regs->wkup_en)
981 982 983 984 985 986 987
		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);
}

988
static void __devinit omap_gpio_chip_init(struct gpio_bank *bank)
989
{
990
	int j;
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
	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
1009 1010
		if (bank->regs->wkup_en)
			bank->chip.dev = &omap_mpuio_device.dev;
1011 1012 1013 1014 1015
#endif
		bank->chip.base = OMAP_MPUIO(0);
	} else {
		bank->chip.label = "gpio";
		bank->chip.base = gpio;
1016
		gpio += bank->width;
1017
	}
1018
	bank->chip.ngpio = bank->width;
1019 1020 1021 1022

	gpiochip_add(&bank->chip);

	for (j = bank->virtual_irq_start;
1023
		     j < bank->virtual_irq_start + bank->width; j++) {
1024
		irq_set_lockdep_class(j, &gpio_lock_class);
T
Thomas Gleixner 已提交
1025
		irq_set_chip_data(j, bank);
1026 1027 1028
		if (bank_is_mpuio(bank)) {
			omap_mpuio_alloc_gc(bank, j, bank->width);
		} else {
T
Thomas Gleixner 已提交
1029
			irq_set_chip(j, &gpio_irq_chip);
1030 1031 1032
			irq_set_handler(j, handle_simple_irq);
			set_irq_flags(j, IRQF_VALID);
		}
1033
	}
T
Thomas Gleixner 已提交
1034 1035
	irq_set_chained_handler(bank->irq, gpio_irq_handler);
	irq_set_handler_data(bank->irq, bank);
1036 1037
}

1038
static int __devinit omap_gpio_probe(struct platform_device *pdev)
1039
{
1040 1041
	struct omap_gpio_platform_data *pdata;
	struct resource *res;
1042
	struct gpio_bank *bank;
1043
	int ret = 0;
1044

1045 1046 1047
	if (!pdev->dev.platform_data) {
		ret = -EINVAL;
		goto err_exit;
1048 1049
	}

1050 1051 1052 1053 1054 1055
	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;
	}
1056

1057 1058
	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (unlikely(!res)) {
1059 1060 1061 1062
		dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n",
				pdev->id);
		ret = -ENODEV;
		goto err_free;
1063
	}
1064

1065
	bank->irq = res->start;
1066 1067 1068
	bank->id = pdev->id;

	pdata = pdev->dev.platform_data;
1069 1070 1071 1072
	bank->virtual_irq_start = pdata->virtual_irq_start;
	bank->method = pdata->bank_type;
	bank->dev = &pdev->dev;
	bank->dbck_flag = pdata->dbck_flag;
1073
	bank->stride = pdata->bank_stride;
1074
	bank->width = pdata->bank_width;
1075
	bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
1076
	bank->loses_context = pdata->loses_context;
1077
	bank->get_context_loss_count = pdata->get_context_loss_count;
1078 1079 1080 1081 1082 1083
	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 已提交
1084

1085
	spin_lock_init(&bank->lock);
T
Tony Lindgren 已提交
1086

1087 1088 1089
	/* Static mapping, never released */
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (unlikely(!res)) {
1090 1091 1092 1093
		dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n",
				pdev->id);
		ret = -ENODEV;
		goto err_free;
1094
	}
1095

1096 1097
	bank->base = ioremap(res->start, resource_size(res));
	if (!bank->base) {
1098 1099 1100 1101
		dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n",
				pdev->id);
		ret = -ENOMEM;
		goto err_free;
1102 1103
	}

1104 1105 1106
	pm_runtime_enable(bank->dev);
	pm_runtime_get_sync(bank->dev);

1107
	omap_gpio_mod_init(bank);
1108
	omap_gpio_chip_init(bank);
1109
	omap_gpio_show_rev(bank);
T
Tony Lindgren 已提交
1110

1111
	list_add_tail(&bank->node, &omap_gpio_list);
1112

1113 1114 1115 1116 1117 1118
	return ret;

err_free:
	kfree(bank);
err_exit:
	return ret;
1119 1120
}

1121
static int omap_gpio_suspend(void)
1122
{
1123
	struct gpio_bank *bank;
1124

1125
	list_for_each_entry(bank, &omap_gpio_list, node) {
1126
		void __iomem *base = bank->base;
1127
		void __iomem *wake_status;
D
David Brownell 已提交
1128
		unsigned long flags;
1129

1130 1131 1132 1133
		if (!bank->regs->wkup_en)
			return 0;

		wake_status = bank->base + bank->regs->wkup_en;
1134

D
David Brownell 已提交
1135
		spin_lock_irqsave(&bank->lock, flags);
1136
		bank->saved_wakeup = __raw_readl(wake_status);
1137 1138
		_gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
		_gpio_rmw(base, bank->regs->wkup_en, bank->suspend_wakeup, 1);
D
David Brownell 已提交
1139
		spin_unlock_irqrestore(&bank->lock, flags);
1140 1141 1142 1143 1144
	}

	return 0;
}

1145
static void omap_gpio_resume(void)
1146
{
1147
	struct gpio_bank *bank;
1148

1149
	list_for_each_entry(bank, &omap_gpio_list, node) {
1150
		void __iomem *base = bank->base;
D
David Brownell 已提交
1151
		unsigned long flags;
1152

1153 1154
		if (!bank->regs->wkup_en)
			return;
1155

D
David Brownell 已提交
1156
		spin_lock_irqsave(&bank->lock, flags);
1157 1158
		_gpio_rmw(base, bank->regs->wkup_en, 0xffffffff, 0);
		_gpio_rmw(base, bank->regs->wkup_en, bank->saved_wakeup, 1);
D
David Brownell 已提交
1159
		spin_unlock_irqrestore(&bank->lock, flags);
1160 1161 1162
	}
}

1163
static struct syscore_ops omap_gpio_syscore_ops = {
1164 1165 1166 1167
	.suspend	= omap_gpio_suspend,
	.resume		= omap_gpio_resume,
};

1168
#ifdef CONFIG_ARCH_OMAP2PLUS
1169

1170 1171
static void omap_gpio_save_context(struct gpio_bank *bank);
static void omap_gpio_restore_context(struct gpio_bank *bank);
1172

1173
void omap2_gpio_prepare_for_idle(int off_mode)
1174
{
1175
	struct gpio_bank *bank;
1176

1177
	list_for_each_entry(bank, &omap_gpio_list, node) {
1178
		u32 l1 = 0, l2 = 0;
1179
		int j;
1180

1181
		if (!bank->loses_context)
1182 1183
			continue;

1184
		for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
1185 1186
			clk_disable(bank->dbck);

1187
		if (!off_mode)
1188 1189 1190 1191 1192
			continue;

		/* If going to OFF, remove triggering for all
		 * non-wakeup GPIOs.  Otherwise spurious IRQs will be
		 * generated.  See OMAP2420 Errata item 1.101. */
1193
		if (!(bank->enabled_non_wakeup_gpios))
1194
			goto save_gpio_context;
1195

1196 1197 1198 1199
		bank->saved_datain = __raw_readl(bank->base +
							bank->regs->datain);
		l1 = __raw_readl(bank->base + bank->regs->fallingdetect);
		l2 = __raw_readl(bank->base + bank->regs->risingdetect);
1200

1201 1202 1203 1204
		bank->saved_fallingdetect = l1;
		bank->saved_risingdetect = l2;
		l1 &= ~bank->enabled_non_wakeup_gpios;
		l2 &= ~bank->enabled_non_wakeup_gpios;
1205

1206 1207
		__raw_writel(l1, bank->base + bank->regs->fallingdetect);
		__raw_writel(l2, bank->base + bank->regs->risingdetect);
1208

1209 1210 1211 1212 1213 1214
save_gpio_context:
		if (bank->get_context_loss_count)
			bank->context_loss_count =
				bank->get_context_loss_count(bank->dev);

		omap_gpio_save_context(bank);
1215 1216 1217
	}
}

1218
void omap2_gpio_resume_after_idle(void)
1219
{
1220
	struct gpio_bank *bank;
1221

1222
	list_for_each_entry(bank, &omap_gpio_list, node) {
1223
		int context_lost_cnt_after;
1224
		u32 l = 0, gen, gen0, gen1;
1225
		int j;
1226

1227
		if (!bank->loses_context)
1228 1229
			continue;

1230
		for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
1231 1232
			clk_enable(bank->dbck);

1233 1234 1235 1236 1237 1238 1239
		if (bank->get_context_loss_count) {
			context_lost_cnt_after =
				bank->get_context_loss_count(bank->dev);
			if (context_lost_cnt_after != bank->context_loss_count
				|| !context_lost_cnt_after)
				omap_gpio_restore_context(bank);
		}
1240

1241 1242
		if (!(bank->enabled_non_wakeup_gpios))
			continue;
1243

1244 1245 1246 1247 1248
		__raw_writel(bank->saved_fallingdetect,
				bank->base + bank->regs->fallingdetect);
		__raw_writel(bank->saved_risingdetect,
				bank->base + bank->regs->risingdetect);
		l = __raw_readl(bank->base + bank->regs->datain);
1249

1250 1251 1252 1253 1254
		/* 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 已提交
1255
		l &= bank->enabled_non_wakeup_gpios;
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273

		/*
		 * 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) {
1274
			u32 old0, old1;
1275

1276 1277 1278 1279 1280
			old0 = __raw_readl(bank->base +
						bank->regs->leveldetect0);
			old1 = __raw_readl(bank->base +
						bank->regs->leveldetect1);

1281
			if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
1282 1283
				old0 |= gen;
				old1 |= gen;
1284 1285 1286
			}

			if (cpu_is_omap44xx()) {
1287 1288
				old0 |= l;
				old1 |= l;
1289
			}
1290 1291 1292 1293
			__raw_writel(old0, bank->base +
						bank->regs->leveldetect0);
			__raw_writel(old1, bank->base +
						bank->regs->leveldetect1);
1294 1295 1296 1297
		}
	}
}

1298
static void omap_gpio_save_context(struct gpio_bank *bank)
1299
{
1300
	bank->context.irqenable1 =
1301
			__raw_readl(bank->base + bank->regs->irqenable);
1302
	bank->context.irqenable2 =
1303
			__raw_readl(bank->base + bank->regs->irqenable2);
1304
	bank->context.wake_en =
1305 1306 1307
			__raw_readl(bank->base + bank->regs->wkup_en);
	bank->context.ctrl = __raw_readl(bank->base + bank->regs->ctrl);
	bank->context.oe = __raw_readl(bank->base + bank->regs->direction);
1308
	bank->context.leveldetect0 =
1309
			__raw_readl(bank->base + bank->regs->leveldetect0);
1310
	bank->context.leveldetect1 =
1311
			__raw_readl(bank->base + bank->regs->leveldetect1);
1312
	bank->context.risingdetect =
1313
			__raw_readl(bank->base + bank->regs->risingdetect);
1314
	bank->context.fallingdetect =
1315 1316
			__raw_readl(bank->base + bank->regs->fallingdetect);
	bank->context.dataout = __raw_readl(bank->base + bank->regs->dataout);
1317 1318
}

1319
static void omap_gpio_restore_context(struct gpio_bank *bank)
1320
{
1321
	__raw_writel(bank->context.irqenable1,
1322
				bank->base + bank->regs->irqenable);
1323
	__raw_writel(bank->context.irqenable2,
1324
				bank->base + bank->regs->irqenable2);
1325
	__raw_writel(bank->context.wake_en,
1326 1327 1328
				bank->base + bank->regs->wkup_en);
	__raw_writel(bank->context.ctrl, bank->base + bank->regs->ctrl);
	__raw_writel(bank->context.oe, bank->base + bank->regs->direction);
1329
	__raw_writel(bank->context.leveldetect0,
1330
				bank->base + bank->regs->leveldetect0);
1331
	__raw_writel(bank->context.leveldetect1,
1332
				bank->base + bank->regs->leveldetect1);
1333
	__raw_writel(bank->context.risingdetect,
1334
				bank->base + bank->regs->risingdetect);
1335
	__raw_writel(bank->context.fallingdetect,
1336 1337
				bank->base + bank->regs->fallingdetect);
	__raw_writel(bank->context.dataout, bank->base + bank->regs->dataout);
1338 1339 1340
}
#endif

1341 1342 1343 1344 1345 1346 1347
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
	.driver		= {
		.name	= "omap_gpio",
	},
};

1348
/*
1349 1350 1351
 * gpio driver register needs to be done before
 * machine_init functions access gpio APIs.
 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1352
 */
1353
static int __init omap_gpio_drv_reg(void)
1354
{
1355
	return platform_driver_register(&omap_gpio_driver);
1356
}
1357
postcore_initcall(omap_gpio_drv_reg);
1358

1359 1360
static int __init omap_gpio_sysinit(void)
{
D
David Brownell 已提交
1361

1362
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
1363 1364
	if (cpu_is_omap16xx() || cpu_class_is_omap2())
		register_syscore_ops(&omap_gpio_syscore_ops);
1365 1366
#endif

1367
	return 0;
1368 1369 1370
}

arch_initcall(omap_gpio_sysinit);