11ec7228ab083554222d4a737d90332db59c6479
[platform/kernel/linux-rpi.git] / drivers / gpio / gpio-mxc.c
1 /*
2  * MXC GPIO support. (c) 2008 Daniel Mack <daniel@caiaq.de>
3  * Copyright 2008 Juergen Beisert, kernel@pengutronix.de
4  *
5  * Based on code from Freescale Semiconductor,
6  * Authors: Daniel Mack, Juergen Beisert.
7  * Copyright (C) 2004-2010 Freescale Semiconductor, Inc. All Rights Reserved.
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21  */
22
23 #include <linux/err.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/io.h>
27 #include <linux/irq.h>
28 #include <linux/irqdomain.h>
29 #include <linux/irqchip/chained_irq.h>
30 #include <linux/platform_device.h>
31 #include <linux/slab.h>
32 #include <linux/gpio/driver.h>
33 #include <linux/of.h>
34 #include <linux/of_device.h>
35 #include <linux/bug.h>
36
37 enum mxc_gpio_hwtype {
38         IMX1_GPIO,      /* runs on i.mx1 */
39         IMX21_GPIO,     /* runs on i.mx21 and i.mx27 */
40         IMX31_GPIO,     /* runs on i.mx31 */
41         IMX35_GPIO,     /* runs on all other i.mx */
42 };
43
44 /* device type dependent stuff */
45 struct mxc_gpio_hwdata {
46         unsigned dr_reg;
47         unsigned gdir_reg;
48         unsigned psr_reg;
49         unsigned icr1_reg;
50         unsigned icr2_reg;
51         unsigned imr_reg;
52         unsigned isr_reg;
53         int edge_sel_reg;
54         unsigned low_level;
55         unsigned high_level;
56         unsigned rise_edge;
57         unsigned fall_edge;
58 };
59
60 struct mxc_gpio_port {
61         struct list_head node;
62         void __iomem *base;
63         int irq;
64         int irq_high;
65         struct irq_domain *domain;
66         struct gpio_chip gc;
67         struct device *dev;
68         u32 both_edges;
69 };
70
71 static struct mxc_gpio_hwdata imx1_imx21_gpio_hwdata = {
72         .dr_reg         = 0x1c,
73         .gdir_reg       = 0x00,
74         .psr_reg        = 0x24,
75         .icr1_reg       = 0x28,
76         .icr2_reg       = 0x2c,
77         .imr_reg        = 0x30,
78         .isr_reg        = 0x34,
79         .edge_sel_reg   = -EINVAL,
80         .low_level      = 0x03,
81         .high_level     = 0x02,
82         .rise_edge      = 0x00,
83         .fall_edge      = 0x01,
84 };
85
86 static struct mxc_gpio_hwdata imx31_gpio_hwdata = {
87         .dr_reg         = 0x00,
88         .gdir_reg       = 0x04,
89         .psr_reg        = 0x08,
90         .icr1_reg       = 0x0c,
91         .icr2_reg       = 0x10,
92         .imr_reg        = 0x14,
93         .isr_reg        = 0x18,
94         .edge_sel_reg   = -EINVAL,
95         .low_level      = 0x00,
96         .high_level     = 0x01,
97         .rise_edge      = 0x02,
98         .fall_edge      = 0x03,
99 };
100
101 static struct mxc_gpio_hwdata imx35_gpio_hwdata = {
102         .dr_reg         = 0x00,
103         .gdir_reg       = 0x04,
104         .psr_reg        = 0x08,
105         .icr1_reg       = 0x0c,
106         .icr2_reg       = 0x10,
107         .imr_reg        = 0x14,
108         .isr_reg        = 0x18,
109         .edge_sel_reg   = 0x1c,
110         .low_level      = 0x00,
111         .high_level     = 0x01,
112         .rise_edge      = 0x02,
113         .fall_edge      = 0x03,
114 };
115
116 static enum mxc_gpio_hwtype mxc_gpio_hwtype;
117 static struct mxc_gpio_hwdata *mxc_gpio_hwdata;
118
119 #define GPIO_DR                 (mxc_gpio_hwdata->dr_reg)
120 #define GPIO_GDIR               (mxc_gpio_hwdata->gdir_reg)
121 #define GPIO_PSR                (mxc_gpio_hwdata->psr_reg)
122 #define GPIO_ICR1               (mxc_gpio_hwdata->icr1_reg)
123 #define GPIO_ICR2               (mxc_gpio_hwdata->icr2_reg)
124 #define GPIO_IMR                (mxc_gpio_hwdata->imr_reg)
125 #define GPIO_ISR                (mxc_gpio_hwdata->isr_reg)
126 #define GPIO_EDGE_SEL           (mxc_gpio_hwdata->edge_sel_reg)
127
128 #define GPIO_INT_LOW_LEV        (mxc_gpio_hwdata->low_level)
129 #define GPIO_INT_HIGH_LEV       (mxc_gpio_hwdata->high_level)
130 #define GPIO_INT_RISE_EDGE      (mxc_gpio_hwdata->rise_edge)
131 #define GPIO_INT_FALL_EDGE      (mxc_gpio_hwdata->fall_edge)
132 #define GPIO_INT_BOTH_EDGES     0x4
133
134 static const struct platform_device_id mxc_gpio_devtype[] = {
135         {
136                 .name = "imx1-gpio",
137                 .driver_data = IMX1_GPIO,
138         }, {
139                 .name = "imx21-gpio",
140                 .driver_data = IMX21_GPIO,
141         }, {
142                 .name = "imx31-gpio",
143                 .driver_data = IMX31_GPIO,
144         }, {
145                 .name = "imx35-gpio",
146                 .driver_data = IMX35_GPIO,
147         }, {
148                 /* sentinel */
149         }
150 };
151
152 static const struct of_device_id mxc_gpio_dt_ids[] = {
153         { .compatible = "fsl,imx1-gpio", .data = &mxc_gpio_devtype[IMX1_GPIO], },
154         { .compatible = "fsl,imx21-gpio", .data = &mxc_gpio_devtype[IMX21_GPIO], },
155         { .compatible = "fsl,imx31-gpio", .data = &mxc_gpio_devtype[IMX31_GPIO], },
156         { .compatible = "fsl,imx35-gpio", .data = &mxc_gpio_devtype[IMX35_GPIO], },
157         { /* sentinel */ }
158 };
159
160 /*
161  * MX2 has one interrupt *for all* gpio ports. The list is used
162  * to save the references to all ports, so that mx2_gpio_irq_handler
163  * can walk through all interrupt status registers.
164  */
165 static LIST_HEAD(mxc_gpio_ports);
166
167 /* Note: This driver assumes 32 GPIOs are handled in one register */
168
169 static int gpio_set_irq_type(struct irq_data *d, u32 type)
170 {
171         struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
172         struct mxc_gpio_port *port = gc->private;
173         u32 bit, val;
174         u32 gpio_idx = d->hwirq;
175         int edge;
176         void __iomem *reg = port->base;
177
178         port->both_edges &= ~(1 << gpio_idx);
179         switch (type) {
180         case IRQ_TYPE_EDGE_RISING:
181                 edge = GPIO_INT_RISE_EDGE;
182                 break;
183         case IRQ_TYPE_EDGE_FALLING:
184                 edge = GPIO_INT_FALL_EDGE;
185                 break;
186         case IRQ_TYPE_EDGE_BOTH:
187                 if (GPIO_EDGE_SEL >= 0) {
188                         edge = GPIO_INT_BOTH_EDGES;
189                 } else {
190                         val = port->gc.get(&port->gc, gpio_idx);
191                         if (val) {
192                                 edge = GPIO_INT_LOW_LEV;
193                                 pr_debug("mxc: set GPIO %d to low trigger\n", gpio_idx);
194                         } else {
195                                 edge = GPIO_INT_HIGH_LEV;
196                                 pr_debug("mxc: set GPIO %d to high trigger\n", gpio_idx);
197                         }
198                         port->both_edges |= 1 << gpio_idx;
199                 }
200                 break;
201         case IRQ_TYPE_LEVEL_LOW:
202                 edge = GPIO_INT_LOW_LEV;
203                 break;
204         case IRQ_TYPE_LEVEL_HIGH:
205                 edge = GPIO_INT_HIGH_LEV;
206                 break;
207         default:
208                 return -EINVAL;
209         }
210
211         if (GPIO_EDGE_SEL >= 0) {
212                 val = readl(port->base + GPIO_EDGE_SEL);
213                 if (edge == GPIO_INT_BOTH_EDGES)
214                         writel(val | (1 << gpio_idx),
215                                 port->base + GPIO_EDGE_SEL);
216                 else
217                         writel(val & ~(1 << gpio_idx),
218                                 port->base + GPIO_EDGE_SEL);
219         }
220
221         if (edge != GPIO_INT_BOTH_EDGES) {
222                 reg += GPIO_ICR1 + ((gpio_idx & 0x10) >> 2); /* lower or upper register */
223                 bit = gpio_idx & 0xf;
224                 val = readl(reg) & ~(0x3 << (bit << 1));
225                 writel(val | (edge << (bit << 1)), reg);
226         }
227
228         writel(1 << gpio_idx, port->base + GPIO_ISR);
229
230         return 0;
231 }
232
233 static void mxc_flip_edge(struct mxc_gpio_port *port, u32 gpio)
234 {
235         void __iomem *reg = port->base;
236         u32 bit, val;
237         int edge;
238
239         reg += GPIO_ICR1 + ((gpio & 0x10) >> 2); /* lower or upper register */
240         bit = gpio & 0xf;
241         val = readl(reg);
242         edge = (val >> (bit << 1)) & 3;
243         val &= ~(0x3 << (bit << 1));
244         if (edge == GPIO_INT_HIGH_LEV) {
245                 edge = GPIO_INT_LOW_LEV;
246                 pr_debug("mxc: switch GPIO %d to low trigger\n", gpio);
247         } else if (edge == GPIO_INT_LOW_LEV) {
248                 edge = GPIO_INT_HIGH_LEV;
249                 pr_debug("mxc: switch GPIO %d to high trigger\n", gpio);
250         } else {
251                 pr_err("mxc: invalid configuration for GPIO %d: %x\n",
252                        gpio, edge);
253                 return;
254         }
255         writel(val | (edge << (bit << 1)), reg);
256 }
257
258 /* handle 32 interrupts in one status register */
259 static void mxc_gpio_irq_handler(struct mxc_gpio_port *port, u32 irq_stat)
260 {
261         while (irq_stat != 0) {
262                 int irqoffset = fls(irq_stat) - 1;
263
264                 if (port->both_edges & (1 << irqoffset))
265                         mxc_flip_edge(port, irqoffset);
266
267                 generic_handle_irq(irq_find_mapping(port->domain, irqoffset));
268
269                 irq_stat &= ~(1 << irqoffset);
270         }
271 }
272
273 /* MX1 and MX3 has one interrupt *per* gpio port */
274 static void mx3_gpio_irq_handler(struct irq_desc *desc)
275 {
276         u32 irq_stat;
277         struct mxc_gpio_port *port = irq_desc_get_handler_data(desc);
278         struct irq_chip *chip = irq_desc_get_chip(desc);
279
280         chained_irq_enter(chip, desc);
281
282         irq_stat = readl(port->base + GPIO_ISR) & readl(port->base + GPIO_IMR);
283
284         mxc_gpio_irq_handler(port, irq_stat);
285
286         chained_irq_exit(chip, desc);
287 }
288
289 /* MX2 has one interrupt *for all* gpio ports */
290 static void mx2_gpio_irq_handler(struct irq_desc *desc)
291 {
292         u32 irq_msk, irq_stat;
293         struct mxc_gpio_port *port;
294         struct irq_chip *chip = irq_desc_get_chip(desc);
295
296         chained_irq_enter(chip, desc);
297
298         /* walk through all interrupt status registers */
299         list_for_each_entry(port, &mxc_gpio_ports, node) {
300                 irq_msk = readl(port->base + GPIO_IMR);
301                 if (!irq_msk)
302                         continue;
303
304                 irq_stat = readl(port->base + GPIO_ISR) & irq_msk;
305                 if (irq_stat)
306                         mxc_gpio_irq_handler(port, irq_stat);
307         }
308         chained_irq_exit(chip, desc);
309 }
310
311 /*
312  * Set interrupt number "irq" in the GPIO as a wake-up source.
313  * While system is running, all registered GPIO interrupts need to have
314  * wake-up enabled. When system is suspended, only selected GPIO interrupts
315  * need to have wake-up enabled.
316  * @param  irq          interrupt source number
317  * @param  enable       enable as wake-up if equal to non-zero
318  * @return       This function returns 0 on success.
319  */
320 static int gpio_set_wake_irq(struct irq_data *d, u32 enable)
321 {
322         struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
323         struct mxc_gpio_port *port = gc->private;
324         u32 gpio_idx = d->hwirq;
325         int ret;
326
327         if (enable) {
328                 if (port->irq_high && (gpio_idx >= 16))
329                         ret = enable_irq_wake(port->irq_high);
330                 else
331                         ret = enable_irq_wake(port->irq);
332         } else {
333                 if (port->irq_high && (gpio_idx >= 16))
334                         ret = disable_irq_wake(port->irq_high);
335                 else
336                         ret = disable_irq_wake(port->irq);
337         }
338
339         return ret;
340 }
341
342 static int mxc_gpio_init_gc(struct mxc_gpio_port *port, int irq_base)
343 {
344         struct irq_chip_generic *gc;
345         struct irq_chip_type *ct;
346         int rv;
347
348         gc = devm_irq_alloc_generic_chip(port->dev, "gpio-mxc", 1, irq_base,
349                                          port->base, handle_level_irq);
350         if (!gc)
351                 return -ENOMEM;
352         gc->private = port;
353
354         ct = gc->chip_types;
355         ct->chip.irq_ack = irq_gc_ack_set_bit;
356         ct->chip.irq_mask = irq_gc_mask_clr_bit;
357         ct->chip.irq_unmask = irq_gc_mask_set_bit;
358         ct->chip.irq_set_type = gpio_set_irq_type;
359         ct->chip.irq_set_wake = gpio_set_wake_irq;
360         ct->chip.flags = IRQCHIP_MASK_ON_SUSPEND;
361         ct->regs.ack = GPIO_ISR;
362         ct->regs.mask = GPIO_IMR;
363
364         rv = devm_irq_setup_generic_chip(port->dev, gc, IRQ_MSK(32),
365                                          IRQ_GC_INIT_NESTED_LOCK,
366                                          IRQ_NOREQUEST, 0);
367
368         return rv;
369 }
370
371 static void mxc_gpio_get_hw(struct platform_device *pdev)
372 {
373         const struct of_device_id *of_id =
374                         of_match_device(mxc_gpio_dt_ids, &pdev->dev);
375         enum mxc_gpio_hwtype hwtype;
376
377         if (of_id)
378                 pdev->id_entry = of_id->data;
379         hwtype = pdev->id_entry->driver_data;
380
381         if (mxc_gpio_hwtype) {
382                 /*
383                  * The driver works with a reasonable presupposition,
384                  * that is all gpio ports must be the same type when
385                  * running on one soc.
386                  */
387                 BUG_ON(mxc_gpio_hwtype != hwtype);
388                 return;
389         }
390
391         if (hwtype == IMX35_GPIO)
392                 mxc_gpio_hwdata = &imx35_gpio_hwdata;
393         else if (hwtype == IMX31_GPIO)
394                 mxc_gpio_hwdata = &imx31_gpio_hwdata;
395         else
396                 mxc_gpio_hwdata = &imx1_imx21_gpio_hwdata;
397
398         mxc_gpio_hwtype = hwtype;
399 }
400
401 static int mxc_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
402 {
403         struct mxc_gpio_port *port = gpiochip_get_data(gc);
404
405         return irq_find_mapping(port->domain, offset);
406 }
407
408 static int mxc_gpio_probe(struct platform_device *pdev)
409 {
410         struct device_node *np = pdev->dev.of_node;
411         struct mxc_gpio_port *port;
412         struct resource *iores;
413         int irq_base;
414         int err;
415
416         mxc_gpio_get_hw(pdev);
417
418         port = devm_kzalloc(&pdev->dev, sizeof(*port), GFP_KERNEL);
419         if (!port)
420                 return -ENOMEM;
421
422         port->dev = &pdev->dev;
423
424         iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
425         port->base = devm_ioremap_resource(&pdev->dev, iores);
426         if (IS_ERR(port->base))
427                 return PTR_ERR(port->base);
428
429         port->irq_high = platform_get_irq(pdev, 1);
430         if (port->irq_high < 0)
431                 port->irq_high = 0;
432
433         port->irq = platform_get_irq(pdev, 0);
434         if (port->irq < 0)
435                 return port->irq;
436
437         /* disable the interrupt and clear the status */
438         writel(0, port->base + GPIO_IMR);
439         writel(~0, port->base + GPIO_ISR);
440
441         if (mxc_gpio_hwtype == IMX21_GPIO) {
442                 /*
443                  * Setup one handler for all GPIO interrupts. Actually setting
444                  * the handler is needed only once, but doing it for every port
445                  * is more robust and easier.
446                  */
447                 irq_set_chained_handler(port->irq, mx2_gpio_irq_handler);
448         } else {
449                 /* setup one handler for each entry */
450                 irq_set_chained_handler_and_data(port->irq,
451                                                  mx3_gpio_irq_handler, port);
452                 if (port->irq_high > 0)
453                         /* setup handler for GPIO 16 to 31 */
454                         irq_set_chained_handler_and_data(port->irq_high,
455                                                          mx3_gpio_irq_handler,
456                                                          port);
457         }
458
459         err = bgpio_init(&port->gc, &pdev->dev, 4,
460                          port->base + GPIO_PSR,
461                          port->base + GPIO_DR, NULL,
462                          port->base + GPIO_GDIR, NULL,
463                          BGPIOF_READ_OUTPUT_REG_SET);
464         if (err)
465                 goto out_bgio;
466
467         if (of_property_read_bool(np, "gpio-ranges")) {
468                 port->gc.request = gpiochip_generic_request;
469                 port->gc.free = gpiochip_generic_free;
470         }
471
472         port->gc.to_irq = mxc_gpio_to_irq;
473         port->gc.base = (pdev->id < 0) ? of_alias_get_id(np, "gpio") * 32 :
474                                              pdev->id * 32;
475
476         err = devm_gpiochip_add_data(&pdev->dev, &port->gc, port);
477         if (err)
478                 goto out_bgio;
479
480         irq_base = devm_irq_alloc_descs(&pdev->dev, -1, 0, 32, numa_node_id());
481         if (irq_base < 0) {
482                 err = irq_base;
483                 goto out_bgio;
484         }
485
486         port->domain = irq_domain_add_legacy(np, 32, irq_base, 0,
487                                              &irq_domain_simple_ops, NULL);
488         if (!port->domain) {
489                 err = -ENODEV;
490                 goto out_bgio;
491         }
492
493         /* gpio-mxc can be a generic irq chip */
494         err = mxc_gpio_init_gc(port, irq_base);
495         if (err < 0)
496                 goto out_irqdomain_remove;
497
498         list_add_tail(&port->node, &mxc_gpio_ports);
499
500         return 0;
501
502 out_irqdomain_remove:
503         irq_domain_remove(port->domain);
504 out_bgio:
505         dev_info(&pdev->dev, "%s failed with errno %d\n", __func__, err);
506         return err;
507 }
508
509 static struct platform_driver mxc_gpio_driver = {
510         .driver         = {
511                 .name   = "gpio-mxc",
512                 .of_match_table = mxc_gpio_dt_ids,
513                 .suppress_bind_attrs = true,
514         },
515         .probe          = mxc_gpio_probe,
516         .id_table       = mxc_gpio_devtype,
517 };
518
519 static int __init gpio_mxc_init(void)
520 {
521         return platform_driver_register(&mxc_gpio_driver);
522 }
523 subsys_initcall(gpio_mxc_init);