2 * I2C multiplexer driver for PCA9541 bus master selector
4 * Copyright (c) 2010 Ericsson AB.
6 * Author: Guenter Roeck <linux@roeck-us.net>
11 * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it>
12 * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it>
14 * This file is licensed under the terms of the GNU General Public
15 * License version 2. This program is licensed "as is" without any
16 * warranty of any kind, whether express or implied.
19 #include <linux/module.h>
20 #include <linux/jiffies.h>
21 #include <linux/delay.h>
22 #include <linux/slab.h>
23 #include <linux/device.h>
24 #include <linux/i2c.h>
25 #include <linux/i2c-mux.h>
27 #include <linux/i2c/pca954x.h>
30 * The PCA9541 is a bus master selector. It supports two I2C masters connected
31 * to a single slave bus.
33 * Before each bus transaction, a master has to acquire bus ownership. After the
34 * transaction is complete, bus ownership has to be released. This fits well
35 * into the I2C multiplexer framework, which provides select and release
36 * functions for this purpose. For this reason, this driver is modeled as
37 * single-channel I2C bus multiplexer.
39 * This driver assumes that the two bus masters are controlled by two different
40 * hosts. If a single host controls both masters, platform code has to ensure
41 * that only one of the masters is instantiated at any given time.
44 #define PCA9541_CONTROL 0x01
45 #define PCA9541_ISTAT 0x02
47 #define PCA9541_CTL_MYBUS (1 << 0)
48 #define PCA9541_CTL_NMYBUS (1 << 1)
49 #define PCA9541_CTL_BUSON (1 << 2)
50 #define PCA9541_CTL_NBUSON (1 << 3)
51 #define PCA9541_CTL_BUSINIT (1 << 4)
52 #define PCA9541_CTL_TESTON (1 << 6)
53 #define PCA9541_CTL_NTESTON (1 << 7)
55 #define PCA9541_ISTAT_INTIN (1 << 0)
56 #define PCA9541_ISTAT_BUSINIT (1 << 1)
57 #define PCA9541_ISTAT_BUSOK (1 << 2)
58 #define PCA9541_ISTAT_BUSLOST (1 << 3)
59 #define PCA9541_ISTAT_MYTEST (1 << 6)
60 #define PCA9541_ISTAT_NMYTEST (1 << 7)
62 #define BUSON (PCA9541_CTL_BUSON | PCA9541_CTL_NBUSON)
63 #define MYBUS (PCA9541_CTL_MYBUS | PCA9541_CTL_NMYBUS)
64 #define mybus(x) (!((x) & MYBUS) || ((x) & MYBUS) == MYBUS)
65 #define busoff(x) (!((x) & BUSON) || ((x) & BUSON) == BUSON)
67 /* arbitration timeouts, in jiffies */
68 #define ARB_TIMEOUT (HZ / 8) /* 125 ms until forcing bus ownership */
69 #define ARB2_TIMEOUT (HZ / 4) /* 250 ms until acquisition failure */
71 /* arbitration retry delays, in us */
72 #define SELECT_DELAY_SHORT 50
73 #define SELECT_DELAY_LONG 1000
76 struct i2c_client
*client
;
77 unsigned long select_timeout
;
78 unsigned long arb_timeout
;
81 static const struct i2c_device_id pca9541_id
[] = {
86 MODULE_DEVICE_TABLE(i2c
, pca9541_id
);
89 static const struct of_device_id pca9541_of_match
[] = {
90 { .compatible
= "nxp,pca9541" },
96 * Write to chip register. Don't use i2c_transfer()/i2c_smbus_xfer()
97 * as they will try to lock the adapter a second time.
99 static int pca9541_reg_write(struct i2c_client
*client
, u8 command
, u8 val
)
101 struct i2c_adapter
*adap
= client
->adapter
;
104 if (adap
->algo
->master_xfer
) {
108 msg
.addr
= client
->addr
;
114 ret
= __i2c_transfer(adap
, &msg
, 1);
116 union i2c_smbus_data data
;
119 ret
= adap
->algo
->smbus_xfer(adap
, client
->addr
,
123 I2C_SMBUS_BYTE_DATA
, &data
);
130 * Read from chip register. Don't use i2c_transfer()/i2c_smbus_xfer()
131 * as they will try to lock adapter a second time.
133 static int pca9541_reg_read(struct i2c_client
*client
, u8 command
)
135 struct i2c_adapter
*adap
= client
->adapter
;
139 if (adap
->algo
->master_xfer
) {
140 struct i2c_msg msg
[2] = {
142 .addr
= client
->addr
,
148 .addr
= client
->addr
,
154 ret
= __i2c_transfer(adap
, msg
, 2);
160 union i2c_smbus_data data
;
162 ret
= adap
->algo
->smbus_xfer(adap
, client
->addr
,
166 I2C_SMBUS_BYTE_DATA
, &data
);
174 * Arbitration management functions
177 /* Release bus. Also reset NTESTON and BUSINIT if it was set. */
178 static void pca9541_release_bus(struct i2c_client
*client
)
182 reg
= pca9541_reg_read(client
, PCA9541_CONTROL
);
183 if (reg
>= 0 && !busoff(reg
) && mybus(reg
))
184 pca9541_reg_write(client
, PCA9541_CONTROL
,
185 (reg
& PCA9541_CTL_NBUSON
) >> 1);
189 * Arbitration is defined as a two-step process. A bus master can only activate
190 * the slave bus if it owns it; otherwise it has to request ownership first.
191 * This multi-step process ensures that access contention is resolved
194 * Bus Ownership Other master Action
195 * state requested access
196 * ----------------------------------------------------
197 * off - yes wait for arbitration timeout or
198 * for other master to drop request
199 * off no no take ownership
200 * off yes no turn on bus
202 * on no - wait for arbitration timeout or
203 * for other master to release bus
205 * The main contention point occurs if the slave bus is off and both masters
206 * request ownership at the same time. In this case, one master will turn on
207 * the slave bus, believing that it owns it. The other master will request
208 * bus ownership. Result is that the bus is turned on, and master which did
209 * _not_ own the slave bus before ends up owning it.
212 /* Control commands per PCA9541 datasheet */
213 static const u8 pca9541_control
[16] = {
214 4, 0, 1, 5, 4, 4, 5, 5, 0, 0, 1, 1, 0, 4, 5, 1
218 * Channel arbitration
222 * 0 : bus not acquired
225 static int pca9541_arbitrate(struct i2c_client
*client
)
227 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
228 struct pca9541
*data
= i2c_mux_priv(muxc
);
231 reg
= pca9541_reg_read(client
, PCA9541_CONTROL
);
238 * Bus is off. Request ownership or turn it on unless
239 * other master requested ownership.
241 istat
= pca9541_reg_read(client
, PCA9541_ISTAT
);
242 if (!(istat
& PCA9541_ISTAT_NMYTEST
)
243 || time_is_before_eq_jiffies(data
->arb_timeout
)) {
245 * Other master did not request ownership,
246 * or arbitration timeout expired. Take the bus.
248 pca9541_reg_write(client
,
250 pca9541_control
[reg
& 0x0f]
251 | PCA9541_CTL_NTESTON
);
252 data
->select_timeout
= SELECT_DELAY_SHORT
;
255 * Other master requested ownership.
256 * Set extra long timeout to give it time to acquire it.
258 data
->select_timeout
= SELECT_DELAY_LONG
* 2;
260 } else if (mybus(reg
)) {
262 * Bus is on, and we own it. We are done with acquisition.
263 * Reset NTESTON and BUSINIT, then return success.
265 if (reg
& (PCA9541_CTL_NTESTON
| PCA9541_CTL_BUSINIT
))
266 pca9541_reg_write(client
,
268 reg
& ~(PCA9541_CTL_NTESTON
269 | PCA9541_CTL_BUSINIT
));
273 * Other master owns the bus.
274 * If arbitration timeout has expired, force ownership.
275 * Otherwise request it.
277 data
->select_timeout
= SELECT_DELAY_LONG
;
278 if (time_is_before_eq_jiffies(data
->arb_timeout
)) {
279 /* Time is up, take the bus and reset it. */
280 pca9541_reg_write(client
,
282 pca9541_control
[reg
& 0x0f]
283 | PCA9541_CTL_BUSINIT
284 | PCA9541_CTL_NTESTON
);
286 /* Request bus ownership if needed */
287 if (!(reg
& PCA9541_CTL_NTESTON
))
288 pca9541_reg_write(client
,
290 reg
| PCA9541_CTL_NTESTON
);
296 static int pca9541_select_chan(struct i2c_mux_core
*muxc
, u32 chan
)
298 struct pca9541
*data
= i2c_mux_priv(muxc
);
299 struct i2c_client
*client
= data
->client
;
301 unsigned long timeout
= jiffies
+ ARB2_TIMEOUT
;
302 /* give up after this time */
304 data
->arb_timeout
= jiffies
+ ARB_TIMEOUT
;
305 /* force bus ownership after this time */
308 ret
= pca9541_arbitrate(client
);
310 return ret
< 0 ? ret
: 0;
312 if (data
->select_timeout
== SELECT_DELAY_SHORT
)
313 udelay(data
->select_timeout
);
315 msleep(data
->select_timeout
/ 1000);
316 } while (time_is_after_eq_jiffies(timeout
));
321 static int pca9541_release_chan(struct i2c_mux_core
*muxc
, u32 chan
)
323 struct pca9541
*data
= i2c_mux_priv(muxc
);
324 struct i2c_client
*client
= data
->client
;
326 pca9541_release_bus(client
);
331 * I2C init/probing/exit functions
333 static int pca9541_probe(struct i2c_client
*client
,
334 const struct i2c_device_id
*id
)
336 struct i2c_adapter
*adap
= client
->adapter
;
337 struct pca954x_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
338 struct i2c_mux_core
*muxc
;
339 struct pca9541
*data
;
343 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_BYTE_DATA
))
347 * I2C accesses are unprotected here.
348 * We have to lock the adapter before releasing the bus.
350 i2c_lock_adapter(adap
);
351 pca9541_release_bus(client
);
352 i2c_unlock_adapter(adap
);
354 /* Create mux adapter */
358 force
= pdata
->modes
[0].adap_id
;
359 muxc
= i2c_mux_alloc(adap
, &client
->dev
, 1, sizeof(*data
),
361 pca9541_select_chan
, pca9541_release_chan
);
365 data
= i2c_mux_priv(muxc
);
366 data
->client
= client
;
368 i2c_set_clientdata(client
, muxc
);
370 ret
= i2c_mux_add_adapter(muxc
, force
, 0, 0);
372 dev_err(&client
->dev
, "failed to register master selector\n");
376 dev_info(&client
->dev
, "registered master selector for I2C %s\n",
382 static int pca9541_remove(struct i2c_client
*client
)
384 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
386 i2c_mux_del_adapters(muxc
);
390 static struct i2c_driver pca9541_driver
= {
393 .of_match_table
= of_match_ptr(pca9541_of_match
),
395 .probe
= pca9541_probe
,
396 .remove
= pca9541_remove
,
397 .id_table
= pca9541_id
,
400 module_i2c_driver(pca9541_driver
);
402 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
403 MODULE_DESCRIPTION("PCA9541 I2C master selector driver");
404 MODULE_LICENSE("GPL v2");