Merge tag 'v3.19-rc5' into devel
[firefly-linux-kernel-4.4.55.git] / drivers / gpio / gpio-ge.c
1 /*
2  * Driver for GE FPGA based GPIO
3  *
4  * Author: Martyn Welch <martyn.welch@ge.com>
5  *
6  * 2008 (c) GE Intelligent Platforms Embedded Systems, Inc.
7  *
8  * This file is licensed under the terms of the GNU General Public License
9  * version 2.  This program is licensed "as is" without any warranty of any
10  * kind, whether express or implied.
11  */
12
13 /* TODO
14  *
15  * Configuration of output modes (totem-pole/open-drain)
16  * Interrupt configuration - interrupts are always generated the FPGA relies on
17  * the I/O interrupt controllers mask to stop them propergating
18  */
19
20 #include <linux/kernel.h>
21 #include <linux/io.h>
22 #include <linux/slab.h>
23 #include <linux/of_device.h>
24 #include <linux/of_gpio.h>
25 #include <linux/of_address.h>
26 #include <linux/module.h>
27 #include <linux/basic_mmio_gpio.h>
28
29 #define GEF_GPIO_DIRECT         0x00
30 #define GEF_GPIO_IN             0x04
31 #define GEF_GPIO_OUT            0x08
32 #define GEF_GPIO_TRIG           0x0C
33 #define GEF_GPIO_POLAR_A        0x10
34 #define GEF_GPIO_POLAR_B        0x14
35 #define GEF_GPIO_INT_STAT       0x18
36 #define GEF_GPIO_OVERRUN        0x1C
37 #define GEF_GPIO_MODE           0x20
38
39 static const struct of_device_id gef_gpio_ids[] = {
40         {
41                 .compatible     = "gef,sbc610-gpio",
42                 .data           = (void *)19,
43         }, {
44                 .compatible     = "gef,sbc310-gpio",
45                 .data           = (void *)6,
46         }, {
47                 .compatible     = "ge,imp3a-gpio",
48                 .data           = (void *)16,
49         },
50         { }
51 };
52 MODULE_DEVICE_TABLE(of, gef_gpio_ids);
53
54 static int __init gef_gpio_probe(struct platform_device *pdev)
55 {
56         const struct of_device_id *of_id =
57                 of_match_device(gef_gpio_ids, &pdev->dev);
58         struct bgpio_chip *bgc;
59         void __iomem *regs;
60         int ret;
61
62         bgc = devm_kzalloc(&pdev->dev, sizeof(*bgc), GFP_KERNEL);
63         if (!bgc)
64                 return -ENOMEM;
65
66         regs = of_iomap(pdev->dev.of_node, 0);
67         if (!regs)
68                 return -ENOMEM;
69
70         ret = bgpio_init(bgc, &pdev->dev, 4, regs + GEF_GPIO_IN,
71                          regs + GEF_GPIO_OUT, NULL, NULL,
72                          regs + GEF_GPIO_DIRECT, BGPIOF_BIG_ENDIAN_BYTE_ORDER);
73         if (ret) {
74                 dev_err(&pdev->dev, "bgpio_init failed\n");
75                 goto err0;
76         }
77
78         /* Setup pointers to chip functions */
79         bgc->gc.label = kstrdup(pdev->dev.of_node->full_name, GFP_KERNEL);
80         if (!bgc->gc.label)
81                 goto err0;
82
83         bgc->gc.base = -1;
84         bgc->gc.ngpio = (u16)(uintptr_t)of_id->data;
85         bgc->gc.of_gpio_n_cells = 2;
86         bgc->gc.of_node = pdev->dev.of_node;
87
88         /* This function adds a memory mapped GPIO chip */
89         ret = gpiochip_add(&bgc->gc);
90         if (ret)
91                 goto err1;
92
93         return 0;
94 err1:
95         kfree(bgc->gc.label);
96 err0:
97         iounmap(regs);
98         pr_err("%s: GPIO chip registration failed\n",
99                         pdev->dev.of_node->full_name);
100         return ret;
101 };
102
103 static struct platform_driver gef_gpio_driver = {
104         .driver = {
105                 .name           = "gef-gpio",
106                 .of_match_table = gef_gpio_ids,
107         },
108 };
109 module_platform_driver_probe(gef_gpio_driver, gef_gpio_probe);
110
111 MODULE_DESCRIPTION("GE I/O FPGA GPIO driver");
112 MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com");
113 MODULE_LICENSE("GPL");