]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/gpio/gpio-dwapb.c
Merge tag 'acpi-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[mirror_ubuntu-hirsute-kernel.git] / drivers / gpio / gpio-dwapb.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
7779b345
JI
2/*
3 * Copyright (c) 2011 Jamie Iles
4 *
7779b345
JI
5 * All enquiries to support@picochip.com
6 */
e6cb3486 7#include <linux/acpi.h>
e6bf3773 8#include <linux/clk.h>
7779b345 9#include <linux/err.h>
e6bf3773 10#include <linux/gpio/driver.h>
7779b345
JI
11#include <linux/init.h>
12#include <linux/interrupt.h>
13#include <linux/io.h>
14#include <linux/ioport.h>
15#include <linux/irq.h>
7779b345
JI
16#include <linux/module.h>
17#include <linux/of.h>
18#include <linux/of_address.h>
a72b8c4a 19#include <linux/of_device.h>
7779b345
JI
20#include <linux/of_irq.h>
21#include <linux/platform_device.h>
4ba8cfa7 22#include <linux/property.h>
07901a94 23#include <linux/reset.h>
7779b345 24#include <linux/spinlock.h>
3d2613c4
WC
25#include <linux/platform_data/gpio-dwapb.h>
26#include <linux/slab.h>
7779b345 27
e6cb3486 28#include "gpiolib.h"
77cb907a 29#include "gpiolib-acpi.h"
e6cb3486 30
7779b345
JI
31#define GPIO_SWPORTA_DR 0x00
32#define GPIO_SWPORTA_DDR 0x04
33#define GPIO_SWPORTB_DR 0x0c
34#define GPIO_SWPORTB_DDR 0x10
35#define GPIO_SWPORTC_DR 0x18
36#define GPIO_SWPORTC_DDR 0x1c
37#define GPIO_SWPORTD_DR 0x24
38#define GPIO_SWPORTD_DDR 0x28
39#define GPIO_INTEN 0x30
40#define GPIO_INTMASK 0x34
41#define GPIO_INTTYPE_LEVEL 0x38
42#define GPIO_INT_POLARITY 0x3c
43#define GPIO_INTSTATUS 0x40
5d60d9ef 44#define GPIO_PORTA_DEBOUNCE 0x48
7779b345
JI
45#define GPIO_PORTA_EOI 0x4c
46#define GPIO_EXT_PORTA 0x50
47#define GPIO_EXT_PORTB 0x54
48#define GPIO_EXT_PORTC 0x58
49#define GPIO_EXT_PORTD 0x5c
50
c58220cb 51#define DWAPB_DRIVER_NAME "gpio-dwapb"
7779b345 52#define DWAPB_MAX_PORTS 4
c58220cb 53
89f99feb
LW
54#define GPIO_EXT_PORT_STRIDE 0x04 /* register stride 32 bits */
55#define GPIO_SWPORT_DR_STRIDE 0x0c /* register stride 3*32 bits */
56#define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
7779b345 57
a72b8c4a
HT
58#define GPIO_REG_OFFSET_V2 1
59
60#define GPIO_INTMASK_V2 0x44
61#define GPIO_INTTYPE_LEVEL_V2 0x34
62#define GPIO_INT_POLARITY_V2 0x38
63#define GPIO_INTSTATUS_V2 0x3c
64#define GPIO_PORTA_EOI_V2 0x40
65
5c544c92
SS
66#define DWAPB_NR_CLOCKS 2
67
7779b345
JI
68struct dwapb_gpio;
69
1e960dbb
WC
70#ifdef CONFIG_PM_SLEEP
71/* Store GPIO context across system-wide suspend/resume transitions */
72struct dwapb_context {
73 u32 data;
74 u32 dir;
75 u32 ext;
76 u32 int_en;
77 u32 int_mask;
78 u32 int_type;
79 u32 int_pol;
80 u32 int_deb;
6437c7ba 81 u32 wake_en;
1e960dbb
WC
82};
83#endif
84
0ea68393
SS
85struct dwapb_gpio_port_irqchip {
86 struct irq_chip irqchip;
87 unsigned int nr_irqs;
88 unsigned int irq[DWAPB_MAX_GPIOS];
89};
90
7779b345 91struct dwapb_gpio_port {
0f4630f3 92 struct gpio_chip gc;
0ea68393 93 struct dwapb_gpio_port_irqchip *pirq;
7779b345 94 struct dwapb_gpio *gpio;
1e960dbb
WC
95#ifdef CONFIG_PM_SLEEP
96 struct dwapb_context *ctx;
97#endif
98 unsigned int idx;
7779b345 99};
0ea68393
SS
100#define to_dwapb_gpio(_gc) \
101 (container_of(_gc, struct dwapb_gpio_port, gc)->gpio)
7779b345
JI
102
103struct dwapb_gpio {
104 struct device *dev;
105 void __iomem *regs;
106 struct dwapb_gpio_port *ports;
107 unsigned int nr_ports;
a72b8c4a 108 unsigned int flags;
07901a94 109 struct reset_control *rst;
5c544c92 110 struct clk_bulk_data clks[DWAPB_NR_CLOCKS];
7779b345
JI
111};
112
a72b8c4a
HT
113static inline u32 gpio_reg_v2_convert(unsigned int offset)
114{
115 switch (offset) {
116 case GPIO_INTMASK:
117 return GPIO_INTMASK_V2;
118 case GPIO_INTTYPE_LEVEL:
119 return GPIO_INTTYPE_LEVEL_V2;
120 case GPIO_INT_POLARITY:
121 return GPIO_INT_POLARITY_V2;
122 case GPIO_INTSTATUS:
123 return GPIO_INTSTATUS_V2;
124 case GPIO_PORTA_EOI:
125 return GPIO_PORTA_EOI_V2;
126 }
127
128 return offset;
129}
130
131static inline u32 gpio_reg_convert(struct dwapb_gpio *gpio, unsigned int offset)
132{
133 if (gpio->flags & GPIO_REG_OFFSET_V2)
134 return gpio_reg_v2_convert(offset);
135
136 return offset;
137}
138
67809b97
WC
139static inline u32 dwapb_read(struct dwapb_gpio *gpio, unsigned int offset)
140{
0f4630f3 141 struct gpio_chip *gc = &gpio->ports[0].gc;
67809b97
WC
142 void __iomem *reg_base = gpio->regs;
143
a72b8c4a 144 return gc->read_reg(reg_base + gpio_reg_convert(gpio, offset));
67809b97
WC
145}
146
147static inline void dwapb_write(struct dwapb_gpio *gpio, unsigned int offset,
148 u32 val)
149{
0f4630f3 150 struct gpio_chip *gc = &gpio->ports[0].gc;
67809b97
WC
151 void __iomem *reg_base = gpio->regs;
152
a72b8c4a 153 gc->write_reg(reg_base + gpio_reg_convert(gpio, offset), val);
67809b97
WC
154}
155
62c16234
LW
156static struct dwapb_gpio_port *dwapb_offs_to_port(struct dwapb_gpio *gpio, unsigned int offs)
157{
158 struct dwapb_gpio_port *port;
159 int i;
160
161 for (i = 0; i < gpio->nr_ports; i++) {
162 port = &gpio->ports[i];
f9f890ba 163 if (port->idx == offs / DWAPB_MAX_GPIOS)
62c16234
LW
164 return port;
165 }
166
167 return NULL;
168}
169
7779b345
JI
170static void dwapb_toggle_trigger(struct dwapb_gpio *gpio, unsigned int offs)
171{
62c16234
LW
172 struct dwapb_gpio_port *port = dwapb_offs_to_port(gpio, offs);
173 struct gpio_chip *gc;
174 u32 pol;
175 int val;
176
177 if (!port)
178 return;
179 gc = &port->gc;
7779b345 180
62c16234
LW
181 pol = dwapb_read(gpio, GPIO_INT_POLARITY);
182 /* Just read the current value right out of the data register */
f9f890ba 183 val = gc->get(gc, offs % DWAPB_MAX_GPIOS);
62c16234
LW
184 if (val)
185 pol &= ~BIT(offs);
7779b345 186 else
62c16234 187 pol |= BIT(offs);
7779b345 188
62c16234 189 dwapb_write(gpio, GPIO_INT_POLARITY, pol);
7779b345
JI
190}
191
3d2613c4 192static u32 dwapb_do_irq(struct dwapb_gpio *gpio)
7779b345 193{
0ea68393 194 struct gpio_chip *gc = &gpio->ports[0].gc;
038aa1f0 195 unsigned long irq_status;
e092bc50 196 irq_hw_number_t hwirq;
7779b345 197
038aa1f0 198 irq_status = dwapb_read(gpio, GPIO_INTSTATUS);
f9f890ba 199 for_each_set_bit(hwirq, &irq_status, DWAPB_MAX_GPIOS) {
0ea68393 200 int gpio_irq = irq_find_mapping(gc->irq.domain, hwirq);
038aa1f0 201 u32 irq_type = irq_get_trigger_type(gpio_irq);
7779b345
JI
202
203 generic_handle_irq(gpio_irq);
7779b345 204
038aa1f0 205 if ((irq_type & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
7779b345
JI
206 dwapb_toggle_trigger(gpio, hwirq);
207 }
208
038aa1f0 209 return irq_status;
3d2613c4
WC
210}
211
bd0b9ac4 212static void dwapb_irq_handler(struct irq_desc *desc)
3d2613c4 213{
476f8b4c 214 struct dwapb_gpio *gpio = irq_desc_get_handler_data(desc);
3d2613c4
WC
215 struct irq_chip *chip = irq_desc_get_chip(desc);
216
9b0aef32 217 chained_irq_enter(chip, desc);
3d2613c4 218 dwapb_do_irq(gpio);
9b0aef32 219 chained_irq_exit(chip, desc);
7779b345
JI
220}
221
75c1236a
SS
222static irqreturn_t dwapb_irq_handler_mfd(int irq, void *dev_id)
223{
224 return IRQ_RETVAL(dwapb_do_irq(dev_id));
225}
226
0ea68393
SS
227static void dwapb_irq_ack(struct irq_data *d)
228{
229 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
230 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
231 u32 val = BIT(irqd_to_hwirq(d));
232 unsigned long flags;
233
234 spin_lock_irqsave(&gc->bgpio_lock, flags);
235 dwapb_write(gpio, GPIO_PORTA_EOI, val);
236 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
237}
238
239static void dwapb_irq_mask(struct irq_data *d)
240{
241 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
242 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
243 unsigned long flags;
244 u32 val;
245
246 spin_lock_irqsave(&gc->bgpio_lock, flags);
247 val = dwapb_read(gpio, GPIO_INTMASK) | BIT(irqd_to_hwirq(d));
248 dwapb_write(gpio, GPIO_INTMASK, val);
249 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
250}
251
252static void dwapb_irq_unmask(struct irq_data *d)
253{
254 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
255 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
256 unsigned long flags;
257 u32 val;
258
259 spin_lock_irqsave(&gc->bgpio_lock, flags);
260 val = dwapb_read(gpio, GPIO_INTMASK) & ~BIT(irqd_to_hwirq(d));
261 dwapb_write(gpio, GPIO_INTMASK, val);
262 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
263}
264
7779b345
JI
265static void dwapb_irq_enable(struct irq_data *d)
266{
0ea68393
SS
267 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
268 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
7779b345
JI
269 unsigned long flags;
270 u32 val;
271
0f4630f3 272 spin_lock_irqsave(&gc->bgpio_lock, flags);
67809b97 273 val = dwapb_read(gpio, GPIO_INTEN);
e092bc50 274 val |= BIT(irqd_to_hwirq(d));
67809b97 275 dwapb_write(gpio, GPIO_INTEN, val);
0f4630f3 276 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
7779b345
JI
277}
278
279static void dwapb_irq_disable(struct irq_data *d)
280{
0ea68393
SS
281 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
282 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
7779b345
JI
283 unsigned long flags;
284 u32 val;
285
0f4630f3 286 spin_lock_irqsave(&gc->bgpio_lock, flags);
67809b97 287 val = dwapb_read(gpio, GPIO_INTEN);
e092bc50 288 val &= ~BIT(irqd_to_hwirq(d));
67809b97 289 dwapb_write(gpio, GPIO_INTEN, val);
0f4630f3 290 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
7779b345
JI
291}
292
7779b345
JI
293static int dwapb_irq_set_type(struct irq_data *d, u32 type)
294{
0ea68393
SS
295 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
296 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
e092bc50 297 irq_hw_number_t bit = irqd_to_hwirq(d);
7779b345
JI
298 unsigned long level, polarity, flags;
299
d31275a9 300 if (type & ~IRQ_TYPE_SENSE_MASK)
7779b345
JI
301 return -EINVAL;
302
0f4630f3 303 spin_lock_irqsave(&gc->bgpio_lock, flags);
67809b97
WC
304 level = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
305 polarity = dwapb_read(gpio, GPIO_INT_POLARITY);
7779b345
JI
306
307 switch (type) {
308 case IRQ_TYPE_EDGE_BOTH:
309 level |= BIT(bit);
310 dwapb_toggle_trigger(gpio, bit);
311 break;
312 case IRQ_TYPE_EDGE_RISING:
313 level |= BIT(bit);
314 polarity |= BIT(bit);
315 break;
316 case IRQ_TYPE_EDGE_FALLING:
317 level |= BIT(bit);
318 polarity &= ~BIT(bit);
319 break;
320 case IRQ_TYPE_LEVEL_HIGH:
321 level &= ~BIT(bit);
322 polarity |= BIT(bit);
323 break;
324 case IRQ_TYPE_LEVEL_LOW:
325 level &= ~BIT(bit);
326 polarity &= ~BIT(bit);
327 break;
328 }
329
0ea68393
SS
330 if (type & IRQ_TYPE_LEVEL_MASK)
331 irq_set_handler_locked(d, handle_level_irq);
332 else if (type & IRQ_TYPE_EDGE_BOTH)
333 irq_set_handler_locked(d, handle_edge_irq);
6a2f4b7d 334
67809b97 335 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, level);
edadced2
XC
336 if (type != IRQ_TYPE_EDGE_BOTH)
337 dwapb_write(gpio, GPIO_INT_POLARITY, polarity);
0f4630f3 338 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
7779b345
JI
339
340 return 0;
341}
342
6437c7ba
HT
343#ifdef CONFIG_PM_SLEEP
344static int dwapb_irq_set_wake(struct irq_data *d, unsigned int enable)
345{
346 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
347 struct dwapb_gpio *gpio = igc->private;
348 struct dwapb_context *ctx = gpio->ports[0].ctx;
e092bc50 349 irq_hw_number_t bit = irqd_to_hwirq(d);
6437c7ba
HT
350
351 if (enable)
e092bc50 352 ctx->wake_en |= BIT(bit);
6437c7ba 353 else
e092bc50 354 ctx->wake_en &= ~BIT(bit);
6437c7ba
HT
355
356 return 0;
357}
358#endif
359
5d60d9ef
WC
360static int dwapb_gpio_set_debounce(struct gpio_chip *gc,
361 unsigned offset, unsigned debounce)
362{
0f4630f3 363 struct dwapb_gpio_port *port = gpiochip_get_data(gc);
5d60d9ef
WC
364 struct dwapb_gpio *gpio = port->gpio;
365 unsigned long flags, val_deb;
d97a1b56 366 unsigned long mask = BIT(offset);
5d60d9ef 367
0f4630f3 368 spin_lock_irqsave(&gc->bgpio_lock, flags);
5d60d9ef
WC
369
370 val_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
371 if (debounce)
48ce8056 372 val_deb |= mask;
5d60d9ef 373 else
48ce8056
AS
374 val_deb &= ~mask;
375 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb);
5d60d9ef 376
0f4630f3 377 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
5d60d9ef
WC
378
379 return 0;
380}
381
2956b5d9
MW
382static int dwapb_gpio_set_config(struct gpio_chip *gc, unsigned offset,
383 unsigned long config)
384{
385 u32 debounce;
386
387 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
388 return -ENOTSUPP;
389
390 debounce = pinconf_to_config_argument(config);
391 return dwapb_gpio_set_debounce(gc, offset, debounce);
392}
393
0ea68393
SS
394static int dwapb_convert_irqs(struct dwapb_gpio_port_irqchip *pirq,
395 struct dwapb_port_property *pp)
396{
397 int i;
398
399 /* Group all available IRQs into an array of parental IRQs. */
400 for (i = 0; i < pp->ngpio; ++i) {
401 if (!pp->irq[i])
402 continue;
403
404 pirq->irq[pirq->nr_irqs++] = pp->irq[i];
405 }
406
407 return pirq->nr_irqs ? 0 : -ENOENT;
408}
409
7779b345 410static void dwapb_configure_irqs(struct dwapb_gpio *gpio,
3d2613c4
WC
411 struct dwapb_gpio_port *port,
412 struct dwapb_port_property *pp)
7779b345 413{
0ea68393 414 struct dwapb_gpio_port_irqchip *pirq;
0f4630f3 415 struct gpio_chip *gc = &port->gc;
0ea68393
SS
416 struct gpio_irq_chip *girq;
417 int err;
7779b345 418
0ea68393
SS
419 pirq = devm_kzalloc(gpio->dev, sizeof(*pirq), GFP_KERNEL);
420 if (!pirq)
7779b345 421 return;
7779b345 422
0ea68393
SS
423 if (dwapb_convert_irqs(pirq, pp)) {
424 dev_warn(gpio->dev, "no IRQ for port%d\n", pp->idx);
425 goto err_kfree_pirq;
7779b345
JI
426 }
427
0ea68393
SS
428 girq = &gc->irq;
429 girq->handler = handle_bad_irq;
430 girq->default_type = IRQ_TYPE_NONE;
431
432 port->pirq = pirq;
433 pirq->irqchip.name = DWAPB_DRIVER_NAME;
434 pirq->irqchip.irq_ack = dwapb_irq_ack;
435 pirq->irqchip.irq_mask = dwapb_irq_mask;
436 pirq->irqchip.irq_unmask = dwapb_irq_unmask;
437 pirq->irqchip.irq_set_type = dwapb_irq_set_type;
438 pirq->irqchip.irq_enable = dwapb_irq_enable;
439 pirq->irqchip.irq_disable = dwapb_irq_disable;
6437c7ba 440#ifdef CONFIG_PM_SLEEP
0ea68393 441 pirq->irqchip.irq_set_wake = dwapb_irq_set_wake;
6437c7ba 442#endif
7779b345 443
3d2613c4 444 if (!pp->irq_shared) {
0ea68393
SS
445 girq->num_parents = pirq->nr_irqs;
446 girq->parents = pirq->irq;
447 girq->parent_handler_data = gpio;
448 girq->parent_handler = dwapb_irq_handler;
3d2613c4 449 } else {
0ea68393
SS
450 /* This will let us handle the parent IRQ in the driver */
451 girq->num_parents = 0;
452 girq->parents = NULL;
453 girq->parent_handler = NULL;
454
3d2613c4
WC
455 /*
456 * Request a shared IRQ since where MFD would have devices
457 * using the same irq pin
458 */
e6ca26ab 459 err = devm_request_irq(gpio->dev, pp->irq[0],
3d2613c4 460 dwapb_irq_handler_mfd,
c58220cb 461 IRQF_SHARED, DWAPB_DRIVER_NAME, gpio);
3d2613c4
WC
462 if (err) {
463 dev_err(gpio->dev, "error requesting IRQ\n");
0ea68393 464 goto err_kfree_pirq;
3d2613c4
WC
465 }
466 }
7779b345 467
0ea68393 468 girq->chip = &pirq->irqchip;
7779b345 469
0ea68393 470 return;
7779b345 471
0ea68393
SS
472err_kfree_pirq:
473 devm_kfree(gpio->dev, pirq);
7779b345
JI
474}
475
476static int dwapb_gpio_add_port(struct dwapb_gpio *gpio,
3d2613c4 477 struct dwapb_port_property *pp,
7779b345
JI
478 unsigned int offs)
479{
480 struct dwapb_gpio_port *port;
7779b345
JI
481 void __iomem *dat, *set, *dirout;
482 int err;
483
7779b345
JI
484 port = &gpio->ports[offs];
485 port->gpio = gpio;
1e960dbb
WC
486 port->idx = pp->idx;
487
488#ifdef CONFIG_PM_SLEEP
489 port->ctx = devm_kzalloc(gpio->dev, sizeof(*port->ctx), GFP_KERNEL);
490 if (!port->ctx)
491 return -ENOMEM;
492#endif
7779b345 493
1475b629
AS
494 dat = gpio->regs + GPIO_EXT_PORTA + pp->idx * GPIO_EXT_PORT_STRIDE;
495 set = gpio->regs + GPIO_SWPORTA_DR + pp->idx * GPIO_SWPORT_DR_STRIDE;
496 dirout = gpio->regs + GPIO_SWPORTA_DDR + pp->idx * GPIO_SWPORT_DDR_STRIDE;
7779b345 497
62c16234 498 /* This registers 32 GPIO lines per port */
0f4630f3 499 err = bgpio_init(&port->gc, gpio->dev, 4, dat, set, NULL, dirout,
d97a1b56 500 NULL, 0);
7779b345 501 if (err) {
e8159181
JQ
502 dev_err(gpio->dev, "failed to init gpio chip for port%d\n",
503 port->idx);
7779b345
JI
504 return err;
505 }
506
3d2613c4 507#ifdef CONFIG_OF_GPIO
4ba8cfa7 508 port->gc.of_node = to_of_node(pp->fwnode);
3d2613c4 509#endif
0f4630f3
LW
510 port->gc.ngpio = pp->ngpio;
511 port->gc.base = pp->gpio_base;
7779b345 512
5d60d9ef
WC
513 /* Only port A support debounce */
514 if (pp->idx == 0)
2956b5d9 515 port->gc.set_config = dwapb_gpio_set_config;
5d60d9ef 516
551cb86c
AS
517 /* Only port A can provide interrupts in all configurations of the IP */
518 if (pp->idx == 0)
3d2613c4 519 dwapb_configure_irqs(gpio, port, pp);
7779b345 520
feeaefd3 521 err = devm_gpiochip_add_data(gpio->dev, &port->gc, port);
494a94e3 522 if (err) {
e8159181
JQ
523 dev_err(gpio->dev, "failed to register gpiochip for port%d\n",
524 port->idx);
494a94e3
AS
525 return err;
526 }
7779b345 527
494a94e3 528 return 0;
7779b345
JI
529}
530
4c2b54f7
AS
531static void dwapb_get_irq(struct device *dev, struct fwnode_handle *fwnode,
532 struct dwapb_port_property *pp)
533{
534 struct device_node *np = NULL;
aa90939d 535 int irq = -ENXIO, j;
4c2b54f7
AS
536
537 if (fwnode_property_read_bool(fwnode, "interrupt-controller"))
538 np = to_of_node(fwnode);
539
540 for (j = 0; j < pp->ngpio; j++) {
4c2b54f7 541 if (np)
aa90939d 542 irq = of_irq_get(np, j);
4c2b54f7 543 else if (has_acpi_companion(dev))
aa90939d
AS
544 irq = platform_get_irq_optional(to_platform_device(dev), j);
545 if (irq > 0)
546 pp->irq[j] = irq;
4c2b54f7 547 }
4c2b54f7
AS
548}
549
550static struct dwapb_platform_data *dwapb_gpio_get_pdata(struct device *dev)
3d2613c4 551{
4ba8cfa7 552 struct fwnode_handle *fwnode;
3d2613c4
WC
553 struct dwapb_platform_data *pdata;
554 struct dwapb_port_property *pp;
555 int nports;
4c2b54f7 556 int i;
3d2613c4 557
4ba8cfa7 558 nports = device_get_child_node_count(dev);
3d2613c4
WC
559 if (nports == 0)
560 return ERR_PTR(-ENODEV);
561
da9df93e 562 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
3d2613c4
WC
563 if (!pdata)
564 return ERR_PTR(-ENOMEM);
565
da9df93e
AL
566 pdata->properties = devm_kcalloc(dev, nports, sizeof(*pp), GFP_KERNEL);
567 if (!pdata->properties)
3d2613c4 568 return ERR_PTR(-ENOMEM);
3d2613c4
WC
569
570 pdata->nports = nports;
571
572 i = 0;
4ba8cfa7 573 device_for_each_child_node(dev, fwnode) {
3d2613c4 574 pp = &pdata->properties[i++];
4ba8cfa7 575 pp->fwnode = fwnode;
3d2613c4 576
4ba8cfa7 577 if (fwnode_property_read_u32(fwnode, "reg", &pp->idx) ||
3d2613c4 578 pp->idx >= DWAPB_MAX_PORTS) {
e8159181
JQ
579 dev_err(dev,
580 "missing/invalid port index for port%d\n", i);
bfab7c8f 581 fwnode_handle_put(fwnode);
3d2613c4
WC
582 return ERR_PTR(-EINVAL);
583 }
584
7569486d
SS
585 if (fwnode_property_read_u32(fwnode, "ngpios", &pp->ngpio) &&
586 fwnode_property_read_u32(fwnode, "snps,nr-gpios", &pp->ngpio)) {
e8159181
JQ
587 dev_info(dev,
588 "failed to get number of gpios for port%d\n",
589 i);
f9f890ba 590 pp->ngpio = DWAPB_MAX_GPIOS;
3d2613c4
WC
591 }
592
da069d5d
PE
593 pp->irq_shared = false;
594 pp->gpio_base = -1;
595
3d2613c4
WC
596 /*
597 * Only port A can provide interrupts in all configurations of
598 * the IP.
599 */
4c2b54f7
AS
600 if (pp->idx == 0)
601 dwapb_get_irq(dev, fwnode, pp);
3d2613c4
WC
602 }
603
604 return pdata;
605}
606
4731d80f
SS
607static void dwapb_assert_reset(void *data)
608{
609 struct dwapb_gpio *gpio = data;
610
611 reset_control_assert(gpio->rst);
612}
613
614static int dwapb_get_reset(struct dwapb_gpio *gpio)
615{
616 int err;
617
618 gpio->rst = devm_reset_control_get_optional_shared(gpio->dev, NULL);
619 if (IS_ERR(gpio->rst)) {
620 dev_err(gpio->dev, "Cannot get reset descriptor\n");
621 return PTR_ERR(gpio->rst);
622 }
623
624 err = reset_control_deassert(gpio->rst);
625 if (err) {
626 dev_err(gpio->dev, "Cannot deassert reset lane\n");
627 return err;
628 }
629
630 return devm_add_action_or_reset(gpio->dev, dwapb_assert_reset, gpio);
631}
632
daa3f58d
SS
633static void dwapb_disable_clks(void *data)
634{
635 struct dwapb_gpio *gpio = data;
636
637 clk_bulk_disable_unprepare(DWAPB_NR_CLOCKS, gpio->clks);
638}
639
640static int dwapb_get_clks(struct dwapb_gpio *gpio)
641{
642 int err;
643
644 /* Optional bus and debounce clocks */
645 gpio->clks[0].id = "bus";
646 gpio->clks[1].id = "db";
647 err = devm_clk_bulk_get_optional(gpio->dev, DWAPB_NR_CLOCKS,
648 gpio->clks);
649 if (err) {
650 dev_err(gpio->dev, "Cannot get APB/Debounce clocks\n");
651 return err;
652 }
653
654 err = clk_bulk_prepare_enable(DWAPB_NR_CLOCKS, gpio->clks);
655 if (err) {
656 dev_err(gpio->dev, "Cannot enable APB/Debounce clocks\n");
657 return err;
658 }
659
660 return devm_add_action_or_reset(gpio->dev, dwapb_disable_clks, gpio);
661}
662
a72b8c4a
HT
663static const struct of_device_id dwapb_of_match[] = {
664 { .compatible = "snps,dw-apb-gpio", .data = (void *)0},
665 { .compatible = "apm,xgene-gpio-v2", .data = (void *)GPIO_REG_OFFSET_V2},
666 { /* Sentinel */ }
667};
668MODULE_DEVICE_TABLE(of, dwapb_of_match);
669
670static const struct acpi_device_id dwapb_acpi_match[] = {
671 {"HISI0181", 0},
672 {"APMC0D07", 0},
673 {"APMC0D81", GPIO_REG_OFFSET_V2},
674 { }
675};
676MODULE_DEVICE_TABLE(acpi, dwapb_acpi_match);
677
7779b345
JI
678static int dwapb_gpio_probe(struct platform_device *pdev)
679{
3d2613c4 680 unsigned int i;
7779b345 681 struct dwapb_gpio *gpio;
7779b345 682 int err;
3d2613c4
WC
683 struct device *dev = &pdev->dev;
684 struct dwapb_platform_data *pdata = dev_get_platdata(dev);
3d2613c4 685
da9df93e 686 if (!pdata) {
4ba8cfa7 687 pdata = dwapb_gpio_get_pdata(dev);
3d2613c4
WC
688 if (IS_ERR(pdata))
689 return PTR_ERR(pdata);
690 }
7779b345 691
da9df93e
AL
692 if (!pdata->nports)
693 return -ENODEV;
7779b345 694
3d2613c4 695 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
da9df93e
AL
696 if (!gpio)
697 return -ENOMEM;
698
3d2613c4
WC
699 gpio->dev = &pdev->dev;
700 gpio->nr_ports = pdata->nports;
701
4731d80f
SS
702 err = dwapb_get_reset(gpio);
703 if (err)
704 return err;
07901a94 705
3d2613c4 706 gpio->ports = devm_kcalloc(&pdev->dev, gpio->nr_ports,
7779b345 707 sizeof(*gpio->ports), GFP_KERNEL);
da9df93e
AL
708 if (!gpio->ports)
709 return -ENOMEM;
7779b345 710
2a7194e9 711 gpio->regs = devm_platform_ioremap_resource(pdev, 0);
da9df93e
AL
712 if (IS_ERR(gpio->regs))
713 return PTR_ERR(gpio->regs);
7779b345 714
daa3f58d
SS
715 err = dwapb_get_clks(gpio);
716 if (err)
3ea8094c 717 return err;
e6bf3773 718
9826bbe1 719 gpio->flags = (uintptr_t)device_get_match_data(dev);
a72b8c4a 720
3d2613c4
WC
721 for (i = 0; i < gpio->nr_ports; i++) {
722 err = dwapb_gpio_add_port(gpio, &pdata->properties[i], i);
7779b345 723 if (err)
feeaefd3 724 return err;
7779b345 725 }
7779b345
JI
726
727 return 0;
728}
729
1e960dbb
WC
730#ifdef CONFIG_PM_SLEEP
731static int dwapb_gpio_suspend(struct device *dev)
732{
deb19ac5 733 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
0f4630f3 734 struct gpio_chip *gc = &gpio->ports[0].gc;
1e960dbb
WC
735 unsigned long flags;
736 int i;
737
0f4630f3 738 spin_lock_irqsave(&gc->bgpio_lock, flags);
1e960dbb
WC
739 for (i = 0; i < gpio->nr_ports; i++) {
740 unsigned int offset;
741 unsigned int idx = gpio->ports[i].idx;
742 struct dwapb_context *ctx = gpio->ports[i].ctx;
743
89f99feb 744 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
1e960dbb
WC
745 ctx->dir = dwapb_read(gpio, offset);
746
89f99feb 747 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
1e960dbb
WC
748 ctx->data = dwapb_read(gpio, offset);
749
89f99feb 750 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
1e960dbb
WC
751 ctx->ext = dwapb_read(gpio, offset);
752
753 /* Only port A can provide interrupts */
754 if (idx == 0) {
755 ctx->int_mask = dwapb_read(gpio, GPIO_INTMASK);
756 ctx->int_en = dwapb_read(gpio, GPIO_INTEN);
757 ctx->int_pol = dwapb_read(gpio, GPIO_INT_POLARITY);
758 ctx->int_type = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
759 ctx->int_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
760
761 /* Mask out interrupts */
1afbc80c 762 dwapb_write(gpio, GPIO_INTMASK, ~ctx->wake_en);
1e960dbb
WC
763 }
764 }
0f4630f3 765 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
1e960dbb 766
5c544c92 767 clk_bulk_disable_unprepare(DWAPB_NR_CLOCKS, gpio->clks);
e6bf3773 768
1e960dbb
WC
769 return 0;
770}
771
772static int dwapb_gpio_resume(struct device *dev)
773{
deb19ac5 774 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
0f4630f3 775 struct gpio_chip *gc = &gpio->ports[0].gc;
1e960dbb 776 unsigned long flags;
5c544c92 777 int i, err;
1e960dbb 778
5c544c92
SS
779 err = clk_bulk_prepare_enable(DWAPB_NR_CLOCKS, gpio->clks);
780 if (err) {
781 dev_err(gpio->dev, "Cannot reenable APB/Debounce clocks\n");
782 return err;
783 }
e6bf3773 784
0f4630f3 785 spin_lock_irqsave(&gc->bgpio_lock, flags);
1e960dbb
WC
786 for (i = 0; i < gpio->nr_ports; i++) {
787 unsigned int offset;
788 unsigned int idx = gpio->ports[i].idx;
789 struct dwapb_context *ctx = gpio->ports[i].ctx;
790
89f99feb 791 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
1e960dbb
WC
792 dwapb_write(gpio, offset, ctx->data);
793
89f99feb 794 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
1e960dbb
WC
795 dwapb_write(gpio, offset, ctx->dir);
796
89f99feb 797 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
1e960dbb
WC
798 dwapb_write(gpio, offset, ctx->ext);
799
800 /* Only port A can provide interrupts */
801 if (idx == 0) {
802 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, ctx->int_type);
803 dwapb_write(gpio, GPIO_INT_POLARITY, ctx->int_pol);
804 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, ctx->int_deb);
805 dwapb_write(gpio, GPIO_INTEN, ctx->int_en);
806 dwapb_write(gpio, GPIO_INTMASK, ctx->int_mask);
807
808 /* Clear out spurious interrupts */
809 dwapb_write(gpio, GPIO_PORTA_EOI, 0xffffffff);
810 }
811 }
0f4630f3 812 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
1e960dbb
WC
813
814 return 0;
815}
816#endif
817
818static SIMPLE_DEV_PM_OPS(dwapb_gpio_pm_ops, dwapb_gpio_suspend,
819 dwapb_gpio_resume);
820
7779b345
JI
821static struct platform_driver dwapb_gpio_driver = {
822 .driver = {
c58220cb 823 .name = DWAPB_DRIVER_NAME,
1e960dbb 824 .pm = &dwapb_gpio_pm_ops,
c59042ed
AS
825 .of_match_table = dwapb_of_match,
826 .acpi_match_table = dwapb_acpi_match,
7779b345
JI
827 },
828 .probe = dwapb_gpio_probe,
7779b345
JI
829};
830
831module_platform_driver(dwapb_gpio_driver);
832
833MODULE_LICENSE("GPL");
834MODULE_AUTHOR("Jamie Iles");
835MODULE_DESCRIPTION("Synopsys DesignWare APB GPIO driver");
c58220cb 836MODULE_ALIAS("platform:" DWAPB_DRIVER_NAME);