blob: fbb84c7ef282976a9a1d4a4f96185d448f60eeed [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 *
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +01007 * This module supports the PCA954x and PCA954x series of I2C multiplexer/switch
8 * chips made by NXP Semiconductors.
Michael Lawnick7f528132010-08-11 18:21:03 +02009 * This includes the:
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +010010 * PCA9540, PCA9542, PCA9543, PCA9544, PCA9545, PCA9546, PCA9547,
11 * PCA9548, PCA9846, PCA9847, PCA9848 and PCA9849.
Michael Lawnick7f528132010-08-11 18:21:03 +020012 *
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>
Phil Reidf2114792017-01-25 09:31:08 +080042#include <linux/interrupt.h>
43#include <linux/irq.h>
Laurent Pinchart4b9b0072013-11-29 01:51:22 +010044#include <linux/module.h>
Alexander Sverdlin72f02712015-01-23 16:41:29 +010045#include <linux/of.h>
Peter Rosin8a191a72016-07-09 21:21:15 +020046#include <linux/of_device.h>
Phil Reidf2114792017-01-25 09:31:08 +080047#include <linux/of_irq.h>
Wolfram Sang2be03ae2017-08-14 10:23:25 +020048#include <linux/platform_data/pca954x.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,
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +010066 pca_9846,
67 pca_9847,
68 pca_9848,
69 pca_9849,
Michael Lawnick7f528132010-08-11 18:21:03 +020070};
71
Michael Lawnick7f528132010-08-11 18:21:03 +020072struct chip_desc {
73 u8 nchans;
74 u8 enable; /* used for muxes only */
Phil Reidf2114792017-01-25 09:31:08 +080075 u8 has_irq;
Michael Lawnick7f528132010-08-11 18:21:03 +020076 enum muxtype {
77 pca954x_ismux = 0,
78 pca954x_isswi
79 } muxtype;
80};
81
Peter Rosin8a191a72016-07-09 21:21:15 +020082struct pca954x {
83 const struct chip_desc *chip;
84
85 u8 last_chan; /* last register value */
86 u8 deselect;
87 struct i2c_client *client;
Phil Reidf2114792017-01-25 09:31:08 +080088
89 struct irq_domain *irq;
90 unsigned int irq_mask;
Julia Cartwright743cc372017-03-09 10:21:59 -060091 raw_spinlock_t lock;
Peter Rosin8a191a72016-07-09 21:21:15 +020092};
93
Michael Lawnick7f528132010-08-11 18:21:03 +020094/* Provide specs for the PCA954x types we know about */
95static const struct chip_desc chips[] = {
96 [pca_9540] = {
97 .nchans = 2,
98 .enable = 0x4,
99 .muxtype = pca954x_ismux,
100 },
Phil Reidf8251f12017-01-25 09:31:06 +0800101 [pca_9542] = {
102 .nchans = 2,
103 .enable = 0x4,
Phil Reidf2114792017-01-25 09:31:08 +0800104 .has_irq = 1,
Phil Reidf8251f12017-01-25 09:31:06 +0800105 .muxtype = pca954x_ismux,
106 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200107 [pca_9543] = {
108 .nchans = 2,
Phil Reidf2114792017-01-25 09:31:08 +0800109 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200110 .muxtype = pca954x_isswi,
111 },
112 [pca_9544] = {
113 .nchans = 4,
114 .enable = 0x4,
Phil Reidf2114792017-01-25 09:31:08 +0800115 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200116 .muxtype = pca954x_ismux,
117 },
118 [pca_9545] = {
119 .nchans = 4,
Phil Reidf2114792017-01-25 09:31:08 +0800120 .has_irq = 1,
Michael Lawnick7f528132010-08-11 18:21:03 +0200121 .muxtype = pca954x_isswi,
122 },
Mike Looijmansdbe4d692017-03-23 10:00:36 +0100123 [pca_9546] = {
124 .nchans = 4,
125 .muxtype = pca954x_isswi,
126 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200127 [pca_9547] = {
128 .nchans = 8,
129 .enable = 0x8,
130 .muxtype = pca954x_ismux,
131 },
132 [pca_9548] = {
133 .nchans = 8,
134 .muxtype = pca954x_isswi,
135 },
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +0100136 [pca_9846] = {
137 .nchans = 4,
138 .muxtype = pca954x_isswi,
139 },
140 [pca_9847] = {
141 .nchans = 8,
142 .enable = 0x8,
143 .muxtype = pca954x_ismux,
144 },
145 [pca_9848] = {
146 .nchans = 8,
147 .muxtype = pca954x_isswi,
148 },
149 [pca_9849] = {
150 .nchans = 4,
151 .enable = 0x4,
152 .muxtype = pca954x_ismux,
153 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200154};
155
156static const struct i2c_device_id pca954x_id[] = {
157 { "pca9540", pca_9540 },
Phil Reidf8251f12017-01-25 09:31:06 +0800158 { "pca9542", pca_9542 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200159 { "pca9543", pca_9543 },
160 { "pca9544", pca_9544 },
161 { "pca9545", pca_9545 },
Mike Looijmansdbe4d692017-03-23 10:00:36 +0100162 { "pca9546", pca_9546 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200163 { "pca9547", pca_9547 },
164 { "pca9548", pca_9548 },
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +0100165 { "pca9846", pca_9846 },
166 { "pca9847", pca_9847 },
167 { "pca9848", pca_9848 },
168 { "pca9849", pca_9849 },
Michael Lawnick7f528132010-08-11 18:21:03 +0200169 { }
170};
171MODULE_DEVICE_TABLE(i2c, pca954x_id);
172
Peter Rosin8a191a72016-07-09 21:21:15 +0200173#ifdef CONFIG_OF
174static 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] },
Adrian Fiergolski8f6d6012017-12-25 22:26:46 +0100183 { .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] },
Peter Rosin8a191a72016-07-09 21:21:15 +0200187 {}
188};
Javier Martinez Canillasacf6ef12017-01-16 10:54:54 -0300189MODULE_DEVICE_TABLE(of, pca954x_of_match);
Peter Rosin8a191a72016-07-09 21:21:15 +0200190#endif
191
Michael Lawnick7f528132010-08-11 18:21:03 +0200192/* 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 */
194static int pca954x_reg_write(struct i2c_adapter *adap,
195 struct i2c_client *client, u8 val)
196{
197 int ret = -ENODEV;
198
199 if (adap->algo->master_xfer) {
200 struct i2c_msg msg;
201 char buf[1];
202
203 msg.addr = client->addr;
204 msg.flags = 0;
205 msg.len = 1;
206 buf[0] = val;
207 msg.buf = buf;
Alexander Sverdlin0a8237a2015-06-12 14:41:00 +0200208 ret = __i2c_transfer(adap, &msg, 1);
Russell King7f638c12016-12-17 12:10:56 +0000209
210 if (ret >= 0 && ret != 1)
211 ret = -EREMOTEIO;
Michael Lawnick7f528132010-08-11 18:21:03 +0200212 } else {
213 union i2c_smbus_data data;
214 ret = adap->algo->smbus_xfer(adap, client->addr,
215 client->flags,
216 I2C_SMBUS_WRITE,
217 val, I2C_SMBUS_BYTE, &data);
218 }
219
220 return ret;
221}
222
Peter Rosin7fcac982016-04-20 08:40:14 +0200223static int pca954x_select_chan(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200224{
Peter Rosin7fcac982016-04-20 08:40:14 +0200225 struct pca954x *data = i2c_mux_priv(muxc);
226 struct i2c_client *client = data->client;
Peter Rosin8a191a72016-07-09 21:21:15 +0200227 const struct chip_desc *chip = data->chip;
Michael Lawnick7f528132010-08-11 18:21:03 +0200228 u8 regval;
229 int ret = 0;
230
231 /* we make switches look like muxes, not sure how to be smarter */
232 if (chip->muxtype == pca954x_ismux)
233 regval = chan | chip->enable;
234 else
235 regval = 1 << chan;
236
237 /* Only select the channel if its different from the last channel */
238 if (data->last_chan != regval) {
Peter Rosin7fcac982016-04-20 08:40:14 +0200239 ret = pca954x_reg_write(muxc->parent, client, regval);
Russell King7f638c12016-12-17 12:10:56 +0000240 data->last_chan = ret < 0 ? 0 : regval;
Michael Lawnick7f528132010-08-11 18:21:03 +0200241 }
242
243 return ret;
244}
245
Peter Rosin7fcac982016-04-20 08:40:14 +0200246static int pca954x_deselect_mux(struct i2c_mux_core *muxc, u32 chan)
Michael Lawnick7f528132010-08-11 18:21:03 +0200247{
Peter Rosin7fcac982016-04-20 08:40:14 +0200248 struct pca954x *data = i2c_mux_priv(muxc);
249 struct i2c_client *client = data->client;
250
251 if (!(data->deselect & (1 << chan)))
252 return 0;
Michael Lawnick7f528132010-08-11 18:21:03 +0200253
254 /* Deselect active channel */
255 data->last_chan = 0;
Peter Rosin7fcac982016-04-20 08:40:14 +0200256 return pca954x_reg_write(muxc->parent, client, data->last_chan);
Michael Lawnick7f528132010-08-11 18:21:03 +0200257}
258
Phil Reidf2114792017-01-25 09:31:08 +0800259static irqreturn_t pca954x_irq_handler(int irq, void *dev_id)
260{
261 struct pca954x *data = dev_id;
262 unsigned int child_irq;
263 int ret, i, handled = 0;
264
265 ret = i2c_smbus_read_byte(data->client);
266 if (ret < 0)
267 return IRQ_NONE;
268
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);
273 handled++;
274 }
275 }
276 return handled ? IRQ_HANDLED : IRQ_NONE;
277}
278
Phil Reidf2114792017-01-25 09:31:08 +0800279static int pca954x_irq_set_type(struct irq_data *idata, unsigned int type)
280{
281 if ((type & IRQ_TYPE_SENSE_MASK) != IRQ_TYPE_LEVEL_LOW)
282 return -EINVAL;
283 return 0;
284}
285
286static struct irq_chip pca954x_irq_chip = {
287 .name = "i2c-mux-pca954x",
Phil Reidf2114792017-01-25 09:31:08 +0800288 .irq_set_type = pca954x_irq_set_type,
289};
290
291static int pca954x_irq_setup(struct i2c_mux_core *muxc)
292{
293 struct pca954x *data = i2c_mux_priv(muxc);
294 struct i2c_client *client = data->client;
Phil Reid148baf12017-08-24 17:31:05 +0800295 int c, irq;
Phil Reidf2114792017-01-25 09:31:08 +0800296
297 if (!data->chip->has_irq || client->irq <= 0)
298 return 0;
299
Julia Cartwright743cc372017-03-09 10:21:59 -0600300 raw_spin_lock_init(&data->lock);
Phil Reidf2114792017-01-25 09:31:08 +0800301
302 data->irq = irq_domain_add_linear(client->dev.of_node,
303 data->chip->nchans,
304 &irq_domain_simple_ops, data);
305 if (!data->irq)
306 return -ENODEV;
307
308 for (c = 0; c < data->chip->nchans; c++) {
309 irq = irq_create_mapping(data->irq, c);
Phil Reide4606172017-08-24 17:31:06 +0800310 if (!irq) {
311 dev_err(&client->dev, "failed irq create map\n");
312 return -EINVAL;
313 }
Phil Reidf2114792017-01-25 09:31:08 +0800314 irq_set_chip_data(irq, data);
315 irq_set_chip_and_handler(irq, &pca954x_irq_chip,
316 handle_simple_irq);
317 }
318
Phil Reidf2114792017-01-25 09:31:08 +0800319 return 0;
Phil Reid148baf12017-08-24 17:31:05 +0800320}
Phil Reidf2114792017-01-25 09:31:08 +0800321
Phil Reid148baf12017-08-24 17:31:05 +0800322static void pca954x_cleanup(struct i2c_mux_core *muxc)
323{
324 struct pca954x *data = i2c_mux_priv(muxc);
325 int c, irq;
326
327 if (data->irq) {
328 for (c = 0; c < data->chip->nchans; c++) {
329 irq = irq_find_mapping(data->irq, c);
330 irq_dispose_mapping(irq);
331 }
332 irq_domain_remove(data->irq);
333 }
334 i2c_mux_del_adapters(muxc);
Phil Reidf2114792017-01-25 09:31:08 +0800335}
336
Michael Lawnick7f528132010-08-11 18:21:03 +0200337/*
338 * I2C init/probing/exit functions
339 */
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200340static int pca954x_probe(struct i2c_client *client,
341 const struct i2c_device_id *id)
Michael Lawnick7f528132010-08-11 18:21:03 +0200342{
343 struct i2c_adapter *adap = to_i2c_adapter(client->dev.parent);
Jingoo Han6d4028c2013-07-30 16:59:33 +0900344 struct pca954x_platform_data *pdata = dev_get_platdata(&client->dev);
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100345 struct device_node *of_node = client->dev.of_node;
346 bool idle_disconnect_dt;
Laurent Pinchart4807e842014-06-03 13:15:26 +0200347 struct gpio_desc *gpio;
Jean Delvareeee543e2012-10-05 22:23:51 +0200348 int num, force, class;
Peter Rosin7fcac982016-04-20 08:40:14 +0200349 struct i2c_mux_core *muxc;
Michael Lawnick7f528132010-08-11 18:21:03 +0200350 struct pca954x *data;
Peter Rosin8a191a72016-07-09 21:21:15 +0200351 const struct of_device_id *match;
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100352 int ret;
Michael Lawnick7f528132010-08-11 18:21:03 +0200353
354 if (!i2c_check_functionality(adap, I2C_FUNC_SMBUS_BYTE))
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100355 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200356
Peter Rosin7fcac982016-04-20 08:40:14 +0200357 muxc = i2c_mux_alloc(adap, &client->dev,
358 PCA954X_MAX_NCHANS, sizeof(*data), 0,
359 pca954x_select_chan, pca954x_deselect_mux);
360 if (!muxc)
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100361 return -ENOMEM;
Peter Rosin7fcac982016-04-20 08:40:14 +0200362 data = i2c_mux_priv(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200363
Peter Rosin7fcac982016-04-20 08:40:14 +0200364 i2c_set_clientdata(client, muxc);
365 data->client = client;
Michael Lawnick7f528132010-08-11 18:21:03 +0200366
Laurent Pinchart4807e842014-06-03 13:15:26 +0200367 /* Get the mux out of reset if a reset GPIO is specified. */
Uwe Kleine-König58b59e02015-02-17 10:12:08 +0100368 gpio = devm_gpiod_get_optional(&client->dev, "reset", GPIOD_OUT_LOW);
369 if (IS_ERR(gpio))
370 return PTR_ERR(gpio);
Laurent Pinchart12097952013-11-29 01:51:25 +0100371
Petri Gynthercd823db2011-06-29 11:36:11 +0200372 /* 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.
Michael Lawnick7f528132010-08-11 18:21:03 +0200375 */
Petri Gynthercd823db2011-06-29 11:36:11 +0200376 if (i2c_smbus_write_byte(client, 0) < 0) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200377 dev_warn(&client->dev, "probe failed\n");
Laurent Pinchartbc12cfc2013-11-29 01:51:23 +0100378 return -ENODEV;
Michael Lawnick7f528132010-08-11 18:21:03 +0200379 }
380
Peter Rosin8a191a72016-07-09 21:21:15 +0200381 match = of_match_device(of_match_ptr(pca954x_of_match), &client->dev);
382 if (match)
383 data->chip = of_device_get_match_data(&client->dev);
Andy Shevchenkoe88162f2017-03-21 21:13:09 +0200384 else
Peter Rosin8a191a72016-07-09 21:21:15 +0200385 data->chip = &chips[id->driver_data];
386
Michael Lawnick7f528132010-08-11 18:21:03 +0200387 data->last_chan = 0; /* force the first selection */
388
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100389 idle_disconnect_dt = of_node &&
390 of_property_read_bool(of_node, "i2c-mux-idle-disconnect");
391
Phil Reidf2114792017-01-25 09:31:08 +0800392 ret = pca954x_irq_setup(muxc);
393 if (ret)
Phil Reid148baf12017-08-24 17:31:05 +0800394 goto fail_cleanup;
Phil Reidf2114792017-01-25 09:31:08 +0800395
Michael Lawnick7f528132010-08-11 18:21:03 +0200396 /* Now create an adapter for each channel */
Peter Rosin8a191a72016-07-09 21:21:15 +0200397 for (num = 0; num < data->chip->nchans; num++) {
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100398 bool idle_disconnect_pd = false;
399
Michael Lawnick7f528132010-08-11 18:21:03 +0200400 force = 0; /* dynamic adap number */
Jean Delvareeee543e2012-10-05 22:23:51 +0200401 class = 0; /* no class by default */
Michael Lawnick7f528132010-08-11 18:21:03 +0200402 if (pdata) {
Jean Delvareeee543e2012-10-05 22:23:51 +0200403 if (num < pdata->num_modes) {
Michael Lawnick7f528132010-08-11 18:21:03 +0200404 /* force static number */
405 force = pdata->modes[num].adap_id;
Jean Delvareeee543e2012-10-05 22:23:51 +0200406 class = pdata->modes[num].class;
407 } else
Michael Lawnick7f528132010-08-11 18:21:03 +0200408 /* discard unconfigured channels */
409 break;
Alexander Sverdlin72f02712015-01-23 16:41:29 +0100410 idle_disconnect_pd = pdata->modes[num].deselect_on_exit;
Michael Lawnick7f528132010-08-11 18:21:03 +0200411 }
Alex Hemmead092de2016-11-19 10:48:38 +0100412 data->deselect |= (idle_disconnect_pd ||
413 idle_disconnect_dt) << num;
Michael Lawnick7f528132010-08-11 18:21:03 +0200414
Peter Rosin7fcac982016-04-20 08:40:14 +0200415 ret = i2c_mux_add_adapter(muxc, force, num, class);
Peter Rosin0756ac32017-04-03 10:14:22 +0200416 if (ret)
Phil Reid148baf12017-08-24 17:31:05 +0800417 goto fail_cleanup;
418 }
419
420 if (data->irq) {
421 ret = devm_request_threaded_irq(&client->dev, data->client->irq,
422 NULL, pca954x_irq_handler,
423 IRQF_ONESHOT | IRQF_SHARED,
424 "pca954x", data);
425 if (ret)
426 goto fail_cleanup;
Michael Lawnick7f528132010-08-11 18:21:03 +0200427 }
428
429 dev_info(&client->dev,
430 "registered %d multiplexed busses for I2C %s %s\n",
Peter Rosin8a191a72016-07-09 21:21:15 +0200431 num, data->chip->muxtype == pca954x_ismux
Michael Lawnick7f528132010-08-11 18:21:03 +0200432 ? "mux" : "switch", client->name);
433
434 return 0;
435
Phil Reid148baf12017-08-24 17:31:05 +0800436fail_cleanup:
437 pca954x_cleanup(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200438 return ret;
439}
440
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200441static int pca954x_remove(struct i2c_client *client)
Michael Lawnick7f528132010-08-11 18:21:03 +0200442{
Peter Rosin7fcac982016-04-20 08:40:14 +0200443 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
Phil Reidf2114792017-01-25 09:31:08 +0800444
Phil Reid148baf12017-08-24 17:31:05 +0800445 pca954x_cleanup(muxc);
Michael Lawnick7f528132010-08-11 18:21:03 +0200446 return 0;
447}
448
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800449#ifdef CONFIG_PM_SLEEP
450static int pca954x_resume(struct device *dev)
451{
452 struct i2c_client *client = to_i2c_client(dev);
Peter Rosin7fcac982016-04-20 08:40:14 +0200453 struct i2c_mux_core *muxc = i2c_get_clientdata(client);
454 struct pca954x *data = i2c_mux_priv(muxc);
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800455
456 data->last_chan = 0;
457 return i2c_smbus_write_byte(client, 0);
458}
459#endif
460
461static SIMPLE_DEV_PM_OPS(pca954x_pm, NULL, pca954x_resume);
462
Michael Lawnick7f528132010-08-11 18:21:03 +0200463static struct i2c_driver pca954x_driver = {
464 .driver = {
465 .name = "pca954x",
Jisheng Zhangf5e596c2014-07-25 19:57:46 +0800466 .pm = &pca954x_pm,
Peter Rosin8a191a72016-07-09 21:21:15 +0200467 .of_match_table = of_match_ptr(pca954x_of_match),
Michael Lawnick7f528132010-08-11 18:21:03 +0200468 },
469 .probe = pca954x_probe,
Guenter Roeckdb79f2a2010-10-24 18:16:59 +0200470 .remove = pca954x_remove,
Michael Lawnick7f528132010-08-11 18:21:03 +0200471 .id_table = pca954x_id,
472};
473
Axel Linde054972012-03-26 21:47:19 +0200474module_i2c_driver(pca954x_driver);
Michael Lawnick7f528132010-08-11 18:21:03 +0200475
476MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
477MODULE_DESCRIPTION("PCA954x I2C mux/switch driver");
478MODULE_LICENSE("GPL v2");