gpio.c 15.8 KB
Newer Older
1
/*
2
 * linux/arch/arm/mach-at91/gpio.c
3 4 5 6 7 8 9 10 11
 *
 * Copyright (C) 2005 HP Labs
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

A
Andrew Victor 已提交
12
#include <linux/clk.h>
13
#include <linux/errno.h>
14
#include <linux/gpio.h>
15 16
#include <linux/interrupt.h>
#include <linux/irq.h>
17 18
#include <linux/debugfs.h>
#include <linux/seq_file.h>
19 20 21
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/module.h>
22
#include <linux/io.h>
23

24 25
#include <mach/hardware.h>
#include <mach/at91_pio.h>
26

A
Andrew Victor 已提交
27 28
#include "generic.h"

29 30 31
struct at91_gpio_chip {
	struct gpio_chip	chip;
	struct at91_gpio_chip	*next;		/* Bank sharing same clock */
32
	int			id;		/* ID of register bank */
33
	void __iomem		*regbase;	/* Base of register bank */
34
	struct clk		*clock;		/* associated clock */
35
};
A
Andrew Victor 已提交
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)

static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip);
static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val);
static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset);
static int at91_gpiolib_direction_output(struct gpio_chip *chip,
					 unsigned offset, int val);
static int at91_gpiolib_direction_input(struct gpio_chip *chip,
					unsigned offset);

#define AT91_GPIO_CHIP(name, base_gpio, nr_gpio)			\
	{								\
		.chip = {						\
			.label		  = name,			\
			.direction_input  = at91_gpiolib_direction_input, \
			.direction_output = at91_gpiolib_direction_output, \
			.get		  = at91_gpiolib_get,		\
			.set		  = at91_gpiolib_set,		\
			.dbg_show	  = at91_gpiolib_dbg_show,	\
			.base		  = base_gpio,			\
			.ngpio		  = nr_gpio,			\
		},							\
	}
A
Andrew Victor 已提交
60

61
static struct at91_gpio_chip gpio_chip[] = {
62 63 64 65 66
	AT91_GPIO_CHIP("pioA", 0x00 + PIN_BASE, 32),
	AT91_GPIO_CHIP("pioB", 0x20 + PIN_BASE, 32),
	AT91_GPIO_CHIP("pioC", 0x40 + PIN_BASE, 32),
	AT91_GPIO_CHIP("pioD", 0x60 + PIN_BASE, 32),
	AT91_GPIO_CHIP("pioE", 0x80 + PIN_BASE, 32),
67 68 69
};

static int gpio_banks;
70 71 72 73 74

static inline void __iomem *pin_to_controller(unsigned pin)
{
	pin -= PIN_BASE;
	pin /= 32;
A
Andrew Victor 已提交
75
	if (likely(pin < gpio_banks))
76
		return gpio_chip[pin].regbase;
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

	return NULL;
}

static inline unsigned pin_to_mask(unsigned pin)
{
	pin -= PIN_BASE;
	return 1 << (pin % 32);
}


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

/* Not all hardware capabilities are exposed through these calls; they
 * only encapsulate the most common features and modes.  (So if you
 * want to change signals in groups, do it directly.)
 *
 * Bootloaders will usually handle some of the pin multiplexing setup.
 * The intent is certainly that by the time Linux is fully booted, all
 * pins should have been fully initialized.  These setup calls should
 * only be used by board setup routines, or possibly in driver probe().
 *
 * For bootloaders doing all that setup, these calls could be inlined
 * as NOPs so Linux won't duplicate any setup code
 */


D
David Brownell 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
/*
 * mux the pin to the "GPIO" peripheral role.
 */
int __init_or_module at91_set_GPIO_periph(unsigned pin, int use_pullup)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;
	__raw_writel(mask, pio + PIO_IDR);
	__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
	__raw_writel(mask, pio + PIO_PER);
	return 0;
}
EXPORT_SYMBOL(at91_set_GPIO_periph);


122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
/*
 * mux the pin to the "A" internal peripheral role.
 */
int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;

	__raw_writel(mask, pio + PIO_IDR);
	__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
	__raw_writel(mask, pio + PIO_ASR);
	__raw_writel(mask, pio + PIO_PDR);
	return 0;
}
EXPORT_SYMBOL(at91_set_A_periph);


/*
 * mux the pin to the "B" internal peripheral role.
 */
int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;

	__raw_writel(mask, pio + PIO_IDR);
	__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
	__raw_writel(mask, pio + PIO_BSR);
	__raw_writel(mask, pio + PIO_PDR);
	return 0;
}
EXPORT_SYMBOL(at91_set_B_periph);


/*
 * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
 * configure it for an input.
 */
int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;

	__raw_writel(mask, pio + PIO_IDR);
	__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
	__raw_writel(mask, pio + PIO_ODR);
	__raw_writel(mask, pio + PIO_PER);
	return 0;
}
EXPORT_SYMBOL(at91_set_gpio_input);


/*
 * mux the pin to the gpio controller (instead of "A" or "B" peripheral),
 * and configure it for an output.
 */
int __init_or_module at91_set_gpio_output(unsigned pin, int value)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;

	__raw_writel(mask, pio + PIO_IDR);
	__raw_writel(mask, pio + PIO_PUDR);
	__raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
	__raw_writel(mask, pio + PIO_OER);
	__raw_writel(mask, pio + PIO_PER);
	return 0;
}
EXPORT_SYMBOL(at91_set_gpio_output);


/*
 * enable/disable the glitch filter; mostly used with IRQ handling.
 */
int __init_or_module at91_set_deglitch(unsigned pin, int is_on)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;
	__raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
	return 0;
}
EXPORT_SYMBOL(at91_set_deglitch);

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
/*
 * enable/disable the multi-driver; This is only valid for output and
 * allows the output pin to run as an open collector output.
 */
int __init_or_module at91_set_multi_drive(unsigned pin, int is_on)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;

	__raw_writel(mask, pio + (is_on ? PIO_MDER : PIO_MDDR));
	return 0;
}
EXPORT_SYMBOL(at91_set_multi_drive);

237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
/*
 * assuming the pin is muxed as a gpio output, set its value.
 */
int at91_set_gpio_value(unsigned pin, int value)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);

	if (!pio)
		return -EINVAL;
	__raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
	return 0;
}
EXPORT_SYMBOL(at91_set_gpio_value);


/*
 * read the pin's value (works even if it's not muxed as a gpio).
 */
int at91_get_gpio_value(unsigned pin)
{
	void __iomem	*pio = pin_to_controller(pin);
	unsigned	mask = pin_to_mask(pin);
	u32		pdsr;

	if (!pio)
		return -EINVAL;
	pdsr = __raw_readl(pio + PIO_PDSR);
	return (pdsr & mask) != 0;
}
EXPORT_SYMBOL(at91_get_gpio_value);

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

271 272
#ifdef CONFIG_PM

A
Andrew Victor 已提交
273 274
static u32 wakeups[MAX_GPIO_BANKS];
static u32 backups[MAX_GPIO_BANKS];
275

276
static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
277
{
278 279
	unsigned	mask = pin_to_mask(d->irq);
	unsigned	bank = (d->irq - PIN_BASE) / 32;
280

281
	if (unlikely(bank >= MAX_GPIO_BANKS))
282 283 284
		return -EINVAL;

	if (state)
285
		wakeups[bank] |= mask;
286
	else
287 288
		wakeups[bank] &= ~mask;

289
	irq_set_irq_wake(gpio_chip[bank].id, state);
290 291 292 293 294 295 296 297

	return 0;
}

void at91_gpio_suspend(void)
{
	int i;

A
Andrew Victor 已提交
298
	for (i = 0; i < gpio_banks; i++) {
299
		void __iomem	*pio = gpio_chip[i].regbase;
300

301 302 303
		backups[i] = __raw_readl(pio + PIO_IMR);
		__raw_writel(backups[i], pio + PIO_IDR);
		__raw_writel(wakeups[i], pio + PIO_IER);
304

305
		if (!wakeups[i])
306
			clk_disable(gpio_chip[i].clock);
307
		else {
308
#ifdef CONFIG_PM_DEBUG
309
			printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]);
310 311 312 313 314 315 316 317 318
#endif
		}
	}
}

void at91_gpio_resume(void)
{
	int i;

A
Andrew Victor 已提交
319
	for (i = 0; i < gpio_banks; i++) {
320
		void __iomem	*pio = gpio_chip[i].regbase;
321

322
		if (!wakeups[i])
323
			clk_enable(gpio_chip[i].clock);
324

325 326
		__raw_writel(wakeups[i], pio + PIO_IDR);
		__raw_writel(backups[i], pio + PIO_IER);
A
Andrew Victor 已提交
327
	}
328 329 330 331 332 333
}

#else
#define gpio_irq_set_wake	NULL
#endif

334 335 336 337 338 339 340 341 342 343 344 345

/* Several AIC controller irqs are dispatched through this GPIO handler.
 * To use any AT91_PIN_* as an externally triggered IRQ, first call
 * at91_set_gpio_input() then maybe enable its glitch filter.
 * Then just request_irq() with the pin ID; it works like any ARM IRQ
 * handler, though it always triggers on rising and falling edges.
 *
 * Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
 * configuring them with at91_set_a_periph() or at91_set_b_periph().
 * IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
 */

346
static void gpio_irq_mask(struct irq_data *d)
347
{
348 349
	void __iomem	*pio = pin_to_controller(d->irq);
	unsigned	mask = pin_to_mask(d->irq);
350 351 352 353 354

	if (pio)
		__raw_writel(mask, pio + PIO_IDR);
}

355
static void gpio_irq_unmask(struct irq_data *d)
356
{
357 358
	void __iomem	*pio = pin_to_controller(d->irq);
	unsigned	mask = pin_to_mask(d->irq);
359 360 361 362 363

	if (pio)
		__raw_writel(mask, pio + PIO_IER);
}

364
static int gpio_irq_type(struct irq_data *d, unsigned type)
365
{
366 367 368 369 370 371 372
	switch (type) {
	case IRQ_TYPE_NONE:
	case IRQ_TYPE_EDGE_BOTH:
		return 0;
	default:
		return -EINVAL;
	}
373 374
}

375 376
static struct irq_chip gpio_irqchip = {
	.name		= "GPIO",
T
Thomas Gleixner 已提交
377
	.irq_disable	= gpio_irq_mask,
378 379 380 381
	.irq_mask	= gpio_irq_mask,
	.irq_unmask	= gpio_irq_unmask,
	.irq_set_type	= gpio_irq_type,
	.irq_set_wake	= gpio_irq_set_wake,
382 383
};

384
static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
385 386
{
	unsigned	pin;
T
Thomas Gleixner 已提交
387 388 389 390
	struct irq_data *idata = irq_desc_get_irq_data(desc);
	struct irq_chip *chip = irq_data_get_irq_chip(idata);
	struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(idata);
	void __iomem	*pio = at91_gpio->regbase;
391 392 393
	u32		isr;

	/* temporarily mask (level sensitive) parent IRQ */
T
Thomas Gleixner 已提交
394
	chip->irq_ack(idata);
395
	for (;;) {
396 397 398 399
		/* Reading ISR acks pending (edge triggered) GPIO interrupts.
		 * When there none are pending, we're finished unless we need
		 * to process multiple banks (like ID_PIOCDE on sam9263).
		 */
400
		isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR);
401
		if (!isr) {
402
			if (!at91_gpio->next)
403
				break;
404 405
			at91_gpio = at91_gpio->next;
			pio = at91_gpio->regbase;
406 407
			continue;
		}
408

409
		pin = at91_gpio->chip.base;
410 411

		while (isr) {
T
Thomas Gleixner 已提交
412 413
			if (isr & 1)
				generic_handle_irq(pin);
414 415 416 417
			pin++;
			isr >>= 1;
		}
	}
T
Thomas Gleixner 已提交
418
	chip->irq_unmask(idata);
419 420 421
	/* now it may re-trigger */
}

A
Andrew Victor 已提交
422 423
/*--------------------------------------------------------------------------*/

424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
#ifdef CONFIG_DEBUG_FS

static int at91_gpio_show(struct seq_file *s, void *unused)
{
	int bank, j;

	/* print heading */
	seq_printf(s, "Pin\t");
	for (bank = 0; bank < gpio_banks; bank++) {
		seq_printf(s, "PIO%c\t", 'A' + bank);
	};
	seq_printf(s, "\n\n");

	/* print pin status */
	for (j = 0; j < 32; j++) {
		seq_printf(s, "%i:\t", j);

		for (bank = 0; bank < gpio_banks; bank++) {
			unsigned	pin  = PIN_BASE + (32 * bank) + j;
			void __iomem	*pio = pin_to_controller(pin);
			unsigned	mask = pin_to_mask(pin);

			if (__raw_readl(pio + PIO_PSR) & mask)
				seq_printf(s, "GPIO:%s", __raw_readl(pio + PIO_PDSR) & mask ? "1" : "0");
			else
				seq_printf(s, "%s", __raw_readl(pio + PIO_ABSR) & mask ? "B" : "A");

			seq_printf(s, "\t");
		}

		seq_printf(s, "\n");
	}

	return 0;
}

static int at91_gpio_open(struct inode *inode, struct file *file)
{
	return single_open(file, at91_gpio_show, NULL);
}

static const struct file_operations at91_gpio_operations = {
	.open		= at91_gpio_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static int __init at91_gpio_debugfs_init(void)
{
	/* /sys/kernel/debug/at91_gpio */
	(void) debugfs_create_file("at91_gpio", S_IFREG | S_IRUGO, NULL, NULL, &at91_gpio_operations);
	return 0;
}
postcore_initcall(at91_gpio_debugfs_init);

#endif

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

484 485
/*
 * This lock class tells lockdep that GPIO irqs are in a different
486 487 488 489
 * category than their parents, so it won't report false recursion.
 */
static struct lock_class_key gpio_lock_class;

A
Andrew Victor 已提交
490 491 492 493
/*
 * Called from the processor-specific init to enable GPIO interrupt support.
 */
void __init at91_gpio_irq_setup(void)
494
{
495
	unsigned		pioc, pin;
496
	struct at91_gpio_chip	*this, *prev;
497

498
	for (pioc = 0, pin = PIN_BASE, this = gpio_chip, prev = NULL;
499 500
			pioc++ < gpio_banks;
			prev = this, this++) {
501
		unsigned	id = this->id;
502 503
		unsigned	i;

504
		__raw_writel(~0, this->regbase + PIO_IDR);
505

506
		for (i = 0, pin = this->chip.base; i < 32; i++, pin++) {
507
			irq_set_lockdep_class(pin, &gpio_lock_class);
508

509 510
			/*
			 * Can use the "simple" and not "edge" handler since it's
511
			 * shorter, and the AIC handles interrupts sanely.
512
			 */
513 514
			irq_set_chip_and_handler(pin, &gpio_irqchip,
						 handle_simple_irq);
515 516 517
			set_irq_flags(pin, IRQF_VALID);
		}

518 519 520 521 522 523 524
		/* The toplevel handler handles one bank of GPIOs, except
		 * AT91SAM9263_ID_PIOCDE handles three... PIOC is first in
		 * the list, so we only set up that handler.
		 */
		if (prev && prev->next == this)
			continue;

T
Thomas Gleixner 已提交
525 526
		irq_set_chip_data(id, this);
		irq_set_chained_handler(id, gpio_irq_handler);
527
	}
A
Andrew Victor 已提交
528 529 530
	pr_info("AT91: %d gpio irqs in %d banks\n", pin - PIN_BASE, gpio_banks);
}

531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
/* gpiolib support */
static int at91_gpiolib_direction_input(struct gpio_chip *chip,
					unsigned offset)
{
	struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
	void __iomem *pio = at91_gpio->regbase;
	unsigned mask = 1 << offset;

	__raw_writel(mask, pio + PIO_ODR);
	return 0;
}

static int at91_gpiolib_direction_output(struct gpio_chip *chip,
					 unsigned offset, int val)
{
	struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
	void __iomem *pio = at91_gpio->regbase;
	unsigned mask = 1 << offset;

	__raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
	__raw_writel(mask, pio + PIO_OER);
	return 0;
}

static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset)
{
	struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
	void __iomem *pio = at91_gpio->regbase;
	unsigned mask = 1 << offset;
	u32 pdsr;

	pdsr = __raw_readl(pio + PIO_PDSR);
	return (pdsr & mask) != 0;
}

static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val)
{
	struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
	void __iomem *pio = at91_gpio->regbase;
	unsigned mask = 1 << offset;

	__raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
}

static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
{
	int i;

	for (i = 0; i < chip->ngpio; i++) {
		unsigned pin = chip->base + i;
		void __iomem *pio = pin_to_controller(pin);
		unsigned mask = pin_to_mask(pin);
		const char *gpio_label;

		gpio_label = gpiochip_is_requested(chip, i);
		if (gpio_label) {
			seq_printf(s, "[%s] GPIO%s%d: ",
				   gpio_label, chip->label, i);
			if (__raw_readl(pio + PIO_PSR) & mask)
				seq_printf(s, "[gpio] %s\n",
					   at91_get_gpio_value(pin) ?
					   "set" : "clear");
			else
				seq_printf(s, "[periph %s]\n",
					   __raw_readl(pio + PIO_ABSR) &
					   mask ? "B" : "A");
		}
	}
}

A
Andrew Victor 已提交
601 602 603 604 605
/*
 * Called from the processor-specific init to enable GPIO pin support.
 */
void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks)
{
606
	unsigned		i;
607
	struct at91_gpio_chip *at91_gpio, *last = NULL;
608

A
Andrew Victor 已提交
609 610 611
	BUG_ON(nr_banks > MAX_GPIO_BANKS);

	gpio_banks = nr_banks;
612

613 614 615
	for (i = 0; i < nr_banks; i++) {
		at91_gpio = &gpio_chip[i];

616
		at91_gpio->id = data[i].id;
617
		at91_gpio->chip.base = PIN_BASE + i * 32;
618

619
		at91_gpio->regbase = ioremap(data[i].regbase, 512);
620 621 622 623
		if (!at91_gpio->regbase) {
			pr_err("at91_gpio.%d, failed to map registers, ignoring.\n", i);
			continue;
		}
624

625 626 627 628 629 630
		at91_gpio->clock = clk_get_sys(NULL, at91_gpio->chip.label);
		if (!at91_gpio->clock) {
			pr_err("at91_gpio.%d, failed to get clock, ignoring.\n", i);
			continue;
		}

631
		/* enable PIO controller's clock */
632
		clk_enable(at91_gpio->clock);
633

634
		/* AT91SAM9263_ID_PIOCDE groups PIOC, PIOD, PIOE */
635
		if (last && last->id == at91_gpio->id)
636 637 638 639
			last->next = at91_gpio;
		last = at91_gpio;

		gpiochip_add(&at91_gpio->chip);
640
	}
641
}