blob: 7243100219a99399dd7b9985ed393a944ca42883 [file] [log] [blame]
Tom Rix0c872ec2009-05-15 23:48:36 +02001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix@windriver.com>
4 *
Wolfgang Denkbcd4d4e2013-07-28 22:12:44 +02005 * SPDX-License-Identifier: GPL-2.0
Tom Rix0c872ec2009-05-15 23:48:36 +02006 *
7 * This work is derived from the linux 2.6.27 kernel source
8 * To fetch, use the kernel repository
9 * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
10 * Use the v2.6.27 tag.
11 *
12 * Below is the original's header including its copyright
13 *
14 * linux/arch/arm/plat-omap/gpio.c
15 *
16 * Support functions for OMAP GPIO
17 *
18 * Copyright (C) 2003-2005 Nokia Corporation
19 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
Tom Rix0c872ec2009-05-15 23:48:36 +020020 */
21#include <common.h>
Simon Glass5915a2a2014-10-22 21:37:09 -060022#include <dm.h>
Tom Rini0a9e3402015-07-31 19:55:09 -040023#include <fdtdec.h>
Joe Hershberger365d6072011-11-11 15:55:36 -060024#include <asm/gpio.h>
Tom Rix0c872ec2009-05-15 23:48:36 +020025#include <asm/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090026#include <linux/errno.h>
Tom Rini0a9e3402015-07-31 19:55:09 -040027#include <malloc.h>
28
29DECLARE_GLOBAL_DATA_PTR;
Tom Rix0c872ec2009-05-15 23:48:36 +020030
Sanjeev Premi81bdc152011-09-08 10:47:25 -040031#define OMAP_GPIO_DIR_OUT 0
32#define OMAP_GPIO_DIR_IN 1
33
Simon Glass5915a2a2014-10-22 21:37:09 -060034#ifdef CONFIG_DM_GPIO
35
Simon Glass5915a2a2014-10-22 21:37:09 -060036#define GPIO_PER_BANK 32
37
38struct gpio_bank {
Simon Glass5915a2a2014-10-22 21:37:09 -060039 /* TODO(sjg@chromium.org): Can we use a struct here? */
40 void *base; /* address of registers in physical memory */
Simon Glass5915a2a2014-10-22 21:37:09 -060041};
42
43#endif
44
Tom Rix0c872ec2009-05-15 23:48:36 +020045static inline int get_gpio_index(int gpio)
46{
47 return gpio & 0x1f;
48}
49
Nikita Kiryanovdcee1ab2012-11-27 22:40:57 +000050int gpio_is_valid(int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020051{
Axel Lin87bd05d2013-06-21 18:54:25 +080052 return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
Tom Rix0c872ec2009-05-15 23:48:36 +020053}
54
Aneesh V25223a62011-07-21 09:29:29 -040055static void _set_gpio_direction(const struct gpio_bank *bank, int gpio,
56 int is_input)
Tom Rix0c872ec2009-05-15 23:48:36 +020057{
58 void *reg = bank->base;
59 u32 l;
60
Tom Rini0a9e3402015-07-31 19:55:09 -040061 reg += OMAP_GPIO_OE;
62
Tom Rix0c872ec2009-05-15 23:48:36 +020063 l = __raw_readl(reg);
64 if (is_input)
65 l |= 1 << gpio;
66 else
67 l &= ~(1 << gpio);
68 __raw_writel(l, reg);
69}
70
Sanjeev Premi81bdc152011-09-08 10:47:25 -040071/**
72 * Get the direction of the GPIO by reading the GPIO_OE register
73 * corresponding to the specified bank.
74 */
75static int _get_gpio_direction(const struct gpio_bank *bank, int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020076{
Sanjeev Premi81bdc152011-09-08 10:47:25 -040077 void *reg = bank->base;
78 u32 v;
Tom Rix0c872ec2009-05-15 23:48:36 +020079
Tom Rini0a9e3402015-07-31 19:55:09 -040080 reg += OMAP_GPIO_OE;
Sanjeev Premi81bdc152011-09-08 10:47:25 -040081
82 v = __raw_readl(reg);
83
84 if (v & (1 << gpio))
85 return OMAP_GPIO_DIR_IN;
86 else
87 return OMAP_GPIO_DIR_OUT;
Tom Rix0c872ec2009-05-15 23:48:36 +020088}
89
Aneesh V25223a62011-07-21 09:29:29 -040090static void _set_gpio_dataout(const struct gpio_bank *bank, int gpio,
91 int enable)
Tom Rix0c872ec2009-05-15 23:48:36 +020092{
93 void *reg = bank->base;
94 u32 l = 0;
95
Tom Rini0a9e3402015-07-31 19:55:09 -040096 if (enable)
97 reg += OMAP_GPIO_SETDATAOUT;
98 else
99 reg += OMAP_GPIO_CLEARDATAOUT;
100
101 l = 1 << gpio;
Tom Rix0c872ec2009-05-15 23:48:36 +0200102 __raw_writel(l, reg);
103}
104
Simon Glassd57b6112014-10-22 21:37:08 -0600105static int _get_gpio_value(const struct gpio_bank *bank, int gpio)
106{
107 void *reg = bank->base;
108 int input;
109
Tom Rini0a9e3402015-07-31 19:55:09 -0400110 input = _get_gpio_direction(bank, gpio);
111 switch (input) {
112 case OMAP_GPIO_DIR_IN:
113 reg += OMAP_GPIO_DATAIN;
114 break;
115 case OMAP_GPIO_DIR_OUT:
116 reg += OMAP_GPIO_DATAOUT;
Simon Glassd57b6112014-10-22 21:37:08 -0600117 break;
118 default:
119 return -1;
120 }
121
122 return (__raw_readl(reg) & (1 << gpio)) != 0;
123}
124
Simon Glass5915a2a2014-10-22 21:37:09 -0600125#ifndef CONFIG_DM_GPIO
126
Simon Glassd57b6112014-10-22 21:37:08 -0600127static inline const struct gpio_bank *get_gpio_bank(int gpio)
128{
129 return &omap_gpio_bank[gpio >> 5];
130}
131
132static int check_gpio(int gpio)
133{
134 if (!gpio_is_valid(gpio)) {
135 printf("ERROR : check_gpio: invalid GPIO %d\n", gpio);
136 return -1;
137 }
138 return 0;
139}
140
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400141/**
142 * Set value of the specified gpio
143 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600144int gpio_set_value(unsigned gpio, int value)
Tom Rix0c872ec2009-05-15 23:48:36 +0200145{
Aneesh V25223a62011-07-21 09:29:29 -0400146 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200147
148 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600149 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200150 bank = get_gpio_bank(gpio);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400151 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
Joe Hershberger365d6072011-11-11 15:55:36 -0600152
153 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200154}
155
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400156/**
157 * Get value of the specified gpio
158 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600159int gpio_get_value(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200160{
Aneesh V25223a62011-07-21 09:29:29 -0400161 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200162
163 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600164 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200165 bank = get_gpio_bank(gpio);
Simon Glassd57b6112014-10-22 21:37:08 -0600166
167 return _get_gpio_value(bank, get_gpio_index(gpio));
Tom Rix0c872ec2009-05-15 23:48:36 +0200168}
169
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400170/**
171 * Set gpio direction as input
172 */
173int gpio_direction_input(unsigned gpio)
Joel A Fernandes569919d2011-09-04 11:10:03 -0500174{
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400175 const struct gpio_bank *bank;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500176
177 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600178 return -1;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500179
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400180 bank = get_gpio_bank(gpio);
Tom Rix0c872ec2009-05-15 23:48:36 +0200181 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400182
183 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200184}
185
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400186/**
187 * Set gpio direction as output
188 */
189int gpio_direction_output(unsigned gpio, int value)
190{
191 const struct gpio_bank *bank;
192
193 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600194 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400195
196 bank = get_gpio_bank(gpio);
197 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
198 _set_gpio_direction(bank, get_gpio_index(gpio), 0);
199
200 return 0;
201}
202
203/**
204 * Request a gpio before using it.
205 *
206 * NOTE: Argument 'label' is unused.
207 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600208int gpio_request(unsigned gpio, const char *label)
Tom Rix0c872ec2009-05-15 23:48:36 +0200209{
210 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600211 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200212
213 return 0;
214}
215
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400216/**
217 * Reset and free the gpio after using it.
218 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600219int gpio_free(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200220{
Joe Hershberger365d6072011-11-11 15:55:36 -0600221 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200222}
Simon Glass5915a2a2014-10-22 21:37:09 -0600223
224#else /* new driver model interface CONFIG_DM_GPIO */
225
Simon Glass5915a2a2014-10-22 21:37:09 -0600226/* set GPIO pin 'gpio' as an input */
227static int omap_gpio_direction_input(struct udevice *dev, unsigned offset)
228{
229 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600230
231 /* Configure GPIO direction as input. */
232 _set_gpio_direction(bank, offset, 1);
233
234 return 0;
235}
236
237/* set GPIO pin 'gpio' as an output, with polarity 'value' */
238static int omap_gpio_direction_output(struct udevice *dev, unsigned offset,
239 int value)
240{
241 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600242
243 _set_gpio_dataout(bank, offset, value);
244 _set_gpio_direction(bank, offset, 0);
245
246 return 0;
247}
248
249/* read GPIO IN value of pin 'gpio' */
250static int omap_gpio_get_value(struct udevice *dev, unsigned offset)
251{
252 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600253
254 return _get_gpio_value(bank, offset);
255}
256
257/* write GPIO OUT value to pin 'gpio' */
258static int omap_gpio_set_value(struct udevice *dev, unsigned offset,
259 int value)
260{
261 struct gpio_bank *bank = dev_get_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600262
263 _set_gpio_dataout(bank, offset, value);
264
265 return 0;
266}
267
Simon Glass5915a2a2014-10-22 21:37:09 -0600268static int omap_gpio_get_function(struct udevice *dev, unsigned offset)
269{
270 struct gpio_bank *bank = dev_get_priv(dev);
271
Simon Glass5915a2a2014-10-22 21:37:09 -0600272 /* GPIOF_FUNC is not implemented yet */
Axel Lin26c04722015-01-31 22:23:38 +0800273 if (_get_gpio_direction(bank, offset) == OMAP_GPIO_DIR_OUT)
Simon Glass5915a2a2014-10-22 21:37:09 -0600274 return GPIOF_OUTPUT;
275 else
276 return GPIOF_INPUT;
277}
278
279static const struct dm_gpio_ops gpio_omap_ops = {
Simon Glass5915a2a2014-10-22 21:37:09 -0600280 .direction_input = omap_gpio_direction_input,
281 .direction_output = omap_gpio_direction_output,
282 .get_value = omap_gpio_get_value,
283 .set_value = omap_gpio_set_value,
284 .get_function = omap_gpio_get_function,
Simon Glass5915a2a2014-10-22 21:37:09 -0600285};
286
287static int omap_gpio_probe(struct udevice *dev)
288{
289 struct gpio_bank *bank = dev_get_priv(dev);
290 struct omap_gpio_platdata *plat = dev_get_platdata(dev);
Simon Glasse564f052015-03-05 12:25:20 -0700291 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Simon Glass5915a2a2014-10-22 21:37:09 -0600292
Tom Rini0a9e3402015-07-31 19:55:09 -0400293 uc_priv->bank_name = plat->port_name;
Simon Glass5915a2a2014-10-22 21:37:09 -0600294 uc_priv->gpio_count = GPIO_PER_BANK;
295 bank->base = (void *)plat->base;
Simon Glass5915a2a2014-10-22 21:37:09 -0600296
297 return 0;
298}
299
Tom Rini0a9e3402015-07-31 19:55:09 -0400300static int omap_gpio_bind(struct udevice *dev)
301{
Simon Glass4d686042017-09-17 16:54:52 -0600302 struct omap_gpio_platdata *plat = dev_get_platdata(dev);
Tom Rini0a9e3402015-07-31 19:55:09 -0400303 fdt_addr_t base_addr;
304
305 if (plat)
306 return 0;
307
Simon Glassa821c4a2017-05-17 17:18:05 -0600308 base_addr = devfdt_get_addr(dev);
Tom Rini0a9e3402015-07-31 19:55:09 -0400309 if (base_addr == FDT_ADDR_T_NONE)
Simon Glass7c843192017-09-17 16:54:53 -0600310 return -EINVAL;
Tom Rini0a9e3402015-07-31 19:55:09 -0400311
312 /*
313 * TODO:
314 * When every board is converted to driver model and DT is
315 * supported, this can be done by auto-alloc feature, but
316 * not using calloc to alloc memory for platdata.
Simon Glass4d686042017-09-17 16:54:52 -0600317 *
318 * For example am33xx_gpio uses platform data rather than device tree.
319 *
320 * NOTE: DO NOT COPY this code if you are using device tree.
Tom Rini0a9e3402015-07-31 19:55:09 -0400321 */
322 plat = calloc(1, sizeof(*plat));
323 if (!plat)
324 return -ENOMEM;
325
326 plat->base = base_addr;
Simon Glasse160f7d2017-01-17 16:52:55 -0700327 plat->port_name = fdt_get_name(gd->fdt_blob, dev_of_offset(dev), NULL);
Tom Rini0a9e3402015-07-31 19:55:09 -0400328 dev->platdata = plat;
329
330 return 0;
331}
332
333static const struct udevice_id omap_gpio_ids[] = {
334 { .compatible = "ti,omap3-gpio" },
335 { .compatible = "ti,omap4-gpio" },
336 { .compatible = "ti,am4372-gpio" },
337 { }
338};
339
Simon Glass5915a2a2014-10-22 21:37:09 -0600340U_BOOT_DRIVER(gpio_omap) = {
341 .name = "gpio_omap",
342 .id = UCLASS_GPIO,
343 .ops = &gpio_omap_ops,
Tom Rini0a9e3402015-07-31 19:55:09 -0400344 .of_match = omap_gpio_ids,
345 .bind = omap_gpio_bind,
Simon Glass5915a2a2014-10-22 21:37:09 -0600346 .probe = omap_gpio_probe,
347 .priv_auto_alloc_size = sizeof(struct gpio_bank),
348};
349
350#endif /* CONFIG_DM_GPIO */