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

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

32
#define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
33

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

49
struct gpio_bank {
50
	void __iomem *base;
51 52
	const struct omap_gpio_reg_offs *regs;

53
	int irq;
54 55
	u32 non_wakeup_gpios;
	u32 enabled_non_wakeup_gpios;
56
	struct gpio_regs context;
57
	u32 saved_datain;
58
	u32 level_mask;
59
	u32 toggle_mask;
60
	raw_spinlock_t lock;
61
	raw_spinlock_t wa_lock;
D
David Brownell 已提交
62
	struct gpio_chip chip;
63
	struct clk *dbck;
64 65
	struct notifier_block nb;
	unsigned int is_suspended:1;
C
Charulatha V 已提交
66
	u32 mod_usage;
67
	u32 irq_usage;
68
	u32 dbck_enable_mask;
69
	bool dbck_enabled;
70
	bool is_mpuio;
71
	bool dbck_flag;
72
	bool loses_context;
73
	bool context_valid;
74
	int stride;
75
	u32 width;
76
	int context_loss_count;
77

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

82
#define GPIO_MOD_CTRL_BIT	BIT(0)
83

84
#define BANK_USED(bank) (bank->mod_usage || bank->irq_usage)
85
#define LINE_USED(line, offset) (line & (BIT(offset)))
86

87 88
static void omap_gpio_unmask_irq(struct irq_data *d);

89
static inline struct gpio_bank *omap_irq_data_get_bank(struct irq_data *d)
90
{
91
	struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
92
	return gpiochip_get_data(chip);
93 94
}

95
static inline u32 omap_gpio_rmw(void __iomem *reg, u32 mask, bool set)
96
{
97
	u32 val = readl_relaxed(reg);
98

99 100
	if (set)
		val |= mask;
101
	else
102 103 104 105 106 107 108 109 110 111 112 113
		val &= ~mask;

	writel_relaxed(val, reg);

	return val;
}

static void omap_set_gpio_direction(struct gpio_bank *bank, int gpio,
				    int is_input)
{
	bank->context.oe = omap_gpio_rmw(bank->base + bank->regs->direction,
					 BIT(gpio), is_input);
114 115
}

116 117

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

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

132
	writel_relaxed(l, reg);
133 134
}

135
/* set data out value using mask register */
136
static void omap_set_gpio_dataout_mask(struct gpio_bank *bank, unsigned offset,
137
				       int enable)
138
{
139 140
	bank->context.dataout = omap_gpio_rmw(bank->base + bank->regs->dataout,
					      BIT(offset), enable);
141
}
142

143
static inline void omap_gpio_dbck_enable(struct gpio_bank *bank)
144 145
{
	if (bank->dbck_enable_mask && !bank->dbck_enabled) {
146
		clk_enable(bank->dbck);
147
		bank->dbck_enabled = true;
148

149
		writel_relaxed(bank->dbck_enable_mask,
150
			     bank->base + bank->regs->debounce_en);
151 152 153
	}
}

154
static inline void omap_gpio_dbck_disable(struct gpio_bank *bank)
155 156
{
	if (bank->dbck_enable_mask && bank->dbck_enabled) {
157 158 159 160 161
		/*
		 * Disable debounce before cutting it's clock. If debounce is
		 * enabled but the clock is not, GPIO module seems to be unable
		 * to detect events and generate interrupts at least on OMAP3.
		 */
162
		writel_relaxed(0, bank->base + bank->regs->debounce_en);
163

164
		clk_disable(bank->dbck);
165 166 167 168
		bank->dbck_enabled = false;
	}
}

169
/**
170
 * omap2_set_gpio_debounce - low level gpio debounce time
171
 * @bank: the gpio bank we're acting upon
172
 * @offset: the gpio number on this @bank
173 174
 * @debounce: debounce time to use
 *
175 176 177
 * OMAP's debounce time is in 31us steps
 *   <debounce time> = (GPIO_DEBOUNCINGTIME[7:0].DEBOUNCETIME + 1) x 31
 * so we need to convert and round up to the closest unit.
178 179
 *
 * Return: 0 on success, negative error otherwise.
180
 */
181 182
static int omap2_set_gpio_debounce(struct gpio_bank *bank, unsigned offset,
				   unsigned debounce)
183
{
184
	void __iomem		*reg;
185 186
	u32			val;
	u32			l;
187
	bool			enable = !!debounce;
188

189
	if (!bank->dbck_flag)
190
		return -ENOTSUPP;
191

192 193
	if (enable) {
		debounce = DIV_ROUND_UP(debounce, 31) - 1;
194 195
		if ((debounce & OMAP4_GPIO_DEBOUNCINGTIME_MASK) != debounce)
			return -EINVAL;
196
	}
197

198
	l = BIT(offset);
199

200
	clk_enable(bank->dbck);
201
	reg = bank->base + bank->regs->debounce;
202
	writel_relaxed(debounce, reg);
203

204
	val = omap_gpio_rmw(bank->base + bank->regs->debounce_en, l, enable);
205
	bank->dbck_enable_mask = val;
206

207
	clk_disable(bank->dbck);
208 209 210 211 212 213 214 215
	/*
	 * Enable debounce clock per module.
	 * This call is mandatory because in omap_gpio_request() when
	 * *_runtime_get_sync() is called,  _gpio_dbck_enable() within
	 * runtime callbck fails to turn on dbck because dbck_enable_mask
	 * used within _gpio_dbck_enable() is still not initialized at
	 * that point. Therefore we have to enable dbck here.
	 */
216
	omap_gpio_dbck_enable(bank);
217 218 219 220
	if (bank->dbck_enable_mask) {
		bank->context.debounce = debounce;
		bank->context.debounce_en = val;
	}
221 222

	return 0;
223 224
}

225
/**
226
 * omap_clear_gpio_debounce - clear debounce settings for a gpio
227
 * @bank: the gpio bank we're acting upon
228
 * @offset: the gpio number on this @bank
229 230 231 232 233 234
 *
 * If a gpio is using debounce, then clear the debounce enable bit and if
 * this is the only gpio in this bank using debounce, then clear the debounce
 * time too. The debounce clock will also be disabled when calling this function
 * if this is the only gpio in the bank using debounce.
 */
235
static void omap_clear_gpio_debounce(struct gpio_bank *bank, unsigned offset)
236
{
237
	u32 gpio_bit = BIT(offset);
238 239 240 241 242 243 244 245 246

	if (!bank->dbck_flag)
		return;

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

	bank->dbck_enable_mask &= ~gpio_bit;
	bank->context.debounce_en &= ~gpio_bit;
247
        writel_relaxed(bank->context.debounce_en,
248 249 250 251
		     bank->base + bank->regs->debounce_en);

	if (!bank->dbck_enable_mask) {
		bank->context.debounce = 0;
252
		writel_relaxed(bank->context.debounce, bank->base +
253
			     bank->regs->debounce);
254
		clk_disable(bank->dbck);
255 256 257 258
		bank->dbck_enabled = false;
	}
}

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
/*
 * Off mode wake-up capable GPIOs in bank(s) that are in the wakeup domain.
 * See TRM section for GPIO for "Wake-Up Generation" for the list of GPIOs
 * in wakeup domain. If bank->non_wakeup_gpios is not configured, assume none
 * are capable waking up the system from off mode.
 */
static bool omap_gpio_is_off_wakeup_capable(struct gpio_bank *bank, u32 gpio_mask)
{
	u32 no_wake = bank->non_wakeup_gpios;

	if (no_wake)
		return !!(~no_wake & gpio_mask);

	return false;
}

275
static inline void omap_set_gpio_trigger(struct gpio_bank *bank, int gpio,
276
						unsigned trigger)
277
{
278
	void __iomem *base = bank->base;
279
	u32 gpio_bit = BIT(gpio);
280

281
	omap_gpio_rmw(base + bank->regs->leveldetect0, gpio_bit,
282
		      trigger & IRQ_TYPE_LEVEL_LOW);
283
	omap_gpio_rmw(base + bank->regs->leveldetect1, gpio_bit,
284
		      trigger & IRQ_TYPE_LEVEL_HIGH);
285 286 287 288 289 290

	/*
	 * We need the edge detection enabled for to allow the GPIO block
	 * to be woken from idle state.  Set the appropriate edge detection
	 * in addition to the level detection.
	 */
291
	omap_gpio_rmw(base + bank->regs->risingdetect, gpio_bit,
292
		      trigger & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH));
293
	omap_gpio_rmw(base + bank->regs->fallingdetect, gpio_bit,
294
		      trigger & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW));
295

296
	bank->context.leveldetect0 =
297
			readl_relaxed(bank->base + bank->regs->leveldetect0);
298
	bank->context.leveldetect1 =
299
			readl_relaxed(bank->base + bank->regs->leveldetect1);
300
	bank->context.risingdetect =
301
			readl_relaxed(bank->base + bank->regs->risingdetect);
302
	bank->context.fallingdetect =
303
			readl_relaxed(bank->base + bank->regs->fallingdetect);
304

305 306 307
	bank->level_mask = bank->context.leveldetect0 |
			   bank->context.leveldetect1;

308
	/* This part needs to be executed always for OMAP{34xx, 44xx} */
309
	if (!bank->regs->irqctrl && !omap_gpio_is_off_wakeup_capable(bank, gpio)) {
310 311 312 313 314 315 316
		/*
		 * 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)
317 318 319 320
			bank->enabled_non_wakeup_gpios |= gpio_bit;
		else
			bank->enabled_non_wakeup_gpios &= ~gpio_bit;
	}
321 322
}

323 324 325 326
/*
 * 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.
 */
327
static void omap_toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
328
{
329 330
	if (IS_ENABLED(CONFIG_ARCH_OMAP1) && bank->regs->irqctrl) {
		void __iomem *reg = bank->base + bank->regs->irqctrl;
331

332 333
		writel_relaxed(readl_relaxed(reg) ^ BIT(gpio), reg);
	}
334 335
}

336 337
static int omap_set_gpio_triggering(struct gpio_bank *bank, int gpio,
				    unsigned trigger)
338 339 340
{
	void __iomem *reg = bank->base;
	u32 l = 0;
341

342
	if (bank->regs->leveldetect0 && bank->regs->wkup_en) {
343
		omap_set_gpio_trigger(bank, gpio, trigger);
344 345 346
	} else if (bank->regs->irqctrl) {
		reg += bank->regs->irqctrl;

347
		l = readl_relaxed(reg);
348
		if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
349
			bank->toggle_mask |= BIT(gpio);
350
		if (trigger & IRQ_TYPE_EDGE_RISING)
351
			l |= BIT(gpio);
352
		else if (trigger & IRQ_TYPE_EDGE_FALLING)
353
			l &= ~(BIT(gpio));
354
		else
355 356
			return -EINVAL;

357
		writel_relaxed(l, reg);
358
	} else if (bank->regs->edgectrl1) {
359
		if (gpio & 0x08)
360
			reg += bank->regs->edgectrl2;
361
		else
362 363
			reg += bank->regs->edgectrl1;

364
		gpio &= 0x07;
365
		l = readl_relaxed(reg);
366
		l &= ~(3 << (gpio << 1));
367
		if (trigger & IRQ_TYPE_EDGE_RISING)
368
			l |= 2 << (gpio << 1);
369
		if (trigger & IRQ_TYPE_EDGE_FALLING)
370
			l |= BIT(gpio << 1);
371
		writel_relaxed(l, reg);
372
	}
373
	return 0;
374 375
}

376
static void omap_enable_gpio_module(struct gpio_bank *bank, unsigned offset)
377 378 379 380 381
{
	if (bank->regs->pinctrl) {
		void __iomem *reg = bank->base + bank->regs->pinctrl;

		/* Claim the pin for MPU */
382
		writel_relaxed(readl_relaxed(reg) | (BIT(offset)), reg);
383 384 385 386 387 388
	}

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

389
		ctrl = readl_relaxed(reg);
390 391
		/* Module is enabled, clocks are not gated */
		ctrl &= ~GPIO_MOD_CTRL_BIT;
392
		writel_relaxed(ctrl, reg);
393 394 395 396
		bank->context.ctrl = ctrl;
	}
}

397
static void omap_disable_gpio_module(struct gpio_bank *bank, unsigned offset)
398 399 400 401 402
{
	if (bank->regs->ctrl && !BANK_USED(bank)) {
		void __iomem *reg = bank->base + bank->regs->ctrl;
		u32 ctrl;

403
		ctrl = readl_relaxed(reg);
404 405
		/* Module is disabled, clocks are gated */
		ctrl |= GPIO_MOD_CTRL_BIT;
406
		writel_relaxed(ctrl, reg);
407 408 409 410
		bank->context.ctrl = ctrl;
	}
}

411
static int omap_gpio_is_input(struct gpio_bank *bank, unsigned offset)
412 413 414
{
	void __iomem *reg = bank->base + bank->regs->direction;

415
	return readl_relaxed(reg) & BIT(offset);
416 417
}

418
static void omap_gpio_init_irq(struct gpio_bank *bank, unsigned offset)
419 420 421 422 423
{
	if (!LINE_USED(bank->mod_usage, offset)) {
		omap_enable_gpio_module(bank, offset);
		omap_set_gpio_direction(bank, offset, 1);
	}
424
	bank->irq_usage |= BIT(offset);
425 426
}

427
static int omap_gpio_irq_type(struct irq_data *d, unsigned type)
428
{
429
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
430
	int retval;
D
David Brownell 已提交
431
	unsigned long flags;
432
	unsigned offset = d->hwirq;
433

434
	if (type & ~IRQ_TYPE_SENSE_MASK)
435
		return -EINVAL;
436

437 438
	if (!bank->regs->leveldetect0 &&
		(type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
439 440
		return -EINVAL;

441
	raw_spin_lock_irqsave(&bank->lock, flags);
442
	retval = omap_set_gpio_triggering(bank, offset, type);
443
	if (retval) {
444
		raw_spin_unlock_irqrestore(&bank->lock, flags);
445
		goto error;
446
	}
447
	omap_gpio_init_irq(bank, offset);
448
	if (!omap_gpio_is_input(bank, offset)) {
449
		raw_spin_unlock_irqrestore(&bank->lock, flags);
450 451
		retval = -EINVAL;
		goto error;
452
	}
453
	raw_spin_unlock_irqrestore(&bank->lock, flags);
454 455

	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
456
		irq_set_handler_locked(d, handle_level_irq);
457
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
458 459 460 461 462 463 464
		/*
		 * Edge IRQs are already cleared/acked in irq_handler and
		 * not need to be masked, as result handle_edge_irq()
		 * logic is excessed here and may cause lose of interrupts.
		 * So just use handle_simple_irq.
		 */
		irq_set_handler_locked(d, handle_simple_irq);
465

466 467 468
	return 0;

error:
469
	return retval;
470 471
}

472
static void omap_clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
473
{
474
	void __iomem *reg = bank->base;
475

476
	reg += bank->regs->irqstatus;
477
	writel_relaxed(gpio_mask, reg);
478 479

	/* Workaround for clearing DSP GPIO interrupts to allow retention */
480 481
	if (bank->regs->irqstatus2) {
		reg = bank->base + bank->regs->irqstatus2;
482
		writel_relaxed(gpio_mask, reg);
483
	}
484 485

	/* Flush posted write for the irq status to avoid spurious interrupts */
486
	readl_relaxed(reg);
487 488
}

489 490
static inline void omap_clear_gpio_irqstatus(struct gpio_bank *bank,
					     unsigned offset)
491
{
492
	omap_clear_gpio_irqbank(bank, BIT(offset));
493 494
}

495
static u32 omap_get_gpio_irqbank_mask(struct gpio_bank *bank)
496 497
{
	void __iomem *reg = bank->base;
498
	u32 l;
499
	u32 mask = (BIT(bank->width)) - 1;
500

501
	reg += bank->regs->irqenable;
502
	l = readl_relaxed(reg);
503
	if (bank->regs->irqenable_inv)
504 505 506
		l = ~l;
	l &= mask;
	return l;
507 508
}

509 510
static inline void omap_set_gpio_irqenable(struct gpio_bank *bank,
					   unsigned offset, int enable)
511 512
{
	void __iomem *reg = bank->base;
513 514 515 516 517 518 519 520 521 522 523
	u32 gpio_mask = BIT(offset);

	if (bank->regs->set_irqenable && bank->regs->clr_irqenable) {
		if (enable) {
			reg += bank->regs->set_irqenable;
			bank->context.irqenable1 |= gpio_mask;
		} else {
			reg += bank->regs->clr_irqenable;
			bank->context.irqenable1 &= ~gpio_mask;
		}
		writel_relaxed(gpio_mask, reg);
524
	} else {
525 526 527
		bank->context.irqenable1 =
			omap_gpio_rmw(reg + bank->regs->irqenable, gpio_mask,
				      enable ^ bank->regs->irqenable_inv);
528
	}
529 530 531 532 533 534 535 536 537 538 539 540 541

	/*
	 * Program GPIO wakeup along with IRQ enable to satisfy OMAP4430 TRM
	 * note requiring correlation between the IRQ enable registers and
	 * the wakeup registers.  In any case, we want wakeup from idle
	 * enabled for the GPIOs which support this feature.
	 */
	if (bank->regs->wkup_en &&
	    (bank->regs->edgectrl1 || !(bank->non_wakeup_gpios & gpio_mask))) {
		bank->context.wake_en =
			omap_gpio_rmw(bank->base + bank->regs->wkup_en,
				      gpio_mask, enable);
	}
542 543
}

544
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
545
static int omap_gpio_wake_enable(struct irq_data *d, unsigned int enable)
546
{
547
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
548

549
	return irq_set_irq_wake(bank->irq, enable);
550 551
}

552 553 554 555 556 557 558 559 560
/*
 * 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.
 */
561
static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
562
{
563
	void __iomem *isr_reg = NULL;
564
	u32 enabled, isr, edge;
565
	unsigned int bit;
566 567
	struct gpio_bank *bank = gpiobank;
	unsigned long wa_lock_flags;
568
	unsigned long lock_flags;
569

570
	isr_reg = bank->base + bank->regs->irqstatus;
571 572 573
	if (WARN_ON(!isr_reg))
		goto exit;

574 575 576
	if (WARN_ONCE(!pm_runtime_active(bank->chip.parent),
		      "gpio irq%i while runtime suspended?\n", irq))
		return IRQ_NONE;
577

578
	while (1) {
579 580
		raw_spin_lock_irqsave(&bank->lock, lock_flags);

581
		enabled = omap_get_gpio_irqbank_mask(bank);
582
		isr = readl_relaxed(isr_reg) & enabled;
583

584 585 586 587 588 589 590 591
		/*
		 * Clear edge sensitive interrupts before calling handler(s)
		 * so subsequent edge transitions are not missed while the
		 * handlers are running.
		 */
		edge = isr & ~bank->level_mask;
		if (edge)
			omap_clear_gpio_irqbank(bank, edge);
592

593 594
		raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

595 596 597
		if (!isr)
			break;

598 599
		while (isr) {
			bit = __ffs(isr);
600
			isr &= ~(BIT(bit));
601

602
			raw_spin_lock_irqsave(&bank->lock, lock_flags);
603 604 605 606 607 608 609
			/*
			 * 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.
			 */
610
			if (bank->toggle_mask & (BIT(bit)))
611
				omap_toggle_gpio_edge_triggering(bank, bit);
612

613 614
			raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

615 616
			raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);

617
			generic_handle_irq(irq_find_mapping(bank->chip.irq.domain,
618
							    bit));
619 620 621

			raw_spin_unlock_irqrestore(&bank->wa_lock,
						   wa_lock_flags);
622
		}
623
	}
624
exit:
625
	return IRQ_HANDLED;
626 627
}

628 629 630 631
static unsigned int omap_gpio_irq_startup(struct irq_data *d)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
	unsigned long flags;
632
	unsigned offset = d->hwirq;
633

634
	raw_spin_lock_irqsave(&bank->lock, flags);
635 636 637 638 639 640

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

641
	raw_spin_unlock_irqrestore(&bank->lock, flags);
642 643 644 645 646
	omap_gpio_unmask_irq(d);

	return 0;
}

647
static void omap_gpio_irq_shutdown(struct irq_data *d)
648
{
649
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
650
	unsigned long flags;
651
	unsigned offset = d->hwirq;
652

653
	raw_spin_lock_irqsave(&bank->lock, flags);
654
	bank->irq_usage &= ~(BIT(offset));
655
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
656 657
	omap_clear_gpio_irqstatus(bank, offset);
	omap_set_gpio_irqenable(bank, offset, 0);
658 659
	if (!LINE_USED(bank->mod_usage, offset))
		omap_clear_gpio_debounce(bank, offset);
660
	omap_disable_gpio_module(bank, offset);
661
	raw_spin_unlock_irqrestore(&bank->lock, flags);
662 663 664 665 666 667
}

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

668
	pm_runtime_get_sync(bank->chip.parent);
669 670 671 672 673
}

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

675
	pm_runtime_put(bank->chip.parent);
676 677
}

678
static void omap_gpio_mask_irq(struct irq_data *d)
679
{
680
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
681
	unsigned offset = d->hwirq;
682
	unsigned long flags;
683

684
	raw_spin_lock_irqsave(&bank->lock, flags);
685
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
686
	omap_set_gpio_irqenable(bank, offset, 0);
687
	raw_spin_unlock_irqrestore(&bank->lock, flags);
688 689
}

690
static void omap_gpio_unmask_irq(struct irq_data *d)
691
{
692
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
693
	unsigned offset = d->hwirq;
694
	u32 trigger = irqd_get_trigger_type(d);
695
	unsigned long flags;
696

697
	raw_spin_lock_irqsave(&bank->lock, flags);
698 699 700 701 702 703 704
	omap_set_gpio_irqenable(bank, offset, 1);

	/*
	 * For level-triggered GPIOs, clearing must be done after the source
	 * is cleared, thus after the handler has run. OMAP4 needs this done
	 * after enabing the interrupt to clear the wakeup status.
	 */
705 706
	if (bank->regs->leveldetect0 && bank->regs->wkup_en &&
	    trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
707
		omap_clear_gpio_irqstatus(bank, offset);
708

709 710 711
	if (trigger)
		omap_set_gpio_triggering(bank, offset, trigger);

712
	raw_spin_unlock_irqrestore(&bank->lock, flags);
713 714
}

715 716
/*---------------------------------------------------------------------*/

717
static int omap_mpuio_suspend_noirq(struct device *dev)
D
David Brownell 已提交
718
{
719
	struct gpio_bank	*bank = dev_get_drvdata(dev);
720 721
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
722
	unsigned long		flags;
D
David Brownell 已提交
723

724
	raw_spin_lock_irqsave(&bank->lock, flags);
725
	writel_relaxed(0xffff & ~bank->context.wake_en, mask_reg);
726
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
727 728 729 730

	return 0;
}

731
static int omap_mpuio_resume_noirq(struct device *dev)
D
David Brownell 已提交
732
{
733
	struct gpio_bank	*bank = dev_get_drvdata(dev);
734 735
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
736
	unsigned long		flags;
D
David Brownell 已提交
737

738
	raw_spin_lock_irqsave(&bank->lock, flags);
739
	writel_relaxed(bank->context.wake_en, mask_reg);
740
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
741 742 743 744

	return 0;
}

745
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
746 747 748 749
	.suspend_noirq = omap_mpuio_suspend_noirq,
	.resume_noirq = omap_mpuio_resume_noirq,
};

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

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

767
static inline void omap_mpuio_init(struct gpio_bank *bank)
D
David Brownell 已提交
768
{
769
	platform_set_drvdata(&omap_mpuio_device, bank);
770

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

775
/*---------------------------------------------------------------------*/
776

777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
{
	struct gpio_bank *bank = gpiochip_get_data(chip);
	unsigned long flags;

	pm_runtime_get_sync(chip->parent);

	raw_spin_lock_irqsave(&bank->lock, flags);
	omap_enable_gpio_module(bank, offset);
	bank->mod_usage |= BIT(offset);
	raw_spin_unlock_irqrestore(&bank->lock, flags);

	return 0;
}

static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
{
	struct gpio_bank *bank = gpiochip_get_data(chip);
	unsigned long flags;

	raw_spin_lock_irqsave(&bank->lock, flags);
	bank->mod_usage &= ~(BIT(offset));
	if (!LINE_USED(bank->irq_usage, offset)) {
		omap_set_gpio_direction(bank, offset, 1);
		omap_clear_gpio_debounce(bank, offset);
	}
	omap_disable_gpio_module(bank, offset);
	raw_spin_unlock_irqrestore(&bank->lock, flags);

	pm_runtime_put(chip->parent);
}

809
static int omap_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
810
{
811
	struct gpio_bank *bank = gpiochip_get_data(chip);
812

813 814
	return !!(readl_relaxed(bank->base + bank->regs->direction) &
		  BIT(offset));
815 816
}

817
static int omap_gpio_input(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
818 819 820 821
{
	struct gpio_bank *bank;
	unsigned long flags;

822
	bank = gpiochip_get_data(chip);
823
	raw_spin_lock_irqsave(&bank->lock, flags);
824
	omap_set_gpio_direction(bank, offset, 1);
825
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
826 827 828
	return 0;
}

829
static int omap_gpio_get(struct gpio_chip *chip, unsigned offset)
D
David Brownell 已提交
830
{
R
Russell King 已提交
831 832
	struct gpio_bank *bank = gpiochip_get_data(chip);
	void __iomem *reg;
833

834
	if (omap_gpio_is_input(bank, offset))
R
Russell King 已提交
835
		reg = bank->base + bank->regs->datain;
836
	else
R
Russell King 已提交
837 838 839
		reg = bank->base + bank->regs->dataout;

	return (readl_relaxed(reg) & BIT(offset)) != 0;
D
David Brownell 已提交
840 841
}

842
static int omap_gpio_output(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
843 844 845 846
{
	struct gpio_bank *bank;
	unsigned long flags;

847
	bank = gpiochip_get_data(chip);
848
	raw_spin_lock_irqsave(&bank->lock, flags);
849
	bank->set_dataout(bank, offset, value);
850
	omap_set_gpio_direction(bank, offset, 0);
851
	raw_spin_unlock_irqrestore(&bank->lock, flags);
852
	return 0;
D
David Brownell 已提交
853 854
}

855 856 857 858
static int omap_gpio_get_multiple(struct gpio_chip *chip, unsigned long *mask,
				  unsigned long *bits)
{
	struct gpio_bank *bank = gpiochip_get_data(chip);
859 860 861 862
	void __iomem *base = bank->base;
	u32 direction, m, val = 0;

	direction = readl_relaxed(base + bank->regs->direction);
863

864 865 866
	m = direction & *mask;
	if (m)
		val |= readl_relaxed(base + bank->regs->datain) & m;
867

868 869 870
	m = ~direction & *mask;
	if (m)
		val |= readl_relaxed(base + bank->regs->dataout) & m;
871

872
	*bits = val;
873 874 875 876

	return 0;
}

877 878
static int omap_gpio_debounce(struct gpio_chip *chip, unsigned offset,
			      unsigned debounce)
879 880 881
{
	struct gpio_bank *bank;
	unsigned long flags;
882
	int ret;
883

884
	bank = gpiochip_get_data(chip);
885

886
	raw_spin_lock_irqsave(&bank->lock, flags);
887
	ret = omap2_set_gpio_debounce(bank, offset, debounce);
888
	raw_spin_unlock_irqrestore(&bank->lock, flags);
889

890 891 892 893 894 895
	if (ret)
		dev_info(chip->parent,
			 "Could not set line %u debounce to %u microseconds (%d)",
			 offset, debounce, ret);

	return ret;
896 897
}

898 899 900 901 902 903 904 905 906 907 908 909
static int omap_gpio_set_config(struct gpio_chip *chip, unsigned offset,
				unsigned long config)
{
	u32 debounce;

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

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

910
static void omap_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
911 912 913 914
{
	struct gpio_bank *bank;
	unsigned long flags;

915
	bank = gpiochip_get_data(chip);
916
	raw_spin_lock_irqsave(&bank->lock, flags);
917
	bank->set_dataout(bank, offset, value);
918
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
919 920
}

921 922 923 924
static void omap_gpio_set_multiple(struct gpio_chip *chip, unsigned long *mask,
				   unsigned long *bits)
{
	struct gpio_bank *bank = gpiochip_get_data(chip);
925
	void __iomem *reg = bank->base + bank->regs->dataout;
926
	unsigned long flags;
927
	u32 l;
928 929

	raw_spin_lock_irqsave(&bank->lock, flags);
930 931 932
	l = (readl_relaxed(reg) & ~*mask) | (*bits & *mask);
	writel_relaxed(l, reg);
	bank->context.dataout = l;
933 934 935
	raw_spin_unlock_irqrestore(&bank->lock, flags);
}

D
David Brownell 已提交
936 937
/*---------------------------------------------------------------------*/

938
static void omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
939
{
940
	static bool called;
T
Tony Lindgren 已提交
941 942
	u32 rev;

943
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
944 945
		return;

946
	rev = readw_relaxed(bank->base + bank->regs->revision);
947
	pr_info("OMAP GPIO hardware version %d.%d\n",
T
Tony Lindgren 已提交
948
		(rev >> 4) & 0x0f, rev & 0x0f);
949 950

	called = true;
T
Tony Lindgren 已提交
951 952
}

953
static void omap_gpio_mod_init(struct gpio_bank *bank)
954
{
955 956
	void __iomem *base = bank->base;
	u32 l = 0xffffffff;
957

958 959 960
	if (bank->width == 16)
		l = 0xffff;

961
	if (bank->is_mpuio) {
962
		writel_relaxed(l, bank->base + bank->regs->irqenable);
963
		return;
964
	}
965

966
	omap_gpio_rmw(base + bank->regs->irqenable, l,
967
		      bank->regs->irqenable_inv);
968
	omap_gpio_rmw(base + bank->regs->irqstatus, l,
969
		      !bank->regs->irqenable_inv);
970
	if (bank->regs->debounce_en)
971
		writel_relaxed(0, base + bank->regs->debounce_en);
972

973
	/* Save OE default value (0xffffffff) in the context */
974
	bank->context.oe = readl_relaxed(bank->base + bank->regs->direction);
975 976
	 /* Initialize interface clk ungated, module enabled */
	if (bank->regs->ctrl)
977
		writel_relaxed(0, base + bank->regs->ctrl);
978 979
}

N
Nishanth Menon 已提交
980
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
981
{
982
	struct gpio_irq_chip *irq;
983
	static int gpio;
984
	const char *label;
985
	int irq_base = 0;
986
	int ret;
987 988 989 990 991 992 993

	/*
	 * 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;
994 995 996
	bank->chip.get_direction = omap_gpio_get_direction;
	bank->chip.direction_input = omap_gpio_input;
	bank->chip.get = omap_gpio_get;
997
	bank->chip.get_multiple = omap_gpio_get_multiple;
998
	bank->chip.direction_output = omap_gpio_output;
999
	bank->chip.set_config = omap_gpio_set_config;
1000
	bank->chip.set = omap_gpio_set;
1001
	bank->chip.set_multiple = omap_gpio_set_multiple;
1002
	if (bank->is_mpuio) {
1003
		bank->chip.label = "mpuio";
1004
		if (bank->regs->wkup_en)
1005
			bank->chip.parent = &omap_mpuio_device.dev;
1006 1007
		bank->chip.base = OMAP_MPUIO(0);
	} else {
1008 1009 1010 1011 1012
		label = devm_kasprintf(bank->chip.parent, GFP_KERNEL, "gpio-%d-%d",
				       gpio, gpio + bank->width - 1);
		if (!label)
			return -ENOMEM;
		bank->chip.label = label;
1013 1014
		bank->chip.base = gpio;
	}
1015
	bank->chip.ngpio = bank->width;
1016

1017 1018 1019 1020 1021
#ifdef CONFIG_ARCH_OMAP1
	/*
	 * REVISIT: Once we have OMAP1 supporting SPARSE_IRQ, we can drop
	 * irq_alloc_descs() since a base IRQ offset will no longer be needed.
	 */
1022 1023
	irq_base = devm_irq_alloc_descs(bank->chip.parent,
					-1, 0, bank->width, 0);
1024
	if (irq_base < 0) {
1025
		dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
1026 1027 1028 1029
		return -ENODEV;
	}
#endif

1030
	/* MPUIO is a bit different, reading IRQ status clears it */
R
Russell King 已提交
1031 1032
	if (bank->is_mpuio && !bank->regs->wkup_en)
		irqc->irq_set_wake = NULL;
1033

1034 1035 1036 1037 1038 1039 1040
	irq = &bank->chip.irq;
	irq->chip = irqc;
	irq->handler = handle_bad_irq;
	irq->default_type = IRQ_TYPE_NONE;
	irq->num_parents = 1;
	irq->parents = &bank->irq;
	irq->first = irq_base;
1041

1042
	ret = gpiochip_add_data(&bank->chip, bank);
1043
	if (ret) {
1044
		dev_err(bank->chip.parent,
1045 1046
			"Could not register gpio chip %d\n", ret);
		return ret;
1047 1048
	}

1049 1050 1051
	ret = devm_request_irq(bank->chip.parent, bank->irq,
			       omap_gpio_irq_handler,
			       0, dev_name(bank->chip.parent), bank);
1052 1053 1054
	if (ret)
		gpiochip_remove(&bank->chip);

1055 1056 1057
	if (!bank->is_mpuio)
		gpio += bank->width;

1058
	return ret;
1059 1060
}

A
Arnd Bergmann 已提交
1061
static void omap_gpio_init_context(struct gpio_bank *p)
1062
{
1063
	const struct omap_gpio_reg_offs *regs = p->regs;
A
Arnd Bergmann 已提交
1064
	void __iomem *base = p->base;
1065

A
Arnd Bergmann 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074
	p->context.ctrl		= readl_relaxed(base + regs->ctrl);
	p->context.oe		= readl_relaxed(base + regs->direction);
	p->context.wake_en	= readl_relaxed(base + regs->wkup_en);
	p->context.leveldetect0	= readl_relaxed(base + regs->leveldetect0);
	p->context.leveldetect1	= readl_relaxed(base + regs->leveldetect1);
	p->context.risingdetect	= readl_relaxed(base + regs->risingdetect);
	p->context.fallingdetect = readl_relaxed(base + regs->fallingdetect);
	p->context.irqenable1	= readl_relaxed(base + regs->irqenable);
	p->context.irqenable2	= readl_relaxed(base + regs->irqenable2);
1075
	p->context.dataout	= readl_relaxed(base + regs->dataout);
1076

A
Arnd Bergmann 已提交
1077
	p->context_valid = true;
1078 1079
}

A
Arnd Bergmann 已提交
1080
static void omap_gpio_restore_context(struct gpio_bank *bank)
1081
{
1082
	const struct omap_gpio_reg_offs *regs = bank->regs;
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
	void __iomem *base = bank->base;

	writel_relaxed(bank->context.wake_en, base + regs->wkup_en);
	writel_relaxed(bank->context.ctrl, base + regs->ctrl);
	writel_relaxed(bank->context.leveldetect0, base + regs->leveldetect0);
	writel_relaxed(bank->context.leveldetect1, base + regs->leveldetect1);
	writel_relaxed(bank->context.risingdetect, base + regs->risingdetect);
	writel_relaxed(bank->context.fallingdetect, base + regs->fallingdetect);
	writel_relaxed(bank->context.dataout, base + regs->dataout);
	writel_relaxed(bank->context.oe, base + regs->direction);
T
Tony Lindgren 已提交
1093

A
Arnd Bergmann 已提交
1094
	if (bank->dbck_enable_mask) {
1095
		writel_relaxed(bank->context.debounce, base + regs->debounce);
A
Arnd Bergmann 已提交
1096
		writel_relaxed(bank->context.debounce_en,
1097
			       base + regs->debounce_en);
1098 1099
	}

1100 1101
	writel_relaxed(bank->context.irqenable1, base + regs->irqenable);
	writel_relaxed(bank->context.irqenable2, base + regs->irqenable2);
1102 1103
}

1104
static void omap_gpio_idle(struct gpio_bank *bank, bool may_lose_context)
1105
{
1106
	struct device *dev = bank->chip.parent;
1107 1108 1109 1110
	void __iomem *base = bank->base;
	u32 nowake;

	bank->saved_datain = readl_relaxed(base + bank->regs->datain);
1111

1112 1113 1114
	if (!bank->enabled_non_wakeup_gpios)
		goto update_gpio_context_count;

1115
	if (!may_lose_context)
1116
		goto update_gpio_context_count;
1117

1118
	/*
1119
	 * If going to OFF, remove triggering for all wkup domain
1120 1121 1122
	 * non-wakeup GPIOs.  Otherwise spurious IRQs will be
	 * generated.  See OMAP2420 Errata item 1.101.
	 */
1123 1124
	if (!bank->loses_context && bank->enabled_non_wakeup_gpios) {
		nowake = bank->enabled_non_wakeup_gpios;
1125 1126
		omap_gpio_rmw(base + bank->regs->fallingdetect, nowake, ~nowake);
		omap_gpio_rmw(base + bank->regs->risingdetect, nowake, ~nowake);
1127
	}
1128

1129
update_gpio_context_count:
1130 1131
	if (bank->get_context_loss_count)
		bank->context_loss_count =
1132
				bank->get_context_loss_count(dev);
1133

1134
	omap_gpio_dbck_disable(bank);
1135 1136
}

1137
static void omap_gpio_unidle(struct gpio_bank *bank)
1138
{
1139
	struct device *dev = bank->chip.parent;
1140
	u32 l = 0, gen, gen0, gen1;
1141
	int c;
1142

1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
	/*
	 * On the first resume during the probe, the context has not
	 * been initialised and so initialise it now. Also initialise
	 * the context loss count.
	 */
	if (bank->loses_context && !bank->context_valid) {
		omap_gpio_init_context(bank);

		if (bank->get_context_loss_count)
			bank->context_loss_count =
1153
				bank->get_context_loss_count(dev);
1154 1155
	}

1156
	omap_gpio_dbck_enable(bank);
1157

1158 1159
	if (bank->loses_context) {
		if (!bank->get_context_loss_count) {
1160 1161
			omap_gpio_restore_context(bank);
		} else {
1162
			c = bank->get_context_loss_count(dev);
1163 1164 1165
			if (c != bank->context_loss_count) {
				omap_gpio_restore_context(bank);
			} else {
1166
				return;
1167
			}
1168
		}
1169 1170 1171 1172 1173 1174
	} else {
		/* Restore changes done for OMAP2420 errata 1.101 */
		writel_relaxed(bank->context.fallingdetect,
			       bank->base + bank->regs->fallingdetect);
		writel_relaxed(bank->context.risingdetect,
			       bank->base + bank->regs->risingdetect);
1175
	}
1176

1177
	l = readl_relaxed(bank->base + bank->regs->datain);
1178

1179 1180 1181 1182 1183 1184 1185 1186
	/*
	 * Check if any of the non-wakeup interrupt GPIOs have changed
	 * state.  If so, generate an IRQ by software.  This is
	 * horribly racy, but it's the best we can do to work around
	 * this silicon bug.
	 */
	l ^= bank->saved_datain;
	l &= bank->enabled_non_wakeup_gpios;
1187

1188 1189 1190 1191
	/*
	 * No need to generate IRQs for the rising edge for gpio IRQs
	 * configured with falling edge only; and vice versa.
	 */
1192
	gen0 = l & bank->context.fallingdetect;
1193
	gen0 &= bank->saved_datain;
1194

1195
	gen1 = l & bank->context.risingdetect;
1196
	gen1 &= ~(bank->saved_datain);
1197

1198
	/* FIXME: Consider GPIO IRQs with level detections properly! */
1199 1200
	gen = l & (~(bank->context.fallingdetect) &
					 ~(bank->context.risingdetect));
1201 1202
	/* Consider all GPIO IRQs needed to be updated */
	gen |= gen0 | gen1;
1203

1204 1205
	if (gen) {
		u32 old0, old1;
1206

1207 1208
		old0 = readl_relaxed(bank->base + bank->regs->leveldetect0);
		old1 = readl_relaxed(bank->base + bank->regs->leveldetect1);
1209

1210
		if (!bank->regs->irqstatus_raw0) {
1211
			writel_relaxed(old0 | gen, bank->base +
1212
						bank->regs->leveldetect0);
1213
			writel_relaxed(old1 | gen, bank->base +
1214
						bank->regs->leveldetect1);
1215
		}
1216

1217
		if (bank->regs->irqstatus_raw0) {
1218
			writel_relaxed(old0 | l, bank->base +
1219
						bank->regs->leveldetect0);
1220
			writel_relaxed(old1 | l, bank->base +
1221
						bank->regs->leveldetect1);
1222
		}
1223 1224
		writel_relaxed(old0, bank->base + bank->regs->leveldetect0);
		writel_relaxed(old1, bank->base + bank->regs->leveldetect1);
1225 1226 1227
	}
}

A
Arnd Bergmann 已提交
1228 1229
static int gpio_omap_cpu_notifier(struct notifier_block *nb,
				  unsigned long cmd, void *v)
1230
{
A
Arnd Bergmann 已提交
1231 1232
	struct gpio_bank *bank;
	unsigned long flags;
1233

A
Arnd Bergmann 已提交
1234
	bank = container_of(nb, struct gpio_bank, nb);
1235

A
Arnd Bergmann 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
	raw_spin_lock_irqsave(&bank->lock, flags);
	switch (cmd) {
	case CPU_CLUSTER_PM_ENTER:
		if (bank->is_suspended)
			break;
		omap_gpio_idle(bank, true);
		break;
	case CPU_CLUSTER_PM_ENTER_FAILED:
	case CPU_CLUSTER_PM_EXIT:
		if (bank->is_suspended)
			break;
		omap_gpio_unidle(bank);
		break;
	}
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1251

A
Arnd Bergmann 已提交
1252
	return NOTIFY_OK;
1253 1254
}

1255
static const struct omap_gpio_reg_offs omap2_gpio_regs = {
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
	.revision =		OMAP24XX_GPIO_REVISION,
	.direction =		OMAP24XX_GPIO_OE,
	.datain =		OMAP24XX_GPIO_DATAIN,
	.dataout =		OMAP24XX_GPIO_DATAOUT,
	.set_dataout =		OMAP24XX_GPIO_SETDATAOUT,
	.clr_dataout =		OMAP24XX_GPIO_CLEARDATAOUT,
	.irqstatus =		OMAP24XX_GPIO_IRQSTATUS1,
	.irqstatus2 =		OMAP24XX_GPIO_IRQSTATUS2,
	.irqenable =		OMAP24XX_GPIO_IRQENABLE1,
	.irqenable2 =		OMAP24XX_GPIO_IRQENABLE2,
	.set_irqenable =	OMAP24XX_GPIO_SETIRQENABLE1,
	.clr_irqenable =	OMAP24XX_GPIO_CLEARIRQENABLE1,
	.debounce =		OMAP24XX_GPIO_DEBOUNCE_VAL,
	.debounce_en =		OMAP24XX_GPIO_DEBOUNCE_EN,
	.ctrl =			OMAP24XX_GPIO_CTRL,
	.wkup_en =		OMAP24XX_GPIO_WAKE_EN,
	.leveldetect0 =		OMAP24XX_GPIO_LEVELDETECT0,
	.leveldetect1 =		OMAP24XX_GPIO_LEVELDETECT1,
	.risingdetect =		OMAP24XX_GPIO_RISINGDETECT,
	.fallingdetect =	OMAP24XX_GPIO_FALLINGDETECT,
};

1278
static const struct omap_gpio_reg_offs omap4_gpio_regs = {
1279 1280 1281 1282 1283 1284 1285 1286
	.revision =		OMAP4_GPIO_REVISION,
	.direction =		OMAP4_GPIO_OE,
	.datain =		OMAP4_GPIO_DATAIN,
	.dataout =		OMAP4_GPIO_DATAOUT,
	.set_dataout =		OMAP4_GPIO_SETDATAOUT,
	.clr_dataout =		OMAP4_GPIO_CLEARDATAOUT,
	.irqstatus =		OMAP4_GPIO_IRQSTATUS0,
	.irqstatus2 =		OMAP4_GPIO_IRQSTATUS1,
1287 1288
	.irqstatus_raw0 =	OMAP4_GPIO_IRQSTATUSRAW0,
	.irqstatus_raw1 =	OMAP4_GPIO_IRQSTATUSRAW1,
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	.irqenable =		OMAP4_GPIO_IRQSTATUSSET0,
	.irqenable2 =		OMAP4_GPIO_IRQSTATUSSET1,
	.set_irqenable =	OMAP4_GPIO_IRQSTATUSSET0,
	.clr_irqenable =	OMAP4_GPIO_IRQSTATUSCLR0,
	.debounce =		OMAP4_GPIO_DEBOUNCINGTIME,
	.debounce_en =		OMAP4_GPIO_DEBOUNCENABLE,
	.ctrl =			OMAP4_GPIO_CTRL,
	.wkup_en =		OMAP4_GPIO_IRQWAKEN0,
	.leveldetect0 =		OMAP4_GPIO_LEVELDETECT0,
	.leveldetect1 =		OMAP4_GPIO_LEVELDETECT1,
	.risingdetect =		OMAP4_GPIO_RISINGDETECT,
	.fallingdetect =	OMAP4_GPIO_FALLINGDETECT,
};

1303
static const struct omap_gpio_platform_data omap2_pdata = {
1304 1305 1306 1307 1308
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = false,
};

1309
static const struct omap_gpio_platform_data omap3_pdata = {
1310 1311 1312 1313 1314
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

1315
static const struct omap_gpio_platform_data omap4_pdata = {
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
	.regs = &omap4_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

static const struct of_device_id omap_gpio_match[] = {
	{
		.compatible = "ti,omap4-gpio",
		.data = &omap4_pdata,
	},
	{
		.compatible = "ti,omap3-gpio",
		.data = &omap3_pdata,
	},
	{
		.compatible = "ti,omap2-gpio",
		.data = &omap2_pdata,
	},
	{ },
};
MODULE_DEVICE_TABLE(of, omap_gpio_match);
A
Arnd Bergmann 已提交
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363

static int omap_gpio_probe(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct device_node *node = dev->of_node;
	const struct of_device_id *match;
	const struct omap_gpio_platform_data *pdata;
	struct gpio_bank *bank;
	struct irq_chip *irqc;
	int ret;

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

	pdata = match ? match->data : dev_get_platdata(dev);
	if (!pdata)
		return -EINVAL;

	bank = devm_kzalloc(dev, sizeof(*bank), GFP_KERNEL);
	if (!bank)
		return -ENOMEM;

	irqc = devm_kzalloc(dev, sizeof(*irqc), GFP_KERNEL);
	if (!irqc)
		return -ENOMEM;

	irqc->irq_startup = omap_gpio_irq_startup,
	irqc->irq_shutdown = omap_gpio_irq_shutdown,
R
Russell King 已提交
1364
	irqc->irq_ack = dummy_irq_chip.irq_ack,
A
Arnd Bergmann 已提交
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
	irqc->irq_mask = omap_gpio_mask_irq,
	irqc->irq_unmask = omap_gpio_unmask_irq,
	irqc->irq_set_type = omap_gpio_irq_type,
	irqc->irq_set_wake = omap_gpio_wake_enable,
	irqc->irq_bus_lock = omap_gpio_irq_bus_lock,
	irqc->irq_bus_sync_unlock = gpio_irq_bus_sync_unlock,
	irqc->name = dev_name(&pdev->dev);
	irqc->flags = IRQCHIP_MASK_ON_SUSPEND;
	irqc->parent_device = dev;

	bank->irq = platform_get_irq(pdev, 0);
	if (bank->irq <= 0) {
		if (!bank->irq)
			bank->irq = -ENXIO;
		if (bank->irq != -EPROBE_DEFER)
			dev_err(dev,
				"can't get irq resource ret=%d\n", bank->irq);
		return bank->irq;
	}

	bank->chip.parent = dev;
	bank->chip.owner = THIS_MODULE;
	bank->dbck_flag = pdata->dbck_flag;
	bank->stride = pdata->bank_stride;
	bank->width = pdata->bank_width;
	bank->is_mpuio = pdata->is_mpuio;
	bank->non_wakeup_gpios = pdata->non_wakeup_gpios;
	bank->regs = pdata->regs;
#ifdef CONFIG_OF_GPIO
	bank->chip.of_node = of_node_get(node);
1395 1396
#endif

A
Arnd Bergmann 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
	if (node) {
		if (!of_property_read_bool(node, "ti,gpio-always-on"))
			bank->loses_context = true;
	} else {
		bank->loses_context = pdata->loses_context;

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

1408
	if (bank->regs->set_dataout && bank->regs->clr_dataout)
A
Arnd Bergmann 已提交
1409
		bank->set_dataout = omap_set_gpio_dataout_reg;
1410
	else
A
Arnd Bergmann 已提交
1411 1412 1413 1414 1415 1416
		bank->set_dataout = omap_set_gpio_dataout_mask;

	raw_spin_lock_init(&bank->lock);
	raw_spin_lock_init(&bank->wa_lock);

	/* Static mapping, never released */
1417
	bank->base = devm_platform_ioremap_resource(pdev, 0);
A
Arnd Bergmann 已提交
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
	if (IS_ERR(bank->base)) {
		return PTR_ERR(bank->base);
	}

	if (bank->dbck_flag) {
		bank->dbck = devm_clk_get(dev, "dbclk");
		if (IS_ERR(bank->dbck)) {
			dev_err(dev,
				"Could not get gpio dbck. Disable debounce\n");
			bank->dbck_flag = false;
		} else {
			clk_prepare(bank->dbck);
		}
	}

	platform_set_drvdata(pdev, bank);

	pm_runtime_enable(dev);
	pm_runtime_get_sync(dev);

	if (bank->is_mpuio)
		omap_mpuio_init(bank);

	omap_gpio_mod_init(bank);

	ret = omap_gpio_chip_init(bank, irqc);
	if (ret) {
		pm_runtime_put_sync(dev);
		pm_runtime_disable(dev);
		if (bank->dbck_flag)
			clk_unprepare(bank->dbck);
		return ret;
	}

	omap_gpio_show_rev(bank);

1454 1455
	bank->nb.notifier_call = gpio_omap_cpu_notifier;
	cpu_pm_register_notifier(&bank->nb);
A
Arnd Bergmann 已提交
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465

	pm_runtime_put(dev);

	return 0;
}

static int omap_gpio_remove(struct platform_device *pdev)
{
	struct gpio_bank *bank = platform_get_drvdata(pdev);

1466
	cpu_pm_unregister_notifier(&bank->nb);
A
Arnd Bergmann 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
	gpiochip_remove(&bank->chip);
	pm_runtime_disable(&pdev->dev);
	if (bank->dbck_flag)
		clk_unprepare(bank->dbck);

	return 0;
}

static int __maybe_unused omap_gpio_runtime_suspend(struct device *dev)
{
	struct gpio_bank *bank = dev_get_drvdata(dev);
	unsigned long flags;

	raw_spin_lock_irqsave(&bank->lock, flags);
	omap_gpio_idle(bank, true);
	bank->is_suspended = true;
	raw_spin_unlock_irqrestore(&bank->lock, flags);

1485
	return 0;
A
Arnd Bergmann 已提交
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
}

static int __maybe_unused omap_gpio_runtime_resume(struct device *dev)
{
	struct gpio_bank *bank = dev_get_drvdata(dev);
	unsigned long flags;

	raw_spin_lock_irqsave(&bank->lock, flags);
	omap_gpio_unidle(bank);
	bank->is_suspended = false;
	raw_spin_unlock_irqrestore(&bank->lock, flags);

1498
	return 0;
A
Arnd Bergmann 已提交
1499 1500 1501 1502 1503 1504 1505
}

static const struct dev_pm_ops gpio_pm_ops = {
	SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
									NULL)
};

1506 1507
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
1508
	.remove		= omap_gpio_remove,
1509 1510
	.driver		= {
		.name	= "omap_gpio",
1511
		.pm	= &gpio_pm_ops,
A
Arnd Bergmann 已提交
1512
		.of_match_table = omap_gpio_match,
1513 1514 1515
	},
};

1516
/*
1517 1518 1519
 * gpio driver register needs to be done before
 * machine_init functions access gpio APIs.
 * Hence omap_gpio_drv_reg() is a postcore_initcall.
1520
 */
1521
static int __init omap_gpio_drv_reg(void)
1522
{
1523
	return platform_driver_register(&omap_gpio_driver);
1524
}
1525
postcore_initcall(omap_gpio_drv_reg);
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535

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

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