Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * License Terms: GNU General Public License, version 2 |
| 5 | * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson |
| 6 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/platform_device.h> |
| 12 | #include <linux/slab.h> |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 13 | #include <linux/gpio/driver.h> |
Lee Jones | 3113e67 | 2012-09-07 12:14:59 +0100 | [diff] [blame] | 14 | #include <linux/of.h> |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
Sundar Iyer | c6eda6c | 2010-12-13 09:33:12 +0530 | [diff] [blame] | 16 | #include <linux/mfd/tc3589x.h> |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 17 | #include <linux/bitops.h> |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | * These registers are modified under the irq bus lock and cached to avoid |
| 21 | * unnecessary writes in bus_sync_unlock. |
| 22 | */ |
| 23 | enum { REG_IBE, REG_IEV, REG_IS, REG_IE }; |
| 24 | |
| 25 | #define CACHE_NR_REGS 4 |
| 26 | #define CACHE_NR_BANKS 3 |
| 27 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 28 | struct tc3589x_gpio { |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 29 | struct gpio_chip chip; |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 30 | struct tc3589x *tc3589x; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 31 | struct device *dev; |
| 32 | struct mutex irq_lock; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 33 | /* Caches of interrupt control registers for bus_lock */ |
| 34 | u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS]; |
| 35 | u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS]; |
| 36 | }; |
| 37 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 38 | static int tc3589x_gpio_get(struct gpio_chip *chip, unsigned offset) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 39 | { |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 40 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(chip); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 41 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
| 42 | u8 reg = TC3589x_GPIODATA0 + (offset / 8) * 2; |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 43 | u8 mask = BIT(offset % 8); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 44 | int ret; |
| 45 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 46 | ret = tc3589x_reg_read(tc3589x, reg); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 47 | if (ret < 0) |
| 48 | return ret; |
| 49 | |
Linus Walleij | 27ca226 | 2015-12-21 11:42:30 +0100 | [diff] [blame] | 50 | return !!(ret & mask); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 51 | } |
| 52 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 53 | static void tc3589x_gpio_set(struct gpio_chip *chip, unsigned offset, int val) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 54 | { |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 55 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(chip); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 56 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
| 57 | u8 reg = TC3589x_GPIODATA0 + (offset / 8) * 2; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 58 | unsigned pos = offset % 8; |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 59 | u8 data[] = {val ? BIT(pos) : 0, BIT(pos)}; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 60 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 61 | tc3589x_block_write(tc3589x, reg, ARRAY_SIZE(data), data); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 62 | } |
| 63 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 64 | static int tc3589x_gpio_direction_output(struct gpio_chip *chip, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 65 | unsigned offset, int val) |
| 66 | { |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 67 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(chip); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 68 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
| 69 | u8 reg = TC3589x_GPIODIR0 + offset / 8; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 70 | unsigned pos = offset % 8; |
| 71 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 72 | tc3589x_gpio_set(chip, offset, val); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 73 | |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 74 | return tc3589x_set_bits(tc3589x, reg, BIT(pos), BIT(pos)); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 75 | } |
| 76 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 77 | static int tc3589x_gpio_direction_input(struct gpio_chip *chip, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 78 | unsigned offset) |
| 79 | { |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 80 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(chip); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 81 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
| 82 | u8 reg = TC3589x_GPIODIR0 + offset / 8; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 83 | unsigned pos = offset % 8; |
| 84 | |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 85 | return tc3589x_set_bits(tc3589x, reg, BIT(pos), 0); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 86 | } |
| 87 | |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 88 | static struct gpio_chip template_chip = { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 89 | .label = "tc3589x", |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 90 | .owner = THIS_MODULE, |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 91 | .direction_input = tc3589x_gpio_direction_input, |
| 92 | .get = tc3589x_gpio_get, |
| 93 | .direction_output = tc3589x_gpio_direction_output, |
| 94 | .set = tc3589x_gpio_set, |
Linus Walleij | 9fb1f39 | 2013-12-04 14:42:46 +0100 | [diff] [blame] | 95 | .can_sleep = true, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 96 | }; |
| 97 | |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 98 | static int tc3589x_gpio_irq_set_type(struct irq_data *d, unsigned int type) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 99 | { |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 100 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 101 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(gc); |
Lee Jones | efe4c94 | 2012-09-07 12:14:58 +0100 | [diff] [blame] | 102 | int offset = d->hwirq; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 103 | int regoffset = offset / 8; |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 104 | int mask = BIT(offset % 8); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 105 | |
| 106 | if (type == IRQ_TYPE_EDGE_BOTH) { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 107 | tc3589x_gpio->regs[REG_IBE][regoffset] |= mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 111 | tc3589x_gpio->regs[REG_IBE][regoffset] &= ~mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 112 | |
| 113 | if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 114 | tc3589x_gpio->regs[REG_IS][regoffset] |= mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 115 | else |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 116 | tc3589x_gpio->regs[REG_IS][regoffset] &= ~mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 117 | |
| 118 | if (type == IRQ_TYPE_EDGE_RISING || type == IRQ_TYPE_LEVEL_HIGH) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 119 | tc3589x_gpio->regs[REG_IEV][regoffset] |= mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 120 | else |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 121 | tc3589x_gpio->regs[REG_IEV][regoffset] &= ~mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 126 | static void tc3589x_gpio_irq_lock(struct irq_data *d) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 127 | { |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 128 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 129 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(gc); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 130 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 131 | mutex_lock(&tc3589x_gpio->irq_lock); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 134 | static void tc3589x_gpio_irq_sync_unlock(struct irq_data *d) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 135 | { |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 136 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 137 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(gc); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 138 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 139 | static const u8 regmap[] = { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 140 | [REG_IBE] = TC3589x_GPIOIBE0, |
| 141 | [REG_IEV] = TC3589x_GPIOIEV0, |
| 142 | [REG_IS] = TC3589x_GPIOIS0, |
| 143 | [REG_IE] = TC3589x_GPIOIE0, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 144 | }; |
| 145 | int i, j; |
| 146 | |
| 147 | for (i = 0; i < CACHE_NR_REGS; i++) { |
| 148 | for (j = 0; j < CACHE_NR_BANKS; j++) { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 149 | u8 old = tc3589x_gpio->oldregs[i][j]; |
| 150 | u8 new = tc3589x_gpio->regs[i][j]; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 151 | |
| 152 | if (new == old) |
| 153 | continue; |
| 154 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 155 | tc3589x_gpio->oldregs[i][j] = new; |
| 156 | tc3589x_reg_write(tc3589x, regmap[i] + j * 8, new); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 160 | mutex_unlock(&tc3589x_gpio->irq_lock); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 161 | } |
| 162 | |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 163 | static void tc3589x_gpio_irq_mask(struct irq_data *d) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 164 | { |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 165 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 166 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(gc); |
Lee Jones | efe4c94 | 2012-09-07 12:14:58 +0100 | [diff] [blame] | 167 | int offset = d->hwirq; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 168 | int regoffset = offset / 8; |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 169 | int mask = BIT(offset % 8); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 170 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 171 | tc3589x_gpio->regs[REG_IE][regoffset] &= ~mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 172 | } |
| 173 | |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 174 | static void tc3589x_gpio_irq_unmask(struct irq_data *d) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 175 | { |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 176 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b0d3847 | 2015-12-03 15:37:29 +0100 | [diff] [blame] | 177 | struct tc3589x_gpio *tc3589x_gpio = gpiochip_get_data(gc); |
Lee Jones | efe4c94 | 2012-09-07 12:14:58 +0100 | [diff] [blame] | 178 | int offset = d->hwirq; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 179 | int regoffset = offset / 8; |
Linus Walleij | cee1b40 | 2016-04-05 15:09:09 +0200 | [diff] [blame^] | 180 | int mask = BIT(offset % 8); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 181 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 182 | tc3589x_gpio->regs[REG_IE][regoffset] |= mask; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 183 | } |
| 184 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 185 | static struct irq_chip tc3589x_gpio_irq_chip = { |
| 186 | .name = "tc3589x-gpio", |
Lennert Buytenhek | 33fcc1b | 2011-01-12 17:00:19 -0800 | [diff] [blame] | 187 | .irq_bus_lock = tc3589x_gpio_irq_lock, |
| 188 | .irq_bus_sync_unlock = tc3589x_gpio_irq_sync_unlock, |
| 189 | .irq_mask = tc3589x_gpio_irq_mask, |
| 190 | .irq_unmask = tc3589x_gpio_irq_unmask, |
| 191 | .irq_set_type = tc3589x_gpio_irq_set_type, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 192 | }; |
| 193 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 194 | static irqreturn_t tc3589x_gpio_irq(int irq, void *dev) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 195 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 196 | struct tc3589x_gpio *tc3589x_gpio = dev; |
| 197 | struct tc3589x *tc3589x = tc3589x_gpio->tc3589x; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 198 | u8 status[CACHE_NR_BANKS]; |
| 199 | int ret; |
| 200 | int i; |
| 201 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 202 | ret = tc3589x_block_read(tc3589x, TC3589x_GPIOMIS0, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 203 | ARRAY_SIZE(status), status); |
| 204 | if (ret < 0) |
| 205 | return IRQ_NONE; |
| 206 | |
| 207 | for (i = 0; i < ARRAY_SIZE(status); i++) { |
| 208 | unsigned int stat = status[i]; |
| 209 | if (!stat) |
| 210 | continue; |
| 211 | |
| 212 | while (stat) { |
| 213 | int bit = __ffs(stat); |
| 214 | int line = i * 8 + bit; |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 215 | int irq = irq_find_mapping(tc3589x_gpio->chip.irqdomain, |
| 216 | line); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 217 | |
Linus Walleij | e300376 | 2013-10-11 19:06:12 +0200 | [diff] [blame] | 218 | handle_nested_irq(irq); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 219 | stat &= ~(1 << bit); |
| 220 | } |
| 221 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 222 | tc3589x_reg_write(tc3589x, TC3589x_GPIOIC0 + i, status[i]); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | return IRQ_HANDLED; |
| 226 | } |
| 227 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 228 | static int tc3589x_gpio_probe(struct platform_device *pdev) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 229 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 230 | struct tc3589x *tc3589x = dev_get_drvdata(pdev->dev.parent); |
Lee Jones | 3113e67 | 2012-09-07 12:14:59 +0100 | [diff] [blame] | 231 | struct device_node *np = pdev->dev.of_node; |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 232 | struct tc3589x_gpio *tc3589x_gpio; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 233 | int ret; |
| 234 | int irq; |
| 235 | |
Linus Walleij | 53e41f5 | 2014-12-15 10:39:47 +0100 | [diff] [blame] | 236 | if (!np) { |
| 237 | dev_err(&pdev->dev, "No Device Tree node found\n"); |
Lee Jones | 3113e67 | 2012-09-07 12:14:59 +0100 | [diff] [blame] | 238 | return -EINVAL; |
| 239 | } |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 240 | |
| 241 | irq = platform_get_irq(pdev, 0); |
| 242 | if (irq < 0) |
| 243 | return irq; |
| 244 | |
Linus Walleij | 033f275 | 2014-04-09 12:38:56 +0200 | [diff] [blame] | 245 | tc3589x_gpio = devm_kzalloc(&pdev->dev, sizeof(struct tc3589x_gpio), |
| 246 | GFP_KERNEL); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 247 | if (!tc3589x_gpio) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 248 | return -ENOMEM; |
| 249 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 250 | mutex_init(&tc3589x_gpio->irq_lock); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 251 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 252 | tc3589x_gpio->dev = &pdev->dev; |
| 253 | tc3589x_gpio->tc3589x = tc3589x; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 254 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 255 | tc3589x_gpio->chip = template_chip; |
| 256 | tc3589x_gpio->chip.ngpio = tc3589x->num_gpio; |
Linus Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 257 | tc3589x_gpio->chip.parent = &pdev->dev; |
Linus Walleij | 90f2d0f | 2014-10-28 11:06:56 +0100 | [diff] [blame] | 258 | tc3589x_gpio->chip.base = -1; |
Laurent Navet | e90c636 | 2013-03-20 13:16:02 +0100 | [diff] [blame] | 259 | tc3589x_gpio->chip.of_node = np; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 260 | |
| 261 | /* Bring the GPIO module out of reset */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 262 | ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL, |
| 263 | TC3589x_RSTCTRL_GPIRST, 0); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 264 | if (ret < 0) |
Linus Walleij | 033f275 | 2014-04-09 12:38:56 +0200 | [diff] [blame] | 265 | return ret; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 266 | |
Linus Walleij | 033f275 | 2014-04-09 12:38:56 +0200 | [diff] [blame] | 267 | ret = devm_request_threaded_irq(&pdev->dev, |
| 268 | irq, NULL, tc3589x_gpio_irq, |
| 269 | IRQF_ONESHOT, "tc3589x-gpio", |
| 270 | tc3589x_gpio); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 271 | if (ret) { |
| 272 | dev_err(&pdev->dev, "unable to get irq: %d\n", ret); |
Linus Walleij | 033f275 | 2014-04-09 12:38:56 +0200 | [diff] [blame] | 273 | return ret; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 274 | } |
| 275 | |
Laxman Dewangan | f3378b6 | 2016-02-22 17:43:28 +0530 | [diff] [blame] | 276 | ret = devm_gpiochip_add_data(&pdev->dev, &tc3589x_gpio->chip, |
| 277 | tc3589x_gpio); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 278 | if (ret) { |
| 279 | dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret); |
Linus Walleij | 033f275 | 2014-04-09 12:38:56 +0200 | [diff] [blame] | 280 | return ret; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 281 | } |
| 282 | |
Linus Walleij | cf42f1c | 2014-04-09 13:38:33 +0200 | [diff] [blame] | 283 | ret = gpiochip_irqchip_add(&tc3589x_gpio->chip, |
| 284 | &tc3589x_gpio_irq_chip, |
| 285 | 0, |
| 286 | handle_simple_irq, |
| 287 | IRQ_TYPE_NONE); |
| 288 | if (ret) { |
| 289 | dev_err(&pdev->dev, |
| 290 | "could not connect irqchip to gpiochip\n"); |
| 291 | return ret; |
| 292 | } |
| 293 | |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 294 | gpiochip_set_chained_irqchip(&tc3589x_gpio->chip, |
| 295 | &tc3589x_gpio_irq_chip, |
| 296 | irq, |
| 297 | NULL); |
| 298 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 299 | platform_set_drvdata(pdev, tc3589x_gpio); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 300 | |
| 301 | return 0; |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 302 | } |
| 303 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 304 | static struct platform_driver tc3589x_gpio_driver = { |
| 305 | .driver.name = "tc3589x-gpio", |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 306 | .driver.owner = THIS_MODULE, |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 307 | .probe = tc3589x_gpio_probe, |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 308 | }; |
| 309 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 310 | static int __init tc3589x_gpio_init(void) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 311 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 312 | return platform_driver_register(&tc3589x_gpio_driver); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 313 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 314 | subsys_initcall(tc3589x_gpio_init); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 315 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 316 | static void __exit tc3589x_gpio_exit(void) |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 317 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 318 | platform_driver_unregister(&tc3589x_gpio_driver); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 319 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 320 | module_exit(tc3589x_gpio_exit); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 321 | |
| 322 | MODULE_LICENSE("GPL v2"); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 323 | MODULE_DESCRIPTION("TC3589x GPIO driver"); |
Rabin Vincent | d88b25b | 2010-05-10 23:43:47 +0200 | [diff] [blame] | 324 | MODULE_AUTHOR("Hanumath Prasad, Rabin Vincent"); |