c3c5924405a6bb9a72a6272c54e0447da22fc14e
[openwrt.git] / target / linux / ramips / patches-3.14 / 0047-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch
1 From 4b23ed96930650076caa524ffdde898cb937bdaa Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Mon, 4 Aug 2014 20:36:29 +0200
4 Subject: [PATCH 47/57] GPIO: MIPS: ralink: add gpio driver for ralink SoC
5
6 Add gpio driver for Ralink SoC. This driver makes the gpio core on
7 RT2880, RT305x, rt3352, rt3662, rt3883, rt5350 and mt7620 work.
8
9 Signed-off-by: John Crispin <blogic@openwrt.org>
10 Cc: linux-mips@linux-mips.org
11 Cc: linux-gpio@vger.kernel.org
12 ---
13  arch/mips/include/asm/mach-ralink/gpio.h |   24 +++
14  drivers/gpio/Kconfig                     |    6 +
15  drivers/gpio/Makefile                    |    1 +
16  drivers/gpio/gpio-ralink.c               |  345 ++++++++++++++++++++++++++++++
17  4 files changed, 376 insertions(+)
18  create mode 100644 arch/mips/include/asm/mach-ralink/gpio.h
19  create mode 100644 drivers/gpio/gpio-ralink.c
20
21 --- /dev/null
22 +++ b/arch/mips/include/asm/mach-ralink/gpio.h
23 @@ -0,0 +1,24 @@
24 +/*
25 + *  Ralink SoC GPIO API support
26 + *
27 + *  Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
28 + *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
29 + *
30 + *  This program is free software; you can redistribute it and/or modify it
31 + *  under the terms of the GNU General Public License version 2 as published
32 + *  by the Free Software Foundation.
33 + *
34 + */
35 +
36 +#ifndef __ASM_MACH_RALINK_GPIO_H
37 +#define __ASM_MACH_RALINK_GPIO_H
38 +
39 +#define ARCH_NR_GPIOS  128
40 +#include <asm-generic/gpio.h>
41 +
42 +#define gpio_get_value __gpio_get_value
43 +#define gpio_set_value __gpio_set_value
44 +#define gpio_cansleep  __gpio_cansleep
45 +#define gpio_to_irq    __gpio_to_irq
46 +
47 +#endif /* __ASM_MACH_RALINK_GPIO_H */
48 --- a/drivers/gpio/Kconfig
49 +++ b/drivers/gpio/Kconfig
50 @@ -260,6 +260,12 @@ config GPIO_SCH311X
51           To compile this driver as a module, choose M here: the module will
52           be called gpio-sch311x.
53  
54 +config GPIO_RALINK
55 +       bool "Ralink GPIO Support"
56 +       depends on RALINK
57 +       help
58 +         Say yes here to support the Ralink SoC GPIO device
59 +
60  config GPIO_SPEAR_SPICS
61         bool "ST SPEAr13xx SPI Chip Select as GPIO support"
62         depends on PLAT_SPEAR
63 --- a/drivers/gpio/Makefile
64 +++ b/drivers/gpio/Makefile
65 @@ -63,6 +63,7 @@ obj-$(CONFIG_GPIO_PCF857X)    += gpio-pcf85
66  obj-$(CONFIG_GPIO_PCH)         += gpio-pch.o
67  obj-$(CONFIG_GPIO_PL061)       += gpio-pl061.o
68  obj-$(CONFIG_GPIO_PXA)         += gpio-pxa.o
69 +obj-$(CONFIG_GPIO_RALINK)      += gpio-ralink.o
70  obj-$(CONFIG_GPIO_RC5T583)     += gpio-rc5t583.o
71  obj-$(CONFIG_GPIO_RDC321X)     += gpio-rdc321x.o
72  obj-$(CONFIG_GPIO_RCAR)                += gpio-rcar.o
73 --- /dev/null
74 +++ b/drivers/gpio/gpio-ralink.c
75 @@ -0,0 +1,353 @@
76 +/*
77 + * This program is free software; you can redistribute it and/or modify it
78 + * under the terms of the GNU General Public License version 2 as published
79 + * by the Free Software Foundation.
80 + *
81 + * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
82 + * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
83 + */
84 +
85 +#include <linux/module.h>
86 +#include <linux/io.h>
87 +#include <linux/gpio.h>
88 +#include <linux/spinlock.h>
89 +#include <linux/platform_device.h>
90 +#include <linux/of_irq.h>
91 +#include <linux/irqdomain.h>
92 +#include <linux/interrupt.h>
93 +
94 +enum ralink_gpio_reg {
95 +       GPIO_REG_INT = 0,
96 +       GPIO_REG_EDGE,
97 +       GPIO_REG_RENA,
98 +       GPIO_REG_FENA,
99 +       GPIO_REG_DATA,
100 +       GPIO_REG_DIR,
101 +       GPIO_REG_POL,
102 +       GPIO_REG_SET,
103 +       GPIO_REG_RESET,
104 +       GPIO_REG_TOGGLE,
105 +       GPIO_REG_MAX
106 +};
107 +
108 +struct ralink_gpio_chip {
109 +       struct gpio_chip chip;
110 +       u8 regs[GPIO_REG_MAX];
111 +
112 +       spinlock_t lock;
113 +       void __iomem *membase;
114 +       struct irq_domain *domain;
115 +       int irq;
116 +
117 +       u32 rising;
118 +       u32 falling;
119 +};
120 +
121 +#define MAP_MAX        4
122 +static struct irq_domain *irq_map[MAP_MAX];
123 +static int irq_map_count;
124 +static atomic_t irq_refcount = ATOMIC_INIT(0);
125 +
126 +static inline struct ralink_gpio_chip *to_ralink_gpio(struct gpio_chip *chip)
127 +{
128 +       struct ralink_gpio_chip *rg;
129 +
130 +       rg = container_of(chip, struct ralink_gpio_chip, chip);
131 +
132 +       return rg;
133 +}
134 +
135 +static inline void rt_gpio_w32(struct ralink_gpio_chip *rg, u8 reg, u32 val)
136 +{
137 +       iowrite32(val, rg->membase + rg->regs[reg]);
138 +}
139 +
140 +static inline u32 rt_gpio_r32(struct ralink_gpio_chip *rg, u8 reg)
141 +{
142 +       return ioread32(rg->membase + rg->regs[reg]);
143 +}
144 +
145 +static void ralink_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
146 +{
147 +       struct ralink_gpio_chip *rg = to_ralink_gpio(chip);
148 +
149 +       rt_gpio_w32(rg, (value) ? GPIO_REG_SET : GPIO_REG_RESET, BIT(offset));
150 +}
151 +
152 +static int ralink_gpio_get(struct gpio_chip *chip, unsigned offset)
153 +{
154 +       struct ralink_gpio_chip *rg = to_ralink_gpio(chip);
155 +
156 +       return !!(rt_gpio_r32(rg, GPIO_REG_DATA) & BIT(offset));
157 +}
158 +
159 +static int ralink_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
160 +{
161 +       struct ralink_gpio_chip *rg = to_ralink_gpio(chip);
162 +       unsigned long flags;
163 +       u32 t;
164 +
165 +       spin_lock_irqsave(&rg->lock, flags);
166 +       t = rt_gpio_r32(rg, GPIO_REG_DIR);
167 +       t &= ~BIT(offset);
168 +       rt_gpio_w32(rg, GPIO_REG_DIR, t);
169 +       spin_unlock_irqrestore(&rg->lock, flags);
170 +
171 +       return 0;
172 +}
173 +
174 +static int ralink_gpio_direction_output(struct gpio_chip *chip,
175 +                                       unsigned offset, int value)
176 +{
177 +       struct ralink_gpio_chip *rg = to_ralink_gpio(chip);
178 +       unsigned long flags;
179 +       u32 t;
180 +
181 +       spin_lock_irqsave(&rg->lock, flags);
182 +       ralink_gpio_set(chip, offset, value);
183 +       t = rt_gpio_r32(rg, GPIO_REG_DIR);
184 +       t |= BIT(offset);
185 +       rt_gpio_w32(rg, GPIO_REG_DIR, t);
186 +       spin_unlock_irqrestore(&rg->lock, flags);
187 +
188 +       return 0;
189 +}
190 +
191 +static int ralink_gpio_to_irq(struct gpio_chip *chip, unsigned pin)
192 +{
193 +       struct ralink_gpio_chip *rg = to_ralink_gpio(chip);
194 +
195 +       if (rg->irq < 1)
196 +               return -1;
197 +
198 +       return irq_create_mapping(rg->domain, pin);
199 +}
200 +
201 +static void ralink_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
202 +{
203 +       int i;
204 +
205 +       for (i = 0; i < irq_map_count; i++) {
206 +               struct irq_domain *domain = irq_map[i];
207 +               struct ralink_gpio_chip *rg;
208 +               unsigned long pending;
209 +               int bit;
210 +
211 +               rg = (struct ralink_gpio_chip *) domain->host_data;
212 +               pending = rt_gpio_r32(rg, GPIO_REG_INT);
213 +
214 +               for_each_set_bit(bit, &pending, rg->chip.ngpio) {
215 +                       u32 map = irq_find_mapping(domain, bit);
216 +                       generic_handle_irq(map);
217 +                       rt_gpio_w32(rg, GPIO_REG_INT, BIT(bit));
218 +               }
219 +       }
220 +}
221 +
222 +static void ralink_gpio_irq_unmask(struct irq_data *d)
223 +{
224 +       struct ralink_gpio_chip *rg;
225 +       unsigned long flags;
226 +       u32 val;
227 +
228 +       rg = (struct ralink_gpio_chip *) d->domain->host_data;
229 +       val = rt_gpio_r32(rg, GPIO_REG_RENA);
230 +
231 +       spin_lock_irqsave(&rg->lock, flags);
232 +       rt_gpio_w32(rg, GPIO_REG_RENA, val | (BIT(d->hwirq) & rg->rising));
233 +       rt_gpio_w32(rg, GPIO_REG_FENA, val | (BIT(d->hwirq) & rg->falling));
234 +       spin_unlock_irqrestore(&rg->lock, flags);
235 +}
236 +
237 +static void ralink_gpio_irq_mask(struct irq_data *d)
238 +{
239 +       struct ralink_gpio_chip *rg;
240 +       unsigned long flags;
241 +       u32 val;
242 +
243 +       rg = (struct ralink_gpio_chip *) d->domain->host_data;
244 +       val = rt_gpio_r32(rg, GPIO_REG_RENA);
245 +
246 +       spin_lock_irqsave(&rg->lock, flags);
247 +       rt_gpio_w32(rg, GPIO_REG_FENA, val & ~BIT(d->hwirq));
248 +       rt_gpio_w32(rg, GPIO_REG_RENA, val & ~BIT(d->hwirq));
249 +       spin_unlock_irqrestore(&rg->lock, flags);
250 +}
251 +
252 +static int ralink_gpio_irq_type(struct irq_data *d, unsigned int type)
253 +{
254 +       struct ralink_gpio_chip *rg;
255 +       u32 mask = BIT(d->hwirq);
256 +
257 +       rg = (struct ralink_gpio_chip *) d->domain->host_data;
258 +
259 +       if (type == IRQ_TYPE_PROBE) {
260 +               if ((rg->rising | rg->falling) & mask)
261 +                       return 0;
262 +
263 +               type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
264 +       }
265 +
266 +       if (type & IRQ_TYPE_EDGE_RISING)
267 +               rg->rising |= mask;
268 +       else
269 +               rg->rising &= ~mask;
270 +
271 +       if (type & IRQ_TYPE_EDGE_FALLING)
272 +               rg->falling |= mask;
273 +       else
274 +               rg->falling &= ~mask;
275 +
276 +       return 0;
277 +}
278 +
279 +static struct irq_chip ralink_gpio_irq_chip = {
280 +       .name           = "GPIO",
281 +       .irq_unmask     = ralink_gpio_irq_unmask,
282 +       .irq_mask       = ralink_gpio_irq_mask,
283 +       .irq_mask_ack   = ralink_gpio_irq_mask,
284 +       .irq_set_type   = ralink_gpio_irq_type,
285 +};
286 +
287 +static int gpio_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)
288 +{
289 +       irq_set_chip_and_handler(irq, &ralink_gpio_irq_chip, handle_level_irq);
290 +       irq_set_handler_data(irq, d);
291 +
292 +       return 0;
293 +}
294 +
295 +static const struct irq_domain_ops irq_domain_ops = {
296 +       .xlate = irq_domain_xlate_onecell,
297 +       .map = gpio_map,
298 +};
299 +
300 +static void ralink_gpio_irq_init(struct device_node *np,
301 +                                struct ralink_gpio_chip *rg)
302 +{
303 +       if (irq_map_count >= MAP_MAX)
304 +               return;
305 +
306 +       rg->irq = irq_of_parse_and_map(np, 0);
307 +       if (!rg->irq)
308 +               return;
309 +
310 +       rg->domain = irq_domain_add_linear(np, rg->chip.ngpio,
311 +                                          &irq_domain_ops, rg);
312 +       if (!rg->domain) {
313 +               dev_err(rg->chip.dev, "irq_domain_add_linear failed\n");
314 +               return;
315 +       }
316 +
317 +       irq_map[irq_map_count++] = rg->domain;
318 +
319 +       rt_gpio_w32(rg, GPIO_REG_RENA, 0x0);
320 +       rt_gpio_w32(rg, GPIO_REG_FENA, 0x0);
321 +
322 +       if (!atomic_read(&irq_refcount))
323 +               irq_set_chained_handler(rg->irq, ralink_gpio_irq_handler);
324 +       atomic_inc(&irq_refcount);
325 +
326 +       dev_info(rg->chip.dev, "registering %d irq handlers\n", rg->chip.ngpio);
327 +}
328 +
329 +static int ralink_gpio_request(struct gpio_chip *chip, unsigned offset)
330 +{
331 +       int gpio = chip->base + offset;
332 +
333 +       return pinctrl_request_gpio(gpio);
334 +}
335 +
336 +static void ralink_gpio_free(struct gpio_chip *chip, unsigned offset)
337 +{
338 +       int gpio = chip->base + offset;
339 +
340 +       pinctrl_free_gpio(gpio);
341 +}
342 +
343 +static int ralink_gpio_probe(struct platform_device *pdev)
344 +{
345 +       struct device_node *np = pdev->dev.of_node;
346 +       struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
347 +       struct ralink_gpio_chip *rg;
348 +       const __be32 *ngpio, *gpiobase;
349 +
350 +       if (!res) {
351 +               dev_err(&pdev->dev, "failed to find resource\n");
352 +               return -ENOMEM;
353 +       }
354 +
355 +       rg = devm_kzalloc(&pdev->dev,
356 +                       sizeof(struct ralink_gpio_chip), GFP_KERNEL);
357 +       if (!rg)
358 +               return -ENOMEM;
359 +
360 +       rg->membase = devm_request_and_ioremap(&pdev->dev, res);
361 +       if (!rg->membase) {
362 +               dev_err(&pdev->dev, "cannot remap I/O memory region\n");
363 +               return -ENOMEM;
364 +       }
365 +
366 +       if (of_property_read_u8_array(np, "ralink,register-map",
367 +                       rg->regs, GPIO_REG_MAX)) {
368 +               dev_err(&pdev->dev, "failed to read register definition\n");
369 +               return -EINVAL;
370 +       }
371 +
372 +       ngpio = of_get_property(np, "ralink,num-gpios", NULL);
373 +       if (!ngpio) {
374 +               dev_err(&pdev->dev, "failed to read number of pins\n");
375 +               return -EINVAL;
376 +       }
377 +
378 +       gpiobase = of_get_property(np, "ralink,gpio-base", NULL);
379 +       if (gpiobase)
380 +               rg->chip.base = be32_to_cpu(*gpiobase);
381 +       else
382 +               rg->chip.base = -1;
383 +
384 +       spin_lock_init(&rg->lock);
385 +
386 +       rg->chip.dev = &pdev->dev;
387 +       rg->chip.label = dev_name(&pdev->dev);
388 +       rg->chip.of_node = np;
389 +       rg->chip.ngpio = be32_to_cpu(*ngpio);
390 +       rg->chip.direction_input = ralink_gpio_direction_input;
391 +       rg->chip.direction_output = ralink_gpio_direction_output;
392 +       rg->chip.get = ralink_gpio_get;
393 +       rg->chip.set = ralink_gpio_set;
394 +       rg->chip.request = ralink_gpio_request;
395 +       rg->chip.to_irq = ralink_gpio_to_irq;
396 +       rg->chip.free = ralink_gpio_free;
397 +
398 +       /* set polarity to low for all lines */
399 +       rt_gpio_w32(rg, GPIO_REG_POL, 0);
400 +
401 +       dev_info(&pdev->dev, "registering %d gpios\n", rg->chip.ngpio);
402 +
403 +       ralink_gpio_irq_init(np, rg);
404 +
405 +       return gpiochip_add(&rg->chip);
406 +}
407 +
408 +static const struct of_device_id ralink_gpio_match[] = {
409 +       { .compatible = "ralink,rt2880-gpio" },
410 +       {},
411 +};
412 +MODULE_DEVICE_TABLE(of, ralink_gpio_match);
413 +
414 +static struct platform_driver ralink_gpio_driver = {
415 +       .probe = ralink_gpio_probe,
416 +       .driver = {
417 +               .name = "rt2880_gpio",
418 +               .owner = THIS_MODULE,
419 +               .of_match_table = ralink_gpio_match,
420 +       },
421 +};
422 +
423 +static int __init ralink_gpio_init(void)
424 +{
425 +       return platform_driver_register(&ralink_gpio_driver);
426 +}
427 +
428 +subsys_initcall(ralink_gpio_init);