diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2011-06-15 16:57:39 -0400 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2011-06-15 16:57:39 -0400 |
| commit | 2bc7c85210d75b7a8a7326284b4f608a16f52ffc (patch) | |
| tree | ca306d89f64ceeee92531cc0a9ba5d246d09f044 /drivers/gpio | |
| parent | 12610be33df5563d3f8cb141f231d4dc5b2a317f (diff) | |
| parent | df2212270ce94f12e9caed6ca04c7077672d588e (diff) | |
Merge branch 'gpio/next-tegra' into gpio/next
Conflicts:
drivers/gpio/Kconfig
drivers/gpio/Makefile
Diffstat (limited to 'drivers/gpio')
| -rw-r--r-- | drivers/gpio/Makefile | 1 | ||||
| -rw-r--r-- | drivers/gpio/gpio-exynos4.c | 29 | ||||
| -rw-r--r-- | drivers/gpio/gpio-nomadik.c | 40 | ||||
| -rw-r--r-- | drivers/gpio/gpio-omap.c | 23 | ||||
| -rw-r--r-- | drivers/gpio/gpio-tegra.c | 441 |
5 files changed, 508 insertions, 26 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 68e3bfd35e0f..0fbdd75996e3 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile | |||
| @@ -43,6 +43,7 @@ obj-$(CONFIG_GPIO_SCH) += gpio-sch.o | |||
| 43 | obj-$(CONFIG_GPIO_STMPE) += gpio-stmpe.o | 43 | obj-$(CONFIG_GPIO_STMPE) += gpio-stmpe.o |
| 44 | obj-$(CONFIG_GPIO_SX150X) += gpio-sx150x.o | 44 | obj-$(CONFIG_GPIO_SX150X) += gpio-sx150x.o |
| 45 | obj-$(CONFIG_GPIO_TC3589X) += gpio-tc3589x.o | 45 | obj-$(CONFIG_GPIO_TC3589X) += gpio-tc3589x.o |
| 46 | obj-$(CONFIG_ARCH_TEGRA) += gpio-tegra.o | ||
| 46 | obj-$(CONFIG_GPIO_TIMBERDALE) += gpio-timberdale.o | 47 | obj-$(CONFIG_GPIO_TIMBERDALE) += gpio-timberdale.o |
| 47 | obj-$(CONFIG_GPIO_TPS65910) += gpio-tps65910.o | 48 | obj-$(CONFIG_GPIO_TPS65910) += gpio-tps65910.o |
| 48 | obj-$(CONFIG_GPIO_TWL4030) += gpio-twl4030.o | 49 | obj-$(CONFIG_GPIO_TWL4030) += gpio-twl4030.o |
diff --git a/drivers/gpio/gpio-exynos4.c b/drivers/gpio/gpio-exynos4.c index 6093a14037c3..d24b337cf1ac 100644 --- a/drivers/gpio/gpio-exynos4.c +++ b/drivers/gpio/gpio-exynos4.c | |||
| @@ -20,16 +20,37 @@ | |||
| 20 | #include <plat/gpio-cfg.h> | 20 | #include <plat/gpio-cfg.h> |
| 21 | #include <plat/gpio-cfg-helpers.h> | 21 | #include <plat/gpio-cfg-helpers.h> |
| 22 | 22 | ||
| 23 | int s3c_gpio_setpull_exynos4(struct s3c_gpio_chip *chip, | ||
| 24 | unsigned int off, s3c_gpio_pull_t pull) | ||
| 25 | { | ||
| 26 | if (pull == S3C_GPIO_PULL_UP) | ||
| 27 | pull = 3; | ||
| 28 | |||
| 29 | return s3c_gpio_setpull_updown(chip, off, pull); | ||
| 30 | } | ||
| 31 | |||
| 32 | s3c_gpio_pull_t s3c_gpio_getpull_exynos4(struct s3c_gpio_chip *chip, | ||
| 33 | unsigned int off) | ||
| 34 | { | ||
| 35 | s3c_gpio_pull_t pull; | ||
| 36 | |||
| 37 | pull = s3c_gpio_getpull_updown(chip, off); | ||
| 38 | if (pull == 3) | ||
| 39 | pull = S3C_GPIO_PULL_UP; | ||
| 40 | |||
| 41 | return pull; | ||
| 42 | } | ||
| 43 | |||
| 23 | static struct s3c_gpio_cfg gpio_cfg = { | 44 | static struct s3c_gpio_cfg gpio_cfg = { |
| 24 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, | 45 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, |
| 25 | .set_pull = s3c_gpio_setpull_updown, | 46 | .set_pull = s3c_gpio_setpull_exynos4, |
| 26 | .get_pull = s3c_gpio_getpull_updown, | 47 | .get_pull = s3c_gpio_getpull_exynos4, |
| 27 | }; | 48 | }; |
| 28 | 49 | ||
| 29 | static struct s3c_gpio_cfg gpio_cfg_noint = { | 50 | static struct s3c_gpio_cfg gpio_cfg_noint = { |
| 30 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, | 51 | .set_config = s3c_gpio_setcfg_s3c64xx_4bit, |
| 31 | .set_pull = s3c_gpio_setpull_updown, | 52 | .set_pull = s3c_gpio_setpull_exynos4, |
| 32 | .get_pull = s3c_gpio_getpull_updown, | 53 | .get_pull = s3c_gpio_getpull_exynos4, |
| 33 | }; | 54 | }; |
| 34 | 55 | ||
| 35 | /* | 56 | /* |
diff --git a/drivers/gpio/gpio-nomadik.c b/drivers/gpio/gpio-nomadik.c index 4961ef9bc153..2c212c732d76 100644 --- a/drivers/gpio/gpio-nomadik.c +++ b/drivers/gpio/gpio-nomadik.c | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | * Copyright (C) 2008,2009 STMicroelectronics | 4 | * Copyright (C) 2008,2009 STMicroelectronics |
| 5 | * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it> | 5 | * Copyright (C) 2009 Alessandro Rubini <rubini@unipv.it> |
| 6 | * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com> | 6 | * Rewritten based on work by Prafulla WADASKAR <prafulla.wadaskar@st.com> |
| 7 | * Copyright (C) 2011 Linus Walleij <linus.walleij@linaro.org> | ||
| 7 | * | 8 | * |
| 8 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
| @@ -49,6 +50,7 @@ struct nmk_gpio_chip { | |||
| 49 | u32 (*get_secondary_status)(unsigned int bank); | 50 | u32 (*get_secondary_status)(unsigned int bank); |
| 50 | void (*set_ioforce)(bool enable); | 51 | void (*set_ioforce)(bool enable); |
| 51 | spinlock_t lock; | 52 | spinlock_t lock; |
| 53 | bool sleepmode; | ||
| 52 | /* Keep track of configured edges */ | 54 | /* Keep track of configured edges */ |
| 53 | u32 edge_rising; | 55 | u32 edge_rising; |
| 54 | u32 edge_falling; | 56 | u32 edge_falling; |
| @@ -393,14 +395,25 @@ EXPORT_SYMBOL(nmk_config_pins_sleep); | |||
| 393 | * @gpio: pin number | 395 | * @gpio: pin number |
| 394 | * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE, | 396 | * @mode: NMK_GPIO_SLPM_INPUT or NMK_GPIO_SLPM_NOCHANGE, |
| 395 | * | 397 | * |
| 396 | * Sets the sleep mode of a pin. If @mode is NMK_GPIO_SLPM_INPUT, the pin is | 398 | * This register is actually in the pinmux layer, not the GPIO block itself. |
| 397 | * changed to an input (with pullup/down enabled) in sleep and deep sleep. If | 399 | * The GPIO1B_SLPM register defines the GPIO mode when SLEEP/DEEP-SLEEP |
| 398 | * @mode is NMK_GPIO_SLPM_NOCHANGE, the pin remains in the state it was | 400 | * mode is entered (i.e. when signal IOFORCE is HIGH by the platform code). |
| 399 | * configured even when in sleep and deep sleep. | 401 | * Each GPIO can be configured to be forced into GPIO mode when IOFORCE is |
| 402 | * HIGH, overriding the normal setting defined by GPIO_AFSELx registers. | ||
| 403 | * When IOFORCE returns LOW (by software, after SLEEP/DEEP-SLEEP exit), | ||
| 404 | * the GPIOs return to the normal setting defined by GPIO_AFSELx registers. | ||
| 400 | * | 405 | * |
| 401 | * On DB8500v2 onwards, this setting loses the previous meaning and instead | 406 | * If @mode is NMK_GPIO_SLPM_INPUT, the corresponding GPIO is switched to GPIO |
| 402 | * indicates if wakeup detection is enabled on the pin. Note that | 407 | * mode when signal IOFORCE is HIGH (i.e. when SLEEP/DEEP-SLEEP mode is |
| 403 | * enable_irq_wake() will automatically enable wakeup detection. | 408 | * entered) regardless of the altfunction selected. Also wake-up detection is |
| 409 | * ENABLED. | ||
| 410 | * | ||
| 411 | * If @mode is NMK_GPIO_SLPM_NOCHANGE, the corresponding GPIO remains | ||
| 412 | * controlled by NMK_GPIO_DATC, NMK_GPIO_DATS, NMK_GPIO_DIR, NMK_GPIO_PDIS | ||
| 413 | * (for altfunction GPIO) or respective on-chip peripherals (for other | ||
| 414 | * altfuncs) when IOFORCE is HIGH. Also wake-up detection DISABLED. | ||
| 415 | * | ||
| 416 | * Note that enable_irq_wake() will automatically enable wakeup detection. | ||
| 404 | */ | 417 | */ |
| 405 | int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode) | 418 | int nmk_gpio_set_slpm(int gpio, enum nmk_gpio_slpm mode) |
| 406 | { | 419 | { |
| @@ -551,6 +564,12 @@ static void __nmk_gpio_irq_modify(struct nmk_gpio_chip *nmk_chip, | |||
| 551 | static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip, | 564 | static void __nmk_gpio_set_wake(struct nmk_gpio_chip *nmk_chip, |
| 552 | int gpio, bool on) | 565 | int gpio, bool on) |
| 553 | { | 566 | { |
| 567 | if (nmk_chip->sleepmode) { | ||
| 568 | __nmk_gpio_set_slpm(nmk_chip, gpio - nmk_chip->chip.base, | ||
| 569 | on ? NMK_GPIO_SLPM_WAKEUP_ENABLE | ||
| 570 | : NMK_GPIO_SLPM_WAKEUP_DISABLE); | ||
| 571 | } | ||
| 572 | |||
| 554 | __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on); | 573 | __nmk_gpio_irq_modify(nmk_chip, gpio, WAKE, on); |
| 555 | } | 574 | } |
| 556 | 575 | ||
| @@ -901,7 +920,7 @@ void nmk_gpio_wakeups_suspend(void) | |||
| 901 | writel(chip->fwimsc & chip->real_wake, | 920 | writel(chip->fwimsc & chip->real_wake, |
| 902 | chip->addr + NMK_GPIO_FWIMSC); | 921 | chip->addr + NMK_GPIO_FWIMSC); |
| 903 | 922 | ||
| 904 | if (cpu_is_u8500v2()) { | 923 | if (chip->sleepmode) { |
| 905 | chip->slpm = readl(chip->addr + NMK_GPIO_SLPC); | 924 | chip->slpm = readl(chip->addr + NMK_GPIO_SLPC); |
| 906 | 925 | ||
| 907 | /* 0 -> wakeup enable */ | 926 | /* 0 -> wakeup enable */ |
| @@ -923,7 +942,7 @@ void nmk_gpio_wakeups_resume(void) | |||
| 923 | writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC); | 942 | writel(chip->rwimsc, chip->addr + NMK_GPIO_RWIMSC); |
| 924 | writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC); | 943 | writel(chip->fwimsc, chip->addr + NMK_GPIO_FWIMSC); |
| 925 | 944 | ||
| 926 | if (cpu_is_u8500v2()) | 945 | if (chip->sleepmode) |
| 927 | writel(chip->slpm, chip->addr + NMK_GPIO_SLPC); | 946 | writel(chip->slpm, chip->addr + NMK_GPIO_SLPC); |
| 928 | } | 947 | } |
| 929 | } | 948 | } |
| @@ -1010,6 +1029,7 @@ static int __devinit nmk_gpio_probe(struct platform_device *dev) | |||
| 1010 | nmk_chip->secondary_parent_irq = secondary_irq; | 1029 | nmk_chip->secondary_parent_irq = secondary_irq; |
| 1011 | nmk_chip->get_secondary_status = pdata->get_secondary_status; | 1030 | nmk_chip->get_secondary_status = pdata->get_secondary_status; |
| 1012 | nmk_chip->set_ioforce = pdata->set_ioforce; | 1031 | nmk_chip->set_ioforce = pdata->set_ioforce; |
| 1032 | nmk_chip->sleepmode = pdata->supports_sleepmode; | ||
| 1013 | spin_lock_init(&nmk_chip->lock); | 1033 | spin_lock_init(&nmk_chip->lock); |
| 1014 | 1034 | ||
| 1015 | chip = &nmk_chip->chip; | 1035 | chip = &nmk_chip->chip; |
| @@ -1065,5 +1085,3 @@ core_initcall(nmk_gpio_init); | |||
| 1065 | MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini"); | 1085 | MODULE_AUTHOR("Prafulla WADASKAR and Alessandro Rubini"); |
| 1066 | MODULE_DESCRIPTION("Nomadik GPIO Driver"); | 1086 | MODULE_DESCRIPTION("Nomadik GPIO Driver"); |
| 1067 | MODULE_LICENSE("GPL"); | 1087 | MODULE_LICENSE("GPL"); |
| 1068 | |||
| 1069 | |||
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index 6c51191da567..01f74a8459d9 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c | |||
| @@ -432,7 +432,6 @@ static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio, | |||
| 432 | { | 432 | { |
| 433 | void __iomem *base = bank->base; | 433 | void __iomem *base = bank->base; |
| 434 | u32 gpio_bit = 1 << gpio; | 434 | u32 gpio_bit = 1 << gpio; |
| 435 | u32 val; | ||
| 436 | 435 | ||
| 437 | if (cpu_is_omap44xx()) { | 436 | if (cpu_is_omap44xx()) { |
| 438 | MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT0, gpio_bit, | 437 | MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT0, gpio_bit, |
| @@ -455,15 +454,8 @@ static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio, | |||
| 455 | } | 454 | } |
| 456 | if (likely(!(bank->non_wakeup_gpios & gpio_bit))) { | 455 | if (likely(!(bank->non_wakeup_gpios & gpio_bit))) { |
| 457 | if (cpu_is_omap44xx()) { | 456 | if (cpu_is_omap44xx()) { |
| 458 | if (trigger != 0) | 457 | MOD_REG_BIT(OMAP4_GPIO_IRQWAKEN0, gpio_bit, |
| 459 | __raw_writel(1 << gpio, bank->base+ | 458 | trigger != 0); |
| 460 | OMAP4_GPIO_IRQWAKEN0); | ||
| 461 | else { | ||
| 462 | val = __raw_readl(bank->base + | ||
| 463 | OMAP4_GPIO_IRQWAKEN0); | ||
| 464 | __raw_writel(val & (~(1 << gpio)), bank->base + | ||
| 465 | OMAP4_GPIO_IRQWAKEN0); | ||
| 466 | } | ||
| 467 | } else { | 459 | } else { |
| 468 | /* | 460 | /* |
| 469 | * GPIO wakeup request can only be generated on edge | 461 | * GPIO wakeup request can only be generated on edge |
| @@ -1134,8 +1126,11 @@ static void gpio_irq_shutdown(struct irq_data *d) | |||
| 1134 | { | 1126 | { |
| 1135 | unsigned int gpio = d->irq - IH_GPIO_BASE; | 1127 | unsigned int gpio = d->irq - IH_GPIO_BASE; |
| 1136 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); | 1128 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); |
| 1129 | unsigned long flags; | ||
| 1137 | 1130 | ||
| 1131 | spin_lock_irqsave(&bank->lock, flags); | ||
| 1138 | _reset_gpio(bank, gpio); | 1132 | _reset_gpio(bank, gpio); |
| 1133 | spin_unlock_irqrestore(&bank->lock, flags); | ||
| 1139 | } | 1134 | } |
| 1140 | 1135 | ||
| 1141 | static void gpio_ack_irq(struct irq_data *d) | 1136 | static void gpio_ack_irq(struct irq_data *d) |
| @@ -1150,9 +1145,12 @@ static void gpio_mask_irq(struct irq_data *d) | |||
| 1150 | { | 1145 | { |
| 1151 | unsigned int gpio = d->irq - IH_GPIO_BASE; | 1146 | unsigned int gpio = d->irq - IH_GPIO_BASE; |
| 1152 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); | 1147 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); |
| 1148 | unsigned long flags; | ||
| 1153 | 1149 | ||
| 1150 | spin_lock_irqsave(&bank->lock, flags); | ||
| 1154 | _set_gpio_irqenable(bank, gpio, 0); | 1151 | _set_gpio_irqenable(bank, gpio, 0); |
| 1155 | _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE); | 1152 | _set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE); |
| 1153 | spin_unlock_irqrestore(&bank->lock, flags); | ||
| 1156 | } | 1154 | } |
| 1157 | 1155 | ||
| 1158 | static void gpio_unmask_irq(struct irq_data *d) | 1156 | static void gpio_unmask_irq(struct irq_data *d) |
| @@ -1161,7 +1159,9 @@ static void gpio_unmask_irq(struct irq_data *d) | |||
| 1161 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); | 1159 | struct gpio_bank *bank = irq_data_get_irq_chip_data(d); |
| 1162 | unsigned int irq_mask = 1 << get_gpio_index(gpio); | 1160 | unsigned int irq_mask = 1 << get_gpio_index(gpio); |
| 1163 | u32 trigger = irqd_get_trigger_type(d); | 1161 | u32 trigger = irqd_get_trigger_type(d); |
| 1162 | unsigned long flags; | ||
| 1164 | 1163 | ||
| 1164 | spin_lock_irqsave(&bank->lock, flags); | ||
| 1165 | if (trigger) | 1165 | if (trigger) |
| 1166 | _set_gpio_triggering(bank, get_gpio_index(gpio), trigger); | 1166 | _set_gpio_triggering(bank, get_gpio_index(gpio), trigger); |
| 1167 | 1167 | ||
| @@ -1173,6 +1173,7 @@ static void gpio_unmask_irq(struct irq_data *d) | |||
| 1173 | } | 1173 | } |
| 1174 | 1174 | ||
| 1175 | _set_gpio_irqenable(bank, gpio, 1); | 1175 | _set_gpio_irqenable(bank, gpio, 1); |
| 1176 | spin_unlock_irqrestore(&bank->lock, flags); | ||
| 1176 | } | 1177 | } |
| 1177 | 1178 | ||
| 1178 | static struct irq_chip gpio_irq_chip = { | 1179 | static struct irq_chip gpio_irq_chip = { |
| @@ -1524,7 +1525,7 @@ static void omap_gpio_mod_init(struct gpio_bank *bank, int id) | |||
| 1524 | } | 1525 | } |
| 1525 | } | 1526 | } |
| 1526 | 1527 | ||
| 1527 | static void __init omap_gpio_chip_init(struct gpio_bank *bank) | 1528 | static void __devinit omap_gpio_chip_init(struct gpio_bank *bank) |
| 1528 | { | 1529 | { |
| 1529 | int j; | 1530 | int j; |
| 1530 | static int gpio; | 1531 | static int gpio; |
diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c new file mode 100644 index 000000000000..13afb881ffc3 --- /dev/null +++ b/drivers/gpio/gpio-tegra.c | |||
| @@ -0,0 +1,441 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/mach-tegra/gpio.c | ||
| 3 | * | ||
| 4 | * Copyright (c) 2010 Google, Inc | ||
| 5 | * | ||
| 6 | * Author: | ||
| 7 | * Erik Gilling <konkers@google.com> | ||
| 8 | * | ||
| 9 | * This software is licensed under the terms of the GNU General Public | ||
| 10 | * License version 2, as published by the Free Software Foundation, and | ||
| 11 | * may be copied, distributed, and modified under those terms. | ||
| 12 | * | ||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | */ | ||
| 19 | |||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/irq.h> | ||
| 22 | #include <linux/interrupt.h> | ||
| 23 | |||
| 24 | #include <linux/io.h> | ||
| 25 | #include <linux/gpio.h> | ||
| 26 | #include <linux/of.h> | ||
| 27 | |||
| 28 | #include <asm/mach/irq.h> | ||
| 29 | |||
| 30 | #include <mach/iomap.h> | ||
| 31 | #include <mach/suspend.h> | ||
| 32 | |||
| 33 | #define GPIO_BANK(x) ((x) >> 5) | ||
| 34 | #define GPIO_PORT(x) (((x) >> 3) & 0x3) | ||
| 35 | #define GPIO_BIT(x) ((x) & 0x7) | ||
| 36 | |||
| 37 | #define GPIO_REG(x) (IO_TO_VIRT(TEGRA_GPIO_BASE) + \ | ||
| 38 | GPIO_BANK(x) * 0x80 + \ | ||
| 39 | GPIO_PORT(x) * 4) | ||
| 40 | |||
| 41 | #define GPIO_CNF(x) (GPIO_REG(x) + 0x00) | ||
| 42 | #define GPIO_OE(x) (GPIO_REG(x) + 0x10) | ||
| 43 | #define GPIO_OUT(x) (GPIO_REG(x) + 0X20) | ||
| 44 | #define GPIO_IN(x) (GPIO_REG(x) + 0x30) | ||
| 45 | #define GPIO_INT_STA(x) (GPIO_REG(x) + 0x40) | ||
| 46 | #define GPIO_INT_ENB(x) (GPIO_REG(x) + 0x50) | ||
| 47 | #define GPIO_INT_LVL(x) (GPIO_REG(x) + 0x60) | ||
| 48 | #define GPIO_INT_CLR(x) (GPIO_REG(x) + 0x70) | ||
| 49 | |||
| 50 | #define GPIO_MSK_CNF(x) (GPIO_REG(x) + 0x800) | ||
| 51 | #define GPIO_MSK_OE(x) (GPIO_REG(x) + 0x810) | ||
| 52 | #define GPIO_MSK_OUT(x) (GPIO_REG(x) + 0X820) | ||
| 53 | #define GPIO_MSK_INT_STA(x) (GPIO_REG(x) + 0x840) | ||
| 54 | #define GPIO_MSK_INT_ENB(x) (GPIO_REG(x) + 0x850) | ||
| 55 | #define GPIO_MSK_INT_LVL(x) (GPIO_REG(x) + 0x860) | ||
| 56 | |||
| 57 | #define GPIO_INT_LVL_MASK 0x010101 | ||
| 58 | #define GPIO_INT_LVL_EDGE_RISING 0x000101 | ||
| 59 | #define GPIO_INT_LVL_EDGE_FALLING 0x000100 | ||
| 60 | #define GPIO_INT_LVL_EDGE_BOTH 0x010100 | ||
| 61 | #define GPIO_INT_LVL_LEVEL_HIGH 0x000001 | ||
| 62 | #define GPIO_INT_LVL_LEVEL_LOW 0x000000 | ||
| 63 | |||
| 64 | struct tegra_gpio_bank { | ||
| 65 | int bank; | ||
| 66 | int irq; | ||
| 67 | spinlock_t lvl_lock[4]; | ||
| 68 | #ifdef CONFIG_PM | ||
| 69 | u32 cnf[4]; | ||
| 70 | u32 out[4]; | ||
| 71 | u32 oe[4]; | ||
| 72 | u32 int_enb[4]; | ||
| 73 | u32 int_lvl[4]; | ||
| 74 | #endif | ||
| 75 | }; | ||
| 76 | |||
| 77 | |||
| 78 | static struct tegra_gpio_bank tegra_gpio_banks[] = { | ||
| 79 | {.bank = 0, .irq = INT_GPIO1}, | ||
| 80 | {.bank = 1, .irq = INT_GPIO2}, | ||
| 81 | {.bank = 2, .irq = INT_GPIO3}, | ||
| 82 | {.bank = 3, .irq = INT_GPIO4}, | ||
| 83 | {.bank = 4, .irq = INT_GPIO5}, | ||
| 84 | {.bank = 5, .irq = INT_GPIO6}, | ||
| 85 | {.bank = 6, .irq = INT_GPIO7}, | ||
| 86 | }; | ||
| 87 | |||
| 88 | static int tegra_gpio_compose(int bank, int port, int bit) | ||
| 89 | { | ||
| 90 | return (bank << 5) | ((port & 0x3) << 3) | (bit & 0x7); | ||
| 91 | } | ||
| 92 | |||
| 93 | static void tegra_gpio_mask_write(u32 reg, int gpio, int value) | ||
| 94 | { | ||
| 95 | u32 val; | ||
| 96 | |||
| 97 | val = 0x100 << GPIO_BIT(gpio); | ||
| 98 | if (value) | ||
| 99 | val |= 1 << GPIO_BIT(gpio); | ||
| 100 | __raw_writel(val, reg); | ||
| 101 | } | ||
| 102 | |||
| 103 | void tegra_gpio_enable(int gpio) | ||
| 104 | { | ||
| 105 | tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 1); | ||
| 106 | } | ||
| 107 | |||
| 108 | void tegra_gpio_disable(int gpio) | ||
| 109 | { | ||
| 110 | tegra_gpio_mask_write(GPIO_MSK_CNF(gpio), gpio, 0); | ||
| 111 | } | ||
| 112 | |||
| 113 | static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value) | ||
| 114 | { | ||
| 115 | tegra_gpio_mask_write(GPIO_MSK_OUT(offset), offset, value); | ||
| 116 | } | ||
| 117 | |||
| 118 | static int tegra_gpio_get(struct gpio_chip *chip, unsigned offset) | ||
| 119 | { | ||
| 120 | return (__raw_readl(GPIO_IN(offset)) >> GPIO_BIT(offset)) & 0x1; | ||
| 121 | } | ||
| 122 | |||
| 123 | static int tegra_gpio_direction_input(struct gpio_chip *chip, unsigned offset) | ||
| 124 | { | ||
| 125 | tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 0); | ||
| 126 | return 0; | ||
| 127 | } | ||
| 128 | |||
| 129 | static int tegra_gpio_direction_output(struct gpio_chip *chip, unsigned offset, | ||
| 130 | int value) | ||
| 131 | { | ||
| 132 | tegra_gpio_set(chip, offset, value); | ||
| 133 | tegra_gpio_mask_write(GPIO_MSK_OE(offset), offset, 1); | ||
| 134 | return 0; | ||
| 135 | } | ||
| 136 | |||
| 137 | |||
| 138 | |||
| 139 | static struct gpio_chip tegra_gpio_chip = { | ||
| 140 | .label = "tegra-gpio", | ||
| 141 | .direction_input = tegra_gpio_direction_input, | ||
| 142 | .get = tegra_gpio_get, | ||
| 143 | .direction_output = tegra_gpio_direction_output, | ||
| 144 | .set = tegra_gpio_set, | ||
| 145 | .base = 0, | ||
| 146 | .ngpio = TEGRA_NR_GPIOS, | ||
| 147 | }; | ||
| 148 | |||
| 149 | static void tegra_gpio_irq_ack(struct irq_data *d) | ||
| 150 | { | ||
| 151 | int gpio = d->irq - INT_GPIO_BASE; | ||
| 152 | |||
| 153 | __raw_writel(1 << GPIO_BIT(gpio), GPIO_INT_CLR(gpio)); | ||
| 154 | } | ||
| 155 | |||
| 156 | static void tegra_gpio_irq_mask(struct irq_data *d) | ||
| 157 | { | ||
| 158 | int gpio = d->irq - INT_GPIO_BASE; | ||
| 159 | |||
| 160 | tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 0); | ||
| 161 | } | ||
| 162 | |||
| 163 | static void tegra_gpio_irq_unmask(struct irq_data *d) | ||
| 164 | { | ||
| 165 | int gpio = d->irq - INT_GPIO_BASE; | ||
| 166 | |||
| 167 | tegra_gpio_mask_write(GPIO_MSK_INT_ENB(gpio), gpio, 1); | ||
| 168 | } | ||
| 169 | |||
| 170 | static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type) | ||
| 171 | { | ||
| 172 | int gpio = d->irq - INT_GPIO_BASE; | ||
| 173 | struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d); | ||
| 174 | int port = GPIO_PORT(gpio); | ||
| 175 | int lvl_type; | ||
| 176 | int val; | ||
| 177 | unsigned long flags; | ||
| 178 | |||
| 179 | switch (type & IRQ_TYPE_SENSE_MASK) { | ||
| 180 | case IRQ_TYPE_EDGE_RISING: | ||
| 181 | lvl_type = GPIO_INT_LVL_EDGE_RISING; | ||
| 182 | break; | ||
| 183 | |||
| 184 | case IRQ_TYPE_EDGE_FALLING: | ||
| 185 | lvl_type = GPIO_INT_LVL_EDGE_FALLING; | ||
| 186 | break; | ||
| 187 | |||
| 188 | case IRQ_TYPE_EDGE_BOTH: | ||
| 189 | lvl_type = GPIO_INT_LVL_EDGE_BOTH; | ||
| 190 | break; | ||
| 191 | |||
| 192 | case IRQ_TYPE_LEVEL_HIGH: | ||
| 193 | lvl_type = GPIO_INT_LVL_LEVEL_HIGH; | ||
| 194 | break; | ||
| 195 | |||
| 196 | case IRQ_TYPE_LEVEL_LOW: | ||
| 197 | lvl_type = GPIO_INT_LVL_LEVEL_LOW; | ||
| 198 | break; | ||
| 199 | |||
| 200 | default: | ||
| 201 | return -EINVAL; | ||
| 202 | } | ||
| 203 | |||
| 204 | spin_lock_irqsave(&bank->lvl_lock[port], flags); | ||
| 205 | |||
| 206 | val = __raw_readl(GPIO_INT_LVL(gpio)); | ||
| 207 | val &= ~(GPIO_INT_LVL_MASK << GPIO_BIT(gpio)); | ||
| 208 | val |= lvl_type << GPIO_BIT(gpio); | ||
| 209 | __raw_writel(val, GPIO_INT_LVL(gpio)); | ||
| 210 | |||
| 211 | spin_unlock_irqrestore(&bank->lvl_lock[port], flags); | ||
| 212 | |||
| 213 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) | ||
| 214 | __irq_set_handler_locked(d->irq, handle_level_irq); | ||
| 215 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) | ||
| 216 | __irq_set_handler_locked(d->irq, handle_edge_irq); | ||
| 217 | |||
| 218 | return 0; | ||
| 219 | } | ||
| 220 | |||
| 221 | static void tegra_gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | ||
| 222 | { | ||
| 223 | struct tegra_gpio_bank *bank; | ||
| 224 | int port; | ||
| 225 | int pin; | ||
| 226 | int unmasked = 0; | ||
| 227 | struct irq_chip *chip = irq_desc_get_chip(desc); | ||
| 228 | |||
| 229 | chained_irq_enter(chip, desc); | ||
| 230 | |||
| 231 | bank = irq_get_handler_data(irq); | ||
| 232 | |||
| 233 | for (port = 0; port < 4; port++) { | ||
| 234 | int gpio = tegra_gpio_compose(bank->bank, port, 0); | ||
| 235 | unsigned long sta = __raw_readl(GPIO_INT_STA(gpio)) & | ||
| 236 | __raw_readl(GPIO_INT_ENB(gpio)); | ||
| 237 | u32 lvl = __raw_readl(GPIO_INT_LVL(gpio)); | ||
| 238 | |||
| 239 | for_each_set_bit(pin, &sta, 8) { | ||
| 240 | __raw_writel(1 << pin, GPIO_INT_CLR(gpio)); | ||
| 241 | |||
| 242 | /* if gpio is edge triggered, clear condition | ||
| 243 | * before executing the hander so that we don't | ||
| 244 | * miss edges | ||
| 245 | */ | ||
| 246 | if (lvl & (0x100 << pin)) { | ||
| 247 | unmasked = 1; | ||
| 248 | chained_irq_exit(chip, desc); | ||
| 249 | } | ||
| 250 | |||
| 251 | generic_handle_irq(gpio_to_irq(gpio + pin)); | ||
| 252 | } | ||
| 253 | } | ||
| 254 | |||
| 255 | if (!unmasked) | ||
| 256 | chained_irq_exit(chip, desc); | ||
| 257 | |||
| 258 | } | ||
| 259 | |||
| 260 | #ifdef CONFIG_PM | ||
| 261 | void tegra_gpio_resume(void) | ||
| 262 | { | ||
| 263 | unsigned long flags; | ||
| 264 | int b; | ||
| 265 | int p; | ||
| 266 | |||
| 267 | local_irq_save(flags); | ||
| 268 | |||
| 269 | for (b = 0; b < ARRAY_SIZE(tegra_gpio_banks); b++) { | ||
| 270 | struct tegra_gpio_bank *bank = &tegra_gpio_banks[b]; | ||
| 271 | |||
| 272 | for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { | ||
| 273 | unsigned int gpio = (b<<5) | (p<<3); | ||
| 274 | __raw_writel(bank->cnf[p], GPIO_CNF(gpio)); | ||
| 275 | __raw_writel(bank->out[p], GPIO_OUT(gpio)); | ||
| 276 | __raw_writel(bank->oe[p], GPIO_OE(gpio)); | ||
| 277 | __raw_writel(bank->int_lvl[p], GPIO_INT_LVL(gpio)); | ||
| 278 | __raw_writel(bank->int_enb[p], GPIO_INT_ENB(gpio)); | ||
| 279 | } | ||
| 280 | } | ||
| 281 | |||
| 282 | local_irq_restore(flags); | ||
| 283 | } | ||
| 284 | |||
| 285 | void tegra_gpio_suspend(void) | ||
| 286 | { | ||
| 287 | unsigned long flags; | ||
| 288 | int b; | ||
| 289 | int p; | ||
| 290 | |||
| 291 | local_irq_save(flags); | ||
| 292 | for (b = 0; b < ARRAY_SIZE(tegra_gpio_banks); b++) { | ||
| 293 | struct tegra_gpio_bank *bank = &tegra_gpio_banks[b]; | ||
| 294 | |||
| 295 | for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { | ||
| 296 | unsigned int gpio = (b<<5) | (p<<3); | ||
| 297 | bank->cnf[p] = __raw_readl(GPIO_CNF(gpio)); | ||
| 298 | bank->out[p] = __raw_readl(GPIO_OUT(gpio)); | ||
| 299 | bank->oe[p] = __raw_readl(GPIO_OE(gpio)); | ||
| 300 | bank->int_enb[p] = __raw_readl(GPIO_INT_ENB(gpio)); | ||
| 301 | bank->int_lvl[p] = __raw_readl(GPIO_INT_LVL(gpio)); | ||
| 302 | } | ||
| 303 | } | ||
| 304 | local_irq_restore(flags); | ||
| 305 | } | ||
| 306 | |||
| 307 | static int tegra_gpio_wake_enable(struct irq_data *d, unsigned int enable) | ||
| 308 | { | ||
| 309 | struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d); | ||
| 310 | return irq_set_irq_wake(bank->irq, enable); | ||
| 311 | } | ||
| 312 | #endif | ||
| 313 | |||
| 314 | static struct irq_chip tegra_gpio_irq_chip = { | ||
| 315 | .name = "GPIO", | ||
| 316 | .irq_ack = tegra_gpio_irq_ack, | ||
| 317 | .irq_mask = tegra_gpio_irq_mask, | ||
| 318 | .irq_unmask = tegra_gpio_irq_unmask, | ||
| 319 | .irq_set_type = tegra_gpio_irq_set_type, | ||
| 320 | #ifdef CONFIG_PM | ||
| 321 | .irq_set_wake = tegra_gpio_wake_enable, | ||
| 322 | #endif | ||
| 323 | }; | ||
| 324 | |||
| 325 | |||
| 326 | /* This lock class tells lockdep that GPIO irqs are in a different | ||
| 327 | * category than their parents, so it won't report false recursion. | ||
| 328 | */ | ||
| 329 | static struct lock_class_key gpio_lock_class; | ||
| 330 | |||
| 331 | static int __init tegra_gpio_init(void) | ||
| 332 | { | ||
| 333 | struct tegra_gpio_bank *bank; | ||
| 334 | int i; | ||
| 335 | int j; | ||
| 336 | |||
| 337 | for (i = 0; i < 7; i++) { | ||
| 338 | for (j = 0; j < 4; j++) { | ||
| 339 | int gpio = tegra_gpio_compose(i, j, 0); | ||
| 340 | __raw_writel(0x00, GPIO_INT_ENB(gpio)); | ||
| 341 | } | ||
| 342 | } | ||
| 343 | |||
| 344 | #ifdef CONFIG_OF_GPIO | ||
| 345 | /* | ||
| 346 | * This isn't ideal, but it gets things hooked up until this | ||
| 347 | * driver is converted into a platform_device | ||
| 348 | */ | ||
| 349 | tegra_gpio_chip.of_node = of_find_compatible_node(NULL, NULL, | ||
| 350 | "nvidia,tegra250-gpio"); | ||
| 351 | #endif /* CONFIG_OF_GPIO */ | ||
| 352 | |||
| 353 | gpiochip_add(&tegra_gpio_chip); | ||
| 354 | |||
| 355 | for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) { | ||
| 356 | bank = &tegra_gpio_banks[GPIO_BANK(irq_to_gpio(i))]; | ||
| 357 | |||
| 358 | irq_set_lockdep_class(i, &gpio_lock_class); | ||
| 359 | irq_set_chip_data(i, bank); | ||
| 360 | irq_set_chip_and_handler(i, &tegra_gpio_irq_chip, | ||
| 361 | handle_simple_irq); | ||
| 362 | set_irq_flags(i, IRQF_VALID); | ||
| 363 | } | ||
| 364 | |||
| 365 | for (i = 0; i < ARRAY_SIZE(tegra_gpio_banks); i++) { | ||
| 366 | bank = &tegra_gpio_banks[i]; | ||
| 367 | |||
| 368 | irq_set_chained_handler(bank->irq, tegra_gpio_irq_handler); | ||
| 369 | irq_set_handler_data(bank->irq, bank); | ||
| 370 | |||
| 371 | for (j = 0; j < 4; j++) | ||
| 372 | spin_lock_init(&bank->lvl_lock[j]); | ||
| 373 | } | ||
| 374 | |||
| 375 | return 0; | ||
| 376 | } | ||
| 377 | |||
| 378 | postcore_initcall(tegra_gpio_init); | ||
| 379 | |||
| 380 | void __init tegra_gpio_config(struct tegra_gpio_table *table, int num) | ||
| 381 | { | ||
| 382 | int i; | ||
| 383 | |||
| 384 | for (i = 0; i < num; i++) { | ||
| 385 | int gpio = table[i].gpio; | ||
| 386 | |||
| 387 | if (table[i].enable) | ||
| 388 | tegra_gpio_enable(gpio); | ||
| 389 | else | ||
| 390 | tegra_gpio_disable(gpio); | ||
| 391 | } | ||
| 392 | } | ||
| 393 | |||
| 394 | #ifdef CONFIG_DEBUG_FS | ||
| 395 | |||
| 396 | #include <linux/debugfs.h> | ||
| 397 | #include <linux/seq_file.h> | ||
| 398 | |||
| 399 | static int dbg_gpio_show(struct seq_file *s, void *unused) | ||
| 400 | { | ||
| 401 | int i; | ||
| 402 | int j; | ||
| 403 | |||
| 404 | for (i = 0; i < 7; i++) { | ||
| 405 | for (j = 0; j < 4; j++) { | ||
| 406 | int gpio = tegra_gpio_compose(i, j, 0); | ||
| 407 | seq_printf(s, | ||
| 408 | "%d:%d %02x %02x %02x %02x %02x %02x %06x\n", | ||
| 409 | i, j, | ||
| 410 | __raw_readl(GPIO_CNF(gpio)), | ||
| 411 | __raw_readl(GPIO_OE(gpio)), | ||
| 412 | __raw_readl(GPIO_OUT(gpio)), | ||
| 413 | __raw_readl(GPIO_IN(gpio)), | ||
| 414 | __raw_readl(GPIO_INT_STA(gpio)), | ||
| 415 | __raw_readl(GPIO_INT_ENB(gpio)), | ||
| 416 | __raw_readl(GPIO_INT_LVL(gpio))); | ||
| 417 | } | ||
| 418 | } | ||
| 419 | return 0; | ||
| 420 | } | ||
| 421 | |||
| 422 | static int dbg_gpio_open(struct inode *inode, struct file *file) | ||
| 423 | { | ||
| 424 | return single_open(file, dbg_gpio_show, &inode->i_private); | ||
| 425 | } | ||
| 426 | |||
| 427 | static const struct file_operations debug_fops = { | ||
| 428 | .open = dbg_gpio_open, | ||
| 429 | .read = seq_read, | ||
| 430 | .llseek = seq_lseek, | ||
| 431 | .release = single_release, | ||
| 432 | }; | ||
| 433 | |||
| 434 | static int __init tegra_gpio_debuginit(void) | ||
| 435 | { | ||
| 436 | (void) debugfs_create_file("tegra_gpio", S_IRUGO, | ||
| 437 | NULL, NULL, &debug_fops); | ||
| 438 | return 0; | ||
| 439 | } | ||
| 440 | late_initcall(tegra_gpio_debuginit); | ||
| 441 | #endif | ||
