Merge tag 'block-6.3-2023-04-14' of git://git.kernel.dk/linux
[linux-block.git] / drivers / gpio / gpio-timberdale.c
CommitLineData
82c29810 1// SPDX-License-Identifier: GPL-2.0-only
35570ac6 2/*
c103de24 3 * Timberdale FPGA GPIO driver
52ad9053 4 * Author: Mocean Laboratories
35570ac6 5 * Copyright (c) 2009 Intel Corporation
35570ac6
RR
6 */
7
8/* Supports:
9 * Timberdale FPGA GPIO
10 */
11
52ad9053 12#include <linux/init.h>
50fe83a3 13#include <linux/gpio/driver.h>
35570ac6 14#include <linux/platform_device.h>
e3cb91ce 15#include <linux/irq.h>
35570ac6
RR
16#include <linux/io.h>
17#include <linux/timb_gpio.h>
18#include <linux/interrupt.h>
5a0e3ad6 19#include <linux/slab.h>
35570ac6
RR
20
21#define DRIVER_NAME "timb-gpio"
22
23#define TGPIOVAL 0x00
24#define TGPIODIR 0x04
25#define TGPIO_IER 0x08
26#define TGPIO_ISR 0x0c
27#define TGPIO_IPR 0x10
28#define TGPIO_ICR 0x14
29#define TGPIO_FLR 0x18
30#define TGPIO_LVR 0x1c
8c35c89a
RR
31#define TGPIO_VER 0x20
32#define TGPIO_BFLR 0x24
35570ac6
RR
33
34struct timbgpio {
35 void __iomem *membase;
36 spinlock_t lock; /* mutual exclusion */
37 struct gpio_chip gpio;
38 int irq_base;
76d800a5 39 unsigned long last_ier;
35570ac6
RR
40};
41
42static int timbgpio_update_bit(struct gpio_chip *gpio, unsigned index,
43 unsigned offset, bool enabled)
44{
92a41e2f 45 struct timbgpio *tgpio = gpiochip_get_data(gpio);
35570ac6
RR
46 u32 reg;
47
48 spin_lock(&tgpio->lock);
49 reg = ioread32(tgpio->membase + offset);
50
51 if (enabled)
52 reg |= (1 << index);
53 else
54 reg &= ~(1 << index);
55
56 iowrite32(reg, tgpio->membase + offset);
57 spin_unlock(&tgpio->lock);
58
59 return 0;
60}
61
62static int timbgpio_gpio_direction_input(struct gpio_chip *gpio, unsigned nr)
63{
64 return timbgpio_update_bit(gpio, nr, TGPIODIR, true);
65}
66
67static int timbgpio_gpio_get(struct gpio_chip *gpio, unsigned nr)
68{
92a41e2f 69 struct timbgpio *tgpio = gpiochip_get_data(gpio);
35570ac6
RR
70 u32 value;
71
72 value = ioread32(tgpio->membase + TGPIOVAL);
73 return (value & (1 << nr)) ? 1 : 0;
74}
75
76static int timbgpio_gpio_direction_output(struct gpio_chip *gpio,
77 unsigned nr, int val)
78{
79 return timbgpio_update_bit(gpio, nr, TGPIODIR, false);
80}
81
82static void timbgpio_gpio_set(struct gpio_chip *gpio,
83 unsigned nr, int val)
84{
85 timbgpio_update_bit(gpio, nr, TGPIOVAL, val != 0);
86}
87
88static int timbgpio_to_irq(struct gpio_chip *gpio, unsigned offset)
89{
92a41e2f 90 struct timbgpio *tgpio = gpiochip_get_data(gpio);
35570ac6
RR
91
92 if (tgpio->irq_base <= 0)
93 return -EINVAL;
94
95 return tgpio->irq_base + offset;
96}
97
98/*
99 * GPIO IRQ
100 */
a1f5f22a 101static void timbgpio_irq_disable(struct irq_data *d)
35570ac6 102{
a1f5f22a
LB
103 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
104 int offset = d->irq - tgpio->irq_base;
76d800a5 105 unsigned long flags;
35570ac6 106
76d800a5 107 spin_lock_irqsave(&tgpio->lock, flags);
d79550a7 108 tgpio->last_ier &= ~(1UL << offset);
76d800a5
TH
109 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
110 spin_unlock_irqrestore(&tgpio->lock, flags);
35570ac6
RR
111}
112
a1f5f22a 113static void timbgpio_irq_enable(struct irq_data *d)
35570ac6 114{
a1f5f22a
LB
115 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
116 int offset = d->irq - tgpio->irq_base;
76d800a5 117 unsigned long flags;
35570ac6 118
76d800a5 119 spin_lock_irqsave(&tgpio->lock, flags);
d79550a7 120 tgpio->last_ier |= 1UL << offset;
76d800a5
TH
121 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
122 spin_unlock_irqrestore(&tgpio->lock, flags);
35570ac6
RR
123}
124
a1f5f22a 125static int timbgpio_irq_type(struct irq_data *d, unsigned trigger)
35570ac6 126{
a1f5f22a
LB
127 struct timbgpio *tgpio = irq_data_get_irq_chip_data(d);
128 int offset = d->irq - tgpio->irq_base;
35570ac6 129 unsigned long flags;
8c35c89a
RR
130 u32 lvr, flr, bflr = 0;
131 u32 ver;
2a481800 132 int ret = 0;
35570ac6
RR
133
134 if (offset < 0 || offset > tgpio->gpio.ngpio)
135 return -EINVAL;
136
8c35c89a
RR
137 ver = ioread32(tgpio->membase + TGPIO_VER);
138
35570ac6
RR
139 spin_lock_irqsave(&tgpio->lock, flags);
140
141 lvr = ioread32(tgpio->membase + TGPIO_LVR);
142 flr = ioread32(tgpio->membase + TGPIO_FLR);
8c35c89a
RR
143 if (ver > 2)
144 bflr = ioread32(tgpio->membase + TGPIO_BFLR);
35570ac6
RR
145
146 if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) {
8c35c89a 147 bflr &= ~(1 << offset);
35570ac6
RR
148 flr &= ~(1 << offset);
149 if (trigger & IRQ_TYPE_LEVEL_HIGH)
150 lvr |= 1 << offset;
151 else
152 lvr &= ~(1 << offset);
153 }
154
8c35c89a 155 if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
2a481800
JL
156 if (ver < 3) {
157 ret = -EINVAL;
158 goto out;
8a29a409 159 } else {
8c35c89a
RR
160 flr |= 1 << offset;
161 bflr |= 1 << offset;
162 }
163 } else {
164 bflr &= ~(1 << offset);
35570ac6 165 flr |= 1 << offset;
35570ac6 166 if (trigger & IRQ_TYPE_EDGE_FALLING)
35570ac6 167 lvr &= ~(1 << offset);
8c35c89a
RR
168 else
169 lvr |= 1 << offset;
35570ac6
RR
170 }
171
172 iowrite32(lvr, tgpio->membase + TGPIO_LVR);
173 iowrite32(flr, tgpio->membase + TGPIO_FLR);
8c35c89a
RR
174 if (ver > 2)
175 iowrite32(bflr, tgpio->membase + TGPIO_BFLR);
176
35570ac6 177 iowrite32(1 << offset, tgpio->membase + TGPIO_ICR);
35570ac6 178
2a481800
JL
179out:
180 spin_unlock_irqrestore(&tgpio->lock, flags);
181 return ret;
35570ac6
RR
182}
183
bd0b9ac4 184static void timbgpio_irq(struct irq_desc *desc)
35570ac6 185{
476f8b4c
JL
186 struct timbgpio *tgpio = irq_desc_get_handler_data(desc);
187 struct irq_data *data = irq_desc_get_irq_data(desc);
35570ac6
RR
188 unsigned long ipr;
189 int offset;
190
476f8b4c 191 data->chip->irq_ack(data);
35570ac6
RR
192 ipr = ioread32(tgpio->membase + TGPIO_IPR);
193 iowrite32(ipr, tgpio->membase + TGPIO_ICR);
194
76d800a5
TH
195 /*
196 * Some versions of the hardware trash the IER register if more than
197 * one interrupt is received simultaneously.
198 */
199 iowrite32(0, tgpio->membase + TGPIO_IER);
200
984b3f57 201 for_each_set_bit(offset, &ipr, tgpio->gpio.ngpio)
35570ac6 202 generic_handle_irq(timbgpio_to_irq(&tgpio->gpio, offset));
76d800a5
TH
203
204 iowrite32(tgpio->last_ier, tgpio->membase + TGPIO_IER);
35570ac6
RR
205}
206
207static struct irq_chip timbgpio_irqchip = {
208 .name = "GPIO",
a1f5f22a
LB
209 .irq_enable = timbgpio_irq_enable,
210 .irq_disable = timbgpio_irq_disable,
211 .irq_set_type = timbgpio_irq_type,
35570ac6
RR
212};
213
3836309d 214static int timbgpio_probe(struct platform_device *pdev)
35570ac6
RR
215{
216 int err, i;
0ed3398e 217 struct device *dev = &pdev->dev;
35570ac6
RR
218 struct gpio_chip *gc;
219 struct timbgpio *tgpio;
e56aee18 220 struct timbgpio_platform_data *pdata = dev_get_platdata(&pdev->dev);
35570ac6
RR
221 int irq = platform_get_irq(pdev, 0);
222
223 if (!pdata || pdata->nr_pins > 32) {
0ed3398e 224 dev_err(dev, "Invalid platform data\n");
225 return -EINVAL;
35570ac6
RR
226 }
227
2c3087e1 228 tgpio = devm_kzalloc(dev, sizeof(*tgpio), GFP_KERNEL);
587ca5ed 229 if (!tgpio)
0ed3398e 230 return -EINVAL;
587ca5ed 231
35570ac6
RR
232 tgpio->irq_base = pdata->irq_base;
233
234 spin_lock_init(&tgpio->lock);
235
aa6c9b91 236 tgpio->membase = devm_platform_ioremap_resource(pdev, 0);
fa283db7
AKC
237 if (IS_ERR(tgpio->membase))
238 return PTR_ERR(tgpio->membase);
35570ac6
RR
239
240 gc = &tgpio->gpio;
241
242 gc->label = dev_name(&pdev->dev);
243 gc->owner = THIS_MODULE;
58383c78 244 gc->parent = &pdev->dev;
35570ac6
RR
245 gc->direction_input = timbgpio_gpio_direction_input;
246 gc->get = timbgpio_gpio_get;
247 gc->direction_output = timbgpio_gpio_direction_output;
248 gc->set = timbgpio_gpio_set;
249 gc->to_irq = (irq >= 0 && tgpio->irq_base > 0) ? timbgpio_to_irq : NULL;
250 gc->dbg_show = NULL;
251 gc->base = pdata->gpio_base;
252 gc->ngpio = pdata->nr_pins;
9fb1f39e 253 gc->can_sleep = false;
35570ac6 254
43fad832 255 err = devm_gpiochip_add_data(&pdev->dev, gc, tgpio);
35570ac6 256 if (err)
0ed3398e 257 return err;
35570ac6
RR
258
259 platform_set_drvdata(pdev, tgpio);
260
261 /* make sure to disable interrupts */
262 iowrite32(0x0, tgpio->membase + TGPIO_IER);
263
264 if (irq < 0 || tgpio->irq_base <= 0)
265 return 0;
266
267 for (i = 0; i < pdata->nr_pins; i++) {
e5428a68
LW
268 irq_set_chip_and_handler(tgpio->irq_base + i,
269 &timbgpio_irqchip, handle_simple_irq);
b51804bc 270 irq_set_chip_data(tgpio->irq_base + i, tgpio);
23393d49 271 irq_clear_status_flags(tgpio->irq_base + i, IRQ_NOREQUEST | IRQ_NOPROBE);
35570ac6
RR
272 }
273
8a52211a 274 irq_set_chained_handler_and_data(irq, timbgpio_irq, tgpio);
35570ac6
RR
275
276 return 0;
35570ac6
RR
277}
278
35570ac6
RR
279static struct platform_driver timbgpio_platform_driver = {
280 .driver = {
52ad9053
PG
281 .name = DRIVER_NAME,
282 .suppress_bind_attrs = true,
35570ac6
RR
283 },
284 .probe = timbgpio_probe,
35570ac6
RR
285};
286
287/*--------------------------------------------------------------------------*/
288
52ad9053 289builtin_platform_driver(timbgpio_platform_driver);