1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015 - 2016 Xilinx, Inc.
4 * Copyright (C) 2017 National Instruments Corp
5 * Written by Michal Simek
14 #include <asm-generic/gpio.h>
16 DECLARE_GLOBAL_DATA_PTR;
27 u8 enable; /* Enable mask in ctl register (used for muxes only) */
36 u32 addr; /* I2C mux address */
37 u32 width; /* I2C mux width - number of busses */
38 struct gpio_desc gpio_mux_reset;
41 static const struct chip_desc chips[] = {
43 .muxtype = pca954x_isswi,
48 .muxtype = pca954x_ismux,
53 .muxtype = pca954x_ismux,
57 .muxtype = pca954x_isswi,
61 .muxtype = pca954x_isswi,
66 static int pca954x_deselect(struct udevice *mux, struct udevice *bus,
69 struct pca954x_priv *priv = dev_get_priv(mux);
72 return dm_i2c_write(mux, priv->addr, &byte, 1);
75 static int pca954x_select(struct udevice *mux, struct udevice *bus,
78 struct pca954x_priv *priv = dev_get_priv(mux);
79 const struct chip_desc *chip = &chips[dev_get_driver_data(mux)];
82 if (chip->muxtype == pca954x_ismux)
83 byte = channel | chip->enable;
87 return dm_i2c_write(mux, priv->addr, &byte, 1);
90 static const struct i2c_mux_ops pca954x_ops = {
91 .select = pca954x_select,
92 .deselect = pca954x_deselect,
95 static const struct udevice_id pca954x_ids[] = {
96 { .compatible = "nxp,pca9543", .data = PCA9543 },
97 { .compatible = "nxp,pca9544", .data = PCA9544 },
98 { .compatible = "nxp,pca9547", .data = PCA9547 },
99 { .compatible = "nxp,pca9548", .data = PCA9548 },
100 { .compatible = "nxp,pca9646", .data = PCA9646 },
104 static int pca954x_ofdata_to_platdata(struct udevice *dev)
106 struct pca954x_priv *priv = dev_get_priv(dev);
107 const struct chip_desc *chip = &chips[dev_get_driver_data(dev)];
109 priv->addr = dev_read_u32_default(dev, "reg", 0);
111 debug("MUX not found\n");
114 priv->width = chip->width;
117 debug("No I2C MUX width specified\n");
121 debug("Device %s at 0x%x with width %d\n",
122 dev->name, priv->addr, priv->width);
127 static int pca954x_probe(struct udevice *dev)
129 if (CONFIG_IS_ENABLED(DM_GPIO)) {
130 struct pca954x_priv *priv = dev_get_priv(dev);
133 err = gpio_request_by_name(dev, "reset-gpios", 0,
134 &priv->gpio_mux_reset, GPIOD_IS_OUT);
136 /* it's optional so only bail if we get a real error */
137 if (err && (err != -ENOENT))
140 /* dm will take care of polarity */
141 if (dm_gpio_is_valid(&priv->gpio_mux_reset))
142 dm_gpio_set_value(&priv->gpio_mux_reset, 0);
148 static int pca954x_remove(struct udevice *dev)
150 if (CONFIG_IS_ENABLED(DM_GPIO)) {
151 struct pca954x_priv *priv = dev_get_priv(dev);
153 if (dm_gpio_is_valid(&priv->gpio_mux_reset))
154 dm_gpio_free(dev, &priv->gpio_mux_reset);
160 U_BOOT_DRIVER(pca954x) = {
162 .id = UCLASS_I2C_MUX,
163 .of_match = pca954x_ids,
164 .probe = pca954x_probe,
165 .remove = pca954x_remove,
167 .ofdata_to_platdata = pca954x_ofdata_to_platdata,
168 .priv_auto_alloc_size = sizeof(struct pca954x_priv),