2 * Multiplexed I2C bus driver.
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>
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).
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>
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.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/i2c.h>
26 #include <linux/i2c-mux.h>
29 /* multiplexer per channel data */
31 struct i2c_adapter adap
;
32 struct i2c_algorithm algo
;
34 struct i2c_adapter
*parent
;
35 void *mux_priv
; /* the mux chip/device */
36 u32 chan_id
; /* the channel id */
38 int (*select
)(struct i2c_adapter
*, void *mux_priv
, u32 chan_id
);
39 int (*deselect
)(struct i2c_adapter
*, void *mux_priv
, u32 chan_id
);
42 static int i2c_mux_master_xfer(struct i2c_adapter
*adap
,
43 struct i2c_msg msgs
[], int num
)
45 struct i2c_mux_priv
*priv
= adap
->algo_data
;
46 struct i2c_adapter
*parent
= priv
->parent
;
49 /* Switch to the right mux port and perform the transfer. */
51 ret
= priv
->select(parent
, priv
->mux_priv
, priv
->chan_id
);
53 ret
= parent
->algo
->master_xfer(parent
, msgs
, num
);
55 priv
->deselect(parent
, priv
->mux_priv
, priv
->chan_id
);
60 static int i2c_mux_smbus_xfer(struct i2c_adapter
*adap
,
61 u16 addr
, unsigned short flags
,
62 char read_write
, u8 command
,
63 int size
, union i2c_smbus_data
*data
)
65 struct i2c_mux_priv
*priv
= adap
->algo_data
;
66 struct i2c_adapter
*parent
= priv
->parent
;
69 /* Select the right mux port and perform the transfer. */
71 ret
= priv
->select(parent
, priv
->mux_priv
, priv
->chan_id
);
73 ret
= parent
->algo
->smbus_xfer(parent
, addr
, flags
,
74 read_write
, command
, size
, data
);
76 priv
->deselect(parent
, priv
->mux_priv
, priv
->chan_id
);
81 /* Return the parent's functionality */
82 static u32
i2c_mux_functionality(struct i2c_adapter
*adap
)
84 struct i2c_mux_priv
*priv
= adap
->algo_data
;
85 struct i2c_adapter
*parent
= priv
->parent
;
87 return parent
->algo
->functionality(parent
);
90 /* Return all parent classes, merged */
91 static unsigned int i2c_mux_parent_classes(struct i2c_adapter
*parent
)
93 unsigned int class = 0;
96 class |= parent
->class;
97 parent
= i2c_parent_is_i2c_adapter(parent
);
103 struct i2c_adapter
*i2c_add_mux_adapter(struct i2c_adapter
*parent
,
104 struct device
*mux_dev
,
105 void *mux_priv
, u32 force_nr
, u32 chan_id
,
107 int (*select
) (struct i2c_adapter
*,
109 int (*deselect
) (struct i2c_adapter
*,
112 struct i2c_mux_priv
*priv
;
115 priv
= kzalloc(sizeof(struct i2c_mux_priv
), GFP_KERNEL
);
119 /* Set up private adapter data */
120 priv
->parent
= parent
;
121 priv
->mux_priv
= mux_priv
;
122 priv
->chan_id
= chan_id
;
123 priv
->select
= select
;
124 priv
->deselect
= deselect
;
126 /* Need to do algo dynamically because we don't know ahead
127 * of time what sort of physical adapter we'll be dealing with.
129 if (parent
->algo
->master_xfer
)
130 priv
->algo
.master_xfer
= i2c_mux_master_xfer
;
131 if (parent
->algo
->smbus_xfer
)
132 priv
->algo
.smbus_xfer
= i2c_mux_smbus_xfer
;
133 priv
->algo
.functionality
= i2c_mux_functionality
;
135 /* Now fill out new adapter structure */
136 snprintf(priv
->adap
.name
, sizeof(priv
->adap
.name
),
137 "i2c-%d-mux (chan_id %d)", i2c_adapter_id(parent
), chan_id
);
138 priv
->adap
.owner
= THIS_MODULE
;
139 priv
->adap
.algo
= &priv
->algo
;
140 priv
->adap
.algo_data
= priv
;
141 priv
->adap
.dev
.parent
= &parent
->dev
;
142 priv
->adap
.retries
= parent
->retries
;
143 priv
->adap
.timeout
= parent
->timeout
;
145 /* Sanity check on class */
146 if (i2c_mux_parent_classes(parent
) & class)
147 dev_err(&parent
->dev
,
148 "Segment %d behind mux can't share classes with ancestors\n",
151 priv
->adap
.class = class;
154 * Try to populate the mux adapter's of_node, expands to
155 * nothing if !CONFIG_OF.
157 if (mux_dev
->of_node
) {
158 struct device_node
*child
;
161 for_each_child_of_node(mux_dev
->of_node
, child
) {
162 ret
= of_property_read_u32(child
, "reg", ®
);
165 if (chan_id
== reg
) {
166 priv
->adap
.dev
.of_node
= child
;
173 priv
->adap
.nr
= force_nr
;
174 ret
= i2c_add_numbered_adapter(&priv
->adap
);
176 ret
= i2c_add_adapter(&priv
->adap
);
179 dev_err(&parent
->dev
,
180 "failed to add mux-adapter (error=%d)\n",
186 dev_info(&parent
->dev
, "Added multiplexed i2c bus %d\n",
187 i2c_adapter_id(&priv
->adap
));
191 EXPORT_SYMBOL_GPL(i2c_add_mux_adapter
);
193 void i2c_del_mux_adapter(struct i2c_adapter
*adap
)
195 struct i2c_mux_priv
*priv
= adap
->algo_data
;
197 i2c_del_adapter(adap
);
200 EXPORT_SYMBOL_GPL(i2c_del_mux_adapter
);
202 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
203 MODULE_DESCRIPTION("I2C driver for multiplexed I2C busses");
204 MODULE_LICENSE("GPL v2");
This page took 0.053315 seconds and 5 git commands to generate.