blob: 04a2381acd818ceb045d2fbcfa80237f71e611d9 [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>
Ley Foon Tandb6a1582018-09-04 14:04:58 +080018#include <reset.h>
Marek Vasute30a70c2015-06-23 15:54:19 +020019
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000020#define GPIO_SWPORT_DR(p) (0x00 + (p) * 0xc)
21#define GPIO_SWPORT_DDR(p) (0x04 + (p) * 0xc)
Marek Vasute30a70c2015-06-23 15:54:19 +020022#define GPIO_INTEN 0x30
23#define GPIO_INTMASK 0x34
24#define GPIO_INTTYPE_LEVEL 0x38
25#define GPIO_INT_POLARITY 0x3c
26#define GPIO_INTSTATUS 0x40
27#define GPIO_PORTA_DEBOUNCE 0x48
28#define GPIO_PORTA_EOI 0x4c
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000029#define GPIO_EXT_PORT(p) (0x50 + (p) * 4)
Marek Vasute30a70c2015-06-23 15:54:19 +020030
Ley Foon Tandb6a1582018-09-04 14:04:58 +080031struct gpio_dwapb_priv {
32 struct reset_ctl_bulk resets;
33};
34
Marek Vasute30a70c2015-06-23 15:54:19 +020035struct gpio_dwapb_platdata {
36 const char *name;
37 int bank;
38 int pins;
39 fdt_addr_t base;
40};
41
42static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin)
43{
44 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
45
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000046 clrbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020047 return 0;
48}
49
50static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin,
51 int val)
52{
53 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
54
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000055 setbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020056
57 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000058 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020059 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000060 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020061
62 return 0;
63}
64
65static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin)
66{
67 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000068 return !!(readl(plat->base + GPIO_EXT_PORT(plat->bank)) & (1 << pin));
Marek Vasute30a70c2015-06-23 15:54:19 +020069}
70
71
72static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val)
73{
74 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
75
76 if (val)
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000077 setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020078 else
Phil Edworthy2d0c2c42016-11-03 11:05:12 +000079 clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
Marek Vasute30a70c2015-06-23 15:54:19 +020080
81 return 0;
82}
83
Ley Foon Tan71f27002018-08-16 13:46:30 +080084static int dwapb_gpio_get_function(struct udevice *dev, unsigned offset)
85{
86 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
87 u32 gpio;
88
89 gpio = readl(plat->base + GPIO_SWPORT_DDR(plat->bank));
90
91 if (gpio & BIT(offset))
92 return GPIOF_OUTPUT;
93 else
94 return GPIOF_INPUT;
95}
96
Marek Vasute30a70c2015-06-23 15:54:19 +020097static const struct dm_gpio_ops gpio_dwapb_ops = {
98 .direction_input = dwapb_gpio_direction_input,
99 .direction_output = dwapb_gpio_direction_output,
100 .get_value = dwapb_gpio_get_value,
101 .set_value = dwapb_gpio_set_value,
Ley Foon Tan71f27002018-08-16 13:46:30 +0800102 .get_function = dwapb_gpio_get_function,
Marek Vasute30a70c2015-06-23 15:54:19 +0200103};
104
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800105static int gpio_dwapb_reset(struct udevice *dev)
106{
107 int ret;
108 struct gpio_dwapb_priv *priv = dev_get_priv(dev);
109
110 ret = reset_get_bulk(dev, &priv->resets);
111 if (ret) {
112 /* Return 0 if error due to !CONFIG_DM_RESET and reset
113 * DT property is not present.
114 */
115 if (ret == -ENOENT || ret == -ENOTSUPP)
116 return 0;
117
118 dev_warn(dev, "Can't get reset: %d\n", ret);
119 return ret;
120 }
121
122 ret = reset_deassert_bulk(&priv->resets);
123 if (ret) {
124 reset_release_bulk(&priv->resets);
125 dev_err(dev, "Failed to reset: %d\n", ret);
126 return ret;
127 }
128
129 return 0;
130}
131
Marek Vasute30a70c2015-06-23 15:54:19 +0200132static int gpio_dwapb_probe(struct udevice *dev)
133{
134 struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
135 struct gpio_dwapb_platdata *plat = dev->platdata;
136
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800137 if (!plat) {
138 /* Reset on parent device only */
139 return gpio_dwapb_reset(dev);
140 }
Marek Vasute30a70c2015-06-23 15:54:19 +0200141
142 priv->gpio_count = plat->pins;
143 priv->bank_name = plat->name;
144
145 return 0;
146}
147
148static int gpio_dwapb_bind(struct udevice *dev)
149{
150 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
Marek Vasute30a70c2015-06-23 15:54:19 +0200151 struct udevice *subdev;
152 fdt_addr_t base;
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200153 int ret, bank = 0;
154 ofnode node;
Marek Vasute30a70c2015-06-23 15:54:19 +0200155
156 /* If this is a child device, there is nothing to do here */
157 if (plat)
158 return 0;
159
Ley Foon Tan9ea35442018-08-16 02:05:54 +0800160 base = dev_read_addr(dev);
Marek Vasute30a70c2015-06-23 15:54:19 +0200161 if (base == FDT_ADDR_T_NONE) {
162 debug("Can't get the GPIO register base address\n");
163 return -ENXIO;
164 }
165
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200166 for (node = dev_read_first_subnode(dev); ofnode_valid(node);
167 node = dev_read_next_subnode(node)) {
168 if (!ofnode_read_bool(node, "gpio-controller"))
Marek Vasute30a70c2015-06-23 15:54:19 +0200169 continue;
170
Ley Foon Tan86d56a52018-09-19 16:26:33 +0800171 plat = devm_kcalloc(dev, 1, sizeof(*plat), GFP_KERNEL);
Marek Vasute30a70c2015-06-23 15:54:19 +0200172 if (!plat)
173 return -ENOMEM;
174
175 plat->base = base;
176 plat->bank = bank;
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200177 plat->pins = ofnode_read_u32_default(node, "snps,nr-gpios", 0);
178
179 if (ofnode_read_string_index(node, "bank-name", 0,
180 &plat->name)) {
Simon Goldschmidt89f1fe52018-11-02 11:54:50 +0100181 /*
182 * Fall back to node name. This means accessing pins
183 * via bank name won't work.
184 */
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200185 plat->name = ofnode_get_name(node);
Simon Goldschmidt89f1fe52018-11-02 11:54:50 +0100186 }
Marek Vasute30a70c2015-06-23 15:54:19 +0200187
188 ret = device_bind(dev, dev->driver, plat->name,
189 plat, -1, &subdev);
190 if (ret)
Ley Foon Tan86d56a52018-09-19 16:26:33 +0800191 return ret;
Marek Vasute30a70c2015-06-23 15:54:19 +0200192
Simon Goldschmidt1b898ff2019-05-09 22:12:00 +0200193 dev->node = node;
Marek Vasute30a70c2015-06-23 15:54:19 +0200194 bank++;
195 }
196
197 return 0;
Marek Vasute30a70c2015-06-23 15:54:19 +0200198}
199
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800200static int gpio_dwapb_remove(struct udevice *dev)
201{
202 struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
203 struct gpio_dwapb_priv *priv = dev_get_priv(dev);
204
205 if (!plat && priv)
206 return reset_release_bulk(&priv->resets);
207
208 return 0;
209}
210
Marek Vasute30a70c2015-06-23 15:54:19 +0200211static const struct udevice_id gpio_dwapb_ids[] = {
212 { .compatible = "snps,dw-apb-gpio" },
213 { }
214};
215
216U_BOOT_DRIVER(gpio_dwapb) = {
217 .name = "gpio-dwapb",
218 .id = UCLASS_GPIO,
219 .of_match = gpio_dwapb_ids,
220 .ops = &gpio_dwapb_ops,
221 .bind = gpio_dwapb_bind,
222 .probe = gpio_dwapb_probe,
Ley Foon Tandb6a1582018-09-04 14:04:58 +0800223 .remove = gpio_dwapb_remove,
224 .priv_auto_alloc_size = sizeof(struct gpio_dwapb_priv),
Marek Vasute30a70c2015-06-23 15:54:19 +0200225};