#define GPIO_LS_SYNC 0x60
#define NUM_GROUP 32
-#define MAX_BANK 6
+#define MAX_BANK 7
#define PIN_BASE NR_GIC_IRQS
#define RK30_PIN4_PD6 (4*NUM_GROUP + PIN_BASE + 30)
#define RK30_PIN4_PD7 (4*NUM_GROUP + PIN_BASE + 31)
-#define RK30_PIN6_PA0 (5*NUM_GROUP + PIN_BASE + 0)
-#define RK30_PIN6_PA1 (5*NUM_GROUP + PIN_BASE + 1)
-#define RK30_PIN6_PA2 (5*NUM_GROUP + PIN_BASE + 2)
-#define RK30_PIN6_PA3 (5*NUM_GROUP + PIN_BASE + 3)
-#define RK30_PIN6_PA4 (5*NUM_GROUP + PIN_BASE + 4)
-#define RK30_PIN6_PA5 (5*NUM_GROUP + PIN_BASE + 5)
-#define RK30_PIN6_PA6 (5*NUM_GROUP + PIN_BASE + 6)
-#define RK30_PIN6_PA7 (5*NUM_GROUP + PIN_BASE + 7)
-#define RK30_PIN6_PB0 (5*NUM_GROUP + PIN_BASE + 8)
-#define RK30_PIN6_PB1 (5*NUM_GROUP + PIN_BASE + 9)
-#define RK30_PIN6_PB2 (5*NUM_GROUP + PIN_BASE + 10)
-#define RK30_PIN6_PB3 (5*NUM_GROUP + PIN_BASE + 11)
-#define RK30_PIN6_PB4 (5*NUM_GROUP + PIN_BASE + 12)
-#define RK30_PIN6_PB5 (5*NUM_GROUP + PIN_BASE + 13)
-#define RK30_PIN6_PB6 (5*NUM_GROUP + PIN_BASE + 14)
-#define RK30_PIN6_PB7 (5*NUM_GROUP + PIN_BASE + 15)
+#define RK30_PIN6_PA0 (6*NUM_GROUP + PIN_BASE + 0)
+#define RK30_PIN6_PA1 (6*NUM_GROUP + PIN_BASE + 1)
+#define RK30_PIN6_PA2 (6*NUM_GROUP + PIN_BASE + 2)
+#define RK30_PIN6_PA3 (6*NUM_GROUP + PIN_BASE + 3)
+#define RK30_PIN6_PA4 (6*NUM_GROUP + PIN_BASE + 4)
+#define RK30_PIN6_PA5 (6*NUM_GROUP + PIN_BASE + 5)
+#define RK30_PIN6_PA6 (6*NUM_GROUP + PIN_BASE + 6)
+#define RK30_PIN6_PA7 (6*NUM_GROUP + PIN_BASE + 7)
+#define RK30_PIN6_PB0 (6*NUM_GROUP + PIN_BASE + 8)
+#define RK30_PIN6_PB1 (6*NUM_GROUP + PIN_BASE + 9)
+#define RK30_PIN6_PB2 (6*NUM_GROUP + PIN_BASE + 10)
+#define RK30_PIN6_PB3 (6*NUM_GROUP + PIN_BASE + 11)
+#define RK30_PIN6_PB4 (6*NUM_GROUP + PIN_BASE + 12)
+#define RK30_PIN6_PB5 (6*NUM_GROUP + PIN_BASE + 13)
+#define RK30_PIN6_PB6 (6*NUM_GROUP + PIN_BASE + 14)
+#define RK30_PIN6_PB7 (6*NUM_GROUP + PIN_BASE + 15)
#endif
#if defined(CONFIG_SPI_FPGA_GPIO)
.pull_updown = rk30_gpiolib_pull_updown, \
.dbg_show = rk30_gpiolib_dbg_show, \
.to_irq = rk30_gpiolib_to_irq, \
- .base = ID < 6 ? PIN_BASE + ID*NUM_GROUP : PIN_BASE + 5*NUM_GROUP, \
+ .base = PIN_BASE + ID*NUM_GROUP, \
.ngpio = ID < 6 ? NUM_GROUP : 16, \
}, \
.id = ID, \
void __init rk30_gpio_init(void)
{
- unsigned int i, j, pin;
+ unsigned int i, j, pin, irqs = 0;
struct rk30_gpio_bank *bank;
bank = rk30_gpio_banks;
- pin = PIN_BASE;
for (i = 0; i < ARRAY_SIZE(rk30_gpio_banks); i++, bank++) {
spin_lock_init(&bank->lock);
gpiochip_add(&bank->chip);
__raw_writel(0, bank->regbase + GPIO_INTEN);
+ pin = bank->chip.base;
for (j = 0; j < 32; j++) {
unsigned int irq = gpio_to_irq(pin);
if (pin > MAX_PIN)
irq_set_chip_and_handler(irq, &rk30_gpio_irq_chip, handle_level_irq);
set_irq_flags(irq, IRQF_VALID);
pin++;
+ irqs++;
}
irq_set_handler_data(bank->irq, bank);
irq_set_chained_handler(bank->irq, rk30_gpio_irq_handler);
}
- printk("%s: %d gpio irqs in %d banks\n", __func__, pin - PIN_BASE, ARRAY_SIZE(rk30_gpio_banks));
+ printk("%s: %d gpio irqs in %d banks\n", __func__, irqs, ARRAY_SIZE(rk30_gpio_banks));
}
#ifdef CONFIG_PM