]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/gpio/gpio-ath79.c
Merge tag 'media/v5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[mirror_ubuntu-hirsute-kernel.git] / drivers / gpio / gpio-ath79.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
6eae43c5
GJ
2/*
3 * Atheros AR71XX/AR724X/AR913X GPIO API support
4 *
28be55df 5 * Copyright (C) 2015 Alban Bedel <albeu@free.fr>
5b5b544e
GJ
6 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
7 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
6eae43c5 8 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6eae43c5
GJ
9 */
10
49a5bd88 11#include <linux/gpio/driver.h>
2ddf3a79
AB
12#include <linux/platform_data/gpio-ath79.h>
13#include <linux/of_device.h>
2b8f89e1 14#include <linux/interrupt.h>
2034b9dc 15#include <linux/module.h>
2b8f89e1 16#include <linux/irq.h>
6eae43c5 17
409d8783
AB
18#define AR71XX_GPIO_REG_OE 0x00
19#define AR71XX_GPIO_REG_IN 0x04
20#define AR71XX_GPIO_REG_SET 0x0c
21#define AR71XX_GPIO_REG_CLEAR 0x10
6eae43c5 22
2b8f89e1
AB
23#define AR71XX_GPIO_REG_INT_ENABLE 0x14
24#define AR71XX_GPIO_REG_INT_TYPE 0x18
25#define AR71XX_GPIO_REG_INT_POLARITY 0x1c
26#define AR71XX_GPIO_REG_INT_PENDING 0x20
27#define AR71XX_GPIO_REG_INT_MASK 0x24
28
49a5bd88 29struct ath79_gpio_ctrl {
ab32770e 30 struct gpio_chip gc;
49a5bd88 31 void __iomem *base;
a080ce53 32 raw_spinlock_t lock;
2b8f89e1
AB
33 unsigned long both_edges;
34};
35
36static struct ath79_gpio_ctrl *irq_data_to_ath79_gpio(struct irq_data *data)
37{
38 struct gpio_chip *gc = irq_data_get_irq_chip_data(data);
39
40 return container_of(gc, struct ath79_gpio_ctrl, gc);
41}
42
43static u32 ath79_gpio_read(struct ath79_gpio_ctrl *ctrl, unsigned reg)
44{
45 return readl(ctrl->base + reg);
46}
47
48static void ath79_gpio_write(struct ath79_gpio_ctrl *ctrl,
49 unsigned reg, u32 val)
50{
23211b08 51 writel(val, ctrl->base + reg);
2b8f89e1
AB
52}
53
54static bool ath79_gpio_update_bits(
55 struct ath79_gpio_ctrl *ctrl, unsigned reg, u32 mask, u32 bits)
56{
57 u32 old_val, new_val;
58
59 old_val = ath79_gpio_read(ctrl, reg);
60 new_val = (old_val & ~mask) | (bits & mask);
61
62 if (new_val != old_val)
63 ath79_gpio_write(ctrl, reg, new_val);
64
65 return new_val != old_val;
66}
67
68static void ath79_gpio_irq_unmask(struct irq_data *data)
69{
70 struct ath79_gpio_ctrl *ctrl = irq_data_to_ath79_gpio(data);
71 u32 mask = BIT(irqd_to_hwirq(data));
72 unsigned long flags;
73
a080ce53 74 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1 75 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_MASK, mask, mask);
a080ce53 76 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
77}
78
79static void ath79_gpio_irq_mask(struct irq_data *data)
80{
81 struct ath79_gpio_ctrl *ctrl = irq_data_to_ath79_gpio(data);
82 u32 mask = BIT(irqd_to_hwirq(data));
83 unsigned long flags;
84
a080ce53 85 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1 86 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_MASK, mask, 0);
a080ce53 87 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
88}
89
90static void ath79_gpio_irq_enable(struct irq_data *data)
91{
92 struct ath79_gpio_ctrl *ctrl = irq_data_to_ath79_gpio(data);
93 u32 mask = BIT(irqd_to_hwirq(data));
94 unsigned long flags;
95
a080ce53 96 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1
AB
97 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_ENABLE, mask, mask);
98 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_MASK, mask, mask);
a080ce53 99 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
100}
101
102static void ath79_gpio_irq_disable(struct irq_data *data)
103{
104 struct ath79_gpio_ctrl *ctrl = irq_data_to_ath79_gpio(data);
105 u32 mask = BIT(irqd_to_hwirq(data));
106 unsigned long flags;
107
a080ce53 108 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1
AB
109 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_MASK, mask, 0);
110 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_ENABLE, mask, 0);
a080ce53 111 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
112}
113
114static int ath79_gpio_irq_set_type(struct irq_data *data,
115 unsigned int flow_type)
116{
117 struct ath79_gpio_ctrl *ctrl = irq_data_to_ath79_gpio(data);
118 u32 mask = BIT(irqd_to_hwirq(data));
119 u32 type = 0, polarity = 0;
120 unsigned long flags;
121 bool disabled;
122
123 switch (flow_type) {
124 case IRQ_TYPE_EDGE_RISING:
125 polarity |= mask;
d49ee562 126 fallthrough;
2b8f89e1
AB
127 case IRQ_TYPE_EDGE_FALLING:
128 case IRQ_TYPE_EDGE_BOTH:
129 break;
130
131 case IRQ_TYPE_LEVEL_HIGH:
132 polarity |= mask;
df561f66 133 fallthrough;
2b8f89e1
AB
134 case IRQ_TYPE_LEVEL_LOW:
135 type |= mask;
136 break;
137
138 default:
139 return -EINVAL;
140 }
141
a080ce53 142 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1
AB
143
144 if (flow_type == IRQ_TYPE_EDGE_BOTH) {
145 ctrl->both_edges |= mask;
146 polarity = ~ath79_gpio_read(ctrl, AR71XX_GPIO_REG_IN);
147 } else {
148 ctrl->both_edges &= ~mask;
149 }
150
151 /* As the IRQ configuration can't be loaded atomically we
152 * have to disable the interrupt while the configuration state
153 * is invalid.
154 */
155 disabled = ath79_gpio_update_bits(
156 ctrl, AR71XX_GPIO_REG_INT_ENABLE, mask, 0);
157
158 ath79_gpio_update_bits(
159 ctrl, AR71XX_GPIO_REG_INT_TYPE, mask, type);
160 ath79_gpio_update_bits(
161 ctrl, AR71XX_GPIO_REG_INT_POLARITY, mask, polarity);
162
163 if (disabled)
164 ath79_gpio_update_bits(
165 ctrl, AR71XX_GPIO_REG_INT_ENABLE, mask, mask);
166
a080ce53 167 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
168
169 return 0;
170}
171
172static struct irq_chip ath79_gpio_irqchip = {
173 .name = "gpio-ath79",
174 .irq_enable = ath79_gpio_irq_enable,
175 .irq_disable = ath79_gpio_irq_disable,
176 .irq_mask = ath79_gpio_irq_mask,
177 .irq_unmask = ath79_gpio_irq_unmask,
178 .irq_set_type = ath79_gpio_irq_set_type,
49a5bd88
AB
179};
180
2b8f89e1
AB
181static void ath79_gpio_irq_handler(struct irq_desc *desc)
182{
183 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
184 struct irq_chip *irqchip = irq_desc_get_chip(desc);
185 struct ath79_gpio_ctrl *ctrl =
186 container_of(gc, struct ath79_gpio_ctrl, gc);
187 unsigned long flags, pending;
188 u32 both_edges, state;
189 int irq;
190
191 chained_irq_enter(irqchip, desc);
192
a080ce53 193 raw_spin_lock_irqsave(&ctrl->lock, flags);
2b8f89e1
AB
194
195 pending = ath79_gpio_read(ctrl, AR71XX_GPIO_REG_INT_PENDING);
196
197 /* Update the polarity of the both edges irqs */
198 both_edges = ctrl->both_edges & pending;
199 if (both_edges) {
200 state = ath79_gpio_read(ctrl, AR71XX_GPIO_REG_IN);
201 ath79_gpio_update_bits(ctrl, AR71XX_GPIO_REG_INT_POLARITY,
202 both_edges, ~state);
203 }
204
a080ce53 205 raw_spin_unlock_irqrestore(&ctrl->lock, flags);
2b8f89e1
AB
206
207 if (pending) {
208 for_each_set_bit(irq, &pending, gc->ngpio)
209 generic_handle_irq(
f0fbe7bc 210 irq_linear_revmap(gc->irq.domain, irq));
2b8f89e1
AB
211 }
212
213 chained_irq_exit(irqchip, desc);
214}
215
2ddf3a79
AB
216static const struct of_device_id ath79_gpio_of_match[] = {
217 { .compatible = "qca,ar7100-gpio" },
218 { .compatible = "qca,ar9340-gpio" },
219 {},
220};
6d8d271e 221MODULE_DEVICE_TABLE(of, ath79_gpio_of_match);
2ddf3a79
AB
222
223static int ath79_gpio_probe(struct platform_device *pdev)
6eae43c5 224{
ab128afc 225 struct ath79_gpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
aee5cec5
LW
226 struct device *dev = &pdev->dev;
227 struct device_node *np = dev->of_node;
49a5bd88 228 struct ath79_gpio_ctrl *ctrl;
aee5cec5 229 struct gpio_irq_chip *girq;
49a5bd88 230 u32 ath79_gpio_count;
2ddf3a79 231 bool oe_inverted;
6eae43c5
GJ
232 int err;
233
aee5cec5 234 ctrl = devm_kzalloc(dev, sizeof(*ctrl), GFP_KERNEL);
49a5bd88
AB
235 if (!ctrl)
236 return -ENOMEM;
2f890cf0 237 platform_set_drvdata(pdev, ctrl);
49a5bd88 238
2ddf3a79
AB
239 if (np) {
240 err = of_property_read_u32(np, "ngpios", &ath79_gpio_count);
241 if (err) {
aee5cec5 242 dev_err(dev, "ngpios property is not valid\n");
2ddf3a79
AB
243 return err;
244 }
2ddf3a79
AB
245 oe_inverted = of_device_is_compatible(np, "qca,ar9340-gpio");
246 } else if (pdata) {
247 ath79_gpio_count = pdata->ngpios;
248 oe_inverted = pdata->oe_inverted;
249 } else {
aee5cec5 250 dev_err(dev, "No DT node or platform data found\n");
2ddf3a79
AB
251 return -EINVAL;
252 }
253
f0d3c72c 254 if (ath79_gpio_count >= 32) {
aee5cec5 255 dev_err(dev, "ngpios must be less than 32\n");
f0d3c72c
AL
256 return -EINVAL;
257 }
258
71b4da2b
BG
259 ctrl->base = devm_platform_ioremap_resource(pdev, 0);
260 if (IS_ERR(ctrl->base))
261 return PTR_ERR(ctrl->base);
6eae43c5 262
a080ce53 263 raw_spin_lock_init(&ctrl->lock);
aee5cec5 264 err = bgpio_init(&ctrl->gc, dev, 4,
ab32770e
AB
265 ctrl->base + AR71XX_GPIO_REG_IN,
266 ctrl->base + AR71XX_GPIO_REG_SET,
267 ctrl->base + AR71XX_GPIO_REG_CLEAR,
268 oe_inverted ? NULL : ctrl->base + AR71XX_GPIO_REG_OE,
269 oe_inverted ? ctrl->base + AR71XX_GPIO_REG_OE : NULL,
270 0);
271 if (err) {
aee5cec5 272 dev_err(dev, "bgpio_init failed\n");
ab32770e 273 return err;
5b5b544e 274 }
ab32770e
AB
275 /* Use base 0 to stay compatible with legacy platforms */
276 ctrl->gc.base = 0;
6eae43c5 277
aee5cec5
LW
278 /* Optional interrupt setup */
279 if (!np || of_property_read_bool(np, "interrupt-controller")) {
280 girq = &ctrl->gc.irq;
281 girq->chip = &ath79_gpio_irqchip;
282 girq->parent_handler = ath79_gpio_irq_handler;
283 girq->num_parents = 1;
284 girq->parents = devm_kcalloc(dev, 1, sizeof(*girq->parents),
285 GFP_KERNEL);
286 if (!girq->parents)
287 return -ENOMEM;
288 girq->parents[0] = platform_get_irq(pdev, 0);
289 girq->default_type = IRQ_TYPE_NONE;
290 girq->handler = handle_simple_irq;
2ddf3a79
AB
291 }
292
aee5cec5 293 err = devm_gpiochip_add_data(dev, &ctrl->gc, ctrl);
2b8f89e1 294 if (err) {
aee5cec5
LW
295 dev_err(dev,
296 "cannot add AR71xx GPIO chip, error=%d", err);
297 return err;
2b8f89e1 298 }
2f890cf0
AB
299 return 0;
300}
301
2ddf3a79
AB
302static struct platform_driver ath79_gpio_driver = {
303 .driver = {
304 .name = "ath79-gpio",
305 .of_match_table = ath79_gpio_of_match,
306 },
307 .probe = ath79_gpio_probe,
308};
309
310module_platform_driver(ath79_gpio_driver);
539340f3
JC
311
312MODULE_DESCRIPTION("Atheros AR71XX/AR724X/AR913X GPIO API support");
313MODULE_LICENSE("GPL v2");