d53bbe965b2e97b78a33c3ce949c0a6c031b7d30
[openwrt/openwrt.git] / target / linux / ramips / patches-3.14 / 0048-GPIO-ralink-add-mt7621-gpio-controller.patch
1 From 8481cdf6f96dc16cbcc129d046c021d17a891274 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Sun, 27 Jul 2014 11:00:32 +0100
4 Subject: [PATCH 48/57] GPIO: ralink: add mt7621 gpio controller
5
6 Signed-off-by: John Crispin <blogic@openwrt.org>
7 ---
8 arch/mips/Kconfig | 3 +
9 drivers/gpio/Kconfig | 6 ++
10 drivers/gpio/Makefile | 1 +
11 drivers/gpio/gpio-mt7621.c | 177 ++++++++++++++++++++++++++++++++++++++++++++
12 4 files changed, 187 insertions(+)
13 create mode 100644 drivers/gpio/gpio-mt7621.c
14
15 Index: linux-3.14.18/arch/mips/Kconfig
16 ===================================================================
17 --- linux-3.14.18.orig/arch/mips/Kconfig 2014-11-14 14:22:08.782141921 +0100
18 +++ linux-3.14.18/arch/mips/Kconfig 2014-11-14 14:22:08.994149701 +0100
19 @@ -437,6 +437,9 @@
20 select RESET_CONTROLLER
21 select PINCTRL
22 select PINCTRL_RT2880
23 + select ARCH_HAS_RESET_CONTROLLER
24 + select RESET_CONTROLLER
25 + select ARCH_REQUIRE_GPIOLIB
26
27 config SGI_IP22
28 bool "SGI IP22 (Indy/Indigo2)"
29 Index: linux-3.14.18/drivers/gpio/Kconfig
30 ===================================================================
31 --- linux-3.14.18.orig/drivers/gpio/Kconfig 2014-11-14 14:22:08.982149261 +0100
32 +++ linux-3.14.18/drivers/gpio/Kconfig 2014-11-14 14:22:08.998149848 +0100
33 @@ -827,6 +827,12 @@
34 help
35 Turn on GPIO support for Broadcom "Kona" chips.
36
37 +config GPIO_MT7621
38 + bool "Mediatek GPIO Support"
39 + depends on SOC_MT7620 || SOC_MT7621
40 + help
41 + Say yes here to support the Mediatek SoC GPIO device
42 +
43 comment "USB GPIO expanders:"
44
45 config GPIO_VIPERBOARD
46 Index: linux-3.14.18/drivers/gpio/Makefile
47 ===================================================================
48 --- linux-3.14.18.orig/drivers/gpio/Makefile 2014-11-14 14:22:08.982149261 +0100
49 +++ linux-3.14.18/drivers/gpio/Makefile 2014-11-14 14:22:08.998149848 +0100
50 @@ -100,3 +100,4 @@
51 obj-$(CONFIG_GPIO_WM8994) += gpio-wm8994.o
52 obj-$(CONFIG_GPIO_XILINX) += gpio-xilinx.o
53 obj-$(CONFIG_GPIO_XTENSA) += gpio-xtensa.o
54 +obj-$(CONFIG_GPIO_MT7621) += gpio-mt7621.o
55 Index: linux-3.14.18/drivers/gpio/gpio-mt7621.c
56 ===================================================================
57 --- /dev/null 1970-01-01 00:00:00.000000000 +0000
58 +++ linux-3.14.18/drivers/gpio/gpio-mt7621.c 2014-11-14 14:36:19.321724539 +0100
59 @@ -0,0 +1,178 @@
60 +/*
61 + * This program is free software; you can redistribute it and/or modify it
62 + * under the terms of the GNU General Public License version 2 as published
63 + * by the Free Software Foundation.
64 + *
65 + * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
66 + * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
67 + */
68 +
69 +#include <linux/io.h>
70 +#include <linux/err.h>
71 +#include <linux/gpio.h>
72 +#include <linux/module.h>
73 +#include <linux/of_irq.h>
74 +#include <linux/spinlock.h>
75 +#include <linux/irqdomain.h>
76 +#include <linux/interrupt.h>
77 +#include <linux/platform_device.h>
78 +
79 +#define MTK_BANK_WIDTH 32
80 +
81 +enum mediatek_gpio_reg {
82 + GPIO_REG_CTRL = 0,
83 + GPIO_REG_POL,
84 + GPIO_REG_DATA,
85 + GPIO_REG_DSET,
86 + GPIO_REG_DCLR,
87 +};
88 +
89 +static void __iomem *mtk_gc_membase;
90 +
91 +struct mtk_gc {
92 + struct gpio_chip chip;
93 + spinlock_t lock;
94 + int bank;
95 +};
96 +
97 +static inline struct mtk_gc
98 +*to_mediatek_gpio(struct gpio_chip *chip)
99 +{
100 + struct mtk_gc *mgc;
101 +
102 + mgc = container_of(chip, struct mtk_gc, chip);
103 +
104 + return mgc;
105 +}
106 +
107 +static inline void
108 +mtk_gpio_w32(struct mtk_gc *rg, u8 reg, u32 val)
109 +{
110 + iowrite32(val, mtk_gc_membase + (reg * 0x10) + (rg->bank * 0x4));
111 +}
112 +
113 +static inline u32
114 +mtk_gpio_r32(struct mtk_gc *rg, u8 reg)
115 +{
116 + return ioread32(mtk_gc_membase + (reg * 0x10) + (rg->bank * 0x4));
117 +}
118 +
119 +static void
120 +mediatek_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
121 +{
122 + struct mtk_gc *rg = to_mediatek_gpio(chip);
123 +
124 + mtk_gpio_w32(rg, (value) ? GPIO_REG_DSET : GPIO_REG_DCLR, BIT(offset));
125 +}
126 +
127 +static int
128 +mediatek_gpio_get(struct gpio_chip *chip, unsigned offset)
129 +{
130 + struct mtk_gc *rg = to_mediatek_gpio(chip);
131 +
132 + return !!(mtk_gpio_r32(rg, GPIO_REG_DATA) & BIT(offset));
133 +}
134 +
135 +static int
136 +mediatek_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
137 +{
138 + struct mtk_gc *rg = to_mediatek_gpio(chip);
139 + unsigned long flags;
140 + u32 t;
141 +
142 + spin_lock_irqsave(&rg->lock, flags);
143 + t = mtk_gpio_r32(rg, GPIO_REG_CTRL);
144 + t &= ~BIT(offset);
145 + mtk_gpio_w32(rg, GPIO_REG_CTRL, t);
146 + spin_unlock_irqrestore(&rg->lock, flags);
147 +
148 + return 0;
149 +}
150 +
151 +static int
152 +mediatek_gpio_direction_output(struct gpio_chip *chip,
153 + unsigned offset, int value)
154 +{
155 + struct mtk_gc *rg = to_mediatek_gpio(chip);
156 + unsigned long flags;
157 + u32 t;
158 +
159 + spin_lock_irqsave(&rg->lock, flags);
160 + t = mtk_gpio_r32(rg, GPIO_REG_CTRL);
161 + t |= BIT(offset);
162 + mtk_gpio_w32(rg, GPIO_REG_CTRL, t);
163 + mediatek_gpio_set(chip, offset, value);
164 + spin_unlock_irqrestore(&rg->lock, flags);
165 +
166 + return 0;
167 +}
168 +
169 +static int
170 +mediatek_gpio_bank_probe(struct platform_device *pdev, struct device_node *bank)
171 +{
172 + const __be32 *id = of_get_property(bank, "reg", NULL);
173 + struct mtk_gc *rg = devm_kzalloc(&pdev->dev,
174 + sizeof(struct mtk_gc), GFP_KERNEL);
175 + if (!rg || !id)
176 + return -ENOMEM;
177 +
178 + spin_lock_init(&rg->lock);
179 +
180 + rg->chip.dev = &pdev->dev;
181 + rg->chip.label = dev_name(&pdev->dev);
182 + rg->chip.of_node = bank;
183 + rg->chip.base = MTK_BANK_WIDTH * be32_to_cpu(*id);
184 + rg->chip.ngpio = MTK_BANK_WIDTH;
185 + rg->chip.direction_input = mediatek_gpio_direction_input;
186 + rg->chip.direction_output = mediatek_gpio_direction_output;
187 + rg->chip.get = mediatek_gpio_get;
188 + rg->chip.set = mediatek_gpio_set;
189 + rg->bank = be32_to_cpu(*id);
190 +
191 + /* set polarity to low for all gpios */
192 + mtk_gpio_w32(rg, GPIO_REG_POL, 0);
193 +
194 + dev_info(&pdev->dev, "registering %d gpios\n", rg->chip.ngpio);
195 +
196 + return gpiochip_add(&rg->chip);
197 +}
198 +
199 +static int
200 +mediatek_gpio_probe(struct platform_device *pdev)
201 +{
202 + struct device_node *bank, *np = pdev->dev.of_node;
203 + struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
204 +
205 + mtk_gc_membase = devm_request_and_ioremap(&pdev->dev, res);
206 + if (IS_ERR(mtk_gc_membase))
207 + return PTR_ERR(mtk_gc_membase);
208 +
209 + for_each_child_of_node(np, bank)
210 + if (of_device_is_compatible(bank, "mtk,mt7621-gpio-bank"))
211 + mediatek_gpio_bank_probe(pdev, bank);
212 +
213 + return 0;
214 +}
215 +
216 +static const struct of_device_id mediatek_gpio_match[] = {
217 + { .compatible = "mtk,mt7621-gpio" },
218 + {},
219 +};
220 +MODULE_DEVICE_TABLE(of, mediatek_gpio_match);
221 +
222 +static struct platform_driver mediatek_gpio_driver = {
223 + .probe = mediatek_gpio_probe,
224 + .driver = {
225 + .name = "mt7621_gpio",
226 + .owner = THIS_MODULE,
227 + .of_match_table = mediatek_gpio_match,
228 + },
229 +};
230 +
231 +static int __init
232 +mediatek_gpio_init(void)
233 +{
234 + return platform_driver_register(&mediatek_gpio_driver);
235 +}
236 +
237 +subsys_initcall(mediatek_gpio_init);