blob: 695236636d05779a252368e8296e4df3ceff778d [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Sebastian Reicheld8f44942017-05-15 11:24:37 +02002/* MCP23S08 SPI/I2C GPIO driver */
David Brownelle58b9e22008-02-04 22:28:25 -08003
Andy Shevchenko7b04aaa2020-04-07 20:38:48 +03004#include <linux/bitops.h>
David Brownelle58b9e22008-02-04 22:28:25 -08005#include <linux/kernel.h>
6#include <linux/device.h>
David Brownelle58b9e22008-02-04 22:28:25 -08007#include <linux/mutex.h>
Andy Shevchenko1ac30db2020-04-07 20:38:47 +03008#include <linux/mod_devicetable.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -04009#include <linux/module.h>
Andy Shevchenko0f04a812020-04-07 20:38:49 +030010#include <linux/export.h>
Linus Walleij1c5fb662018-09-13 13:58:21 +020011#include <linux/gpio/driver.h>
Andreas Kaessens4e73bfa2021-06-10 15:24:37 +020012#include <linux/gpio/consumer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Peter Korsgaard0b7bb772011-03-09 17:56:30 +010014#include <asm/byteorder.h>
Lars Poeschel4e47f912014-01-16 11:44:15 +010015#include <linux/interrupt.h>
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010016#include <linux/regmap.h>
Sebastian Reichel82039d22017-05-15 11:24:26 +020017#include <linux/pinctrl/pinctrl.h>
18#include <linux/pinctrl/pinconf.h>
19#include <linux/pinctrl/pinconf-generic.h>
David Brownelle58b9e22008-02-04 22:28:25 -080020
Andy Shevchenko0f04a812020-04-07 20:38:49 +030021#include "pinctrl-mcp23s08.h"
David Brownelle58b9e22008-02-04 22:28:25 -080022
23/* Registers are all 8 bits wide.
24 *
25 * The mcp23s17 has twice as many bits, and can be configured to work
26 * with either 16 bit registers or with two adjacent 8 bit banks.
David Brownelle58b9e22008-02-04 22:28:25 -080027 */
28#define MCP_IODIR 0x00 /* init/reset: all ones */
29#define MCP_IPOL 0x01
30#define MCP_GPINTEN 0x02
31#define MCP_DEFVAL 0x03
32#define MCP_INTCON 0x04
33#define MCP_IOCON 0x05
Lars Poeschel4e47f912014-01-16 11:44:15 +010034# define IOCON_MIRROR (1 << 6)
David Brownelle58b9e22008-02-04 22:28:25 -080035# define IOCON_SEQOP (1 << 5)
36# define IOCON_HAEN (1 << 3)
37# define IOCON_ODR (1 << 2)
38# define IOCON_INTPOL (1 << 1)
Phil Reid35396992016-03-15 15:46:30 +080039# define IOCON_INTCC (1)
David Brownelle58b9e22008-02-04 22:28:25 -080040#define MCP_GPPU 0x06
41#define MCP_INTF 0x07
42#define MCP_INTCAP 0x08
43#define MCP_GPIO 0x09
44#define MCP_OLAT 0x0a
45
Sebastian Reichel8f389102017-05-15 11:24:28 +020046static const struct reg_default mcp23x08_defaults[] = {
47 {.reg = MCP_IODIR, .def = 0xff},
48 {.reg = MCP_IPOL, .def = 0x00},
49 {.reg = MCP_GPINTEN, .def = 0x00},
50 {.reg = MCP_DEFVAL, .def = 0x00},
51 {.reg = MCP_INTCON, .def = 0x00},
52 {.reg = MCP_IOCON, .def = 0x00},
53 {.reg = MCP_GPPU, .def = 0x00},
54 {.reg = MCP_OLAT, .def = 0x00},
55};
56
57static const struct regmap_range mcp23x08_volatile_range = {
58 .range_min = MCP_INTF,
59 .range_max = MCP_GPIO,
60};
61
62static const struct regmap_access_table mcp23x08_volatile_table = {
63 .yes_ranges = &mcp23x08_volatile_range,
64 .n_yes_ranges = 1,
65};
66
67static const struct regmap_range mcp23x08_precious_range = {
68 .range_min = MCP_GPIO,
69 .range_max = MCP_GPIO,
70};
71
72static const struct regmap_access_table mcp23x08_precious_table = {
73 .yes_ranges = &mcp23x08_precious_range,
74 .n_yes_ranges = 1,
75};
76
Andy Shevchenko0f04a812020-04-07 20:38:49 +030077const struct regmap_config mcp23x08_regmap = {
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010078 .reg_bits = 8,
79 .val_bits = 8,
80
81 .reg_stride = 1,
Sebastian Reichel8f389102017-05-15 11:24:28 +020082 .volatile_table = &mcp23x08_volatile_table,
83 .precious_table = &mcp23x08_precious_table,
84 .reg_defaults = mcp23x08_defaults,
85 .num_reg_defaults = ARRAY_SIZE(mcp23x08_defaults),
86 .cache_type = REGCACHE_FLAT,
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010087 .max_register = MCP_OLAT,
88};
Andy Shevchenko0f04a812020-04-07 20:38:49 +030089EXPORT_SYMBOL_GPL(mcp23x08_regmap);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +010090
Thomas Prestonb445f622020-08-28 22:32:25 +010091static const struct reg_default mcp23x17_defaults[] = {
Sebastian Reichel8f389102017-05-15 11:24:28 +020092 {.reg = MCP_IODIR << 1, .def = 0xffff},
93 {.reg = MCP_IPOL << 1, .def = 0x0000},
94 {.reg = MCP_GPINTEN << 1, .def = 0x0000},
95 {.reg = MCP_DEFVAL << 1, .def = 0x0000},
96 {.reg = MCP_INTCON << 1, .def = 0x0000},
97 {.reg = MCP_IOCON << 1, .def = 0x0000},
98 {.reg = MCP_GPPU << 1, .def = 0x0000},
99 {.reg = MCP_OLAT << 1, .def = 0x0000},
100};
101
Thomas Prestonb445f622020-08-28 22:32:25 +0100102static const struct regmap_range mcp23x17_volatile_range = {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200103 .range_min = MCP_INTF << 1,
104 .range_max = MCP_GPIO << 1,
105};
106
Thomas Prestonb445f622020-08-28 22:32:25 +0100107static const struct regmap_access_table mcp23x17_volatile_table = {
108 .yes_ranges = &mcp23x17_volatile_range,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200109 .n_yes_ranges = 1,
110};
111
Thomas Prestonb445f622020-08-28 22:32:25 +0100112static const struct regmap_range mcp23x17_precious_range = {
Thomas Prestonb9b7fb22020-08-28 22:32:26 +0100113 .range_min = MCP_INTCAP << 1,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200114 .range_max = MCP_GPIO << 1,
115};
116
Thomas Prestonb445f622020-08-28 22:32:25 +0100117static const struct regmap_access_table mcp23x17_precious_table = {
118 .yes_ranges = &mcp23x17_precious_range,
Sebastian Reichel8f389102017-05-15 11:24:28 +0200119 .n_yes_ranges = 1,
120};
121
Andy Shevchenko0f04a812020-04-07 20:38:49 +0300122const struct regmap_config mcp23x17_regmap = {
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100123 .reg_bits = 8,
124 .val_bits = 16,
125
126 .reg_stride = 2,
127 .max_register = MCP_OLAT << 1,
Thomas Prestonb445f622020-08-28 22:32:25 +0100128 .volatile_table = &mcp23x17_volatile_table,
129 .precious_table = &mcp23x17_precious_table,
130 .reg_defaults = mcp23x17_defaults,
131 .num_reg_defaults = ARRAY_SIZE(mcp23x17_defaults),
Sebastian Reichel8f389102017-05-15 11:24:28 +0200132 .cache_type = REGCACHE_FLAT,
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100133 .val_format_endian = REGMAP_ENDIAN_LITTLE,
134};
Andy Shevchenko0f04a812020-04-07 20:38:49 +0300135EXPORT_SYMBOL_GPL(mcp23x17_regmap);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100136
Sebastian Reichel82039d22017-05-15 11:24:26 +0200137static int mcp_read(struct mcp23s08 *mcp, unsigned int reg, unsigned int *val)
138{
139 return regmap_read(mcp->regmap, reg << mcp->reg_shift, val);
140}
141
142static int mcp_write(struct mcp23s08 *mcp, unsigned int reg, unsigned int val)
143{
144 return regmap_write(mcp->regmap, reg << mcp->reg_shift, val);
145}
146
Sebastian Reichel8f389102017-05-15 11:24:28 +0200147static int mcp_set_mask(struct mcp23s08 *mcp, unsigned int reg,
148 unsigned int mask, bool enabled)
Sebastian Reichel82039d22017-05-15 11:24:26 +0200149{
150 u16 val = enabled ? 0xffff : 0x0000;
Sebastian Reichel82039d22017-05-15 11:24:26 +0200151 return regmap_update_bits(mcp->regmap, reg << mcp->reg_shift,
152 mask, val);
153}
154
Sebastian Reichel8f389102017-05-15 11:24:28 +0200155static int mcp_set_bit(struct mcp23s08 *mcp, unsigned int reg,
156 unsigned int pin, bool enabled)
Sebastian Reichel82039d22017-05-15 11:24:26 +0200157{
Sebastian Reichel8f389102017-05-15 11:24:28 +0200158 u16 mask = BIT(pin);
159 return mcp_set_mask(mcp, reg, mask, enabled);
Sebastian Reichel82039d22017-05-15 11:24:26 +0200160}
161
162static const struct pinctrl_pin_desc mcp23x08_pins[] = {
163 PINCTRL_PIN(0, "gpio0"),
164 PINCTRL_PIN(1, "gpio1"),
165 PINCTRL_PIN(2, "gpio2"),
166 PINCTRL_PIN(3, "gpio3"),
167 PINCTRL_PIN(4, "gpio4"),
168 PINCTRL_PIN(5, "gpio5"),
169 PINCTRL_PIN(6, "gpio6"),
170 PINCTRL_PIN(7, "gpio7"),
171};
172
173static const struct pinctrl_pin_desc mcp23x17_pins[] = {
174 PINCTRL_PIN(0, "gpio0"),
175 PINCTRL_PIN(1, "gpio1"),
176 PINCTRL_PIN(2, "gpio2"),
177 PINCTRL_PIN(3, "gpio3"),
178 PINCTRL_PIN(4, "gpio4"),
179 PINCTRL_PIN(5, "gpio5"),
180 PINCTRL_PIN(6, "gpio6"),
181 PINCTRL_PIN(7, "gpio7"),
182 PINCTRL_PIN(8, "gpio8"),
183 PINCTRL_PIN(9, "gpio9"),
184 PINCTRL_PIN(10, "gpio10"),
185 PINCTRL_PIN(11, "gpio11"),
186 PINCTRL_PIN(12, "gpio12"),
187 PINCTRL_PIN(13, "gpio13"),
188 PINCTRL_PIN(14, "gpio14"),
189 PINCTRL_PIN(15, "gpio15"),
190};
191
192static int mcp_pinctrl_get_groups_count(struct pinctrl_dev *pctldev)
193{
194 return 0;
195}
196
197static const char *mcp_pinctrl_get_group_name(struct pinctrl_dev *pctldev,
198 unsigned int group)
199{
200 return NULL;
201}
202
203static int mcp_pinctrl_get_group_pins(struct pinctrl_dev *pctldev,
204 unsigned int group,
205 const unsigned int **pins,
206 unsigned int *num_pins)
207{
208 return -ENOTSUPP;
209}
210
211static const struct pinctrl_ops mcp_pinctrl_ops = {
212 .get_groups_count = mcp_pinctrl_get_groups_count,
213 .get_group_name = mcp_pinctrl_get_group_name,
214 .get_group_pins = mcp_pinctrl_get_group_pins,
215#ifdef CONFIG_OF
216 .dt_node_to_map = pinconf_generic_dt_node_to_map_pin,
217 .dt_free_map = pinconf_generic_dt_free_map,
218#endif
219};
220
221static int mcp_pinconf_get(struct pinctrl_dev *pctldev, unsigned int pin,
222 unsigned long *config)
223{
224 struct mcp23s08 *mcp = pinctrl_dev_get_drvdata(pctldev);
225 enum pin_config_param param = pinconf_to_config_param(*config);
226 unsigned int data, status;
227 int ret;
228
229 switch (param) {
230 case PIN_CONFIG_BIAS_PULL_UP:
231 ret = mcp_read(mcp, MCP_GPPU, &data);
232 if (ret < 0)
233 return ret;
234 status = (data & BIT(pin)) ? 1 : 0;
235 break;
236 default:
Sebastian Reichel82039d22017-05-15 11:24:26 +0200237 return -ENOTSUPP;
238 }
239
240 *config = 0;
241
242 return status ? 0 : -EINVAL;
243}
244
245static int mcp_pinconf_set(struct pinctrl_dev *pctldev, unsigned int pin,
246 unsigned long *configs, unsigned int num_configs)
247{
248 struct mcp23s08 *mcp = pinctrl_dev_get_drvdata(pctldev);
249 enum pin_config_param param;
Phil Reid2a7893c2017-10-06 13:08:11 +0800250 u32 arg;
Sebastian Reichel82039d22017-05-15 11:24:26 +0200251 int ret = 0;
252 int i;
253
254 for (i = 0; i < num_configs; i++) {
255 param = pinconf_to_config_param(configs[i]);
256 arg = pinconf_to_config_argument(configs[i]);
257
258 switch (param) {
259 case PIN_CONFIG_BIAS_PULL_UP:
Sebastian Reichel82039d22017-05-15 11:24:26 +0200260 ret = mcp_set_bit(mcp, MCP_GPPU, pin, arg);
261 break;
262 default:
Jan Kundráte0e31692019-03-07 14:16:51 +0100263 dev_dbg(mcp->dev, "Invalid config param %04x\n", param);
Sebastian Reichel82039d22017-05-15 11:24:26 +0200264 return -ENOTSUPP;
265 }
266 }
267
268 return ret;
269}
270
271static const struct pinconf_ops mcp_pinconf_ops = {
272 .pin_config_get = mcp_pinconf_get,
273 .pin_config_set = mcp_pinconf_set,
274 .is_generic = true,
275};
276
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100277/*----------------------------------------------------------------------*/
278
David Brownelle58b9e22008-02-04 22:28:25 -0800279static int mcp23s08_direction_input(struct gpio_chip *chip, unsigned offset)
280{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100281 struct mcp23s08 *mcp = gpiochip_get_data(chip);
David Brownelle58b9e22008-02-04 22:28:25 -0800282 int status;
283
284 mutex_lock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200285 status = mcp_set_bit(mcp, MCP_IODIR, offset, true);
David Brownelle58b9e22008-02-04 22:28:25 -0800286 mutex_unlock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200287
David Brownelle58b9e22008-02-04 22:28:25 -0800288 return status;
289}
290
291static int mcp23s08_get(struct gpio_chip *chip, unsigned offset)
292{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100293 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100294 int status, ret;
David Brownelle58b9e22008-02-04 22:28:25 -0800295
296 mutex_lock(&mcp->lock);
297
298 /* REVISIT reading this clears any IRQ ... */
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100299 ret = mcp_read(mcp, MCP_GPIO, &status);
300 if (ret < 0)
David Brownelle58b9e22008-02-04 22:28:25 -0800301 status = 0;
Dmitry Mastykin59861702017-10-18 17:21:02 +0300302 else {
303 mcp->cached_gpio = status;
David Brownelle58b9e22008-02-04 22:28:25 -0800304 status = !!(status & (1 << offset));
Dmitry Mastykin59861702017-10-18 17:21:02 +0300305 }
Sebastian Reichel8f389102017-05-15 11:24:28 +0200306
David Brownelle58b9e22008-02-04 22:28:25 -0800307 mutex_unlock(&mcp->lock);
308 return status;
309}
310
Sebastian Reichel8f389102017-05-15 11:24:28 +0200311static int __mcp23s08_set(struct mcp23s08 *mcp, unsigned mask, bool value)
David Brownelle58b9e22008-02-04 22:28:25 -0800312{
Sebastian Reichel8f389102017-05-15 11:24:28 +0200313 return mcp_set_mask(mcp, MCP_OLAT, mask, value);
David Brownelle58b9e22008-02-04 22:28:25 -0800314}
315
316static void mcp23s08_set(struct gpio_chip *chip, unsigned offset, int value)
317{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100318 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200319 unsigned mask = BIT(offset);
David Brownelle58b9e22008-02-04 22:28:25 -0800320
321 mutex_lock(&mcp->lock);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200322 __mcp23s08_set(mcp, mask, !!value);
David Brownelle58b9e22008-02-04 22:28:25 -0800323 mutex_unlock(&mcp->lock);
324}
325
326static int
327mcp23s08_direction_output(struct gpio_chip *chip, unsigned offset, int value)
328{
Linus Walleij9e03cf02015-12-07 10:09:36 +0100329 struct mcp23s08 *mcp = gpiochip_get_data(chip);
Sebastian Reichel8f389102017-05-15 11:24:28 +0200330 unsigned mask = BIT(offset);
David Brownelle58b9e22008-02-04 22:28:25 -0800331 int status;
332
333 mutex_lock(&mcp->lock);
334 status = __mcp23s08_set(mcp, mask, value);
335 if (status == 0) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200336 status = mcp_set_mask(mcp, MCP_IODIR, mask, false);
David Brownelle58b9e22008-02-04 22:28:25 -0800337 }
338 mutex_unlock(&mcp->lock);
339 return status;
340}
341
342/*----------------------------------------------------------------------*/
Lars Poeschel4e47f912014-01-16 11:44:15 +0100343static irqreturn_t mcp23s08_irq(int irq, void *data)
344{
345 struct mcp23s08 *mcp = data;
Sebastian Reichel8f389102017-05-15 11:24:28 +0200346 int intcap, intcon, intf, i, gpio, gpio_orig, intcap_mask, defval;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100347 unsigned int child_irq;
Robert Middleton2cd29f22017-03-15 16:56:47 -0400348 bool intf_set, intcap_changed, gpio_bit_changed,
349 defval_changed, gpio_set;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100350
351 mutex_lock(&mcp->lock);
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100352 if (mcp_read(mcp, MCP_INTF, &intf))
353 goto unlock;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100354
Radim Pavlik897120d2021-06-01 10:48:18 +0000355 if (intf == 0) {
356 /* There is no interrupt pending */
Zou Wei884af722021-06-08 14:34:08 +0800357 goto unlock;
Radim Pavlik897120d2021-06-01 10:48:18 +0000358 }
359
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100360 if (mcp_read(mcp, MCP_INTCAP, &intcap))
361 goto unlock;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100362
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100363 if (mcp_read(mcp, MCP_INTCON, &intcon))
364 goto unlock;
Sebastian Reichel8f389102017-05-15 11:24:28 +0200365
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100366 if (mcp_read(mcp, MCP_DEFVAL, &defval))
367 goto unlock;
Robert Middleton2cd29f22017-03-15 16:56:47 -0400368
369 /* This clears the interrupt(configurable on S18) */
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100370 if (mcp_read(mcp, MCP_GPIO, &gpio))
371 goto unlock;
372
Sebastian Reichel8f389102017-05-15 11:24:28 +0200373 gpio_orig = mcp->cached_gpio;
374 mcp->cached_gpio = gpio;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100375 mutex_unlock(&mcp->lock);
376
Robert Middleton2cd29f22017-03-15 16:56:47 -0400377 dev_dbg(mcp->chip.parent,
378 "intcap 0x%04X intf 0x%04X gpio_orig 0x%04X gpio 0x%04X\n",
379 intcap, intf, gpio_orig, gpio);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100380
381 for (i = 0; i < mcp->chip.ngpio; i++) {
Robert Middleton2cd29f22017-03-15 16:56:47 -0400382 /* We must check all of the inputs on the chip,
383 * otherwise we may not notice a change on >=2 pins.
384 *
385 * On at least the mcp23s17, INTCAP is only updated
386 * one byte at a time(INTCAPA and INTCAPB are
387 * not written to at the same time - only on a per-bank
388 * basis).
389 *
390 * INTF only contains the single bit that caused the
391 * interrupt per-bank. On the mcp23s17, there is
392 * INTFA and INTFB. If two pins are changed on the A
393 * side at the same time, INTF will only have one bit
394 * set. If one pin on the A side and one pin on the B
395 * side are changed at the same time, INTF will have
396 * two bits set. Thus, INTF can't be the only check
397 * to see if the input has changed.
398 */
399
Sebastian Reichel8f389102017-05-15 11:24:28 +0200400 intf_set = intf & BIT(i);
Robert Middleton2cd29f22017-03-15 16:56:47 -0400401 if (i < 8 && intf_set)
402 intcap_mask = 0x00FF;
403 else if (i >= 8 && intf_set)
404 intcap_mask = 0xFF00;
405 else
406 intcap_mask = 0x00;
407
408 intcap_changed = (intcap_mask &
Sebastian Reichel8f389102017-05-15 11:24:28 +0200409 (intcap & BIT(i))) !=
Robert Middleton2cd29f22017-03-15 16:56:47 -0400410 (intcap_mask & (BIT(i) & gpio_orig));
Sebastian Reichel8f389102017-05-15 11:24:28 +0200411 gpio_set = BIT(i) & gpio;
Robert Middleton2cd29f22017-03-15 16:56:47 -0400412 gpio_bit_changed = (BIT(i) & gpio_orig) !=
Sebastian Reichel8f389102017-05-15 11:24:28 +0200413 (BIT(i) & gpio);
414 defval_changed = (BIT(i) & intcon) &&
415 ((BIT(i) & gpio) !=
416 (BIT(i) & defval));
Robert Middleton2cd29f22017-03-15 16:56:47 -0400417
418 if (((gpio_bit_changed || intcap_changed) &&
419 (BIT(i) & mcp->irq_rise) && gpio_set) ||
420 ((gpio_bit_changed || intcap_changed) &&
421 (BIT(i) & mcp->irq_fall) && !gpio_set) ||
422 defval_changed) {
Thierry Redingf0fbe7b2017-11-07 19:15:47 +0100423 child_irq = irq_find_mapping(mcp->chip.irq.domain, i);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100424 handle_nested_irq(child_irq);
425 }
426 }
427
428 return IRQ_HANDLED;
Markus Elfring7f6f50d2017-10-30 16:03:12 +0100429
430unlock:
431 mutex_unlock(&mcp->lock);
432 return IRQ_HANDLED;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100433}
434
Lars Poeschel4e47f912014-01-16 11:44:15 +0100435static void mcp23s08_irq_mask(struct irq_data *data)
436{
Phil Reiddad3d272016-03-18 16:07:06 +0800437 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
438 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100439 unsigned int pos = data->hwirq;
440
Sebastian Reichel8f389102017-05-15 11:24:28 +0200441 mcp_set_bit(mcp, MCP_GPINTEN, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100442}
443
444static void mcp23s08_irq_unmask(struct irq_data *data)
445{
Phil Reiddad3d272016-03-18 16:07:06 +0800446 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
447 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100448 unsigned int pos = data->hwirq;
449
Sebastian Reichel8f389102017-05-15 11:24:28 +0200450 mcp_set_bit(mcp, MCP_GPINTEN, pos, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100451}
452
453static int mcp23s08_irq_set_type(struct irq_data *data, unsigned int type)
454{
Phil Reiddad3d272016-03-18 16:07:06 +0800455 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
456 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100457 unsigned int pos = data->hwirq;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100458
459 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200460 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100461 mcp->irq_rise |= BIT(pos);
462 mcp->irq_fall |= BIT(pos);
463 } else if (type & IRQ_TYPE_EDGE_RISING) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200464 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100465 mcp->irq_rise |= BIT(pos);
466 mcp->irq_fall &= ~BIT(pos);
467 } else if (type & IRQ_TYPE_EDGE_FALLING) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200468 mcp_set_bit(mcp, MCP_INTCON, pos, false);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100469 mcp->irq_rise &= ~BIT(pos);
470 mcp->irq_fall |= BIT(pos);
Alexander Stein16fe1ad2016-03-23 18:01:27 +0100471 } else if (type & IRQ_TYPE_LEVEL_HIGH) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200472 mcp_set_bit(mcp, MCP_INTCON, pos, true);
473 mcp_set_bit(mcp, MCP_DEFVAL, pos, false);
Alexander Stein16fe1ad2016-03-23 18:01:27 +0100474 } else if (type & IRQ_TYPE_LEVEL_LOW) {
Sebastian Reichel8f389102017-05-15 11:24:28 +0200475 mcp_set_bit(mcp, MCP_INTCON, pos, true);
476 mcp_set_bit(mcp, MCP_DEFVAL, pos, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100477 } else
478 return -EINVAL;
479
Andy Shevchenko88af89b2020-04-07 20:38:46 +0300480 return 0;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100481}
482
483static void mcp23s08_irq_bus_lock(struct irq_data *data)
484{
Phil Reiddad3d272016-03-18 16:07:06 +0800485 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
486 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100487
Sebastian Reichel8f389102017-05-15 11:24:28 +0200488 mutex_lock(&mcp->lock);
489 regcache_cache_only(mcp->regmap, true);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100490}
491
492static void mcp23s08_irq_bus_unlock(struct irq_data *data)
493{
Phil Reiddad3d272016-03-18 16:07:06 +0800494 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
495 struct mcp23s08 *mcp = gpiochip_get_data(gc);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100496
Sebastian Reichel8f389102017-05-15 11:24:28 +0200497 regcache_cache_only(mcp->regmap, false);
498 regcache_sync(mcp->regmap);
499
Lars Poeschel4e47f912014-01-16 11:44:15 +0100500 mutex_unlock(&mcp->lock);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100501}
502
Lars Poeschel4e47f912014-01-16 11:44:15 +0100503static int mcp23s08_irq_setup(struct mcp23s08 *mcp)
504{
505 struct gpio_chip *chip = &mcp->chip;
Phil Reiddad3d272016-03-18 16:07:06 +0800506 int err;
Alexander Steina4e63552014-12-01 08:26:00 +0100507 unsigned long irqflags = IRQF_ONESHOT | IRQF_SHARED;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100508
Alexander Steina4e63552014-12-01 08:26:00 +0100509 if (mcp->irq_active_high)
510 irqflags |= IRQF_TRIGGER_HIGH;
511 else
512 irqflags |= IRQF_TRIGGER_LOW;
513
Linus Walleij58383c782015-11-04 09:56:26 +0100514 err = devm_request_threaded_irq(chip->parent, mcp->irq, NULL,
515 mcp23s08_irq,
516 irqflags, dev_name(chip->parent), mcp);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100517 if (err != 0) {
Linus Walleij58383c782015-11-04 09:56:26 +0100518 dev_err(chip->parent, "unable to request IRQ#%d: %d\n",
Lars Poeschel4e47f912014-01-16 11:44:15 +0100519 mcp->irq, err);
520 return err;
521 }
522
Marco Felschf259f892018-10-02 10:06:46 +0200523 return 0;
524}
525
Lars Poeschel4e47f912014-01-16 11:44:15 +0100526/*----------------------------------------------------------------------*/
David Brownelle58b9e22008-02-04 22:28:25 -0800527
Andy Shevchenko0f04a812020-04-07 20:38:49 +0300528int mcp23s08_probe_one(struct mcp23s08 *mcp, struct device *dev,
529 unsigned int addr, unsigned int type, unsigned int base)
David Brownelle58b9e22008-02-04 22:28:25 -0800530{
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100531 int status, ret;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100532 bool mirror = false;
Phil Reidfa2b7fa2018-02-19 17:25:20 +0800533 bool open_drain = false;
David Brownelle58b9e22008-02-04 22:28:25 -0800534
David Brownelle58b9e22008-02-04 22:28:25 -0800535 mutex_init(&mcp->lock);
536
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100537 mcp->dev = dev;
Peter Korsgaardd62b98f2011-07-15 10:25:31 +0200538 mcp->addr = addr;
Andy Shevchenko84d02e72020-04-07 20:38:42 +0300539
Alexander Steina4e63552014-12-01 08:26:00 +0100540 mcp->irq_active_high = false;
Andy Shevchenko84d02e72020-04-07 20:38:42 +0300541 mcp->irq_chip.name = dev_name(dev);
542 mcp->irq_chip.irq_mask = mcp23s08_irq_mask;
543 mcp->irq_chip.irq_unmask = mcp23s08_irq_unmask;
544 mcp->irq_chip.irq_set_type = mcp23s08_irq_set_type;
545 mcp->irq_chip.irq_bus_lock = mcp23s08_irq_bus_lock;
546 mcp->irq_chip.irq_bus_sync_unlock = mcp23s08_irq_bus_unlock;
David Brownelle58b9e22008-02-04 22:28:25 -0800547
David Brownelle58b9e22008-02-04 22:28:25 -0800548 mcp->chip.direction_input = mcp23s08_direction_input;
549 mcp->chip.get = mcp23s08_get;
550 mcp->chip.direction_output = mcp23s08_direction_output;
551 mcp->chip.set = mcp23s08_set;
Linus Walleij60f749f2016-09-07 23:13:20 +0200552#ifdef CONFIG_OF_GPIO
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200553 mcp->chip.of_gpio_n_cells = 2;
Lars Poeschel97ddb1c2013-04-04 12:02:02 +0200554#endif
David Brownelle58b9e22008-02-04 22:28:25 -0800555
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200556 mcp->chip.base = base;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100557 mcp->chip.can_sleep = true;
Linus Walleij58383c782015-11-04 09:56:26 +0100558 mcp->chip.parent = dev;
Guennadi Liakhovetskid72cbed2008-04-28 02:14:45 -0700559 mcp->chip.owner = THIS_MODULE;
David Brownelle58b9e22008-02-04 22:28:25 -0800560
Andreas Kaessens4e73bfa2021-06-10 15:24:37 +0200561 mcp->reset_gpio = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_LOW);
562
David Brownell8f1cc3b2008-07-25 01:46:09 -0700563 /* verify MCP_IOCON.SEQOP = 0, so sequential reads work,
564 * and MCP_IOCON.HAEN = 1, so we work with all chips.
565 */
Lars Poeschel4e47f912014-01-16 11:44:15 +0100566
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100567 ret = mcp_read(mcp, MCP_IOCON, &status);
568 if (ret < 0)
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300569 return dev_err_probe(dev, ret, "can't identify chip %d\n", addr);
Lars Poeschel4e47f912014-01-16 11:44:15 +0100570
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200571 mcp->irq_controller =
572 device_property_read_bool(dev, "interrupt-controller");
Alexander Steina4e63552014-12-01 08:26:00 +0100573 if (mcp->irq && mcp->irq_controller) {
Linus Walleij170680a2014-12-12 11:22:11 +0100574 mcp->irq_active_high =
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200575 device_property_read_bool(dev,
Linus Walleij170680a2014-12-12 11:22:11 +0100576 "microchip,irq-active-high");
Lars Poeschel4e47f912014-01-16 11:44:15 +0100577
Sebastian Reichel5b1a7e82017-05-15 11:24:35 +0200578 mirror = device_property_read_bool(dev, "microchip,irq-mirror");
Phil Reidfa2b7fa2018-02-19 17:25:20 +0800579 open_drain = device_property_read_bool(dev, "drive-open-drain");
Alexander Steina4e63552014-12-01 08:26:00 +0100580 }
581
582 if ((status & IOCON_SEQOP) || !(status & IOCON_HAEN) || mirror ||
Phil Reidfa2b7fa2018-02-19 17:25:20 +0800583 mcp->irq_active_high || open_drain) {
Peter Korsgaard0b7bb772011-03-09 17:56:30 +0100584 /* mcp23s17 has IOCON twice, make sure they are in sync */
585 status &= ~(IOCON_SEQOP | (IOCON_SEQOP << 8));
586 status |= IOCON_HAEN | (IOCON_HAEN << 8);
Alexander Steina4e63552014-12-01 08:26:00 +0100587 if (mcp->irq_active_high)
588 status |= IOCON_INTPOL | (IOCON_INTPOL << 8);
589 else
590 status &= ~(IOCON_INTPOL | (IOCON_INTPOL << 8));
591
Lars Poeschel4e47f912014-01-16 11:44:15 +0100592 if (mirror)
593 status |= IOCON_MIRROR | (IOCON_MIRROR << 8);
594
Phil Reidfa2b7fa2018-02-19 17:25:20 +0800595 if (open_drain)
596 status |= IOCON_ODR | (IOCON_ODR << 8);
597
Phil Reidff0f2ce2017-10-06 13:08:07 +0800598 if (type == MCP_TYPE_S18 || type == MCP_TYPE_018)
Phil Reid35396992016-03-15 15:46:30 +0800599 status |= IOCON_INTCC | (IOCON_INTCC << 8);
600
Sebastian Reichel3d84fdb2017-01-27 15:47:37 +0100601 ret = mcp_write(mcp, MCP_IOCON, status);
602 if (ret < 0)
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300603 return dev_err_probe(dev, ret, "can't write IOCON %d\n", addr);
David Brownelle58b9e22008-02-04 22:28:25 -0800604 }
605
Lars Poeschel4e47f912014-01-16 11:44:15 +0100606 if (mcp->irq && mcp->irq_controller) {
Linus Walleij57597e12020-07-21 14:52:23 +0200607 struct gpio_irq_chip *girq = &mcp->chip.irq;
608
609 girq->chip = &mcp->irq_chip;
610 /* This will let us handle the parent IRQ in the driver */
611 girq->parent_handler = NULL;
612 girq->num_parents = 0;
613 girq->parents = NULL;
614 girq->default_type = IRQ_TYPE_NONE;
615 girq->handler = handle_simple_irq;
616 girq->threaded = true;
Lars Poeschel4e47f912014-01-16 11:44:15 +0100617 }
Sebastian Reichel82039d22017-05-15 11:24:26 +0200618
Linus Walleij57597e12020-07-21 14:52:23 +0200619 ret = devm_gpiochip_add_data(dev, &mcp->chip, mcp);
620 if (ret < 0)
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300621 return dev_err_probe(dev, ret, "can't add GPIO chip\n");
Linus Walleij57597e12020-07-21 14:52:23 +0200622
Sebastian Reichel82039d22017-05-15 11:24:26 +0200623 mcp->pinctrl_desc.pctlops = &mcp_pinctrl_ops;
624 mcp->pinctrl_desc.confops = &mcp_pinconf_ops;
625 mcp->pinctrl_desc.npins = mcp->chip.ngpio;
626 if (mcp->pinctrl_desc.npins == 8)
627 mcp->pinctrl_desc.pins = mcp23x08_pins;
628 else if (mcp->pinctrl_desc.npins == 16)
629 mcp->pinctrl_desc.pins = mcp23x17_pins;
630 mcp->pinctrl_desc.owner = THIS_MODULE;
631
632 mcp->pctldev = devm_pinctrl_register(dev, &mcp->pinctrl_desc, mcp);
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300633 if (IS_ERR(mcp->pctldev))
634 return dev_err_probe(dev, PTR_ERR(mcp->pctldev), "can't register controller\n");
635
636 if (mcp->irq) {
637 ret = mcp23s08_irq_setup(mcp);
638 if (ret)
639 return dev_err_probe(dev, ret, "can't setup IRQ\n");
Sebastian Reichel82039d22017-05-15 11:24:26 +0200640 }
641
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300642 return 0;
David Brownell8f1cc3b2008-07-25 01:46:09 -0700643}
Andy Shevchenko0f04a812020-04-07 20:38:49 +0300644EXPORT_SYMBOL_GPL(mcp23s08_probe_one);
Andy Shevchenkoebc25992020-08-28 13:32:35 +0300645
Jason Yan7045e672020-04-17 17:21:25 +0800646MODULE_LICENSE("GPL");