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 | 7c81c60 | 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 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 38 | #include <linux/device.h> |
Laurent Pinchart | 642653d | 2014-06-04 18:56:32 +0200 | [diff] [blame] | 39 | #include <linux/gpio/consumer.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 40 | #include <linux/i2c.h> |
| 41 | #include <linux/i2c-mux.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 42 | #include <linux/i2c/pca954x.h> |
Laurent Pinchart | 4b9b007 | 2013-11-29 01:51:22 +0100 | [diff] [blame] | 43 | #include <linux/module.h> |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 44 | #include <linux/pm.h> |
Laurent Pinchart | 4b9b007 | 2013-11-29 01:51:22 +0100 | [diff] [blame] | 45 | #include <linux/slab.h> |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 46 | |
| 47 | #define PCA954X_MAX_NCHANS 8 |
| 48 | |
| 49 | enum pca_type { |
| 50 | pca_9540, |
| 51 | pca_9542, |
| 52 | pca_9543, |
| 53 | pca_9544, |
| 54 | pca_9545, |
| 55 | pca_9546, |
| 56 | pca_9547, |
| 57 | pca_9548, |
| 58 | }; |
| 59 | |
| 60 | struct pca954x { |
| 61 | enum pca_type type; |
| 62 | struct i2c_adapter *virt_adaps[PCA954X_MAX_NCHANS]; |
| 63 | |
| 64 | u8 last_chan; /* last register value */ |
| 65 | }; |
| 66 | |
| 67 | struct chip_desc { |
| 68 | u8 nchans; |
| 69 | u8 enable; /* used for muxes only */ |
| 70 | enum muxtype { |
| 71 | pca954x_ismux = 0, |
| 72 | pca954x_isswi |
| 73 | } muxtype; |
| 74 | }; |
| 75 | |
| 76 | /* Provide specs for the PCA954x types we know about */ |
| 77 | static const struct chip_desc chips[] = { |
| 78 | [pca_9540] = { |
| 79 | .nchans = 2, |
| 80 | .enable = 0x4, |
| 81 | .muxtype = pca954x_ismux, |
| 82 | }, |
| 83 | [pca_9543] = { |
| 84 | .nchans = 2, |
| 85 | .muxtype = pca954x_isswi, |
| 86 | }, |
| 87 | [pca_9544] = { |
| 88 | .nchans = 4, |
| 89 | .enable = 0x4, |
| 90 | .muxtype = pca954x_ismux, |
| 91 | }, |
| 92 | [pca_9545] = { |
| 93 | .nchans = 4, |
| 94 | .muxtype = pca954x_isswi, |
| 95 | }, |
| 96 | [pca_9547] = { |
| 97 | .nchans = 8, |
| 98 | .enable = 0x8, |
| 99 | .muxtype = pca954x_ismux, |
| 100 | }, |
| 101 | [pca_9548] = { |
| 102 | .nchans = 8, |
| 103 | .muxtype = pca954x_isswi, |
| 104 | }, |
| 105 | }; |
| 106 | |
| 107 | static const struct i2c_device_id pca954x_id[] = { |
| 108 | { "pca9540", pca_9540 }, |
| 109 | { "pca9542", pca_9540 }, |
| 110 | { "pca9543", pca_9543 }, |
| 111 | { "pca9544", pca_9544 }, |
| 112 | { "pca9545", pca_9545 }, |
| 113 | { "pca9546", pca_9545 }, |
| 114 | { "pca9547", pca_9547 }, |
| 115 | { "pca9548", pca_9548 }, |
| 116 | { } |
| 117 | }; |
| 118 | MODULE_DEVICE_TABLE(i2c, pca954x_id); |
| 119 | |
| 120 | /* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer() |
| 121 | for this as they will try to lock adapter a second time */ |
| 122 | static int pca954x_reg_write(struct i2c_adapter *adap, |
| 123 | struct i2c_client *client, u8 val) |
| 124 | { |
| 125 | int ret = -ENODEV; |
| 126 | |
| 127 | if (adap->algo->master_xfer) { |
| 128 | struct i2c_msg msg; |
| 129 | char buf[1]; |
| 130 | |
| 131 | msg.addr = client->addr; |
| 132 | msg.flags = 0; |
| 133 | msg.len = 1; |
| 134 | buf[0] = val; |
| 135 | msg.buf = buf; |
| 136 | ret = adap->algo->master_xfer(adap, &msg, 1); |
| 137 | } else { |
| 138 | union i2c_smbus_data data; |
| 139 | ret = adap->algo->smbus_xfer(adap, client->addr, |
| 140 | client->flags, |
| 141 | I2C_SMBUS_WRITE, |
| 142 | val, I2C_SMBUS_BYTE, &data); |
| 143 | } |
| 144 | |
| 145 | return ret; |
| 146 | } |
| 147 | |
| 148 | static int pca954x_select_chan(struct i2c_adapter *adap, |
| 149 | void *client, u32 chan) |
| 150 | { |
| 151 | struct pca954x *data = i2c_get_clientdata(client); |
| 152 | const struct chip_desc *chip = &chips[data->type]; |
| 153 | u8 regval; |
| 154 | int ret = 0; |
| 155 | |
| 156 | /* we make switches look like muxes, not sure how to be smarter */ |
| 157 | if (chip->muxtype == pca954x_ismux) |
| 158 | regval = chan | chip->enable; |
| 159 | else |
| 160 | regval = 1 << chan; |
| 161 | |
| 162 | /* Only select the channel if its different from the last channel */ |
| 163 | if (data->last_chan != regval) { |
| 164 | ret = pca954x_reg_write(adap, client, regval); |
| 165 | data->last_chan = regval; |
| 166 | } |
| 167 | |
| 168 | return ret; |
| 169 | } |
| 170 | |
| 171 | static int pca954x_deselect_mux(struct i2c_adapter *adap, |
| 172 | void *client, u32 chan) |
| 173 | { |
| 174 | struct pca954x *data = i2c_get_clientdata(client); |
| 175 | |
| 176 | /* Deselect active channel */ |
| 177 | data->last_chan = 0; |
| 178 | return pca954x_reg_write(adap, client, data->last_chan); |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * I2C init/probing/exit functions |
| 183 | */ |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 184 | static int pca954x_probe(struct i2c_client *client, |
| 185 | const struct i2c_device_id *id) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 186 | { |
| 187 | struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent); |
Jingoo Han | 6d4028c | 2013-07-30 16:59:33 +0900 | [diff] [blame] | 188 | struct pca954x_platform_data *pdata = dev_get_platdata(&client->dev); |
Laurent Pinchart | 4807e84 | 2014-06-03 13:15:26 +0200 | [diff] [blame] | 189 | struct gpio_desc *gpio; |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 190 | int num, force, class; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 191 | struct pca954x *data; |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 192 | int ret; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 193 | |
| 194 | if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_BYTE)) |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 195 | return -ENODEV; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 196 | |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 197 | data = devm_kzalloc(&client->dev, sizeof(struct pca954x), GFP_KERNEL); |
| 198 | if (!data) |
| 199 | return -ENOMEM; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 200 | |
| 201 | i2c_set_clientdata(client, data); |
| 202 | |
Laurent Pinchart | 4807e84 | 2014-06-03 13:15:26 +0200 | [diff] [blame] | 203 | /* Get the mux out of reset if a reset GPIO is specified. */ |
| 204 | gpio = devm_gpiod_get(&client->dev, "reset"); |
| 205 | if (!IS_ERR(gpio)) |
| 206 | gpiod_direction_output(gpio, 0); |
Laurent Pinchart | 1209795 | 2013-11-29 01:51:25 +0100 | [diff] [blame] | 207 | |
Petri Gynther | cd823db | 2011-06-29 11:36:11 +0200 | [diff] [blame] | 208 | /* Write the mux register at addr to verify |
| 209 | * that the mux is in fact present. This also |
| 210 | * initializes the mux to disconnected state. |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 211 | */ |
Petri Gynther | cd823db | 2011-06-29 11:36:11 +0200 | [diff] [blame] | 212 | if (i2c_smbus_write_byte(client, 0) < 0) { |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 213 | dev_warn(&client->dev, "probe failed\n"); |
Laurent Pinchart | bc12cfc | 2013-11-29 01:51:23 +0100 | [diff] [blame] | 214 | return -ENODEV; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | data->type = id->driver_data; |
| 218 | data->last_chan = 0; /* force the first selection */ |
| 219 | |
| 220 | /* Now create an adapter for each channel */ |
| 221 | for (num = 0; num < chips[data->type].nchans; num++) { |
| 222 | force = 0; /* dynamic adap number */ |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 223 | class = 0; /* no class by default */ |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 224 | if (pdata) { |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 225 | if (num < pdata->num_modes) { |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 226 | /* force static number */ |
| 227 | force = pdata->modes[num].adap_id; |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 228 | class = pdata->modes[num].class; |
| 229 | } else |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 230 | /* discard unconfigured channels */ |
| 231 | break; |
| 232 | } |
| 233 | |
| 234 | data->virt_adaps[num] = |
David Daney | 5a3ecd5 | 2012-04-12 14:14:22 -0700 | [diff] [blame] | 235 | i2c_add_mux_adapter(adap, &client->dev, client, |
Jean Delvare | eee543e | 2012-10-05 22:23:51 +0200 | [diff] [blame] | 236 | force, num, class, pca954x_select_chan, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 237 | (pdata && pdata->modes[num].deselect_on_exit) |
| 238 | ? pca954x_deselect_mux : NULL); |
| 239 | |
| 240 | if (data->virt_adaps[num] == NULL) { |
| 241 | ret = -ENODEV; |
| 242 | dev_err(&client->dev, |
| 243 | "failed to register multiplexed adapter" |
| 244 | " %d as bus %d\n", num, force); |
| 245 | goto virt_reg_failed; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | dev_info(&client->dev, |
| 250 | "registered %d multiplexed busses for I2C %s %s\n", |
| 251 | num, chips[data->type].muxtype == pca954x_ismux |
| 252 | ? "mux" : "switch", client->name); |
| 253 | |
| 254 | return 0; |
| 255 | |
| 256 | virt_reg_failed: |
| 257 | for (num--; num >= 0; num--) |
| 258 | i2c_del_mux_adapter(data->virt_adaps[num]); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 259 | return ret; |
| 260 | } |
| 261 | |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 262 | static int pca954x_remove(struct i2c_client *client) |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 263 | { |
| 264 | struct pca954x *data = i2c_get_clientdata(client); |
| 265 | const struct chip_desc *chip = &chips[data->type]; |
Lars-Peter Clausen | a205e63 | 2013-03-09 08:16:48 +0000 | [diff] [blame] | 266 | int i; |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 267 | |
| 268 | for (i = 0; i < chip->nchans; ++i) |
| 269 | if (data->virt_adaps[i]) { |
Lars-Peter Clausen | a205e63 | 2013-03-09 08:16:48 +0000 | [diff] [blame] | 270 | i2c_del_mux_adapter(data->virt_adaps[i]); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 271 | data->virt_adaps[i] = NULL; |
| 272 | } |
| 273 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 274 | return 0; |
| 275 | } |
| 276 | |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 277 | #ifdef CONFIG_PM_SLEEP |
| 278 | static int pca954x_resume(struct device *dev) |
| 279 | { |
| 280 | struct i2c_client *client = to_i2c_client(dev); |
| 281 | struct pca954x *data = i2c_get_clientdata(client); |
| 282 | |
| 283 | data->last_chan = 0; |
| 284 | return i2c_smbus_write_byte(client, 0); |
| 285 | } |
| 286 | #endif |
| 287 | |
| 288 | static SIMPLE_DEV_PM_OPS(pca954x_pm, NULL, pca954x_resume); |
| 289 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 290 | static struct i2c_driver pca954x_driver = { |
| 291 | .driver = { |
| 292 | .name = "pca954x", |
Jisheng Zhang | f5e596c | 2014-07-25 19:57:46 +0800 | [diff] [blame] | 293 | .pm = &pca954x_pm, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 294 | .owner = THIS_MODULE, |
| 295 | }, |
| 296 | .probe = pca954x_probe, |
Guenter Roeck | db79f2a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 297 | .remove = pca954x_remove, |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 298 | .id_table = pca954x_id, |
| 299 | }; |
| 300 | |
Axel Lin | de05497 | 2012-03-26 21:47:19 +0200 | [diff] [blame] | 301 | module_i2c_driver(pca954x_driver); |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 302 | |
| 303 | MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>"); |
| 304 | MODULE_DESCRIPTION("PCA954x I2C mux/switch driver"); |
| 305 | MODULE_LICENSE("GPL v2"); |