blob: e3439eebb5b689f8cffdbd40124a39ab4547e91c [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>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070016#include <dm/devres.h>
Marek Vasute30a70c2015-06-23 15:54:19 +020017#include <dm/lists.h>
18#include <dm/root.h>
19#include <errno.h>
Ley Foon Tandb6a1582018-09-04 14:04:58 +080020#include <reset.h>
Marek Vasute30a70c2015-06-23 15:54:19 +020021
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000022#define GPIO_SWPORT_DR(p) (0x00 + (p) * 0xc)
23#define GPIO_SWPORT_DDR(p) (0x04 + (p) * 0xc)
Marek Vasute30a70c2015-06-23 15:54:19 +020024#define GPIO_INTEN 0x30
25#define GPIO_INTMASK 0x34
26#define GPIO_INTTYPE_LEVEL 0x38
27#define GPIO_INT_POLARITY 0x3c
28#define GPIO_INTSTATUS 0x40
29#define GPIO_PORTA_DEBOUNCE 0x48
30#define GPIO_PORTA_EOI 0x4c
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000031#define GPIO_EXT_PORT(p) (0x50 + (p) * 4)
Marek Vasute30a70c2015-06-23 15:54:19 +020032
Ley Foon Tandb6a1582018-09-04 14:04:58 +080033struct gpio_dwapb_priv {
34 struct reset_ctl_bulk resets;
35};
36
Marek Vasute30a70c2015-06-23 15:54:19 +020037struct gpio_dwapb_platdata {
38 const char *name;
39 int bank;
40 int pins;
41 fdt_addr_t base;
42};
43
44static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin)
45{
46 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
47
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000048 clrbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020049 return 0;
50}
51
52static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin,
53 int val)
54{
55 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
56
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000057 setbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020058
59 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000060 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020061 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000062 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020063
64 return 0;
65}
66
67static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin)
68{
69 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000070 return !!(readl(plat->base + GPIO_EXT_PORT(plat->bank)) & (1 << pin));
Marek Vasute30a70c2015-06-23 15:54:19 +020071}
72
73
74static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val)
75{
76 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
77
78 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000079 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020080 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000081 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020082
83 return 0;
84}
85
Ley Foon Tan71f27002018-08-16 13:46:30 +080086static int dwapb_gpio_get_function(struct udevice *dev, unsigned offset)
87{
88 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
89 u32 gpio;
90
91 gpio = readl(plat->base + GPIO_SWPORT_DDR(plat->bank));
92
93 if (gpio & BIT(offset))
94 return GPIOF_OUTPUT;
95 else
96 return GPIOF_INPUT;
97}
98
Marek Vasute30a70c2015-06-23 15:54:19 +020099static const struct dm_gpio_ops gpio_dwapb_ops = {
100 .direction_input = dwapb_gpio_direction_input,
101 .direction_output = dwapb_gpio_direction_output,
102 .get_value = dwapb_gpio_get_value,
103 .set_value = dwapb_gpio_set_value,
Ley Foon Tan71f27002018-08-16 13:46:30 +0800104 .get_function = dwapb_gpio_get_function,
Marek Vasute30a70c2015-06-23 15:54:19 +0200105};
106
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800107static int gpio_dwapb_reset(struct udevice *dev)
108{
109 int ret;
110 struct gpio_dwapb_priv *priv = dev_get_priv(dev);
111
112 ret = reset_get_bulk(dev, &priv->resets);
113 if (ret) {
114 /* Return 0 if error due to !CONFIG_DM_RESET and reset
115 * DT property is not present.
116 */
117 if (ret == -ENOENT || ret == -ENOTSUPP)
118 return 0;
119
120 dev_warn(dev, "Can't get reset: %d\n", ret);
121 return ret;
122 }
123
124 ret = reset_deassert_bulk(&priv->resets);
125 if (ret) {
126 reset_release_bulk(&priv->resets);
127 dev_err(dev, "Failed to reset: %d\n", ret);
128 return ret;
129 }
130
131 return 0;
132}
133
Marek Vasute30a70c2015-06-23 15:54:19 +0200134static int gpio_dwapb_probe(struct udevice *dev)
135{
136 struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
137 struct gpio_dwapb_platdata *plat = dev->platdata;
138
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800139 if (!plat) {
140 /* Reset on parent device only */
141 return gpio_dwapb_reset(dev);
142 }
Marek Vasute30a70c2015-06-23 15:54:19 +0200143
144 priv->gpio_count = plat->pins;
145 priv->bank_name = plat->name;
146
147 return 0;
148}
149
150static int gpio_dwapb_bind(struct udevice *dev)
151{
152 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
Marek Vasute30a70c2015-06-23 15:54:19 +0200153 struct udevice *subdev;
154 fdt_addr_t base;
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200155 int ret, bank = 0;
156 ofnode node;
Marek Vasute30a70c2015-06-23 15:54:19 +0200157
158 /* If this is a child device, there is nothing to do here */
159 if (plat)
160 return 0;
161
Ley Foon Tan9ea35442018-08-16 02:05:54 +0800162 base = dev_read_addr(dev);
Marek Vasute30a70c2015-06-23 15:54:19 +0200163 if (base == FDT_ADDR_T_NONE) {
164 debug("Can't get the GPIO register base address\n");
165 return -ENXIO;
166 }
167
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200168 for (node = dev_read_first_subnode(dev); ofnode_valid(node);
169 node = dev_read_next_subnode(node)) {
170 if (!ofnode_read_bool(node, "gpio-controller"))
Marek Vasute30a70c2015-06-23 15:54:19 +0200171 continue;
172
Ley Foon Tan86d56a52018-09-19 16:26:33 +0800173 plat = devm_kcalloc(dev, 1, sizeof(*plat), GFP_KERNEL);
Marek Vasute30a70c2015-06-23 15:54:19 +0200174 if (!plat)
175 return -ENOMEM;
176
177 plat->base = base;
178 plat->bank = bank;
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200179 plat->pins = ofnode_read_u32_default(node, "snps,nr-gpios", 0);
180
181 if (ofnode_read_string_index(node, "bank-name", 0,
182 &plat->name)) {
Simon Goldschmidt89f1fe52018-11-02 11:54:50 +0100183 /*
184 * Fall back to node name. This means accessing pins
185 * via bank name won't work.
186 */
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200187 plat->name = ofnode_get_name(node);
Simon Goldschmidt89f1fe52018-11-02 11:54:50 +0100188 }
Marek Vasute30a70c2015-06-23 15:54:19 +0200189
Simon Goldschmidt34b1a512019-05-21 22:03:12 +0200190 ret = device_bind_ofnode(dev, dev->driver, plat->name,
191 plat, node, &subdev);
Marek Vasute30a70c2015-06-23 15:54:19 +0200192 if (ret)
Ley Foon Tan86d56a52018-09-19 16:26:33 +0800193 return ret;
Marek Vasute30a70c2015-06-23 15:54:19 +0200194
Marek Vasute30a70c2015-06-23 15:54:19 +0200195 bank++;
196 }
197
198 return 0;
Marek Vasute30a70c2015-06-23 15:54:19 +0200199}
200
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800201static int gpio_dwapb_remove(struct udevice *dev)
202{
203 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
204 struct gpio_dwapb_priv *priv = dev_get_priv(dev);
205
206 if (!plat && priv)
207 return reset_release_bulk(&priv->resets);
208
209 return 0;
210}
211
Marek Vasute30a70c2015-06-23 15:54:19 +0200212static const struct udevice_id gpio_dwapb_ids[] = {
213 { .compatible = "snps,dw-apb-gpio" },
214 { }
215};
216
217U_BOOT_DRIVER(gpio_dwapb) = {
218 .name = "gpio-dwapb",
219 .id = UCLASS_GPIO,
220 .of_match = gpio_dwapb_ids,
221 .ops = &gpio_dwapb_ops,
222 .bind = gpio_dwapb_bind,
223 .probe = gpio_dwapb_probe,
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800224 .remove = gpio_dwapb_remove,
225 .priv_auto_alloc_size = sizeof(struct gpio_dwapb_priv),
Marek Vasute30a70c2015-06-23 15:54:19 +0200226};