Merge tag 'fixes-for-2020.10-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / drivers / gpio / mxc_gpio.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2009
4  * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
5  *
6  * Copyright (C) 2011
7  * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
8  */
9 #include <common.h>
10 #include <errno.h>
11 #include <dm.h>
12 #include <malloc.h>
13 #include <asm/arch/imx-regs.h>
14 #include <asm/gpio.h>
15 #include <asm/io.h>
16
17 enum mxc_gpio_direction {
18         MXC_GPIO_DIRECTION_IN,
19         MXC_GPIO_DIRECTION_OUT,
20 };
21
22 #define GPIO_PER_BANK                   32
23
24 struct mxc_gpio_plat {
25         int bank_index;
26         struct gpio_regs *regs;
27 };
28
29 struct mxc_bank_info {
30         struct gpio_regs *regs;
31 };
32
33 #if !CONFIG_IS_ENABLED(DM_GPIO)
34 #define GPIO_TO_PORT(n)         ((n) / 32)
35
36 /* GPIO port description */
37 static unsigned long gpio_ports[] = {
38         [0] = GPIO1_BASE_ADDR,
39         [1] = GPIO2_BASE_ADDR,
40         [2] = GPIO3_BASE_ADDR,
41 #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
42                 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
43                 defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || \
44                 defined(CONFIG_ARCH_IMX8) || defined(CONFIG_IMXRT1050)
45         [3] = GPIO4_BASE_ADDR,
46 #endif
47 #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
48                 defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || \
49                 defined(CONFIG_ARCH_IMX8) || defined(CONFIG_IMXRT1050)
50         [4] = GPIO5_BASE_ADDR,
51 #if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL) || \
52                 defined(CONFIG_IMX8M) || defined(CONFIG_IMXRT1050))
53         [5] = GPIO6_BASE_ADDR,
54 #endif
55 #endif
56 #if defined(CONFIG_MX53) || defined(CONFIG_MX6) || defined(CONFIG_MX7) || \
57                 defined(CONFIG_ARCH_IMX8)
58 #if !(defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL))
59         [6] = GPIO7_BASE_ADDR,
60 #endif
61 #endif
62 #if defined(CONFIG_ARCH_IMX8)
63         [7] = GPIO8_BASE_ADDR,
64 #endif
65 };
66
67 static int mxc_gpio_direction(unsigned int gpio,
68         enum mxc_gpio_direction direction)
69 {
70         unsigned int port = GPIO_TO_PORT(gpio);
71         struct gpio_regs *regs;
72         u32 l;
73
74         if (port >= ARRAY_SIZE(gpio_ports))
75                 return -1;
76
77         gpio &= 0x1f;
78
79         regs = (struct gpio_regs *)gpio_ports[port];
80
81         l = readl(&regs->gpio_dir);
82
83         switch (direction) {
84         case MXC_GPIO_DIRECTION_OUT:
85                 l |= 1 << gpio;
86                 break;
87         case MXC_GPIO_DIRECTION_IN:
88                 l &= ~(1 << gpio);
89         }
90         writel(l, &regs->gpio_dir);
91
92         return 0;
93 }
94
95 int gpio_set_value(unsigned gpio, int value)
96 {
97         unsigned int port = GPIO_TO_PORT(gpio);
98         struct gpio_regs *regs;
99         u32 l;
100
101         if (port >= ARRAY_SIZE(gpio_ports))
102                 return -1;
103
104         gpio &= 0x1f;
105
106         regs = (struct gpio_regs *)gpio_ports[port];
107
108         l = readl(&regs->gpio_dr);
109         if (value)
110                 l |= 1 << gpio;
111         else
112                 l &= ~(1 << gpio);
113         writel(l, &regs->gpio_dr);
114
115         return 0;
116 }
117
118 int gpio_get_value(unsigned gpio)
119 {
120         unsigned int port = GPIO_TO_PORT(gpio);
121         struct gpio_regs *regs;
122         u32 val;
123
124         if (port >= ARRAY_SIZE(gpio_ports))
125                 return -1;
126
127         gpio &= 0x1f;
128
129         regs = (struct gpio_regs *)gpio_ports[port];
130
131         val = (readl(&regs->gpio_psr) >> gpio) & 0x01;
132
133         return val;
134 }
135
136 int gpio_request(unsigned gpio, const char *label)
137 {
138         unsigned int port = GPIO_TO_PORT(gpio);
139         if (port >= ARRAY_SIZE(gpio_ports))
140                 return -1;
141         return 0;
142 }
143
144 int gpio_free(unsigned gpio)
145 {
146         return 0;
147 }
148
149 int gpio_direction_input(unsigned gpio)
150 {
151         return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_IN);
152 }
153
154 int gpio_direction_output(unsigned gpio, int value)
155 {
156         int ret = gpio_set_value(gpio, value);
157
158         if (ret < 0)
159                 return ret;
160
161         return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_OUT);
162 }
163 #endif
164
165 #if CONFIG_IS_ENABLED(DM_GPIO)
166 #include <fdtdec.h>
167 static int mxc_gpio_is_output(struct gpio_regs *regs, int offset)
168 {
169         u32 val;
170
171         val = readl(&regs->gpio_dir);
172
173         return val & (1 << offset) ? 1 : 0;
174 }
175
176 static void mxc_gpio_bank_direction(struct gpio_regs *regs, int offset,
177                                     enum mxc_gpio_direction direction)
178 {
179         u32 l;
180
181         l = readl(&regs->gpio_dir);
182
183         switch (direction) {
184         case MXC_GPIO_DIRECTION_OUT:
185                 l |= 1 << offset;
186                 break;
187         case MXC_GPIO_DIRECTION_IN:
188                 l &= ~(1 << offset);
189         }
190         writel(l, &regs->gpio_dir);
191 }
192
193 static void mxc_gpio_bank_set_value(struct gpio_regs *regs, int offset,
194                                     int value)
195 {
196         u32 l;
197
198         l = readl(&regs->gpio_dr);
199         if (value)
200                 l |= 1 << offset;
201         else
202                 l &= ~(1 << offset);
203         writel(l, &regs->gpio_dr);
204 }
205
206 static int mxc_gpio_bank_get_value(struct gpio_regs *regs, int offset)
207 {
208         return (readl(&regs->gpio_psr) >> offset) & 0x01;
209 }
210
211 /* set GPIO pin 'gpio' as an input */
212 static int mxc_gpio_direction_input(struct udevice *dev, unsigned offset)
213 {
214         struct mxc_bank_info *bank = dev_get_priv(dev);
215
216         /* Configure GPIO direction as input. */
217         mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_IN);
218
219         return 0;
220 }
221
222 /* set GPIO pin 'gpio' as an output, with polarity 'value' */
223 static int mxc_gpio_direction_output(struct udevice *dev, unsigned offset,
224                                        int value)
225 {
226         struct mxc_bank_info *bank = dev_get_priv(dev);
227
228         /* Configure GPIO output value. */
229         mxc_gpio_bank_set_value(bank->regs, offset, value);
230
231         /* Configure GPIO direction as output. */
232         mxc_gpio_bank_direction(bank->regs, offset, MXC_GPIO_DIRECTION_OUT);
233
234         return 0;
235 }
236
237 /* read GPIO IN value of pin 'gpio' */
238 static int mxc_gpio_get_value(struct udevice *dev, unsigned offset)
239 {
240         struct mxc_bank_info *bank = dev_get_priv(dev);
241
242         return mxc_gpio_bank_get_value(bank->regs, offset);
243 }
244
245 /* write GPIO OUT value to pin 'gpio' */
246 static int mxc_gpio_set_value(struct udevice *dev, unsigned offset,
247                                  int value)
248 {
249         struct mxc_bank_info *bank = dev_get_priv(dev);
250
251         mxc_gpio_bank_set_value(bank->regs, offset, value);
252
253         return 0;
254 }
255
256 static int mxc_gpio_get_function(struct udevice *dev, unsigned offset)
257 {
258         struct mxc_bank_info *bank = dev_get_priv(dev);
259
260         /* GPIOF_FUNC is not implemented yet */
261         if (mxc_gpio_is_output(bank->regs, offset))
262                 return GPIOF_OUTPUT;
263         else
264                 return GPIOF_INPUT;
265 }
266
267 static const struct dm_gpio_ops gpio_mxc_ops = {
268         .direction_input        = mxc_gpio_direction_input,
269         .direction_output       = mxc_gpio_direction_output,
270         .get_value              = mxc_gpio_get_value,
271         .set_value              = mxc_gpio_set_value,
272         .get_function           = mxc_gpio_get_function,
273 };
274
275 static int mxc_gpio_probe(struct udevice *dev)
276 {
277         struct mxc_bank_info *bank = dev_get_priv(dev);
278         struct mxc_gpio_plat *plat = dev_get_platdata(dev);
279         struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
280         int banknum;
281         char name[18], *str;
282
283         banknum = plat->bank_index;
284         if (IS_ENABLED(CONFIG_ARCH_IMX8))
285                 sprintf(name, "GPIO%d_", banknum);
286         else
287                 sprintf(name, "GPIO%d_", banknum + 1);
288         str = strdup(name);
289         if (!str)
290                 return -ENOMEM;
291         uc_priv->bank_name = str;
292         uc_priv->gpio_count = GPIO_PER_BANK;
293         bank->regs = plat->regs;
294
295         return 0;
296 }
297
298 static int mxc_gpio_ofdata_to_platdata(struct udevice *dev)
299 {
300         fdt_addr_t addr;
301         struct mxc_gpio_plat *plat = dev_get_platdata(dev);
302
303         addr = dev_read_addr(dev);
304         if (addr == FDT_ADDR_T_NONE)
305                 return -EINVAL;
306
307         plat->regs = (struct gpio_regs *)addr;
308         plat->bank_index = dev->req_seq;
309
310         return 0;
311 }
312
313 static int mxc_gpio_bind(struct udevice *dev)
314 {
315         return 0;
316 }
317
318 static const struct udevice_id mxc_gpio_ids[] = {
319         { .compatible = "fsl,imx35-gpio" },
320         { }
321 };
322
323 U_BOOT_DRIVER(gpio_mxc) = {
324         .name   = "gpio_mxc",
325         .id     = UCLASS_GPIO,
326         .ops    = &gpio_mxc_ops,
327         .probe  = mxc_gpio_probe,
328         .ofdata_to_platdata = mxc_gpio_ofdata_to_platdata,
329         .platdata_auto_alloc_size = sizeof(struct mxc_gpio_plat),
330         .priv_auto_alloc_size = sizeof(struct mxc_bank_info),
331         .of_match = mxc_gpio_ids,
332         .bind   = mxc_gpio_bind,
333 };
334
335 #if !CONFIG_IS_ENABLED(OF_CONTROL)
336 static const struct mxc_gpio_plat mxc_plat[] = {
337         { 0, (struct gpio_regs *)GPIO1_BASE_ADDR },
338         { 1, (struct gpio_regs *)GPIO2_BASE_ADDR },
339         { 2, (struct gpio_regs *)GPIO3_BASE_ADDR },
340 #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
341                 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
342                 defined(CONFIG_IMX8M) || defined(CONFIG_ARCH_IMX8)
343         { 3, (struct gpio_regs *)GPIO4_BASE_ADDR },
344 #endif
345 #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
346                 defined(CONFIG_IMX8M) || defined(CONFIG_ARCH_IMX8)
347         { 4, (struct gpio_regs *)GPIO5_BASE_ADDR },
348 #ifndef CONFIG_IMX8M
349         { 5, (struct gpio_regs *)GPIO6_BASE_ADDR },
350 #endif
351 #endif
352 #if defined(CONFIG_MX53) || defined(CONFIG_MX6) || defined(CONFIG_ARCH_IMX8)
353         { 6, (struct gpio_regs *)GPIO7_BASE_ADDR },
354 #endif
355 #if defined(CONFIG_ARCH_IMX8)
356         { 7, (struct gpio_regs *)GPIO8_BASE_ADDR },
357 #endif
358 };
359
360 U_BOOT_DEVICES(mxc_gpios) = {
361         { "gpio_mxc", &mxc_plat[0] },
362         { "gpio_mxc", &mxc_plat[1] },
363         { "gpio_mxc", &mxc_plat[2] },
364 #if defined(CONFIG_MX25) || defined(CONFIG_MX27) || defined(CONFIG_MX51) || \
365                 defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
366                 defined(CONFIG_IMX8M) || defined(CONFIG_ARCH_IMX8)
367         { "gpio_mxc", &mxc_plat[3] },
368 #endif
369 #if defined(CONFIG_MX27) || defined(CONFIG_MX53) || defined(CONFIG_MX6) || \
370                 defined(CONFIG_IMX8M) || defined(CONFIG_ARCH_IMX8)
371         { "gpio_mxc", &mxc_plat[4] },
372 #ifndef CONFIG_IMX8M
373         { "gpio_mxc", &mxc_plat[5] },
374 #endif
375 #endif
376 #if defined(CONFIG_MX53) || defined(CONFIG_MX6) || defined(CONFIG_ARCH_IMX8)
377         { "gpio_mxc", &mxc_plat[6] },
378 #endif
379 #if defined(CONFIG_ARCH_IMX8)
380         { "gpio_mxc", &mxc_plat[7] },
381 #endif
382 };
383 #endif
384 #endif