clk: versal: Add support to enable clocks
[pandora-u-boot.git] / drivers / gpio / omap_gpio.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2009 Wind River Systems, Inc.
4  * Tom Rix <Tom.Rix@windriver.com>
5  *
6  * This work is derived from the linux 2.6.27 kernel source
7  * To fetch, use the kernel repository
8  * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
9  * Use the v2.6.27 tag.
10  *
11  * Below is the original's header including its copyright
12  *
13  *  linux/arch/arm/plat-omap/gpio.c
14  *
15  * Support functions for OMAP GPIO
16  *
17  * Copyright (C) 2003-2005 Nokia Corporation
18  * Written by Juha Yrjölä <juha.yrjola@nokia.com>
19  */
20 #include <common.h>
21 #include <dm.h>
22 #include <fdtdec.h>
23 #include <asm/gpio.h>
24 #include <asm/io.h>
25 #include <dm/device-internal.h>
26 #include <linux/errno.h>
27 #include <malloc.h>
28
29 DECLARE_GLOBAL_DATA_PTR;
30
31 #define OMAP_GPIO_DIR_OUT       0
32 #define OMAP_GPIO_DIR_IN        1
33
34 #if CONFIG_IS_ENABLED(DM_GPIO)
35
36 #define GPIO_PER_BANK                   32
37
38 struct gpio_bank {
39         /* TODO(sjg@chromium.org): Can we use a struct here? */
40         void *base;     /* address of registers in physical memory */
41 };
42
43 #endif
44
45 int gpio_is_valid(int gpio)
46 {
47         return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
48 }
49
50 static void _set_gpio_direction(const struct gpio_bank *bank, int gpio,
51                                 int is_input)
52 {
53         void *reg = bank->base;
54         u32 l;
55
56         reg += OMAP_GPIO_OE;
57
58         l = __raw_readl(reg);
59         if (is_input)
60                 l |= 1 << gpio;
61         else
62                 l &= ~(1 << gpio);
63         __raw_writel(l, reg);
64 }
65
66 /**
67  * Get the direction of the GPIO by reading the GPIO_OE register
68  * corresponding to the specified bank.
69  */
70 static int _get_gpio_direction(const struct gpio_bank *bank, int gpio)
71 {
72         void *reg = bank->base;
73         u32 v;
74
75         reg += OMAP_GPIO_OE;
76
77         v = __raw_readl(reg);
78
79         if (v & (1 << gpio))
80                 return OMAP_GPIO_DIR_IN;
81         else
82                 return OMAP_GPIO_DIR_OUT;
83 }
84
85 static void _set_gpio_dataout(const struct gpio_bank *bank, int gpio,
86                                 int enable)
87 {
88         void *reg = bank->base;
89         u32 l = 0;
90
91         if (enable)
92                 reg += OMAP_GPIO_SETDATAOUT;
93         else
94                 reg += OMAP_GPIO_CLEARDATAOUT;
95
96         l = 1 << gpio;
97         __raw_writel(l, reg);
98 }
99
100 static int _get_gpio_value(const struct gpio_bank *bank, int gpio)
101 {
102         void *reg = bank->base;
103         int input;
104
105         input = _get_gpio_direction(bank, gpio);
106         switch (input) {
107         case OMAP_GPIO_DIR_IN:
108                 reg += OMAP_GPIO_DATAIN;
109                 break;
110         case OMAP_GPIO_DIR_OUT:
111                 reg += OMAP_GPIO_DATAOUT;
112                 break;
113         default:
114                 return -1;
115         }
116
117         return (__raw_readl(reg) & (1 << gpio)) != 0;
118 }
119
120 #if !CONFIG_IS_ENABLED(DM_GPIO)
121 static inline int get_gpio_index(int gpio)
122 {
123         return gpio & 0x1f;
124 }
125
126 static inline const struct gpio_bank *get_gpio_bank(int gpio)
127 {
128         return &omap_gpio_bank[gpio >> 5];
129 }
130
131 static int check_gpio(int gpio)
132 {
133         if (!gpio_is_valid(gpio)) {
134                 printf("ERROR : check_gpio: invalid GPIO %d\n", gpio);
135                 return -1;
136         }
137         return 0;
138 }
139
140 /**
141  * Set value of the specified gpio
142  */
143 int gpio_set_value(unsigned gpio, int value)
144 {
145         const struct gpio_bank *bank;
146
147         if (check_gpio(gpio) < 0)
148                 return -1;
149         bank = get_gpio_bank(gpio);
150         _set_gpio_dataout(bank, get_gpio_index(gpio), value);
151
152         return 0;
153 }
154
155 /**
156  * Get value of the specified gpio
157  */
158 int gpio_get_value(unsigned gpio)
159 {
160         const struct gpio_bank *bank;
161
162         if (check_gpio(gpio) < 0)
163                 return -1;
164         bank = get_gpio_bank(gpio);
165
166         return _get_gpio_value(bank, get_gpio_index(gpio));
167 }
168
169 /**
170  * Set gpio direction as input
171  */
172 int gpio_direction_input(unsigned gpio)
173 {
174         const struct gpio_bank *bank;
175
176         if (check_gpio(gpio) < 0)
177                 return -1;
178
179         bank = get_gpio_bank(gpio);
180         _set_gpio_direction(bank, get_gpio_index(gpio), 1);
181
182         return 0;
183 }
184
185 /**
186  * Set gpio direction as output
187  */
188 int gpio_direction_output(unsigned gpio, int value)
189 {
190         const struct gpio_bank *bank;
191
192         if (check_gpio(gpio) < 0)
193                 return -1;
194
195         bank = get_gpio_bank(gpio);
196         _set_gpio_dataout(bank, get_gpio_index(gpio), value);
197         _set_gpio_direction(bank, get_gpio_index(gpio), 0);
198
199         return 0;
200 }
201
202 /**
203  * Request a gpio before using it.
204  *
205  * NOTE: Argument 'label' is unused.
206  */
207 int gpio_request(unsigned gpio, const char *label)
208 {
209         if (check_gpio(gpio) < 0)
210                 return -1;
211
212         return 0;
213 }
214
215 /**
216  * Reset and free the gpio after using it.
217  */
218 int gpio_free(unsigned gpio)
219 {
220         return 0;
221 }
222
223 #else /* new driver model interface CONFIG_DM_GPIO */
224
225 /* set GPIO pin 'gpio' as an input */
226 static int omap_gpio_direction_input(struct udevice *dev, unsigned offset)
227 {
228         struct gpio_bank *bank = dev_get_priv(dev);
229
230         /* Configure GPIO direction as input. */
231         _set_gpio_direction(bank, offset, 1);
232
233         return 0;
234 }
235
236 /* set GPIO pin 'gpio' as an output, with polarity 'value' */
237 static int omap_gpio_direction_output(struct udevice *dev, unsigned offset,
238                                        int value)
239 {
240         struct gpio_bank *bank = dev_get_priv(dev);
241
242         _set_gpio_dataout(bank, offset, value);
243         _set_gpio_direction(bank, offset, 0);
244
245         return 0;
246 }
247
248 /* read GPIO IN value of pin 'gpio' */
249 static int omap_gpio_get_value(struct udevice *dev, unsigned offset)
250 {
251         struct gpio_bank *bank = dev_get_priv(dev);
252
253         return _get_gpio_value(bank, offset);
254 }
255
256 /* write GPIO OUT value to pin 'gpio' */
257 static int omap_gpio_set_value(struct udevice *dev, unsigned offset,
258                                  int value)
259 {
260         struct gpio_bank *bank = dev_get_priv(dev);
261
262         _set_gpio_dataout(bank, offset, value);
263
264         return 0;
265 }
266
267 static int omap_gpio_get_function(struct udevice *dev, unsigned offset)
268 {
269         struct gpio_bank *bank = dev_get_priv(dev);
270
271         /* GPIOF_FUNC is not implemented yet */
272         if (_get_gpio_direction(bank, offset) == OMAP_GPIO_DIR_OUT)
273                 return GPIOF_OUTPUT;
274         else
275                 return GPIOF_INPUT;
276 }
277
278 static const struct dm_gpio_ops gpio_omap_ops = {
279         .direction_input        = omap_gpio_direction_input,
280         .direction_output       = omap_gpio_direction_output,
281         .get_value              = omap_gpio_get_value,
282         .set_value              = omap_gpio_set_value,
283         .get_function           = omap_gpio_get_function,
284 };
285
286 static int omap_gpio_probe(struct udevice *dev)
287 {
288         struct gpio_bank *bank = dev_get_priv(dev);
289         struct omap_gpio_plat *plat = dev_get_plat(dev);
290         struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
291         char name[18], *str;
292
293         sprintf(name, "gpio@%4x_", (unsigned int)plat->base);
294         str = strdup(name);
295         if (!str)
296                 return -ENOMEM;
297         uc_priv->bank_name = str;
298         uc_priv->gpio_count = GPIO_PER_BANK;
299         bank->base = (void *)plat->base;
300         return 0;
301 }
302
303 #if !CONFIG_IS_ENABLED(OF_CONTROL)
304 static int omap_gpio_bind(struct udevice *dev)
305 {
306         struct omap_gpio_plat *plat = dev_get_plat(dev);
307         fdt_addr_t base_addr;
308
309         if (plat)
310                 return 0;
311
312         base_addr = dev_read_addr(dev);
313         if (base_addr == FDT_ADDR_T_NONE)
314                 return -EINVAL;
315
316         /*
317         * TODO:
318         * When every board is converted to driver model and DT is
319         * supported, this can be done by auto-alloc feature, but
320         * not using calloc to alloc memory for plat.
321         *
322         * For example am33xx_gpio uses platform data rather than device tree.
323         *
324         * NOTE: DO NOT COPY this code if you are using device tree.
325         */
326         plat = calloc(1, sizeof(*plat));
327         if (!plat)
328                 return -ENOMEM;
329
330         plat->base = base_addr;
331         plat->port_name = fdt_get_name(gd->fdt_blob, dev_of_offset(dev), NULL);
332         dev_set_plat(dev, plat);
333
334         return 0;
335 }
336 #endif
337
338 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
339 static const struct udevice_id omap_gpio_ids[] = {
340         { .compatible = "ti,omap3-gpio" },
341         { .compatible = "ti,omap4-gpio" },
342         { .compatible = "ti,am4372-gpio" },
343         { }
344 };
345
346 static int omap_gpio_of_to_plat(struct udevice *dev)
347 {
348         struct omap_gpio_plat *plat = dev_get_plat(dev);
349         fdt_addr_t addr;
350
351         addr = dev_read_addr(dev);
352         if (addr == FDT_ADDR_T_NONE)
353                 return -EINVAL;
354
355         plat->base = addr;
356         return 0;
357 }
358 #endif
359
360 U_BOOT_DRIVER(gpio_omap) = {
361         .name   = "gpio_omap",
362         .id     = UCLASS_GPIO,
363 #if CONFIG_IS_ENABLED(OF_CONTROL)
364 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
365         .of_match = omap_gpio_ids,
366         .of_to_plat = of_match_ptr(omap_gpio_of_to_plat),
367         .plat_auto      = sizeof(struct omap_gpio_plat),
368 #endif
369 #else
370         .bind   = omap_gpio_bind,
371 #endif
372         .ops    = &gpio_omap_ops,
373         .probe  = omap_gpio_probe,
374         .priv_auto      = sizeof(struct gpio_bank),
375 #if !CONFIG_IS_ENABLED(OF_CONTROL)
376         .flags = DM_FLAG_PRE_RELOC,
377 #endif
378 };
379
380 #endif /* !DM_GPIO */