gpio-omap.c 42.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2 3 4
/*
 * Support functions for OMAP GPIO
 *
5
 * Copyright (C) 2003-2005 Nokia Corporation
6
 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
7
 *
8 9
 * Copyright (C) 2009 Texas Instruments
 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
10 11 12 13 14
 */

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

29
#define OMAP4_GPIO_DEBOUNCINGTIME_MASK 0xFF
30

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

47
struct gpio_bank {
48
	void __iomem *base;
49 50
	const struct omap_gpio_reg_offs *regs;

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

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

81
#define GPIO_MOD_CTRL_BIT	BIT(0)
82

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

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

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

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

98 99
	if (set)
		val |= mask;
100
	else
101 102 103 104 105 106 107 108 109 110 111 112
		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);
113 114
}

115 116

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

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

131
	writel_relaxed(l, reg);
132 133
}

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

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

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

153
static inline void omap_gpio_dbck_disable(struct gpio_bank *bank)
154 155
{
	if (bank->dbck_enable_mask && bank->dbck_enabled) {
156 157 158 159 160
		/*
		 * 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.
		 */
161
		writel_relaxed(0, bank->base + bank->regs->debounce_en);
162

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

168
/**
169
 * omap2_set_gpio_debounce - low level gpio debounce time
170
 * @bank: the gpio bank we're acting upon
171
 * @offset: the gpio number on this @bank
172 173
 * @debounce: debounce time to use
 *
174 175 176
 * 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.
177 178
 *
 * Return: 0 on success, negative error otherwise.
179
 */
180 181
static int omap2_set_gpio_debounce(struct gpio_bank *bank, unsigned offset,
				   unsigned debounce)
182 183 184
{
	u32			val;
	u32			l;
185
	bool			enable = !!debounce;
186

187
	if (!bank->dbck_flag)
188
		return -ENOTSUPP;
189

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

196
	l = BIT(offset);
197

198
	clk_enable(bank->dbck);
199
	writel_relaxed(debounce, bank->base + bank->regs->debounce);
200

201
	val = omap_gpio_rmw(bank->base + bank->regs->debounce_en, l, enable);
202
	bank->dbck_enable_mask = val;
203

204
	clk_disable(bank->dbck);
205 206 207 208 209 210 211 212
	/*
	 * 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.
	 */
213
	omap_gpio_dbck_enable(bank);
214 215 216 217
	if (bank->dbck_enable_mask) {
		bank->context.debounce = debounce;
		bank->context.debounce_en = val;
	}
218 219

	return 0;
220 221
}

222
/**
223
 * omap_clear_gpio_debounce - clear debounce settings for a gpio
224
 * @bank: the gpio bank we're acting upon
225
 * @offset: the gpio number on this @bank
226 227 228 229 230 231
 *
 * 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.
 */
232
static void omap_clear_gpio_debounce(struct gpio_bank *bank, unsigned offset)
233
{
234
	u32 gpio_bit = BIT(offset);
235 236 237 238 239 240 241 242 243

	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;
244
        writel_relaxed(bank->context.debounce_en,
245 246 247 248
		     bank->base + bank->regs->debounce_en);

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

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
/*
 * 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;
}

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

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

	/*
	 * 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.
	 */
288
	omap_gpio_rmw(base + bank->regs->risingdetect, gpio_bit,
289
		      trigger & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH));
290
	omap_gpio_rmw(base + bank->regs->fallingdetect, gpio_bit,
291
		      trigger & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_LEVEL_LOW));
292

293
	bank->context.leveldetect0 =
294
			readl_relaxed(bank->base + bank->regs->leveldetect0);
295
	bank->context.leveldetect1 =
296
			readl_relaxed(bank->base + bank->regs->leveldetect1);
297
	bank->context.risingdetect =
298
			readl_relaxed(bank->base + bank->regs->risingdetect);
299
	bank->context.fallingdetect =
300
			readl_relaxed(bank->base + bank->regs->fallingdetect);
301

302 303
	bank->level_mask = bank->context.leveldetect0 |
			   bank->context.leveldetect1;
304

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

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

329 330
		writel_relaxed(readl_relaxed(reg) ^ BIT(gpio), reg);
	}
331 332
}

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

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

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

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

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

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

		/* Claim the pin for MPU */
379
		writel_relaxed(readl_relaxed(reg) | (BIT(offset)), reg);
380 381 382 383 384 385
	}

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

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

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

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

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

412
	return readl_relaxed(reg) & BIT(offset);
413 414
}

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

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

431
	if (type & ~IRQ_TYPE_SENSE_MASK)
432
		return -EINVAL;
433

434 435
	if (!bank->regs->leveldetect0 &&
		(type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
436 437
		return -EINVAL;

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

	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
453
		irq_set_handler_locked(d, handle_level_irq);
454
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
455 456 457 458 459 460 461
		/*
		 * 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);
462

463 464 465
	return 0;

error:
466
	return retval;
467 468
}

469
static void omap_clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
470
{
471
	void __iomem *reg = bank->base;
472

473
	reg += bank->regs->irqstatus;
474
	writel_relaxed(gpio_mask, reg);
475 476

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

	/* Flush posted write for the irq status to avoid spurious interrupts */
483
	readl_relaxed(reg);
484 485
}

486 487
static inline void omap_clear_gpio_irqstatus(struct gpio_bank *bank,
					     unsigned offset)
488
{
489
	omap_clear_gpio_irqbank(bank, BIT(offset));
490 491
}

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

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

506 507
static inline void omap_set_gpio_irqenable(struct gpio_bank *bank,
					   unsigned offset, int enable)
508
{
509
	void __iomem *reg = bank->base;
510
	u32 gpio_mask = BIT(offset);
511

512 513 514 515 516 517 518 519 520
	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);
521
	} else {
522 523 524
		bank->context.irqenable1 =
			omap_gpio_rmw(reg + bank->regs->irqenable, gpio_mask,
				      enable ^ bank->regs->irqenable_inv);
525 526
	}

527 528 529 530 531 532 533 534 535 536 537
	/*
	 * 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);
538 539 540
	}
}

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

546
	return irq_set_irq_wake(bank->irq, enable);
547 548
}

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

567
	isr_reg = bank->base + bank->regs->irqstatus;
568 569 570
	if (WARN_ON(!isr_reg))
		goto exit;

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

575
	while (1) {
576 577
		raw_spin_lock_irqsave(&bank->lock, lock_flags);

578
		enabled = omap_get_gpio_irqbank_mask(bank);
579
		isr = readl_relaxed(isr_reg) & enabled;
580

581 582 583 584 585 586 587 588
		/*
		 * 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);
589

590 591
		raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

592 593 594
		if (!isr)
			break;

595 596
		while (isr) {
			bit = __ffs(isr);
597
			isr &= ~(BIT(bit));
598

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

610 611
			raw_spin_unlock_irqrestore(&bank->lock, lock_flags);

612 613
			raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);

614
			generic_handle_domain_irq(bank->chip.irq.domain, bit);
615 616 617

			raw_spin_unlock_irqrestore(&bank->wa_lock,
						   wa_lock_flags);
618
		}
619
	}
620
exit:
621
	return IRQ_HANDLED;
622 623
}

624 625 626 627
static unsigned int omap_gpio_irq_startup(struct irq_data *d)
{
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
	unsigned long flags;
628
	unsigned offset = d->hwirq;
629

630
	raw_spin_lock_irqsave(&bank->lock, flags);
631 632 633 634 635 636

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

637
	raw_spin_unlock_irqrestore(&bank->lock, flags);
638 639 640 641 642
	omap_gpio_unmask_irq(d);

	return 0;
}

643
static void omap_gpio_irq_shutdown(struct irq_data *d)
644
{
645
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
646
	unsigned long flags;
647
	unsigned offset = d->hwirq;
648

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

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

664
	pm_runtime_get_sync(bank->chip.parent);
665 666 667 668 669
}

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

671
	pm_runtime_put(bank->chip.parent);
672 673
}

674
static void omap_gpio_mask_irq(struct irq_data *d)
675
{
676
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
677
	unsigned offset = d->hwirq;
678
	unsigned long flags;
679

680
	raw_spin_lock_irqsave(&bank->lock, flags);
681
	omap_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
682
	omap_set_gpio_irqenable(bank, offset, 0);
683
	raw_spin_unlock_irqrestore(&bank->lock, flags);
684 685
}

686
static void omap_gpio_unmask_irq(struct irq_data *d)
687
{
688
	struct gpio_bank *bank = omap_irq_data_get_bank(d);
689
	unsigned offset = d->hwirq;
690
	u32 trigger = irqd_get_trigger_type(d);
691
	unsigned long flags;
692

693
	raw_spin_lock_irqsave(&bank->lock, flags);
694 695 696 697 698 699 700
	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.
	 */
701 702
	if (bank->regs->leveldetect0 && bank->regs->wkup_en &&
	    trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
703
		omap_clear_gpio_irqstatus(bank, offset);
704

705 706 707
	if (trigger)
		omap_set_gpio_triggering(bank, offset, trigger);

708
	raw_spin_unlock_irqrestore(&bank->lock, flags);
709 710
}

711 712
/*---------------------------------------------------------------------*/

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

720
	raw_spin_lock_irqsave(&bank->lock, flags);
721
	writel_relaxed(0xffff & ~bank->context.wake_en, mask_reg);
722
	raw_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 gpio_bank	*bank = dev_get_drvdata(dev);
730 731
	void __iomem		*mask_reg = bank->base +
					OMAP_MPUIO_GPIO_MASKIT / bank->stride;
D
David Brownell 已提交
732
	unsigned long		flags;
D
David Brownell 已提交
733

734
	raw_spin_lock_irqsave(&bank->lock, flags);
735
	writel_relaxed(bank->context.wake_en, mask_reg);
736
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
737 738 739 740

	return 0;
}

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

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

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

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

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

771
/*---------------------------------------------------------------------*/
772

773
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
774
{
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
	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);
791 792
	unsigned long flags;

793
	raw_spin_lock_irqsave(&bank->lock, flags);
794 795 796 797 798 799
	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);
800
	raw_spin_unlock_irqrestore(&bank->lock, flags);
801 802 803 804

	pm_runtime_put(chip->parent);
}

805
static int omap_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
806
{
807
	struct gpio_bank *bank = gpiochip_get_data(chip);
808

809 810 811 812
	if (readl_relaxed(bank->base + bank->regs->direction) & BIT(offset))
		return GPIO_LINE_DIRECTION_IN;

	return GPIO_LINE_DIRECTION_OUT;
813 814
}

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

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

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

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

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

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

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

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

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

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

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

870
	*bits = val;
871 872 873 874

	return 0;
}

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

882
	bank = gpiochip_get_data(chip);
883

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

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

	return ret;
894 895
}

896 897 898 899
static int omap_gpio_set_config(struct gpio_chip *chip, unsigned offset,
				unsigned long config)
{
	u32 debounce;
900 901
	int ret = -ENOTSUPP;

902 903 904 905
	switch (pinconf_to_config_param(config)) {
	case PIN_CONFIG_BIAS_DISABLE:
	case PIN_CONFIG_BIAS_PULL_UP:
	case PIN_CONFIG_BIAS_PULL_DOWN:
906
		ret = gpiochip_generic_config(chip, offset, config);
907 908
		break;
	case PIN_CONFIG_INPUT_DEBOUNCE:
909 910
		debounce = pinconf_to_config_argument(config);
		ret = omap_gpio_debounce(chip, offset, debounce);
911 912 913
		break;
	default:
		break;
914
	}
915

916
	return ret;
917 918
}

919
static void omap_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
D
David Brownell 已提交
920 921 922 923
{
	struct gpio_bank *bank;
	unsigned long flags;

924
	bank = gpiochip_get_data(chip);
925
	raw_spin_lock_irqsave(&bank->lock, flags);
926
	bank->set_dataout(bank, offset, value);
927
	raw_spin_unlock_irqrestore(&bank->lock, flags);
D
David Brownell 已提交
928 929
}

930 931 932 933
static void omap_gpio_set_multiple(struct gpio_chip *chip, unsigned long *mask,
				   unsigned long *bits)
{
	struct gpio_bank *bank = gpiochip_get_data(chip);
934
	void __iomem *reg = bank->base + bank->regs->dataout;
935
	unsigned long flags;
936
	u32 l;
937 938

	raw_spin_lock_irqsave(&bank->lock, flags);
939 940 941
	l = (readl_relaxed(reg) & ~*mask) | (*bits & *mask);
	writel_relaxed(l, reg);
	bank->context.dataout = l;
942 943 944
	raw_spin_unlock_irqrestore(&bank->lock, flags);
}

D
David Brownell 已提交
945 946
/*---------------------------------------------------------------------*/

947
static void omap_gpio_show_rev(struct gpio_bank *bank)
T
Tony Lindgren 已提交
948
{
949
	static bool called;
T
Tony Lindgren 已提交
950 951
	u32 rev;

952
	if (called || bank->regs->revision == USHRT_MAX)
T
Tony Lindgren 已提交
953 954
		return;

955
	rev = readw_relaxed(bank->base + bank->regs->revision);
956
	pr_info("OMAP GPIO hardware version %d.%d\n",
T
Tony Lindgren 已提交
957
		(rev >> 4) & 0x0f, rev & 0x0f);
958 959

	called = true;
T
Tony Lindgren 已提交
960 961
}

962
static void omap_gpio_mod_init(struct gpio_bank *bank)
963
{
964 965
	void __iomem *base = bank->base;
	u32 l = 0xffffffff;
966

967 968 969
	if (bank->width == 16)
		l = 0xffff;

970
	if (bank->is_mpuio) {
971
		writel_relaxed(l, bank->base + bank->regs->irqenable);
972
		return;
973
	}
974

975
	omap_gpio_rmw(base + bank->regs->irqenable, l,
976
		      bank->regs->irqenable_inv);
977
	omap_gpio_rmw(base + bank->regs->irqstatus, l,
978
		      !bank->regs->irqenable_inv);
979
	if (bank->regs->debounce_en)
980
		writel_relaxed(0, base + bank->regs->debounce_en);
981

982
	/* Save OE default value (0xffffffff) in the context */
983
	bank->context.oe = readl_relaxed(bank->base + bank->regs->direction);
984 985
	 /* Initialize interface clk ungated, module enabled */
	if (bank->regs->ctrl)
986
		writel_relaxed(0, base + bank->regs->ctrl);
987 988
}

N
Nishanth Menon 已提交
989
static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
990
{
991
	struct gpio_irq_chip *irq;
992
	static int gpio;
993
	const char *label;
994
	int irq_base = 0;
995
	int ret;
996 997 998 999 1000 1001 1002

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

1026 1027 1028 1029 1030
#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.
	 */
1031 1032
	irq_base = devm_irq_alloc_descs(bank->chip.parent,
					-1, 0, bank->width, 0);
1033
	if (irq_base < 0) {
1034
		dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
1035 1036 1037 1038
		return -ENODEV;
	}
#endif

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

1043 1044 1045 1046 1047 1048 1049
	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;
1050

1051
	ret = gpiochip_add_data(&bank->chip, bank);
1052 1053
	if (ret)
		return dev_err_probe(bank->chip.parent, ret, "Could not register gpio chip\n");
1054

1055 1056 1057
	ret = devm_request_irq(bank->chip.parent, bank->irq,
			       omap_gpio_irq_handler,
			       0, dev_name(bank->chip.parent), bank);
1058 1059 1060
	if (ret)
		gpiochip_remove(&bank->chip);

1061 1062 1063
	if (!bank->is_mpuio)
		gpio += bank->width;

1064
	return ret;
1065 1066
}

A
Arnd Bergmann 已提交
1067
static void omap_gpio_init_context(struct gpio_bank *p)
1068
{
1069
	const struct omap_gpio_reg_offs *regs = p->regs;
A
Arnd Bergmann 已提交
1070
	void __iomem *base = p->base;
1071

1072
	p->context.sysconfig	= readl_relaxed(base + regs->sysconfig);
A
Arnd Bergmann 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081
	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);
1082
	p->context.dataout	= readl_relaxed(base + regs->dataout);
1083

A
Arnd Bergmann 已提交
1084
	p->context_valid = true;
1085 1086
}

A
Arnd Bergmann 已提交
1087
static void omap_gpio_restore_context(struct gpio_bank *bank)
1088
{
1089
	const struct omap_gpio_reg_offs *regs = bank->regs;
1090 1091
	void __iomem *base = bank->base;

1092
	writel_relaxed(bank->context.sysconfig, base + regs->sysconfig);
1093 1094 1095 1096 1097 1098 1099 1100
	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 已提交
1101

A
Arnd Bergmann 已提交
1102
	if (bank->dbck_enable_mask) {
1103
		writel_relaxed(bank->context.debounce, base + regs->debounce);
A
Arnd Bergmann 已提交
1104
		writel_relaxed(bank->context.debounce_en,
1105
			       base + regs->debounce_en);
1106 1107
	}

1108 1109
	writel_relaxed(bank->context.irqenable1, base + regs->irqenable);
	writel_relaxed(bank->context.irqenable2, base + regs->irqenable2);
1110 1111
}

1112
static void omap_gpio_idle(struct gpio_bank *bank, bool may_lose_context)
1113
{
1114
	struct device *dev = bank->chip.parent;
1115
	void __iomem *base = bank->base;
1116
	u32 mask, nowake;
1117 1118

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

1120 1121 1122 1123
	/* Save syconfig, it's runtime value can be different from init value */
	if (bank->loses_context)
		bank->context.sysconfig = readl_relaxed(base + bank->regs->sysconfig);

1124 1125 1126
	if (!bank->enabled_non_wakeup_gpios)
		goto update_gpio_context_count;

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
	/* Check for pending EDGE_FALLING, ignore EDGE_BOTH */
	mask = bank->enabled_non_wakeup_gpios & bank->context.fallingdetect;
	mask &= ~bank->context.risingdetect;
	bank->saved_datain |= mask;

	/* Check for pending EDGE_RISING, ignore EDGE_BOTH */
	mask = bank->enabled_non_wakeup_gpios & bank->context.risingdetect;
	mask &= ~bank->context.fallingdetect;
	bank->saved_datain &= ~mask;

1137
	if (!may_lose_context)
1138
		goto update_gpio_context_count;
1139

1140
	/*
1141
	 * If going to OFF, remove triggering for all wkup domain
1142 1143 1144
	 * non-wakeup GPIOs.  Otherwise spurious IRQs will be
	 * generated.  See OMAP2420 Errata item 1.101.
	 */
1145 1146
	if (!bank->loses_context && bank->enabled_non_wakeup_gpios) {
		nowake = bank->enabled_non_wakeup_gpios;
1147 1148
		omap_gpio_rmw(base + bank->regs->fallingdetect, nowake, ~nowake);
		omap_gpio_rmw(base + bank->regs->risingdetect, nowake, ~nowake);
1149
	}
1150

1151
update_gpio_context_count:
1152 1153
	if (bank->get_context_loss_count)
		bank->context_loss_count =
1154
				bank->get_context_loss_count(dev);
1155

1156
	omap_gpio_dbck_disable(bank);
1157 1158
}

1159
static void omap_gpio_unidle(struct gpio_bank *bank)
1160
{
1161
	struct device *dev = bank->chip.parent;
1162
	u32 l = 0, gen, gen0, gen1;
1163
	int c;
1164

1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
	/*
	 * 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 =
1175
				bank->get_context_loss_count(dev);
1176 1177
	}

1178
	omap_gpio_dbck_enable(bank);
1179

1180 1181
	if (bank->loses_context) {
		if (!bank->get_context_loss_count) {
1182 1183
			omap_gpio_restore_context(bank);
		} else {
1184
			c = bank->get_context_loss_count(dev);
1185 1186 1187
			if (c != bank->context_loss_count) {
				omap_gpio_restore_context(bank);
			} else {
1188
				return;
1189
			}
1190
		}
1191 1192 1193 1194 1195 1196
	} 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);
1197
	}
1198

1199
	l = readl_relaxed(bank->base + bank->regs->datain);
1200

1201 1202 1203 1204 1205 1206 1207 1208
	/*
	 * 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;
1209

1210 1211 1212 1213
	/*
	 * No need to generate IRQs for the rising edge for gpio IRQs
	 * configured with falling edge only; and vice versa.
	 */
1214
	gen0 = l & bank->context.fallingdetect;
1215
	gen0 &= bank->saved_datain;
1216

1217
	gen1 = l & bank->context.risingdetect;
1218
	gen1 &= ~(bank->saved_datain);
1219

1220
	/* FIXME: Consider GPIO IRQs with level detections properly! */
1221 1222
	gen = l & (~(bank->context.fallingdetect) &
					 ~(bank->context.risingdetect));
1223 1224
	/* Consider all GPIO IRQs needed to be updated */
	gen |= gen0 | gen1;
1225

1226 1227
	if (gen) {
		u32 old0, old1;
1228

1229 1230
		old0 = readl_relaxed(bank->base + bank->regs->leveldetect0);
		old1 = readl_relaxed(bank->base + bank->regs->leveldetect1);
1231

1232
		if (!bank->regs->irqstatus_raw0) {
1233
			writel_relaxed(old0 | gen, bank->base +
1234
						bank->regs->leveldetect0);
1235
			writel_relaxed(old1 | gen, bank->base +
1236
						bank->regs->leveldetect1);
1237
		}
1238

1239
		if (bank->regs->irqstatus_raw0) {
1240
			writel_relaxed(old0 | l, bank->base +
1241
						bank->regs->leveldetect0);
1242
			writel_relaxed(old1 | l, bank->base +
1243
						bank->regs->leveldetect1);
1244
		}
1245 1246
		writel_relaxed(old0, bank->base + bank->regs->leveldetect0);
		writel_relaxed(old1, bank->base + bank->regs->leveldetect1);
1247 1248 1249
	}
}

A
Arnd Bergmann 已提交
1250 1251
static int gpio_omap_cpu_notifier(struct notifier_block *nb,
				  unsigned long cmd, void *v)
1252
{
A
Arnd Bergmann 已提交
1253 1254
	struct gpio_bank *bank;
	unsigned long flags;
1255 1256
	int ret = NOTIFY_OK;
	u32 isr, mask;
1257

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

A
Arnd Bergmann 已提交
1260
	raw_spin_lock_irqsave(&bank->lock, flags);
1261 1262 1263
	if (bank->is_suspended)
		goto out_unlock;

A
Arnd Bergmann 已提交
1264 1265
	switch (cmd) {
	case CPU_CLUSTER_PM_ENTER:
1266 1267 1268 1269
		mask = omap_get_gpio_irqbank_mask(bank);
		isr = readl_relaxed(bank->base + bank->regs->irqstatus) & mask;
		if (isr) {
			ret = NOTIFY_BAD;
A
Arnd Bergmann 已提交
1270
			break;
1271
		}
A
Arnd Bergmann 已提交
1272 1273 1274 1275 1276 1277 1278
		omap_gpio_idle(bank, true);
		break;
	case CPU_CLUSTER_PM_ENTER_FAILED:
	case CPU_CLUSTER_PM_EXIT:
		omap_gpio_unidle(bank);
		break;
	}
1279 1280

out_unlock:
A
Arnd Bergmann 已提交
1281
	raw_spin_unlock_irqrestore(&bank->lock, flags);
1282

1283
	return ret;
1284 1285
}

1286
static const struct omap_gpio_reg_offs omap2_gpio_regs = {
1287
	.revision =		OMAP24XX_GPIO_REVISION,
1288
	.sysconfig =		OMAP24XX_GPIO_SYSCONFIG,
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
	.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,
};

1310
static const struct omap_gpio_reg_offs omap4_gpio_regs = {
1311
	.revision =		OMAP4_GPIO_REVISION,
1312
	.sysconfig =		OMAP4_GPIO_SYSCONFIG,
1313 1314 1315 1316 1317 1318 1319
	.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,
1320 1321
	.irqstatus_raw0 =	OMAP4_GPIO_IRQSTATUSRAW0,
	.irqstatus_raw1 =	OMAP4_GPIO_IRQSTATUSRAW1,
1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
	.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,
};

1336
static const struct omap_gpio_platform_data omap2_pdata = {
1337 1338 1339 1340 1341
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = false,
};

1342
static const struct omap_gpio_platform_data omap3_pdata = {
1343 1344 1345 1346 1347
	.regs = &omap2_gpio_regs,
	.bank_width = 32,
	.dbck_flag = true,
};

1348
static const struct omap_gpio_platform_data omap4_pdata = {
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369
	.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 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

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

1380
	pdata = device_get_match_data(dev);
A
Arnd Bergmann 已提交
1381

1382
	pdata = pdata ?: dev_get_platdata(dev);
A
Arnd Bergmann 已提交
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
	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 已提交
1396
	irqc->irq_ack = dummy_irq_chip.irq_ack,
A
Arnd Bergmann 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
	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;
1411
		return dev_err_probe(dev, bank->irq, "can't get irq resource\n");
A
Arnd Bergmann 已提交
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	}

	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);
1424 1425
#endif

A
Arnd Bergmann 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
	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;
	}

1437
	if (bank->regs->set_dataout && bank->regs->clr_dataout)
A
Arnd Bergmann 已提交
1438
		bank->set_dataout = omap_set_gpio_dataout_reg;
1439
	else
A
Arnd Bergmann 已提交
1440 1441 1442 1443 1444 1445
		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 */
1446
	bank->base = devm_platform_ioremap_resource(pdev, 0);
A
Arnd Bergmann 已提交
1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
	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);

1483 1484
	bank->nb.notifier_call = gpio_omap_cpu_notifier;
	cpu_pm_register_notifier(&bank->nb);
A
Arnd Bergmann 已提交
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494

	pm_runtime_put(dev);

	return 0;
}

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

1495
	cpu_pm_unregister_notifier(&bank->nb);
A
Arnd Bergmann 已提交
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
	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);

1514
	return 0;
A
Arnd Bergmann 已提交
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
}

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

1527
	return 0;
A
Arnd Bergmann 已提交
1528 1529
}

1530
static int __maybe_unused omap_gpio_suspend(struct device *dev)
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
{
	struct gpio_bank *bank = dev_get_drvdata(dev);

	if (bank->is_suspended)
		return 0;

	bank->needs_resume = 1;

	return omap_gpio_runtime_suspend(dev);
}

1542
static int __maybe_unused omap_gpio_resume(struct device *dev)
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
{
	struct gpio_bank *bank = dev_get_drvdata(dev);

	if (!bank->needs_resume)
		return 0;

	bank->needs_resume = 0;

	return omap_gpio_runtime_resume(dev);
}

A
Arnd Bergmann 已提交
1554 1555 1556
static const struct dev_pm_ops gpio_pm_ops = {
	SET_RUNTIME_PM_OPS(omap_gpio_runtime_suspend, omap_gpio_runtime_resume,
									NULL)
1557
	SET_LATE_SYSTEM_SLEEP_PM_OPS(omap_gpio_suspend, omap_gpio_resume)
A
Arnd Bergmann 已提交
1558 1559
};

1560 1561
static struct platform_driver omap_gpio_driver = {
	.probe		= omap_gpio_probe,
1562
	.remove		= omap_gpio_remove,
1563 1564
	.driver		= {
		.name	= "omap_gpio",
1565
		.pm	= &gpio_pm_ops,
A
Arnd Bergmann 已提交
1566
		.of_match_table = omap_gpio_match,
1567 1568 1569
	},
};

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

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