1 // SPDX-License-Identifier: GPL-2.0-only
2 /* MCP23S08 SPI GPIO driver */
4 #include <linux/mod_devicetable.h>
5 #include <linux/module.h>
6 #include <linux/property.h>
7 #include <linux/regmap.h>
8 #include <linux/spi/spi.h>
10 #include "pinctrl-mcp23s08.h"
12 #define MCP_MAX_DEV_PER_CS 8
15 * A given spi_device can represent up to eight mcp23sxx chips
16 * sharing the same chipselect but using different addresses
17 * (e.g. chips #0 and #3 might be populated, but not #1 or #2).
18 * Driver data holds all the per-chip data.
20 struct mcp23s08_driver_data {
22 struct mcp23s08 *mcp[8];
23 struct mcp23s08 chip[];
26 static int mcp23sxx_spi_write(void *context, const void *data, size_t count)
28 struct mcp23s08 *mcp = context;
29 struct spi_device *spi = to_spi_device(mcp->dev);
31 struct spi_transfer t[2] = { { .tx_buf = &mcp->addr, .len = 1, },
32 { .tx_buf = data, .len = count, }, };
35 spi_message_add_tail(&t[0], &m);
36 spi_message_add_tail(&t[1], &m);
38 return spi_sync(spi, &m);
41 static int mcp23sxx_spi_gather_write(void *context,
42 const void *reg, size_t reg_size,
43 const void *val, size_t val_size)
45 struct mcp23s08 *mcp = context;
46 struct spi_device *spi = to_spi_device(mcp->dev);
48 struct spi_transfer t[3] = { { .tx_buf = &mcp->addr, .len = 1, },
49 { .tx_buf = reg, .len = reg_size, },
50 { .tx_buf = val, .len = val_size, }, };
53 spi_message_add_tail(&t[0], &m);
54 spi_message_add_tail(&t[1], &m);
55 spi_message_add_tail(&t[2], &m);
57 return spi_sync(spi, &m);
60 static int mcp23sxx_spi_read(void *context, const void *reg, size_t reg_size,
61 void *val, size_t val_size)
63 struct mcp23s08 *mcp = context;
64 struct spi_device *spi = to_spi_device(mcp->dev);
70 tx[0] = mcp->addr | 0x01;
71 tx[1] = *((u8 *) reg);
73 return spi_write_then_read(spi, tx, sizeof(tx), val, val_size);
76 static const struct regmap_bus mcp23sxx_spi_regmap = {
77 .write = mcp23sxx_spi_write,
78 .gather_write = mcp23sxx_spi_gather_write,
79 .read = mcp23sxx_spi_read,
82 static int mcp23s08_spi_regmap_init(struct mcp23s08 *mcp, struct device *dev,
83 unsigned int addr, unsigned int type)
85 const struct regmap_config *config;
86 struct regmap_config *copy;
93 mcp->chip.label = devm_kasprintf(dev, GFP_KERNEL, "mcp23s08.%d", addr);
95 config = &mcp23x08_regmap;
96 name = devm_kasprintf(dev, GFP_KERNEL, "%d", addr);
101 mcp->chip.ngpio = 16;
102 mcp->chip.label = devm_kasprintf(dev, GFP_KERNEL, "mcp23s17.%d", addr);
104 config = &mcp23x17_regmap;
105 name = devm_kasprintf(dev, GFP_KERNEL, "%d", addr);
110 mcp->chip.ngpio = 16;
111 mcp->chip.label = "mcp23s18";
113 config = &mcp23x17_regmap;
118 dev_err(dev, "invalid device type (%d)\n", type);
122 copy = devm_kmemdup(dev, config, sizeof(*config), GFP_KERNEL);
128 mcp->regmap = devm_regmap_init(dev, &mcp23sxx_spi_regmap, mcp, copy);
129 if (IS_ERR(mcp->regmap))
130 dev_err(dev, "regmap init failed for %s\n", mcp->chip.label);
131 return PTR_ERR_OR_ZERO(mcp->regmap);
134 static int mcp23s08_probe(struct spi_device *spi)
136 struct device *dev = &spi->dev;
137 struct mcp23s08_driver_data *data;
138 unsigned long spi_present_mask;
141 unsigned int ngpio = 0;
147 match = device_get_match_data(dev);
149 type = (int)(uintptr_t)match;
151 type = spi_get_device_id(spi)->driver_data;
153 ret = device_property_read_u32(dev, "microchip,spi-present-mask", &v);
155 ret = device_property_read_u32(dev, "mcp,spi-present-mask", &v);
157 dev_err(dev, "missing spi-present-mask");
161 spi_present_mask = v;
163 if (!spi_present_mask || spi_present_mask >= BIT(MCP_MAX_DEV_PER_CS)) {
164 dev_err(dev, "invalid spi-present-mask");
168 chips = hweight_long(spi_present_mask);
170 data = devm_kzalloc(dev, struct_size(data, chip, chips), GFP_KERNEL);
174 spi_set_drvdata(spi, data);
176 for_each_set_bit(addr, &spi_present_mask, MCP_MAX_DEV_PER_CS) {
177 data->mcp[addr] = &data->chip[--chips];
178 data->mcp[addr]->irq = spi->irq;
180 ret = mcp23s08_spi_regmap_init(data->mcp[addr], dev, addr, type);
184 data->mcp[addr]->pinctrl_desc.name = devm_kasprintf(dev, GFP_KERNEL,
185 "mcp23xxx-pinctrl.%d",
187 if (!data->mcp[addr]->pinctrl_desc.name)
190 ret = mcp23s08_probe_one(data->mcp[addr], dev, 0x40 | (addr << 1), type, -1);
194 ngpio += data->mcp[addr]->chip.ngpio;
201 static const struct spi_device_id mcp23s08_ids[] = {
202 { "mcp23s08", MCP_TYPE_S08 },
203 { "mcp23s17", MCP_TYPE_S17 },
204 { "mcp23s18", MCP_TYPE_S18 },
207 MODULE_DEVICE_TABLE(spi, mcp23s08_ids);
209 static const struct of_device_id mcp23s08_spi_of_match[] = {
211 .compatible = "microchip,mcp23s08",
212 .data = (void *) MCP_TYPE_S08,
215 .compatible = "microchip,mcp23s17",
216 .data = (void *) MCP_TYPE_S17,
219 .compatible = "microchip,mcp23s18",
220 .data = (void *) MCP_TYPE_S18,
222 /* NOTE: The use of the mcp prefix is deprecated and will be removed. */
224 .compatible = "mcp,mcp23s08",
225 .data = (void *) MCP_TYPE_S08,
228 .compatible = "mcp,mcp23s17",
229 .data = (void *) MCP_TYPE_S17,
233 MODULE_DEVICE_TABLE(of, mcp23s08_spi_of_match);
235 static struct spi_driver mcp23s08_driver = {
236 .probe = mcp23s08_probe,
237 .id_table = mcp23s08_ids,
240 .of_match_table = mcp23s08_spi_of_match,
244 static int __init mcp23s08_spi_init(void)
246 return spi_register_driver(&mcp23s08_driver);
250 * Register after SPI postcore initcall and before
251 * subsys initcalls that may rely on these GPIOs.
253 subsys_initcall(mcp23s08_spi_init);
255 static void mcp23s08_spi_exit(void)
257 spi_unregister_driver(&mcp23s08_driver);
259 module_exit(mcp23s08_spi_exit);
261 MODULE_LICENSE("GPL");