blob: 7a2de3de65719a6de3177c07e731a0f6f62d708d [file] [log] [blame]
Jamie Iles7779b3452014-02-25 17:01:01 -06001/*
2 * Copyright (c) 2011 Jamie Iles
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * All enquiries to support@picochip.com
9 */
Jiang Qiue6cb3482016-04-28 17:32:03 +080010#include <linux/acpi.h>
Phil Edworthye6bf3772018-03-12 18:30:56 +000011#include <linux/clk.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060012#include <linux/err.h>
Phil Edworthye6bf3772018-03-12 18:30:56 +000013#include <linux/gpio/driver.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060014#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/io.h>
17#include <linux/ioport.h>
18#include <linux/irq.h>
19#include <linux/irqdomain.h>
20#include <linux/module.h>
21#include <linux/of.h>
22#include <linux/of_address.h>
Hoan Trana72b8c42017-02-21 11:32:43 -080023#include <linux/of_device.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060024#include <linux/of_irq.h>
25#include <linux/platform_device.h>
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +080026#include <linux/property.h>
Alan Tull07901a92017-10-11 11:34:44 -050027#include <linux/reset.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060028#include <linux/spinlock.h>
Weike Chen3d2613c2014-09-17 09:18:39 -070029#include <linux/platform_data/gpio-dwapb.h>
30#include <linux/slab.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060031
Jiang Qiue6cb3482016-04-28 17:32:03 +080032#include "gpiolib.h"
33
Jamie Iles7779b3452014-02-25 17:01:01 -060034#define GPIO_SWPORTA_DR 0x00
35#define GPIO_SWPORTA_DDR 0x04
36#define GPIO_SWPORTB_DR 0x0c
37#define GPIO_SWPORTB_DDR 0x10
38#define GPIO_SWPORTC_DR 0x18
39#define GPIO_SWPORTC_DDR 0x1c
40#define GPIO_SWPORTD_DR 0x24
41#define GPIO_SWPORTD_DDR 0x28
42#define GPIO_INTEN 0x30
43#define GPIO_INTMASK 0x34
44#define GPIO_INTTYPE_LEVEL 0x38
45#define GPIO_INT_POLARITY 0x3c
46#define GPIO_INTSTATUS 0x40
Weike Chen5d60d9e2014-09-17 09:18:41 -070047#define GPIO_PORTA_DEBOUNCE 0x48
Jamie Iles7779b3452014-02-25 17:01:01 -060048#define GPIO_PORTA_EOI 0x4c
49#define GPIO_EXT_PORTA 0x50
50#define GPIO_EXT_PORTB 0x54
51#define GPIO_EXT_PORTC 0x58
52#define GPIO_EXT_PORTD 0x5c
53
54#define DWAPB_MAX_PORTS 4
Linus Walleij89f99fe2018-02-08 17:03:58 +010055#define GPIO_EXT_PORT_STRIDE 0x04 /* register stride 32 bits */
56#define GPIO_SWPORT_DR_STRIDE 0x0c /* register stride 3*32 bits */
57#define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
Jamie Iles7779b3452014-02-25 17:01:01 -060058
Hoan Trana72b8c42017-02-21 11:32:43 -080059#define GPIO_REG_OFFSET_V2 1
60
61#define GPIO_INTMASK_V2 0x44
62#define GPIO_INTTYPE_LEVEL_V2 0x34
63#define GPIO_INT_POLARITY_V2 0x38
64#define GPIO_INTSTATUS_V2 0x3c
65#define GPIO_PORTA_EOI_V2 0x40
66
Jamie Iles7779b3452014-02-25 17:01:01 -060067struct dwapb_gpio;
68
Weike Chen1e960db2014-09-17 09:18:42 -070069#ifdef CONFIG_PM_SLEEP
70/* Store GPIO context across system-wide suspend/resume transitions */
71struct dwapb_context {
72 u32 data;
73 u32 dir;
74 u32 ext;
75 u32 int_en;
76 u32 int_mask;
77 u32 int_type;
78 u32 int_pol;
79 u32 int_deb;
Hoan Tran6437c7b2017-09-08 15:41:15 -070080 u32 wake_en;
Weike Chen1e960db2014-09-17 09:18:42 -070081};
82#endif
83
Jamie Iles7779b3452014-02-25 17:01:01 -060084struct dwapb_gpio_port {
Linus Walleij0f4630f2015-12-04 14:02:58 +010085 struct gpio_chip gc;
Jamie Iles7779b3452014-02-25 17:01:01 -060086 bool is_registered;
87 struct dwapb_gpio *gpio;
Weike Chen1e960db2014-09-17 09:18:42 -070088#ifdef CONFIG_PM_SLEEP
89 struct dwapb_context *ctx;
90#endif
91 unsigned int idx;
Jamie Iles7779b3452014-02-25 17:01:01 -060092};
93
94struct dwapb_gpio {
95 struct device *dev;
96 void __iomem *regs;
97 struct dwapb_gpio_port *ports;
98 unsigned int nr_ports;
99 struct irq_domain *domain;
Hoan Trana72b8c42017-02-21 11:32:43 -0800100 unsigned int flags;
Alan Tull07901a92017-10-11 11:34:44 -0500101 struct reset_control *rst;
Phil Edworthye6bf3772018-03-12 18:30:56 +0000102 struct clk *clk;
Jamie Iles7779b3452014-02-25 17:01:01 -0600103};
104
Hoan Trana72b8c42017-02-21 11:32:43 -0800105static inline u32 gpio_reg_v2_convert(unsigned int offset)
106{
107 switch (offset) {
108 case GPIO_INTMASK:
109 return GPIO_INTMASK_V2;
110 case GPIO_INTTYPE_LEVEL:
111 return GPIO_INTTYPE_LEVEL_V2;
112 case GPIO_INT_POLARITY:
113 return GPIO_INT_POLARITY_V2;
114 case GPIO_INTSTATUS:
115 return GPIO_INTSTATUS_V2;
116 case GPIO_PORTA_EOI:
117 return GPIO_PORTA_EOI_V2;
118 }
119
120 return offset;
121}
122
123static inline u32 gpio_reg_convert(struct dwapb_gpio *gpio, unsigned int offset)
124{
125 if (gpio->flags & GPIO_REG_OFFSET_V2)
126 return gpio_reg_v2_convert(offset);
127
128 return offset;
129}
130
Weike Chen67809b92014-09-17 09:18:40 -0700131static inline u32 dwapb_read(struct dwapb_gpio *gpio, unsigned int offset)
132{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100133 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen67809b92014-09-17 09:18:40 -0700134 void __iomem *reg_base = gpio->regs;
135
Hoan Trana72b8c42017-02-21 11:32:43 -0800136 return gc->read_reg(reg_base + gpio_reg_convert(gpio, offset));
Weike Chen67809b92014-09-17 09:18:40 -0700137}
138
139static inline void dwapb_write(struct dwapb_gpio *gpio, unsigned int offset,
140 u32 val)
141{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100142 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen67809b92014-09-17 09:18:40 -0700143 void __iomem *reg_base = gpio->regs;
144
Hoan Trana72b8c42017-02-21 11:32:43 -0800145 gc->write_reg(reg_base + gpio_reg_convert(gpio, offset), val);
Weike Chen67809b92014-09-17 09:18:40 -0700146}
147
Jamie Iles7779b3452014-02-25 17:01:01 -0600148static int dwapb_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
149{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100150 struct dwapb_gpio_port *port = gpiochip_get_data(gc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600151 struct dwapb_gpio *gpio = port->gpio;
152
153 return irq_find_mapping(gpio->domain, offset);
154}
155
Linus Walleij62c16232018-02-08 18:00:05 +0100156static 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];
163 if (port->idx == offs / 32)
164 return port;
165 }
166
167 return NULL;
168}
169
Jamie Iles7779b3452014-02-25 17:01:01 -0600170static void dwapb_toggle_trigger(struct dwapb_gpio *gpio, unsigned int offs)
171{
Linus Walleij62c16232018-02-08 18:00:05 +0100172 struct dwapb_gpio_port *port = dwapb_offs_to_port(gpio, offs);
173 struct gpio_chip *gc;
174 u32 pol;
175 int val;
Jamie Iles7779b3452014-02-25 17:01:01 -0600176
Linus Walleij62c16232018-02-08 18:00:05 +0100177 if (!port)
178 return;
179 gc = &port->gc;
180
181 pol = dwapb_read(gpio, GPIO_INT_POLARITY);
182 /* Just read the current value right out of the data register */
183 val = gc->get(gc, offs % 32);
184 if (val)
185 pol &= ~BIT(offs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600186 else
Linus Walleij62c16232018-02-08 18:00:05 +0100187 pol |= BIT(offs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600188
Linus Walleij62c16232018-02-08 18:00:05 +0100189 dwapb_write(gpio, GPIO_INT_POLARITY, pol);
Jamie Iles7779b3452014-02-25 17:01:01 -0600190}
191
Weike Chen3d2613c2014-09-17 09:18:39 -0700192static u32 dwapb_do_irq(struct dwapb_gpio *gpio)
Jamie Iles7779b3452014-02-25 17:01:01 -0600193{
Jisheng Zhang5664aa12017-04-13 17:46:39 +0800194 u32 irq_status = dwapb_read(gpio, GPIO_INTSTATUS);
Weike Chen3d2613c2014-09-17 09:18:39 -0700195 u32 ret = irq_status;
Jamie Iles7779b3452014-02-25 17:01:01 -0600196
197 while (irq_status) {
198 int hwirq = fls(irq_status) - 1;
199 int gpio_irq = irq_find_mapping(gpio->domain, hwirq);
200
201 generic_handle_irq(gpio_irq);
202 irq_status &= ~BIT(hwirq);
203
204 if ((irq_get_trigger_type(gpio_irq) & IRQ_TYPE_SENSE_MASK)
205 == IRQ_TYPE_EDGE_BOTH)
206 dwapb_toggle_trigger(gpio, hwirq);
207 }
208
Weike Chen3d2613c2014-09-17 09:18:39 -0700209 return ret;
210}
211
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200212static void dwapb_irq_handler(struct irq_desc *desc)
Weike Chen3d2613c2014-09-17 09:18:39 -0700213{
Jiang Liu476f8b42015-06-04 12:13:15 +0800214 struct dwapb_gpio *gpio = irq_desc_get_handler_data(desc);
Weike Chen3d2613c2014-09-17 09:18:39 -0700215 struct irq_chip *chip = irq_desc_get_chip(desc);
216
217 dwapb_do_irq(gpio);
218
Jamie Iles7779b3452014-02-25 17:01:01 -0600219 if (chip->irq_eoi)
220 chip->irq_eoi(irq_desc_get_irq_data(desc));
221}
222
223static void dwapb_irq_enable(struct irq_data *d)
224{
225 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
226 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100227 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600228 unsigned long flags;
229 u32 val;
230
Linus Walleij0f4630f2015-12-04 14:02:58 +0100231 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700232 val = dwapb_read(gpio, GPIO_INTEN);
Jamie Iles7779b3452014-02-25 17:01:01 -0600233 val |= BIT(d->hwirq);
Weike Chen67809b92014-09-17 09:18:40 -0700234 dwapb_write(gpio, GPIO_INTEN, val);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100235 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600236}
237
238static void dwapb_irq_disable(struct irq_data *d)
239{
240 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
241 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100242 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600243 unsigned long flags;
244 u32 val;
245
Linus Walleij0f4630f2015-12-04 14:02:58 +0100246 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700247 val = dwapb_read(gpio, GPIO_INTEN);
Jamie Iles7779b3452014-02-25 17:01:01 -0600248 val &= ~BIT(d->hwirq);
Weike Chen67809b92014-09-17 09:18:40 -0700249 dwapb_write(gpio, GPIO_INTEN, val);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100250 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600251}
252
Linus Walleij57ef0422014-03-14 18:16:20 +0100253static int dwapb_irq_reqres(struct irq_data *d)
Jamie Iles7779b3452014-02-25 17:01:01 -0600254{
255 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
256 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100257 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600258
Linus Walleij0f4630f2015-12-04 14:02:58 +0100259 if (gpiochip_lock_as_irq(gc, irqd_to_hwirq(d))) {
Jamie Iles7779b3452014-02-25 17:01:01 -0600260 dev_err(gpio->dev, "unable to lock HW IRQ %lu for IRQ\n",
261 irqd_to_hwirq(d));
Linus Walleij57ef0422014-03-14 18:16:20 +0100262 return -EINVAL;
263 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600264 return 0;
265}
266
Linus Walleij57ef0422014-03-14 18:16:20 +0100267static void dwapb_irq_relres(struct irq_data *d)
Jamie Iles7779b3452014-02-25 17:01:01 -0600268{
269 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
270 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100271 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600272
Linus Walleij0f4630f2015-12-04 14:02:58 +0100273 gpiochip_unlock_as_irq(gc, irqd_to_hwirq(d));
Jamie Iles7779b3452014-02-25 17:01:01 -0600274}
275
276static int dwapb_irq_set_type(struct irq_data *d, u32 type)
277{
278 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
279 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100280 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600281 int bit = d->hwirq;
282 unsigned long level, polarity, flags;
283
284 if (type & ~(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
285 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
286 return -EINVAL;
287
Linus Walleij0f4630f2015-12-04 14:02:58 +0100288 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700289 level = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
290 polarity = dwapb_read(gpio, GPIO_INT_POLARITY);
Jamie Iles7779b3452014-02-25 17:01:01 -0600291
292 switch (type) {
293 case IRQ_TYPE_EDGE_BOTH:
294 level |= BIT(bit);
295 dwapb_toggle_trigger(gpio, bit);
296 break;
297 case IRQ_TYPE_EDGE_RISING:
298 level |= BIT(bit);
299 polarity |= BIT(bit);
300 break;
301 case IRQ_TYPE_EDGE_FALLING:
302 level |= BIT(bit);
303 polarity &= ~BIT(bit);
304 break;
305 case IRQ_TYPE_LEVEL_HIGH:
306 level &= ~BIT(bit);
307 polarity |= BIT(bit);
308 break;
309 case IRQ_TYPE_LEVEL_LOW:
310 level &= ~BIT(bit);
311 polarity &= ~BIT(bit);
312 break;
313 }
314
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200315 irq_setup_alt_chip(d, type);
316
Weike Chen67809b92014-09-17 09:18:40 -0700317 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, level);
Xiaoguang Chenedadced2017-06-02 07:27:15 +0800318 if (type != IRQ_TYPE_EDGE_BOTH)
319 dwapb_write(gpio, GPIO_INT_POLARITY, polarity);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100320 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600321
322 return 0;
323}
324
Hoan Tran6437c7b2017-09-08 15:41:15 -0700325#ifdef CONFIG_PM_SLEEP
326static int dwapb_irq_set_wake(struct irq_data *d, unsigned int enable)
327{
328 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
329 struct dwapb_gpio *gpio = igc->private;
330 struct dwapb_context *ctx = gpio->ports[0].ctx;
331
332 if (enable)
333 ctx->wake_en |= BIT(d->hwirq);
334 else
335 ctx->wake_en &= ~BIT(d->hwirq);
336
337 return 0;
338}
339#endif
340
Weike Chen5d60d9e2014-09-17 09:18:41 -0700341static int dwapb_gpio_set_debounce(struct gpio_chip *gc,
342 unsigned offset, unsigned debounce)
343{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100344 struct dwapb_gpio_port *port = gpiochip_get_data(gc);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700345 struct dwapb_gpio *gpio = port->gpio;
346 unsigned long flags, val_deb;
Linus Walleijd97a1b52017-10-20 12:26:51 +0200347 unsigned long mask = BIT(offset);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700348
Linus Walleij0f4630f2015-12-04 14:02:58 +0100349 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700350
351 val_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
352 if (debounce)
353 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb | mask);
354 else
355 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb & ~mask);
356
Linus Walleij0f4630f2015-12-04 14:02:58 +0100357 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700358
359 return 0;
360}
361
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300362static int dwapb_gpio_set_config(struct gpio_chip *gc, unsigned offset,
363 unsigned long config)
364{
365 u32 debounce;
366
367 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
368 return -ENOTSUPP;
369
370 debounce = pinconf_to_config_argument(config);
371 return dwapb_gpio_set_debounce(gc, offset, debounce);
372}
373
Weike Chen3d2613c2014-09-17 09:18:39 -0700374static irqreturn_t dwapb_irq_handler_mfd(int irq, void *dev_id)
375{
376 u32 worked;
377 struct dwapb_gpio *gpio = dev_id;
378
379 worked = dwapb_do_irq(gpio);
380
381 return worked ? IRQ_HANDLED : IRQ_NONE;
382}
383
Jamie Iles7779b3452014-02-25 17:01:01 -0600384static void dwapb_configure_irqs(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700385 struct dwapb_gpio_port *port,
386 struct dwapb_port_property *pp)
Jamie Iles7779b3452014-02-25 17:01:01 -0600387{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100388 struct gpio_chip *gc = &port->gc;
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800389 struct fwnode_handle *fwnode = pp->fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700390 struct irq_chip_generic *irq_gc = NULL;
Jamie Iles7779b3452014-02-25 17:01:01 -0600391 unsigned int hwirq, ngpio = gc->ngpio;
392 struct irq_chip_type *ct;
Weike Chen3d2613c2014-09-17 09:18:39 -0700393 int err, i;
Jamie Iles7779b3452014-02-25 17:01:01 -0600394
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800395 gpio->domain = irq_domain_create_linear(fwnode, ngpio,
396 &irq_generic_chip_ops, gpio);
Jamie Iles7779b3452014-02-25 17:01:01 -0600397 if (!gpio->domain)
398 return;
399
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200400 err = irq_alloc_domain_generic_chips(gpio->domain, ngpio, 2,
Jamie Iles7779b3452014-02-25 17:01:01 -0600401 "gpio-dwapb", handle_level_irq,
402 IRQ_NOREQUEST, 0,
403 IRQ_GC_INIT_NESTED_LOCK);
404 if (err) {
405 dev_info(gpio->dev, "irq_alloc_domain_generic_chips failed\n");
406 irq_domain_remove(gpio->domain);
407 gpio->domain = NULL;
408 return;
409 }
410
411 irq_gc = irq_get_domain_generic_chip(gpio->domain, 0);
412 if (!irq_gc) {
413 irq_domain_remove(gpio->domain);
414 gpio->domain = NULL;
415 return;
416 }
417
418 irq_gc->reg_base = gpio->regs;
419 irq_gc->private = gpio;
420
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200421 for (i = 0; i < 2; i++) {
422 ct = &irq_gc->chip_types[i];
423 ct->chip.irq_ack = irq_gc_ack_set_bit;
424 ct->chip.irq_mask = irq_gc_mask_set_bit;
425 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
426 ct->chip.irq_set_type = dwapb_irq_set_type;
427 ct->chip.irq_enable = dwapb_irq_enable;
428 ct->chip.irq_disable = dwapb_irq_disable;
429 ct->chip.irq_request_resources = dwapb_irq_reqres;
430 ct->chip.irq_release_resources = dwapb_irq_relres;
Hoan Tran6437c7b2017-09-08 15:41:15 -0700431#ifdef CONFIG_PM_SLEEP
432 ct->chip.irq_set_wake = dwapb_irq_set_wake;
433#endif
Hoan Trana72b8c42017-02-21 11:32:43 -0800434 ct->regs.ack = gpio_reg_convert(gpio, GPIO_PORTA_EOI);
435 ct->regs.mask = gpio_reg_convert(gpio, GPIO_INTMASK);
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200436 ct->type = IRQ_TYPE_LEVEL_MASK;
437 }
438
439 irq_gc->chip_types[0].type = IRQ_TYPE_LEVEL_MASK;
440 irq_gc->chip_types[1].type = IRQ_TYPE_EDGE_BOTH;
441 irq_gc->chip_types[1].handler = handle_edge_irq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600442
Weike Chen3d2613c2014-09-17 09:18:39 -0700443 if (!pp->irq_shared) {
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100444 int i;
445
446 for (i = 0; i < pp->ngpio; i++) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100447 if (pp->irq[i] >= 0)
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100448 irq_set_chained_handler_and_data(pp->irq[i],
449 dwapb_irq_handler, gpio);
450 }
Weike Chen3d2613c2014-09-17 09:18:39 -0700451 } else {
452 /*
453 * Request a shared IRQ since where MFD would have devices
454 * using the same irq pin
455 */
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100456 err = devm_request_irq(gpio->dev, pp->irq[0],
Weike Chen3d2613c2014-09-17 09:18:39 -0700457 dwapb_irq_handler_mfd,
458 IRQF_SHARED, "gpio-dwapb-mfd", gpio);
459 if (err) {
460 dev_err(gpio->dev, "error requesting IRQ\n");
461 irq_domain_remove(gpio->domain);
462 gpio->domain = NULL;
463 return;
464 }
465 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600466
467 for (hwirq = 0 ; hwirq < ngpio ; hwirq++)
468 irq_create_mapping(gpio->domain, hwirq);
469
Linus Walleij0f4630f2015-12-04 14:02:58 +0100470 port->gc.to_irq = dwapb_gpio_to_irq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600471}
472
473static void dwapb_irq_teardown(struct dwapb_gpio *gpio)
474{
475 struct dwapb_gpio_port *port = &gpio->ports[0];
Linus Walleij0f4630f2015-12-04 14:02:58 +0100476 struct gpio_chip *gc = &port->gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600477 unsigned int ngpio = gc->ngpio;
478 irq_hw_number_t hwirq;
479
480 if (!gpio->domain)
481 return;
482
483 for (hwirq = 0 ; hwirq < ngpio ; hwirq++)
484 irq_dispose_mapping(irq_find_mapping(gpio->domain, hwirq));
485
486 irq_domain_remove(gpio->domain);
487 gpio->domain = NULL;
488}
489
490static int dwapb_gpio_add_port(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700491 struct dwapb_port_property *pp,
Jamie Iles7779b3452014-02-25 17:01:01 -0600492 unsigned int offs)
493{
494 struct dwapb_gpio_port *port;
Jamie Iles7779b3452014-02-25 17:01:01 -0600495 void __iomem *dat, *set, *dirout;
496 int err;
497
Jamie Iles7779b3452014-02-25 17:01:01 -0600498 port = &gpio->ports[offs];
499 port->gpio = gpio;
Weike Chen1e960db2014-09-17 09:18:42 -0700500 port->idx = pp->idx;
501
502#ifdef CONFIG_PM_SLEEP
503 port->ctx = devm_kzalloc(gpio->dev, sizeof(*port->ctx), GFP_KERNEL);
504 if (!port->ctx)
505 return -ENOMEM;
506#endif
Jamie Iles7779b3452014-02-25 17:01:01 -0600507
Linus Walleij89f99fe2018-02-08 17:03:58 +0100508 dat = gpio->regs + GPIO_EXT_PORTA + (pp->idx * GPIO_EXT_PORT_STRIDE);
509 set = gpio->regs + GPIO_SWPORTA_DR + (pp->idx * GPIO_SWPORT_DR_STRIDE);
Jamie Iles7779b3452014-02-25 17:01:01 -0600510 dirout = gpio->regs + GPIO_SWPORTA_DDR +
Linus Walleij89f99fe2018-02-08 17:03:58 +0100511 (pp->idx * GPIO_SWPORT_DDR_STRIDE);
Jamie Iles7779b3452014-02-25 17:01:01 -0600512
Linus Walleij62c16232018-02-08 18:00:05 +0100513 /* This registers 32 GPIO lines per port */
Linus Walleij0f4630f2015-12-04 14:02:58 +0100514 err = bgpio_init(&port->gc, gpio->dev, 4, dat, set, NULL, dirout,
Linus Walleijd97a1b52017-10-20 12:26:51 +0200515 NULL, 0);
Jamie Iles7779b3452014-02-25 17:01:01 -0600516 if (err) {
Jiang Qiue8159182016-04-28 17:32:01 +0800517 dev_err(gpio->dev, "failed to init gpio chip for port%d\n",
518 port->idx);
Jamie Iles7779b3452014-02-25 17:01:01 -0600519 return err;
520 }
521
Weike Chen3d2613c2014-09-17 09:18:39 -0700522#ifdef CONFIG_OF_GPIO
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800523 port->gc.of_node = to_of_node(pp->fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700524#endif
Linus Walleij0f4630f2015-12-04 14:02:58 +0100525 port->gc.ngpio = pp->ngpio;
526 port->gc.base = pp->gpio_base;
Jamie Iles7779b3452014-02-25 17:01:01 -0600527
Weike Chen5d60d9e2014-09-17 09:18:41 -0700528 /* Only port A support debounce */
529 if (pp->idx == 0)
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300530 port->gc.set_config = dwapb_gpio_set_config;
Weike Chen5d60d9e2014-09-17 09:18:41 -0700531
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100532 if (pp->has_irq)
Weike Chen3d2613c2014-09-17 09:18:39 -0700533 dwapb_configure_irqs(gpio, port, pp);
Jamie Iles7779b3452014-02-25 17:01:01 -0600534
Linus Walleij0f4630f2015-12-04 14:02:58 +0100535 err = gpiochip_add_data(&port->gc, port);
Jamie Iles7779b3452014-02-25 17:01:01 -0600536 if (err)
Jiang Qiue8159182016-04-28 17:32:01 +0800537 dev_err(gpio->dev, "failed to register gpiochip for port%d\n",
538 port->idx);
Jamie Iles7779b3452014-02-25 17:01:01 -0600539 else
540 port->is_registered = true;
541
Jiang Qiue6cb3482016-04-28 17:32:03 +0800542 /* Add GPIO-signaled ACPI event support */
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100543 if (pp->has_irq)
Jiang Qiue6cb3482016-04-28 17:32:03 +0800544 acpi_gpiochip_request_interrupts(&port->gc);
545
Jamie Iles7779b3452014-02-25 17:01:01 -0600546 return err;
547}
548
549static void dwapb_gpio_unregister(struct dwapb_gpio *gpio)
550{
551 unsigned int m;
552
553 for (m = 0; m < gpio->nr_ports; ++m)
554 if (gpio->ports[m].is_registered)
Linus Walleij0f4630f2015-12-04 14:02:58 +0100555 gpiochip_remove(&gpio->ports[m].gc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600556}
557
Weike Chen3d2613c2014-09-17 09:18:39 -0700558static struct dwapb_platform_data *
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800559dwapb_gpio_get_pdata(struct device *dev)
Weike Chen3d2613c2014-09-17 09:18:39 -0700560{
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800561 struct fwnode_handle *fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700562 struct dwapb_platform_data *pdata;
563 struct dwapb_port_property *pp;
564 int nports;
Phil Edworthyda069d52018-05-23 09:52:44 +0100565 int i, j;
Weike Chen3d2613c2014-09-17 09:18:39 -0700566
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800567 nports = device_get_child_node_count(dev);
Weike Chen3d2613c2014-09-17 09:18:39 -0700568 if (nports == 0)
569 return ERR_PTR(-ENODEV);
570
Axel Linda9df932014-12-28 15:23:14 +0800571 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
Weike Chen3d2613c2014-09-17 09:18:39 -0700572 if (!pdata)
573 return ERR_PTR(-ENOMEM);
574
Axel Linda9df932014-12-28 15:23:14 +0800575 pdata->properties = devm_kcalloc(dev, nports, sizeof(*pp), GFP_KERNEL);
576 if (!pdata->properties)
Weike Chen3d2613c2014-09-17 09:18:39 -0700577 return ERR_PTR(-ENOMEM);
Weike Chen3d2613c2014-09-17 09:18:39 -0700578
579 pdata->nports = nports;
580
581 i = 0;
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800582 device_for_each_child_node(dev, fwnode) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100583 struct device_node *np = NULL;
584
Weike Chen3d2613c2014-09-17 09:18:39 -0700585 pp = &pdata->properties[i++];
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800586 pp->fwnode = fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700587
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800588 if (fwnode_property_read_u32(fwnode, "reg", &pp->idx) ||
Weike Chen3d2613c2014-09-17 09:18:39 -0700589 pp->idx >= DWAPB_MAX_PORTS) {
Jiang Qiue8159182016-04-28 17:32:01 +0800590 dev_err(dev,
591 "missing/invalid port index for port%d\n", i);
Wei Yongjunbfab7c82016-07-10 02:17:36 +0000592 fwnode_handle_put(fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700593 return ERR_PTR(-EINVAL);
594 }
595
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800596 if (fwnode_property_read_u32(fwnode, "snps,nr-gpios",
Weike Chen3d2613c2014-09-17 09:18:39 -0700597 &pp->ngpio)) {
Jiang Qiue8159182016-04-28 17:32:01 +0800598 dev_info(dev,
599 "failed to get number of gpios for port%d\n",
600 i);
Weike Chen3d2613c2014-09-17 09:18:39 -0700601 pp->ngpio = 32;
602 }
603
Phil Edworthyda069d52018-05-23 09:52:44 +0100604 pp->irq_shared = false;
605 pp->gpio_base = -1;
606
Weike Chen3d2613c2014-09-17 09:18:39 -0700607 /*
608 * Only port A can provide interrupts in all configurations of
609 * the IP.
610 */
Phil Edworthyda069d52018-05-23 09:52:44 +0100611 if (pp->idx != 0)
612 continue;
613
614 if (dev->of_node && fwnode_property_read_bool(fwnode,
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800615 "interrupt-controller")) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100616 np = to_of_node(fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700617 }
618
Phil Edworthyda069d52018-05-23 09:52:44 +0100619 for (j = 0; j < pp->ngpio; j++) {
620 pp->irq[j] = -ENXIO;
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100621
Phil Edworthyda069d52018-05-23 09:52:44 +0100622 if (np)
623 pp->irq[j] = of_irq_get(np, j);
624 else if (has_acpi_companion(dev))
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100625 pp->irq[j] = platform_get_irq(to_platform_device(dev), j);
Phil Edworthyda069d52018-05-23 09:52:44 +0100626
627 if (pp->irq[j] >= 0)
628 pp->has_irq = true;
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100629 }
Jiang Qiue6cb3482016-04-28 17:32:03 +0800630
Phil Edworthyda069d52018-05-23 09:52:44 +0100631 if (!pp->has_irq)
632 dev_warn(dev, "no irq for port%d\n", pp->idx);
Weike Chen3d2613c2014-09-17 09:18:39 -0700633 }
634
635 return pdata;
636}
637
Hoan Trana72b8c42017-02-21 11:32:43 -0800638static const struct of_device_id dwapb_of_match[] = {
639 { .compatible = "snps,dw-apb-gpio", .data = (void *)0},
640 { .compatible = "apm,xgene-gpio-v2", .data = (void *)GPIO_REG_OFFSET_V2},
641 { /* Sentinel */ }
642};
643MODULE_DEVICE_TABLE(of, dwapb_of_match);
644
645static const struct acpi_device_id dwapb_acpi_match[] = {
646 {"HISI0181", 0},
647 {"APMC0D07", 0},
648 {"APMC0D81", GPIO_REG_OFFSET_V2},
649 { }
650};
651MODULE_DEVICE_TABLE(acpi, dwapb_acpi_match);
652
Jamie Iles7779b3452014-02-25 17:01:01 -0600653static int dwapb_gpio_probe(struct platform_device *pdev)
654{
Weike Chen3d2613c2014-09-17 09:18:39 -0700655 unsigned int i;
Jamie Iles7779b3452014-02-25 17:01:01 -0600656 struct resource *res;
657 struct dwapb_gpio *gpio;
Jamie Iles7779b3452014-02-25 17:01:01 -0600658 int err;
Weike Chen3d2613c2014-09-17 09:18:39 -0700659 struct device *dev = &pdev->dev;
660 struct dwapb_platform_data *pdata = dev_get_platdata(dev);
Jamie Iles7779b3452014-02-25 17:01:01 -0600661
Axel Linda9df932014-12-28 15:23:14 +0800662 if (!pdata) {
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800663 pdata = dwapb_gpio_get_pdata(dev);
Weike Chen3d2613c2014-09-17 09:18:39 -0700664 if (IS_ERR(pdata))
665 return PTR_ERR(pdata);
666 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600667
Axel Linda9df932014-12-28 15:23:14 +0800668 if (!pdata->nports)
669 return -ENODEV;
Weike Chen3d2613c2014-09-17 09:18:39 -0700670
671 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800672 if (!gpio)
673 return -ENOMEM;
674
Weike Chen3d2613c2014-09-17 09:18:39 -0700675 gpio->dev = &pdev->dev;
676 gpio->nr_ports = pdata->nports;
677
Alan Tull07901a92017-10-11 11:34:44 -0500678 gpio->rst = devm_reset_control_get_optional_shared(dev, NULL);
679 if (IS_ERR(gpio->rst))
680 return PTR_ERR(gpio->rst);
681
682 reset_control_deassert(gpio->rst);
683
Weike Chen3d2613c2014-09-17 09:18:39 -0700684 gpio->ports = devm_kcalloc(&pdev->dev, gpio->nr_ports,
Jamie Iles7779b3452014-02-25 17:01:01 -0600685 sizeof(*gpio->ports), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800686 if (!gpio->ports)
687 return -ENOMEM;
Jamie Iles7779b3452014-02-25 17:01:01 -0600688
689 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
690 gpio->regs = devm_ioremap_resource(&pdev->dev, res);
Axel Linda9df932014-12-28 15:23:14 +0800691 if (IS_ERR(gpio->regs))
692 return PTR_ERR(gpio->regs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600693
Phil Edworthye6bf3772018-03-12 18:30:56 +0000694 /* Optional bus clock */
695 gpio->clk = devm_clk_get(&pdev->dev, "bus");
696 if (!IS_ERR(gpio->clk)) {
697 err = clk_prepare_enable(gpio->clk);
698 if (err) {
699 dev_info(&pdev->dev, "Cannot enable clock\n");
700 return err;
701 }
702 }
703
Hoan Trana72b8c42017-02-21 11:32:43 -0800704 gpio->flags = 0;
705 if (dev->of_node) {
Thierry Reding7114b7b2018-04-30 09:38:09 +0200706 gpio->flags = (uintptr_t)of_device_get_match_data(dev);
Hoan Trana72b8c42017-02-21 11:32:43 -0800707 } else if (has_acpi_companion(dev)) {
708 const struct acpi_device_id *acpi_id;
709
710 acpi_id = acpi_match_device(dwapb_acpi_match, dev);
711 if (acpi_id) {
712 if (acpi_id->driver_data)
713 gpio->flags = acpi_id->driver_data;
714 }
715 }
716
Weike Chen3d2613c2014-09-17 09:18:39 -0700717 for (i = 0; i < gpio->nr_ports; i++) {
718 err = dwapb_gpio_add_port(gpio, &pdata->properties[i], i);
Jamie Iles7779b3452014-02-25 17:01:01 -0600719 if (err)
720 goto out_unregister;
721 }
722 platform_set_drvdata(pdev, gpio);
723
Axel Linda9df932014-12-28 15:23:14 +0800724 return 0;
Jamie Iles7779b3452014-02-25 17:01:01 -0600725
726out_unregister:
727 dwapb_gpio_unregister(gpio);
728 dwapb_irq_teardown(gpio);
729
Jamie Iles7779b3452014-02-25 17:01:01 -0600730 return err;
731}
732
733static int dwapb_gpio_remove(struct platform_device *pdev)
734{
735 struct dwapb_gpio *gpio = platform_get_drvdata(pdev);
736
737 dwapb_gpio_unregister(gpio);
738 dwapb_irq_teardown(gpio);
Alan Tull07901a92017-10-11 11:34:44 -0500739 reset_control_assert(gpio->rst);
Phil Edworthye6bf3772018-03-12 18:30:56 +0000740 clk_disable_unprepare(gpio->clk);
Jamie Iles7779b3452014-02-25 17:01:01 -0600741
742 return 0;
743}
744
Weike Chen1e960db2014-09-17 09:18:42 -0700745#ifdef CONFIG_PM_SLEEP
746static int dwapb_gpio_suspend(struct device *dev)
747{
748 struct platform_device *pdev = to_platform_device(dev);
749 struct dwapb_gpio *gpio = platform_get_drvdata(pdev);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100750 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen1e960db2014-09-17 09:18:42 -0700751 unsigned long flags;
752 int i;
753
Linus Walleij0f4630f2015-12-04 14:02:58 +0100754 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700755 for (i = 0; i < gpio->nr_ports; i++) {
756 unsigned int offset;
757 unsigned int idx = gpio->ports[i].idx;
758 struct dwapb_context *ctx = gpio->ports[i].ctx;
759
Linus Walleij58a3b922014-09-24 13:30:24 +0200760 BUG_ON(!ctx);
Weike Chen1e960db2014-09-17 09:18:42 -0700761
Linus Walleij89f99fe2018-02-08 17:03:58 +0100762 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700763 ctx->dir = dwapb_read(gpio, offset);
764
Linus Walleij89f99fe2018-02-08 17:03:58 +0100765 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700766 ctx->data = dwapb_read(gpio, offset);
767
Linus Walleij89f99fe2018-02-08 17:03:58 +0100768 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700769 ctx->ext = dwapb_read(gpio, offset);
770
771 /* Only port A can provide interrupts */
772 if (idx == 0) {
773 ctx->int_mask = dwapb_read(gpio, GPIO_INTMASK);
774 ctx->int_en = dwapb_read(gpio, GPIO_INTEN);
775 ctx->int_pol = dwapb_read(gpio, GPIO_INT_POLARITY);
776 ctx->int_type = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
777 ctx->int_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
778
779 /* Mask out interrupts */
Hoan Tran6437c7b2017-09-08 15:41:15 -0700780 dwapb_write(gpio, GPIO_INTMASK,
781 0xffffffff & ~ctx->wake_en);
Weike Chen1e960db2014-09-17 09:18:42 -0700782 }
783 }
Linus Walleij0f4630f2015-12-04 14:02:58 +0100784 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700785
Phil Edworthye6bf3772018-03-12 18:30:56 +0000786 clk_disable_unprepare(gpio->clk);
787
Weike Chen1e960db2014-09-17 09:18:42 -0700788 return 0;
789}
790
791static int dwapb_gpio_resume(struct device *dev)
792{
793 struct platform_device *pdev = to_platform_device(dev);
794 struct dwapb_gpio *gpio = platform_get_drvdata(pdev);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100795 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen1e960db2014-09-17 09:18:42 -0700796 unsigned long flags;
797 int i;
798
Phil Edworthye6bf3772018-03-12 18:30:56 +0000799 if (!IS_ERR(gpio->clk))
800 clk_prepare_enable(gpio->clk);
801
Linus Walleij0f4630f2015-12-04 14:02:58 +0100802 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700803 for (i = 0; i < gpio->nr_ports; i++) {
804 unsigned int offset;
805 unsigned int idx = gpio->ports[i].idx;
806 struct dwapb_context *ctx = gpio->ports[i].ctx;
807
Linus Walleij58a3b922014-09-24 13:30:24 +0200808 BUG_ON(!ctx);
Weike Chen1e960db2014-09-17 09:18:42 -0700809
Linus Walleij89f99fe2018-02-08 17:03:58 +0100810 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700811 dwapb_write(gpio, offset, ctx->data);
812
Linus Walleij89f99fe2018-02-08 17:03:58 +0100813 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700814 dwapb_write(gpio, offset, ctx->dir);
815
Linus Walleij89f99fe2018-02-08 17:03:58 +0100816 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700817 dwapb_write(gpio, offset, ctx->ext);
818
819 /* Only port A can provide interrupts */
820 if (idx == 0) {
821 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, ctx->int_type);
822 dwapb_write(gpio, GPIO_INT_POLARITY, ctx->int_pol);
823 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, ctx->int_deb);
824 dwapb_write(gpio, GPIO_INTEN, ctx->int_en);
825 dwapb_write(gpio, GPIO_INTMASK, ctx->int_mask);
826
827 /* Clear out spurious interrupts */
828 dwapb_write(gpio, GPIO_PORTA_EOI, 0xffffffff);
829 }
830 }
Linus Walleij0f4630f2015-12-04 14:02:58 +0100831 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700832
833 return 0;
834}
835#endif
836
837static SIMPLE_DEV_PM_OPS(dwapb_gpio_pm_ops, dwapb_gpio_suspend,
838 dwapb_gpio_resume);
839
Jamie Iles7779b3452014-02-25 17:01:01 -0600840static struct platform_driver dwapb_gpio_driver = {
841 .driver = {
842 .name = "gpio-dwapb",
Weike Chen1e960db2014-09-17 09:18:42 -0700843 .pm = &dwapb_gpio_pm_ops,
Jamie Iles7779b3452014-02-25 17:01:01 -0600844 .of_match_table = of_match_ptr(dwapb_of_match),
Jiang Qiue6cb3482016-04-28 17:32:03 +0800845 .acpi_match_table = ACPI_PTR(dwapb_acpi_match),
Jamie Iles7779b3452014-02-25 17:01:01 -0600846 },
847 .probe = dwapb_gpio_probe,
848 .remove = dwapb_gpio_remove,
849};
850
851module_platform_driver(dwapb_gpio_driver);
852
853MODULE_LICENSE("GPL");
854MODULE_AUTHOR("Jamie Iles");
855MODULE_DESCRIPTION("Synopsys DesignWare APB GPIO driver");