blob: d3eda65fd6d37b08a46d837dba33c22cc260a0e5 [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;
Andy Shevchenko10ed3532018-07-30 15:38:33 +0300258 int ret;
Jamie Iles7779b3452014-02-25 17:01:01 -0600259
Andy Shevchenko10ed3532018-07-30 15:38:33 +0300260 ret = gpiochip_lock_as_irq(gc, irqd_to_hwirq(d));
261 if (ret) {
Jamie Iles7779b3452014-02-25 17:01:01 -0600262 dev_err(gpio->dev, "unable to lock HW IRQ %lu for IRQ\n",
263 irqd_to_hwirq(d));
Andy Shevchenko10ed3532018-07-30 15:38:33 +0300264 return ret;
Linus Walleij57ef0422014-03-14 18:16:20 +0100265 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600266 return 0;
267}
268
Linus Walleij57ef0422014-03-14 18:16:20 +0100269static void dwapb_irq_relres(struct irq_data *d)
Jamie Iles7779b3452014-02-25 17:01:01 -0600270{
271 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
272 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100273 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600274
Linus Walleij0f4630f2015-12-04 14:02:58 +0100275 gpiochip_unlock_as_irq(gc, irqd_to_hwirq(d));
Jamie Iles7779b3452014-02-25 17:01:01 -0600276}
277
278static int dwapb_irq_set_type(struct irq_data *d, u32 type)
279{
280 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
281 struct dwapb_gpio *gpio = igc->private;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100282 struct gpio_chip *gc = &gpio->ports[0].gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600283 int bit = d->hwirq;
284 unsigned long level, polarity, flags;
285
286 if (type & ~(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING |
287 IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW))
288 return -EINVAL;
289
Linus Walleij0f4630f2015-12-04 14:02:58 +0100290 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700291 level = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
292 polarity = dwapb_read(gpio, GPIO_INT_POLARITY);
Jamie Iles7779b3452014-02-25 17:01:01 -0600293
294 switch (type) {
295 case IRQ_TYPE_EDGE_BOTH:
296 level |= BIT(bit);
297 dwapb_toggle_trigger(gpio, bit);
298 break;
299 case IRQ_TYPE_EDGE_RISING:
300 level |= BIT(bit);
301 polarity |= BIT(bit);
302 break;
303 case IRQ_TYPE_EDGE_FALLING:
304 level |= BIT(bit);
305 polarity &= ~BIT(bit);
306 break;
307 case IRQ_TYPE_LEVEL_HIGH:
308 level &= ~BIT(bit);
309 polarity |= BIT(bit);
310 break;
311 case IRQ_TYPE_LEVEL_LOW:
312 level &= ~BIT(bit);
313 polarity &= ~BIT(bit);
314 break;
315 }
316
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200317 irq_setup_alt_chip(d, type);
318
Weike Chen67809b92014-09-17 09:18:40 -0700319 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, level);
Xiaoguang Chenedadced2017-06-02 07:27:15 +0800320 if (type != IRQ_TYPE_EDGE_BOTH)
321 dwapb_write(gpio, GPIO_INT_POLARITY, polarity);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100322 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600323
324 return 0;
325}
326
Hoan Tran6437c7b2017-09-08 15:41:15 -0700327#ifdef CONFIG_PM_SLEEP
328static int dwapb_irq_set_wake(struct irq_data *d, unsigned int enable)
329{
330 struct irq_chip_generic *igc = irq_data_get_irq_chip_data(d);
331 struct dwapb_gpio *gpio = igc->private;
332 struct dwapb_context *ctx = gpio->ports[0].ctx;
333
334 if (enable)
335 ctx->wake_en |= BIT(d->hwirq);
336 else
337 ctx->wake_en &= ~BIT(d->hwirq);
338
339 return 0;
340}
341#endif
342
Weike Chen5d60d9e2014-09-17 09:18:41 -0700343static int dwapb_gpio_set_debounce(struct gpio_chip *gc,
344 unsigned offset, unsigned debounce)
345{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100346 struct dwapb_gpio_port *port = gpiochip_get_data(gc);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700347 struct dwapb_gpio *gpio = port->gpio;
348 unsigned long flags, val_deb;
Linus Walleijd97a1b52017-10-20 12:26:51 +0200349 unsigned long mask = BIT(offset);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700350
Linus Walleij0f4630f2015-12-04 14:02:58 +0100351 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700352
353 val_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
354 if (debounce)
355 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb | mask);
356 else
357 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb & ~mask);
358
Linus Walleij0f4630f2015-12-04 14:02:58 +0100359 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700360
361 return 0;
362}
363
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300364static int dwapb_gpio_set_config(struct gpio_chip *gc, unsigned offset,
365 unsigned long config)
366{
367 u32 debounce;
368
369 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
370 return -ENOTSUPP;
371
372 debounce = pinconf_to_config_argument(config);
373 return dwapb_gpio_set_debounce(gc, offset, debounce);
374}
375
Weike Chen3d2613c2014-09-17 09:18:39 -0700376static irqreturn_t dwapb_irq_handler_mfd(int irq, void *dev_id)
377{
378 u32 worked;
379 struct dwapb_gpio *gpio = dev_id;
380
381 worked = dwapb_do_irq(gpio);
382
383 return worked ? IRQ_HANDLED : IRQ_NONE;
384}
385
Jamie Iles7779b3452014-02-25 17:01:01 -0600386static void dwapb_configure_irqs(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700387 struct dwapb_gpio_port *port,
388 struct dwapb_port_property *pp)
Jamie Iles7779b3452014-02-25 17:01:01 -0600389{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100390 struct gpio_chip *gc = &port->gc;
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800391 struct fwnode_handle *fwnode = pp->fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700392 struct irq_chip_generic *irq_gc = NULL;
Jamie Iles7779b3452014-02-25 17:01:01 -0600393 unsigned int hwirq, ngpio = gc->ngpio;
394 struct irq_chip_type *ct;
Weike Chen3d2613c2014-09-17 09:18:39 -0700395 int err, i;
Jamie Iles7779b3452014-02-25 17:01:01 -0600396
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800397 gpio->domain = irq_domain_create_linear(fwnode, ngpio,
398 &irq_generic_chip_ops, gpio);
Jamie Iles7779b3452014-02-25 17:01:01 -0600399 if (!gpio->domain)
400 return;
401
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200402 err = irq_alloc_domain_generic_chips(gpio->domain, ngpio, 2,
Jamie Iles7779b3452014-02-25 17:01:01 -0600403 "gpio-dwapb", handle_level_irq,
404 IRQ_NOREQUEST, 0,
405 IRQ_GC_INIT_NESTED_LOCK);
406 if (err) {
407 dev_info(gpio->dev, "irq_alloc_domain_generic_chips failed\n");
408 irq_domain_remove(gpio->domain);
409 gpio->domain = NULL;
410 return;
411 }
412
413 irq_gc = irq_get_domain_generic_chip(gpio->domain, 0);
414 if (!irq_gc) {
415 irq_domain_remove(gpio->domain);
416 gpio->domain = NULL;
417 return;
418 }
419
420 irq_gc->reg_base = gpio->regs;
421 irq_gc->private = gpio;
422
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200423 for (i = 0; i < 2; i++) {
424 ct = &irq_gc->chip_types[i];
425 ct->chip.irq_ack = irq_gc_ack_set_bit;
426 ct->chip.irq_mask = irq_gc_mask_set_bit;
427 ct->chip.irq_unmask = irq_gc_mask_clr_bit;
428 ct->chip.irq_set_type = dwapb_irq_set_type;
429 ct->chip.irq_enable = dwapb_irq_enable;
430 ct->chip.irq_disable = dwapb_irq_disable;
431 ct->chip.irq_request_resources = dwapb_irq_reqres;
432 ct->chip.irq_release_resources = dwapb_irq_relres;
Hoan Tran6437c7b2017-09-08 15:41:15 -0700433#ifdef CONFIG_PM_SLEEP
434 ct->chip.irq_set_wake = dwapb_irq_set_wake;
435#endif
Hoan Trana72b8c42017-02-21 11:32:43 -0800436 ct->regs.ack = gpio_reg_convert(gpio, GPIO_PORTA_EOI);
437 ct->regs.mask = gpio_reg_convert(gpio, GPIO_INTMASK);
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200438 ct->type = IRQ_TYPE_LEVEL_MASK;
439 }
440
441 irq_gc->chip_types[0].type = IRQ_TYPE_LEVEL_MASK;
442 irq_gc->chip_types[1].type = IRQ_TYPE_EDGE_BOTH;
443 irq_gc->chip_types[1].handler = handle_edge_irq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600444
Weike Chen3d2613c2014-09-17 09:18:39 -0700445 if (!pp->irq_shared) {
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100446 int i;
447
448 for (i = 0; i < pp->ngpio; i++) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100449 if (pp->irq[i] >= 0)
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100450 irq_set_chained_handler_and_data(pp->irq[i],
451 dwapb_irq_handler, gpio);
452 }
Weike Chen3d2613c2014-09-17 09:18:39 -0700453 } else {
454 /*
455 * Request a shared IRQ since where MFD would have devices
456 * using the same irq pin
457 */
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100458 err = devm_request_irq(gpio->dev, pp->irq[0],
Weike Chen3d2613c2014-09-17 09:18:39 -0700459 dwapb_irq_handler_mfd,
460 IRQF_SHARED, "gpio-dwapb-mfd", gpio);
461 if (err) {
462 dev_err(gpio->dev, "error requesting IRQ\n");
463 irq_domain_remove(gpio->domain);
464 gpio->domain = NULL;
465 return;
466 }
467 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600468
469 for (hwirq = 0 ; hwirq < ngpio ; hwirq++)
470 irq_create_mapping(gpio->domain, hwirq);
471
Linus Walleij0f4630f2015-12-04 14:02:58 +0100472 port->gc.to_irq = dwapb_gpio_to_irq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600473}
474
475static void dwapb_irq_teardown(struct dwapb_gpio *gpio)
476{
477 struct dwapb_gpio_port *port = &gpio->ports[0];
Linus Walleij0f4630f2015-12-04 14:02:58 +0100478 struct gpio_chip *gc = &port->gc;
Jamie Iles7779b3452014-02-25 17:01:01 -0600479 unsigned int ngpio = gc->ngpio;
480 irq_hw_number_t hwirq;
481
482 if (!gpio->domain)
483 return;
484
485 for (hwirq = 0 ; hwirq < ngpio ; hwirq++)
486 irq_dispose_mapping(irq_find_mapping(gpio->domain, hwirq));
487
488 irq_domain_remove(gpio->domain);
489 gpio->domain = NULL;
490}
491
492static int dwapb_gpio_add_port(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700493 struct dwapb_port_property *pp,
Jamie Iles7779b3452014-02-25 17:01:01 -0600494 unsigned int offs)
495{
496 struct dwapb_gpio_port *port;
Jamie Iles7779b3452014-02-25 17:01:01 -0600497 void __iomem *dat, *set, *dirout;
498 int err;
499
Jamie Iles7779b3452014-02-25 17:01:01 -0600500 port = &gpio->ports[offs];
501 port->gpio = gpio;
Weike Chen1e960db2014-09-17 09:18:42 -0700502 port->idx = pp->idx;
503
504#ifdef CONFIG_PM_SLEEP
505 port->ctx = devm_kzalloc(gpio->dev, sizeof(*port->ctx), GFP_KERNEL);
506 if (!port->ctx)
507 return -ENOMEM;
508#endif
Jamie Iles7779b3452014-02-25 17:01:01 -0600509
Linus Walleij89f99fe2018-02-08 17:03:58 +0100510 dat = gpio->regs + GPIO_EXT_PORTA + (pp->idx * GPIO_EXT_PORT_STRIDE);
511 set = gpio->regs + GPIO_SWPORTA_DR + (pp->idx * GPIO_SWPORT_DR_STRIDE);
Jamie Iles7779b3452014-02-25 17:01:01 -0600512 dirout = gpio->regs + GPIO_SWPORTA_DDR +
Linus Walleij89f99fe2018-02-08 17:03:58 +0100513 (pp->idx * GPIO_SWPORT_DDR_STRIDE);
Jamie Iles7779b3452014-02-25 17:01:01 -0600514
Linus Walleij62c16232018-02-08 18:00:05 +0100515 /* This registers 32 GPIO lines per port */
Linus Walleij0f4630f2015-12-04 14:02:58 +0100516 err = bgpio_init(&port->gc, gpio->dev, 4, dat, set, NULL, dirout,
Linus Walleijd97a1b52017-10-20 12:26:51 +0200517 NULL, 0);
Jamie Iles7779b3452014-02-25 17:01:01 -0600518 if (err) {
Jiang Qiue8159182016-04-28 17:32:01 +0800519 dev_err(gpio->dev, "failed to init gpio chip for port%d\n",
520 port->idx);
Jamie Iles7779b3452014-02-25 17:01:01 -0600521 return err;
522 }
523
Weike Chen3d2613c2014-09-17 09:18:39 -0700524#ifdef CONFIG_OF_GPIO
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800525 port->gc.of_node = to_of_node(pp->fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700526#endif
Linus Walleij0f4630f2015-12-04 14:02:58 +0100527 port->gc.ngpio = pp->ngpio;
528 port->gc.base = pp->gpio_base;
Jamie Iles7779b3452014-02-25 17:01:01 -0600529
Weike Chen5d60d9e2014-09-17 09:18:41 -0700530 /* Only port A support debounce */
531 if (pp->idx == 0)
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300532 port->gc.set_config = dwapb_gpio_set_config;
Weike Chen5d60d9e2014-09-17 09:18:41 -0700533
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100534 if (pp->has_irq)
Weike Chen3d2613c2014-09-17 09:18:39 -0700535 dwapb_configure_irqs(gpio, port, pp);
Jamie Iles7779b3452014-02-25 17:01:01 -0600536
Linus Walleij0f4630f2015-12-04 14:02:58 +0100537 err = gpiochip_add_data(&port->gc, port);
Jamie Iles7779b3452014-02-25 17:01:01 -0600538 if (err)
Jiang Qiue8159182016-04-28 17:32:01 +0800539 dev_err(gpio->dev, "failed to register gpiochip for port%d\n",
540 port->idx);
Jamie Iles7779b3452014-02-25 17:01:01 -0600541 else
542 port->is_registered = true;
543
Jiang Qiue6cb3482016-04-28 17:32:03 +0800544 /* Add GPIO-signaled ACPI event support */
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100545 if (pp->has_irq)
Jiang Qiue6cb3482016-04-28 17:32:03 +0800546 acpi_gpiochip_request_interrupts(&port->gc);
547
Jamie Iles7779b3452014-02-25 17:01:01 -0600548 return err;
549}
550
551static void dwapb_gpio_unregister(struct dwapb_gpio *gpio)
552{
553 unsigned int m;
554
555 for (m = 0; m < gpio->nr_ports; ++m)
556 if (gpio->ports[m].is_registered)
Linus Walleij0f4630f2015-12-04 14:02:58 +0100557 gpiochip_remove(&gpio->ports[m].gc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600558}
559
Weike Chen3d2613c2014-09-17 09:18:39 -0700560static struct dwapb_platform_data *
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800561dwapb_gpio_get_pdata(struct device *dev)
Weike Chen3d2613c2014-09-17 09:18:39 -0700562{
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800563 struct fwnode_handle *fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700564 struct dwapb_platform_data *pdata;
565 struct dwapb_port_property *pp;
566 int nports;
Phil Edworthyda069d52018-05-23 09:52:44 +0100567 int i, j;
Weike Chen3d2613c2014-09-17 09:18:39 -0700568
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800569 nports = device_get_child_node_count(dev);
Weike Chen3d2613c2014-09-17 09:18:39 -0700570 if (nports == 0)
571 return ERR_PTR(-ENODEV);
572
Axel Linda9df932014-12-28 15:23:14 +0800573 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
Weike Chen3d2613c2014-09-17 09:18:39 -0700574 if (!pdata)
575 return ERR_PTR(-ENOMEM);
576
Axel Linda9df932014-12-28 15:23:14 +0800577 pdata->properties = devm_kcalloc(dev, nports, sizeof(*pp), GFP_KERNEL);
578 if (!pdata->properties)
Weike Chen3d2613c2014-09-17 09:18:39 -0700579 return ERR_PTR(-ENOMEM);
Weike Chen3d2613c2014-09-17 09:18:39 -0700580
581 pdata->nports = nports;
582
583 i = 0;
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800584 device_for_each_child_node(dev, fwnode) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100585 struct device_node *np = NULL;
586
Weike Chen3d2613c2014-09-17 09:18:39 -0700587 pp = &pdata->properties[i++];
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800588 pp->fwnode = fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700589
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800590 if (fwnode_property_read_u32(fwnode, "reg", &pp->idx) ||
Weike Chen3d2613c2014-09-17 09:18:39 -0700591 pp->idx >= DWAPB_MAX_PORTS) {
Jiang Qiue8159182016-04-28 17:32:01 +0800592 dev_err(dev,
593 "missing/invalid port index for port%d\n", i);
Wei Yongjunbfab7c82016-07-10 02:17:36 +0000594 fwnode_handle_put(fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700595 return ERR_PTR(-EINVAL);
596 }
597
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800598 if (fwnode_property_read_u32(fwnode, "snps,nr-gpios",
Weike Chen3d2613c2014-09-17 09:18:39 -0700599 &pp->ngpio)) {
Jiang Qiue8159182016-04-28 17:32:01 +0800600 dev_info(dev,
601 "failed to get number of gpios for port%d\n",
602 i);
Weike Chen3d2613c2014-09-17 09:18:39 -0700603 pp->ngpio = 32;
604 }
605
Phil Edworthyda069d52018-05-23 09:52:44 +0100606 pp->irq_shared = false;
607 pp->gpio_base = -1;
608
Weike Chen3d2613c2014-09-17 09:18:39 -0700609 /*
610 * Only port A can provide interrupts in all configurations of
611 * the IP.
612 */
Phil Edworthyda069d52018-05-23 09:52:44 +0100613 if (pp->idx != 0)
614 continue;
615
616 if (dev->of_node && fwnode_property_read_bool(fwnode,
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800617 "interrupt-controller")) {
Phil Edworthyda069d52018-05-23 09:52:44 +0100618 np = to_of_node(fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700619 }
620
Phil Edworthyda069d52018-05-23 09:52:44 +0100621 for (j = 0; j < pp->ngpio; j++) {
622 pp->irq[j] = -ENXIO;
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100623
Phil Edworthyda069d52018-05-23 09:52:44 +0100624 if (np)
625 pp->irq[j] = of_irq_get(np, j);
626 else if (has_acpi_companion(dev))
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100627 pp->irq[j] = platform_get_irq(to_platform_device(dev), j);
Phil Edworthyda069d52018-05-23 09:52:44 +0100628
629 if (pp->irq[j] >= 0)
630 pp->has_irq = true;
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100631 }
Jiang Qiue6cb3482016-04-28 17:32:03 +0800632
Phil Edworthyda069d52018-05-23 09:52:44 +0100633 if (!pp->has_irq)
634 dev_warn(dev, "no irq for port%d\n", pp->idx);
Weike Chen3d2613c2014-09-17 09:18:39 -0700635 }
636
637 return pdata;
638}
639
Hoan Trana72b8c42017-02-21 11:32:43 -0800640static const struct of_device_id dwapb_of_match[] = {
641 { .compatible = "snps,dw-apb-gpio", .data = (void *)0},
642 { .compatible = "apm,xgene-gpio-v2", .data = (void *)GPIO_REG_OFFSET_V2},
643 { /* Sentinel */ }
644};
645MODULE_DEVICE_TABLE(of, dwapb_of_match);
646
647static const struct acpi_device_id dwapb_acpi_match[] = {
648 {"HISI0181", 0},
649 {"APMC0D07", 0},
650 {"APMC0D81", GPIO_REG_OFFSET_V2},
651 { }
652};
653MODULE_DEVICE_TABLE(acpi, dwapb_acpi_match);
654
Jamie Iles7779b3452014-02-25 17:01:01 -0600655static int dwapb_gpio_probe(struct platform_device *pdev)
656{
Weike Chen3d2613c2014-09-17 09:18:39 -0700657 unsigned int i;
Jamie Iles7779b3452014-02-25 17:01:01 -0600658 struct dwapb_gpio *gpio;
Jamie Iles7779b3452014-02-25 17:01:01 -0600659 int err;
Weike Chen3d2613c2014-09-17 09:18:39 -0700660 struct device *dev = &pdev->dev;
661 struct dwapb_platform_data *pdata = dev_get_platdata(dev);
Jamie Iles7779b3452014-02-25 17:01:01 -0600662
Axel Linda9df932014-12-28 15:23:14 +0800663 if (!pdata) {
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800664 pdata = dwapb_gpio_get_pdata(dev);
Weike Chen3d2613c2014-09-17 09:18:39 -0700665 if (IS_ERR(pdata))
666 return PTR_ERR(pdata);
667 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600668
Axel Linda9df932014-12-28 15:23:14 +0800669 if (!pdata->nports)
670 return -ENODEV;
Weike Chen3d2613c2014-09-17 09:18:39 -0700671
672 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800673 if (!gpio)
674 return -ENOMEM;
675
Weike Chen3d2613c2014-09-17 09:18:39 -0700676 gpio->dev = &pdev->dev;
677 gpio->nr_ports = pdata->nports;
678
Alan Tull07901a92017-10-11 11:34:44 -0500679 gpio->rst = devm_reset_control_get_optional_shared(dev, NULL);
680 if (IS_ERR(gpio->rst))
681 return PTR_ERR(gpio->rst);
682
683 reset_control_deassert(gpio->rst);
684
Weike Chen3d2613c2014-09-17 09:18:39 -0700685 gpio->ports = devm_kcalloc(&pdev->dev, gpio->nr_ports,
Jamie Iles7779b3452014-02-25 17:01:01 -0600686 sizeof(*gpio->ports), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800687 if (!gpio->ports)
688 return -ENOMEM;
Jamie Iles7779b3452014-02-25 17:01:01 -0600689
Enrico Weigelt, metux IT consult2a7194e2019-03-11 19:54:47 +0100690 gpio->regs = devm_platform_ioremap_resource(pdev, 0);
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);
Alexey Khoroshilova618cf42018-08-28 23:40:26 +0300729 clk_disable_unprepare(gpio->clk);
Jamie Iles7779b3452014-02-25 17:01:01 -0600730
Jamie Iles7779b3452014-02-25 17:01:01 -0600731 return err;
732}
733
734static int dwapb_gpio_remove(struct platform_device *pdev)
735{
736 struct dwapb_gpio *gpio = platform_get_drvdata(pdev);
737
738 dwapb_gpio_unregister(gpio);
739 dwapb_irq_teardown(gpio);
Alan Tull07901a92017-10-11 11:34:44 -0500740 reset_control_assert(gpio->rst);
Phil Edworthye6bf3772018-03-12 18:30:56 +0000741 clk_disable_unprepare(gpio->clk);
Jamie Iles7779b3452014-02-25 17:01:01 -0600742
743 return 0;
744}
745
Weike Chen1e960db2014-09-17 09:18:42 -0700746#ifdef CONFIG_PM_SLEEP
747static int dwapb_gpio_suspend(struct device *dev)
748{
Wolfram Sangdeb19ac2018-10-21 21:59:56 +0200749 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
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{
Wolfram Sangdeb19ac2018-10-21 21:59:56 +0200793 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100794 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen1e960db2014-09-17 09:18:42 -0700795 unsigned long flags;
796 int i;
797
Phil Edworthye6bf3772018-03-12 18:30:56 +0000798 if (!IS_ERR(gpio->clk))
799 clk_prepare_enable(gpio->clk);
800
Linus Walleij0f4630f2015-12-04 14:02:58 +0100801 spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700802 for (i = 0; i < gpio->nr_ports; i++) {
803 unsigned int offset;
804 unsigned int idx = gpio->ports[i].idx;
805 struct dwapb_context *ctx = gpio->ports[i].ctx;
806
Linus Walleij58a3b922014-09-24 13:30:24 +0200807 BUG_ON(!ctx);
Weike Chen1e960db2014-09-17 09:18:42 -0700808
Linus Walleij89f99fe2018-02-08 17:03:58 +0100809 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700810 dwapb_write(gpio, offset, ctx->data);
811
Linus Walleij89f99fe2018-02-08 17:03:58 +0100812 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700813 dwapb_write(gpio, offset, ctx->dir);
814
Linus Walleij89f99fe2018-02-08 17:03:58 +0100815 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700816 dwapb_write(gpio, offset, ctx->ext);
817
818 /* Only port A can provide interrupts */
819 if (idx == 0) {
820 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, ctx->int_type);
821 dwapb_write(gpio, GPIO_INT_POLARITY, ctx->int_pol);
822 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, ctx->int_deb);
823 dwapb_write(gpio, GPIO_INTEN, ctx->int_en);
824 dwapb_write(gpio, GPIO_INTMASK, ctx->int_mask);
825
826 /* Clear out spurious interrupts */
827 dwapb_write(gpio, GPIO_PORTA_EOI, 0xffffffff);
828 }
829 }
Linus Walleij0f4630f2015-12-04 14:02:58 +0100830 spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700831
832 return 0;
833}
834#endif
835
836static SIMPLE_DEV_PM_OPS(dwapb_gpio_pm_ops, dwapb_gpio_suspend,
837 dwapb_gpio_resume);
838
Jamie Iles7779b3452014-02-25 17:01:01 -0600839static struct platform_driver dwapb_gpio_driver = {
840 .driver = {
841 .name = "gpio-dwapb",
Weike Chen1e960db2014-09-17 09:18:42 -0700842 .pm = &dwapb_gpio_pm_ops,
Jamie Iles7779b3452014-02-25 17:01:01 -0600843 .of_match_table = of_match_ptr(dwapb_of_match),
Jiang Qiue6cb3482016-04-28 17:32:03 +0800844 .acpi_match_table = ACPI_PTR(dwapb_acpi_match),
Jamie Iles7779b3452014-02-25 17:01:01 -0600845 },
846 .probe = dwapb_gpio_probe,
847 .remove = dwapb_gpio_remove,
848};
849
850module_platform_driver(dwapb_gpio_driver);
851
852MODULE_LICENSE("GPL");
853MODULE_AUTHOR("Jamie Iles");
854MODULE_DESCRIPTION("Synopsys DesignWare APB GPIO driver");