gpio-tegra.c 14.4 KB
Newer Older
E
Erik Gilling 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * arch/arm/mach-tegra/gpio.c
 *
 * Copyright (c) 2010 Google, Inc
 *
 * Author:
 *	Erik Gilling <konkers@google.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

20
#include <linux/err.h>
E
Erik Gilling 已提交
21 22
#include <linux/init.h>
#include <linux/irq.h>
23
#include <linux/interrupt.h>
E
Erik Gilling 已提交
24 25
#include <linux/io.h>
#include <linux/gpio.h>
26
#include <linux/of_device.h>
27 28
#include <linux/platform_device.h>
#include <linux/module.h>
29
#include <linux/irqdomain.h>
30
#include <linux/irqchip/chained_irq.h>
31
#include <linux/pinctrl/consumer.h>
32
#include <linux/pm.h>
E
Erik Gilling 已提交
33 34 35 36 37

#define GPIO_BANK(x)		((x) >> 5)
#define GPIO_PORT(x)		(((x) >> 3) & 0x3)
#define GPIO_BIT(x)		((x) & 0x7)

38 39
#define GPIO_REG(x)		(GPIO_BANK(x) * tegra_gpio_bank_stride + \
					GPIO_PORT(x) * 4)
E
Erik Gilling 已提交
40 41 42 43 44 45 46 47 48 49

#define GPIO_CNF(x)		(GPIO_REG(x) + 0x00)
#define GPIO_OE(x)		(GPIO_REG(x) + 0x10)
#define GPIO_OUT(x)		(GPIO_REG(x) + 0X20)
#define GPIO_IN(x)		(GPIO_REG(x) + 0x30)
#define GPIO_INT_STA(x)		(GPIO_REG(x) + 0x40)
#define GPIO_INT_ENB(x)		(GPIO_REG(x) + 0x50)
#define GPIO_INT_LVL(x)		(GPIO_REG(x) + 0x60)
#define GPIO_INT_CLR(x)		(GPIO_REG(x) + 0x70)

50 51 52 53 54 55
#define GPIO_MSK_CNF(x)		(GPIO_REG(x) + tegra_gpio_upper_offset + 0x00)
#define GPIO_MSK_OE(x)		(GPIO_REG(x) + tegra_gpio_upper_offset + 0x10)
#define GPIO_MSK_OUT(x)		(GPIO_REG(x) + tegra_gpio_upper_offset + 0X20)
#define GPIO_MSK_INT_STA(x)	(GPIO_REG(x) + tegra_gpio_upper_offset + 0x40)
#define GPIO_MSK_INT_ENB(x)	(GPIO_REG(x) + tegra_gpio_upper_offset + 0x50)
#define GPIO_MSK_INT_LVL(x)	(GPIO_REG(x) + tegra_gpio_upper_offset + 0x60)
E
Erik Gilling 已提交
56 57 58 59 60 61 62 63 64 65 66 67

#define GPIO_INT_LVL_MASK		0x010101
#define GPIO_INT_LVL_EDGE_RISING	0x000101
#define GPIO_INT_LVL_EDGE_FALLING	0x000100
#define GPIO_INT_LVL_EDGE_BOTH		0x010100
#define GPIO_INT_LVL_LEVEL_HIGH		0x000001
#define GPIO_INT_LVL_LEVEL_LOW		0x000000

struct tegra_gpio_bank {
	int bank;
	int irq;
	spinlock_t lvl_lock[4];
68
#ifdef CONFIG_PM_SLEEP
69 70 71 72 73
	u32 cnf[4];
	u32 out[4];
	u32 oe[4];
	u32 int_enb[4];
	u32 int_lvl[4];
74
	u32 wake_enb[4];
75
#endif
E
Erik Gilling 已提交
76 77
};

78
static struct device *dev;
79
static struct irq_domain *irq_domain;
80
static void __iomem *regs;
81
static u32 tegra_gpio_bank_count;
82 83
static u32 tegra_gpio_bank_stride;
static u32 tegra_gpio_upper_offset;
84
static struct tegra_gpio_bank *tegra_gpio_banks;
85 86 87 88 89 90 91 92 93 94

static inline void tegra_gpio_writel(u32 val, u32 reg)
{
	__raw_writel(val, regs + reg);
}

static inline u32 tegra_gpio_readl(u32 reg)
{
	return __raw_readl(regs + reg);
}
E
Erik Gilling 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107

static int tegra_gpio_compose(int bank, int port, int bit)
{
	return (bank << 5) | ((port & 0x3) << 3) | (bit & 0x7);
}

static void tegra_gpio_mask_write(u32 reg, int gpio, int value)
{
	u32 val;

	val = 0x100 << GPIO_BIT(gpio);
	if (value)
		val |= 1 << GPIO_BIT(gpio);
108
	tegra_gpio_writel(val, reg);
E
Erik Gilling 已提交
109 110
}

111
static void tegra_gpio_enable(int gpio)
E
Erik Gilling 已提交
112 113 114 115
{
	tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1);
}

116
static void tegra_gpio_disable(int gpio)
E
Erik Gilling 已提交
117 118 119 120
{
	tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 0);
}

121
static int tegra_gpio_request(struct gpio_chip *chip, unsigned offset)
122 123 124 125
{
	return pinctrl_request_gpio(offset);
}

126
static void tegra_gpio_free(struct gpio_chip *chip, unsigned offset)
127 128 129 130 131
{
	pinctrl_free_gpio(offset);
	tegra_gpio_disable(offset);
}

E
Erik Gilling 已提交
132 133 134 135 136 137 138
static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
{
	tegra_gpio_mask_write(GPIO_MSK_OUT(offset), offset, value);
}

static int tegra_gpio_get(struct gpio_chip *chip, unsigned offset)
{
139 140 141 142 143
	/* If gpio is in output mode then read from the out value */
	if ((tegra_gpio_readl(GPIO_OE(offset)) >> GPIO_BIT(offset)) & 1)
		return (tegra_gpio_readl(GPIO_OUT(offset)) >>
				GPIO_BIT(offset)) & 0x1;

144
	return (tegra_gpio_readl(GPIO_IN(offset)) >> GPIO_BIT(offset)) & 0x1;
E
Erik Gilling 已提交
145 146 147 148 149
}

static int tegra_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
{
	tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 0);
150
	tegra_gpio_enable(offset);
E
Erik Gilling 已提交
151 152 153 154 155 156 157 158
	return 0;
}

static int tegra_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
					int value)
{
	tegra_gpio_set(chip, offset, value);
	tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 1);
159
	tegra_gpio_enable(offset);
E
Erik Gilling 已提交
160 161 162
	return 0;
}

163 164
static int tegra_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
{
165
	return irq_find_mapping(irq_domain, offset);
166
}
E
Erik Gilling 已提交
167 168 169

static struct gpio_chip tegra_gpio_chip = {
	.label			= "tegra-gpio",
170 171
	.request		= tegra_gpio_request,
	.free			= tegra_gpio_free,
E
Erik Gilling 已提交
172 173 174 175
	.direction_input	= tegra_gpio_direction_input,
	.get			= tegra_gpio_get,
	.direction_output	= tegra_gpio_direction_output,
	.set			= tegra_gpio_set,
176
	.to_irq			= tegra_gpio_to_irq,
E
Erik Gilling 已提交
177 178 179
	.base			= 0,
};

180
static void tegra_gpio_irq_ack(struct irq_data *d)
E
Erik Gilling 已提交
181
{
182
	int gpio = d->hwirq;
E
Erik Gilling 已提交
183

184
	tegra_gpio_writel(1 << GPIO_BIT(gpio), GPIO_INT_CLR(gpio));
E
Erik Gilling 已提交
185 186
}

187
static void tegra_gpio_irq_mask(struct irq_data *d)
E
Erik Gilling 已提交
188
{
189
	int gpio = d->hwirq;
E
Erik Gilling 已提交
190 191 192 193

	tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 0);
}

194
static void tegra_gpio_irq_unmask(struct irq_data *d)
E
Erik Gilling 已提交
195
{
196
	int gpio = d->hwirq;
E
Erik Gilling 已提交
197 198 199 200

	tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 1);
}

201
static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type)
E
Erik Gilling 已提交
202
{
203
	int gpio = d->hwirq;
204
	struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
E
Erik Gilling 已提交
205 206 207 208
	int port = GPIO_PORT(gpio);
	int lvl_type;
	int val;
	unsigned long flags;
209
	int ret;
E
Erik Gilling 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235

	switch (type & IRQ_TYPE_SENSE_MASK) {
	case IRQ_TYPE_EDGE_RISING:
		lvl_type = GPIO_INT_LVL_EDGE_RISING;
		break;

	case IRQ_TYPE_EDGE_FALLING:
		lvl_type = GPIO_INT_LVL_EDGE_FALLING;
		break;

	case IRQ_TYPE_EDGE_BOTH:
		lvl_type = GPIO_INT_LVL_EDGE_BOTH;
		break;

	case IRQ_TYPE_LEVEL_HIGH:
		lvl_type = GPIO_INT_LVL_LEVEL_HIGH;
		break;

	case IRQ_TYPE_LEVEL_LOW:
		lvl_type = GPIO_INT_LVL_LEVEL_LOW;
		break;

	default:
		return -EINVAL;
	}

236
	ret = gpiochip_lock_as_irq(&tegra_gpio_chip, gpio);
237 238 239 240 241
	if (ret) {
		dev_err(dev, "unable to lock Tegra GPIO %d as IRQ\n", gpio);
		return ret;
	}

E
Erik Gilling 已提交
242 243
	spin_lock_irqsave(&bank->lvl_lock[port], flags);

244
	val = tegra_gpio_readl(GPIO_INT_LVL(gpio));
E
Erik Gilling 已提交
245 246
	val &= ~(GPIO_INT_LVL_MASK << GPIO_BIT(gpio));
	val |= lvl_type << GPIO_BIT(gpio);
247
	tegra_gpio_writel(val, GPIO_INT_LVL(gpio));
E
Erik Gilling 已提交
248 249 250

	spin_unlock_irqrestore(&bank->lvl_lock[port], flags);

251 252 253
	tegra_gpio_mask_write(GPIO_MSK_OE(gpio), gpio, 0);
	tegra_gpio_enable(gpio);

E
Erik Gilling 已提交
254
	if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
255
		irq_set_handler_locked(d, handle_level_irq);
E
Erik Gilling 已提交
256
	else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
257
		irq_set_handler_locked(d, handle_edge_irq);
E
Erik Gilling 已提交
258 259 260 261

	return 0;
}

262 263 264 265
static void tegra_gpio_irq_shutdown(struct irq_data *d)
{
	int gpio = d->hwirq;

266
	gpiochip_unlock_as_irq(&tegra_gpio_chip, gpio);
267 268
}

E
Erik Gilling 已提交
269 270 271 272 273
static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
{
	int port;
	int pin;
	int unmasked = 0;
274
	struct irq_chip *chip = irq_desc_get_chip(desc);
275
	struct tegra_gpio_bank *bank = irq_desc_get_handler_data(desc);
E
Erik Gilling 已提交
276

277
	chained_irq_enter(chip, desc);
E
Erik Gilling 已提交
278 279 280

	for (port = 0; port < 4; port++) {
		int gpio = tegra_gpio_compose(bank->bank, port, 0);
281 282 283
		unsigned long sta = tegra_gpio_readl(GPIO_INT_STA(gpio)) &
			tegra_gpio_readl(GPIO_INT_ENB(gpio));
		u32 lvl = tegra_gpio_readl(GPIO_INT_LVL(gpio));
E
Erik Gilling 已提交
284 285

		for_each_set_bit(pin, &sta, 8) {
286
			tegra_gpio_writel(1 << pin, GPIO_INT_CLR(gpio));
E
Erik Gilling 已提交
287 288

			/* if gpio is edge triggered, clear condition
289
			 * before executing the handler so that we don't
E
Erik Gilling 已提交
290 291 292 293
			 * miss edges
			 */
			if (lvl & (0x100 << pin)) {
				unmasked = 1;
294
				chained_irq_exit(chip, desc);
E
Erik Gilling 已提交
295 296 297 298 299 300 301
			}

			generic_handle_irq(gpio_to_irq(gpio + pin));
		}
	}

	if (!unmasked)
302
		chained_irq_exit(chip, desc);
E
Erik Gilling 已提交
303 304 305

}

306 307
#ifdef CONFIG_PM_SLEEP
static int tegra_gpio_resume(struct device *dev)
308 309
{
	unsigned long flags;
310 311
	int b;
	int p;
312 313 314

	local_irq_save(flags);

315
	for (b = 0; b < tegra_gpio_bank_count; b++) {
316 317 318 319
		struct tegra_gpio_bank *bank = &tegra_gpio_banks[b];

		for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
			unsigned int gpio = (b<<5) | (p<<3);
320 321 322 323 324
			tegra_gpio_writel(bank->cnf[p], GPIO_CNF(gpio));
			tegra_gpio_writel(bank->out[p], GPIO_OUT(gpio));
			tegra_gpio_writel(bank->oe[p], GPIO_OE(gpio));
			tegra_gpio_writel(bank->int_lvl[p], GPIO_INT_LVL(gpio));
			tegra_gpio_writel(bank->int_enb[p], GPIO_INT_ENB(gpio));
325 326 327 328
		}
	}

	local_irq_restore(flags);
329
	return 0;
330 331
}

332
static int tegra_gpio_suspend(struct device *dev)
333 334
{
	unsigned long flags;
335 336
	int b;
	int p;
337 338

	local_irq_save(flags);
339
	for (b = 0; b < tegra_gpio_bank_count; b++) {
340 341 342 343
		struct tegra_gpio_bank *bank = &tegra_gpio_banks[b];

		for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
			unsigned int gpio = (b<<5) | (p<<3);
344 345 346 347 348
			bank->cnf[p] = tegra_gpio_readl(GPIO_CNF(gpio));
			bank->out[p] = tegra_gpio_readl(GPIO_OUT(gpio));
			bank->oe[p] = tegra_gpio_readl(GPIO_OE(gpio));
			bank->int_enb[p] = tegra_gpio_readl(GPIO_INT_ENB(gpio));
			bank->int_lvl[p] = tegra_gpio_readl(GPIO_INT_LVL(gpio));
349 350 351 352

			/* Enable gpio irq for wake up source */
			tegra_gpio_writel(bank->wake_enb[p],
					  GPIO_INT_ENB(gpio));
353 354 355
		}
	}
	local_irq_restore(flags);
356
	return 0;
357 358
}

359
static int tegra_gpio_irq_set_wake(struct irq_data *d, unsigned int enable)
360
{
361
	struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
362 363 364 365 366 367 368 369 370 371 372 373
	int gpio = d->hwirq;
	u32 port, bit, mask;

	port = GPIO_PORT(gpio);
	bit = GPIO_BIT(gpio);
	mask = BIT(bit);

	if (enable)
		bank->wake_enb[port] |= mask;
	else
		bank->wake_enb[port] &= ~mask;

T
Thomas Gleixner 已提交
374
	return irq_set_irq_wake(bank->irq, enable);
375 376
}
#endif
E
Erik Gilling 已提交
377 378 379

static struct irq_chip tegra_gpio_irq_chip = {
	.name		= "GPIO",
380 381 382 383
	.irq_ack	= tegra_gpio_irq_ack,
	.irq_mask	= tegra_gpio_irq_mask,
	.irq_unmask	= tegra_gpio_irq_unmask,
	.irq_set_type	= tegra_gpio_irq_set_type,
384
	.irq_shutdown	= tegra_gpio_irq_shutdown,
385
#ifdef CONFIG_PM_SLEEP
386
	.irq_set_wake	= tegra_gpio_irq_set_wake,
387
#endif
E
Erik Gilling 已提交
388 389
};

390 391 392 393
static const struct dev_pm_ops tegra_gpio_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(tegra_gpio_suspend, tegra_gpio_resume)
};

394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
struct tegra_gpio_soc_config {
	u32 bank_stride;
	u32 upper_offset;
};

static struct tegra_gpio_soc_config tegra20_gpio_config = {
	.bank_stride = 0x80,
	.upper_offset = 0x800,
};

static struct tegra_gpio_soc_config tegra30_gpio_config = {
	.bank_stride = 0x100,
	.upper_offset = 0x80,
};

409
static const struct of_device_id tegra_gpio_of_match[] = {
410 411 412 413
	{ .compatible = "nvidia,tegra30-gpio", .data = &tegra30_gpio_config },
	{ .compatible = "nvidia,tegra20-gpio", .data = &tegra20_gpio_config },
	{ },
};
E
Erik Gilling 已提交
414 415 416 417 418 419

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

B
Bill Pemberton 已提交
420
static int tegra_gpio_probe(struct platform_device *pdev)
E
Erik Gilling 已提交
421
{
422 423
	const struct of_device_id *match;
	struct tegra_gpio_soc_config *config;
424
	struct resource *res;
E
Erik Gilling 已提交
425
	struct tegra_gpio_bank *bank;
426
	int ret;
427
	int gpio;
E
Erik Gilling 已提交
428 429 430
	int i;
	int j;

431 432
	dev = &pdev->dev;

433
	match = of_match_device(tegra_gpio_of_match, &pdev->dev);
S
Stephen Warren 已提交
434 435 436 437 438
	if (!match) {
		dev_err(&pdev->dev, "Error: No device match found\n");
		return -ENODEV;
	}
	config = (struct tegra_gpio_soc_config *)match->data;
439 440 441 442

	tegra_gpio_bank_stride = config->bank_stride;
	tegra_gpio_upper_offset = config->upper_offset;

443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
	for (;;) {
		res = platform_get_resource(pdev, IORESOURCE_IRQ, tegra_gpio_bank_count);
		if (!res)
			break;
		tegra_gpio_bank_count++;
	}
	if (!tegra_gpio_bank_count) {
		dev_err(&pdev->dev, "Missing IRQ resource\n");
		return -ENODEV;
	}

	tegra_gpio_chip.ngpio = tegra_gpio_bank_count * 32;

	tegra_gpio_banks = devm_kzalloc(&pdev->dev,
			tegra_gpio_bank_count * sizeof(*tegra_gpio_banks),
			GFP_KERNEL);
459
	if (!tegra_gpio_banks)
460 461
		return -ENODEV;

462 463
	irq_domain = irq_domain_add_linear(pdev->dev.of_node,
					   tegra_gpio_chip.ngpio,
464
					   &irq_domain_simple_ops, NULL);
465 466
	if (!irq_domain)
		return -ENODEV;
467

468
	for (i = 0; i < tegra_gpio_bank_count; i++) {
469 470 471 472 473 474 475 476 477 478 479 480
		res = platform_get_resource(pdev, IORESOURCE_IRQ, i);
		if (!res) {
			dev_err(&pdev->dev, "Missing IRQ resource\n");
			return -ENODEV;
		}

		bank = &tegra_gpio_banks[i];
		bank->bank = i;
		bank->irq = res->start;
	}

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
481 482 483
	regs = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(regs))
		return PTR_ERR(regs);
484

485
	for (i = 0; i < tegra_gpio_bank_count; i++) {
E
Erik Gilling 已提交
486 487
		for (j = 0; j < 4; j++) {
			int gpio = tegra_gpio_compose(i, j, 0);
488
			tegra_gpio_writel(0x00, GPIO_INT_ENB(gpio));
E
Erik Gilling 已提交
489 490 491
		}
	}

492
	tegra_gpio_chip.of_node = pdev->dev.of_node;
493

494 495 496 497 498
	ret = gpiochip_add(&tegra_gpio_chip);
	if (ret < 0) {
		irq_domain_remove(irq_domain);
		return ret;
	}
E
Erik Gilling 已提交
499

500
	for (gpio = 0; gpio < tegra_gpio_chip.ngpio; gpio++) {
501
		int irq = irq_create_mapping(irq_domain, gpio);
502
		/* No validity check; all Tegra GPIOs are valid IRQs */
E
Erik Gilling 已提交
503

504
		bank = &tegra_gpio_banks[GPIO_BANK(gpio)];
E
Erik Gilling 已提交
505

506 507 508
		irq_set_lockdep_class(irq, &gpio_lock_class);
		irq_set_chip_data(irq, bank);
		irq_set_chip_and_handler(irq, &tegra_gpio_irq_chip,
509
					 handle_simple_irq);
E
Erik Gilling 已提交
510 511
	}

512
	for (i = 0; i < tegra_gpio_bank_count; i++) {
E
Erik Gilling 已提交
513 514
		bank = &tegra_gpio_banks[i];

515 516
		irq_set_chained_handler_and_data(bank->irq,
						 tegra_gpio_irq_handler, bank);
E
Erik Gilling 已提交
517 518 519 520 521 522 523 524

		for (j = 0; j < 4; j++)
			spin_lock_init(&bank->lvl_lock[j]);
	}

	return 0;
}

525 526 527
static struct platform_driver tegra_gpio_driver = {
	.driver		= {
		.name	= "tegra-gpio",
528
		.pm	= &tegra_gpio_pm_ops,
529 530 531 532 533 534 535 536 537
		.of_match_table = tegra_gpio_of_match,
	},
	.probe		= tegra_gpio_probe,
};

static int __init tegra_gpio_init(void)
{
	return platform_driver_register(&tegra_gpio_driver);
}
E
Erik Gilling 已提交
538 539 540 541 542 543 544 545 546 547 548 549
postcore_initcall(tegra_gpio_init);

#ifdef	CONFIG_DEBUG_FS

#include <linux/debugfs.h>
#include <linux/seq_file.h>

static int dbg_gpio_show(struct seq_file *s, void *unused)
{
	int i;
	int j;

550
	for (i = 0; i < tegra_gpio_bank_count; i++) {
E
Erik Gilling 已提交
551 552
		for (j = 0; j < 4; j++) {
			int gpio = tegra_gpio_compose(i, j, 0);
553 554 555
			seq_printf(s,
				"%d:%d %02x %02x %02x %02x %02x %02x %06x\n",
				i, j,
556 557 558 559 560 561 562
				tegra_gpio_readl(GPIO_CNF(gpio)),
				tegra_gpio_readl(GPIO_OE(gpio)),
				tegra_gpio_readl(GPIO_OUT(gpio)),
				tegra_gpio_readl(GPIO_IN(gpio)),
				tegra_gpio_readl(GPIO_INT_STA(gpio)),
				tegra_gpio_readl(GPIO_INT_ENB(gpio)),
				tegra_gpio_readl(GPIO_INT_LVL(gpio)));
E
Erik Gilling 已提交
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
		}
	}
	return 0;
}

static int dbg_gpio_open(struct inode *inode, struct file *file)
{
	return single_open(file, dbg_gpio_show, &inode->i_private);
}

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

static int __init tegra_gpio_debuginit(void)
{
	(void) debugfs_create_file("tegra_gpio", S_IRUGO,
					NULL, NULL, &debug_fops);
	return 0;
}
late_initcall(tegra_gpio_debuginit);
#endif