blob: 2178266bca794825e948ce275d48a1b13064056c [file] [log] [blame]
Michael Lawnick08263742010-08-11 18:21:02 +02001/*
2 * Multiplexed I2C bus driver.
3 *
4 * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it>
6 * Copyright (c) 2009-2010 NSN GmbH & Co KG <michael.lawnick.ext@nsn.com>
7 *
8 * Simplifies access to complex multiplexed I2C bus topologies, by presenting
9 * each multiplexed bus segment as an additional I2C adapter.
10 * Supports multi-level mux'ing (mux behind a mux).
11 *
12 * Based on:
13 * i2c-virt.c from Kumar Gala <galak@kernel.crashing.org>
14 * i2c-virtual.c from Ken Harrenstien, Copyright (c) 2004 Google, Inc.
15 * i2c-virtual.c from Brian Kuschak <bkuschak@yahoo.com>
16 *
17 * This file is licensed under the terms of the GNU General Public
18 * License version 2. This program is licensed "as is" without any
19 * warranty of any kind, whether express or implied.
20 */
21
Wolfram Sang51714932016-02-20 23:33:39 +010022#include <linux/acpi.h>
Michael Lawnick08263742010-08-11 18:21:02 +020023#include <linux/i2c.h>
24#include <linux/i2c-mux.h>
Wolfram Sang51714932016-02-20 23:33:39 +010025#include <linux/kernel.h>
26#include <linux/module.h>
David Daneybc454492012-04-12 14:14:23 -070027#include <linux/of.h>
Wolfram Sang51714932016-02-20 23:33:39 +010028#include <linux/slab.h>
Michael Lawnick08263742010-08-11 18:21:02 +020029
30/* multiplexer per channel data */
31struct i2c_mux_priv {
32 struct i2c_adapter adap;
33 struct i2c_algorithm algo;
Peter Rosina7ab7232016-04-20 08:38:50 +020034 struct i2c_mux_core *muxc;
Wolfram Sang13377842015-04-23 10:29:09 +020035 u32 chan_id;
Michael Lawnick08263742010-08-11 18:21:02 +020036};
37
Peter Rosin6ef91fc2016-05-04 22:15:29 +020038static int __i2c_mux_master_xfer(struct i2c_adapter *adap,
39 struct i2c_msg msgs[], int num)
40{
41 struct i2c_mux_priv *priv = adap->algo_data;
42 struct i2c_mux_core *muxc = priv->muxc;
43 struct i2c_adapter *parent = muxc->parent;
44 int ret;
45
46 /* Switch to the right mux port and perform the transfer. */
47
48 ret = muxc->select(muxc, priv->chan_id);
49 if (ret >= 0)
50 ret = __i2c_transfer(parent, msgs, num);
51 if (muxc->deselect)
52 muxc->deselect(muxc, priv->chan_id);
53
54 return ret;
55}
56
Michael Lawnick08263742010-08-11 18:21:02 +020057static int i2c_mux_master_xfer(struct i2c_adapter *adap,
58 struct i2c_msg msgs[], int num)
59{
60 struct i2c_mux_priv *priv = adap->algo_data;
Peter Rosina7ab7232016-04-20 08:38:50 +020061 struct i2c_mux_core *muxc = priv->muxc;
62 struct i2c_adapter *parent = muxc->parent;
Michael Lawnick08263742010-08-11 18:21:02 +020063 int ret;
64
65 /* Switch to the right mux port and perform the transfer. */
66
Peter Rosina7ab7232016-04-20 08:38:50 +020067 ret = muxc->select(muxc, priv->chan_id);
Michael Lawnick08263742010-08-11 18:21:02 +020068 if (ret >= 0)
Peter Rosin6ef91fc2016-05-04 22:15:29 +020069 ret = i2c_transfer(parent, msgs, num);
70 if (muxc->deselect)
71 muxc->deselect(muxc, priv->chan_id);
72
73 return ret;
74}
75
76static int __i2c_mux_smbus_xfer(struct i2c_adapter *adap,
77 u16 addr, unsigned short flags,
78 char read_write, u8 command,
79 int size, union i2c_smbus_data *data)
80{
81 struct i2c_mux_priv *priv = adap->algo_data;
82 struct i2c_mux_core *muxc = priv->muxc;
83 struct i2c_adapter *parent = muxc->parent;
84 int ret;
85
86 /* Select the right mux port and perform the transfer. */
87
88 ret = muxc->select(muxc, priv->chan_id);
89 if (ret >= 0)
90 ret = parent->algo->smbus_xfer(parent, addr, flags,
91 read_write, command, size, data);
Peter Rosina7ab7232016-04-20 08:38:50 +020092 if (muxc->deselect)
93 muxc->deselect(muxc, priv->chan_id);
Michael Lawnick08263742010-08-11 18:21:02 +020094
95 return ret;
96}
97
98static int i2c_mux_smbus_xfer(struct i2c_adapter *adap,
99 u16 addr, unsigned short flags,
100 char read_write, u8 command,
101 int size, union i2c_smbus_data *data)
102{
103 struct i2c_mux_priv *priv = adap->algo_data;
Peter Rosina7ab7232016-04-20 08:38:50 +0200104 struct i2c_mux_core *muxc = priv->muxc;
105 struct i2c_adapter *parent = muxc->parent;
Michael Lawnick08263742010-08-11 18:21:02 +0200106 int ret;
107
108 /* Select the right mux port and perform the transfer. */
109
Peter Rosina7ab7232016-04-20 08:38:50 +0200110 ret = muxc->select(muxc, priv->chan_id);
Michael Lawnick08263742010-08-11 18:21:02 +0200111 if (ret >= 0)
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200112 ret = i2c_smbus_xfer(parent, addr, flags,
113 read_write, command, size, data);
Peter Rosina7ab7232016-04-20 08:38:50 +0200114 if (muxc->deselect)
115 muxc->deselect(muxc, priv->chan_id);
Michael Lawnick08263742010-08-11 18:21:02 +0200116
117 return ret;
118}
119
120/* Return the parent's functionality */
121static u32 i2c_mux_functionality(struct i2c_adapter *adap)
122{
123 struct i2c_mux_priv *priv = adap->algo_data;
Peter Rosina7ab7232016-04-20 08:38:50 +0200124 struct i2c_adapter *parent = priv->muxc->parent;
Michael Lawnick08263742010-08-11 18:21:02 +0200125
126 return parent->algo->functionality(parent);
127}
128
Jean Delvareeee543e2012-10-05 22:23:51 +0200129/* Return all parent classes, merged */
130static unsigned int i2c_mux_parent_classes(struct i2c_adapter *parent)
131{
132 unsigned int class = 0;
133
134 do {
135 class |= parent->class;
136 parent = i2c_parent_is_i2c_adapter(parent);
137 } while (parent);
138
139 return class;
140}
141
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200142static void i2c_mux_lock_bus(struct i2c_adapter *adapter, unsigned int flags)
143{
144 struct i2c_mux_priv *priv = adapter->algo_data;
145 struct i2c_adapter *parent = priv->muxc->parent;
146
147 rt_mutex_lock(&parent->mux_lock);
148 if (!(flags & I2C_LOCK_ROOT_ADAPTER))
149 return;
150 i2c_lock_bus(parent, flags);
151}
152
153static int i2c_mux_trylock_bus(struct i2c_adapter *adapter, unsigned int flags)
154{
155 struct i2c_mux_priv *priv = adapter->algo_data;
156 struct i2c_adapter *parent = priv->muxc->parent;
157
158 if (!rt_mutex_trylock(&parent->mux_lock))
159 return 0; /* mux_lock not locked, failure */
160 if (!(flags & I2C_LOCK_ROOT_ADAPTER))
161 return 1; /* we only want mux_lock, success */
Peter Rosinfb79e092016-06-29 15:04:03 +0200162 if (i2c_trylock_bus(parent, flags))
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200163 return 1; /* parent locked too, success */
164 rt_mutex_unlock(&parent->mux_lock);
165 return 0; /* parent not locked, failure */
166}
167
168static void i2c_mux_unlock_bus(struct i2c_adapter *adapter, unsigned int flags)
169{
170 struct i2c_mux_priv *priv = adapter->algo_data;
171 struct i2c_adapter *parent = priv->muxc->parent;
172
173 if (flags & I2C_LOCK_ROOT_ADAPTER)
174 i2c_unlock_bus(parent, flags);
175 rt_mutex_unlock(&parent->mux_lock);
176}
177
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200178static void i2c_parent_lock_bus(struct i2c_adapter *adapter,
179 unsigned int flags)
180{
181 struct i2c_mux_priv *priv = adapter->algo_data;
182 struct i2c_adapter *parent = priv->muxc->parent;
183
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200184 rt_mutex_lock(&parent->mux_lock);
185 i2c_lock_bus(parent, flags);
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200186}
187
188static int i2c_parent_trylock_bus(struct i2c_adapter *adapter,
189 unsigned int flags)
190{
191 struct i2c_mux_priv *priv = adapter->algo_data;
192 struct i2c_adapter *parent = priv->muxc->parent;
193
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200194 if (!rt_mutex_trylock(&parent->mux_lock))
195 return 0; /* mux_lock not locked, failure */
Peter Rosinfb79e092016-06-29 15:04:03 +0200196 if (i2c_trylock_bus(parent, flags))
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200197 return 1; /* parent locked too, success */
198 rt_mutex_unlock(&parent->mux_lock);
199 return 0; /* parent not locked, failure */
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200200}
201
202static void i2c_parent_unlock_bus(struct i2c_adapter *adapter,
203 unsigned int flags)
204{
205 struct i2c_mux_priv *priv = adapter->algo_data;
206 struct i2c_adapter *parent = priv->muxc->parent;
207
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200208 i2c_unlock_bus(parent, flags);
209 rt_mutex_unlock(&parent->mux_lock);
Peter Rosinfa96f0c2016-05-04 22:15:28 +0200210}
211
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200212struct i2c_adapter *i2c_root_adapter(struct device *dev)
213{
214 struct device *i2c;
215 struct i2c_adapter *i2c_root;
216
217 /*
218 * Walk up the device tree to find an i2c adapter, indicating
219 * that this is an i2c client device. Check all ancestors to
220 * handle mfd devices etc.
221 */
222 for (i2c = dev; i2c; i2c = i2c->parent) {
223 if (i2c->type == &i2c_adapter_type)
224 break;
225 }
226 if (!i2c)
227 return NULL;
228
229 /* Continue up the tree to find the root i2c adapter */
230 i2c_root = to_i2c_adapter(i2c);
231 while (i2c_parent_is_i2c_adapter(i2c_root))
232 i2c_root = i2c_parent_is_i2c_adapter(i2c_root);
233
234 return i2c_root;
235}
236EXPORT_SYMBOL_GPL(i2c_root_adapter);
237
Peter Rosina7ab7232016-04-20 08:38:50 +0200238struct i2c_mux_core *i2c_mux_alloc(struct i2c_adapter *parent,
239 struct device *dev, int max_adapters,
240 int sizeof_priv, u32 flags,
241 int (*select)(struct i2c_mux_core *, u32),
242 int (*deselect)(struct i2c_mux_core *, u32))
243{
244 struct i2c_mux_core *muxc;
245
246 muxc = devm_kzalloc(dev, sizeof(*muxc)
247 + max_adapters * sizeof(muxc->adapter[0])
248 + sizeof_priv, GFP_KERNEL);
249 if (!muxc)
250 return NULL;
251 if (sizeof_priv)
252 muxc->priv = &muxc->adapter[max_adapters];
253
254 muxc->parent = parent;
255 muxc->dev = dev;
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200256 if (flags & I2C_MUX_LOCKED)
257 muxc->mux_locked = true;
Peter Rosinb2d57b52016-07-09 21:53:42 +0200258 if (flags & I2C_MUX_ARBITRATOR)
259 muxc->arbitrator = true;
260 if (flags & I2C_MUX_GATE)
261 muxc->gate = true;
Peter Rosina7ab7232016-04-20 08:38:50 +0200262 muxc->select = select;
263 muxc->deselect = deselect;
264 muxc->max_adapters = max_adapters;
265
266 return muxc;
267}
268EXPORT_SYMBOL_GPL(i2c_mux_alloc);
269
Peter Rosind1ed7982016-08-25 23:07:01 +0200270static const struct i2c_lock_operations i2c_mux_lock_ops = {
271 .lock_bus = i2c_mux_lock_bus,
272 .trylock_bus = i2c_mux_trylock_bus,
273 .unlock_bus = i2c_mux_unlock_bus,
274};
275
276static const struct i2c_lock_operations i2c_parent_lock_ops = {
277 .lock_bus = i2c_parent_lock_bus,
278 .trylock_bus = i2c_parent_trylock_bus,
279 .unlock_bus = i2c_parent_unlock_bus,
280};
281
Peter Rosina7ab7232016-04-20 08:38:50 +0200282int i2c_mux_add_adapter(struct i2c_mux_core *muxc,
283 u32 force_nr, u32 chan_id,
284 unsigned int class)
285{
286 struct i2c_adapter *parent = muxc->parent;
Michael Lawnick08263742010-08-11 18:21:02 +0200287 struct i2c_mux_priv *priv;
Gerlando Falautoc9449af2014-11-13 14:39:56 +0100288 char symlink_name[20];
Michael Lawnick08263742010-08-11 18:21:02 +0200289 int ret;
290
Peter Rosina7ab7232016-04-20 08:38:50 +0200291 if (muxc->num_adapters >= muxc->max_adapters) {
292 dev_err(muxc->dev, "No room for more i2c-mux adapters\n");
293 return -EINVAL;
294 }
295
296 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Michael Lawnick08263742010-08-11 18:21:02 +0200297 if (!priv)
Peter Rosina7ab7232016-04-20 08:38:50 +0200298 return -ENOMEM;
Michael Lawnick08263742010-08-11 18:21:02 +0200299
300 /* Set up private adapter data */
Peter Rosina7ab7232016-04-20 08:38:50 +0200301 priv->muxc = muxc;
Michael Lawnick08263742010-08-11 18:21:02 +0200302 priv->chan_id = chan_id;
Michael Lawnick08263742010-08-11 18:21:02 +0200303
304 /* Need to do algo dynamically because we don't know ahead
305 * of time what sort of physical adapter we'll be dealing with.
306 */
Peter Rosin6ef91fc2016-05-04 22:15:29 +0200307 if (parent->algo->master_xfer) {
308 if (muxc->mux_locked)
309 priv->algo.master_xfer = i2c_mux_master_xfer;
310 else
311 priv->algo.master_xfer = __i2c_mux_master_xfer;
312 }
313 if (parent->algo->smbus_xfer) {
314 if (muxc->mux_locked)
315 priv->algo.smbus_xfer = i2c_mux_smbus_xfer;
316 else
317 priv->algo.smbus_xfer = __i2c_mux_smbus_xfer;
318 }
Michael Lawnick08263742010-08-11 18:21:02 +0200319 priv->algo.functionality = i2c_mux_functionality;
320
321 /* Now fill out new adapter structure */
322 snprintf(priv->adap.name, sizeof(priv->adap.name),
323 "i2c-%d-mux (chan_id %d)", i2c_adapter_id(parent), chan_id);
324 priv->adap.owner = THIS_MODULE;
Michael Lawnick08263742010-08-11 18:21:02 +0200325 priv->adap.algo = &priv->algo;
326 priv->adap.algo_data = priv;
327 priv->adap.dev.parent = &parent->dev;
Elie De Brauwer2212a852013-12-09 19:48:28 +0100328 priv->adap.retries = parent->retries;
329 priv->adap.timeout = parent->timeout;
Alexander Sverdlindc362d52015-06-12 14:41:16 +0200330 priv->adap.quirks = parent->quirks;
Peter Rosind1ed7982016-08-25 23:07:01 +0200331 if (muxc->mux_locked)
332 priv->adap.lock_ops = &i2c_mux_lock_ops;
333 else
334 priv->adap.lock_ops = &i2c_parent_lock_ops;
Michael Lawnick08263742010-08-11 18:21:02 +0200335
Jean Delvareeee543e2012-10-05 22:23:51 +0200336 /* Sanity check on class */
337 if (i2c_mux_parent_classes(parent) & class)
338 dev_err(&parent->dev,
339 "Segment %d behind mux can't share classes with ancestors\n",
340 chan_id);
341 else
342 priv->adap.class = class;
343
David Daneybc454492012-04-12 14:14:23 -0700344 /*
345 * Try to populate the mux adapter's of_node, expands to
346 * nothing if !CONFIG_OF.
347 */
Peter Rosina7ab7232016-04-20 08:38:50 +0200348 if (muxc->dev->of_node) {
Peter Rosinb2d57b52016-07-09 21:53:42 +0200349 struct device_node *dev_node = muxc->dev->of_node;
350 struct device_node *mux_node, *child = NULL;
David Daneybc454492012-04-12 14:14:23 -0700351 u32 reg;
352
Peter Rosinb2d57b52016-07-09 21:53:42 +0200353 if (muxc->arbitrator)
354 mux_node = of_get_child_by_name(dev_node, "i2c-arb");
355 else if (muxc->gate)
356 mux_node = of_get_child_by_name(dev_node, "i2c-gate");
357 else
358 mux_node = of_get_child_by_name(dev_node, "i2c-mux");
359
360 if (mux_node) {
361 /* A "reg" property indicates an old-style DT entry */
362 if (!of_property_read_u32(mux_node, "reg", &reg)) {
363 of_node_put(mux_node);
364 mux_node = NULL;
David Daneybc454492012-04-12 14:14:23 -0700365 }
366 }
Peter Rosinb2d57b52016-07-09 21:53:42 +0200367
368 if (!mux_node)
369 mux_node = of_node_get(dev_node);
370 else if (muxc->arbitrator || muxc->gate)
371 child = of_node_get(mux_node);
372
373 if (!child) {
374 for_each_child_of_node(mux_node, child) {
375 ret = of_property_read_u32(child, "reg", &reg);
376 if (ret)
377 continue;
378 if (chan_id == reg)
379 break;
380 }
381 }
382
383 priv->adap.dev.of_node = child;
384 of_node_put(mux_node);
David Daneybc454492012-04-12 14:14:23 -0700385 }
386
Dustin Byford8eb5c872015-10-23 12:27:07 -0700387 /*
388 * Associate the mux channel with an ACPI node.
389 */
Peter Rosina7ab7232016-04-20 08:38:50 +0200390 if (has_acpi_companion(muxc->dev))
391 acpi_preset_companion(&priv->adap.dev,
392 ACPI_COMPANION(muxc->dev),
Dustin Byford8eb5c872015-10-23 12:27:07 -0700393 chan_id);
394
Michael Lawnick08263742010-08-11 18:21:02 +0200395 if (force_nr) {
396 priv->adap.nr = force_nr;
397 ret = i2c_add_numbered_adapter(&priv->adap);
398 } else {
399 ret = i2c_add_adapter(&priv->adap);
400 }
401 if (ret < 0) {
402 dev_err(&parent->dev,
403 "failed to add mux-adapter (error=%d)\n",
404 ret);
405 kfree(priv);
Peter Rosina7ab7232016-04-20 08:38:50 +0200406 return ret;
Michael Lawnick08263742010-08-11 18:21:02 +0200407 }
408
Peter Rosina7ab7232016-04-20 08:38:50 +0200409 WARN(sysfs_create_link(&priv->adap.dev.kobj, &muxc->dev->kobj,
410 "mux_device"),
411 "can't create symlink to mux device\n");
Wolfram Sang51cf3b02014-11-13 14:39:55 +0100412
Gerlando Falautoc9449af2014-11-13 14:39:56 +0100413 snprintf(symlink_name, sizeof(symlink_name), "channel-%u", chan_id);
Peter Rosina7ab7232016-04-20 08:38:50 +0200414 WARN(sysfs_create_link(&muxc->dev->kobj, &priv->adap.dev.kobj,
415 symlink_name),
416 "can't create symlink for channel %u\n", chan_id);
Michael Lawnick08263742010-08-11 18:21:02 +0200417 dev_info(&parent->dev, "Added multiplexed i2c bus %d\n",
418 i2c_adapter_id(&priv->adap));
419
Peter Rosina7ab7232016-04-20 08:38:50 +0200420 muxc->adapter[muxc->num_adapters++] = &priv->adap;
421 return 0;
Michael Lawnick08263742010-08-11 18:21:02 +0200422}
Peter Rosina7ab7232016-04-20 08:38:50 +0200423EXPORT_SYMBOL_GPL(i2c_mux_add_adapter);
424
425void i2c_mux_del_adapters(struct i2c_mux_core *muxc)
426{
427 char symlink_name[20];
428
429 while (muxc->num_adapters) {
430 struct i2c_adapter *adap = muxc->adapter[--muxc->num_adapters];
431 struct i2c_mux_priv *priv = adap->algo_data;
Qi Houac4666a2017-03-03 15:57:11 +0800432 struct device_node *np = adap->dev.of_node;
Peter Rosina7ab7232016-04-20 08:38:50 +0200433
434 muxc->adapter[muxc->num_adapters] = NULL;
435
436 snprintf(symlink_name, sizeof(symlink_name),
437 "channel-%u", priv->chan_id);
438 sysfs_remove_link(&muxc->dev->kobj, symlink_name);
439
440 sysfs_remove_link(&priv->adap.dev.kobj, "mux_device");
441 i2c_del_adapter(adap);
Qi Houac4666a2017-03-03 15:57:11 +0800442 of_node_put(np);
Peter Rosina7ab7232016-04-20 08:38:50 +0200443 kfree(priv);
444 }
445}
446EXPORT_SYMBOL_GPL(i2c_mux_del_adapters);
Michael Lawnick08263742010-08-11 18:21:02 +0200447
Michael Lawnick08263742010-08-11 18:21:02 +0200448MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
449MODULE_DESCRIPTION("I2C driver for multiplexed I2C busses");
450MODULE_LICENSE("GPL v2");