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