4 * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it>
7 * This module supports the PCA954x series of I2C multiplexer/switch chips
8 * made by Philips Semiconductors.
10 * PCA9540, PCA9542, PCA9543, PCA9544, PCA9545, PCA9546, PCA9547
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.
21 * pca954x.c from Kumar Gala <galak@kernel.crashing.org>
25 * pca954x.c from Ken Harrenstien
26 * Copyright (C) 2004 Google, Inc. (Ken Harrenstien)
29 * i2c-virtual_cb.c from Brian Kuschak <bkuschak@yahoo.com>
31 * pca9540.c from Jean Delvare <khali@linux-fr.org>.
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.
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/slab.h>
41 #include <linux/device.h>
42 #include <linux/i2c.h>
43 #include <linux/i2c-mux.h>
45 #include <linux/i2c/pca954x.h>
47 #define PCA954X_MAX_NCHANS 8
62 struct i2c_adapter
*virt_adaps
[PCA954X_MAX_NCHANS
];
64 u8 last_chan
; /* last register value */
69 u8 enable
; /* used for muxes only */
76 /* Provide specs for the PCA954x types we know about */
77 static const struct chip_desc chips
[] = {
81 .muxtype
= pca954x_ismux
,
85 .muxtype
= pca954x_isswi
,
90 .muxtype
= pca954x_ismux
,
94 .muxtype
= pca954x_isswi
,
99 .muxtype
= pca954x_ismux
,
103 .muxtype
= pca954x_isswi
,
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
},
118 MODULE_DEVICE_TABLE(i2c
, pca954x_id
);
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
)
127 if (adap
->algo
->master_xfer
) {
131 msg
.addr
= client
->addr
;
136 ret
= adap
->algo
->master_xfer(adap
, &msg
, 1);
138 union i2c_smbus_data data
;
139 ret
= adap
->algo
->smbus_xfer(adap
, client
->addr
,
142 val
, I2C_SMBUS_BYTE
, &data
);
148 static int pca954x_select_chan(struct i2c_adapter
*adap
,
149 void *client
, u32 chan
)
151 struct pca954x
*data
= i2c_get_clientdata(client
);
152 const struct chip_desc
*chip
= &chips
[data
->type
];
156 /* we make switches look like muxes, not sure how to be smarter */
157 if (chip
->muxtype
== pca954x_ismux
)
158 regval
= chan
| chip
->enable
;
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
;
171 static int pca954x_deselect_mux(struct i2c_adapter
*adap
,
172 void *client
, u32 chan
)
174 struct pca954x
*data
= i2c_get_clientdata(client
);
176 /* Deselect active channel */
178 return pca954x_reg_write(adap
, client
, data
->last_chan
);
182 * I2C init/probing/exit functions
184 static int pca954x_probe(struct i2c_client
*client
,
185 const struct i2c_device_id
*id
)
187 struct i2c_adapter
*adap
= to_i2c_adapter(client
->dev
.parent
);
188 struct pca954x_platform_data
*pdata
= client
->dev
.platform_data
;
190 struct pca954x
*data
;
193 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_BYTE
))
196 data
= kzalloc(sizeof(struct pca954x
), GFP_KERNEL
);
202 i2c_set_clientdata(client
, data
);
204 /* Read the mux register at addr to verify
205 * that the mux is in fact present.
207 if (i2c_smbus_read_byte(client
) < 0) {
208 dev_warn(&client
->dev
, "probe failed\n");
212 data
->type
= id
->driver_data
;
213 data
->last_chan
= 0; /* force the first selection */
215 /* Now create an adapter for each channel */
216 for (num
= 0; num
< chips
[data
->type
].nchans
; num
++) {
217 force
= 0; /* dynamic adap number */
219 if (num
< pdata
->num_modes
)
220 /* force static number */
221 force
= pdata
->modes
[num
].adap_id
;
223 /* discard unconfigured channels */
227 data
->virt_adaps
[num
] =
228 i2c_add_mux_adapter(adap
, client
,
229 force
, num
, pca954x_select_chan
,
230 (pdata
&& pdata
->modes
[num
].deselect_on_exit
)
231 ? pca954x_deselect_mux
: NULL
);
233 if (data
->virt_adaps
[num
] == NULL
) {
235 dev_err(&client
->dev
,
236 "failed to register multiplexed adapter"
237 " %d as bus %d\n", num
, force
);
238 goto virt_reg_failed
;
242 dev_info(&client
->dev
,
243 "registered %d multiplexed busses for I2C %s %s\n",
244 num
, chips
[data
->type
].muxtype
== pca954x_ismux
245 ? "mux" : "switch", client
->name
);
250 for (num
--; num
>= 0; num
--)
251 i2c_del_mux_adapter(data
->virt_adaps
[num
]);
258 static int pca954x_remove(struct i2c_client
*client
)
260 struct pca954x
*data
= i2c_get_clientdata(client
);
261 const struct chip_desc
*chip
= &chips
[data
->type
];
264 for (i
= 0; i
< chip
->nchans
; ++i
)
265 if (data
->virt_adaps
[i
]) {
266 err
= i2c_del_mux_adapter(data
->virt_adaps
[i
]);
269 data
->virt_adaps
[i
] = NULL
;
276 static struct i2c_driver pca954x_driver
= {
279 .owner
= THIS_MODULE
,
281 .probe
= pca954x_probe
,
282 .remove
= pca954x_remove
,
283 .id_table
= pca954x_id
,
286 static int __init
pca954x_init(void)
288 return i2c_add_driver(&pca954x_driver
);
291 static void __exit
pca954x_exit(void)
293 i2c_del_driver(&pca954x_driver
);
296 module_init(pca954x_init
);
297 module_exit(pca954x_exit
);
299 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
300 MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
301 MODULE_LICENSE("GPL v2");