common: Drop log.h from common header
[platform/kernel/u-boot.git] / drivers / i2c / muxes / pca954x.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2015 - 2016 Xilinx, Inc.
4  * Copyright (C) 2017 National Instruments Corp
5  * Written by Michal Simek
6  */
7
8 #include <common.h>
9 #include <dm.h>
10 #include <errno.h>
11 #include <i2c.h>
12 #include <log.h>
13 #include <malloc.h>
14
15 #include <asm-generic/gpio.h>
16
17 DECLARE_GLOBAL_DATA_PTR;
18
19 enum pca_type {
20         PCA9543,
21         PCA9544,
22         PCA9546,
23         PCA9547,
24         PCA9548,
25         PCA9646
26 };
27
28 struct chip_desc {
29         u8 enable; /* Enable mask in ctl register (used for muxes only) */
30         enum muxtype {
31                 pca954x_ismux = 0,
32                 pca954x_isswi,
33         } muxtype;
34         u32 width;
35 };
36
37 struct pca954x_priv {
38         u32 addr; /* I2C mux address */
39         u32 width; /* I2C mux width - number of busses */
40         struct gpio_desc gpio_mux_reset;
41 };
42
43 static const struct chip_desc chips[] = {
44         [PCA9543] = {
45                 .muxtype = pca954x_isswi,
46                 .width = 2,
47         },
48         [PCA9544] = {
49                 .enable = 0x4,
50                 .muxtype = pca954x_ismux,
51                 .width = 4,
52         },
53         [PCA9546] = {
54                 .muxtype = pca954x_isswi,
55                 .width = 4,
56         },
57         [PCA9547] = {
58                 .enable = 0x8,
59                 .muxtype = pca954x_ismux,
60                 .width = 8,
61         },
62         [PCA9548] = {
63                 .muxtype = pca954x_isswi,
64                 .width = 8,
65         },
66         [PCA9646] = {
67                 .muxtype = pca954x_isswi,
68                 .width = 4,
69         },
70 };
71
72 static int pca954x_deselect(struct udevice *mux, struct udevice *bus,
73                             uint channel)
74 {
75         struct pca954x_priv *priv = dev_get_priv(mux);
76         uchar byte = 0;
77
78         return dm_i2c_write(mux, priv->addr, &byte, 1);
79 }
80
81 static int pca954x_select(struct udevice *mux, struct udevice *bus,
82                           uint channel)
83 {
84         struct pca954x_priv *priv = dev_get_priv(mux);
85         const struct chip_desc *chip = &chips[dev_get_driver_data(mux)];
86         uchar byte;
87
88         if (chip->muxtype == pca954x_ismux)
89                 byte = channel | chip->enable;
90         else
91                 byte = 1 << channel;
92
93         return dm_i2c_write(mux, priv->addr, &byte, 1);
94 }
95
96 static const struct i2c_mux_ops pca954x_ops = {
97         .select = pca954x_select,
98         .deselect = pca954x_deselect,
99 };
100
101 static const struct udevice_id pca954x_ids[] = {
102         { .compatible = "nxp,pca9543", .data = PCA9543 },
103         { .compatible = "nxp,pca9544", .data = PCA9544 },
104         { .compatible = "nxp,pca9546", .data = PCA9546 },
105         { .compatible = "nxp,pca9547", .data = PCA9547 },
106         { .compatible = "nxp,pca9548", .data = PCA9548 },
107         { .compatible = "nxp,pca9646", .data = PCA9646 },
108         { }
109 };
110
111 static int pca954x_ofdata_to_platdata(struct udevice *dev)
112 {
113         struct pca954x_priv *priv = dev_get_priv(dev);
114         const struct chip_desc *chip = &chips[dev_get_driver_data(dev)];
115
116         priv->addr = dev_read_u32_default(dev, "reg", 0);
117         if (!priv->addr) {
118                 debug("MUX not found\n");
119                 return -ENODEV;
120         }
121         priv->width = chip->width;
122
123         if (!priv->width) {
124                 debug("No I2C MUX width specified\n");
125                 return -EINVAL;
126         }
127
128         debug("Device %s at 0x%x with width %d\n",
129               dev->name, priv->addr, priv->width);
130
131         return 0;
132 }
133
134 static int pca954x_probe(struct udevice *dev)
135 {
136         if (CONFIG_IS_ENABLED(DM_GPIO)) {
137                 struct pca954x_priv *priv = dev_get_priv(dev);
138                 int err;
139
140                 err = gpio_request_by_name(dev, "reset-gpios", 0,
141                                 &priv->gpio_mux_reset, GPIOD_IS_OUT);
142
143                 /* it's optional so only bail if we get a real error */
144                 if (err && (err != -ENOENT))
145                         return err;
146
147                 /* dm will take care of polarity */
148                 if (dm_gpio_is_valid(&priv->gpio_mux_reset))
149                         dm_gpio_set_value(&priv->gpio_mux_reset, 0);
150         }
151
152         return 0;
153 }
154
155 static int pca954x_remove(struct udevice *dev)
156 {
157         if (CONFIG_IS_ENABLED(DM_GPIO)) {
158                 struct pca954x_priv *priv = dev_get_priv(dev);
159
160                 if (dm_gpio_is_valid(&priv->gpio_mux_reset))
161                         dm_gpio_free(dev, &priv->gpio_mux_reset);
162         }
163
164         return 0;
165 }
166
167 U_BOOT_DRIVER(pca954x) = {
168         .name = "pca954x",
169         .id = UCLASS_I2C_MUX,
170         .of_match = pca954x_ids,
171         .probe = pca954x_probe,
172         .remove = pca954x_remove,
173         .ops = &pca954x_ops,
174         .ofdata_to_platdata = pca954x_ofdata_to_platdata,
175         .priv_auto_alloc_size = sizeof(struct pca954x_priv),
176 };