dm: core: Create a new header file for 'compat' features
[oweals/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 <malloc.h>
13
14 #include <asm-generic/gpio.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 enum pca_type {
19         PCA9543,
20         PCA9544,
21         PCA9547,
22         PCA9548,
23         PCA9646
24 };
25
26 struct chip_desc {
27         u8 enable; /* Enable mask in ctl register (used for muxes only) */
28         enum muxtype {
29                 pca954x_ismux = 0,
30                 pca954x_isswi,
31         } muxtype;
32         u32 width;
33 };
34
35 struct pca954x_priv {
36         u32 addr; /* I2C mux address */
37         u32 width; /* I2C mux width - number of busses */
38         struct gpio_desc gpio_mux_reset;
39 };
40
41 static const struct chip_desc chips[] = {
42         [PCA9543] = {
43                 .muxtype = pca954x_isswi,
44                 .width = 2,
45         },
46         [PCA9544] = {
47                 .enable = 0x4,
48                 .muxtype = pca954x_ismux,
49                 .width = 4,
50         },
51         [PCA9547] = {
52                 .enable = 0x8,
53                 .muxtype = pca954x_ismux,
54                 .width = 8,
55         },
56         [PCA9548] = {
57                 .muxtype = pca954x_isswi,
58                 .width = 8,
59         },
60         [PCA9646] = {
61                 .muxtype = pca954x_isswi,
62                 .width = 4,
63         },
64 };
65
66 static int pca954x_deselect(struct udevice *mux, struct udevice *bus,
67                             uint channel)
68 {
69         struct pca954x_priv *priv = dev_get_priv(mux);
70         uchar byte = 0;
71
72         return dm_i2c_write(mux, priv->addr, &byte, 1);
73 }
74
75 static int pca954x_select(struct udevice *mux, struct udevice *bus,
76                           uint channel)
77 {
78         struct pca954x_priv *priv = dev_get_priv(mux);
79         const struct chip_desc *chip = &chips[dev_get_driver_data(mux)];
80         uchar byte;
81
82         if (chip->muxtype == pca954x_ismux)
83                 byte = channel | chip->enable;
84         else
85                 byte = 1 << channel;
86
87         return dm_i2c_write(mux, priv->addr, &byte, 1);
88 }
89
90 static const struct i2c_mux_ops pca954x_ops = {
91         .select = pca954x_select,
92         .deselect = pca954x_deselect,
93 };
94
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 },
101         { }
102 };
103
104 static int pca954x_ofdata_to_platdata(struct udevice *dev)
105 {
106         struct pca954x_priv *priv = dev_get_priv(dev);
107         const struct chip_desc *chip = &chips[dev_get_driver_data(dev)];
108
109         priv->addr = dev_read_u32_default(dev, "reg", 0);
110         if (!priv->addr) {
111                 debug("MUX not found\n");
112                 return -ENODEV;
113         }
114         priv->width = chip->width;
115
116         if (!priv->width) {
117                 debug("No I2C MUX width specified\n");
118                 return -EINVAL;
119         }
120
121         debug("Device %s at 0x%x with width %d\n",
122               dev->name, priv->addr, priv->width);
123
124         return 0;
125 }
126
127 static int pca954x_probe(struct udevice *dev)
128 {
129         if (CONFIG_IS_ENABLED(DM_GPIO)) {
130                 struct pca954x_priv *priv = dev_get_priv(dev);
131                 int err;
132
133                 err = gpio_request_by_name(dev, "reset-gpios", 0,
134                                 &priv->gpio_mux_reset, GPIOD_IS_OUT);
135
136                 /* it's optional so only bail if we get a real error */
137                 if (err && (err != -ENOENT))
138                         return err;
139
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);
143         }
144
145         return 0;
146 }
147
148 static int pca954x_remove(struct udevice *dev)
149 {
150         if (CONFIG_IS_ENABLED(DM_GPIO)) {
151                 struct pca954x_priv *priv = dev_get_priv(dev);
152
153                 if (dm_gpio_is_valid(&priv->gpio_mux_reset))
154                         dm_gpio_free(dev, &priv->gpio_mux_reset);
155         }
156
157         return 0;
158 }
159
160 U_BOOT_DRIVER(pca954x) = {
161         .name = "pca954x",
162         .id = UCLASS_I2C_MUX,
163         .of_match = pca954x_ids,
164         .probe = pca954x_probe,
165         .remove = pca954x_remove,
166         .ops = &pca954x_ops,
167         .ofdata_to_platdata = pca954x_ofdata_to_platdata,
168         .priv_auto_alloc_size = sizeof(struct pca954x_priv),
169 };