Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 1 | /* |
| 2 | * I2C multiplexer |
| 3 | * |
| 4 | * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it> |
| 5 | * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it> |
| 6 | * |
| 7 | * This module supports the PCA954x series of I2C multiplexer/switch chips |
| 8 | * made by Philips Semiconductors. |
| 9 | * This includes the: |
| 10 | * PCA9540, PCA9542, PCA9543, PCA9544, PCA9545, PCA9546, PCA9547 |
| 11 | * and PCA9548. |
| 12 | * |
| 13 | * These chips are all controlled via the I2C bus itself, and all have a |
| 14 | * single 8-bit register. The upstream "parent" bus fans out to two, |
| 15 | * four, or eight downstream busses or channels; which of these |
| 16 | * are selected is determined by the chip type and register contents. A |
| 17 | * mux can select only one sub-bus at a time; a switch can select any |
| 18 | * combination simultaneously. |
| 19 | * |
| 20 | * Based on: |
| 21 | * pca954x.c from Kumar Gala <galak@kernel.crashing.org> |
| 22 | * Copyright (C) 2006 |
| 23 | * |
| 24 | * Based on: |
| 25 | * pca954x.c from Ken Harrenstien |
| 26 | * Copyright (C) 2004 Google, Inc. (Ken Harrenstien) |
| 27 | * |
| 28 | * Based on: |
| 29 | * i2c-virtual_cb.c from Brian Kuschak <bkuschak@yahoo.com> |
| 30 | * and |
Jean Delvare | 7c81c60f | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 31 | * pca9540.c from Jean Delvare <jdelvare@suse.de>. |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 32 | * |
| 33 | * This file is licensed under the terms of the GNU General Public |
| 34 | * License version 2. This program is licensed "as is" without any |
| 35 | * warranty of any kind, whether express or implied. |
| 36 | */ |
| 37 | |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 38 | #include <linux/acpi.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 39 | #include <linux/device.h> |
Laurent Pinchart | 642653d | 2014-06-04 18:56:32 +0200 | [diff] [blame] | 40 | #include <linux/gpio/consumer.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 41 | #include <linux/i2c.h> |
| 42 | #include <linux/i2c-mux.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 43 | #include <linux/i2c/pca954x.h> |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 44 | #include <linux/interrupt.h> |
| 45 | #include <linux/irq.h> |
Laurent Pinchart | 4b9b007 | 2013-11-29 01:51:22 +0100 | [diff] [blame] | 46 | #include <linux/module.h> |
Alexander Sverdlin | 72f0271 | 2015-01-23 16:41:29 +0100 | [diff] [blame] | 47 | #include <linux/of.h> |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 48 | #include <linux/of_device.h> |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 49 | #include <linux/of_irq.h> |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 50 | #include <linux/pm.h> |
Laurent Pinchart | 4b9b007 | 2013-11-29 01:51:22 +0100 | [diff] [blame] | 51 | #include <linux/slab.h> |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 52 | #include <linux/spinlock.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 53 | |
| 54 | #define PCA954X_MAX_NCHANS 8 |
| 55 | |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 56 | #define PCA954X_IRQ_OFFSET 4 |
| 57 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 58 | enum pca_type { |
| 59 | pca_9540, |
| 60 | pca_9542, |
| 61 | pca_9543, |
| 62 | pca_9544, |
| 63 | pca_9545, |
| 64 | pca_9546, |
| 65 | pca_9547, |
| 66 | pca_9548, |
| 67 | }; |
| 68 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 69 | struct chip_desc { |
| 70 | u8 nchans; |
| 71 | u8 enable; /* used for muxes only */ |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 72 | u8 has_irq; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 73 | enum muxtype { |
| 74 | pca954x_ismux = 0, |
| 75 | pca954x_isswi |
| 76 | } muxtype; |
| 77 | }; |
| 78 | |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 79 | struct pca954x { |
| 80 | const struct chip_desc *chip; |
| 81 | |
| 82 | u8 last_chan; /* last register value */ |
| 83 | u8 deselect; |
| 84 | struct i2c_client *client; |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 85 | |
| 86 | struct irq_domain *irq; |
| 87 | unsigned int irq_mask; |
| 88 | spinlock_t lock; |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 89 | }; |
| 90 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 91 | /* Provide specs for the PCA954x types we know about */ |
| 92 | static const struct chip_desc chips[] = { |
| 93 | [pca_9540] = { |
| 94 | .nchans = 2, |
| 95 | .enable = 0x4, |
| 96 | .muxtype = pca954x_ismux, |
| 97 | }, |
Phil Reid | f8251f1 | 2017-01-25 09:31:06 +0800 | [diff] [blame] | 98 | [pca_9542] = { |
| 99 | .nchans = 2, |
| 100 | .enable = 0x4, |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 101 | .has_irq = 1, |
Phil Reid | f8251f1 | 2017-01-25 09:31:06 +0800 | [diff] [blame] | 102 | .muxtype = pca954x_ismux, |
| 103 | }, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 104 | [pca_9543] = { |
| 105 | .nchans = 2, |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 106 | .has_irq = 1, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 107 | .muxtype = pca954x_isswi, |
| 108 | }, |
| 109 | [pca_9544] = { |
| 110 | .nchans = 4, |
| 111 | .enable = 0x4, |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 112 | .has_irq = 1, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 113 | .muxtype = pca954x_ismux, |
| 114 | }, |
| 115 | [pca_9545] = { |
| 116 | .nchans = 4, |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 117 | .has_irq = 1, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 118 | .muxtype = pca954x_isswi, |
| 119 | }, |
| 120 | [pca_9547] = { |
| 121 | .nchans = 8, |
| 122 | .enable = 0x8, |
| 123 | .muxtype = pca954x_ismux, |
| 124 | }, |
| 125 | [pca_9548] = { |
| 126 | .nchans = 8, |
| 127 | .muxtype = pca954x_isswi, |
| 128 | }, |
| 129 | }; |
| 130 | |
| 131 | static const struct i2c_device_id pca954x_id[] = { |
| 132 | { "pca9540", pca_9540 }, |
Phil Reid | f8251f1 | 2017-01-25 09:31:06 +0800 | [diff] [blame] | 133 | { "pca9542", pca_9542 }, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 134 | { "pca9543", pca_9543 }, |
| 135 | { "pca9544", pca_9544 }, |
| 136 | { "pca9545", pca_9545 }, |
| 137 | { "pca9546", pca_9545 }, |
| 138 | { "pca9547", pca_9547 }, |
| 139 | { "pca9548", pca_9548 }, |
| 140 | { } |
| 141 | }; |
| 142 | MODULE_DEVICE_TABLE(i2c, pca954x_id); |
| 143 | |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 144 | #ifdef CONFIG_ACPI |
| 145 | static const struct acpi_device_id pca954x_acpi_ids[] = { |
| 146 | { .id = "PCA9540", .driver_data = pca_9540 }, |
Phil Reid | f8251f1 | 2017-01-25 09:31:06 +0800 | [diff] [blame] | 147 | { .id = "PCA9542", .driver_data = pca_9542 }, |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 148 | { .id = "PCA9543", .driver_data = pca_9543 }, |
| 149 | { .id = "PCA9544", .driver_data = pca_9544 }, |
| 150 | { .id = "PCA9545", .driver_data = pca_9545 }, |
| 151 | { .id = "PCA9546", .driver_data = pca_9545 }, |
| 152 | { .id = "PCA9547", .driver_data = pca_9547 }, |
| 153 | { .id = "PCA9548", .driver_data = pca_9548 }, |
| 154 | { } |
| 155 | }; |
| 156 | MODULE_DEVICE_TABLE(acpi, pca954x_acpi_ids); |
| 157 | #endif |
| 158 | |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 159 | #ifdef CONFIG_OF |
| 160 | static const struct of_device_id pca954x_of_match[] = { |
| 161 | { .compatible = "nxp,pca9540", .data = &chips[pca_9540] }, |
| 162 | { .compatible = "nxp,pca9542", .data = &chips[pca_9542] }, |
| 163 | { .compatible = "nxp,pca9543", .data = &chips[pca_9543] }, |
| 164 | { .compatible = "nxp,pca9544", .data = &chips[pca_9544] }, |
| 165 | { .compatible = "nxp,pca9545", .data = &chips[pca_9545] }, |
| 166 | { .compatible = "nxp,pca9546", .data = &chips[pca_9546] }, |
| 167 | { .compatible = "nxp,pca9547", .data = &chips[pca_9547] }, |
| 168 | { .compatible = "nxp,pca9548", .data = &chips[pca_9548] }, |
| 169 | {} |
| 170 | }; |
| 171 | #endif |
| 172 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 173 | /* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer() |
| 174 | for this as they will try to lock adapter a second time */ |
| 175 | static int pca954x_reg_write(struct i2c_adapter *adap, |
| 176 | struct i2c_client *client, u8 val) |
| 177 | { |
| 178 | int ret = -ENODEV; |
| 179 | |
| 180 | if (adap->algo->master_xfer) { |
| 181 | struct i2c_msg msg; |
| 182 | char buf[1]; |
| 183 | |
| 184 | msg.addr = client->addr; |
| 185 | msg.flags = 0; |
| 186 | msg.len = 1; |
| 187 | buf[0] = val; |
| 188 | msg.buf = buf; |
Alexander Sverdlin | 0a8237a | 2015-06-12 14:41:00 +0200 | [diff] [blame] | 189 | ret = __i2c_transfer(adap, &msg, 1); |
Russell King | 7f638c1 | 2016-12-17 12:10:56 +0000 | [diff] [blame] | 190 | |
| 191 | if (ret >= 0 && ret != 1) |
| 192 | ret = -EREMOTEIO; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 193 | } else { |
| 194 | union i2c_smbus_data data; |
| 195 | ret = adap->algo->smbus_xfer(adap, client->addr, |
| 196 | client->flags, |
| 197 | I2C_SMBUS_WRITE, |
| 198 | val, I2C_SMBUS_BYTE, &data); |
| 199 | } |
| 200 | |
| 201 | return ret; |
| 202 | } |
| 203 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 204 | static int pca954x_select_chan(struct i2c_mux_core *muxc, u32 chan) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 205 | { |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 206 | struct pca954x *data = i2c_mux_priv(muxc); |
| 207 | struct i2c_client *client = data->client; |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 208 | const struct chip_desc *chip = data->chip; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 209 | u8 regval; |
| 210 | int ret = 0; |
| 211 | |
| 212 | /* we make switches look like muxes, not sure how to be smarter */ |
| 213 | if (chip->muxtype == pca954x_ismux) |
| 214 | regval = chan | chip->enable; |
| 215 | else |
| 216 | regval = 1 << chan; |
| 217 | |
| 218 | /* Only select the channel if its different from the last channel */ |
| 219 | if (data->last_chan != regval) { |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 220 | ret = pca954x_reg_write(muxc->parent, client, regval); |
Russell King | 7f638c1 | 2016-12-17 12:10:56 +0000 | [diff] [blame] | 221 | data->last_chan = ret < 0 ? 0 : regval; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | return ret; |
| 225 | } |
| 226 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 227 | static int pca954x_deselect_mux(struct i2c_mux_core *muxc, u32 chan) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 228 | { |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 229 | struct pca954x *data = i2c_mux_priv(muxc); |
| 230 | struct i2c_client *client = data->client; |
| 231 | |
| 232 | if (!(data->deselect & (1 << chan))) |
| 233 | return 0; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 234 | |
| 235 | /* Deselect active channel */ |
| 236 | data->last_chan = 0; |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 237 | return pca954x_reg_write(muxc->parent, client, data->last_chan); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 238 | } |
| 239 | |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 240 | static irqreturn_t pca954x_irq_handler(int irq, void *dev_id) |
| 241 | { |
| 242 | struct pca954x *data = dev_id; |
| 243 | unsigned int child_irq; |
| 244 | int ret, i, handled = 0; |
| 245 | |
| 246 | ret = i2c_smbus_read_byte(data->client); |
| 247 | if (ret < 0) |
| 248 | return IRQ_NONE; |
| 249 | |
| 250 | for (i = 0; i < data->chip->nchans; i++) { |
| 251 | if (ret & BIT(PCA954X_IRQ_OFFSET + i)) { |
| 252 | child_irq = irq_linear_revmap(data->irq, i); |
| 253 | handle_nested_irq(child_irq); |
| 254 | handled++; |
| 255 | } |
| 256 | } |
| 257 | return handled ? IRQ_HANDLED : IRQ_NONE; |
| 258 | } |
| 259 | |
| 260 | static void pca954x_irq_mask(struct irq_data *idata) |
| 261 | { |
| 262 | struct pca954x *data = irq_data_get_irq_chip_data(idata); |
| 263 | unsigned int pos = idata->hwirq; |
| 264 | unsigned long flags; |
| 265 | |
| 266 | spin_lock_irqsave(&data->lock, flags); |
| 267 | |
| 268 | data->irq_mask &= ~BIT(pos); |
| 269 | if (!data->irq_mask) |
| 270 | disable_irq(data->client->irq); |
| 271 | |
| 272 | spin_unlock_irqrestore(&data->lock, flags); |
| 273 | } |
| 274 | |
| 275 | static void pca954x_irq_unmask(struct irq_data *idata) |
| 276 | { |
| 277 | struct pca954x *data = irq_data_get_irq_chip_data(idata); |
| 278 | unsigned int pos = idata->hwirq; |
| 279 | unsigned long flags; |
| 280 | |
| 281 | spin_lock_irqsave(&data->lock, flags); |
| 282 | |
| 283 | if (!data->irq_mask) |
| 284 | enable_irq(data->client->irq); |
| 285 | data->irq_mask |= BIT(pos); |
| 286 | |
| 287 | spin_unlock_irqrestore(&data->lock, flags); |
| 288 | } |
| 289 | |
| 290 | static int pca954x_irq_set_type(struct irq_data *idata, unsigned int type) |
| 291 | { |
| 292 | if ((type & IRQ_TYPE_SENSE_MASK) != IRQ_TYPE_LEVEL_LOW) |
| 293 | return -EINVAL; |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static struct irq_chip pca954x_irq_chip = { |
| 298 | .name = "i2c-mux-pca954x", |
| 299 | .irq_mask = pca954x_irq_mask, |
| 300 | .irq_unmask = pca954x_irq_unmask, |
| 301 | .irq_set_type = pca954x_irq_set_type, |
| 302 | }; |
| 303 | |
| 304 | static int pca954x_irq_setup(struct i2c_mux_core *muxc) |
| 305 | { |
| 306 | struct pca954x *data = i2c_mux_priv(muxc); |
| 307 | struct i2c_client *client = data->client; |
| 308 | int c, err, irq; |
| 309 | |
| 310 | if (!data->chip->has_irq || client->irq <= 0) |
| 311 | return 0; |
| 312 | |
| 313 | spin_lock_init(&data->lock); |
| 314 | |
| 315 | data->irq = irq_domain_add_linear(client->dev.of_node, |
| 316 | data->chip->nchans, |
| 317 | &irq_domain_simple_ops, data); |
| 318 | if (!data->irq) |
| 319 | return -ENODEV; |
| 320 | |
| 321 | for (c = 0; c < data->chip->nchans; c++) { |
| 322 | irq = irq_create_mapping(data->irq, c); |
| 323 | irq_set_chip_data(irq, data); |
| 324 | irq_set_chip_and_handler(irq, &pca954x_irq_chip, |
| 325 | handle_simple_irq); |
| 326 | } |
| 327 | |
| 328 | err = devm_request_threaded_irq(&client->dev, data->client->irq, NULL, |
| 329 | pca954x_irq_handler, |
| 330 | IRQF_ONESHOT | IRQF_SHARED, |
| 331 | "pca954x", data); |
| 332 | if (err) |
| 333 | goto err_req_irq; |
| 334 | |
| 335 | disable_irq(data->client->irq); |
| 336 | |
| 337 | return 0; |
| 338 | err_req_irq: |
| 339 | for (c = 0; c < data->chip->nchans; c++) { |
| 340 | irq = irq_find_mapping(data->irq, c); |
| 341 | irq_dispose_mapping(irq); |
| 342 | } |
| 343 | irq_domain_remove(data->irq); |
| 344 | |
| 345 | return err; |
| 346 | } |
| 347 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 348 | /* |
| 349 | * I2C init/probing/exit functions |
| 350 | */ |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 351 | static int pca954x_probe(struct i2c_client *client, |
| 352 | const struct i2c_device_id *id) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 353 | { |
| 354 | struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent); |
Jingoo Han | 6d4028c | 2013-07-30 16:59:33 +0900 | [diff] [blame] | 355 | struct pca954x_platform_data *pdata = dev_get_platdata(&client->dev); |
Alexander Sverdlin | 72f0271 | 2015-01-23 16:41:29 +0100 | [diff] [blame] | 356 | struct device_node *of_node = client->dev.of_node; |
| 357 | bool idle_disconnect_dt; |
Laurent Pinchart | 4807e84 | 2014-06-03 13:15:26 +0200 | [diff] [blame] | 358 | struct gpio_desc *gpio; |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 359 | int num, force, class; |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 360 | struct i2c_mux_core *muxc; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 361 | struct pca954x *data; |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 362 | const struct of_device_id *match; |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 363 | int ret; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 364 | |
| 365 | if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_BYTE)) |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 366 | return -ENODEV; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 367 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 368 | muxc = i2c_mux_alloc(adap, &client->dev, |
| 369 | PCA954X_MAX_NCHANS, sizeof(*data), 0, |
| 370 | pca954x_select_chan, pca954x_deselect_mux); |
| 371 | if (!muxc) |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 372 | return -ENOMEM; |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 373 | data = i2c_mux_priv(muxc); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 374 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 375 | i2c_set_clientdata(client, muxc); |
| 376 | data->client = client; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 377 | |
Laurent Pinchart | 4807e84 | 2014-06-03 13:15:26 +0200 | [diff] [blame] | 378 | /* Get the mux out of reset if a reset GPIO is specified. */ |
Uwe Kleine-König | 58b59e0 | 2015-02-17 10:12:08 +0100 | [diff] [blame] | 379 | gpio = devm_gpiod_get_optional(&client->dev, "reset", GPIOD_OUT_LOW); |
| 380 | if (IS_ERR(gpio)) |
| 381 | return PTR_ERR(gpio); |
Laurent Pinchart | 1209795 | 2013-11-29 01:51:25 +0100 | [diff] [blame] | 382 | |
Petri Gynther | cd823db | 2011-06-29 11:36:11 +0200 | [diff] [blame] | 383 | /* Write the mux register at addr to verify |
| 384 | * that the mux is in fact present. This also |
| 385 | * initializes the mux to disconnected state. |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 386 | */ |
Petri Gynther | cd823db | 2011-06-29 11:36:11 +0200 | [diff] [blame] | 387 | if (i2c_smbus_write_byte(client, 0) < 0) { |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 388 | dev_warn(&client->dev, "probe failed\n"); |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 389 | return -ENODEV; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 390 | } |
| 391 | |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 392 | match = of_match_device(of_match_ptr(pca954x_of_match), &client->dev); |
| 393 | if (match) |
| 394 | data->chip = of_device_get_match_data(&client->dev); |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 395 | else if (id) |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 396 | data->chip = &chips[id->driver_data]; |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 397 | else { |
| 398 | const struct acpi_device_id *acpi_id; |
| 399 | |
| 400 | acpi_id = acpi_match_device(ACPI_PTR(pca954x_acpi_ids), |
| 401 | &client->dev); |
| 402 | if (!acpi_id) |
| 403 | return -ENODEV; |
| 404 | data->chip = &chips[acpi_id->driver_data]; |
| 405 | } |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 406 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 407 | data->last_chan = 0; /* force the first selection */ |
| 408 | |
Alexander Sverdlin | 72f0271 | 2015-01-23 16:41:29 +0100 | [diff] [blame] | 409 | idle_disconnect_dt = of_node && |
| 410 | of_property_read_bool(of_node, "i2c-mux-idle-disconnect"); |
| 411 | |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 412 | ret = pca954x_irq_setup(muxc); |
| 413 | if (ret) |
| 414 | goto fail_del_adapters; |
| 415 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 416 | /* Now create an adapter for each channel */ |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 417 | for (num = 0; num < data->chip->nchans; num++) { |
Alexander Sverdlin | 72f0271 | 2015-01-23 16:41:29 +0100 | [diff] [blame] | 418 | bool idle_disconnect_pd = false; |
| 419 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 420 | force = 0; /* dynamic adap number */ |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 421 | class = 0; /* no class by default */ |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 422 | if (pdata) { |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 423 | if (num < pdata->num_modes) { |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 424 | /* force static number */ |
| 425 | force = pdata->modes[num].adap_id; |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 426 | class = pdata->modes[num].class; |
| 427 | } else |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 428 | /* discard unconfigured channels */ |
| 429 | break; |
Alexander Sverdlin | 72f0271 | 2015-01-23 16:41:29 +0100 | [diff] [blame] | 430 | idle_disconnect_pd = pdata->modes[num].deselect_on_exit; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 431 | } |
Alex Hemme | ad092de | 2016-11-19 10:48:38 +0100 | [diff] [blame] | 432 | data->deselect |= (idle_disconnect_pd || |
| 433 | idle_disconnect_dt) << num; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 434 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 435 | ret = i2c_mux_add_adapter(muxc, force, num, class); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 436 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 437 | if (ret) { |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 438 | dev_err(&client->dev, |
| 439 | "failed to register multiplexed adapter" |
| 440 | " %d as bus %d\n", num, force); |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 441 | goto fail_del_adapters; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 442 | } |
| 443 | } |
| 444 | |
| 445 | dev_info(&client->dev, |
| 446 | "registered %d multiplexed busses for I2C %s %s\n", |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 447 | num, data->chip->muxtype == pca954x_ismux |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 448 | ? "mux" : "switch", client->name); |
| 449 | |
| 450 | return 0; |
| 451 | |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 452 | fail_del_adapters: |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 453 | i2c_mux_del_adapters(muxc); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 454 | return ret; |
| 455 | } |
| 456 | |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 457 | static int pca954x_remove(struct i2c_client *client) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 458 | { |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 459 | struct i2c_mux_core *muxc = i2c_get_clientdata(client); |
Phil Reid | f211479 | 2017-01-25 09:31:08 +0800 | [diff] [blame^] | 460 | struct pca954x *data = i2c_mux_priv(muxc); |
| 461 | int c, irq; |
| 462 | |
| 463 | if (data->irq) { |
| 464 | for (c = 0; c < data->chip->nchans; c++) { |
| 465 | irq = irq_find_mapping(data->irq, c); |
| 466 | irq_dispose_mapping(irq); |
| 467 | } |
| 468 | irq_domain_remove(data->irq); |
| 469 | } |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 470 | |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 471 | i2c_mux_del_adapters(muxc); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 472 | return 0; |
| 473 | } |
| 474 | |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 475 | #ifdef CONFIG_PM_SLEEP |
| 476 | static int pca954x_resume(struct device *dev) |
| 477 | { |
| 478 | struct i2c_client *client = to_i2c_client(dev); |
Peter Rosin | 7fcac98 | 2016-04-20 08:40:14 +0200 | [diff] [blame] | 479 | struct i2c_mux_core *muxc = i2c_get_clientdata(client); |
| 480 | struct pca954x *data = i2c_mux_priv(muxc); |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 481 | |
| 482 | data->last_chan = 0; |
| 483 | return i2c_smbus_write_byte(client, 0); |
| 484 | } |
| 485 | #endif |
| 486 | |
| 487 | static SIMPLE_DEV_PM_OPS(pca954x_pm, NULL, pca954x_resume); |
| 488 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 489 | static struct i2c_driver pca954x_driver = { |
| 490 | .driver = { |
| 491 | .name = "pca954x", |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 492 | .pm = &pca954x_pm, |
Peter Rosin | 8a191a7 | 2016-07-09 21:21:15 +0200 | [diff] [blame] | 493 | .of_match_table = of_match_ptr(pca954x_of_match), |
tnhuynh@apm.com | bbf9d26 | 2016-11-29 17:12:43 +0700 | [diff] [blame] | 494 | .acpi_match_table = ACPI_PTR(pca954x_acpi_ids), |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 495 | }, |
| 496 | .probe = pca954x_probe, |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 497 | .remove = pca954x_remove, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 498 | .id_table = pca954x_id, |
| 499 | }; |
| 500 | |
Axel Lin | de05497 | 2012-03-26 21:47:19 +0200 | [diff] [blame] | 501 | module_i2c_driver(pca954x_driver); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 502 | |
| 503 | MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>"); |
| 504 | MODULE_DESCRIPTION("PCA954x I2C mux/switch driver"); |
| 505 | MODULE_LICENSE("GPL v2"); |