blob: c22fcaa44a614c66ee5ae0105abb71148bf09650 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jamie Iles7779b3452014-02-25 17:01:01 -06002/*
3 * Copyright (c) 2011 Jamie Iles
4 *
Jamie Iles7779b3452014-02-25 17:01:01 -06005 * All enquiries to support@picochip.com
6 */
Jiang Qiue6cb3482016-04-28 17:32:03 +08007#include <linux/acpi.h>
Phil Edworthye6bf3772018-03-12 18:30:56 +00008#include <linux/clk.h>
Jamie Iles7779b3452014-02-25 17:01:01 -06009#include <linux/err.h>
Phil Edworthye6bf3772018-03-12 18:30:56 +000010#include <linux/gpio/driver.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060011#include <linux/init.h>
12#include <linux/interrupt.h>
13#include <linux/io.h>
14#include <linux/ioport.h>
15#include <linux/irq.h>
Andy Shevchenko043a0c92021-06-04 21:50:13 +030016#include <linux/mod_devicetable.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060017#include <linux/module.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060018#include <linux/platform_device.h>
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +080019#include <linux/property.h>
Alan Tull07901a92017-10-11 11:34:44 -050020#include <linux/reset.h>
Weike Chen3d2613c2014-09-17 09:18:39 -070021#include <linux/slab.h>
Andy Shevchenko043a0c92021-06-04 21:50:13 +030022#include <linux/spinlock.h>
Jamie Iles7779b3452014-02-25 17:01:01 -060023
Jiang Qiue6cb3482016-04-28 17:32:03 +080024#include "gpiolib.h"
Andy Shevchenko77cb9072019-07-30 13:43:36 +030025#include "gpiolib-acpi.h"
Jiang Qiue6cb3482016-04-28 17:32:03 +080026
Jamie Iles7779b3452014-02-25 17:01:01 -060027#define GPIO_SWPORTA_DR 0x00
28#define GPIO_SWPORTA_DDR 0x04
29#define GPIO_SWPORTB_DR 0x0c
30#define GPIO_SWPORTB_DDR 0x10
31#define GPIO_SWPORTC_DR 0x18
32#define GPIO_SWPORTC_DDR 0x1c
33#define GPIO_SWPORTD_DR 0x24
34#define GPIO_SWPORTD_DDR 0x28
35#define GPIO_INTEN 0x30
36#define GPIO_INTMASK 0x34
37#define GPIO_INTTYPE_LEVEL 0x38
38#define GPIO_INT_POLARITY 0x3c
39#define GPIO_INTSTATUS 0x40
Weike Chen5d60d9e2014-09-17 09:18:41 -070040#define GPIO_PORTA_DEBOUNCE 0x48
Jamie Iles7779b3452014-02-25 17:01:01 -060041#define GPIO_PORTA_EOI 0x4c
42#define GPIO_EXT_PORTA 0x50
43#define GPIO_EXT_PORTB 0x54
44#define GPIO_EXT_PORTC 0x58
45#define GPIO_EXT_PORTD 0x5c
46
Andy Shevchenkoc58220c2020-04-15 17:15:21 +030047#define DWAPB_DRIVER_NAME "gpio-dwapb"
Jamie Iles7779b3452014-02-25 17:01:01 -060048#define DWAPB_MAX_PORTS 4
Andy Shevchenko5111c2b2021-08-04 19:00:19 +030049#define DWAPB_MAX_GPIOS 32
Andy Shevchenkoc58220c2020-04-15 17:15:21 +030050
Linus Walleij89f99fe2018-02-08 17:03:58 +010051#define GPIO_EXT_PORT_STRIDE 0x04 /* register stride 32 bits */
52#define GPIO_SWPORT_DR_STRIDE 0x0c /* register stride 3*32 bits */
53#define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
Jamie Iles7779b3452014-02-25 17:01:01 -060054
Andy Shevchenkoe1610432021-11-30 18:49:56 +020055#define GPIO_REG_OFFSET_V1 0
Hoan Trana72b8c42017-02-21 11:32:43 -080056#define GPIO_REG_OFFSET_V2 1
Andy Shevchenkoe1610432021-11-30 18:49:56 +020057#define GPIO_REG_OFFSET_MASK BIT(0)
Hoan Trana72b8c42017-02-21 11:32:43 -080058
59#define GPIO_INTMASK_V2 0x44
60#define GPIO_INTTYPE_LEVEL_V2 0x34
61#define GPIO_INT_POLARITY_V2 0x38
62#define GPIO_INTSTATUS_V2 0x3c
63#define GPIO_PORTA_EOI_V2 0x40
64
Serge Semin5c544c92020-03-23 22:54:00 +030065#define DWAPB_NR_CLOCKS 2
66
Jamie Iles7779b3452014-02-25 17:01:01 -060067struct dwapb_gpio;
68
Andy Shevchenko5111c2b2021-08-04 19:00:19 +030069struct dwapb_port_property {
70 struct fwnode_handle *fwnode;
71 unsigned int idx;
72 unsigned int ngpio;
73 unsigned int gpio_base;
74 int irq[DWAPB_MAX_GPIOS];
75};
76
77struct dwapb_platform_data {
78 struct dwapb_port_property *properties;
79 unsigned int nports;
80};
81
Weike Chen1e960db2014-09-17 09:18:42 -070082#ifdef CONFIG_PM_SLEEP
83/* Store GPIO context across system-wide suspend/resume transitions */
84struct dwapb_context {
85 u32 data;
86 u32 dir;
87 u32 ext;
88 u32 int_en;
89 u32 int_mask;
90 u32 int_type;
91 u32 int_pol;
92 u32 int_deb;
Hoan Tran6437c7b2017-09-08 15:41:15 -070093 u32 wake_en;
Weike Chen1e960db2014-09-17 09:18:42 -070094};
95#endif
96
Serge Semin0ea68392020-07-30 18:28:02 +030097struct dwapb_gpio_port_irqchip {
Serge Semin0ea68392020-07-30 18:28:02 +030098 unsigned int nr_irqs;
99 unsigned int irq[DWAPB_MAX_GPIOS];
100};
101
Jamie Iles7779b3452014-02-25 17:01:01 -0600102struct dwapb_gpio_port {
Linus Walleij0f4630f2015-12-04 14:02:58 +0100103 struct gpio_chip gc;
Serge Semin0ea68392020-07-30 18:28:02 +0300104 struct dwapb_gpio_port_irqchip *pirq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600105 struct dwapb_gpio *gpio;
Weike Chen1e960db2014-09-17 09:18:42 -0700106#ifdef CONFIG_PM_SLEEP
107 struct dwapb_context *ctx;
108#endif
109 unsigned int idx;
Jamie Iles7779b3452014-02-25 17:01:01 -0600110};
Serge Semin0ea68392020-07-30 18:28:02 +0300111#define to_dwapb_gpio(_gc) \
112 (container_of(_gc, struct dwapb_gpio_port, gc)->gpio)
Jamie Iles7779b3452014-02-25 17:01:01 -0600113
114struct dwapb_gpio {
115 struct device *dev;
116 void __iomem *regs;
117 struct dwapb_gpio_port *ports;
118 unsigned int nr_ports;
Hoan Trana72b8c42017-02-21 11:32:43 -0800119 unsigned int flags;
Alan Tull07901a92017-10-11 11:34:44 -0500120 struct reset_control *rst;
Serge Semin5c544c92020-03-23 22:54:00 +0300121 struct clk_bulk_data clks[DWAPB_NR_CLOCKS];
Jamie Iles7779b3452014-02-25 17:01:01 -0600122};
123
Hoan Trana72b8c42017-02-21 11:32:43 -0800124static inline u32 gpio_reg_v2_convert(unsigned int offset)
125{
126 switch (offset) {
127 case GPIO_INTMASK:
128 return GPIO_INTMASK_V2;
129 case GPIO_INTTYPE_LEVEL:
130 return GPIO_INTTYPE_LEVEL_V2;
131 case GPIO_INT_POLARITY:
132 return GPIO_INT_POLARITY_V2;
133 case GPIO_INTSTATUS:
134 return GPIO_INTSTATUS_V2;
135 case GPIO_PORTA_EOI:
136 return GPIO_PORTA_EOI_V2;
137 }
138
139 return offset;
140}
141
142static inline u32 gpio_reg_convert(struct dwapb_gpio *gpio, unsigned int offset)
143{
Andy Shevchenkoe1610432021-11-30 18:49:56 +0200144 if ((gpio->flags & GPIO_REG_OFFSET_MASK) == GPIO_REG_OFFSET_V2)
Hoan Trana72b8c42017-02-21 11:32:43 -0800145 return gpio_reg_v2_convert(offset);
146
147 return offset;
148}
149
Weike Chen67809b92014-09-17 09:18:40 -0700150static inline u32 dwapb_read(struct dwapb_gpio *gpio, unsigned int offset)
151{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100152 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen67809b92014-09-17 09:18:40 -0700153 void __iomem *reg_base = gpio->regs;
154
Hoan Trana72b8c42017-02-21 11:32:43 -0800155 return gc->read_reg(reg_base + gpio_reg_convert(gpio, offset));
Weike Chen67809b92014-09-17 09:18:40 -0700156}
157
158static inline void dwapb_write(struct dwapb_gpio *gpio, unsigned int offset,
159 u32 val)
160{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100161 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen67809b92014-09-17 09:18:40 -0700162 void __iomem *reg_base = gpio->regs;
163
Hoan Trana72b8c42017-02-21 11:32:43 -0800164 gc->write_reg(reg_base + gpio_reg_convert(gpio, offset), val);
Weike Chen67809b92014-09-17 09:18:40 -0700165}
166
Linus Walleij62c16232018-02-08 18:00:05 +0100167static struct dwapb_gpio_port *dwapb_offs_to_port(struct dwapb_gpio *gpio, unsigned int offs)
168{
169 struct dwapb_gpio_port *port;
170 int i;
171
172 for (i = 0; i < gpio->nr_ports; i++) {
173 port = &gpio->ports[i];
Serge Seminf9f890b2020-07-30 18:28:01 +0300174 if (port->idx == offs / DWAPB_MAX_GPIOS)
Linus Walleij62c16232018-02-08 18:00:05 +0100175 return port;
176 }
177
178 return NULL;
179}
180
Jamie Iles7779b3452014-02-25 17:01:01 -0600181static void dwapb_toggle_trigger(struct dwapb_gpio *gpio, unsigned int offs)
182{
Linus Walleij62c16232018-02-08 18:00:05 +0100183 struct dwapb_gpio_port *port = dwapb_offs_to_port(gpio, offs);
184 struct gpio_chip *gc;
185 u32 pol;
186 int val;
Jamie Iles7779b3452014-02-25 17:01:01 -0600187
Linus Walleij62c16232018-02-08 18:00:05 +0100188 if (!port)
189 return;
190 gc = &port->gc;
191
192 pol = dwapb_read(gpio, GPIO_INT_POLARITY);
193 /* Just read the current value right out of the data register */
Serge Seminf9f890b2020-07-30 18:28:01 +0300194 val = gc->get(gc, offs % DWAPB_MAX_GPIOS);
Linus Walleij62c16232018-02-08 18:00:05 +0100195 if (val)
196 pol &= ~BIT(offs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600197 else
Linus Walleij62c16232018-02-08 18:00:05 +0100198 pol |= BIT(offs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600199
Linus Walleij62c16232018-02-08 18:00:05 +0100200 dwapb_write(gpio, GPIO_INT_POLARITY, pol);
Jamie Iles7779b3452014-02-25 17:01:01 -0600201}
202
Weike Chen3d2613c2014-09-17 09:18:39 -0700203static u32 dwapb_do_irq(struct dwapb_gpio *gpio)
Jamie Iles7779b3452014-02-25 17:01:01 -0600204{
Serge Semin0ea68392020-07-30 18:28:02 +0300205 struct gpio_chip *gc = &gpio->ports[0].gc;
Andy Shevchenko038aa1f2020-04-15 17:15:22 +0300206 unsigned long irq_status;
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300207 irq_hw_number_t hwirq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600208
Andy Shevchenko038aa1f2020-04-15 17:15:22 +0300209 irq_status = dwapb_read(gpio, GPIO_INTSTATUS);
Serge Seminf9f890b2020-07-30 18:28:01 +0300210 for_each_set_bit(hwirq, &irq_status, DWAPB_MAX_GPIOS) {
Serge Semin0ea68392020-07-30 18:28:02 +0300211 int gpio_irq = irq_find_mapping(gc->irq.domain, hwirq);
Andy Shevchenko038aa1f2020-04-15 17:15:22 +0300212 u32 irq_type = irq_get_trigger_type(gpio_irq);
Jamie Iles7779b3452014-02-25 17:01:01 -0600213
214 generic_handle_irq(gpio_irq);
Jamie Iles7779b3452014-02-25 17:01:01 -0600215
Andy Shevchenko038aa1f2020-04-15 17:15:22 +0300216 if ((irq_type & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
Jamie Iles7779b3452014-02-25 17:01:01 -0600217 dwapb_toggle_trigger(gpio, hwirq);
218 }
219
Andy Shevchenko038aa1f2020-04-15 17:15:22 +0300220 return irq_status;
Weike Chen3d2613c2014-09-17 09:18:39 -0700221}
222
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200223static void dwapb_irq_handler(struct irq_desc *desc)
Weike Chen3d2613c2014-09-17 09:18:39 -0700224{
Jiang Liu476f8b42015-06-04 12:13:15 +0800225 struct dwapb_gpio *gpio = irq_desc_get_handler_data(desc);
Weike Chen3d2613c2014-09-17 09:18:39 -0700226 struct irq_chip *chip = irq_desc_get_chip(desc);
227
Andy Shevchenko9b0aef32020-04-15 17:15:23 +0300228 chained_irq_enter(chip, desc);
Weike Chen3d2613c2014-09-17 09:18:39 -0700229 dwapb_do_irq(gpio);
Andy Shevchenko9b0aef32020-04-15 17:15:23 +0300230 chained_irq_exit(chip, desc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600231}
232
Serge Semin75c12362020-07-30 18:28:00 +0300233static irqreturn_t dwapb_irq_handler_mfd(int irq, void *dev_id)
234{
235 return IRQ_RETVAL(dwapb_do_irq(dev_id));
236}
237
Serge Semin0ea68392020-07-30 18:28:02 +0300238static void dwapb_irq_ack(struct irq_data *d)
239{
240 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
241 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
242 u32 val = BIT(irqd_to_hwirq(d));
243 unsigned long flags;
244
Schspa Shi3c938cc2022-04-19 09:28:10 +0800245 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Serge Semin0ea68392020-07-30 18:28:02 +0300246 dwapb_write(gpio, GPIO_PORTA_EOI, val);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800247 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Serge Semin0ea68392020-07-30 18:28:02 +0300248}
249
250static void dwapb_irq_mask(struct irq_data *d)
251{
252 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
253 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200254 irq_hw_number_t hwirq = irqd_to_hwirq(d);
Serge Semin0ea68392020-07-30 18:28:02 +0300255 unsigned long flags;
256 u32 val;
257
Schspa Shi3c938cc2022-04-19 09:28:10 +0800258 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200259 val = dwapb_read(gpio, GPIO_INTMASK) | BIT(hwirq);
Serge Semin0ea68392020-07-30 18:28:02 +0300260 dwapb_write(gpio, GPIO_INTMASK, val);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800261 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200262
263 gpiochip_disable_irq(gc, hwirq);
Serge Semin0ea68392020-07-30 18:28:02 +0300264}
265
266static void dwapb_irq_unmask(struct irq_data *d)
267{
268 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
269 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200270 irq_hw_number_t hwirq = irqd_to_hwirq(d);
Serge Semin0ea68392020-07-30 18:28:02 +0300271 unsigned long flags;
272 u32 val;
273
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200274 gpiochip_enable_irq(gc, hwirq);
275
Schspa Shi3c938cc2022-04-19 09:28:10 +0800276 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200277 val = dwapb_read(gpio, GPIO_INTMASK) & ~BIT(hwirq);
Serge Semin0ea68392020-07-30 18:28:02 +0300278 dwapb_write(gpio, GPIO_INTMASK, val);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800279 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Serge Semin0ea68392020-07-30 18:28:02 +0300280}
281
Jamie Iles7779b3452014-02-25 17:01:01 -0600282static void dwapb_irq_enable(struct irq_data *d)
283{
Serge Semin0ea68392020-07-30 18:28:02 +0300284 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
285 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600286 unsigned long flags;
287 u32 val;
288
Schspa Shi3c938cc2022-04-19 09:28:10 +0800289 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700290 val = dwapb_read(gpio, GPIO_INTEN);
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300291 val |= BIT(irqd_to_hwirq(d));
Weike Chen67809b92014-09-17 09:18:40 -0700292 dwapb_write(gpio, GPIO_INTEN, val);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800293 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600294}
295
296static void dwapb_irq_disable(struct irq_data *d)
297{
Serge Semin0ea68392020-07-30 18:28:02 +0300298 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
299 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Jamie Iles7779b3452014-02-25 17:01:01 -0600300 unsigned long flags;
301 u32 val;
302
Schspa Shi3c938cc2022-04-19 09:28:10 +0800303 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700304 val = dwapb_read(gpio, GPIO_INTEN);
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300305 val &= ~BIT(irqd_to_hwirq(d));
Weike Chen67809b92014-09-17 09:18:40 -0700306 dwapb_write(gpio, GPIO_INTEN, val);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800307 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600308}
309
Jamie Iles7779b3452014-02-25 17:01:01 -0600310static int dwapb_irq_set_type(struct irq_data *d, u32 type)
311{
Serge Semin0ea68392020-07-30 18:28:02 +0300312 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
313 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300314 irq_hw_number_t bit = irqd_to_hwirq(d);
Jamie Iles7779b3452014-02-25 17:01:01 -0600315 unsigned long level, polarity, flags;
316
Schspa Shi3c938cc2022-04-19 09:28:10 +0800317 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen67809b92014-09-17 09:18:40 -0700318 level = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
319 polarity = dwapb_read(gpio, GPIO_INT_POLARITY);
Jamie Iles7779b3452014-02-25 17:01:01 -0600320
321 switch (type) {
322 case IRQ_TYPE_EDGE_BOTH:
323 level |= BIT(bit);
324 dwapb_toggle_trigger(gpio, bit);
325 break;
326 case IRQ_TYPE_EDGE_RISING:
327 level |= BIT(bit);
328 polarity |= BIT(bit);
329 break;
330 case IRQ_TYPE_EDGE_FALLING:
331 level |= BIT(bit);
332 polarity &= ~BIT(bit);
333 break;
334 case IRQ_TYPE_LEVEL_HIGH:
335 level &= ~BIT(bit);
336 polarity |= BIT(bit);
337 break;
338 case IRQ_TYPE_LEVEL_LOW:
339 level &= ~BIT(bit);
340 polarity &= ~BIT(bit);
341 break;
342 }
343
Serge Semin0ea68392020-07-30 18:28:02 +0300344 if (type & IRQ_TYPE_LEVEL_MASK)
345 irq_set_handler_locked(d, handle_level_irq);
346 else if (type & IRQ_TYPE_EDGE_BOTH)
347 irq_set_handler_locked(d, handle_edge_irq);
Sebastian Andrzej Siewior6a2f4b72014-05-26 22:58:14 +0200348
Weike Chen67809b92014-09-17 09:18:40 -0700349 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, level);
Xiaoguang Chenedadced2017-06-02 07:27:15 +0800350 if (type != IRQ_TYPE_EDGE_BOTH)
351 dwapb_write(gpio, GPIO_INT_POLARITY, polarity);
Schspa Shi3c938cc2022-04-19 09:28:10 +0800352 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Jamie Iles7779b3452014-02-25 17:01:01 -0600353
354 return 0;
355}
356
Hoan Tran6437c7b2017-09-08 15:41:15 -0700357#ifdef CONFIG_PM_SLEEP
358static int dwapb_irq_set_wake(struct irq_data *d, unsigned int enable)
359{
Jia He3fe37202020-10-16 23:35:44 +0800360 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
361 struct dwapb_gpio *gpio = to_dwapb_gpio(gc);
Hoan Tran6437c7b2017-09-08 15:41:15 -0700362 struct dwapb_context *ctx = gpio->ports[0].ctx;
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300363 irq_hw_number_t bit = irqd_to_hwirq(d);
Hoan Tran6437c7b2017-09-08 15:41:15 -0700364
365 if (enable)
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300366 ctx->wake_en |= BIT(bit);
Hoan Tran6437c7b2017-09-08 15:41:15 -0700367 else
Andy Shevchenkoe092bc52020-04-15 17:15:26 +0300368 ctx->wake_en &= ~BIT(bit);
Hoan Tran6437c7b2017-09-08 15:41:15 -0700369
370 return 0;
371}
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200372#else
373#define dwapb_irq_set_wake NULL
Hoan Tran6437c7b2017-09-08 15:41:15 -0700374#endif
375
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200376static const struct irq_chip dwapb_irq_chip = {
377 .name = DWAPB_DRIVER_NAME,
378 .irq_ack = dwapb_irq_ack,
379 .irq_mask = dwapb_irq_mask,
380 .irq_unmask = dwapb_irq_unmask,
381 .irq_set_type = dwapb_irq_set_type,
382 .irq_enable = dwapb_irq_enable,
383 .irq_disable = dwapb_irq_disable,
384 .irq_set_wake = dwapb_irq_set_wake,
385 .flags = IRQCHIP_IMMUTABLE,
386 GPIOCHIP_IRQ_RESOURCE_HELPERS,
387};
388
Weike Chen5d60d9e2014-09-17 09:18:41 -0700389static int dwapb_gpio_set_debounce(struct gpio_chip *gc,
390 unsigned offset, unsigned debounce)
391{
Linus Walleij0f4630f2015-12-04 14:02:58 +0100392 struct dwapb_gpio_port *port = gpiochip_get_data(gc);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700393 struct dwapb_gpio *gpio = port->gpio;
394 unsigned long flags, val_deb;
Linus Walleijd97a1b52017-10-20 12:26:51 +0200395 unsigned long mask = BIT(offset);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700396
Schspa Shi3c938cc2022-04-19 09:28:10 +0800397 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700398
399 val_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
400 if (debounce)
Andy Shevchenko48ce8052020-04-15 17:15:29 +0300401 val_deb |= mask;
Weike Chen5d60d9e2014-09-17 09:18:41 -0700402 else
Andy Shevchenko48ce8052020-04-15 17:15:29 +0300403 val_deb &= ~mask;
404 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, val_deb);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700405
Schspa Shi3c938cc2022-04-19 09:28:10 +0800406 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen5d60d9e2014-09-17 09:18:41 -0700407
408 return 0;
409}
410
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300411static int dwapb_gpio_set_config(struct gpio_chip *gc, unsigned offset,
412 unsigned long config)
413{
414 u32 debounce;
415
416 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
417 return -ENOTSUPP;
418
419 debounce = pinconf_to_config_argument(config);
420 return dwapb_gpio_set_debounce(gc, offset, debounce);
421}
422
Serge Semin0ea68392020-07-30 18:28:02 +0300423static int dwapb_convert_irqs(struct dwapb_gpio_port_irqchip *pirq,
424 struct dwapb_port_property *pp)
425{
426 int i;
427
428 /* Group all available IRQs into an array of parental IRQs. */
429 for (i = 0; i < pp->ngpio; ++i) {
430 if (!pp->irq[i])
431 continue;
432
433 pirq->irq[pirq->nr_irqs++] = pp->irq[i];
434 }
435
436 return pirq->nr_irqs ? 0 : -ENOENT;
437}
438
Jamie Iles7779b3452014-02-25 17:01:01 -0600439static void dwapb_configure_irqs(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700440 struct dwapb_gpio_port *port,
441 struct dwapb_port_property *pp)
Jamie Iles7779b3452014-02-25 17:01:01 -0600442{
Serge Semin0ea68392020-07-30 18:28:02 +0300443 struct dwapb_gpio_port_irqchip *pirq;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100444 struct gpio_chip *gc = &port->gc;
Serge Semin0ea68392020-07-30 18:28:02 +0300445 struct gpio_irq_chip *girq;
446 int err;
Jamie Iles7779b3452014-02-25 17:01:01 -0600447
Serge Semin0ea68392020-07-30 18:28:02 +0300448 pirq = devm_kzalloc(gpio->dev, sizeof(*pirq), GFP_KERNEL);
449 if (!pirq)
450 return;
451
452 if (dwapb_convert_irqs(pirq, pp)) {
Andy Shevchenko551cb862020-05-19 16:12:33 +0300453 dev_warn(gpio->dev, "no IRQ for port%d\n", pp->idx);
Serge Semin0ea68392020-07-30 18:28:02 +0300454 goto err_kfree_pirq;
Andy Shevchenko551cb862020-05-19 16:12:33 +0300455 }
456
Serge Semin0ea68392020-07-30 18:28:02 +0300457 girq = &gc->irq;
458 girq->handler = handle_bad_irq;
459 girq->default_type = IRQ_TYPE_NONE;
Jamie Iles7779b3452014-02-25 17:01:01 -0600460
Serge Semin0ea68392020-07-30 18:28:02 +0300461 port->pirq = pirq;
Jamie Iles7779b3452014-02-25 17:01:01 -0600462
Andy Shevchenkoc1b291e2021-08-04 19:00:16 +0300463 /*
464 * Intel ACPI-based platforms mostly have the DesignWare APB GPIO
465 * IRQ lane shared between several devices. In that case the parental
466 * IRQ has to be handled in the shared way so to be properly delivered
467 * to all the connected devices.
468 */
469 if (has_acpi_companion(gpio->dev)) {
Serge Semin0ea68392020-07-30 18:28:02 +0300470 girq->num_parents = 0;
471 girq->parents = NULL;
472 girq->parent_handler = NULL;
473
Phil Edworthye6ca26a2018-04-26 17:19:47 +0100474 err = devm_request_irq(gpio->dev, pp->irq[0],
Weike Chen3d2613c2014-09-17 09:18:39 -0700475 dwapb_irq_handler_mfd,
Andy Shevchenkoc58220c2020-04-15 17:15:21 +0300476 IRQF_SHARED, DWAPB_DRIVER_NAME, gpio);
Weike Chen3d2613c2014-09-17 09:18:39 -0700477 if (err) {
478 dev_err(gpio->dev, "error requesting IRQ\n");
Serge Semin0ea68392020-07-30 18:28:02 +0300479 goto err_kfree_pirq;
Weike Chen3d2613c2014-09-17 09:18:39 -0700480 }
Andy Shevchenkoc1b291e2021-08-04 19:00:16 +0300481 } else {
482 girq->num_parents = pirq->nr_irqs;
483 girq->parents = pirq->irq;
484 girq->parent_handler_data = gpio;
485 girq->parent_handler = dwapb_irq_handler;
Weike Chen3d2613c2014-09-17 09:18:39 -0700486 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600487
Geert Uytterhoevencfc2b002022-05-20 12:23:18 +0200488 gpio_irq_chip_set_chip(girq, &dwapb_irq_chip);
Jamie Iles7779b3452014-02-25 17:01:01 -0600489
Serge Semin0ea68392020-07-30 18:28:02 +0300490 return;
Jamie Iles7779b3452014-02-25 17:01:01 -0600491
Serge Semin0ea68392020-07-30 18:28:02 +0300492err_kfree_pirq:
493 devm_kfree(gpio->dev, pirq);
Jamie Iles7779b3452014-02-25 17:01:01 -0600494}
495
496static int dwapb_gpio_add_port(struct dwapb_gpio *gpio,
Weike Chen3d2613c2014-09-17 09:18:39 -0700497 struct dwapb_port_property *pp,
Jamie Iles7779b3452014-02-25 17:01:01 -0600498 unsigned int offs)
499{
500 struct dwapb_gpio_port *port;
Jamie Iles7779b3452014-02-25 17:01:01 -0600501 void __iomem *dat, *set, *dirout;
502 int err;
503
Jamie Iles7779b3452014-02-25 17:01:01 -0600504 port = &gpio->ports[offs];
505 port->gpio = gpio;
Weike Chen1e960db2014-09-17 09:18:42 -0700506 port->idx = pp->idx;
507
508#ifdef CONFIG_PM_SLEEP
509 port->ctx = devm_kzalloc(gpio->dev, sizeof(*port->ctx), GFP_KERNEL);
510 if (!port->ctx)
511 return -ENOMEM;
512#endif
Jamie Iles7779b3452014-02-25 17:01:01 -0600513
Andy Shevchenko1475b622020-04-22 14:06:54 +0300514 dat = gpio->regs + GPIO_EXT_PORTA + pp->idx * GPIO_EXT_PORT_STRIDE;
515 set = gpio->regs + GPIO_SWPORTA_DR + pp->idx * GPIO_SWPORT_DR_STRIDE;
516 dirout = gpio->regs + GPIO_SWPORTA_DDR + pp->idx * GPIO_SWPORT_DDR_STRIDE;
Jamie Iles7779b3452014-02-25 17:01:01 -0600517
Linus Walleij62c16232018-02-08 18:00:05 +0100518 /* This registers 32 GPIO lines per port */
Linus Walleij0f4630f2015-12-04 14:02:58 +0100519 err = bgpio_init(&port->gc, gpio->dev, 4, dat, set, NULL, dirout,
Linus Walleijd97a1b52017-10-20 12:26:51 +0200520 NULL, 0);
Jamie Iles7779b3452014-02-25 17:01:01 -0600521 if (err) {
Jiang Qiue8159182016-04-28 17:32:01 +0800522 dev_err(gpio->dev, "failed to init gpio chip for port%d\n",
523 port->idx);
Jamie Iles7779b3452014-02-25 17:01:01 -0600524 return err;
525 }
526
Andy Shevchenko80f60eb2021-12-23 12:38:09 +0200527 port->gc.fwnode = pp->fwnode;
Linus Walleij0f4630f2015-12-04 14:02:58 +0100528 port->gc.ngpio = pp->ngpio;
529 port->gc.base = pp->gpio_base;
Jamie Iles7779b3452014-02-25 17:01:01 -0600530
Weike Chen5d60d9e2014-09-17 09:18:41 -0700531 /* Only port A support debounce */
532 if (pp->idx == 0)
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300533 port->gc.set_config = dwapb_gpio_set_config;
Weike Chen5d60d9e2014-09-17 09:18:41 -0700534
Andy Shevchenko551cb862020-05-19 16:12:33 +0300535 /* Only port A can provide interrupts in all configurations of the IP */
536 if (pp->idx == 0)
Weike Chen3d2613c2014-09-17 09:18:39 -0700537 dwapb_configure_irqs(gpio, port, pp);
Jamie Iles7779b3452014-02-25 17:01:01 -0600538
Serge Seminfeeaefd2020-07-30 18:28:07 +0300539 err = devm_gpiochip_add_data(gpio->dev, &port->gc, port);
Andy Shevchenko494a94e32020-05-19 16:12:30 +0300540 if (err) {
Jiang Qiue8159182016-04-28 17:32:01 +0800541 dev_err(gpio->dev, "failed to register gpiochip for port%d\n",
542 port->idx);
Andy Shevchenko494a94e32020-05-19 16:12:30 +0300543 return err;
544 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600545
Andy Shevchenko494a94e32020-05-19 16:12:30 +0300546 return 0;
Jamie Iles7779b3452014-02-25 17:01:01 -0600547}
548
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300549static void dwapb_get_irq(struct device *dev, struct fwnode_handle *fwnode,
550 struct dwapb_port_property *pp)
551{
Andy Shevchenkobd56b052021-06-01 19:21:28 +0300552 int irq, j;
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300553
554 for (j = 0; j < pp->ngpio; j++) {
Andy Shevchenkobd56b052021-06-01 19:21:28 +0300555 if (has_acpi_companion(dev))
Andy Shevchenkoaa909392020-05-19 16:12:32 +0300556 irq = platform_get_irq_optional(to_platform_device(dev), j);
Andy Shevchenkobd56b052021-06-01 19:21:28 +0300557 else
558 irq = fwnode_irq_get(fwnode, j);
Andy Shevchenkoaa909392020-05-19 16:12:32 +0300559 if (irq > 0)
560 pp->irq[j] = irq;
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300561 }
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300562}
563
564static struct dwapb_platform_data *dwapb_gpio_get_pdata(struct device *dev)
Weike Chen3d2613c2014-09-17 09:18:39 -0700565{
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800566 struct fwnode_handle *fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700567 struct dwapb_platform_data *pdata;
568 struct dwapb_port_property *pp;
569 int nports;
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300570 int i;
Weike Chen3d2613c2014-09-17 09:18:39 -0700571
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800572 nports = device_get_child_node_count(dev);
Weike Chen3d2613c2014-09-17 09:18:39 -0700573 if (nports == 0)
574 return ERR_PTR(-ENODEV);
575
Axel Linda9df932014-12-28 15:23:14 +0800576 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
Weike Chen3d2613c2014-09-17 09:18:39 -0700577 if (!pdata)
578 return ERR_PTR(-ENOMEM);
579
Axel Linda9df932014-12-28 15:23:14 +0800580 pdata->properties = devm_kcalloc(dev, nports, sizeof(*pp), GFP_KERNEL);
581 if (!pdata->properties)
Weike Chen3d2613c2014-09-17 09:18:39 -0700582 return ERR_PTR(-ENOMEM);
Weike Chen3d2613c2014-09-17 09:18:39 -0700583
584 pdata->nports = nports;
585
586 i = 0;
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800587 device_for_each_child_node(dev, fwnode) {
Weike Chen3d2613c2014-09-17 09:18:39 -0700588 pp = &pdata->properties[i++];
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800589 pp->fwnode = fwnode;
Weike Chen3d2613c2014-09-17 09:18:39 -0700590
Jiang Qiu4ba8cfa2016-04-28 17:32:02 +0800591 if (fwnode_property_read_u32(fwnode, "reg", &pp->idx) ||
Weike Chen3d2613c2014-09-17 09:18:39 -0700592 pp->idx >= DWAPB_MAX_PORTS) {
Jiang Qiue8159182016-04-28 17:32:01 +0800593 dev_err(dev,
594 "missing/invalid port index for port%d\n", i);
Wei Yongjunbfab7c82016-07-10 02:17:36 +0000595 fwnode_handle_put(fwnode);
Weike Chen3d2613c2014-09-17 09:18:39 -0700596 return ERR_PTR(-EINVAL);
597 }
598
Serge Semin75694862020-07-30 18:27:59 +0300599 if (fwnode_property_read_u32(fwnode, "ngpios", &pp->ngpio) &&
600 fwnode_property_read_u32(fwnode, "snps,nr-gpios", &pp->ngpio)) {
Jiang Qiue8159182016-04-28 17:32:01 +0800601 dev_info(dev,
602 "failed to get number of gpios for port%d\n",
603 i);
Serge Seminf9f890b2020-07-30 18:28:01 +0300604 pp->ngpio = DWAPB_MAX_GPIOS;
Weike Chen3d2613c2014-09-17 09:18:39 -0700605 }
606
Phil Edworthyda069d52018-05-23 09:52:44 +0100607 pp->gpio_base = -1;
608
Andy Shevchenkof973be82021-08-04 19:00:17 +0300609 /* For internal use only, new platforms mustn't exercise this */
610 if (is_software_node(fwnode))
611 fwnode_property_read_u32(fwnode, "gpio-base", &pp->gpio_base);
612
Weike Chen3d2613c2014-09-17 09:18:39 -0700613 /*
614 * Only port A can provide interrupts in all configurations of
615 * the IP.
616 */
Andy Shevchenko4c2b54f2020-04-15 17:15:32 +0300617 if (pp->idx == 0)
618 dwapb_get_irq(dev, fwnode, pp);
Weike Chen3d2613c2014-09-17 09:18:39 -0700619 }
620
621 return pdata;
622}
623
Serge Semin4731d802020-07-30 18:28:05 +0300624static void dwapb_assert_reset(void *data)
625{
626 struct dwapb_gpio *gpio = data;
627
628 reset_control_assert(gpio->rst);
629}
630
631static int dwapb_get_reset(struct dwapb_gpio *gpio)
632{
633 int err;
634
635 gpio->rst = devm_reset_control_get_optional_shared(gpio->dev, NULL);
Damien Le Moal7d3615a2020-11-30 19:57:49 +0900636 if (IS_ERR(gpio->rst))
637 return dev_err_probe(gpio->dev, PTR_ERR(gpio->rst),
638 "Cannot get reset descriptor\n");
Serge Semin4731d802020-07-30 18:28:05 +0300639
640 err = reset_control_deassert(gpio->rst);
641 if (err) {
642 dev_err(gpio->dev, "Cannot deassert reset lane\n");
643 return err;
644 }
645
646 return devm_add_action_or_reset(gpio->dev, dwapb_assert_reset, gpio);
647}
648
Serge Semindaa3f582020-07-30 18:28:06 +0300649static void dwapb_disable_clks(void *data)
650{
651 struct dwapb_gpio *gpio = data;
652
653 clk_bulk_disable_unprepare(DWAPB_NR_CLOCKS, gpio->clks);
654}
655
656static int dwapb_get_clks(struct dwapb_gpio *gpio)
657{
658 int err;
659
660 /* Optional bus and debounce clocks */
661 gpio->clks[0].id = "bus";
662 gpio->clks[1].id = "db";
663 err = devm_clk_bulk_get_optional(gpio->dev, DWAPB_NR_CLOCKS,
664 gpio->clks);
Serge Semin77006f62022-06-10 13:45:00 +0300665 if (err)
666 return dev_err_probe(gpio->dev, err,
667 "Cannot get APB/Debounce clocks\n");
Serge Semindaa3f582020-07-30 18:28:06 +0300668
669 err = clk_bulk_prepare_enable(DWAPB_NR_CLOCKS, gpio->clks);
670 if (err) {
671 dev_err(gpio->dev, "Cannot enable APB/Debounce clocks\n");
672 return err;
673 }
674
675 return devm_add_action_or_reset(gpio->dev, dwapb_disable_clks, gpio);
676}
677
Hoan Trana72b8c42017-02-21 11:32:43 -0800678static const struct of_device_id dwapb_of_match[] = {
Andy Shevchenkoe1610432021-11-30 18:49:56 +0200679 { .compatible = "snps,dw-apb-gpio", .data = (void *)GPIO_REG_OFFSET_V1},
Hoan Trana72b8c42017-02-21 11:32:43 -0800680 { .compatible = "apm,xgene-gpio-v2", .data = (void *)GPIO_REG_OFFSET_V2},
681 { /* Sentinel */ }
682};
683MODULE_DEVICE_TABLE(of, dwapb_of_match);
684
685static const struct acpi_device_id dwapb_acpi_match[] = {
Andy Shevchenkoe1610432021-11-30 18:49:56 +0200686 {"HISI0181", GPIO_REG_OFFSET_V1},
687 {"APMC0D07", GPIO_REG_OFFSET_V1},
Hoan Trana72b8c42017-02-21 11:32:43 -0800688 {"APMC0D81", GPIO_REG_OFFSET_V2},
689 { }
690};
691MODULE_DEVICE_TABLE(acpi, dwapb_acpi_match);
692
Jamie Iles7779b3452014-02-25 17:01:01 -0600693static int dwapb_gpio_probe(struct platform_device *pdev)
694{
Weike Chen3d2613c2014-09-17 09:18:39 -0700695 unsigned int i;
Jamie Iles7779b3452014-02-25 17:01:01 -0600696 struct dwapb_gpio *gpio;
Jamie Iles7779b3452014-02-25 17:01:01 -0600697 int err;
Andy Shevchenko5111c2b2021-08-04 19:00:19 +0300698 struct dwapb_platform_data *pdata;
Weike Chen3d2613c2014-09-17 09:18:39 -0700699 struct device *dev = &pdev->dev;
Jamie Iles7779b3452014-02-25 17:01:01 -0600700
Andy Shevchenko5111c2b2021-08-04 19:00:19 +0300701 pdata = dwapb_gpio_get_pdata(dev);
702 if (IS_ERR(pdata))
703 return PTR_ERR(pdata);
Weike Chen3d2613c2014-09-17 09:18:39 -0700704
705 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800706 if (!gpio)
707 return -ENOMEM;
708
Weike Chen3d2613c2014-09-17 09:18:39 -0700709 gpio->dev = &pdev->dev;
710 gpio->nr_ports = pdata->nports;
711
Serge Semin4731d802020-07-30 18:28:05 +0300712 err = dwapb_get_reset(gpio);
713 if (err)
714 return err;
Alan Tull07901a92017-10-11 11:34:44 -0500715
Weike Chen3d2613c2014-09-17 09:18:39 -0700716 gpio->ports = devm_kcalloc(&pdev->dev, gpio->nr_ports,
Jamie Iles7779b3452014-02-25 17:01:01 -0600717 sizeof(*gpio->ports), GFP_KERNEL);
Axel Linda9df932014-12-28 15:23:14 +0800718 if (!gpio->ports)
719 return -ENOMEM;
Jamie Iles7779b3452014-02-25 17:01:01 -0600720
Enrico Weigelt, metux IT consult2a7194e2019-03-11 19:54:47 +0100721 gpio->regs = devm_platform_ioremap_resource(pdev, 0);
Axel Linda9df932014-12-28 15:23:14 +0800722 if (IS_ERR(gpio->regs))
723 return PTR_ERR(gpio->regs);
Jamie Iles7779b3452014-02-25 17:01:01 -0600724
Serge Semindaa3f582020-07-30 18:28:06 +0300725 err = dwapb_get_clks(gpio);
726 if (err)
Serge Semin5c544c92020-03-23 22:54:00 +0300727 return err;
Phil Edworthye6bf3772018-03-12 18:30:56 +0000728
Andy Shevchenko9826bbe2020-04-15 17:15:27 +0300729 gpio->flags = (uintptr_t)device_get_match_data(dev);
Hoan Trana72b8c42017-02-21 11:32:43 -0800730
Weike Chen3d2613c2014-09-17 09:18:39 -0700731 for (i = 0; i < gpio->nr_ports; i++) {
732 err = dwapb_gpio_add_port(gpio, &pdata->properties[i], i);
Jamie Iles7779b3452014-02-25 17:01:01 -0600733 if (err)
Serge Seminfeeaefd2020-07-30 18:28:07 +0300734 return err;
Jamie Iles7779b3452014-02-25 17:01:01 -0600735 }
Jamie Iles7779b3452014-02-25 17:01:01 -0600736
Luo Jiaxing60593df2020-11-27 16:50:02 +0800737 platform_set_drvdata(pdev, gpio);
738
Jamie Iles7779b3452014-02-25 17:01:01 -0600739 return 0;
740}
741
Weike Chen1e960db2014-09-17 09:18:42 -0700742#ifdef CONFIG_PM_SLEEP
743static int dwapb_gpio_suspend(struct device *dev)
744{
Wolfram Sangdeb19ac2018-10-21 21:59:56 +0200745 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100746 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen1e960db2014-09-17 09:18:42 -0700747 unsigned long flags;
748 int i;
749
Schspa Shi3c938cc2022-04-19 09:28:10 +0800750 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700751 for (i = 0; i < gpio->nr_ports; i++) {
752 unsigned int offset;
753 unsigned int idx = gpio->ports[i].idx;
754 struct dwapb_context *ctx = gpio->ports[i].ctx;
755
Linus Walleij89f99fe2018-02-08 17:03:58 +0100756 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700757 ctx->dir = dwapb_read(gpio, offset);
758
Linus Walleij89f99fe2018-02-08 17:03:58 +0100759 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700760 ctx->data = dwapb_read(gpio, offset);
761
Linus Walleij89f99fe2018-02-08 17:03:58 +0100762 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700763 ctx->ext = dwapb_read(gpio, offset);
764
765 /* Only port A can provide interrupts */
766 if (idx == 0) {
767 ctx->int_mask = dwapb_read(gpio, GPIO_INTMASK);
768 ctx->int_en = dwapb_read(gpio, GPIO_INTEN);
769 ctx->int_pol = dwapb_read(gpio, GPIO_INT_POLARITY);
770 ctx->int_type = dwapb_read(gpio, GPIO_INTTYPE_LEVEL);
771 ctx->int_deb = dwapb_read(gpio, GPIO_PORTA_DEBOUNCE);
772
773 /* Mask out interrupts */
Andy Shevchenko1afbc802020-04-22 14:06:53 +0300774 dwapb_write(gpio, GPIO_INTMASK, ~ctx->wake_en);
Weike Chen1e960db2014-09-17 09:18:42 -0700775 }
776 }
Schspa Shi3c938cc2022-04-19 09:28:10 +0800777 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700778
Serge Semin5c544c92020-03-23 22:54:00 +0300779 clk_bulk_disable_unprepare(DWAPB_NR_CLOCKS, gpio->clks);
Phil Edworthye6bf3772018-03-12 18:30:56 +0000780
Weike Chen1e960db2014-09-17 09:18:42 -0700781 return 0;
782}
783
784static int dwapb_gpio_resume(struct device *dev)
785{
Wolfram Sangdeb19ac2018-10-21 21:59:56 +0200786 struct dwapb_gpio *gpio = dev_get_drvdata(dev);
Linus Walleij0f4630f2015-12-04 14:02:58 +0100787 struct gpio_chip *gc = &gpio->ports[0].gc;
Weike Chen1e960db2014-09-17 09:18:42 -0700788 unsigned long flags;
Serge Semin5c544c92020-03-23 22:54:00 +0300789 int i, err;
Weike Chen1e960db2014-09-17 09:18:42 -0700790
Serge Semin5c544c92020-03-23 22:54:00 +0300791 err = clk_bulk_prepare_enable(DWAPB_NR_CLOCKS, gpio->clks);
792 if (err) {
793 dev_err(gpio->dev, "Cannot reenable APB/Debounce clocks\n");
794 return err;
795 }
Phil Edworthye6bf3772018-03-12 18:30:56 +0000796
Schspa Shi3c938cc2022-04-19 09:28:10 +0800797 raw_spin_lock_irqsave(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700798 for (i = 0; i < gpio->nr_ports; i++) {
799 unsigned int offset;
800 unsigned int idx = gpio->ports[i].idx;
801 struct dwapb_context *ctx = gpio->ports[i].ctx;
802
Linus Walleij89f99fe2018-02-08 17:03:58 +0100803 offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700804 dwapb_write(gpio, offset, ctx->data);
805
Linus Walleij89f99fe2018-02-08 17:03:58 +0100806 offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700807 dwapb_write(gpio, offset, ctx->dir);
808
Linus Walleij89f99fe2018-02-08 17:03:58 +0100809 offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
Weike Chen1e960db2014-09-17 09:18:42 -0700810 dwapb_write(gpio, offset, ctx->ext);
811
812 /* Only port A can provide interrupts */
813 if (idx == 0) {
814 dwapb_write(gpio, GPIO_INTTYPE_LEVEL, ctx->int_type);
815 dwapb_write(gpio, GPIO_INT_POLARITY, ctx->int_pol);
816 dwapb_write(gpio, GPIO_PORTA_DEBOUNCE, ctx->int_deb);
817 dwapb_write(gpio, GPIO_INTEN, ctx->int_en);
818 dwapb_write(gpio, GPIO_INTMASK, ctx->int_mask);
819
820 /* Clear out spurious interrupts */
821 dwapb_write(gpio, GPIO_PORTA_EOI, 0xffffffff);
822 }
823 }
Schspa Shi3c938cc2022-04-19 09:28:10 +0800824 raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags);
Weike Chen1e960db2014-09-17 09:18:42 -0700825
826 return 0;
827}
828#endif
829
830static SIMPLE_DEV_PM_OPS(dwapb_gpio_pm_ops, dwapb_gpio_suspend,
831 dwapb_gpio_resume);
832
Jamie Iles7779b3452014-02-25 17:01:01 -0600833static struct platform_driver dwapb_gpio_driver = {
834 .driver = {
Andy Shevchenkoc58220c2020-04-15 17:15:21 +0300835 .name = DWAPB_DRIVER_NAME,
Weike Chen1e960db2014-09-17 09:18:42 -0700836 .pm = &dwapb_gpio_pm_ops,
Andy Shevchenkoc59042e2020-04-15 17:15:31 +0300837 .of_match_table = dwapb_of_match,
838 .acpi_match_table = dwapb_acpi_match,
Jamie Iles7779b3452014-02-25 17:01:01 -0600839 },
840 .probe = dwapb_gpio_probe,
Jamie Iles7779b3452014-02-25 17:01:01 -0600841};
842
843module_platform_driver(dwapb_gpio_driver);
844
845MODULE_LICENSE("GPL");
846MODULE_AUTHOR("Jamie Iles");
847MODULE_DESCRIPTION("Synopsys DesignWare APB GPIO driver");
Andy Shevchenkoc58220c2020-04-15 17:15:21 +0300848MODULE_ALIAS("platform:" DWAPB_DRIVER_NAME);