blob: 187984d26f47a94080a77e6d485501b6c8b8401b [file] [log] [blame]
Kuninori Morimoto8b37eb72018-11-08 06:35:16 +00001// SPDX-License-Identifier: GPL-2.0
Magnus Damm119f5e42013-03-13 20:32:13 +09002/*
3 * Renesas R-Car GPIO Support
4 *
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +09005 * Copyright (C) 2014 Renesas Electronics Corporation
Magnus Damm119f5e42013-03-13 20:32:13 +09006 * Copyright (C) 2013 Magnus Damm
Magnus Damm119f5e42013-03-13 20:32:13 +09007 */
8
9#include <linux/err.h>
Linus Walleij4b1d8002018-05-31 08:08:13 +020010#include <linux/gpio/driver.h>
Magnus Damm119f5e42013-03-13 20:32:13 +090011#include <linux/init.h>
12#include <linux/interrupt.h>
13#include <linux/io.h>
14#include <linux/ioport.h>
15#include <linux/irq.h>
Magnus Damm119f5e42013-03-13 20:32:13 +090016#include <linux/module.h>
Sachin Kamatbd0bf462013-10-16 15:35:02 +053017#include <linux/of.h>
Geert Uytterhoevenf9f2a6f2017-10-04 14:16:16 +020018#include <linux/of_device.h>
Laurent Pinchartdc3465a2013-03-10 03:27:00 +010019#include <linux/pinctrl/consumer.h>
Magnus Damm119f5e42013-03-13 20:32:13 +090020#include <linux/platform_device.h>
Geert Uytterhoevendf0c6c82014-04-14 20:33:13 +020021#include <linux/pm_runtime.h>
Magnus Damm119f5e42013-03-13 20:32:13 +090022#include <linux/spinlock.h>
23#include <linux/slab.h>
24
Hien Dang51750fb2018-02-05 04:15:02 +090025struct gpio_rcar_bank_info {
26 u32 iointsel;
27 u32 inoutsel;
28 u32 outdt;
29 u32 posneg;
30 u32 edglevel;
31 u32 bothedge;
32 u32 intmsk;
33};
34
Magnus Damm119f5e42013-03-13 20:32:13 +090035struct gpio_rcar_priv {
36 void __iomem *base;
37 spinlock_t lock;
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +020038 struct device *dev;
Magnus Damm119f5e42013-03-13 20:32:13 +090039 struct gpio_chip gpio_chip;
40 struct irq_chip irq_chip;
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +010041 unsigned int irq_parent;
Geert Uytterhoeven9ac79ba2018-02-12 14:55:13 +010042 atomic_t wakeup_path;
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +020043 bool has_outdtsel;
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +010044 bool has_both_edge_trigger;
Hien Dang51750fb2018-02-05 04:15:02 +090045 struct gpio_rcar_bank_info bank_info;
Magnus Damm119f5e42013-03-13 20:32:13 +090046};
47
Geert Uytterhoeven3dc1e682015-03-18 19:41:08 +010048#define IOINTSEL 0x00 /* General IO/Interrupt Switching Register */
49#define INOUTSEL 0x04 /* General Input/Output Switching Register */
50#define OUTDT 0x08 /* General Output Register */
51#define INDT 0x0c /* General Input Register */
52#define INTDT 0x10 /* Interrupt Display Register */
53#define INTCLR 0x14 /* Interrupt Clear Register */
54#define INTMSK 0x18 /* Interrupt Mask Register */
55#define MSKCLR 0x1c /* Interrupt Mask Clear Register */
56#define POSNEG 0x20 /* Positive/Negative Logic Select Register */
57#define EDGLEVEL 0x24 /* Edge/level Select Register */
58#define FILONOFF 0x28 /* Chattering Prevention On/Off Register */
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +020059#define OUTDTSEL 0x40 /* Output Data Select Register */
Geert Uytterhoeven3dc1e682015-03-18 19:41:08 +010060#define BOTHEDGE 0x4c /* One Edge/Both Edge Select Register */
Magnus Damm119f5e42013-03-13 20:32:13 +090061
Laurent Pinchart159f8a02013-05-21 13:40:06 +020062#define RCAR_MAX_GPIO_PER_BANK 32
63
Magnus Damm119f5e42013-03-13 20:32:13 +090064static inline u32 gpio_rcar_read(struct gpio_rcar_priv *p, int offs)
65{
66 return ioread32(p->base + offs);
67}
68
69static inline void gpio_rcar_write(struct gpio_rcar_priv *p, int offs,
70 u32 value)
71{
72 iowrite32(value, p->base + offs);
73}
74
75static void gpio_rcar_modify_bit(struct gpio_rcar_priv *p, int offs,
76 int bit, bool value)
77{
78 u32 tmp = gpio_rcar_read(p, offs);
79
80 if (value)
81 tmp |= BIT(bit);
82 else
83 tmp &= ~BIT(bit);
84
85 gpio_rcar_write(p, offs, tmp);
86}
87
88static void gpio_rcar_irq_disable(struct irq_data *d)
89{
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +010090 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijc7b6f452015-12-07 14:12:45 +010091 struct gpio_rcar_priv *p = gpiochip_get_data(gc);
Magnus Damm119f5e42013-03-13 20:32:13 +090092
93 gpio_rcar_write(p, INTMSK, ~BIT(irqd_to_hwirq(d)));
94}
95
96static void gpio_rcar_irq_enable(struct irq_data *d)
97{
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +010098 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijc7b6f452015-12-07 14:12:45 +010099 struct gpio_rcar_priv *p = gpiochip_get_data(gc);
Magnus Damm119f5e42013-03-13 20:32:13 +0900100
101 gpio_rcar_write(p, MSKCLR, BIT(irqd_to_hwirq(d)));
102}
103
104static void gpio_rcar_config_interrupt_input_mode(struct gpio_rcar_priv *p,
105 unsigned int hwirq,
106 bool active_high_rising_edge,
Simon Horman7e1092b2013-05-24 18:47:24 +0900107 bool level_trigger,
108 bool both)
Magnus Damm119f5e42013-03-13 20:32:13 +0900109{
110 unsigned long flags;
111
112 /* follow steps in the GPIO documentation for
113 * "Setting Edge-Sensitive Interrupt Input Mode" and
114 * "Setting Level-Sensitive Interrupt Input Mode"
115 */
116
117 spin_lock_irqsave(&p->lock, flags);
118
119 /* Configure postive or negative logic in POSNEG */
120 gpio_rcar_modify_bit(p, POSNEG, hwirq, !active_high_rising_edge);
121
122 /* Configure edge or level trigger in EDGLEVEL */
123 gpio_rcar_modify_bit(p, EDGLEVEL, hwirq, !level_trigger);
124
Simon Horman7e1092b2013-05-24 18:47:24 +0900125 /* Select one edge or both edges in BOTHEDGE */
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100126 if (p->has_both_edge_trigger)
Simon Horman7e1092b2013-05-24 18:47:24 +0900127 gpio_rcar_modify_bit(p, BOTHEDGE, hwirq, both);
128
Magnus Damm119f5e42013-03-13 20:32:13 +0900129 /* Select "Interrupt Input Mode" in IOINTSEL */
130 gpio_rcar_modify_bit(p, IOINTSEL, hwirq, true);
131
132 /* Write INTCLR in case of edge trigger */
133 if (!level_trigger)
134 gpio_rcar_write(p, INTCLR, BIT(hwirq));
135
136 spin_unlock_irqrestore(&p->lock, flags);
137}
138
139static int gpio_rcar_irq_set_type(struct irq_data *d, unsigned int type)
140{
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +0100141 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijc7b6f452015-12-07 14:12:45 +0100142 struct gpio_rcar_priv *p = gpiochip_get_data(gc);
Magnus Damm119f5e42013-03-13 20:32:13 +0900143 unsigned int hwirq = irqd_to_hwirq(d);
144
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200145 dev_dbg(p->dev, "sense irq = %d, type = %d\n", hwirq, type);
Magnus Damm119f5e42013-03-13 20:32:13 +0900146
147 switch (type & IRQ_TYPE_SENSE_MASK) {
148 case IRQ_TYPE_LEVEL_HIGH:
Simon Horman7e1092b2013-05-24 18:47:24 +0900149 gpio_rcar_config_interrupt_input_mode(p, hwirq, true, true,
150 false);
Magnus Damm119f5e42013-03-13 20:32:13 +0900151 break;
152 case IRQ_TYPE_LEVEL_LOW:
Simon Horman7e1092b2013-05-24 18:47:24 +0900153 gpio_rcar_config_interrupt_input_mode(p, hwirq, false, true,
154 false);
Magnus Damm119f5e42013-03-13 20:32:13 +0900155 break;
156 case IRQ_TYPE_EDGE_RISING:
Simon Horman7e1092b2013-05-24 18:47:24 +0900157 gpio_rcar_config_interrupt_input_mode(p, hwirq, true, false,
158 false);
Magnus Damm119f5e42013-03-13 20:32:13 +0900159 break;
160 case IRQ_TYPE_EDGE_FALLING:
Simon Horman7e1092b2013-05-24 18:47:24 +0900161 gpio_rcar_config_interrupt_input_mode(p, hwirq, false, false,
162 false);
163 break;
164 case IRQ_TYPE_EDGE_BOTH:
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100165 if (!p->has_both_edge_trigger)
Simon Horman7e1092b2013-05-24 18:47:24 +0900166 return -EINVAL;
167 gpio_rcar_config_interrupt_input_mode(p, hwirq, true, false,
168 true);
Magnus Damm119f5e42013-03-13 20:32:13 +0900169 break;
170 default:
171 return -EINVAL;
172 }
173 return 0;
174}
175
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100176static int gpio_rcar_irq_set_wake(struct irq_data *d, unsigned int on)
177{
178 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijc7b6f452015-12-07 14:12:45 +0100179 struct gpio_rcar_priv *p = gpiochip_get_data(gc);
Geert Uytterhoeven501ef0f2015-05-21 13:21:37 +0200180 int error;
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100181
Geert Uytterhoeven501ef0f2015-05-21 13:21:37 +0200182 if (p->irq_parent) {
183 error = irq_set_irq_wake(p->irq_parent, on);
184 if (error) {
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200185 dev_dbg(p->dev, "irq %u doesn't support irq_set_wake\n",
Geert Uytterhoeven501ef0f2015-05-21 13:21:37 +0200186 p->irq_parent);
187 p->irq_parent = 0;
188 }
189 }
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100190
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100191 if (on)
Geert Uytterhoeven9ac79ba2018-02-12 14:55:13 +0100192 atomic_inc(&p->wakeup_path);
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100193 else
Geert Uytterhoeven9ac79ba2018-02-12 14:55:13 +0100194 atomic_dec(&p->wakeup_path);
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100195
196 return 0;
197}
198
Magnus Damm119f5e42013-03-13 20:32:13 +0900199static irqreturn_t gpio_rcar_irq_handler(int irq, void *dev_id)
200{
201 struct gpio_rcar_priv *p = dev_id;
202 u32 pending;
203 unsigned int offset, irqs_handled = 0;
204
Valentine Barshak8808b642013-11-29 22:04:09 +0400205 while ((pending = gpio_rcar_read(p, INTDT) &
206 gpio_rcar_read(p, INTMSK))) {
Magnus Damm119f5e42013-03-13 20:32:13 +0900207 offset = __ffs(pending);
208 gpio_rcar_write(p, INTCLR, BIT(offset));
Thierry Redingf0fbe7b2017-11-07 19:15:47 +0100209 generic_handle_irq(irq_find_mapping(p->gpio_chip.irq.domain,
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +0100210 offset));
Magnus Damm119f5e42013-03-13 20:32:13 +0900211 irqs_handled++;
212 }
213
214 return irqs_handled ? IRQ_HANDLED : IRQ_NONE;
215}
216
Magnus Damm119f5e42013-03-13 20:32:13 +0900217static void gpio_rcar_config_general_input_output_mode(struct gpio_chip *chip,
218 unsigned int gpio,
219 bool output)
220{
Linus Walleijc7b6f452015-12-07 14:12:45 +0100221 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
Magnus Damm119f5e42013-03-13 20:32:13 +0900222 unsigned long flags;
223
224 /* follow steps in the GPIO documentation for
225 * "Setting General Output Mode" and
226 * "Setting General Input Mode"
227 */
228
229 spin_lock_irqsave(&p->lock, flags);
230
231 /* Configure postive logic in POSNEG */
232 gpio_rcar_modify_bit(p, POSNEG, gpio, false);
233
234 /* Select "General Input/Output Mode" in IOINTSEL */
235 gpio_rcar_modify_bit(p, IOINTSEL, gpio, false);
236
237 /* Select Input Mode or Output Mode in INOUTSEL */
238 gpio_rcar_modify_bit(p, INOUTSEL, gpio, output);
239
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +0200240 /* Select General Output Register to output data in OUTDTSEL */
241 if (p->has_outdtsel && output)
242 gpio_rcar_modify_bit(p, OUTDTSEL, gpio, false);
243
Magnus Damm119f5e42013-03-13 20:32:13 +0900244 spin_unlock_irqrestore(&p->lock, flags);
245}
246
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100247static int gpio_rcar_request(struct gpio_chip *chip, unsigned offset)
248{
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100249 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
250 int error;
251
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200252 error = pm_runtime_get_sync(p->dev);
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100253 if (error < 0)
254 return error;
255
Linus Walleija9a1d2a2017-09-22 11:02:10 +0200256 error = pinctrl_gpio_request(chip->base + offset);
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100257 if (error)
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200258 pm_runtime_put(p->dev);
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100259
260 return error;
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100261}
262
263static void gpio_rcar_free(struct gpio_chip *chip, unsigned offset)
264{
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100265 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
266
Linus Walleija9a1d2a2017-09-22 11:02:10 +0200267 pinctrl_gpio_free(chip->base + offset);
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100268
Linus Walleijce0e2c62016-04-12 10:05:22 +0200269 /*
270 * Set the GPIO as an input to ensure that the next GPIO request won't
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100271 * drive the GPIO pin as an output.
272 */
273 gpio_rcar_config_general_input_output_mode(chip, offset, false);
Geert Uytterhoeven2d654722016-12-08 18:32:28 +0100274
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200275 pm_runtime_put(p->dev);
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100276}
277
Geert Uytterhoevenad817292018-07-12 11:15:01 +0200278static int gpio_rcar_get_direction(struct gpio_chip *chip, unsigned int offset)
279{
280 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
281
282 return !(gpio_rcar_read(p, INOUTSEL) & BIT(offset));
283}
284
Magnus Damm119f5e42013-03-13 20:32:13 +0900285static int gpio_rcar_direction_input(struct gpio_chip *chip, unsigned offset)
286{
287 gpio_rcar_config_general_input_output_mode(chip, offset, false);
288 return 0;
289}
290
291static int gpio_rcar_get(struct gpio_chip *chip, unsigned offset)
292{
Magnus Dammae9550f2013-06-17 08:41:52 +0900293 u32 bit = BIT(offset);
294
295 /* testing on r8a7790 shows that INDT does not show correct pin state
296 * when configured as output, so use OUTDT in case of output pins */
Linus Walleijc7b6f452015-12-07 14:12:45 +0100297 if (gpio_rcar_read(gpiochip_get_data(chip), INOUTSEL) & bit)
298 return !!(gpio_rcar_read(gpiochip_get_data(chip), OUTDT) & bit);
Magnus Dammae9550f2013-06-17 08:41:52 +0900299 else
Linus Walleijc7b6f452015-12-07 14:12:45 +0100300 return !!(gpio_rcar_read(gpiochip_get_data(chip), INDT) & bit);
Magnus Damm119f5e42013-03-13 20:32:13 +0900301}
302
303static void gpio_rcar_set(struct gpio_chip *chip, unsigned offset, int value)
304{
Linus Walleijc7b6f452015-12-07 14:12:45 +0100305 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
Magnus Damm119f5e42013-03-13 20:32:13 +0900306 unsigned long flags;
307
308 spin_lock_irqsave(&p->lock, flags);
309 gpio_rcar_modify_bit(p, OUTDT, offset, value);
310 spin_unlock_irqrestore(&p->lock, flags);
311}
312
Geert Uytterhoevendbb763b82016-03-14 16:21:44 +0100313static void gpio_rcar_set_multiple(struct gpio_chip *chip, unsigned long *mask,
314 unsigned long *bits)
315{
316 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
317 unsigned long flags;
318 u32 val, bankmask;
319
320 bankmask = mask[0] & GENMASK(chip->ngpio - 1, 0);
Biju Das496069b2018-08-07 08:57:02 +0100321 if (chip->valid_mask)
322 bankmask &= chip->valid_mask[0];
323
Geert Uytterhoevendbb763b82016-03-14 16:21:44 +0100324 if (!bankmask)
325 return;
326
327 spin_lock_irqsave(&p->lock, flags);
328 val = gpio_rcar_read(p, OUTDT);
329 val &= ~bankmask;
330 val |= (bankmask & bits[0]);
331 gpio_rcar_write(p, OUTDT, val);
332 spin_unlock_irqrestore(&p->lock, flags);
333}
334
Magnus Damm119f5e42013-03-13 20:32:13 +0900335static int gpio_rcar_direction_output(struct gpio_chip *chip, unsigned offset,
336 int value)
337{
338 /* write GPIO value to output before selecting output mode of pin */
339 gpio_rcar_set(chip, offset, value);
340 gpio_rcar_config_general_input_output_mode(chip, offset, true);
341 return 0;
342}
343
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100344struct gpio_rcar_info {
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +0200345 bool has_outdtsel;
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100346 bool has_both_edge_trigger;
347};
348
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900349static const struct gpio_rcar_info gpio_rcar_info_gen1 = {
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +0200350 .has_outdtsel = false,
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900351 .has_both_edge_trigger = false,
352};
353
354static const struct gpio_rcar_info gpio_rcar_info_gen2 = {
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +0200355 .has_outdtsel = true,
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900356 .has_both_edge_trigger = true,
357};
358
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100359static const struct of_device_id gpio_rcar_of_table[] = {
360 {
Biju Das85bb4642017-06-21 15:27:09 +0100361 .compatible = "renesas,gpio-r8a7743",
362 /* RZ/G1 GPIO is identical to R-Car Gen2. */
363 .data = &gpio_rcar_info_gen2,
364 }, {
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100365 .compatible = "renesas,gpio-r8a7790",
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900366 .data = &gpio_rcar_info_gen2,
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100367 }, {
368 .compatible = "renesas,gpio-r8a7791",
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900369 .data = &gpio_rcar_info_gen2,
370 }, {
Sergei Shtylyove79c5832016-07-07 17:11:45 +0300371 .compatible = "renesas,gpio-r8a7792",
372 .data = &gpio_rcar_info_gen2,
373 }, {
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900374 .compatible = "renesas,gpio-r8a7793",
375 .data = &gpio_rcar_info_gen2,
376 }, {
377 .compatible = "renesas,gpio-r8a7794",
378 .data = &gpio_rcar_info_gen2,
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100379 }, {
Ulrich Hecht8cd14702015-07-21 11:08:50 +0200380 .compatible = "renesas,gpio-r8a7795",
381 /* Gen3 GPIO is identical to Gen2. */
382 .data = &gpio_rcar_info_gen2,
383 }, {
Simon Horman5d2f1d62016-09-06 12:35:39 +0200384 .compatible = "renesas,gpio-r8a7796",
385 /* Gen3 GPIO is identical to Gen2. */
386 .data = &gpio_rcar_info_gen2,
387 }, {
Simon Hormandbd1dad2017-07-11 14:38:30 +0200388 .compatible = "renesas,rcar-gen1-gpio",
389 .data = &gpio_rcar_info_gen1,
390 }, {
391 .compatible = "renesas,rcar-gen2-gpio",
392 .data = &gpio_rcar_info_gen2,
393 }, {
394 .compatible = "renesas,rcar-gen3-gpio",
395 /* Gen3 GPIO is identical to Gen2. */
396 .data = &gpio_rcar_info_gen2,
397 }, {
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100398 .compatible = "renesas,gpio-rcar",
Hisashi Nakamura1fd2b492014-11-07 20:54:08 +0900399 .data = &gpio_rcar_info_gen1,
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100400 }, {
401 /* Terminator */
402 },
403};
404
405MODULE_DEVICE_TABLE(of, gpio_rcar_of_table);
406
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100407static int gpio_rcar_parse_dt(struct gpio_rcar_priv *p, unsigned int *npins)
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200408{
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200409 struct device_node *np = p->dev->of_node;
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100410 const struct gpio_rcar_info *info;
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200411 struct of_phandle_args args;
412 int ret;
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200413
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200414 info = of_device_get_match_data(p->dev);
Vladimir Zapolskiy3ae4f3a2019-01-18 10:53:43 +0200415 p->has_outdtsel = info->has_outdtsel;
416 p->has_both_edge_trigger = info->has_both_edge_trigger;
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100417
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100418 ret = of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, 0, &args);
419 *npins = ret == 0 ? args.args[2] : RCAR_MAX_GPIO_PER_BANK;
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100420
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100421 if (*npins == 0 || *npins > RCAR_MAX_GPIO_PER_BANK) {
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200422 dev_warn(p->dev, "Invalid number of gpio lines %u, using %u\n",
423 *npins, RCAR_MAX_GPIO_PER_BANK);
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100424 *npins = RCAR_MAX_GPIO_PER_BANK;
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200425 }
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100426
427 return 0;
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200428}
429
Magnus Damm119f5e42013-03-13 20:32:13 +0900430static int gpio_rcar_probe(struct platform_device *pdev)
431{
Magnus Damm119f5e42013-03-13 20:32:13 +0900432 struct gpio_rcar_priv *p;
Enrico Weigelt, metux IT consultecbf7c22019-03-11 19:55:06 +0100433 struct resource *irq;
Magnus Damm119f5e42013-03-13 20:32:13 +0900434 struct gpio_chip *gpio_chip;
435 struct irq_chip *irq_chip;
Geert Uytterhoevenb22978f2014-03-27 21:47:36 +0100436 struct device *dev = &pdev->dev;
437 const char *name = dev_name(dev);
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100438 unsigned int npins;
Magnus Damm119f5e42013-03-13 20:32:13 +0900439 int ret;
440
Geert Uytterhoevenb22978f2014-03-27 21:47:36 +0100441 p = devm_kzalloc(dev, sizeof(*p), GFP_KERNEL);
Geert Uytterhoeven7d82bf32015-01-12 11:07:58 +0100442 if (!p)
443 return -ENOMEM;
Magnus Damm119f5e42013-03-13 20:32:13 +0900444
Vladimir Zapolskiya53f7952018-11-22 22:19:41 +0200445 p->dev = dev;
Magnus Damm119f5e42013-03-13 20:32:13 +0900446 spin_lock_init(&p->lock);
447
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100448 /* Get device configuration from DT node */
449 ret = gpio_rcar_parse_dt(p, &npins);
Laurent Pinchart850dfe12013-11-29 14:48:00 +0100450 if (ret < 0)
451 return ret;
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200452
453 platform_set_drvdata(pdev, p);
454
Geert Uytterhoevendf0c6c82014-04-14 20:33:13 +0200455 pm_runtime_enable(dev);
Geert Uytterhoevendf0c6c82014-04-14 20:33:13 +0200456
Magnus Damm119f5e42013-03-13 20:32:13 +0900457 irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
Sergei Shtylyov5a24d4b2017-10-13 00:08:14 +0300458 if (!irq) {
459 dev_err(dev, "missing IRQ\n");
Magnus Damm119f5e42013-03-13 20:32:13 +0900460 ret = -EINVAL;
461 goto err0;
462 }
463
Enrico Weigelt, metux IT consultecbf7c22019-03-11 19:55:06 +0100464 p->base = devm_platform_ioremap_resource(pdev, 0);
Sergei Shtylyov5a24d4b2017-10-13 00:08:14 +0300465 if (IS_ERR(p->base)) {
466 ret = PTR_ERR(p->base);
Magnus Damm119f5e42013-03-13 20:32:13 +0900467 goto err0;
468 }
469
470 gpio_chip = &p->gpio_chip;
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100471 gpio_chip->request = gpio_rcar_request;
472 gpio_chip->free = gpio_rcar_free;
Geert Uytterhoevenad817292018-07-12 11:15:01 +0200473 gpio_chip->get_direction = gpio_rcar_get_direction;
Magnus Damm119f5e42013-03-13 20:32:13 +0900474 gpio_chip->direction_input = gpio_rcar_direction_input;
475 gpio_chip->get = gpio_rcar_get;
476 gpio_chip->direction_output = gpio_rcar_direction_output;
477 gpio_chip->set = gpio_rcar_set;
Geert Uytterhoevendbb763b82016-03-14 16:21:44 +0100478 gpio_chip->set_multiple = gpio_rcar_set_multiple;
Magnus Damm119f5e42013-03-13 20:32:13 +0900479 gpio_chip->label = name;
Linus Walleij58383c782015-11-04 09:56:26 +0100480 gpio_chip->parent = dev;
Magnus Damm119f5e42013-03-13 20:32:13 +0900481 gpio_chip->owner = THIS_MODULE;
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100482 gpio_chip->base = -1;
483 gpio_chip->ngpio = npins;
Magnus Damm119f5e42013-03-13 20:32:13 +0900484
485 irq_chip = &p->irq_chip;
486 irq_chip->name = name;
Niklas Söderlund47bd38a2016-12-08 18:32:27 +0100487 irq_chip->parent_device = dev;
Magnus Damm119f5e42013-03-13 20:32:13 +0900488 irq_chip->irq_mask = gpio_rcar_irq_disable;
489 irq_chip->irq_unmask = gpio_rcar_irq_enable;
Magnus Damm119f5e42013-03-13 20:32:13 +0900490 irq_chip->irq_set_type = gpio_rcar_irq_set_type;
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100491 irq_chip->irq_set_wake = gpio_rcar_irq_set_wake;
Enrico Weigelt, metux IT consultb183cab2019-06-17 18:49:14 +0200492 irq_chip->flags = IRQCHIP_SET_TYPE_MASKED | IRQCHIP_MASK_ON_SUSPEND;
Magnus Damm119f5e42013-03-13 20:32:13 +0900493
Linus Walleijc7b6f452015-12-07 14:12:45 +0100494 ret = gpiochip_add_data(gpio_chip, p);
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +0100495 if (ret) {
496 dev_err(dev, "failed to add GPIO controller\n");
Dan Carpenter0c8aab82013-11-07 10:56:51 +0300497 goto err0;
Magnus Damm119f5e42013-03-13 20:32:13 +0900498 }
499
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100500 ret = gpiochip_irqchip_add(gpio_chip, irq_chip, 0, handle_level_irq,
501 IRQ_TYPE_NONE);
Geert Uytterhoevenc7f3c5d2015-01-12 11:07:59 +0100502 if (ret) {
503 dev_err(dev, "cannot add irqchip\n");
504 goto err1;
505 }
506
Geert Uytterhoevenab82fa72015-03-18 19:41:09 +0100507 p->irq_parent = irq->start;
Geert Uytterhoevenb22978f2014-03-27 21:47:36 +0100508 if (devm_request_irq(dev, irq->start, gpio_rcar_irq_handler,
509 IRQF_SHARED, name, p)) {
510 dev_err(dev, "failed to request IRQ\n");
Magnus Damm119f5e42013-03-13 20:32:13 +0900511 ret = -ENOENT;
512 goto err1;
513 }
514
Geert Uytterhoeven8b092be2015-12-04 16:33:52 +0100515 dev_info(dev, "driving %d GPIOs\n", npins);
Laurent Pinchartdc3465a2013-03-10 03:27:00 +0100516
Magnus Damm119f5e42013-03-13 20:32:13 +0900517 return 0;
518
519err1:
Geert Uytterhoeven4d84b9e2015-03-18 19:41:07 +0100520 gpiochip_remove(gpio_chip);
Magnus Damm119f5e42013-03-13 20:32:13 +0900521err0:
Geert Uytterhoevendf0c6c82014-04-14 20:33:13 +0200522 pm_runtime_disable(dev);
Magnus Damm119f5e42013-03-13 20:32:13 +0900523 return ret;
524}
525
526static int gpio_rcar_remove(struct platform_device *pdev)
527{
528 struct gpio_rcar_priv *p = platform_get_drvdata(pdev);
Magnus Damm119f5e42013-03-13 20:32:13 +0900529
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200530 gpiochip_remove(&p->gpio_chip);
Magnus Damm119f5e42013-03-13 20:32:13 +0900531
Geert Uytterhoevendf0c6c82014-04-14 20:33:13 +0200532 pm_runtime_disable(&pdev->dev);
Magnus Damm119f5e42013-03-13 20:32:13 +0900533 return 0;
534}
535
Hien Dang51750fb2018-02-05 04:15:02 +0900536#ifdef CONFIG_PM_SLEEP
537static int gpio_rcar_suspend(struct device *dev)
538{
539 struct gpio_rcar_priv *p = dev_get_drvdata(dev);
540
541 p->bank_info.iointsel = gpio_rcar_read(p, IOINTSEL);
542 p->bank_info.inoutsel = gpio_rcar_read(p, INOUTSEL);
543 p->bank_info.outdt = gpio_rcar_read(p, OUTDT);
544 p->bank_info.intmsk = gpio_rcar_read(p, INTMSK);
545 p->bank_info.posneg = gpio_rcar_read(p, POSNEG);
546 p->bank_info.edglevel = gpio_rcar_read(p, EDGLEVEL);
547 if (p->has_both_edge_trigger)
548 p->bank_info.bothedge = gpio_rcar_read(p, BOTHEDGE);
549
Geert Uytterhoeven9ac79ba2018-02-12 14:55:13 +0100550 if (atomic_read(&p->wakeup_path))
551 device_set_wakeup_path(dev);
552
Hien Dang51750fb2018-02-05 04:15:02 +0900553 return 0;
554}
555
556static int gpio_rcar_resume(struct device *dev)
557{
558 struct gpio_rcar_priv *p = dev_get_drvdata(dev);
559 unsigned int offset;
560 u32 mask;
561
562 for (offset = 0; offset < p->gpio_chip.ngpio; offset++) {
Biju Das496069b2018-08-07 08:57:02 +0100563 if (!gpiochip_line_is_valid(&p->gpio_chip, offset))
564 continue;
565
Hien Dang51750fb2018-02-05 04:15:02 +0900566 mask = BIT(offset);
567 /* I/O pin */
568 if (!(p->bank_info.iointsel & mask)) {
569 if (p->bank_info.inoutsel & mask)
570 gpio_rcar_direction_output(
571 &p->gpio_chip, offset,
572 !!(p->bank_info.outdt & mask));
573 else
574 gpio_rcar_direction_input(&p->gpio_chip,
575 offset);
576 } else {
577 /* Interrupt pin */
578 gpio_rcar_config_interrupt_input_mode(
579 p,
580 offset,
581 !(p->bank_info.posneg & mask),
582 !(p->bank_info.edglevel & mask),
583 !!(p->bank_info.bothedge & mask));
584
585 if (p->bank_info.intmsk & mask)
586 gpio_rcar_write(p, MSKCLR, mask);
587 }
588 }
589
590 return 0;
591}
592#endif /* CONFIG_PM_SLEEP*/
593
594static SIMPLE_DEV_PM_OPS(gpio_rcar_pm_ops, gpio_rcar_suspend, gpio_rcar_resume);
595
Magnus Damm119f5e42013-03-13 20:32:13 +0900596static struct platform_driver gpio_rcar_device_driver = {
597 .probe = gpio_rcar_probe,
598 .remove = gpio_rcar_remove,
599 .driver = {
600 .name = "gpio_rcar",
Hien Dang51750fb2018-02-05 04:15:02 +0900601 .pm = &gpio_rcar_pm_ops,
Laurent Pinchart159f8a02013-05-21 13:40:06 +0200602 .of_match_table = of_match_ptr(gpio_rcar_of_table),
Magnus Damm119f5e42013-03-13 20:32:13 +0900603 }
604};
605
606module_platform_driver(gpio_rcar_device_driver);
607
608MODULE_AUTHOR("Magnus Damm");
609MODULE_DESCRIPTION("Renesas R-Car GPIO Driver");
610MODULE_LICENSE("GPL v2");