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 and PCA954x series of I2C multiplexer/switch
8 * chips made by NXP Semiconductors.
10 * PCA9540, PCA9542, PCA9543, PCA9544, PCA9545, PCA9546, PCA9547,
11 * PCA9548, PCA9846, PCA9847, PCA9848 and PCA9849.
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/device.h>
39 #include <linux/gpio/consumer.h>
40 #include <linux/i2c.h>
41 #include <linux/i2c-mux.h>
42 #include <linux/interrupt.h>
43 #include <linux/irq.h>
44 #include <linux/module.h>
46 #include <linux/of_device.h>
47 #include <linux/of_irq.h>
48 #include <linux/platform_data/pca954x.h>
50 #include <linux/slab.h>
51 #include <linux/spinlock.h>
53 #define PCA954X_MAX_NCHANS 8
55 #define PCA954X_IRQ_OFFSET 4
74 u8 enable
; /* used for muxes only */
83 const struct chip_desc
*chip
;
85 u8 last_chan
; /* last register value */
87 struct i2c_client
*client
;
89 struct irq_domain
*irq
;
90 unsigned int irq_mask
;
94 /* Provide specs for the PCA954x types we know about */
95 static const struct chip_desc chips
[] = {
99 .muxtype
= pca954x_ismux
,
105 .muxtype
= pca954x_ismux
,
110 .muxtype
= pca954x_isswi
,
116 .muxtype
= pca954x_ismux
,
121 .muxtype
= pca954x_isswi
,
125 .muxtype
= pca954x_isswi
,
130 .muxtype
= pca954x_ismux
,
134 .muxtype
= pca954x_isswi
,
138 .muxtype
= pca954x_isswi
,
143 .muxtype
= pca954x_ismux
,
147 .muxtype
= pca954x_isswi
,
152 .muxtype
= pca954x_ismux
,
156 static const struct i2c_device_id pca954x_id
[] = {
157 { "pca9540", pca_9540
},
158 { "pca9542", pca_9542
},
159 { "pca9543", pca_9543
},
160 { "pca9544", pca_9544
},
161 { "pca9545", pca_9545
},
162 { "pca9546", pca_9546
},
163 { "pca9547", pca_9547
},
164 { "pca9548", pca_9548
},
165 { "pca9846", pca_9846
},
166 { "pca9847", pca_9847
},
167 { "pca9848", pca_9848
},
168 { "pca9849", pca_9849
},
171 MODULE_DEVICE_TABLE(i2c
, pca954x_id
);
174 static const struct of_device_id pca954x_of_match
[] = {
175 { .compatible
= "nxp,pca9540", .data
= &chips
[pca_9540
] },
176 { .compatible
= "nxp,pca9542", .data
= &chips
[pca_9542
] },
177 { .compatible
= "nxp,pca9543", .data
= &chips
[pca_9543
] },
178 { .compatible
= "nxp,pca9544", .data
= &chips
[pca_9544
] },
179 { .compatible
= "nxp,pca9545", .data
= &chips
[pca_9545
] },
180 { .compatible
= "nxp,pca9546", .data
= &chips
[pca_9546
] },
181 { .compatible
= "nxp,pca9547", .data
= &chips
[pca_9547
] },
182 { .compatible
= "nxp,pca9548", .data
= &chips
[pca_9548
] },
183 { .compatible
= "nxp,pca9846", .data
= &chips
[pca_9846
] },
184 { .compatible
= "nxp,pca9847", .data
= &chips
[pca_9847
] },
185 { .compatible
= "nxp,pca9848", .data
= &chips
[pca_9848
] },
186 { .compatible
= "nxp,pca9849", .data
= &chips
[pca_9849
] },
189 MODULE_DEVICE_TABLE(of
, pca954x_of_match
);
192 /* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer()
193 for this as they will try to lock adapter a second time */
194 static int pca954x_reg_write(struct i2c_adapter
*adap
,
195 struct i2c_client
*client
, u8 val
)
199 if (adap
->algo
->master_xfer
) {
203 msg
.addr
= client
->addr
;
208 ret
= __i2c_transfer(adap
, &msg
, 1);
210 if (ret
>= 0 && ret
!= 1)
213 union i2c_smbus_data data
;
214 ret
= adap
->algo
->smbus_xfer(adap
, client
->addr
,
217 val
, I2C_SMBUS_BYTE
, &data
);
223 static int pca954x_select_chan(struct i2c_mux_core
*muxc
, u32 chan
)
225 struct pca954x
*data
= i2c_mux_priv(muxc
);
226 struct i2c_client
*client
= data
->client
;
227 const struct chip_desc
*chip
= data
->chip
;
231 /* we make switches look like muxes, not sure how to be smarter */
232 if (chip
->muxtype
== pca954x_ismux
)
233 regval
= chan
| chip
->enable
;
237 /* Only select the channel if its different from the last channel */
238 if (data
->last_chan
!= regval
) {
239 ret
= pca954x_reg_write(muxc
->parent
, client
, regval
);
240 data
->last_chan
= ret
< 0 ? 0 : regval
;
246 static int pca954x_deselect_mux(struct i2c_mux_core
*muxc
, u32 chan
)
248 struct pca954x
*data
= i2c_mux_priv(muxc
);
249 struct i2c_client
*client
= data
->client
;
251 if (!(data
->deselect
& (1 << chan
)))
254 /* Deselect active channel */
256 return pca954x_reg_write(muxc
->parent
, client
, data
->last_chan
);
259 static irqreturn_t
pca954x_irq_handler(int irq
, void *dev_id
)
261 struct pca954x
*data
= dev_id
;
262 unsigned int child_irq
;
263 int ret
, i
, handled
= 0;
265 ret
= i2c_smbus_read_byte(data
->client
);
269 for (i
= 0; i
< data
->chip
->nchans
; i
++) {
270 if (ret
& BIT(PCA954X_IRQ_OFFSET
+ i
)) {
271 child_irq
= irq_linear_revmap(data
->irq
, i
);
272 handle_nested_irq(child_irq
);
276 return handled
? IRQ_HANDLED
: IRQ_NONE
;
279 static int pca954x_irq_set_type(struct irq_data
*idata
, unsigned int type
)
281 if ((type
& IRQ_TYPE_SENSE_MASK
) != IRQ_TYPE_LEVEL_LOW
)
286 static struct irq_chip pca954x_irq_chip
= {
287 .name
= "i2c-mux-pca954x",
288 .irq_set_type
= pca954x_irq_set_type
,
291 static int pca954x_irq_setup(struct i2c_mux_core
*muxc
)
293 struct pca954x
*data
= i2c_mux_priv(muxc
);
294 struct i2c_client
*client
= data
->client
;
297 if (!data
->chip
->has_irq
|| client
->irq
<= 0)
300 raw_spin_lock_init(&data
->lock
);
302 data
->irq
= irq_domain_add_linear(client
->dev
.of_node
,
304 &irq_domain_simple_ops
, data
);
308 for (c
= 0; c
< data
->chip
->nchans
; c
++) {
309 irq
= irq_create_mapping(data
->irq
, c
);
311 dev_err(&client
->dev
, "failed irq create map\n");
314 irq_set_chip_data(irq
, data
);
315 irq_set_chip_and_handler(irq
, &pca954x_irq_chip
,
322 static void pca954x_cleanup(struct i2c_mux_core
*muxc
)
324 struct pca954x
*data
= i2c_mux_priv(muxc
);
328 for (c
= 0; c
< data
->chip
->nchans
; c
++) {
329 irq
= irq_find_mapping(data
->irq
, c
);
330 irq_dispose_mapping(irq
);
332 irq_domain_remove(data
->irq
);
334 i2c_mux_del_adapters(muxc
);
338 * I2C init/probing/exit functions
340 static int pca954x_probe(struct i2c_client
*client
,
341 const struct i2c_device_id
*id
)
343 struct i2c_adapter
*adap
= to_i2c_adapter(client
->dev
.parent
);
344 struct pca954x_platform_data
*pdata
= dev_get_platdata(&client
->dev
);
345 struct device_node
*of_node
= client
->dev
.of_node
;
346 bool idle_disconnect_dt
;
347 struct gpio_desc
*gpio
;
348 int num
, force
, class;
349 struct i2c_mux_core
*muxc
;
350 struct pca954x
*data
;
351 const struct of_device_id
*match
;
354 if (!i2c_check_functionality(adap
, I2C_FUNC_SMBUS_BYTE
))
357 muxc
= i2c_mux_alloc(adap
, &client
->dev
,
358 PCA954X_MAX_NCHANS
, sizeof(*data
), 0,
359 pca954x_select_chan
, pca954x_deselect_mux
);
362 data
= i2c_mux_priv(muxc
);
364 i2c_set_clientdata(client
, muxc
);
365 data
->client
= client
;
367 /* Get the mux out of reset if a reset GPIO is specified. */
368 gpio
= devm_gpiod_get_optional(&client
->dev
, "reset", GPIOD_OUT_LOW
);
370 return PTR_ERR(gpio
);
372 /* Write the mux register at addr to verify
373 * that the mux is in fact present. This also
374 * initializes the mux to disconnected state.
376 if (i2c_smbus_write_byte(client
, 0) < 0) {
377 dev_warn(&client
->dev
, "probe failed\n");
381 match
= of_match_device(of_match_ptr(pca954x_of_match
), &client
->dev
);
383 data
->chip
= of_device_get_match_data(&client
->dev
);
385 data
->chip
= &chips
[id
->driver_data
];
387 data
->last_chan
= 0; /* force the first selection */
389 idle_disconnect_dt
= of_node
&&
390 of_property_read_bool(of_node
, "i2c-mux-idle-disconnect");
392 ret
= pca954x_irq_setup(muxc
);
396 /* Now create an adapter for each channel */
397 for (num
= 0; num
< data
->chip
->nchans
; num
++) {
398 bool idle_disconnect_pd
= false;
400 force
= 0; /* dynamic adap number */
401 class = 0; /* no class by default */
403 if (num
< pdata
->num_modes
) {
404 /* force static number */
405 force
= pdata
->modes
[num
].adap_id
;
406 class = pdata
->modes
[num
].class;
408 /* discard unconfigured channels */
410 idle_disconnect_pd
= pdata
->modes
[num
].deselect_on_exit
;
412 data
->deselect
|= (idle_disconnect_pd
||
413 idle_disconnect_dt
) << num
;
415 ret
= i2c_mux_add_adapter(muxc
, force
, num
, class);
421 ret
= devm_request_threaded_irq(&client
->dev
, data
->client
->irq
,
422 NULL
, pca954x_irq_handler
,
423 IRQF_ONESHOT
| IRQF_SHARED
,
429 dev_info(&client
->dev
,
430 "registered %d multiplexed busses for I2C %s %s\n",
431 num
, data
->chip
->muxtype
== pca954x_ismux
432 ? "mux" : "switch", client
->name
);
437 pca954x_cleanup(muxc
);
441 static int pca954x_remove(struct i2c_client
*client
)
443 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
445 pca954x_cleanup(muxc
);
449 #ifdef CONFIG_PM_SLEEP
450 static int pca954x_resume(struct device
*dev
)
452 struct i2c_client
*client
= to_i2c_client(dev
);
453 struct i2c_mux_core
*muxc
= i2c_get_clientdata(client
);
454 struct pca954x
*data
= i2c_mux_priv(muxc
);
457 return i2c_smbus_write_byte(client
, 0);
461 static SIMPLE_DEV_PM_OPS(pca954x_pm
, NULL
, pca954x_resume
);
463 static struct i2c_driver pca954x_driver
= {
467 .of_match_table
= of_match_ptr(pca954x_of_match
),
469 .probe
= pca954x_probe
,
470 .remove
= pca954x_remove
,
471 .id_table
= pca954x_id
,
474 module_i2c_driver(pca954x_driver
);
476 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
477 MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
478 MODULE_LICENSE("GPL v2");