2 * NVIDIA Tegra20 GPIO handling.
3 * (C) Copyright 2010-2012
4 * NVIDIA Corporation <www.nvidia.com>
6 * SPDX-License-Identifier: GPL-2.0+
10 * Based on (mostly copied from) kw_gpio.c based Linux 2.6 kernel driver.
11 * Tom Warren (twarren@nvidia.com)
20 #include <asm/bitops.h>
21 #include <asm/arch/tegra.h>
23 #include <dm/device-internal.h>
25 DECLARE_GLOBAL_DATA_PTR;
34 struct tegra_gpio_platdata {
35 struct gpio_ctlr_bank *bank;
36 const char *port_name; /* Name of port, e.g. "B" */
37 int base_gpio; /* Port number for this port (0, 1,.., n-1) */
40 /* Information about each port at run-time */
41 struct tegra_port_info {
42 char label[TEGRA_GPIOS_PER_PORT][GPIO_NAME_SIZE];
43 struct gpio_ctlr_bank *bank;
44 int base_gpio; /* Port number for this port (0, 1,.., n-1) */
47 /* Return config of pin 'gpio' as GPIO (1) or SFPIO (0) */
48 static int get_config(unsigned gpio)
50 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
51 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
55 u = readl(&bank->gpio_config[GPIO_PORT(gpio)]);
56 type = (u >> GPIO_BIT(gpio)) & 1;
58 debug("get_config: port = %d, bit = %d is %s\n",
59 GPIO_FULLPORT(gpio), GPIO_BIT(gpio), type ? "GPIO" : "SFPIO");
64 /* Config pin 'gpio' as GPIO or SFPIO, based on 'type' */
65 static void set_config(unsigned gpio, int type)
67 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
68 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
71 debug("set_config: port = %d, bit = %d, %s\n",
72 GPIO_FULLPORT(gpio), GPIO_BIT(gpio), type ? "GPIO" : "SFPIO");
74 u = readl(&bank->gpio_config[GPIO_PORT(gpio)]);
76 u |= 1 << GPIO_BIT(gpio);
78 u &= ~(1 << GPIO_BIT(gpio));
79 writel(u, &bank->gpio_config[GPIO_PORT(gpio)]);
82 /* Return GPIO pin 'gpio' direction - 0 = input or 1 = output */
83 static int get_direction(unsigned gpio)
85 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
86 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
90 u = readl(&bank->gpio_dir_out[GPIO_PORT(gpio)]);
91 dir = (u >> GPIO_BIT(gpio)) & 1;
93 debug("get_direction: port = %d, bit = %d, %s\n",
94 GPIO_FULLPORT(gpio), GPIO_BIT(gpio), dir ? "OUT" : "IN");
99 /* Config GPIO pin 'gpio' as input or output (OE) as per 'output' */
100 static void set_direction(unsigned gpio, int output)
102 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
103 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
106 debug("set_direction: port = %d, bit = %d, %s\n",
107 GPIO_FULLPORT(gpio), GPIO_BIT(gpio), output ? "OUT" : "IN");
109 u = readl(&bank->gpio_dir_out[GPIO_PORT(gpio)]);
111 u |= 1 << GPIO_BIT(gpio);
113 u &= ~(1 << GPIO_BIT(gpio));
114 writel(u, &bank->gpio_dir_out[GPIO_PORT(gpio)]);
117 /* set GPIO pin 'gpio' output bit as 0 or 1 as per 'high' */
118 static void set_level(unsigned gpio, int high)
120 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
121 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
124 debug("set_level: port = %d, bit %d == %d\n",
125 GPIO_FULLPORT(gpio), GPIO_BIT(gpio), high);
127 u = readl(&bank->gpio_out[GPIO_PORT(gpio)]);
129 u |= 1 << GPIO_BIT(gpio);
131 u &= ~(1 << GPIO_BIT(gpio));
132 writel(u, &bank->gpio_out[GPIO_PORT(gpio)]);
135 static int check_reserved(struct udevice *dev, unsigned offset,
138 struct tegra_port_info *state = dev_get_priv(dev);
139 struct gpio_dev_priv *uc_priv = dev->uclass_priv;
141 if (!*state->label[offset]) {
142 printf("tegra_gpio: %s: error: gpio %s%d not reserved\n",
143 func, uc_priv->bank_name, offset);
150 /* set GPIO pin 'gpio' as an output, with polarity 'value' */
151 int tegra_spl_gpio_direction_output(int gpio, int value)
153 /* Configure as a GPIO */
156 /* Configure GPIO output value. */
157 set_level(gpio, value);
159 /* Configure GPIO direction as output. */
160 set_direction(gpio, 1);
166 * Generic_GPIO primitives.
169 static int tegra_gpio_request(struct udevice *dev, unsigned offset,
172 struct tegra_port_info *state = dev_get_priv(dev);
177 if (*state->label[offset])
180 strncpy(state->label[offset], label, GPIO_NAME_SIZE);
181 state->label[offset][GPIO_NAME_SIZE - 1] = '\0';
183 /* Configure as a GPIO */
184 set_config(state->base_gpio + offset, 1);
189 static int tegra_gpio_free(struct udevice *dev, unsigned offset)
191 struct tegra_port_info *state = dev_get_priv(dev);
194 ret = check_reserved(dev, offset, __func__);
197 state->label[offset][0] = '\0';
202 /* read GPIO OUT value of pin 'gpio' */
203 static int tegra_gpio_get_output_value(unsigned gpio)
205 struct gpio_ctlr *ctlr = (struct gpio_ctlr *)NV_PA_GPIO_BASE;
206 struct gpio_ctlr_bank *bank = &ctlr->gpio_bank[GPIO_BANK(gpio)];
209 debug("gpio_get_output_value: pin = %d (port %d:bit %d)\n",
210 gpio, GPIO_FULLPORT(gpio), GPIO_BIT(gpio));
212 val = readl(&bank->gpio_out[GPIO_PORT(gpio)]);
214 return (val >> GPIO_BIT(gpio)) & 1;
218 /* set GPIO pin 'gpio' as an input */
219 static int tegra_gpio_direction_input(struct udevice *dev, unsigned offset)
221 struct tegra_port_info *state = dev_get_priv(dev);
224 ret = check_reserved(dev, offset, __func__);
228 /* Configure GPIO direction as input. */
229 set_direction(state->base_gpio + offset, 0);
234 /* set GPIO pin 'gpio' as an output, with polarity 'value' */
235 static int tegra_gpio_direction_output(struct udevice *dev, unsigned offset,
238 struct tegra_port_info *state = dev_get_priv(dev);
239 int gpio = state->base_gpio + offset;
242 ret = check_reserved(dev, offset, __func__);
246 /* Configure GPIO output value. */
247 set_level(gpio, value);
249 /* Configure GPIO direction as output. */
250 set_direction(gpio, 1);
255 /* read GPIO IN value of pin 'gpio' */
256 static int tegra_gpio_get_value(struct udevice *dev, unsigned offset)
258 struct tegra_port_info *state = dev_get_priv(dev);
259 int gpio = state->base_gpio + offset;
263 ret = check_reserved(dev, offset, __func__);
267 debug("%s: pin = %d (port %d:bit %d)\n", __func__,
268 gpio, GPIO_FULLPORT(gpio), GPIO_BIT(gpio));
270 val = readl(&state->bank->gpio_in[GPIO_PORT(gpio)]);
272 return (val >> GPIO_BIT(gpio)) & 1;
275 /* write GPIO OUT value to pin 'gpio' */
276 static int tegra_gpio_set_value(struct udevice *dev, unsigned offset, int value)
278 struct tegra_port_info *state = dev_get_priv(dev);
279 int gpio = state->base_gpio + offset;
282 ret = check_reserved(dev, offset, __func__);
286 debug("gpio_set_value: pin = %d (port %d:bit %d), value = %d\n",
287 gpio, GPIO_FULLPORT(gpio), GPIO_BIT(gpio), value);
289 /* Configure GPIO output value. */
290 set_level(gpio, value);
295 void gpio_config_table(const struct tegra_gpio_config *config, int len)
299 for (i = 0; i < len; i++) {
300 switch (config[i].init) {
301 case TEGRA_GPIO_INIT_IN:
302 gpio_direction_input(config[i].gpio);
304 case TEGRA_GPIO_INIT_OUT0:
305 gpio_direction_output(config[i].gpio, 0);
307 case TEGRA_GPIO_INIT_OUT1:
308 gpio_direction_output(config[i].gpio, 1);
311 set_config(config[i].gpio, 1);
315 static int tegra_gpio_get_function(struct udevice *dev, unsigned offset)
317 struct tegra_port_info *state = dev_get_priv(dev);
318 int gpio = state->base_gpio + offset;
320 if (!*state->label[offset])
322 if (!get_config(gpio))
324 else if (get_direction(gpio))
330 static int tegra_gpio_get_state(struct udevice *dev, unsigned int offset,
331 char *buf, int bufsize)
333 struct gpio_dev_priv *uc_priv = dev->uclass_priv;
334 struct tegra_port_info *state = dev_get_priv(dev);
335 int gpio = state->base_gpio + offset;
341 label = state->label[offset];
342 is_gpio = get_config(gpio); /* GPIO, not SFPIO */
343 size = snprintf(buf, bufsize, "%s%d: ",
344 uc_priv->bank_name ? uc_priv->bank_name : "", offset);
348 is_output = get_direction(gpio);
350 snprintf(buf, bufsize, "%s: %d [%c]%s%s",
351 is_output ? "out" : " in",
353 tegra_gpio_get_output_value(gpio) :
354 tegra_gpio_get_value(dev, offset),
359 snprintf(buf, bufsize, "sfpio");
365 static const struct dm_gpio_ops gpio_tegra_ops = {
366 .request = tegra_gpio_request,
367 .free = tegra_gpio_free,
368 .direction_input = tegra_gpio_direction_input,
369 .direction_output = tegra_gpio_direction_output,
370 .get_value = tegra_gpio_get_value,
371 .set_value = tegra_gpio_set_value,
372 .get_function = tegra_gpio_get_function,
373 .get_state = tegra_gpio_get_state,
377 * Returns the name of a GPIO port
379 * GPIOs are named A, B, C, ..., Z, AA, BB, CC, ...
381 * @base_port: Base port number (0, 1..n-1)
382 * @return allocated string containing the name
384 static char *gpio_port_name(int base_port)
391 *s++ = 'A' + (base_port % 26);
400 static const struct udevice_id tegra_gpio_ids[] = {
401 { .compatible = "nvidia,tegra30-gpio" },
402 { .compatible = "nvidia,tegra20-gpio" },
406 static int gpio_tegra_probe(struct udevice *dev)
408 struct gpio_dev_priv *uc_priv = dev->uclass_priv;
409 struct tegra_port_info *priv = dev->priv;
410 struct tegra_gpio_platdata *plat = dev->platdata;
412 /* Only child devices have ports */
416 priv->bank = plat->bank;
417 priv->base_gpio = plat->base_gpio;
419 uc_priv->gpio_count = TEGRA_GPIOS_PER_PORT;
420 uc_priv->bank_name = plat->port_name;
426 * We have a top-level GPIO device with no actual GPIOs. It has a child
427 * device for each Tegra port.
429 static int gpio_tegra_bind(struct udevice *parent)
431 struct tegra_gpio_platdata *plat = parent->platdata;
432 struct gpio_ctlr *ctlr;
438 /* If this is a child device, there is nothing to do here */
443 * This driver does not make use of interrupts, other than to figure
444 * out the number of GPIO banks
446 if (!fdt_getprop(gd->fdt_blob, parent->of_offset, "interrupts", &len))
448 bank_count = len / 3 / sizeof(u32);
449 ctlr = (struct gpio_ctlr *)fdtdec_get_addr(gd->fdt_blob,
450 parent->of_offset, "reg");
451 for (bank = 0; bank < bank_count; bank++) {
454 for (port = 0; port < TEGRA_PORTS_PER_BANK; port++) {
455 struct tegra_gpio_platdata *plat;
459 plat = calloc(1, sizeof(*plat));
462 plat->bank = &ctlr->gpio_bank[bank];
463 base_port = bank * TEGRA_PORTS_PER_BANK + port;
464 plat->base_gpio = TEGRA_GPIOS_PER_PORT * base_port;
465 plat->port_name = gpio_port_name(base_port);
467 ret = device_bind(parent, parent->driver,
468 plat->port_name, plat, -1, &dev);
471 dev->of_offset = parent->of_offset;
478 U_BOOT_DRIVER(gpio_tegra) = {
479 .name = "gpio_tegra",
481 .of_match = tegra_gpio_ids,
482 .bind = gpio_tegra_bind,
483 .probe = gpio_tegra_probe,
484 .priv_auto_alloc_size = sizeof(struct tegra_port_info),
485 .ops = &gpio_tegra_ops,