xref: /openbmc/u-boot/drivers/gpio/dwapb_gpio.c (revision 70341e2e)
1 /*
2  * (C) Copyright 2015 Marek Vasut <marex@denx.de>
3  *
4  * DesignWare APB GPIO driver
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #include <common.h>
10 #include <malloc.h>
11 #include <asm/arch/gpio.h>
12 #include <asm/gpio.h>
13 #include <asm/io.h>
14 #include <dm.h>
15 #include <dm/device-internal.h>
16 #include <dm/lists.h>
17 #include <dm/root.h>
18 #include <errno.h>
19 
20 DECLARE_GLOBAL_DATA_PTR;
21 
22 #define GPIO_SWPORTA_DR		0x00
23 #define GPIO_SWPORTA_DDR	0x04
24 #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
31 #define GPIO_EXT_PORTA		0x50
32 
33 struct gpio_dwapb_platdata {
34 	const char	*name;
35 	int		bank;
36 	int		pins;
37 	fdt_addr_t	base;
38 };
39 
40 static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin)
41 {
42 	struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
43 
44 	clrbits_le32(plat->base + GPIO_SWPORTA_DDR, 1 << pin);
45 	return 0;
46 }
47 
48 static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin,
49 				     int val)
50 {
51 	struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
52 
53 	setbits_le32(plat->base + GPIO_SWPORTA_DDR, 1 << pin);
54 
55 	if (val)
56 		setbits_le32(plat->base + GPIO_SWPORTA_DR, 1 << pin);
57 	else
58 		clrbits_le32(plat->base + GPIO_SWPORTA_DR, 1 << pin);
59 
60 	return 0;
61 }
62 
63 static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin)
64 {
65 	struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
66 	return !!(readl(plat->base + GPIO_EXT_PORTA) & (1 << pin));
67 }
68 
69 
70 static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val)
71 {
72 	struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
73 
74 	if (val)
75 		setbits_le32(plat->base + GPIO_SWPORTA_DR, 1 << pin);
76 	else
77 		clrbits_le32(plat->base + GPIO_SWPORTA_DR, 1 << pin);
78 
79 	return 0;
80 }
81 
82 static const struct dm_gpio_ops gpio_dwapb_ops = {
83 	.direction_input	= dwapb_gpio_direction_input,
84 	.direction_output	= dwapb_gpio_direction_output,
85 	.get_value		= dwapb_gpio_get_value,
86 	.set_value		= dwapb_gpio_set_value,
87 };
88 
89 static int gpio_dwapb_probe(struct udevice *dev)
90 {
91 	struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
92 	struct gpio_dwapb_platdata *plat = dev->platdata;
93 
94 	if (!plat)
95 		return 0;
96 
97 	priv->gpio_count = plat->pins;
98 	priv->bank_name = plat->name;
99 
100 	return 0;
101 }
102 
103 static int gpio_dwapb_bind(struct udevice *dev)
104 {
105 	struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
106 	const void *blob = gd->fdt_blob;
107 	struct udevice *subdev;
108 	fdt_addr_t base;
109 	int ret, node, bank = 0;
110 
111 	/* If this is a child device, there is nothing to do here */
112 	if (plat)
113 		return 0;
114 
115 	base = fdtdec_get_addr(blob, dev->of_offset, "reg");
116 	if (base == FDT_ADDR_T_NONE) {
117 		debug("Can't get the GPIO register base address\n");
118 		return -ENXIO;
119 	}
120 
121 	for (node = fdt_first_subnode(blob, dev->of_offset);
122 	     node > 0;
123 	     node = fdt_next_subnode(blob, node)) {
124 		if (!fdtdec_get_bool(blob, node, "gpio-controller"))
125 			continue;
126 
127 		plat = NULL;
128 		plat = calloc(1, sizeof(*plat));
129 		if (!plat)
130 			return -ENOMEM;
131 
132 		plat->base = base;
133 		plat->bank = bank;
134 		plat->pins = fdtdec_get_int(blob, node, "snps,nr-gpios", 0);
135 		ret = fdt_get_string(blob, node, "bank-name", &plat->name);
136 		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 
144 		subdev->of_offset = node;
145 		bank++;
146 	}
147 
148 	return 0;
149 
150 err:
151 	free(plat);
152 	return ret;
153 }
154 
155 static const struct udevice_id gpio_dwapb_ids[] = {
156 	{ .compatible = "snps,dw-apb-gpio" },
157 	{ }
158 };
159 
160 U_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 };
168