GNU Linux-libre 4.14.290-gnu1
[releases.git] / drivers / gpio / gpio-vf610.c
1 /*
2  * Freescale vf610 GPIO support through PORT and GPIO
3  *
4  * Copyright (c) 2014 Toradex AG.
5  *
6  * Author: Stefan Agner <stefan@agner.ch>.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 #include <linux/bitops.h>
19 #include <linux/err.h>
20 #include <linux/gpio.h>
21 #include <linux/init.h>
22 #include <linux/interrupt.h>
23 #include <linux/io.h>
24 #include <linux/ioport.h>
25 #include <linux/irq.h>
26 #include <linux/platform_device.h>
27 #include <linux/of.h>
28 #include <linux/of_device.h>
29 #include <linux/of_irq.h>
30
31 #define VF610_GPIO_PER_PORT             32
32
33 struct fsl_gpio_soc_data {
34         /* SoCs has a Port Data Direction Register (PDDR) */
35         bool have_paddr;
36 };
37
38 struct vf610_gpio_port {
39         struct gpio_chip gc;
40         struct irq_chip ic;
41         void __iomem *base;
42         void __iomem *gpio_base;
43         const struct fsl_gpio_soc_data *sdata;
44         u8 irqc[VF610_GPIO_PER_PORT];
45         int irq;
46 };
47
48 #define GPIO_PDOR               0x00
49 #define GPIO_PSOR               0x04
50 #define GPIO_PCOR               0x08
51 #define GPIO_PTOR               0x0c
52 #define GPIO_PDIR               0x10
53 #define GPIO_PDDR               0x14
54
55 #define PORT_PCR(n)             ((n) * 0x4)
56 #define PORT_PCR_IRQC_OFFSET    16
57
58 #define PORT_ISFR               0xa0
59 #define PORT_DFER               0xc0
60 #define PORT_DFCR               0xc4
61 #define PORT_DFWR               0xc8
62
63 #define PORT_INT_OFF            0x0
64 #define PORT_INT_LOGIC_ZERO     0x8
65 #define PORT_INT_RISING_EDGE    0x9
66 #define PORT_INT_FALLING_EDGE   0xa
67 #define PORT_INT_EITHER_EDGE    0xb
68 #define PORT_INT_LOGIC_ONE      0xc
69
70 static const struct fsl_gpio_soc_data imx_data = {
71         .have_paddr = true,
72 };
73
74 static const struct of_device_id vf610_gpio_dt_ids[] = {
75         { .compatible = "fsl,vf610-gpio",       .data = NULL, },
76         { .compatible = "fsl,imx7ulp-gpio",     .data = &imx_data, },
77         { /* sentinel */ }
78 };
79
80 static inline void vf610_gpio_writel(u32 val, void __iomem *reg)
81 {
82         writel_relaxed(val, reg);
83 }
84
85 static inline u32 vf610_gpio_readl(void __iomem *reg)
86 {
87         return readl_relaxed(reg);
88 }
89
90 static int vf610_gpio_get(struct gpio_chip *gc, unsigned int gpio)
91 {
92         struct vf610_gpio_port *port = gpiochip_get_data(gc);
93         unsigned long mask = BIT(gpio);
94         void __iomem *addr;
95
96         if (port->sdata && port->sdata->have_paddr) {
97                 mask &= vf610_gpio_readl(port->gpio_base + GPIO_PDDR);
98                 addr = mask ? port->gpio_base + GPIO_PDOR :
99                               port->gpio_base + GPIO_PDIR;
100                 return !!(vf610_gpio_readl(addr) & BIT(gpio));
101         } else {
102                 return !!(vf610_gpio_readl(port->gpio_base + GPIO_PDIR)
103                                            & BIT(gpio));
104         }
105 }
106
107 static void vf610_gpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
108 {
109         struct vf610_gpio_port *port = gpiochip_get_data(gc);
110         unsigned long mask = BIT(gpio);
111
112         if (val)
113                 vf610_gpio_writel(mask, port->gpio_base + GPIO_PSOR);
114         else
115                 vf610_gpio_writel(mask, port->gpio_base + GPIO_PCOR);
116 }
117
118 static int vf610_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
119 {
120         struct vf610_gpio_port *port = gpiochip_get_data(chip);
121         unsigned long mask = BIT(gpio);
122         u32 val;
123
124         if (port->sdata && port->sdata->have_paddr) {
125                 val = vf610_gpio_readl(port->gpio_base + GPIO_PDDR);
126                 val &= ~mask;
127                 vf610_gpio_writel(val, port->gpio_base + GPIO_PDDR);
128         }
129
130         return pinctrl_gpio_direction_input(chip->base + gpio);
131 }
132
133 static int vf610_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
134                                        int value)
135 {
136         struct vf610_gpio_port *port = gpiochip_get_data(chip);
137         unsigned long mask = BIT(gpio);
138         u32 val;
139
140         if (port->sdata && port->sdata->have_paddr) {
141                 val = vf610_gpio_readl(port->gpio_base + GPIO_PDDR);
142                 val |= mask;
143                 vf610_gpio_writel(val, port->gpio_base + GPIO_PDDR);
144         }
145
146         vf610_gpio_set(chip, gpio, value);
147
148         return pinctrl_gpio_direction_output(chip->base + gpio);
149 }
150
151 static void vf610_gpio_irq_handler(struct irq_desc *desc)
152 {
153         struct vf610_gpio_port *port =
154                 gpiochip_get_data(irq_desc_get_handler_data(desc));
155         struct irq_chip *chip = irq_desc_get_chip(desc);
156         int pin;
157         unsigned long irq_isfr;
158
159         chained_irq_enter(chip, desc);
160
161         irq_isfr = vf610_gpio_readl(port->base + PORT_ISFR);
162
163         for_each_set_bit(pin, &irq_isfr, VF610_GPIO_PER_PORT) {
164                 vf610_gpio_writel(BIT(pin), port->base + PORT_ISFR);
165
166                 generic_handle_irq(irq_find_mapping(port->gc.irqdomain, pin));
167         }
168
169         chained_irq_exit(chip, desc);
170 }
171
172 static void vf610_gpio_irq_ack(struct irq_data *d)
173 {
174         struct vf610_gpio_port *port =
175                 gpiochip_get_data(irq_data_get_irq_chip_data(d));
176         int gpio = d->hwirq;
177
178         vf610_gpio_writel(BIT(gpio), port->base + PORT_ISFR);
179 }
180
181 static int vf610_gpio_irq_set_type(struct irq_data *d, u32 type)
182 {
183         struct vf610_gpio_port *port =
184                 gpiochip_get_data(irq_data_get_irq_chip_data(d));
185         u8 irqc;
186
187         switch (type) {
188         case IRQ_TYPE_EDGE_RISING:
189                 irqc = PORT_INT_RISING_EDGE;
190                 break;
191         case IRQ_TYPE_EDGE_FALLING:
192                 irqc = PORT_INT_FALLING_EDGE;
193                 break;
194         case IRQ_TYPE_EDGE_BOTH:
195                 irqc = PORT_INT_EITHER_EDGE;
196                 break;
197         case IRQ_TYPE_LEVEL_LOW:
198                 irqc = PORT_INT_LOGIC_ZERO;
199                 break;
200         case IRQ_TYPE_LEVEL_HIGH:
201                 irqc = PORT_INT_LOGIC_ONE;
202                 break;
203         default:
204                 return -EINVAL;
205         }
206
207         port->irqc[d->hwirq] = irqc;
208
209         if (type & IRQ_TYPE_LEVEL_MASK)
210                 irq_set_handler_locked(d, handle_level_irq);
211         else
212                 irq_set_handler_locked(d, handle_edge_irq);
213
214         return 0;
215 }
216
217 static void vf610_gpio_irq_mask(struct irq_data *d)
218 {
219         struct vf610_gpio_port *port =
220                 gpiochip_get_data(irq_data_get_irq_chip_data(d));
221         void __iomem *pcr_base = port->base + PORT_PCR(d->hwirq);
222
223         vf610_gpio_writel(0, pcr_base);
224 }
225
226 static void vf610_gpio_irq_unmask(struct irq_data *d)
227 {
228         struct vf610_gpio_port *port =
229                 gpiochip_get_data(irq_data_get_irq_chip_data(d));
230         void __iomem *pcr_base = port->base + PORT_PCR(d->hwirq);
231
232         vf610_gpio_writel(port->irqc[d->hwirq] << PORT_PCR_IRQC_OFFSET,
233                           pcr_base);
234 }
235
236 static int vf610_gpio_irq_set_wake(struct irq_data *d, u32 enable)
237 {
238         struct vf610_gpio_port *port =
239                 gpiochip_get_data(irq_data_get_irq_chip_data(d));
240
241         if (enable)
242                 enable_irq_wake(port->irq);
243         else
244                 disable_irq_wake(port->irq);
245
246         return 0;
247 }
248
249 static int vf610_gpio_probe(struct platform_device *pdev)
250 {
251         const struct of_device_id *of_id = of_match_device(vf610_gpio_dt_ids,
252                                                            &pdev->dev);
253         struct device *dev = &pdev->dev;
254         struct device_node *np = dev->of_node;
255         struct vf610_gpio_port *port;
256         struct resource *iores;
257         struct gpio_chip *gc;
258         struct irq_chip *ic;
259         int i;
260         int ret;
261
262         port = devm_kzalloc(&pdev->dev, sizeof(*port), GFP_KERNEL);
263         if (!port)
264                 return -ENOMEM;
265
266         port->sdata = of_id->data;
267         iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
268         port->base = devm_ioremap_resource(dev, iores);
269         if (IS_ERR(port->base))
270                 return PTR_ERR(port->base);
271
272         iores = platform_get_resource(pdev, IORESOURCE_MEM, 1);
273         port->gpio_base = devm_ioremap_resource(dev, iores);
274         if (IS_ERR(port->gpio_base))
275                 return PTR_ERR(port->gpio_base);
276
277         port->irq = platform_get_irq(pdev, 0);
278         if (port->irq < 0)
279                 return port->irq;
280
281         gc = &port->gc;
282         gc->of_node = np;
283         gc->parent = dev;
284         gc->label = "vf610-gpio";
285         gc->ngpio = VF610_GPIO_PER_PORT;
286         gc->base = of_alias_get_id(np, "gpio") * VF610_GPIO_PER_PORT;
287
288         gc->request = gpiochip_generic_request;
289         gc->free = gpiochip_generic_free;
290         gc->direction_input = vf610_gpio_direction_input;
291         gc->get = vf610_gpio_get;
292         gc->direction_output = vf610_gpio_direction_output;
293         gc->set = vf610_gpio_set;
294
295         ic = &port->ic;
296         ic->name = "gpio-vf610";
297         ic->irq_ack = vf610_gpio_irq_ack;
298         ic->irq_mask = vf610_gpio_irq_mask;
299         ic->irq_unmask = vf610_gpio_irq_unmask;
300         ic->irq_set_type = vf610_gpio_irq_set_type;
301         ic->irq_set_wake = vf610_gpio_irq_set_wake;
302
303         ret = gpiochip_add_data(gc, port);
304         if (ret < 0)
305                 return ret;
306
307         /* Mask all GPIO interrupts */
308         for (i = 0; i < gc->ngpio; i++)
309                 vf610_gpio_writel(0, port->base + PORT_PCR(i));
310
311         /* Clear the interrupt status register for all GPIO's */
312         vf610_gpio_writel(~0, port->base + PORT_ISFR);
313
314         ret = gpiochip_irqchip_add(gc, ic, 0, handle_edge_irq, IRQ_TYPE_NONE);
315         if (ret) {
316                 dev_err(dev, "failed to add irqchip\n");
317                 gpiochip_remove(gc);
318                 return ret;
319         }
320         gpiochip_set_chained_irqchip(gc, ic, port->irq,
321                                      vf610_gpio_irq_handler);
322
323         return 0;
324 }
325
326 static struct platform_driver vf610_gpio_driver = {
327         .driver         = {
328                 .name   = "gpio-vf610",
329                 .of_match_table = vf610_gpio_dt_ids,
330         },
331         .probe          = vf610_gpio_probe,
332 };
333
334 builtin_platform_driver(vf610_gpio_driver);