Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * License Terms: GNU General Public License, version 2 |
| 5 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
| 6 | */ |
| 7 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 8 | #include <linux/init.h> |
| 9 | #include <linux/platform_device.h> |
| 10 | #include <linux/slab.h> |
| 11 | #include <linux/gpio.h> |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 12 | #include <linux/interrupt.h> |
Vipul Kumar Samar | 86605cf | 2012-11-26 17:06:51 +0530 | [diff] [blame] | 13 | #include <linux/of.h> |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 14 | #include <linux/mfd/stmpe.h> |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 15 | #include <linux/seq_file.h> |
Linus Walleij | 96b2cca | 2016-09-27 15:59:12 -0700 | [diff] [blame] | 16 | #include <linux/bitops.h> |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * These registers are modified under the irq bus lock and cached to avoid |
| 20 | * unnecessary writes in bus_sync_unlock. |
| 21 | */ |
| 22 | enum { REG_RE, REG_FE, REG_IE }; |
| 23 | |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 24 | enum { LSB, CSB, MSB }; |
| 25 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 26 | #define CACHE_NR_REGS 3 |
Linus Walleij | 9e9dc7d | 2014-05-08 23:16:34 +0200 | [diff] [blame] | 27 | /* No variant has more than 24 GPIOs */ |
| 28 | #define CACHE_NR_BANKS (24 / 8) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 29 | |
| 30 | struct stmpe_gpio { |
| 31 | struct gpio_chip chip; |
| 32 | struct stmpe *stmpe; |
| 33 | struct device *dev; |
| 34 | struct mutex irq_lock; |
Linus Walleij | 1dfb4a0 | 2015-01-13 08:00:29 +0100 | [diff] [blame] | 35 | u32 norequest_mask; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 36 | /* Caches of interrupt control registers for bus_lock */ |
| 37 | u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS]; |
| 38 | u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS]; |
| 39 | }; |
| 40 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 41 | static int stmpe_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 42 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 43 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 44 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 45 | u8 reg = stmpe->regs[STMPE_IDX_GPMR_LSB + (offset / 8)]; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 46 | u8 mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 47 | int ret; |
| 48 | |
| 49 | ret = stmpe_reg_read(stmpe, reg); |
| 50 | if (ret < 0) |
| 51 | return ret; |
| 52 | |
Bhupesh Sharma | 7535b8b | 2012-02-27 11:19:43 +0530 | [diff] [blame] | 53 | return !!(ret & mask); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static void stmpe_gpio_set(struct gpio_chip *chip, unsigned offset, int val) |
| 57 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 58 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 59 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
| 60 | int which = val ? STMPE_IDX_GPSR_LSB : STMPE_IDX_GPCR_LSB; |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 61 | u8 reg = stmpe->regs[which + (offset / 8)]; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 62 | u8 mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 63 | |
Viresh Kumar | cccdceb | 2011-12-14 09:28:27 +0530 | [diff] [blame] | 64 | /* |
| 65 | * Some variants have single register for gpio set/clear functionality. |
| 66 | * For them we need to write 0 to clear and 1 to set. |
| 67 | */ |
| 68 | if (stmpe->regs[STMPE_IDX_GPSR_LSB] == stmpe->regs[STMPE_IDX_GPCR_LSB]) |
| 69 | stmpe_set_bits(stmpe, reg, mask, val ? mask : 0); |
| 70 | else |
| 71 | stmpe_reg_write(stmpe, reg, mask); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 72 | } |
| 73 | |
Linus Walleij | 8e293fb | 2016-04-28 15:00:18 +0200 | [diff] [blame] | 74 | static int stmpe_gpio_get_direction(struct gpio_chip *chip, |
| 75 | unsigned offset) |
| 76 | { |
| 77 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
| 78 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
| 79 | u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB] - (offset / 8); |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 80 | u8 mask = BIT(offset % 8); |
Linus Walleij | 8e293fb | 2016-04-28 15:00:18 +0200 | [diff] [blame] | 81 | int ret; |
| 82 | |
| 83 | ret = stmpe_reg_read(stmpe, reg); |
| 84 | if (ret < 0) |
| 85 | return ret; |
| 86 | |
| 87 | return !(ret & mask); |
| 88 | } |
| 89 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 90 | static int stmpe_gpio_direction_output(struct gpio_chip *chip, |
| 91 | unsigned offset, int val) |
| 92 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 93 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 94 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 95 | u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB + (offset / 8)]; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 96 | u8 mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 97 | |
| 98 | stmpe_gpio_set(chip, offset, val); |
| 99 | |
| 100 | return stmpe_set_bits(stmpe, reg, mask, mask); |
| 101 | } |
| 102 | |
| 103 | static int stmpe_gpio_direction_input(struct gpio_chip *chip, |
| 104 | unsigned offset) |
| 105 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 106 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 107 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 108 | u8 reg = stmpe->regs[STMPE_IDX_GPDR_LSB + (offset / 8)]; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 109 | u8 mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 110 | |
| 111 | return stmpe_set_bits(stmpe, reg, mask, 0); |
| 112 | } |
| 113 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 114 | static int stmpe_gpio_request(struct gpio_chip *chip, unsigned offset) |
| 115 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 116 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 117 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
| 118 | |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 119 | if (stmpe_gpio->norequest_mask & BIT(offset)) |
Wolfram Sang | b8e9cf0 | 2010-08-16 17:14:44 +0200 | [diff] [blame] | 120 | return -EINVAL; |
| 121 | |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 122 | return stmpe_set_altfunc(stmpe, BIT(offset), STMPE_BLOCK_GPIO); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 123 | } |
| 124 | |
Julia Lawall | e35b5ab | 2016-09-11 14:14:37 +0200 | [diff] [blame] | 125 | static const struct gpio_chip template_chip = { |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 126 | .label = "stmpe", |
| 127 | .owner = THIS_MODULE, |
Linus Walleij | 8e293fb | 2016-04-28 15:00:18 +0200 | [diff] [blame] | 128 | .get_direction = stmpe_gpio_get_direction, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 129 | .direction_input = stmpe_gpio_direction_input, |
| 130 | .get = stmpe_gpio_get, |
| 131 | .direction_output = stmpe_gpio_direction_output, |
| 132 | .set = stmpe_gpio_set, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 133 | .request = stmpe_gpio_request, |
Linus Walleij | 9fb1f39 | 2013-12-04 14:42:46 +0100 | [diff] [blame] | 134 | .can_sleep = true, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 135 | }; |
| 136 | |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 137 | static int stmpe_gpio_irq_set_type(struct irq_data *d, unsigned int type) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 138 | { |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 139 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 140 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Lee Jones | fc13d5a | 2012-12-10 10:07:54 +0000 | [diff] [blame] | 141 | int offset = d->hwirq; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 142 | int regoffset = offset / 8; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 143 | int mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 144 | |
Linus Walleij | 1fe3bd9 | 2014-10-02 07:55:27 +0200 | [diff] [blame] | 145 | if (type & IRQ_TYPE_LEVEL_LOW || type & IRQ_TYPE_LEVEL_HIGH) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 146 | return -EINVAL; |
| 147 | |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 148 | /* STMPE801 and STMPE 1600 don't have RE and FE registers */ |
| 149 | if (stmpe_gpio->stmpe->partnum == STMPE801 || |
| 150 | stmpe_gpio->stmpe->partnum == STMPE1600) |
Viresh Kumar | cccdceb | 2011-12-14 09:28:27 +0530 | [diff] [blame] | 151 | return 0; |
| 152 | |
Linus Walleij | 1fe3bd9 | 2014-10-02 07:55:27 +0200 | [diff] [blame] | 153 | if (type & IRQ_TYPE_EDGE_RISING) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 154 | stmpe_gpio->regs[REG_RE][regoffset] |= mask; |
| 155 | else |
| 156 | stmpe_gpio->regs[REG_RE][regoffset] &= ~mask; |
| 157 | |
Linus Walleij | 1fe3bd9 | 2014-10-02 07:55:27 +0200 | [diff] [blame] | 158 | if (type & IRQ_TYPE_EDGE_FALLING) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 159 | stmpe_gpio->regs[REG_FE][regoffset] |= mask; |
| 160 | else |
| 161 | stmpe_gpio->regs[REG_FE][regoffset] &= ~mask; |
| 162 | |
| 163 | return 0; |
| 164 | } |
| 165 | |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 166 | static void stmpe_gpio_irq_lock(struct irq_data *d) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 167 | { |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 168 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 169 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 170 | |
| 171 | mutex_lock(&stmpe_gpio->irq_lock); |
| 172 | } |
| 173 | |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 174 | static void stmpe_gpio_irq_sync_unlock(struct irq_data *d) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 175 | { |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 176 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 177 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 178 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
| 179 | int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8); |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 180 | static const u8 regmap[CACHE_NR_REGS][CACHE_NR_BANKS] = { |
| 181 | [REG_RE][LSB] = STMPE_IDX_GPRER_LSB, |
| 182 | [REG_RE][CSB] = STMPE_IDX_GPRER_CSB, |
| 183 | [REG_RE][MSB] = STMPE_IDX_GPRER_MSB, |
| 184 | [REG_FE][LSB] = STMPE_IDX_GPFER_LSB, |
| 185 | [REG_FE][CSB] = STMPE_IDX_GPFER_CSB, |
| 186 | [REG_FE][MSB] = STMPE_IDX_GPFER_MSB, |
| 187 | [REG_IE][LSB] = STMPE_IDX_IEGPIOR_LSB, |
| 188 | [REG_IE][CSB] = STMPE_IDX_IEGPIOR_CSB, |
| 189 | [REG_IE][MSB] = STMPE_IDX_IEGPIOR_MSB, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 190 | }; |
| 191 | int i, j; |
| 192 | |
| 193 | for (i = 0; i < CACHE_NR_REGS; i++) { |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 194 | /* STMPE801 and STMPE1600 don't have RE and FE registers */ |
| 195 | if ((stmpe->partnum == STMPE801 || |
| 196 | stmpe->partnum == STMPE1600) && |
| 197 | (i != REG_IE)) |
Viresh Kumar | cccdceb | 2011-12-14 09:28:27 +0530 | [diff] [blame] | 198 | continue; |
| 199 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 200 | for (j = 0; j < num_banks; j++) { |
| 201 | u8 old = stmpe_gpio->oldregs[i][j]; |
| 202 | u8 new = stmpe_gpio->regs[i][j]; |
| 203 | |
| 204 | if (new == old) |
| 205 | continue; |
| 206 | |
| 207 | stmpe_gpio->oldregs[i][j] = new; |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 208 | stmpe_reg_write(stmpe, stmpe->regs[regmap[i][j]], new); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 209 | } |
| 210 | } |
| 211 | |
| 212 | mutex_unlock(&stmpe_gpio->irq_lock); |
| 213 | } |
| 214 | |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 215 | static void stmpe_gpio_irq_mask(struct irq_data *d) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 216 | { |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 217 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 218 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Lee Jones | fc13d5a | 2012-12-10 10:07:54 +0000 | [diff] [blame] | 219 | int offset = d->hwirq; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 220 | int regoffset = offset / 8; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 221 | int mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 222 | |
| 223 | stmpe_gpio->regs[REG_IE][regoffset] &= ~mask; |
| 224 | } |
| 225 | |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 226 | static void stmpe_gpio_irq_unmask(struct irq_data *d) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 227 | { |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 228 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 229 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 230 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
Lee Jones | fc13d5a | 2012-12-10 10:07:54 +0000 | [diff] [blame] | 231 | int offset = d->hwirq; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 232 | int regoffset = offset / 8; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 233 | int mask = BIT(offset % 8); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 234 | |
| 235 | stmpe_gpio->regs[REG_IE][regoffset] |= mask; |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * STMPE1600 workaround: to be able to get IRQ from pins, |
| 239 | * a read must be done on GPMR register, or a write in |
| 240 | * GPSR or GPCR registers |
| 241 | */ |
| 242 | if (stmpe->partnum == STMPE1600) |
| 243 | stmpe_reg_read(stmpe, |
| 244 | stmpe->regs[STMPE_IDX_GPMR_LSB + regoffset]); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 245 | } |
| 246 | |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 247 | static void stmpe_dbg_show_one(struct seq_file *s, |
| 248 | struct gpio_chip *gc, |
| 249 | unsigned offset, unsigned gpio) |
| 250 | { |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 251 | struct stmpe_gpio *stmpe_gpio = gpiochip_get_data(gc); |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 252 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
| 253 | const char *label = gpiochip_is_requested(gc, offset); |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 254 | bool val = !!stmpe_gpio_get(gc, offset); |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 255 | u8 bank = offset / 8; |
| 256 | u8 dir_reg = stmpe->regs[STMPE_IDX_GPDR_LSB + bank]; |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 257 | u8 mask = BIT(offset % 8); |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 258 | int ret; |
| 259 | u8 dir; |
| 260 | |
| 261 | ret = stmpe_reg_read(stmpe, dir_reg); |
| 262 | if (ret < 0) |
| 263 | return; |
| 264 | dir = !!(ret & mask); |
| 265 | |
| 266 | if (dir) { |
| 267 | seq_printf(s, " gpio-%-3d (%-20.20s) out %s", |
| 268 | gpio, label ?: "(none)", |
| 269 | val ? "hi" : "lo"); |
| 270 | } else { |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 271 | u8 edge_det_reg; |
| 272 | u8 rise_reg; |
| 273 | u8 fall_reg; |
| 274 | u8 irqen_reg; |
| 275 | |
| 276 | char *edge_det_values[] = {"edge-inactive", |
| 277 | "edge-asserted", |
| 278 | "not-supported"}; |
| 279 | char *rise_values[] = {"no-rising-edge-detection", |
| 280 | "rising-edge-detection", |
| 281 | "not-supported"}; |
| 282 | char *fall_values[] = {"no-falling-edge-detection", |
| 283 | "falling-edge-detection", |
| 284 | "not-supported"}; |
| 285 | #define NOT_SUPPORTED_IDX 2 |
| 286 | u8 edge_det = NOT_SUPPORTED_IDX; |
| 287 | u8 rise = NOT_SUPPORTED_IDX; |
| 288 | u8 fall = NOT_SUPPORTED_IDX; |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 289 | bool irqen; |
| 290 | |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 291 | switch (stmpe->partnum) { |
| 292 | case STMPE610: |
| 293 | case STMPE811: |
| 294 | case STMPE1601: |
| 295 | case STMPE2401: |
| 296 | case STMPE2403: |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 297 | edge_det_reg = stmpe->regs[STMPE_IDX_GPEDR_LSB + bank]; |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 298 | ret = stmpe_reg_read(stmpe, edge_det_reg); |
| 299 | if (ret < 0) |
| 300 | return; |
| 301 | edge_det = !!(ret & mask); |
| 302 | |
| 303 | case STMPE1801: |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 304 | rise_reg = stmpe->regs[STMPE_IDX_GPRER_LSB + bank]; |
| 305 | fall_reg = stmpe->regs[STMPE_IDX_GPFER_LSB + bank]; |
| 306 | |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 307 | ret = stmpe_reg_read(stmpe, rise_reg); |
| 308 | if (ret < 0) |
| 309 | return; |
| 310 | rise = !!(ret & mask); |
| 311 | ret = stmpe_reg_read(stmpe, fall_reg); |
| 312 | if (ret < 0) |
| 313 | return; |
| 314 | fall = !!(ret & mask); |
| 315 | |
| 316 | case STMPE801: |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 317 | case STMPE1600: |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 318 | irqen_reg = stmpe->regs[STMPE_IDX_IEGPIOR_LSB + bank]; |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 319 | break; |
| 320 | |
| 321 | default: |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 322 | return; |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 323 | } |
| 324 | |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 325 | ret = stmpe_reg_read(stmpe, irqen_reg); |
| 326 | if (ret < 0) |
| 327 | return; |
| 328 | irqen = !!(ret & mask); |
| 329 | |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 330 | seq_printf(s, " gpio-%-3d (%-20.20s) in %s %13s %13s %25s %25s", |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 331 | gpio, label ?: "(none)", |
| 332 | val ? "hi" : "lo", |
Patrice Chotard | 287849c | 2016-08-10 09:39:08 +0200 | [diff] [blame] | 333 | edge_det_values[edge_det], |
| 334 | irqen ? "IRQ-enabled" : "IRQ-disabled", |
| 335 | rise_values[rise], |
| 336 | fall_values[fall]); |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 337 | } |
| 338 | } |
| 339 | |
| 340 | static void stmpe_dbg_show(struct seq_file *s, struct gpio_chip *gc) |
| 341 | { |
| 342 | unsigned i; |
| 343 | unsigned gpio = gc->base; |
| 344 | |
| 345 | for (i = 0; i < gc->ngpio; i++, gpio++) { |
| 346 | stmpe_dbg_show_one(s, gc, i, gpio); |
| 347 | seq_printf(s, "\n"); |
| 348 | } |
| 349 | } |
| 350 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 351 | static struct irq_chip stmpe_gpio_irq_chip = { |
| 352 | .name = "stmpe-gpio", |
Lennert Buytenhek | 2a866f3 | 2011-01-12 17:00:17 -0800 | [diff] [blame] | 353 | .irq_bus_lock = stmpe_gpio_irq_lock, |
| 354 | .irq_bus_sync_unlock = stmpe_gpio_irq_sync_unlock, |
| 355 | .irq_mask = stmpe_gpio_irq_mask, |
| 356 | .irq_unmask = stmpe_gpio_irq_unmask, |
| 357 | .irq_set_type = stmpe_gpio_irq_set_type, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 358 | }; |
| 359 | |
| 360 | static irqreturn_t stmpe_gpio_irq(int irq, void *dev) |
| 361 | { |
| 362 | struct stmpe_gpio *stmpe_gpio = dev; |
| 363 | struct stmpe *stmpe = stmpe_gpio->stmpe; |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 364 | u8 statmsbreg; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 365 | int num_banks = DIV_ROUND_UP(stmpe->num_gpios, 8); |
| 366 | u8 status[num_banks]; |
| 367 | int ret; |
| 368 | int i; |
| 369 | |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 370 | /* |
| 371 | * the stmpe_block_read() call below, imposes to set statmsbreg |
| 372 | * with the register located at the lowest address. As STMPE1600 |
| 373 | * variant is the only one which respect registers address's order |
| 374 | * (LSB regs located at lowest address than MSB ones) whereas all |
| 375 | * the others have a registers layout with MSB located before the |
| 376 | * LSB regs. |
| 377 | */ |
| 378 | if (stmpe->partnum == STMPE1600) |
| 379 | statmsbreg = stmpe->regs[STMPE_IDX_ISGPIOR_LSB]; |
| 380 | else |
| 381 | statmsbreg = stmpe->regs[STMPE_IDX_ISGPIOR_MSB]; |
| 382 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 383 | ret = stmpe_block_read(stmpe, statmsbreg, num_banks, status); |
| 384 | if (ret < 0) |
| 385 | return IRQ_NONE; |
| 386 | |
| 387 | for (i = 0; i < num_banks; i++) { |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 388 | int bank = (stmpe_gpio->stmpe->partnum == STMPE1600) ? i : |
| 389 | num_banks - i - 1; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 390 | unsigned int enabled = stmpe_gpio->regs[REG_IE][bank]; |
| 391 | unsigned int stat = status[i]; |
| 392 | |
| 393 | stat &= enabled; |
| 394 | if (!stat) |
| 395 | continue; |
| 396 | |
| 397 | while (stat) { |
| 398 | int bit = __ffs(stat); |
| 399 | int line = bank * 8 + bit; |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 400 | int child_irq = irq_find_mapping(stmpe_gpio->chip.irqdomain, |
Linus Walleij | ed05e20 | 2013-10-11 19:51:38 +0200 | [diff] [blame] | 401 | line); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 402 | |
Linus Walleij | ed05e20 | 2013-10-11 19:51:38 +0200 | [diff] [blame] | 403 | handle_nested_irq(child_irq); |
Linus Walleij | 4e2678b | 2016-09-27 16:11:10 -0700 | [diff] [blame] | 404 | stat &= ~BIT(bit); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 405 | } |
| 406 | |
Patrice Chotard | 6936e1f | 2016-08-10 09:39:09 +0200 | [diff] [blame] | 407 | /* |
| 408 | * interrupt status register write has no effect on |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 409 | * 801/1801/1600, bits are cleared when read. |
| 410 | * Edge detect register is not present on 801/1600/1801 |
Patrice Chotard | 6936e1f | 2016-08-10 09:39:09 +0200 | [diff] [blame] | 411 | */ |
Dan Carpenter | d1ca19c | 2016-10-12 09:25:20 +0300 | [diff] [blame] | 412 | if (stmpe->partnum != STMPE801 && stmpe->partnum != STMPE1600 && |
Patrice Chotard | c6a05a0 | 2016-08-10 09:39:15 +0200 | [diff] [blame] | 413 | stmpe->partnum != STMPE1801) { |
Patrice Chotard | 6936e1f | 2016-08-10 09:39:09 +0200 | [diff] [blame] | 414 | stmpe_reg_write(stmpe, statmsbreg + i, status[i]); |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 415 | stmpe_reg_write(stmpe, |
Linus Walleij | 1516c63 | 2016-11-23 23:21:17 +0100 | [diff] [blame] | 416 | stmpe->regs[STMPE_IDX_GPEDR_MSB] + i, |
Patrice Chotard | 43db289 | 2016-08-10 09:39:12 +0200 | [diff] [blame] | 417 | status[i]); |
Patrice Chotard | 6936e1f | 2016-08-10 09:39:09 +0200 | [diff] [blame] | 418 | } |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | return IRQ_HANDLED; |
| 422 | } |
| 423 | |
Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 424 | static int stmpe_gpio_probe(struct platform_device *pdev) |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 425 | { |
| 426 | struct stmpe *stmpe = dev_get_drvdata(pdev->dev.parent); |
Vipul Kumar Samar | 86605cf | 2012-11-26 17:06:51 +0530 | [diff] [blame] | 427 | struct device_node *np = pdev->dev.of_node; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 428 | struct stmpe_gpio *stmpe_gpio; |
| 429 | int ret; |
Chris Blair | 38040c8 | 2012-01-26 22:17:15 +0100 | [diff] [blame] | 430 | int irq = 0; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 431 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 432 | irq = platform_get_irq(pdev, 0); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 433 | |
| 434 | stmpe_gpio = kzalloc(sizeof(struct stmpe_gpio), GFP_KERNEL); |
| 435 | if (!stmpe_gpio) |
| 436 | return -ENOMEM; |
| 437 | |
| 438 | mutex_init(&stmpe_gpio->irq_lock); |
| 439 | |
| 440 | stmpe_gpio->dev = &pdev->dev; |
| 441 | stmpe_gpio->stmpe = stmpe; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 442 | stmpe_gpio->chip = template_chip; |
| 443 | stmpe_gpio->chip.ngpio = stmpe->num_gpios; |
Linus Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 444 | stmpe_gpio->chip.parent = &pdev->dev; |
Gabriel Fernandez | 9afd9b7 | 2013-03-18 11:45:05 +0100 | [diff] [blame] | 445 | stmpe_gpio->chip.of_node = np; |
Linus Walleij | 9e9dc7d | 2014-05-08 23:16:34 +0200 | [diff] [blame] | 446 | stmpe_gpio->chip.base = -1; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 447 | |
Linus Walleij | 27ec8a9 | 2014-10-02 07:55:41 +0200 | [diff] [blame] | 448 | if (IS_ENABLED(CONFIG_DEBUG_FS)) |
| 449 | stmpe_gpio->chip.dbg_show = stmpe_dbg_show; |
| 450 | |
Linus Walleij | 1dfb4a0 | 2015-01-13 08:00:29 +0100 | [diff] [blame] | 451 | of_property_read_u32(np, "st,norequest-mask", |
| 452 | &stmpe_gpio->norequest_mask); |
Linus Walleij | 96b2cca | 2016-09-27 15:59:12 -0700 | [diff] [blame] | 453 | if (stmpe_gpio->norequest_mask) |
| 454 | stmpe_gpio->chip.irq_need_valid_mask = true; |
Vipul Kumar Samar | 86605cf | 2012-11-26 17:06:51 +0530 | [diff] [blame] | 455 | |
Linus Walleij | 9e9dc7d | 2014-05-08 23:16:34 +0200 | [diff] [blame] | 456 | if (irq < 0) |
Chris Blair | 38040c8 | 2012-01-26 22:17:15 +0100 | [diff] [blame] | 457 | dev_info(&pdev->dev, |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 458 | "device configured in no-irq mode: " |
Chris Blair | 38040c8 | 2012-01-26 22:17:15 +0100 | [diff] [blame] | 459 | "irqs are not available\n"); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 460 | |
| 461 | ret = stmpe_enable(stmpe, STMPE_BLOCK_GPIO); |
| 462 | if (ret) |
Vasiliy Kulikov | 02bf074 | 2010-09-12 22:57:19 +0400 | [diff] [blame] | 463 | goto out_free; |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 464 | |
Linus Walleij | b03c04a | 2015-12-07 14:32:13 +0100 | [diff] [blame] | 465 | ret = gpiochip_add_data(&stmpe_gpio->chip, stmpe_gpio); |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 466 | if (ret) { |
| 467 | dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret); |
| 468 | goto out_disable; |
| 469 | } |
| 470 | |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 471 | if (irq > 0) { |
| 472 | ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, |
| 473 | stmpe_gpio_irq, IRQF_ONESHOT, |
| 474 | "stmpe-gpio", stmpe_gpio); |
Chris Blair | 38040c8 | 2012-01-26 22:17:15 +0100 | [diff] [blame] | 475 | if (ret) { |
| 476 | dev_err(&pdev->dev, "unable to get irq: %d\n", ret); |
Lee Jones | fc13d5a | 2012-12-10 10:07:54 +0000 | [diff] [blame] | 477 | goto out_disable; |
Chris Blair | 38040c8 | 2012-01-26 22:17:15 +0100 | [diff] [blame] | 478 | } |
Linus Walleij | 96b2cca | 2016-09-27 15:59:12 -0700 | [diff] [blame] | 479 | if (stmpe_gpio->norequest_mask) { |
| 480 | int i; |
| 481 | |
| 482 | /* Forbid unused lines to be mapped as IRQs */ |
| 483 | for (i = 0; i < sizeof(u32); i++) |
| 484 | if (stmpe_gpio->norequest_mask & BIT(i)) |
| 485 | clear_bit(i, stmpe_gpio->chip.irq_valid_mask); |
| 486 | } |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 487 | ret = gpiochip_irqchip_add_nested(&stmpe_gpio->chip, |
| 488 | &stmpe_gpio_irq_chip, |
| 489 | 0, |
| 490 | handle_simple_irq, |
| 491 | IRQ_TYPE_NONE); |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 492 | if (ret) { |
| 493 | dev_err(&pdev->dev, |
| 494 | "could not connect irqchip to gpiochip\n"); |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 495 | goto out_disable; |
Linus Walleij | fe44e70 | 2014-04-15 23:38:56 +0200 | [diff] [blame] | 496 | } |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 497 | |
Linus Walleij | d245b3f | 2016-11-24 10:57:25 +0100 | [diff] [blame] | 498 | gpiochip_set_nested_irqchip(&stmpe_gpio->chip, |
| 499 | &stmpe_gpio_irq_chip, |
| 500 | irq); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 501 | } |
| 502 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 503 | platform_set_drvdata(pdev, stmpe_gpio); |
| 504 | |
| 505 | return 0; |
| 506 | |
Vasiliy Kulikov | 02bf074 | 2010-09-12 22:57:19 +0400 | [diff] [blame] | 507 | out_disable: |
| 508 | stmpe_disable(stmpe, STMPE_BLOCK_GPIO); |
Linus Walleij | 3f97d5fc | 2014-09-26 14:19:52 +0200 | [diff] [blame] | 509 | gpiochip_remove(&stmpe_gpio->chip); |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 510 | out_free: |
| 511 | kfree(stmpe_gpio); |
| 512 | return ret; |
| 513 | } |
| 514 | |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 515 | static struct platform_driver stmpe_gpio_driver = { |
Paul Gortmaker | 3b52bb9 | 2016-05-09 19:59:56 -0400 | [diff] [blame] | 516 | .driver = { |
| 517 | .suppress_bind_attrs = true, |
| 518 | .name = "stmpe-gpio", |
Paul Gortmaker | 3b52bb9 | 2016-05-09 19:59:56 -0400 | [diff] [blame] | 519 | }, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 520 | .probe = stmpe_gpio_probe, |
Rabin Vincent | 03f822f | 2010-07-02 16:52:09 +0530 | [diff] [blame] | 521 | }; |
| 522 | |
| 523 | static int __init stmpe_gpio_init(void) |
| 524 | { |
| 525 | return platform_driver_register(&stmpe_gpio_driver); |
| 526 | } |
| 527 | subsys_initcall(stmpe_gpio_init); |