atheros: simplify gpiolib realization
Each SoCs generation has own independent gpiolib realization, so we have no reason to keep these realizations in semiuniversal form. Following modifications are made: * Remove valid_mask field * Remove ar231x_gpio_chip structure * Rename AR2315_GPIO_CR to AR2315_GPIO_DIR * Fix count of AR5312 GPIOs * Simplify gpio_chip methods realization Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> SVN-Revision: 41696
This commit is contained in:
parent
82e4cde1ce
commit
a145d0410b
1 changed files with 62 additions and 182 deletions
|
@ -1050,12 +1050,12 @@
|
||||||
+ */
|
+ */
|
||||||
+#define AR2315_GPIO_DI (AR2315_DSLBASE + 0x0088)
|
+#define AR2315_GPIO_DI (AR2315_DSLBASE + 0x0088)
|
||||||
+#define AR2315_GPIO_DO (AR2315_DSLBASE + 0x0090)
|
+#define AR2315_GPIO_DO (AR2315_DSLBASE + 0x0090)
|
||||||
+#define AR2315_GPIO_CR (AR2315_DSLBASE + 0x0098)
|
+#define AR2315_GPIO_DIR (AR2315_DSLBASE + 0x0098)
|
||||||
+#define AR2315_GPIO_INT (AR2315_DSLBASE + 0x00a0)
|
+#define AR2315_GPIO_INT (AR2315_DSLBASE + 0x00a0)
|
||||||
+
|
+
|
||||||
+#define AR2315_GPIO_CR_M(x) (1 << (x)) /* mask for i/o */
|
+#define AR2315_GPIO_DIR_M(x) (1 << (x)) /* mask for i/o */
|
||||||
+#define AR2315_GPIO_CR_O(x) (1 << (x)) /* output */
|
+#define AR2315_GPIO_DIR_O(x) (1 << (x)) /* output */
|
||||||
+#define AR2315_GPIO_CR_I(x) (0) /* input */
|
+#define AR2315_GPIO_DIR_I(x) (0) /* input */
|
||||||
+
|
+
|
||||||
+#define AR2315_GPIO_INT_S(x) (x) /* interrupt enable */
|
+#define AR2315_GPIO_INT_S(x) (x) /* interrupt enable */
|
||||||
+#define AR2315_GPIO_INT_M (0x3F) /* mask for int */
|
+#define AR2315_GPIO_INT_M (0x3F) /* mask for int */
|
||||||
|
@ -1583,7 +1583,7 @@
|
||||||
+
|
+
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/arch/mips/ar231x/ar5312.c
|
+++ b/arch/mips/ar231x/ar5312.c
|
||||||
@@ -0,0 +1,596 @@
|
@@ -0,0 +1,540 @@
|
||||||
+/*
|
+/*
|
||||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||||
+ * License. See the file "COPYING" in the main directory of this archive
|
+ * License. See the file "COPYING" in the main directory of this archive
|
||||||
|
@ -1730,100 +1730,46 @@
|
||||||
+ irq_set_chained_handler(AR5312_IRQ_MISC_INTRS, ar5312_misc_irq_handler);
|
+ irq_set_chained_handler(AR5312_IRQ_MISC_INTRS, ar5312_misc_irq_handler);
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static u32
|
|
||||||
+ar5312_gpio_set_output(u32 mask, u32 val)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+
|
|
||||||
+ reg = ar231x_read_reg(AR531X_GPIO_CR);
|
|
||||||
+ reg |= mask;
|
|
||||||
+ reg &= ~val;
|
|
||||||
+ ar231x_write_reg(AR531X_GPIO_CR, reg);
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static u32
|
|
||||||
+ar5312_gpio_get(u32 valid_mask)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+ reg = ar231x_read_reg(AR531X_GPIO_DI);
|
|
||||||
+ reg &= valid_mask;
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static u32
|
|
||||||
+ar5312_gpio_set(u32 mask, u32 value)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+ reg = ar231x_read_reg(AR531X_GPIO_DO);
|
|
||||||
+ reg &= ~mask;
|
|
||||||
+ reg |= value;
|
|
||||||
+ ar231x_write_reg(AR531X_GPIO_DO, reg);
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/*
|
+/*
|
||||||
+ * gpiolib implementations. Original mask based methods preserved
|
+ * gpiolib implementations
|
||||||
+ */
|
+ */
|
||||||
+static int
|
+static int
|
||||||
+ar5312_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
|
+ar5312_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ return (ar231x_read_reg(AR531X_GPIO_DI) >> gpio) & 1;
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ u32 rett;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return 0;
|
|
||||||
+ rett = ar5312_gpio_get(gpch->valid_mask);
|
|
||||||
+ return !!(rett & mask);
|
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void
|
+static void
|
||||||
+ar5312_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
+ar5312_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ u32 reg = ar231x_read_reg(AR531X_GPIO_DO);
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
+ reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
|
||||||
+ u32 mask = 1 << gpio;
|
+ ar231x_write_reg(AR531X_GPIO_DO, reg);
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return;
|
|
||||||
+ ar5312_gpio_set(mask, (!!value) * mask);
|
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static int
|
+static int
|
||||||
+ar5312_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
|
+ar5312_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ ar231x_mask_reg(AR531X_GPIO_CR, 0, 1 << gpio);
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return -ENXIO;
|
|
||||||
+ ar5312_gpio_set_output(mask, 0);
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+static int
|
|
||||||
+ar5312_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
|
|
||||||
+{
|
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return -ENXIO;
|
|
||||||
+ ar5312_gpio_set_output(mask, mask);
|
|
||||||
+ ar5312_gpio_set(mask, (!!value) * mask);
|
|
||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static struct ar231x_gpio_chip ar5312_gpio_chip = {
|
+static int
|
||||||
+ .valid_mask = (1 << 22) - 1,
|
+ar5312_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
|
||||||
+ .chip = {
|
+{
|
||||||
|
+ ar231x_mask_reg(AR531X_GPIO_CR, 1 << gpio, 0);
|
||||||
|
+ ar5312_gpio_set_value(chip, gpio, value);
|
||||||
|
+ return 0;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static struct gpio_chip ar5312_gpio_chip = {
|
||||||
+ .label = "ar5312-gpio",
|
+ .label = "ar5312-gpio",
|
||||||
+ .direction_input = ar5312_gpio_direction_input,
|
+ .direction_input = ar5312_gpio_direction_input,
|
||||||
+ .direction_output = ar5312_gpio_direction_output,
|
+ .direction_output = ar5312_gpio_direction_output,
|
||||||
+ .set = ar5312_gpio_set_value,
|
+ .set = ar5312_gpio_set_value,
|
||||||
+ .get = ar5312_gpio_get_value,
|
+ .get = ar5312_gpio_get_value,
|
||||||
+ .base = 0,
|
+ .base = 0,
|
||||||
+ .ngpio = AR531X_GPIO_IRQ_COUNT, /* 22 */
|
+ .ngpio = AR531X_NUM_GPIO, /* 8 */
|
||||||
+ }
|
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+/* end of gpiolib */
|
+/* end of gpiolib */
|
||||||
|
@ -2123,19 +2069,17 @@
|
||||||
+ mips_hpt_frequency = ar5312_cpu_frequency() / 2;
|
+ mips_hpt_frequency = ar5312_cpu_frequency() / 2;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+int __init
|
+static int __init
|
||||||
+ar5312_gpio_init(void)
|
+ar5312_gpio_init(void)
|
||||||
+{
|
+{
|
||||||
+ int ret;
|
+ int ret;
|
||||||
+ struct ar231x_gpio_chip *gpch;
|
+ ret = gpiochip_add(&ar5312_gpio_chip);
|
||||||
+ gpch = &ar5312_gpio_chip;
|
|
||||||
+ ret = gpiochip_add(&gpch->chip);
|
|
||||||
+ if (ret) {
|
+ if (ret) {
|
||||||
+ pr_err("%s: failed to add gpiochip\n", gpch->chip.label);
|
+ pr_err("%s: failed to add gpiochip\n", ar5312_gpio_chip.label);
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+ }
|
+ }
|
||||||
+ pr_info("%s: registered %d GPIOs\n", gpch->chip.label,
|
+ pr_info("%s: registered %d GPIOs\n", ar5312_gpio_chip.label,
|
||||||
+ gpch->chip.ngpio);
|
+ ar5312_gpio_chip.ngpio);
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
|
@ -2182,7 +2126,7 @@
|
||||||
+
|
+
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/arch/mips/ar231x/ar2315.c
|
+++ b/arch/mips/ar231x/ar2315.c
|
||||||
@@ -0,0 +1,615 @@
|
@@ -0,0 +1,557 @@
|
||||||
+/*
|
+/*
|
||||||
+ * This file is subject to the terms and conditions of the GNU General Public
|
+ * This file is subject to the terms and conditions of the GNU General Public
|
||||||
+ * License. See the file "COPYING" in the main directory of this archive
|
+ * License. See the file "COPYING" in the main directory of this archive
|
||||||
|
@ -2242,8 +2186,8 @@
|
||||||
+ ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
|
+ ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
|
||||||
+
|
+
|
||||||
+ /* Enable interrupt with edge detection */
|
+ /* Enable interrupt with edge detection */
|
||||||
+ if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(bit)) !=
|
+ if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(bit)) !=
|
||||||
+ AR2315_GPIO_CR_I(bit))
|
+ AR2315_GPIO_DIR_I(bit))
|
||||||
+ return;
|
+ return;
|
||||||
+
|
+
|
||||||
+ if (bit >= 0)
|
+ if (bit >= 0)
|
||||||
|
@ -2310,8 +2254,8 @@
|
||||||
+ unsigned int gpio = d->irq - AR531X_GPIO_IRQ_BASE;
|
+ unsigned int gpio = d->irq - AR531X_GPIO_IRQ_BASE;
|
||||||
+
|
+
|
||||||
+ /* Enable interrupt with edge detection */
|
+ /* Enable interrupt with edge detection */
|
||||||
+ if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(gpio)) !=
|
+ if ((ar231x_read_reg(AR2315_GPIO_DIR) & AR2315_GPIO_DIR_M(gpio)) !=
|
||||||
+ AR2315_GPIO_CR_I(gpio))
|
+ AR2315_GPIO_DIR_I(gpio))
|
||||||
+ return;
|
+ return;
|
||||||
+
|
+
|
||||||
+ gpiointmask |= (1 << gpio);
|
+ gpiointmask |= (1 << gpio);
|
||||||
|
@ -2390,7 +2334,7 @@
|
||||||
+ irq_set_chip_and_handler(irq, &ar2315_misc_irq_chip,
|
+ irq_set_chip_and_handler(irq, &ar2315_misc_irq_chip,
|
||||||
+ handle_level_irq);
|
+ handle_level_irq);
|
||||||
+ }
|
+ }
|
||||||
+ for (i = 0; i < AR531X_GPIO_IRQ_COUNT; i++) {
|
+ for (i = 0; i < AR2315_NUM_GPIO; i++) {
|
||||||
+ int irq = AR531X_GPIO_IRQ_BASE + i;
|
+ int irq = AR531X_GPIO_IRQ_BASE + i;
|
||||||
+ irq_set_chip_and_handler(irq, &ar2315_gpio_irq_chip,
|
+ irq_set_chip_and_handler(irq, &ar2315_gpio_irq_chip,
|
||||||
+ handle_level_irq);
|
+ handle_level_irq);
|
||||||
|
@ -2400,102 +2344,46 @@
|
||||||
+ irq_set_chained_handler(AR2315_IRQ_MISC_INTRS, ar2315_misc_irq_handler);
|
+ irq_set_chained_handler(AR2315_IRQ_MISC_INTRS, ar2315_misc_irq_handler);
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static u32
|
|
||||||
+ar2315_gpio_set_output(u32 mask, u32 val)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+
|
|
||||||
+ reg = ar231x_read_reg(AR2315_GPIO_CR);
|
|
||||||
+ reg &= ~mask;
|
|
||||||
+ reg |= val;
|
|
||||||
+ ar231x_write_reg(AR2315_GPIO_CR, reg);
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static u32
|
|
||||||
+ar2315_gpio_get(u32 valid_mask)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+ reg = ar231x_read_reg(AR2315_GPIO_DI);
|
|
||||||
+ reg &= valid_mask;
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static u32
|
|
||||||
+ar2315_gpio_set(u32 mask, u32 value)
|
|
||||||
+{
|
|
||||||
+ u32 reg;
|
|
||||||
+ reg = ar231x_read_reg(AR2315_GPIO_DO);
|
|
||||||
+ reg &= ~mask;
|
|
||||||
+ reg |= value;
|
|
||||||
+ ar231x_write_reg(AR2315_GPIO_DO, reg);
|
|
||||||
+ return reg;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+/*
|
+/*
|
||||||
+ * gpiolib implementation. Original legacy mask based methods
|
+ * gpiolib implementation
|
||||||
+ * preserved for now.
|
|
||||||
+ */
|
+ */
|
||||||
+static int
|
+static int
|
||||||
+ar2315_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
|
+ar2315_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ return (ar231x_read_reg(AR2315_GPIO_DI) >> gpio) & 1;
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ u32 rett;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return 0;
|
|
||||||
+ rett = ar2315_gpio_get(gpch->valid_mask); /* legacy code */
|
|
||||||
+ return !!(rett & mask);
|
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void
|
+static void
|
||||||
+ar2315_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
+ar2315_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ u32 reg = ar231x_read_reg(AR2315_GPIO_DO);
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
+ reg = value ? reg | (1 << gpio) : reg & ~(1 << gpio);
|
||||||
+ u32 mask = 1 << gpio;
|
+ ar231x_write_reg(AR2315_GPIO_DO, reg);
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return;
|
|
||||||
+ ar2315_gpio_set(mask, (!!value) * mask); /* legacy */
|
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static int
|
+static int
|
||||||
+ar2315_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
|
+ar2315_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ ar231x_mask_reg(AR2315_GPIO_DIR, 1 << gpio, 0);
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return -ENXIO;
|
|
||||||
+ ar2315_gpio_set_output(mask, 0); /* legacy */
|
|
||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static int
|
+static int
|
||||||
+ar2315_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
|
+ar2315_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
|
||||||
+{
|
+{
|
||||||
+ struct ar231x_gpio_chip *gpch =
|
+ ar231x_mask_reg(AR2315_GPIO_DIR, 0, 1 << gpio);
|
||||||
+ container_of(chip, struct ar231x_gpio_chip, chip);
|
+ ar2315_gpio_set_value(chip, gpio, value);
|
||||||
+ u32 mask = 1 << gpio;
|
|
||||||
+ if (!(gpch->valid_mask & mask))
|
|
||||||
+ return -ENXIO;
|
|
||||||
+ ar2315_gpio_set_output(mask, mask); /* both legacy */
|
|
||||||
+ ar2315_gpio_set(mask, (!!value) * mask);
|
|
||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static struct ar231x_gpio_chip ar2315_gpio_chip = {
|
+static struct gpio_chip ar2315_gpio_chip = {
|
||||||
+ .valid_mask = (1 << 22) - 1,
|
|
||||||
+ .chip = {
|
|
||||||
+ .label = "ar2315-gpio",
|
+ .label = "ar2315-gpio",
|
||||||
+ .direction_input = ar2315_gpio_direction_input,
|
+ .direction_input = ar2315_gpio_direction_input,
|
||||||
+ .direction_output = ar2315_gpio_direction_output,
|
+ .direction_output = ar2315_gpio_direction_output,
|
||||||
+ .set = ar2315_gpio_set_value,
|
+ .set = ar2315_gpio_set_value,
|
||||||
+ .get = ar2315_gpio_get_value,
|
+ .get = ar2315_gpio_get_value,
|
||||||
+ .base = 0,
|
+ .base = 0,
|
||||||
+ .ngpio = AR531X_GPIO_IRQ_COUNT, /* 22 */
|
+ .ngpio = AR2315_NUM_GPIO, /* 22 */
|
||||||
+ }
|
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+/* end of gpiolib */
|
+/* end of gpiolib */
|
||||||
|
@ -2731,19 +2619,17 @@
|
||||||
+ mips_hpt_frequency = ar2315_cpu_frequency() / 2;
|
+ mips_hpt_frequency = ar2315_cpu_frequency() / 2;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+int __init
|
+static int __init
|
||||||
+ar2315_gpio_init(void)
|
+ar2315_gpio_init(void)
|
||||||
+{
|
+{
|
||||||
+ int ret;
|
+ int ret;
|
||||||
+ struct ar231x_gpio_chip *gpch;
|
+ ret = gpiochip_add(&ar2315_gpio_chip);
|
||||||
+ gpch = &ar2315_gpio_chip;
|
|
||||||
+ ret = gpiochip_add(&gpch->chip);
|
|
||||||
+ if (ret) {
|
+ if (ret) {
|
||||||
+ pr_err("%s: failed to add gpiochip\n", gpch->chip.label);
|
+ pr_err("%s: failed to add gpiochip\n", ar2315_gpio_chip.label);
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+ }
|
+ }
|
||||||
+ pr_info("%s: registered %d GPIOs\n", gpch->chip.label,
|
+ pr_info("%s: registered %d GPIOs\n", ar2315_gpio_chip.label,
|
||||||
+ gpch->chip.ngpio);
|
+ ar2315_gpio_chip.ngpio);
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
|
@ -2881,7 +2767,7 @@
|
||||||
+#endif
|
+#endif
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/arch/mips/include/asm/mach-ar231x/ar231x.h
|
+++ b/arch/mips/include/asm/mach-ar231x/ar231x.h
|
||||||
@@ -0,0 +1,44 @@
|
@@ -0,0 +1,43 @@
|
||||||
+#ifndef __AR531X_H
|
+#ifndef __AR531X_H
|
||||||
+#define __AR531X_H
|
+#define __AR531X_H
|
||||||
+
|
+
|
||||||
|
@ -2895,10 +2781,9 @@
|
||||||
+#define AR531X_IRQ_NONE (MIPS_CPU_IRQ_BASE+0)
|
+#define AR531X_IRQ_NONE (MIPS_CPU_IRQ_BASE+0)
|
||||||
+#define AR531X_IRQ_CPU_CLOCK (MIPS_CPU_IRQ_BASE+7) /* C0_CAUSE: 0x8000 */
|
+#define AR531X_IRQ_CPU_CLOCK (MIPS_CPU_IRQ_BASE+7) /* C0_CAUSE: 0x8000 */
|
||||||
+
|
+
|
||||||
+/* GPIO Interrupts [0..7], share AR531X_MISC_IRQ_GPIO */
|
+/* GPIO Interrupts, share ARXXXX_MISC_IRQ_GPIO */
|
||||||
+#define AR531X_GPIO_IRQ_NONE (AR531X_GPIO_IRQ_BASE+0)
|
+#define AR531X_GPIO_IRQ_NONE (AR531X_GPIO_IRQ_BASE+0)
|
||||||
+#define AR531X_GPIO_IRQ(n) (AR531X_GPIO_IRQ_BASE+n)
|
+#define AR531X_GPIO_IRQ(n) (AR531X_GPIO_IRQ_BASE+n)
|
||||||
+#define AR531X_GPIO_IRQ_COUNT 22
|
|
||||||
+
|
+
|
||||||
+static inline u32
|
+static inline u32
|
||||||
+ar231x_read_reg(u32 reg)
|
+ar231x_read_reg(u32 reg)
|
||||||
|
@ -2928,10 +2813,9 @@
|
||||||
+#endif
|
+#endif
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/arch/mips/ar231x/devices.h
|
+++ b/arch/mips/ar231x/devices.h
|
||||||
@@ -0,0 +1,42 @@
|
@@ -0,0 +1,37 @@
|
||||||
+#ifndef __AR231X_DEVICES_H
|
+#ifndef __AR231X_DEVICES_H
|
||||||
+#define __AR231X_DEVICES_H
|
+#define __AR231X_DEVICES_H
|
||||||
+#include <linux/gpio.h>
|
|
||||||
+
|
+
|
||||||
+enum {
|
+enum {
|
||||||
+ /* handled by ar5312.c */
|
+ /* handled by ar5312.c */
|
||||||
|
@ -2966,10 +2850,6 @@
|
||||||
+ return !is_2315();
|
+ return !is_2315();
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+struct ar231x_gpio_chip {
|
|
||||||
+ u32 valid_mask;
|
|
||||||
+ struct gpio_chip chip;
|
|
||||||
+};
|
|
||||||
+#endif
|
+#endif
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/arch/mips/ar231x/devices.c
|
+++ b/arch/mips/ar231x/devices.c
|
||||||
|
|
Loading…
Reference in a new issue