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 <jdelvare@suse.de>.
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/acpi.h>
39 #include <linux/device.h>
40 #include <linux/gpio/consumer.h>
41 #include <linux/i2c.h>
42 #include <linux/i2c-mux.h>
43 #include <linux/i2c/pca954x.h>
44 #include <linux/module.h>
46 #include <linux/of_device.h>
48 #include <linux/slab.h>
50 #define PCA954X_MAX_NCHANS 8
65 u8 enable
; /* used for muxes only */
73 const struct chip_desc
*chip
;
75 u8 last_chan
; /* last register value */
77 struct i2c_client
*client
;
80 /* Provide specs for the PCA954x types we know about */
81 static const struct chip_desc chips
[] = {
85 .muxtype
= pca954x_ismux
,
89 .muxtype
= pca954x_isswi
,
94 .muxtype
= pca954x_ismux
,
98 .muxtype
= pca954x_isswi
,
103 .muxtype
= pca954x_ismux
,
107 .muxtype
= pca954x_isswi
,
111 static const struct i2c_device_id pca954x_id
[] = {
112 { "pca9540", pca_9540
},
113 { "pca9542", pca_9540
},
114 { "pca9543", pca_9543
},
115 { "pca9544", pca_9544
},
116 { "pca9545", pca_9545
},
117 { "pca9546", pca_9545
},
118 { "pca9547", pca_9547
},
119 { "pca9548", pca_9548
},
122 MODULE_DEVICE_TABLE(i2c
, pca954x_id
);
125 static const struct acpi_device_id pca954x_acpi_ids
[] = {
126 { .id
= "PCA9540", .driver_data
= pca_9540
},
127 { .id
= "PCA9542", .driver_data
= pca_9540
},
128 { .id
= "PCA9543", .driver_data
= pca_9543
},
129 { .id
= "PCA9544", .driver_data
= pca_9544
},
130 { .id
= "PCA9545", .driver_data
= pca_9545
},
131 { .id
= "PCA9546", .driver_data
= pca_9545
},
132 { .id
= "PCA9547", .driver_data
= pca_9547
},
133 { .id
= "PCA9548", .driver_data
= pca_9548
},
136 MODULE_DEVICE_TABLE(acpi
, pca954x_acpi_ids
);
140 static const struct of_device_id pca954x_of_match
[] = {
141 { .compatible
= "nxp,pca9540", .data
= &chips
[pca_9540
] },
142 { .compatible
= "nxp,pca9542", .data
= &chips
[pca_9542
] },
143 { .compatible
= "nxp,pca9543", .data
= &chips
[pca_9543
] },
144 { .compatible
= "nxp,pca9544", .data
= &chips
[pca_9544
] },
145 { .compatible
= "nxp,pca9545", .data
= &chips
[pca_9545
] },
146 { .compatible
= "nxp,pca9546", .data
= &chips
[pca_9546
] },
147 { .compatible
= "nxp,pca9547", .data
= &chips
[pca_9547
] },
148 { .compatible
= "nxp,pca9548", .data
= &chips
[pca_9548
] },
153 /* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer()
154 for this as they will try to lock adapter a second time */
155 static int pca954x_reg_write(struct i2c_adapter
*adap
,
156 struct i2c_client
*client
, u8 val
)
160 if (adap
->algo
->master_xfer
) {
164 msg
.addr
= client
->addr
;
169 ret
= __i2c_transfer(adap
, &msg
, 1);
171 if (ret
>= 0 && ret
!= 1)
174 union i2c_smbus_data data
;
175 ret
= adap
->algo
->smbus_xfer(adap
, client
->addr
,
178 val
, I2C_SMBUS_BYTE
, &data
);
184 static int pca954x_select_chan(struct i2c_mux_core
*muxc
, u32 chan
)
186 struct pca954x
*data
= i2c_mux_priv(muxc
);
187 struct i2c_client
*client
= data
->client
;
188 const struct chip_desc
*chip
= data
->chip
;
192 /* we make switches look like muxes, not sure how to be smarter */
193 if (chip
->muxtype
== pca954x_ismux
)
194 regval
= chan
| chip
->enable
;
198 /* Only select the channel if its different from the last channel */
199 if (data
->last_chan
!= regval
) {
200 ret
= pca954x_reg_write(muxc
->parent
, client
, regval
);
201 data
->last_chan
= ret
< 0 ? 0 : regval
;
207 static int pca954x_deselect_mux(struct i2c_mux_core
*muxc
, u32 chan
)
209 struct pca954x
*data
= i2c_mux_priv(muxc
);
210 struct i2c_client
*client
= data
->client
;
212 if (!(data
->deselect
& (1 << chan
)))
215 /* Deselect active channel */
217 return pca954x_reg_write(muxc
->parent
, client
, data
->last_chan
);
221 * I2C init/probing/exit functions
223 static int pca954x_probe(struct i2c_client
*client
,
224 const struct i2c_device_id
*id
)
226 struct i2c_adapter
*adap
= to_i2c_adapter(client
->dev
.parent
);
227 struct pca954x_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
228 struct device_node
*of_node
= client
->dev
.of_node
;
229 bool idle_disconnect_dt
;
230 struct gpio_desc
*gpio
;
231 int num
, force
, class;
232 struct i2c_mux_core
*muxc
;
233 struct pca954x
*data
;
234 const struct of_device_id
*match
;
237 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_BYTE
))
240 muxc
= i2c_mux_alloc(adap
, &client
->dev
,
241 PCA954X_MAX_NCHANS
, sizeof(*data
), 0,
242 pca954x_select_chan
, pca954x_deselect_mux
);
245 data
= i2c_mux_priv(muxc
);
247 i2c_set_clientdata(client
, muxc
);
248 data
->client
= client
;
250 /* Get the mux out of reset if a reset GPIO is specified. */
251 gpio
= devm_gpiod_get_optional(&client
->dev
, "reset", GPIOD_OUT_LOW
);
253 return PTR_ERR(gpio
);
255 /* Write the mux register at addr to verify
256 * that the mux is in fact present. This also
257 * initializes the mux to disconnected state.
259 if (i2c_smbus_write_byte(client
, 0) < 0) {
260 dev_warn(&client
->dev
, "probe failed\n");
264 match
= of_match_device(of_match_ptr(pca954x_of_match
), &client
->dev
);
266 data
->chip
= of_device_get_match_data(&client
->dev
);
268 data
->chip
= &chips
[id
->driver_data
];
270 const struct acpi_device_id
*acpi_id
;
272 acpi_id
= acpi_match_device(ACPI_PTR(pca954x_acpi_ids
),
276 data
->chip
= &chips
[acpi_id
->driver_data
];
279 data
->last_chan
= 0; /* force the first selection */
281 idle_disconnect_dt
= of_node
&&
282 of_property_read_bool(of_node
, "i2c-mux-idle-disconnect");
284 /* Now create an adapter for each channel */
285 for (num
= 0; num
< data
->chip
->nchans
; num
++) {
286 bool idle_disconnect_pd
= false;
288 force
= 0; /* dynamic adap number */
289 class = 0; /* no class by default */
291 if (num
< pdata
->num_modes
) {
292 /* force static number */
293 force
= pdata
->modes
[num
].adap_id
;
294 class = pdata
->modes
[num
].class;
296 /* discard unconfigured channels */
298 idle_disconnect_pd
= pdata
->modes
[num
].deselect_on_exit
;
300 data
->deselect
|= (idle_disconnect_pd
||
301 idle_disconnect_dt
) << num
;
303 ret
= i2c_mux_add_adapter(muxc
, force
, num
, class);
306 dev_err(&client
->dev
,
307 "failed to register multiplexed adapter"
308 " %d as bus %d\n", num
, force
);
309 goto virt_reg_failed
;
313 dev_info(&client
->dev
,
314 "registered %d multiplexed busses for I2C %s %s\n",
315 num
, data
->chip
->muxtype
== pca954x_ismux
316 ? "mux" : "switch", client
->name
);
321 i2c_mux_del_adapters(muxc
);
325 static int pca954x_remove(struct i2c_client
*client
)
327 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
329 i2c_mux_del_adapters(muxc
);
333 #ifdef CONFIG_PM_SLEEP
334 static int pca954x_resume(struct device
*dev
)
336 struct i2c_client
*client
= to_i2c_client(dev
);
337 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
338 struct pca954x
*data
= i2c_mux_priv(muxc
);
341 return i2c_smbus_write_byte(client
, 0);
345 static SIMPLE_DEV_PM_OPS(pca954x_pm
, NULL
, pca954x_resume
);
347 static struct i2c_driver pca954x_driver
= {
351 .of_match_table
= of_match_ptr(pca954x_of_match
),
352 .acpi_match_table
= ACPI_PTR(pca954x_acpi_ids
),
354 .probe
= pca954x_probe
,
355 .remove
= pca954x_remove
,
356 .id_table
= pca954x_id
,
359 module_i2c_driver(pca954x_driver
);
361 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
362 MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
363 MODULE_LICENSE("GPL v2");