blob: a118f58b226a010a2a7c9b49a3eab2036697cb2a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasute30a70c2015-06-23 15:54:19 +02002/*
3 * (C) Copyright 2015 Marek Vasut <marex@denx.de>
4 *
5 * DesignWare APB GPIO driver
Marek Vasute30a70c2015-06-23 15:54:19 +02006 */
7
8#include <common.h>
9#include <malloc.h>
10#include <asm/arch/gpio.h>
11#include <asm/gpio.h>
12#include <asm/io.h>
13#include <dm.h>
14#include <dm/device-internal.h>
15#include <dm/lists.h>
16#include <dm/root.h>
17#include <errno.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000021#define GPIO_SWPORT_DR(p) (0x00 + (p) * 0xc)
22#define GPIO_SWPORT_DDR(p) (0x04 + (p) * 0xc)
Marek Vasute30a70c2015-06-23 15:54:19 +020023#define GPIO_INTEN 0x30
24#define GPIO_INTMASK 0x34
25#define GPIO_INTTYPE_LEVEL 0x38
26#define GPIO_INT_POLARITY 0x3c
27#define GPIO_INTSTATUS 0x40
28#define GPIO_PORTA_DEBOUNCE 0x48
29#define GPIO_PORTA_EOI 0x4c
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000030#define GPIO_EXT_PORT(p) (0x50 + (p) * 4)
Marek Vasute30a70c2015-06-23 15:54:19 +020031
32struct gpio_dwapb_platdata {
33 const char *name;
34 int bank;
35 int pins;
36 fdt_addr_t base;
37};
38
39static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin)
40{
41 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
42
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000043 clrbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020044 return 0;
45}
46
47static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin,
48 int val)
49{
50 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
51
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000052 setbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020053
54 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000055 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020056 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000057 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020058
59 return 0;
60}
61
62static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin)
63{
64 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000065 return !!(readl(plat->base + GPIO_EXT_PORT(plat->bank)) & (1 << pin));
Marek Vasute30a70c2015-06-23 15:54:19 +020066}
67
68
69static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val)
70{
71 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
72
73 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000074 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020075 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000076 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020077
78 return 0;
79}
80
81static const struct dm_gpio_ops gpio_dwapb_ops = {
82 .direction_input = dwapb_gpio_direction_input,
83 .direction_output = dwapb_gpio_direction_output,
84 .get_value = dwapb_gpio_get_value,
85 .set_value = dwapb_gpio_set_value,
86};
87
88static int gpio_dwapb_probe(struct udevice *dev)
89{
90 struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
91 struct gpio_dwapb_platdata *plat = dev->platdata;
92
93 if (!plat)
94 return 0;
95
96 priv->gpio_count = plat->pins;
97 priv->bank_name = plat->name;
98
99 return 0;
100}
101
102static int gpio_dwapb_bind(struct udevice *dev)
103{
104 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
105 const void *blob = gd->fdt_blob;
106 struct udevice *subdev;
107 fdt_addr_t base;
108 int ret, node, bank = 0;
109
110 /* If this is a child device, there is nothing to do here */
111 if (plat)
112 return 0;
113
Simon Glasse160f7d2017-01-17 16:52:55 -0700114 base = fdtdec_get_addr(blob, dev_of_offset(dev), "reg");
Marek Vasute30a70c2015-06-23 15:54:19 +0200115 if (base == FDT_ADDR_T_NONE) {
116 debug("Can't get the GPIO register base address\n");
117 return -ENXIO;
118 }
119
Simon Glasse160f7d2017-01-17 16:52:55 -0700120 for (node = fdt_first_subnode(blob, dev_of_offset(dev));
Marek Vasute30a70c2015-06-23 15:54:19 +0200121 node > 0;
122 node = fdt_next_subnode(blob, node)) {
123 if (!fdtdec_get_bool(blob, node, "gpio-controller"))
124 continue;
125
126 plat = NULL;
127 plat = calloc(1, sizeof(*plat));
128 if (!plat)
129 return -ENOMEM;
130
131 plat->base = base;
132 plat->bank = bank;
133 plat->pins = fdtdec_get_int(blob, node, "snps,nr-gpios", 0);
Simon Glassb02e4042016-10-02 17:59:28 -0600134 plat->name = fdt_stringlist_get(blob, node, "bank-name", 0,
135 NULL);
Marek Vasute30a70c2015-06-23 15:54:19 +0200136 if (ret)
137 goto err;
138
139 ret = device_bind(dev, dev->driver, plat->name,
140 plat, -1, &subdev);
141 if (ret)
142 goto err;
143
Simon Glasse160f7d2017-01-17 16:52:55 -0700144 dev_set_of_offset(subdev, node);
Marek Vasute30a70c2015-06-23 15:54:19 +0200145 bank++;
146 }
147
148 return 0;
149
150err:
151 free(plat);
152 return ret;
153}
154
155static const struct udevice_id gpio_dwapb_ids[] = {
156 { .compatible = "snps,dw-apb-gpio" },
157 { }
158};
159
160U_BOOT_DRIVER(gpio_dwapb) = {
161 .name = "gpio-dwapb",
162 .id = UCLASS_GPIO,
163 .of_match = gpio_dwapb_ids,
164 .ops = &gpio_dwapb_ops,
165 .bind = gpio_dwapb_bind,
166 .probe = gpio_dwapb_probe,
167};