1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Atmel PIO4 device driver
4 *
5 * Copyright (C) 2015 Atmel Corporation
6 * Wenyou.Yang <wenyou.yang@atmel.com>
7 */
8 #include <common.h>
9 #include <clk.h>
10 #include <dm.h>
11 #include <fdtdec.h>
12 #include <malloc.h>
13 #include <asm/arch/hardware.h>
14 #include <asm/global_data.h>
15 #include <asm/gpio.h>
16 #include <linux/bitops.h>
17 #include <mach/gpio.h>
18 #include <mach/atmel_pio4.h>
19
20 DECLARE_GLOBAL_DATA_PTR;
21
atmel_pio4_port_base(u32 port)22 static struct atmel_pio4_port *atmel_pio4_port_base(u32 port)
23 {
24 struct atmel_pio4_port *base = NULL;
25
26 switch (port) {
27 case AT91_PIO_PORTA:
28 base = (struct atmel_pio4_port *)ATMEL_BASE_PIOA;
29 break;
30 case AT91_PIO_PORTB:
31 base = (struct atmel_pio4_port *)ATMEL_BASE_PIOB;
32 break;
33 case AT91_PIO_PORTC:
34 base = (struct atmel_pio4_port *)ATMEL_BASE_PIOC;
35 break;
36 case AT91_PIO_PORTD:
37 base = (struct atmel_pio4_port *)ATMEL_BASE_PIOD;
38 break;
39 default:
40 printf("Error: Atmel PIO4: Failed to get PIO base of port#%d!\n",
41 port);
42 break;
43 }
44
45 return base;
46 }
47
atmel_pio4_config_io_func(u32 port,u32 pin,u32 func,u32 config)48 static int atmel_pio4_config_io_func(u32 port, u32 pin,
49 u32 func, u32 config)
50 {
51 struct atmel_pio4_port *port_base;
52 u32 reg, mask;
53
54 if (pin >= ATMEL_PIO_NPINS_PER_BANK)
55 return -EINVAL;
56
57 port_base = atmel_pio4_port_base(port);
58 if (!port_base)
59 return -EINVAL;
60
61 mask = 1 << pin;
62 reg = func;
63 reg |= config;
64
65 writel(mask, &port_base->mskr);
66 writel(reg, &port_base->cfgr);
67
68 return 0;
69 }
70
atmel_pio4_set_gpio(u32 port,u32 pin,u32 config)71 int atmel_pio4_set_gpio(u32 port, u32 pin, u32 config)
72 {
73 return atmel_pio4_config_io_func(port, pin,
74 ATMEL_PIO_CFGR_FUNC_GPIO,
75 config);
76 }
77
atmel_pio4_set_a_periph(u32 port,u32 pin,u32 config)78 int atmel_pio4_set_a_periph(u32 port, u32 pin, u32 config)
79 {
80 return atmel_pio4_config_io_func(port, pin,
81 ATMEL_PIO_CFGR_FUNC_PERIPH_A,
82 config);
83 }
84
atmel_pio4_set_b_periph(u32 port,u32 pin,u32 config)85 int atmel_pio4_set_b_periph(u32 port, u32 pin, u32 config)
86 {
87 return atmel_pio4_config_io_func(port, pin,
88 ATMEL_PIO_CFGR_FUNC_PERIPH_B,
89 config);
90 }
91
atmel_pio4_set_c_periph(u32 port,u32 pin,u32 config)92 int atmel_pio4_set_c_periph(u32 port, u32 pin, u32 config)
93 {
94 return atmel_pio4_config_io_func(port, pin,
95 ATMEL_PIO_CFGR_FUNC_PERIPH_C,
96 config);
97 }
98
atmel_pio4_set_d_periph(u32 port,u32 pin,u32 config)99 int atmel_pio4_set_d_periph(u32 port, u32 pin, u32 config)
100 {
101 return atmel_pio4_config_io_func(port, pin,
102 ATMEL_PIO_CFGR_FUNC_PERIPH_D,
103 config);
104 }
105
atmel_pio4_set_e_periph(u32 port,u32 pin,u32 config)106 int atmel_pio4_set_e_periph(u32 port, u32 pin, u32 config)
107 {
108 return atmel_pio4_config_io_func(port, pin,
109 ATMEL_PIO_CFGR_FUNC_PERIPH_E,
110 config);
111 }
112
atmel_pio4_set_f_periph(u32 port,u32 pin,u32 config)113 int atmel_pio4_set_f_periph(u32 port, u32 pin, u32 config)
114 {
115 return atmel_pio4_config_io_func(port, pin,
116 ATMEL_PIO_CFGR_FUNC_PERIPH_F,
117 config);
118 }
119
atmel_pio4_set_g_periph(u32 port,u32 pin,u32 config)120 int atmel_pio4_set_g_periph(u32 port, u32 pin, u32 config)
121 {
122 return atmel_pio4_config_io_func(port, pin,
123 ATMEL_PIO_CFGR_FUNC_PERIPH_G,
124 config);
125 }
126
atmel_pio4_set_pio_output(u32 port,u32 pin,u32 value)127 int atmel_pio4_set_pio_output(u32 port, u32 pin, u32 value)
128 {
129 struct atmel_pio4_port *port_base;
130 u32 reg, mask;
131
132 if (pin >= ATMEL_PIO_NPINS_PER_BANK)
133 return -EINVAL;
134
135 port_base = atmel_pio4_port_base(port);
136 if (!port_base)
137 return -EINVAL;
138
139 mask = 0x01 << pin;
140 reg = ATMEL_PIO_CFGR_FUNC_GPIO | ATMEL_PIO_DIR_MASK;
141
142 writel(mask, &port_base->mskr);
143 writel(reg, &port_base->cfgr);
144
145 if (value)
146 writel(mask, &port_base->sodr);
147 else
148 writel(mask, &port_base->codr);
149
150 return 0;
151 }
152
atmel_pio4_get_pio_input(u32 port,u32 pin)153 int atmel_pio4_get_pio_input(u32 port, u32 pin)
154 {
155 struct atmel_pio4_port *port_base;
156 u32 reg, mask;
157
158 if (pin >= ATMEL_PIO_NPINS_PER_BANK)
159 return -EINVAL;
160
161 port_base = atmel_pio4_port_base(port);
162 if (!port_base)
163 return -EINVAL;
164
165 mask = 0x01 << pin;
166 reg = ATMEL_PIO_CFGR_FUNC_GPIO;
167
168 writel(mask, &port_base->mskr);
169 writel(reg, &port_base->cfgr);
170
171 return (readl(&port_base->pdsr) & mask) ? 1 : 0;
172 }
173
174 #if CONFIG_IS_ENABLED(DM_GPIO)
175
176 struct atmel_pioctrl_data {
177 u32 nbanks;
178 };
179
180 struct atmel_pio4_plat {
181 struct atmel_pio4_port *reg_base;
182 };
183
atmel_pio4_bank_base(struct udevice * dev,u32 bank)184 static struct atmel_pio4_port *atmel_pio4_bank_base(struct udevice *dev,
185 u32 bank)
186 {
187 struct atmel_pio4_plat *plat = dev_get_plat(dev);
188 struct atmel_pio4_port *port_base =
189 (struct atmel_pio4_port *)((u32)plat->reg_base +
190 ATMEL_PIO_BANK_OFFSET * bank);
191
192 return port_base;
193 }
194
atmel_pio4_direction_input(struct udevice * dev,unsigned offset)195 static int atmel_pio4_direction_input(struct udevice *dev, unsigned offset)
196 {
197 u32 bank = ATMEL_PIO_BANK(offset);
198 u32 line = ATMEL_PIO_LINE(offset);
199 struct atmel_pio4_port *port_base = atmel_pio4_bank_base(dev, bank);
200 u32 mask = BIT(line);
201
202 writel(mask, &port_base->mskr);
203
204 clrbits_le32(&port_base->cfgr,
205 ATMEL_PIO_CFGR_FUNC_MASK | ATMEL_PIO_DIR_MASK);
206
207 return 0;
208 }
209
atmel_pio4_direction_output(struct udevice * dev,unsigned offset,int value)210 static int atmel_pio4_direction_output(struct udevice *dev,
211 unsigned offset, int value)
212 {
213 u32 bank = ATMEL_PIO_BANK(offset);
214 u32 line = ATMEL_PIO_LINE(offset);
215 struct atmel_pio4_port *port_base = atmel_pio4_bank_base(dev, bank);
216 u32 mask = BIT(line);
217
218 writel(mask, &port_base->mskr);
219
220 clrsetbits_le32(&port_base->cfgr,
221 ATMEL_PIO_CFGR_FUNC_MASK, ATMEL_PIO_DIR_MASK);
222
223 if (value)
224 writel(mask, &port_base->sodr);
225 else
226 writel(mask, &port_base->codr);
227
228 return 0;
229 }
230
atmel_pio4_get_value(struct udevice * dev,unsigned offset)231 static int atmel_pio4_get_value(struct udevice *dev, unsigned offset)
232 {
233 u32 bank = ATMEL_PIO_BANK(offset);
234 u32 line = ATMEL_PIO_LINE(offset);
235 struct atmel_pio4_port *port_base = atmel_pio4_bank_base(dev, bank);
236 u32 mask = BIT(line);
237
238 return (readl(&port_base->pdsr) & mask) ? 1 : 0;
239 }
240
atmel_pio4_set_value(struct udevice * dev,unsigned offset,int value)241 static int atmel_pio4_set_value(struct udevice *dev,
242 unsigned offset, int value)
243 {
244 u32 bank = ATMEL_PIO_BANK(offset);
245 u32 line = ATMEL_PIO_LINE(offset);
246 struct atmel_pio4_port *port_base = atmel_pio4_bank_base(dev, bank);
247 u32 mask = BIT(line);
248
249 if (value)
250 writel(mask, &port_base->sodr);
251 else
252 writel(mask, &port_base->codr);
253
254 return 0;
255 }
256
atmel_pio4_get_function(struct udevice * dev,unsigned offset)257 static int atmel_pio4_get_function(struct udevice *dev, unsigned offset)
258 {
259 u32 bank = ATMEL_PIO_BANK(offset);
260 u32 line = ATMEL_PIO_LINE(offset);
261 struct atmel_pio4_port *port_base = atmel_pio4_bank_base(dev, bank);
262 u32 mask = BIT(line);
263
264 writel(mask, &port_base->mskr);
265
266 return (readl(&port_base->cfgr) &
267 ATMEL_PIO_DIR_MASK) ? GPIOF_OUTPUT : GPIOF_INPUT;
268 }
269
270 static const struct dm_gpio_ops atmel_pio4_ops = {
271 .direction_input = atmel_pio4_direction_input,
272 .direction_output = atmel_pio4_direction_output,
273 .get_value = atmel_pio4_get_value,
274 .set_value = atmel_pio4_set_value,
275 .get_function = atmel_pio4_get_function,
276 };
277
atmel_pio4_bind(struct udevice * dev)278 static int atmel_pio4_bind(struct udevice *dev)
279 {
280 return dm_scan_fdt_dev(dev);
281 }
282
atmel_pio4_probe(struct udevice * dev)283 static int atmel_pio4_probe(struct udevice *dev)
284 {
285 struct atmel_pio4_plat *plat = dev_get_plat(dev);
286 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
287 struct atmel_pioctrl_data *pioctrl_data;
288 struct clk clk;
289 fdt_addr_t addr_base;
290 u32 nbanks;
291 int ret;
292
293 ret = clk_get_by_index(dev, 0, &clk);
294 if (ret)
295 return ret;
296
297 ret = clk_enable(&clk);
298 if (ret)
299 return ret;
300
301 clk_free(&clk);
302
303 addr_base = dev_read_addr(dev);
304 if (addr_base == FDT_ADDR_T_NONE)
305 return -EINVAL;
306
307 plat->reg_base = (struct atmel_pio4_port *)addr_base;
308
309 pioctrl_data = (struct atmel_pioctrl_data *)dev_get_driver_data(dev);
310 nbanks = pioctrl_data->nbanks;
311
312 uc_priv->bank_name = fdt_get_name(gd->fdt_blob, dev_of_offset(dev),
313 NULL);
314 uc_priv->gpio_count = nbanks * ATMEL_PIO_NPINS_PER_BANK;
315
316 return 0;
317 }
318
319 /*
320 * The number of banks can be different from a SoC to another one.
321 * We can have up to 16 banks.
322 */
323 static const struct atmel_pioctrl_data atmel_sama5d2_pioctrl_data = {
324 .nbanks = 4,
325 };
326
327 static const struct udevice_id atmel_pio4_ids[] = {
328 {
329 .compatible = "atmel,sama5d2-gpio",
330 .data = (ulong)&atmel_sama5d2_pioctrl_data,
331 },
332 {}
333 };
334
335 U_BOOT_DRIVER(gpio_atmel_pio4) = {
336 .name = "gpio_atmel_pio4",
337 .id = UCLASS_GPIO,
338 .ops = &atmel_pio4_ops,
339 .probe = atmel_pio4_probe,
340 .bind = atmel_pio4_bind,
341 .of_match = atmel_pio4_ids,
342 .plat_auto = sizeof(struct atmel_pio4_plat),
343 };
344
345 #endif
346