blob: 0031415d03eff9ad00f29d0f0519d67611cca2a8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Tom Rix0c872ec2009-05-15 23:48:36 +02002/*
3 * Copyright (c) 2009 Wind River Systems, Inc.
4 * Tom Rix <Tom.Rix@windriver.com>
5 *
Tom Rix0c872ec2009-05-15 23:48:36 +02006 * 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>
Tom Rix0c872ec2009-05-15 23:48:36 +020019 */
20#include <common.h>
Simon Glass5915a2a2014-10-22 21:37:09 -060021#include <dm.h>
Tom Rini0a9e3402015-07-31 19:55:09 -040022#include <fdtdec.h>
Joe Hershberger365d6072011-11-11 15:55:36 -060023#include <asm/gpio.h>
Tom Rix0c872ec2009-05-15 23:48:36 +020024#include <asm/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090025#include <linux/errno.h>
Tom Rini0a9e3402015-07-31 19:55:09 -040026#include <malloc.h>
27
28DECLARE_GLOBAL_DATA_PTR;
Tom Rix0c872ec2009-05-15 23:48:36 +020029
Sanjeev Premi81bdc152011-09-08 10:47:25 -040030#define OMAP_GPIO_DIR_OUT 0
31#define OMAP_GPIO_DIR_IN 1
32
Simon Glass5915a2a2014-10-22 21:37:09 -060033#ifdef CONFIG_DM_GPIO
34
Simon Glass5915a2a2014-10-22 21:37:09 -060035#define GPIO_PER_BANK 32
36
37struct gpio_bank {
Simon Glass5915a2a2014-10-22 21:37:09 -060038 /* TODO(sjg@chromium.org): Can we use a struct here? */
39 void *base; /* address of registers in physical memory */
Simon Glass5915a2a2014-10-22 21:37:09 -060040};
41
42#endif
43
Tom Rix0c872ec2009-05-15 23:48:36 +020044static inline int get_gpio_index(int gpio)
45{
46 return gpio & 0x1f;
47}
48
Nikita Kiryanovdcee1ab2012-11-27 22:40:57 +000049int gpio_is_valid(int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020050{
Axel Lin87bd05d2013-06-21 18:54:25 +080051 return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
Tom Rix0c872ec2009-05-15 23:48:36 +020052}
53
Aneesh V25223a62011-07-21 09:29:29 -040054static void _set_gpio_direction(const struct gpio_bank *bank, int gpio,
55 int is_input)
Tom Rix0c872ec2009-05-15 23:48:36 +020056{
57 void *reg = bank->base;
58 u32 l;
59
Tom Rini0a9e3402015-07-31 19:55:09 -040060 reg += OMAP_GPIO_OE;
61
Tom Rix0c872ec2009-05-15 23:48:36 +020062 l = __raw_readl(reg);
63 if (is_input)
64 l |= 1 << gpio;
65 else
66 l &= ~(1 << gpio);
67 __raw_writel(l, reg);
68}
69
Sanjeev Premi81bdc152011-09-08 10:47:25 -040070/**
71 * Get the direction of the GPIO by reading the GPIO_OE register
72 * corresponding to the specified bank.
73 */
74static int _get_gpio_direction(const struct gpio_bank *bank, int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020075{
Sanjeev Premi81bdc152011-09-08 10:47:25 -040076 void *reg = bank->base;
77 u32 v;
Tom Rix0c872ec2009-05-15 23:48:36 +020078
Tom Rini0a9e3402015-07-31 19:55:09 -040079 reg += OMAP_GPIO_OE;
Sanjeev Premi81bdc152011-09-08 10:47:25 -040080
81 v = __raw_readl(reg);
82
83 if (v & (1 << gpio))
84 return OMAP_GPIO_DIR_IN;
85 else
86 return OMAP_GPIO_DIR_OUT;
Tom Rix0c872ec2009-05-15 23:48:36 +020087}
88
Aneesh V25223a62011-07-21 09:29:29 -040089static void _set_gpio_dataout(const struct gpio_bank *bank, int gpio,
90 int enable)
Tom Rix0c872ec2009-05-15 23:48:36 +020091{
92 void *reg = bank->base;
93 u32 l = 0;
94
Tom Rini0a9e3402015-07-31 19:55:09 -040095 if (enable)
96 reg += OMAP_GPIO_SETDATAOUT;
97 else
98 reg += OMAP_GPIO_CLEARDATAOUT;
99
100 l = 1 << gpio;
Tom Rix0c872ec2009-05-15 23:48:36 +0200101 __raw_writel(l, reg);
102}
103
Simon Glassd57b6112014-10-22 21:37:08 -0600104static int _get_gpio_value(const struct gpio_bank *bank, int gpio)
105{
106 void *reg = bank->base;
107 int input;
108
Tom Rini0a9e3402015-07-31 19:55:09 -0400109 input = _get_gpio_direction(bank, gpio);
110 switch (input) {
111 case OMAP_GPIO_DIR_IN:
112 reg += OMAP_GPIO_DATAIN;
113 break;
114 case OMAP_GPIO_DIR_OUT:
115 reg += OMAP_GPIO_DATAOUT;
Simon Glassd57b6112014-10-22 21:37:08 -0600116 break;
117 default:
118 return -1;
119 }
120
121 return (__raw_readl(reg) & (1 << gpio)) != 0;
122}
123
Simon Glass5915a2a2014-10-22 21:37:09 -0600124#ifndef CONFIG_DM_GPIO
125
Simon Glassd57b6112014-10-22 21:37:08 -0600126static inline const struct gpio_bank *get_gpio_bank(int gpio)
127{
128 return &omap_gpio_bank[gpio >> 5];
129}
130
131static 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
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400140/**
141 * Set value of the specified gpio
142 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600143int gpio_set_value(unsigned gpio, int value)
Tom Rix0c872ec2009-05-15 23:48:36 +0200144{
Aneesh V25223a62011-07-21 09:29:29 -0400145 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200146
147 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600148 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200149 bank = get_gpio_bank(gpio);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400150 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
Joe Hershberger365d6072011-11-11 15:55:36 -0600151
152 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200153}
154
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400155/**
156 * Get value of the specified gpio
157 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600158int gpio_get_value(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200159{
Aneesh V25223a62011-07-21 09:29:29 -0400160 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200161
162 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600163 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200164 bank = get_gpio_bank(gpio);
Simon Glassd57b6112014-10-22 21:37:08 -0600165
166 return _get_gpio_value(bank, get_gpio_index(gpio));
Tom Rix0c872ec2009-05-15 23:48:36 +0200167}
168
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400169/**
170 * Set gpio direction as input
171 */
172int gpio_direction_input(unsigned gpio)
Joel A Fernandes569919d2011-09-04 11:10:03 -0500173{
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400174 const struct gpio_bank *bank;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500175
176 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600177 return -1;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500178
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400179 bank = get_gpio_bank(gpio);
Tom Rix0c872ec2009-05-15 23:48:36 +0200180 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400181
182 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200183}
184
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400185/**
186 * Set gpio direction as output
187 */
188int gpio_direction_output(unsigned gpio, int value)
189{
190 const struct gpio_bank *bank;
191
192 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600193 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400194
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 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600207int gpio_request(unsigned gpio, const char *label)
Tom Rix0c872ec2009-05-15 23:48:36 +0200208{
209 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600210 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200211
212 return 0;
213}
214
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400215/**
216 * Reset and free the gpio after using it.
217 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600218int gpio_free(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200219{
Joe Hershberger365d6072011-11-11 15:55:36 -0600220 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200221}
Simon Glass5915a2a2014-10-22 21:37:09 -0600222
223#else /* new driver model interface CONFIG_DM_GPIO */
224
Simon Glass5915a2a2014-10-22 21:37:09 -0600225/* set GPIO pin 'gpio' as an input */
226static int omap_gpio_direction_input(struct udevice *dev, unsigned offset)
227{
228 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600229
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' */
237static int omap_gpio_direction_output(struct udevice *dev, unsigned offset,
238 int value)
239{
240 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600241
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' */
249static int omap_gpio_get_value(struct udevice *dev, unsigned offset)
250{
251 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600252
253 return _get_gpio_value(bank, offset);
254}
255
256/* write GPIO OUT value to pin 'gpio' */
257static int omap_gpio_set_value(struct udevice *dev, unsigned offset,
258 int value)
259{
260 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600261
262 _set_gpio_dataout(bank, offset, value);
263
264 return 0;
265}
266
Simon Glass5915a2a2014-10-22 21:37:09 -0600267static int omap_gpio_get_function(struct udevice *dev, unsigned offset)
268{
269 struct gpio_bank *bank = dev_get_priv(dev);
270
Simon Glass5915a2a2014-10-22 21:37:09 -0600271 /* GPIOF_FUNC is not implemented yet */
Axel Lin26c04722015-01-31 22:23:38 +0800272 if (_get_gpio_direction(bank, offset) == OMAP_GPIO_DIR_OUT)
Simon Glass5915a2a2014-10-22 21:37:09 -0600273 return GPIOF_OUTPUT;
274 else
275 return GPIOF_INPUT;
276}
277
278static const struct dm_gpio_ops gpio_omap_ops = {
Simon Glass5915a2a2014-10-22 21:37:09 -0600279 .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,
Simon Glass5915a2a2014-10-22 21:37:09 -0600284};
285
286static int omap_gpio_probe(struct udevice *dev)
287{
288 struct gpio_bank *bank = dev_get_priv(dev);
289 struct omap_gpio_platdata *plat = dev_get_platdata(dev);
Simon Glasse564f052015-03-05 12:25:20 -0700290 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Adam Fordb4c3fb02018-06-11 20:05:38 -0500291 char name[18], *str;
Simon Glass5915a2a2014-10-22 21:37:09 -0600292
Adam Ford535f46d2018-08-17 14:37:58 -0500293 sprintf(name, "gpio@%4x_", (unsigned int)plat->base);
Adam Fordb4c3fb02018-06-11 20:05:38 -0500294 str = strdup(name);
295 if (!str)
296 return -ENOMEM;
297 uc_priv->bank_name = str;
Simon Glass5915a2a2014-10-22 21:37:09 -0600298 uc_priv->gpio_count = GPIO_PER_BANK;
299 bank->base = (void *)plat->base;
Simon Glass5915a2a2014-10-22 21:37:09 -0600300 return 0;
301}
302
Adam Ford6696de82018-06-10 09:29:51 -0500303#if !CONFIG_IS_ENABLED(OF_CONTROL)
Tom Rini0a9e3402015-07-31 19:55:09 -0400304static int omap_gpio_bind(struct udevice *dev)
305{
Simon Glass4d686042017-09-17 16:54:52 -0600306 struct omap_gpio_platdata *plat = dev_get_platdata(dev);
Tom Rini0a9e3402015-07-31 19:55:09 -0400307 fdt_addr_t base_addr;
308
309 if (plat)
310 return 0;
311
Simon Glassa821c4a2017-05-17 17:18:05 -0600312 base_addr = devfdt_get_addr(dev);
Tom Rini0a9e3402015-07-31 19:55:09 -0400313 if (base_addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600314 return -EINVAL;
Tom Rini0a9e3402015-07-31 19:55:09 -0400315
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 platdata.
Simon Glass4d686042017-09-17 16:54:52 -0600321 *
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.
Tom Rini0a9e3402015-07-31 19:55:09 -0400325 */
326 plat = calloc(1, sizeof(*plat));
327 if (!plat)
328 return -ENOMEM;
329
330 plat->base = base_addr;
Simon Glasse160f7d2017-01-17 16:52:55 -0700331 plat->port_name = fdt_get_name(gd->fdt_blob, dev_of_offset(dev), NULL);
Tom Rini0a9e3402015-07-31 19:55:09 -0400332 dev->platdata = plat;
333
334 return 0;
335}
Adam Ford6696de82018-06-10 09:29:51 -0500336#endif
Tom Rini0a9e3402015-07-31 19:55:09 -0400337
Adam Ford99571b42018-08-20 20:27:48 -0500338#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Tom Rini0a9e3402015-07-31 19:55:09 -0400339static 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
Adam Ford6696de82018-06-10 09:29:51 -0500346static int omap_gpio_ofdata_to_platdata(struct udevice *dev)
347{
348 struct omap_gpio_platdata *plat = dev_get_platdata(dev);
349 fdt_addr_t addr;
350
351 addr = devfdt_get_addr(dev);
352 if (addr == FDT_ADDR_T_NONE)
353 return -EINVAL;
354
355 plat->base = addr;
356 return 0;
357}
358#endif
359
Simon Glass5915a2a2014-10-22 21:37:09 -0600360U_BOOT_DRIVER(gpio_omap) = {
361 .name = "gpio_omap",
362 .id = UCLASS_GPIO,
Adam Ford6696de82018-06-10 09:29:51 -0500363#if CONFIG_IS_ENABLED(OF_CONTROL)
Adam Ford99571b42018-08-20 20:27:48 -0500364#if !CONFIG_IS_ENABLED(OF_PLATDATA)
365 .of_match = omap_gpio_ids,
Adam Ford6696de82018-06-10 09:29:51 -0500366 .ofdata_to_platdata = of_match_ptr(omap_gpio_ofdata_to_platdata),
Adam Ford6696de82018-06-10 09:29:51 -0500367 .platdata_auto_alloc_size = sizeof(struct omap_gpio_platdata),
Adam Ford99571b42018-08-20 20:27:48 -0500368#endif
Adam Ford6696de82018-06-10 09:29:51 -0500369#else
370 .bind = omap_gpio_bind,
371#endif
Simon Glass5915a2a2014-10-22 21:37:09 -0600372 .ops = &gpio_omap_ops,
373 .probe = omap_gpio_probe,
374 .priv_auto_alloc_size = sizeof(struct gpio_bank),
Bin Meng695c4992018-10-24 06:36:30 -0700375#if !CONFIG_IS_ENABLED(OF_CONTROL)
Faiz Abbas8e14ba72018-03-15 21:11:34 +0530376 .flags = DM_FLAG_PRE_RELOC,
Bin Meng695c4992018-10-24 06:36:30 -0700377#endif
Simon Glass5915a2a2014-10-22 21:37:09 -0600378};
379
380#endif /* CONFIG_DM_GPIO */