blob: 333a3918b6568164d4a7f99dab5d93e7525cbb49 [file] [log] [blame]
Michael Lawnick7f528132010-08-11 18:21:03 +02001/*
2 * I2C multiplexer
3 *
4 * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it>
6 *
7 * This module supports the PCA954x series of I2C multiplexer/switch chips
8 * made by Philips Semiconductors.
9 * This includes the:
10 * PCA9540, PCA9542, PCA9543, PCA9544, PCA9545, PCA9546, PCA9547
11 * and PCA9548.
12 *
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.
19 *
20 * Based on:
21 * pca954x.c from Kumar Gala <galak@kernel.crashing.org>
22 * Copyright (C) 2006
23 *
24 * Based on:
25 * pca954x.c from Ken Harrenstien
26 * Copyright (C) 2004 Google, Inc. (Ken Harrenstien)
27 *
28 * Based on:
29 * i2c-virtual_cb.c from Brian Kuschak <bkuschak@yahoo.com>
30 * and
Jean Delvare7c81c602014-01-29 20:40:08 +010031 * pca9540.c from Jean Delvare <jdelvare@suse.de>.
Michael Lawnick7f528132010-08-11 18:21:03 +020032 *
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.
36 */
37
Michael Lawnick7f528132010-08-11 18:21:03 +020038#include <linux/device.h>
Laurent Pinchart642653d2014-06-04 18:56:32 +020039#include <linux/gpio/consumer.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020040#include <linux/i2c.h>
41#include <linux/i2c-mux.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020042#include <linux/i2c/pca954x.h>
Phil Reidf2114792017-01-25 09:31:08 +080043#include <linux/interrupt.h>
44#include <linux/irq.h>
Laurent Pinchart4b9b0072013-11-29 01:51:22 +010045#include <linux/module.h>
Alexander Sverdlin72f02712015-01-23 16:41:29 +010046#include <linux/of.h>
Peter Rosin8a191a72016-07-09 21:21:15 +020047#include <linux/of_device.h>
Phil Reidf2114792017-01-25 09:31:08 +080048#include <linux/of_irq.h>
Jisheng Zhangf5e596c2014-07-25 19:57:46 +080049#include <linux/pm.h>
Laurent Pinchart4b9b0072013-11-29 01:51:22 +010050#include <linux/slab.h>
Phil Reidf2114792017-01-25 09:31:08 +080051#include <linux/spinlock.h>
Michael Lawnick7f528132010-08-11 18:21:03 +020052
53#define PCA954X_MAX_NCHANS 8
54
Phil Reidf2114792017-01-25 09:31:08 +080055#define PCA954X_IRQ_OFFSET 4
56
Michael Lawnick7f528132010-08-11 18:21:03 +020057enum pca_type {
58 pca_9540,
59 pca_9542,
60 pca_9543,
61 pca_9544,
62 pca_9545,
63 pca_9546,
64 pca_9547,
65 pca_9548,
66};
67
Michael Lawnick7f528132010-08-11 18:21:03 +020068struct chip_desc {
69 u8 nchans;
70 u8 enable; /* used for muxes only */
Phil Reidf2114792017-01-25 09:31:08 +080071 u8 has_irq;
Michael Lawnick7f528132010-08-11 18:21:03 +020072 enum muxtype {
73 pca954x_ismux = 0,
74 pca954x_isswi
75 } muxtype;
76};
77
Peter Rosin8a191a72016-07-09 21:21:15 +020078struct pca954x {
79 const struct chip_desc *chip;
80
81 u8 last_chan; /* last register value */
82 u8 deselect;
83 struct i2c_client *client;
Phil Reidf2114792017-01-25 09:31:08 +080084
85 struct irq_domain *irq;
86 unsigned int irq_mask;
87 spinlock_t lock;
Peter Rosin8a191a72016-07-09 21:21:15 +020088};
89
Michael Lawnick7f528132010-08-11 18:21:03 +020090/* Provide specs for the PCA954x types we know about */
91static const struct chip_desc chips[] = {
92 [pca_9540] = {
93 .nchans = 2,
94 .enable = 0x4,
95 .muxtype = pca954x_ismux,
96 },
Phil Reidf8251f12017-01-25 09:31:06 +080097 [pca_9542] = {
98 .nchans = 2,
99 .enable = 0x4,
Phil Reidf2114792017-01-25 09:31:08 +0800100 .has_irq = 1,
Phil Reidf8251f12017-01-25 09:31:06 +0800101 .muxtype = pca954x_ismux,
102 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200103 [pca_9543] = {
104 .nchans = 2,
Phil Reidf2114792017-01-25 09:31:08 +0800105 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200106 .muxtype = pca954x_isswi,
107 },
108 [pca_9544] = {
109 .nchans = 4,
110 .enable = 0x4,
Phil Reidf2114792017-01-25 09:31:08 +0800111 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200112 .muxtype = pca954x_ismux,
113 },
114 [pca_9545] = {
115 .nchans = 4,
Phil Reidf2114792017-01-25 09:31:08 +0800116 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200117 .muxtype = pca954x_isswi,
118 },
119 [pca_9547] = {
120 .nchans = 8,
121 .enable = 0x8,
122 .muxtype = pca954x_ismux,
123 },
124 [pca_9548] = {
125 .nchans = 8,
126 .muxtype = pca954x_isswi,
127 },
128};
129
130static const struct i2c_device_id pca954x_id[] = {
131 { "pca9540", pca_9540 },
Phil Reidf8251f12017-01-25 09:31:06 +0800132 { "pca9542", pca_9542 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200133 { "pca9543", pca_9543 },
134 { "pca9544", pca_9544 },
135 { "pca9545", pca_9545 },
136 { "pca9546", pca_9545 },
137 { "pca9547", pca_9547 },
138 { "pca9548", pca_9548 },
139 { }
140};
141MODULE_DEVICE_TABLE(i2c, pca954x_id);
142
Peter Rosin8a191a72016-07-09 21:21:15 +0200143#ifdef CONFIG_OF
144static const struct of_device_id pca954x_of_match[] = {
145 { .compatible = "nxp,pca9540", .data = &chips[pca_9540] },
146 { .compatible = "nxp,pca9542", .data = &chips[pca_9542] },
147 { .compatible = "nxp,pca9543", .data = &chips[pca_9543] },
148 { .compatible = "nxp,pca9544", .data = &chips[pca_9544] },
149 { .compatible = "nxp,pca9545", .data = &chips[pca_9545] },
150 { .compatible = "nxp,pca9546", .data = &chips[pca_9546] },
151 { .compatible = "nxp,pca9547", .data = &chips[pca_9547] },
152 { .compatible = "nxp,pca9548", .data = &chips[pca_9548] },
153 {}
154};
Javier Martinez Canillasacf6ef12017-01-16 10:54:54 -0300155MODULE_DEVICE_TABLE(of, pca954x_of_match);
Peter Rosin8a191a72016-07-09 21:21:15 +0200156#endif
157
Michael Lawnick7f528132010-08-11 18:21:03 +0200158/* Write to mux register. Don't use i2c_transfer()/i2c_smbus_xfer()
159 for this as they will try to lock adapter a second time */
160static int pca954x_reg_write(struct i2c_adapter *adap,
161 struct i2c_client *client, u8 val)
162{
163 int ret = -ENODEV;
164
165 if (adap->algo->master_xfer) {
166 struct i2c_msg msg;
167 char buf[1];
168
169 msg.addr = client->addr;
170 msg.flags = 0;
171 msg.len = 1;
172 buf[0] = val;
173 msg.buf = buf;
Alexander Sverdlin0a8237a2015-06-12 14:41:00 +0200174 ret = __i2c_transfer(adap, &msg, 1);
Russell King7f638c12016-12-17 12:10:56 +0000175
176 if (ret >= 0 && ret != 1)
177 ret = -EREMOTEIO;
Michael Lawnick7f528132010-08-11 18:21:03 +0200178 } else {
179 union i2c_smbus_data data;
180 ret = adap->algo->smbus_xfer(adap, client->addr,
181 client->flags,
182 I2C_SMBUS_WRITE,
183 val, I2C_SMBUS_BYTE, &data);
184 }
185
186 return ret;
187}
188
Peter Rosin7fcac982016-04-20 08:40:14 +0200189static int pca954x_select_chan(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200190{
Peter Rosin7fcac982016-04-20 08:40:14 +0200191 struct pca954x *data = i2c_mux_priv(muxc);
192 struct i2c_client *client = data->client;
Peter Rosin8a191a72016-07-09 21:21:15 +0200193 const struct chip_desc *chip = data->chip;
Michael Lawnick7f528132010-08-11 18:21:03 +0200194 u8 regval;
195 int ret = 0;
196
197 /* we make switches look like muxes, not sure how to be smarter */
198 if (chip->muxtype == pca954x_ismux)
199 regval = chan | chip->enable;
200 else
201 regval = 1 << chan;
202
203 /* Only select the channel if its different from the last channel */
204 if (data->last_chan != regval) {
Peter Rosin7fcac982016-04-20 08:40:14 +0200205 ret = pca954x_reg_write(muxc->parent, client, regval);
Russell King7f638c12016-12-17 12:10:56 +0000206 data->last_chan = ret < 0 ? 0 : regval;
Michael Lawnick7f528132010-08-11 18:21:03 +0200207 }
208
209 return ret;
210}
211
Peter Rosin7fcac982016-04-20 08:40:14 +0200212static int pca954x_deselect_mux(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200213{
Peter Rosin7fcac982016-04-20 08:40:14 +0200214 struct pca954x *data = i2c_mux_priv(muxc);
215 struct i2c_client *client = data->client;
216
217 if (!(data->deselect & (1 << chan)))
218 return 0;
Michael Lawnick7f528132010-08-11 18:21:03 +0200219
220 /* Deselect active channel */
221 data->last_chan = 0;
Peter Rosin7fcac982016-04-20 08:40:14 +0200222 return pca954x_reg_write(muxc->parent, client, data->last_chan);
Michael Lawnick7f528132010-08-11 18:21:03 +0200223}
224
Phil Reidf2114792017-01-25 09:31:08 +0800225static irqreturn_t pca954x_irq_handler(int irq, void *dev_id)
226{
227 struct pca954x *data = dev_id;
228 unsigned int child_irq;
229 int ret, i, handled = 0;
230
231 ret = i2c_smbus_read_byte(data->client);
232 if (ret < 0)
233 return IRQ_NONE;
234
235 for (i = 0; i < data->chip->nchans; i++) {
236 if (ret & BIT(PCA954X_IRQ_OFFSET + i)) {
237 child_irq = irq_linear_revmap(data->irq, i);
238 handle_nested_irq(child_irq);
239 handled++;
240 }
241 }
242 return handled ? IRQ_HANDLED : IRQ_NONE;
243}
244
245static void pca954x_irq_mask(struct irq_data *idata)
246{
247 struct pca954x *data = irq_data_get_irq_chip_data(idata);
248 unsigned int pos = idata->hwirq;
249 unsigned long flags;
250
251 spin_lock_irqsave(&data->lock, flags);
252
253 data->irq_mask &= ~BIT(pos);
254 if (!data->irq_mask)
255 disable_irq(data->client->irq);
256
257 spin_unlock_irqrestore(&data->lock, flags);
258}
259
260static void pca954x_irq_unmask(struct irq_data *idata)
261{
262 struct pca954x *data = irq_data_get_irq_chip_data(idata);
263 unsigned int pos = idata->hwirq;
264 unsigned long flags;
265
266 spin_lock_irqsave(&data->lock, flags);
267
268 if (!data->irq_mask)
269 enable_irq(data->client->irq);
270 data->irq_mask |= BIT(pos);
271
272 spin_unlock_irqrestore(&data->lock, flags);
273}
274
275static int pca954x_irq_set_type(struct irq_data *idata, unsigned int type)
276{
277 if ((type & IRQ_TYPE_SENSE_MASK) != IRQ_TYPE_LEVEL_LOW)
278 return -EINVAL;
279 return 0;
280}
281
282static struct irq_chip pca954x_irq_chip = {
283 .name = "i2c-mux-pca954x",
284 .irq_mask = pca954x_irq_mask,
285 .irq_unmask = pca954x_irq_unmask,
286 .irq_set_type = pca954x_irq_set_type,
287};
288
289static int pca954x_irq_setup(struct i2c_mux_core *muxc)
290{
291 struct pca954x *data = i2c_mux_priv(muxc);
292 struct i2c_client *client = data->client;
293 int c, err, irq;
294
295 if (!data->chip->has_irq || client->irq <= 0)
296 return 0;
297
298 spin_lock_init(&data->lock);
299
300 data->irq = irq_domain_add_linear(client->dev.of_node,
301 data->chip->nchans,
302 &irq_domain_simple_ops, data);
303 if (!data->irq)
304 return -ENODEV;
305
306 for (c = 0; c < data->chip->nchans; c++) {
307 irq = irq_create_mapping(data->irq, c);
308 irq_set_chip_data(irq, data);
309 irq_set_chip_and_handler(irq, &pca954x_irq_chip,
310 handle_simple_irq);
311 }
312
313 err = devm_request_threaded_irq(&client->dev, data->client->irq, NULL,
314 pca954x_irq_handler,
315 IRQF_ONESHOT | IRQF_SHARED,
316 "pca954x", data);
317 if (err)
318 goto err_req_irq;
319
320 disable_irq(data->client->irq);
321
322 return 0;
323err_req_irq:
324 for (c = 0; c < data->chip->nchans; c++) {
325 irq = irq_find_mapping(data->irq, c);
326 irq_dispose_mapping(irq);
327 }
328 irq_domain_remove(data->irq);
329
330 return err;
331}
332
Michael Lawnick7f528132010-08-11 18:21:03 +0200333/*
334 * I2C init/probing/exit functions
335 */
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200336static int pca954x_probe(struct i2c_client *client,
337 const struct i2c_device_id *id)
Michael Lawnick7f528132010-08-11 18:21:03 +0200338{
339 struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent);
Jingoo Han6d4028c2013-07-30 16:59:33 +0900340 struct pca954x_platform_data *pdata = dev_get_platdata(&client->dev);
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100341 struct device_node *of_node = client->dev.of_node;
342 bool idle_disconnect_dt;
Laurent Pinchart4807e842014-06-03 13:15:26 +0200343 struct gpio_desc *gpio;
Jean Delvareeee543e2012-10-05 22:23:51 +0200344 int num, force, class;
Peter Rosin7fcac982016-04-20 08:40:14 +0200345 struct i2c_mux_core *muxc;
Michael Lawnick7f528132010-08-11 18:21:03 +0200346 struct pca954x *data;
Peter Rosin8a191a72016-07-09 21:21:15 +0200347 const struct of_device_id *match;
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100348 int ret;
Michael Lawnick7f528132010-08-11 18:21:03 +0200349
350 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_BYTE))
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100351 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200352
Peter Rosin7fcac982016-04-20 08:40:14 +0200353 muxc = i2c_mux_alloc(adap, &client->dev,
354 PCA954X_MAX_NCHANS, sizeof(*data), 0,
355 pca954x_select_chan, pca954x_deselect_mux);
356 if (!muxc)
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100357 return -ENOMEM;
Peter Rosin7fcac982016-04-20 08:40:14 +0200358 data = i2c_mux_priv(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200359
Peter Rosin7fcac982016-04-20 08:40:14 +0200360 i2c_set_clientdata(client, muxc);
361 data->client = client;
Michael Lawnick7f528132010-08-11 18:21:03 +0200362
Laurent Pinchart4807e842014-06-03 13:15:26 +0200363 /* Get the mux out of reset if a reset GPIO is specified. */
Uwe Kleine-König58b59e02015-02-17 10:12:08 +0100364 gpio = devm_gpiod_get_optional(&client->dev, "reset", GPIOD_OUT_LOW);
365 if (IS_ERR(gpio))
366 return PTR_ERR(gpio);
Laurent Pinchart12097952013-11-29 01:51:25 +0100367
Petri Gynthercd823db2011-06-29 11:36:11 +0200368 /* Write the mux register at addr to verify
369 * that the mux is in fact present. This also
370 * initializes the mux to disconnected state.
Michael Lawnick7f528132010-08-11 18:21:03 +0200371 */
Petri Gynthercd823db2011-06-29 11:36:11 +0200372 if (i2c_smbus_write_byte(client, 0) < 0) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200373 dev_warn(&client->dev, "probe failed\n");
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100374 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200375 }
376
Peter Rosin8a191a72016-07-09 21:21:15 +0200377 match = of_match_device(of_match_ptr(pca954x_of_match), &client->dev);
378 if (match)
379 data->chip = of_device_get_match_data(&client->dev);
Andy Shevchenkoe88162f2017-03-21 21:13:09 +0200380 else
Peter Rosin8a191a72016-07-09 21:21:15 +0200381 data->chip = &chips[id->driver_data];
382
Michael Lawnick7f528132010-08-11 18:21:03 +0200383 data->last_chan = 0; /* force the first selection */
384
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100385 idle_disconnect_dt = of_node &&
386 of_property_read_bool(of_node, "i2c-mux-idle-disconnect");
387
Phil Reidf2114792017-01-25 09:31:08 +0800388 ret = pca954x_irq_setup(muxc);
389 if (ret)
390 goto fail_del_adapters;
391
Michael Lawnick7f528132010-08-11 18:21:03 +0200392 /* Now create an adapter for each channel */
Peter Rosin8a191a72016-07-09 21:21:15 +0200393 for (num = 0; num < data->chip->nchans; num++) {
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100394 bool idle_disconnect_pd = false;
395
Michael Lawnick7f528132010-08-11 18:21:03 +0200396 force = 0; /* dynamic adap number */
Jean Delvareeee543e2012-10-05 22:23:51 +0200397 class = 0; /* no class by default */
Michael Lawnick7f528132010-08-11 18:21:03 +0200398 if (pdata) {
Jean Delvareeee543e2012-10-05 22:23:51 +0200399 if (num < pdata->num_modes) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200400 /* force static number */
401 force = pdata->modes[num].adap_id;
Jean Delvareeee543e2012-10-05 22:23:51 +0200402 class = pdata->modes[num].class;
403 } else
Michael Lawnick7f528132010-08-11 18:21:03 +0200404 /* discard unconfigured channels */
405 break;
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100406 idle_disconnect_pd = pdata->modes[num].deselect_on_exit;
Michael Lawnick7f528132010-08-11 18:21:03 +0200407 }
Alex Hemmead092de2016-11-19 10:48:38 +0100408 data->deselect |= (idle_disconnect_pd ||
409 idle_disconnect_dt) << num;
Michael Lawnick7f528132010-08-11 18:21:03 +0200410
Peter Rosin7fcac982016-04-20 08:40:14 +0200411 ret = i2c_mux_add_adapter(muxc, force, num, class);
Michael Lawnick7f528132010-08-11 18:21:03 +0200412
Peter Rosin7fcac982016-04-20 08:40:14 +0200413 if (ret) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200414 dev_err(&client->dev,
415 "failed to register multiplexed adapter"
416 " %d as bus %d\n", num, force);
Phil Reidf2114792017-01-25 09:31:08 +0800417 goto fail_del_adapters;
Michael Lawnick7f528132010-08-11 18:21:03 +0200418 }
419 }
420
421 dev_info(&client->dev,
422 "registered %d multiplexed busses for I2C %s %s\n",
Peter Rosin8a191a72016-07-09 21:21:15 +0200423 num, data->chip->muxtype == pca954x_ismux
Michael Lawnick7f528132010-08-11 18:21:03 +0200424 ? "mux" : "switch", client->name);
425
426 return 0;
427
Phil Reidf2114792017-01-25 09:31:08 +0800428fail_del_adapters:
Peter Rosin7fcac982016-04-20 08:40:14 +0200429 i2c_mux_del_adapters(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200430 return ret;
431}
432
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200433static int pca954x_remove(struct i2c_client *client)
Michael Lawnick7f528132010-08-11 18:21:03 +0200434{
Peter Rosin7fcac982016-04-20 08:40:14 +0200435 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
Phil Reidf2114792017-01-25 09:31:08 +0800436 struct pca954x *data = i2c_mux_priv(muxc);
437 int c, irq;
438
439 if (data->irq) {
440 for (c = 0; c < data->chip->nchans; c++) {
441 irq = irq_find_mapping(data->irq, c);
442 irq_dispose_mapping(irq);
443 }
444 irq_domain_remove(data->irq);
445 }
Michael Lawnick7f528132010-08-11 18:21:03 +0200446
Peter Rosin7fcac982016-04-20 08:40:14 +0200447 i2c_mux_del_adapters(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200448 return 0;
449}
450
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800451#ifdef CONFIG_PM_SLEEP
452static int pca954x_resume(struct device *dev)
453{
454 struct i2c_client *client = to_i2c_client(dev);
Peter Rosin7fcac982016-04-20 08:40:14 +0200455 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
456 struct pca954x *data = i2c_mux_priv(muxc);
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800457
458 data->last_chan = 0;
459 return i2c_smbus_write_byte(client, 0);
460}
461#endif
462
463static SIMPLE_DEV_PM_OPS(pca954x_pm, NULL, pca954x_resume);
464
Michael Lawnick7f528132010-08-11 18:21:03 +0200465static struct i2c_driver pca954x_driver = {
466 .driver = {
467 .name = "pca954x",
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800468 .pm = &pca954x_pm,
Peter Rosin8a191a72016-07-09 21:21:15 +0200469 .of_match_table = of_match_ptr(pca954x_of_match),
Michael Lawnick7f528132010-08-11 18:21:03 +0200470 },
471 .probe = pca954x_probe,
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200472 .remove = pca954x_remove,
Michael Lawnick7f528132010-08-11 18:21:03 +0200473 .id_table = pca954x_id,
474};
475
Axel Linde054972012-03-26 21:47:19 +0200476module_i2c_driver(pca954x_driver);
Michael Lawnick7f528132010-08-11 18:21:03 +0200477
478MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
479MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
480MODULE_LICENSE("GPL v2");