blob: bbf088e08d7326a948c7d629b5af4dbda1c79426 [file] [log] [blame]
Michael Lawnick7f528132010-08-11 18:21:03 +02001/*
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 Delvare7c81c602014-01-29 20:40:08 +010031 * pca9540.c from Jean Delvare <jdelvare@suse.de>.
Michael Lawnick7f528132010-08-11 18:21:03 +020032 *
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.combbf9d262016-11-29 17:12:43 +070038#include <linux/acpi.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020039#include <linux/device.h>
Laurent Pinchart642653d2014-06-04 18:56:32 +020040#include <linux/gpio/consumer.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020041#include <linux/i2c.h>
42#include <linux/i2c-mux.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020043#include <linux/i2c/pca954x.h>
Laurent Pinchart4b9b0072013-11-29 01:51:22 +010044#include <linux/module.h>
Alexander Sverdlin72f02712015-01-23 16:41:29 +010045#include <linux/of.h>
Peter Rosin8a191a72016-07-09 21:21:15 +020046#include <linux/of_device.h>
Jisheng Zhangf5e596c2014-07-25 19:57:46 +080047#include <linux/pm.h>
Laurent Pinchart4b9b0072013-11-29 01:51:22 +010048#include <linux/slab.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020049
50#define PCA954X_MAX_NCHANS 8
51
52enum pca_type {
53 pca_9540,
54 pca_9542,
55 pca_9543,
56 pca_9544,
57 pca_9545,
58 pca_9546,
59 pca_9547,
60 pca_9548,
61};
62
Michael Lawnick7f528132010-08-11 18:21:03 +020063struct chip_desc {
64 u8 nchans;
65 u8 enable; /* used for muxes only */
66 enum muxtype {
67 pca954x_ismux = 0,
68 pca954x_isswi
69 } muxtype;
70};
71
Peter Rosin8a191a72016-07-09 21:21:15 +020072struct pca954x {
73 const struct chip_desc *chip;
74
75 u8 last_chan; /* last register value */
76 u8 deselect;
77 struct i2c_client *client;
78};
79
Michael Lawnick7f528132010-08-11 18:21:03 +020080/* Provide specs for the PCA954x types we know about */
81static const struct chip_desc chips[] = {
82 [pca_9540] = {
83 .nchans = 2,
84 .enable = 0x4,
85 .muxtype = pca954x_ismux,
86 },
Phil Reidf8251f12017-01-25 09:31:06 +080087 [pca_9542] = {
88 .nchans = 2,
89 .enable = 0x4,
90 .muxtype = pca954x_ismux,
91 },
Michael Lawnick7f528132010-08-11 18:21:03 +020092 [pca_9543] = {
93 .nchans = 2,
94 .muxtype = pca954x_isswi,
95 },
96 [pca_9544] = {
97 .nchans = 4,
98 .enable = 0x4,
99 .muxtype = pca954x_ismux,
100 },
101 [pca_9545] = {
102 .nchans = 4,
103 .muxtype = pca954x_isswi,
104 },
105 [pca_9547] = {
106 .nchans = 8,
107 .enable = 0x8,
108 .muxtype = pca954x_ismux,
109 },
110 [pca_9548] = {
111 .nchans = 8,
112 .muxtype = pca954x_isswi,
113 },
114};
115
116static const struct i2c_device_id pca954x_id[] = {
117 { "pca9540", pca_9540 },
Phil Reidf8251f12017-01-25 09:31:06 +0800118 { "pca9542", pca_9542 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200119 { "pca9543", pca_9543 },
120 { "pca9544", pca_9544 },
121 { "pca9545", pca_9545 },
122 { "pca9546", pca_9545 },
123 { "pca9547", pca_9547 },
124 { "pca9548", pca_9548 },
125 { }
126};
127MODULE_DEVICE_TABLE(i2c, pca954x_id);
128
tnhuynh@apm.combbf9d262016-11-29 17:12:43 +0700129#ifdef CONFIG_ACPI
130static const struct acpi_device_id pca954x_acpi_ids[] = {
131 { .id = "PCA9540", .driver_data = pca_9540 },
Phil Reidf8251f12017-01-25 09:31:06 +0800132 { .id = "PCA9542", .driver_data = pca_9542 },
tnhuynh@apm.combbf9d262016-11-29 17:12:43 +0700133 { .id = "PCA9543", .driver_data = pca_9543 },
134 { .id = "PCA9544", .driver_data = pca_9544 },
135 { .id = "PCA9545", .driver_data = pca_9545 },
136 { .id = "PCA9546", .driver_data = pca_9545 },
137 { .id = "PCA9547", .driver_data = pca_9547 },
138 { .id = "PCA9548", .driver_data = pca_9548 },
139 { }
140};
141MODULE_DEVICE_TABLE(acpi, pca954x_acpi_ids);
142#endif
143
Peter Rosin8a191a72016-07-09 21:21:15 +0200144#ifdef CONFIG_OF
145static const struct of_device_id pca954x_of_match[] = {
146 { .compatible = "nxp,pca9540", .data = &chips[pca_9540] },
147 { .compatible = "nxp,pca9542", .data = &chips[pca_9542] },
148 { .compatible = "nxp,pca9543", .data = &chips[pca_9543] },
149 { .compatible = "nxp,pca9544", .data = &chips[pca_9544] },
150 { .compatible = "nxp,pca9545", .data = &chips[pca_9545] },
151 { .compatible = "nxp,pca9546", .data = &chips[pca_9546] },
152 { .compatible = "nxp,pca9547", .data = &chips[pca_9547] },
153 { .compatible = "nxp,pca9548", .data = &chips[pca_9548] },
154 {}
155};
156#endif
157
Michael Lawnick7f528132010-08-11 18:21:03 +0200158/* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer()
159 for this as they will try to lock adapter a second time */
160static int pca954x_reg_write(struct i2c_adapter *adap,
161 struct i2c_client *client, u8 val)
162{
163 int ret = -ENODEV;
164
165 if (adap->algo->master_xfer) {
166 struct i2c_msg msg;
167 char buf[1];
168
169 msg.addr = client->addr;
170 msg.flags = 0;
171 msg.len = 1;
172 buf[0] = val;
173 msg.buf = buf;
Alexander Sverdlin0a8237a2015-06-12 14:41:00 +0200174 ret = __i2c_transfer(adap, &msg, 1);
Russell King7f638c12016-12-17 12:10:56 +0000175
176 if (ret >= 0 && ret != 1)
177 ret = -EREMOTEIO;
Michael Lawnick7f528132010-08-11 18:21:03 +0200178 } else {
179 union i2c_smbus_data data;
180 ret = adap->algo->smbus_xfer(adap, client->addr,
181 client->flags,
182 I2C_SMBUS_WRITE,
183 val, I2C_SMBUS_BYTE, &data);
184 }
185
186 return ret;
187}
188
Peter Rosin7fcac982016-04-20 08:40:14 +0200189static int pca954x_select_chan(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200190{
Peter Rosin7fcac982016-04-20 08:40:14 +0200191 struct pca954x *data = i2c_mux_priv(muxc);
192 struct i2c_client *client = data->client;
Peter Rosin8a191a72016-07-09 21:21:15 +0200193 const struct chip_desc *chip = data->chip;
Michael Lawnick7f528132010-08-11 18:21:03 +0200194 u8 regval;
195 int ret = 0;
196
197 /* we make switches look like muxes, not sure how to be smarter */
198 if (chip->muxtype == pca954x_ismux)
199 regval = chan | chip->enable;
200 else
201 regval = 1 << chan;
202
203 /* Only select the channel if its different from the last channel */
204 if (data->last_chan != regval) {
Peter Rosin7fcac982016-04-20 08:40:14 +0200205 ret = pca954x_reg_write(muxc->parent, client, regval);
Russell King7f638c12016-12-17 12:10:56 +0000206 data->last_chan = ret < 0 ? 0 : regval;
Michael Lawnick7f528132010-08-11 18:21:03 +0200207 }
208
209 return ret;
210}
211
Peter Rosin7fcac982016-04-20 08:40:14 +0200212static int pca954x_deselect_mux(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200213{
Peter Rosin7fcac982016-04-20 08:40:14 +0200214 struct pca954x *data = i2c_mux_priv(muxc);
215 struct i2c_client *client = data->client;
216
217 if (!(data->deselect & (1 << chan)))
218 return 0;
Michael Lawnick7f528132010-08-11 18:21:03 +0200219
220 /* Deselect active channel */
221 data->last_chan = 0;
Peter Rosin7fcac982016-04-20 08:40:14 +0200222 return pca954x_reg_write(muxc->parent, client, data->last_chan);
Michael Lawnick7f528132010-08-11 18:21:03 +0200223}
224
225/*
226 * I2C init/probing/exit functions
227 */
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200228static int pca954x_probe(struct i2c_client *client,
229 const struct i2c_device_id *id)
Michael Lawnick7f528132010-08-11 18:21:03 +0200230{
231 struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent);
Jingoo Han6d4028c2013-07-30 16:59:33 +0900232 struct pca954x_platform_data *pdata = dev_get_platdata(&client->dev);
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100233 struct device_node *of_node = client->dev.of_node;
234 bool idle_disconnect_dt;
Laurent Pinchart4807e842014-06-03 13:15:26 +0200235 struct gpio_desc *gpio;
Jean Delvareeee543e2012-10-05 22:23:51 +0200236 int num, force, class;
Peter Rosin7fcac982016-04-20 08:40:14 +0200237 struct i2c_mux_core *muxc;
Michael Lawnick7f528132010-08-11 18:21:03 +0200238 struct pca954x *data;
Peter Rosin8a191a72016-07-09 21:21:15 +0200239 const struct of_device_id *match;
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100240 int ret;
Michael Lawnick7f528132010-08-11 18:21:03 +0200241
242 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_BYTE))
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100243 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200244
Peter Rosin7fcac982016-04-20 08:40:14 +0200245 muxc = i2c_mux_alloc(adap, &client->dev,
246 PCA954X_MAX_NCHANS, sizeof(*data), 0,
247 pca954x_select_chan, pca954x_deselect_mux);
248 if (!muxc)
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100249 return -ENOMEM;
Peter Rosin7fcac982016-04-20 08:40:14 +0200250 data = i2c_mux_priv(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200251
Peter Rosin7fcac982016-04-20 08:40:14 +0200252 i2c_set_clientdata(client, muxc);
253 data->client = client;
Michael Lawnick7f528132010-08-11 18:21:03 +0200254
Laurent Pinchart4807e842014-06-03 13:15:26 +0200255 /* Get the mux out of reset if a reset GPIO is specified. */
Uwe Kleine-König58b59e02015-02-17 10:12:08 +0100256 gpio = devm_gpiod_get_optional(&client->dev, "reset", GPIOD_OUT_LOW);
257 if (IS_ERR(gpio))
258 return PTR_ERR(gpio);
Laurent Pinchart12097952013-11-29 01:51:25 +0100259
Petri Gynthercd823db2011-06-29 11:36:11 +0200260 /* Write the mux register at addr to verify
261 * that the mux is in fact present. This also
262 * initializes the mux to disconnected state.
Michael Lawnick7f528132010-08-11 18:21:03 +0200263 */
Petri Gynthercd823db2011-06-29 11:36:11 +0200264 if (i2c_smbus_write_byte(client, 0) < 0) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200265 dev_warn(&client->dev, "probe failed\n");
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100266 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200267 }
268
Peter Rosin8a191a72016-07-09 21:21:15 +0200269 match = of_match_device(of_match_ptr(pca954x_of_match), &client->dev);
270 if (match)
271 data->chip = of_device_get_match_data(&client->dev);
tnhuynh@apm.combbf9d262016-11-29 17:12:43 +0700272 else if (id)
Peter Rosin8a191a72016-07-09 21:21:15 +0200273 data->chip = &chips[id->driver_data];
tnhuynh@apm.combbf9d262016-11-29 17:12:43 +0700274 else {
275 const struct acpi_device_id *acpi_id;
276
277 acpi_id = acpi_match_device(ACPI_PTR(pca954x_acpi_ids),
278 &client->dev);
279 if (!acpi_id)
280 return -ENODEV;
281 data->chip = &chips[acpi_id->driver_data];
282 }
Peter Rosin8a191a72016-07-09 21:21:15 +0200283
Michael Lawnick7f528132010-08-11 18:21:03 +0200284 data->last_chan = 0; /* force the first selection */
285
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100286 idle_disconnect_dt = of_node &&
287 of_property_read_bool(of_node, "i2c-mux-idle-disconnect");
288
Michael Lawnick7f528132010-08-11 18:21:03 +0200289 /* Now create an adapter for each channel */
Peter Rosin8a191a72016-07-09 21:21:15 +0200290 for (num = 0; num < data->chip->nchans; num++) {
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100291 bool idle_disconnect_pd = false;
292
Michael Lawnick7f528132010-08-11 18:21:03 +0200293 force = 0; /* dynamic adap number */
Jean Delvareeee543e2012-10-05 22:23:51 +0200294 class = 0; /* no class by default */
Michael Lawnick7f528132010-08-11 18:21:03 +0200295 if (pdata) {
Jean Delvareeee543e2012-10-05 22:23:51 +0200296 if (num < pdata->num_modes) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200297 /* force static number */
298 force = pdata->modes[num].adap_id;
Jean Delvareeee543e2012-10-05 22:23:51 +0200299 class = pdata->modes[num].class;
300 } else
Michael Lawnick7f528132010-08-11 18:21:03 +0200301 /* discard unconfigured channels */
302 break;
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100303 idle_disconnect_pd = pdata->modes[num].deselect_on_exit;
Michael Lawnick7f528132010-08-11 18:21:03 +0200304 }
Alex Hemmead092de2016-11-19 10:48:38 +0100305 data->deselect |= (idle_disconnect_pd ||
306 idle_disconnect_dt) << num;
Michael Lawnick7f528132010-08-11 18:21:03 +0200307
Peter Rosin7fcac982016-04-20 08:40:14 +0200308 ret = i2c_mux_add_adapter(muxc, force, num, class);
Michael Lawnick7f528132010-08-11 18:21:03 +0200309
Peter Rosin7fcac982016-04-20 08:40:14 +0200310 if (ret) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200311 dev_err(&client->dev,
312 "failed to register multiplexed adapter"
313 " %d as bus %d\n", num, force);
314 goto virt_reg_failed;
315 }
316 }
317
318 dev_info(&client->dev,
319 "registered %d multiplexed busses for I2C %s %s\n",
Peter Rosin8a191a72016-07-09 21:21:15 +0200320 num, data->chip->muxtype == pca954x_ismux
Michael Lawnick7f528132010-08-11 18:21:03 +0200321 ? "mux" : "switch", client->name);
322
323 return 0;
324
325virt_reg_failed:
Peter Rosin7fcac982016-04-20 08:40:14 +0200326 i2c_mux_del_adapters(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200327 return ret;
328}
329
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200330static int pca954x_remove(struct i2c_client *client)
Michael Lawnick7f528132010-08-11 18:21:03 +0200331{
Peter Rosin7fcac982016-04-20 08:40:14 +0200332 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
Michael Lawnick7f528132010-08-11 18:21:03 +0200333
Peter Rosin7fcac982016-04-20 08:40:14 +0200334 i2c_mux_del_adapters(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200335 return 0;
336}
337
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800338#ifdef CONFIG_PM_SLEEP
339static int pca954x_resume(struct device *dev)
340{
341 struct i2c_client *client = to_i2c_client(dev);
Peter Rosin7fcac982016-04-20 08:40:14 +0200342 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
343 struct pca954x *data = i2c_mux_priv(muxc);
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800344
345 data->last_chan = 0;
346 return i2c_smbus_write_byte(client, 0);
347}
348#endif
349
350static SIMPLE_DEV_PM_OPS(pca954x_pm, NULL, pca954x_resume);
351
Michael Lawnick7f528132010-08-11 18:21:03 +0200352static struct i2c_driver pca954x_driver = {
353 .driver = {
354 .name = "pca954x",
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800355 .pm = &pca954x_pm,
Peter Rosin8a191a72016-07-09 21:21:15 +0200356 .of_match_table = of_match_ptr(pca954x_of_match),
tnhuynh@apm.combbf9d262016-11-29 17:12:43 +0700357 .acpi_match_table = ACPI_PTR(pca954x_acpi_ids),
Michael Lawnick7f528132010-08-11 18:21:03 +0200358 },
359 .probe = pca954x_probe,
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200360 .remove = pca954x_remove,
Michael Lawnick7f528132010-08-11 18:21:03 +0200361 .id_table = pca954x_id,
362};
363
Axel Linde054972012-03-26 21:47:19 +0200364module_i2c_driver(pca954x_driver);
Michael Lawnick7f528132010-08-11 18:21:03 +0200365
366MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
367MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
368MODULE_LICENSE("GPL v2");