2 * Renesas R-Car GPIO Support
4 * Copyright (C) 2013 Magnus Damm
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/err.h>
17 #include <linux/gpio.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
21 #include <linux/ioport.h>
22 #include <linux/irq.h>
23 #include <linux/irqdomain.h>
24 #include <linux/module.h>
26 #include <linux/pinctrl/consumer.h>
27 #include <linux/platform_data/gpio-rcar.h>
28 #include <linux/platform_device.h>
29 #include <linux/pm_runtime.h>
30 #include <linux/spinlock.h>
31 #include <linux/slab.h>
33 struct gpio_rcar_priv
{
36 struct gpio_rcar_config config
;
37 struct platform_device
*pdev
;
38 struct gpio_chip gpio_chip
;
39 struct irq_chip irq_chip
;
40 struct irq_domain
*irq_domain
;
56 #define RCAR_MAX_GPIO_PER_BANK 32
58 static inline u32
gpio_rcar_read(struct gpio_rcar_priv
*p
, int offs
)
60 return ioread32(p
->base
+ offs
);
63 static inline void gpio_rcar_write(struct gpio_rcar_priv
*p
, int offs
,
66 iowrite32(value
, p
->base
+ offs
);
69 static void gpio_rcar_modify_bit(struct gpio_rcar_priv
*p
, int offs
,
72 u32 tmp
= gpio_rcar_read(p
, offs
);
79 gpio_rcar_write(p
, offs
, tmp
);
82 static void gpio_rcar_irq_disable(struct irq_data
*d
)
84 struct gpio_rcar_priv
*p
= irq_data_get_irq_chip_data(d
);
86 gpio_rcar_write(p
, INTMSK
, ~BIT(irqd_to_hwirq(d
)));
89 static void gpio_rcar_irq_enable(struct irq_data
*d
)
91 struct gpio_rcar_priv
*p
= irq_data_get_irq_chip_data(d
);
93 gpio_rcar_write(p
, MSKCLR
, BIT(irqd_to_hwirq(d
)));
96 static void gpio_rcar_config_interrupt_input_mode(struct gpio_rcar_priv
*p
,
98 bool active_high_rising_edge
,
104 /* follow steps in the GPIO documentation for
105 * "Setting Edge-Sensitive Interrupt Input Mode" and
106 * "Setting Level-Sensitive Interrupt Input Mode"
109 spin_lock_irqsave(&p
->lock
, flags
);
111 /* Configure postive or negative logic in POSNEG */
112 gpio_rcar_modify_bit(p
, POSNEG
, hwirq
, !active_high_rising_edge
);
114 /* Configure edge or level trigger in EDGLEVEL */
115 gpio_rcar_modify_bit(p
, EDGLEVEL
, hwirq
, !level_trigger
);
117 /* Select one edge or both edges in BOTHEDGE */
118 if (p
->config
.has_both_edge_trigger
)
119 gpio_rcar_modify_bit(p
, BOTHEDGE
, hwirq
, both
);
121 /* Select "Interrupt Input Mode" in IOINTSEL */
122 gpio_rcar_modify_bit(p
, IOINTSEL
, hwirq
, true);
124 /* Write INTCLR in case of edge trigger */
126 gpio_rcar_write(p
, INTCLR
, BIT(hwirq
));
128 spin_unlock_irqrestore(&p
->lock
, flags
);
131 static int gpio_rcar_irq_set_type(struct irq_data
*d
, unsigned int type
)
133 struct gpio_rcar_priv
*p
= irq_data_get_irq_chip_data(d
);
134 unsigned int hwirq
= irqd_to_hwirq(d
);
136 dev_dbg(&p
->pdev
->dev
, "sense irq = %d, type = %d\n", hwirq
, type
);
138 switch (type
& IRQ_TYPE_SENSE_MASK
) {
139 case IRQ_TYPE_LEVEL_HIGH
:
140 gpio_rcar_config_interrupt_input_mode(p
, hwirq
, true, true,
143 case IRQ_TYPE_LEVEL_LOW
:
144 gpio_rcar_config_interrupt_input_mode(p
, hwirq
, false, true,
147 case IRQ_TYPE_EDGE_RISING
:
148 gpio_rcar_config_interrupt_input_mode(p
, hwirq
, true, false,
151 case IRQ_TYPE_EDGE_FALLING
:
152 gpio_rcar_config_interrupt_input_mode(p
, hwirq
, false, false,
155 case IRQ_TYPE_EDGE_BOTH
:
156 if (!p
->config
.has_both_edge_trigger
)
158 gpio_rcar_config_interrupt_input_mode(p
, hwirq
, true, false,
167 static irqreturn_t
gpio_rcar_irq_handler(int irq
, void *dev_id
)
169 struct gpio_rcar_priv
*p
= dev_id
;
171 unsigned int offset
, irqs_handled
= 0;
173 while ((pending
= gpio_rcar_read(p
, INTDT
) &
174 gpio_rcar_read(p
, INTMSK
))) {
175 offset
= __ffs(pending
);
176 gpio_rcar_write(p
, INTCLR
, BIT(offset
));
177 generic_handle_irq(irq_find_mapping(p
->irq_domain
, offset
));
181 return irqs_handled
? IRQ_HANDLED
: IRQ_NONE
;
184 static inline struct gpio_rcar_priv
*gpio_to_priv(struct gpio_chip
*chip
)
186 return container_of(chip
, struct gpio_rcar_priv
, gpio_chip
);
189 static void gpio_rcar_config_general_input_output_mode(struct gpio_chip
*chip
,
193 struct gpio_rcar_priv
*p
= gpio_to_priv(chip
);
196 /* follow steps in the GPIO documentation for
197 * "Setting General Output Mode" and
198 * "Setting General Input Mode"
201 spin_lock_irqsave(&p
->lock
, flags
);
203 /* Configure postive logic in POSNEG */
204 gpio_rcar_modify_bit(p
, POSNEG
, gpio
, false);
206 /* Select "General Input/Output Mode" in IOINTSEL */
207 gpio_rcar_modify_bit(p
, IOINTSEL
, gpio
, false);
209 /* Select Input Mode or Output Mode in INOUTSEL */
210 gpio_rcar_modify_bit(p
, INOUTSEL
, gpio
, output
);
212 spin_unlock_irqrestore(&p
->lock
, flags
);
215 static int gpio_rcar_request(struct gpio_chip
*chip
, unsigned offset
)
217 return pinctrl_request_gpio(chip
->base
+ offset
);
220 static void gpio_rcar_free(struct gpio_chip
*chip
, unsigned offset
)
222 pinctrl_free_gpio(chip
->base
+ offset
);
224 /* Set the GPIO as an input to ensure that the next GPIO request won't
225 * drive the GPIO pin as an output.
227 gpio_rcar_config_general_input_output_mode(chip
, offset
, false);
230 static int gpio_rcar_direction_input(struct gpio_chip
*chip
, unsigned offset
)
232 gpio_rcar_config_general_input_output_mode(chip
, offset
, false);
236 static int gpio_rcar_get(struct gpio_chip
*chip
, unsigned offset
)
238 u32 bit
= BIT(offset
);
240 /* testing on r8a7790 shows that INDT does not show correct pin state
241 * when configured as output, so use OUTDT in case of output pins */
242 if (gpio_rcar_read(gpio_to_priv(chip
), INOUTSEL
) & bit
)
243 return !!(gpio_rcar_read(gpio_to_priv(chip
), OUTDT
) & bit
);
245 return !!(gpio_rcar_read(gpio_to_priv(chip
), INDT
) & bit
);
248 static void gpio_rcar_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
250 struct gpio_rcar_priv
*p
= gpio_to_priv(chip
);
253 spin_lock_irqsave(&p
->lock
, flags
);
254 gpio_rcar_modify_bit(p
, OUTDT
, offset
, value
);
255 spin_unlock_irqrestore(&p
->lock
, flags
);
258 static int gpio_rcar_direction_output(struct gpio_chip
*chip
, unsigned offset
,
261 /* write GPIO value to output before selecting output mode of pin */
262 gpio_rcar_set(chip
, offset
, value
);
263 gpio_rcar_config_general_input_output_mode(chip
, offset
, true);
267 static int gpio_rcar_to_irq(struct gpio_chip
*chip
, unsigned offset
)
269 return irq_create_mapping(gpio_to_priv(chip
)->irq_domain
, offset
);
272 static int gpio_rcar_irq_domain_map(struct irq_domain
*h
, unsigned int irq
,
273 irq_hw_number_t hwirq
)
275 struct gpio_rcar_priv
*p
= h
->host_data
;
277 dev_dbg(&p
->pdev
->dev
, "map hw irq = %d, irq = %d\n", (int)hwirq
, irq
);
279 irq_set_chip_data(irq
, h
->host_data
);
280 irq_set_chip_and_handler(irq
, &p
->irq_chip
, handle_level_irq
);
281 set_irq_flags(irq
, IRQF_VALID
); /* kill me now */
285 static struct irq_domain_ops gpio_rcar_irq_domain_ops
= {
286 .map
= gpio_rcar_irq_domain_map
,
287 .xlate
= irq_domain_xlate_twocell
,
290 struct gpio_rcar_info
{
291 bool has_both_edge_trigger
;
294 static const struct of_device_id gpio_rcar_of_table
[] = {
296 .compatible
= "renesas,gpio-r8a7790",
297 .data
= (void *)&(const struct gpio_rcar_info
) {
298 .has_both_edge_trigger
= true,
301 .compatible
= "renesas,gpio-r8a7791",
302 .data
= (void *)&(const struct gpio_rcar_info
) {
303 .has_both_edge_trigger
= true,
306 .compatible
= "renesas,gpio-rcar",
307 .data
= (void *)&(const struct gpio_rcar_info
) {
308 .has_both_edge_trigger
= false,
315 MODULE_DEVICE_TABLE(of
, gpio_rcar_of_table
);
317 static int gpio_rcar_parse_pdata(struct gpio_rcar_priv
*p
)
319 struct gpio_rcar_config
*pdata
= dev_get_platdata(&p
->pdev
->dev
);
320 struct device_node
*np
= p
->pdev
->dev
.of_node
;
321 struct of_phandle_args args
;
326 } else if (IS_ENABLED(CONFIG_OF
) && np
) {
327 const struct of_device_id
*match
;
328 const struct gpio_rcar_info
*info
;
330 match
= of_match_node(gpio_rcar_of_table
, np
);
336 ret
= of_parse_phandle_with_fixed_args(np
, "gpio-ranges", 3, 0,
338 p
->config
.number_of_pins
= ret
== 0 ? args
.args
[2]
339 : RCAR_MAX_GPIO_PER_BANK
;
340 p
->config
.gpio_base
= -1;
341 p
->config
.has_both_edge_trigger
= info
->has_both_edge_trigger
;
344 if (p
->config
.number_of_pins
== 0 ||
345 p
->config
.number_of_pins
> RCAR_MAX_GPIO_PER_BANK
) {
346 dev_warn(&p
->pdev
->dev
,
347 "Invalid number of gpio lines %u, using %u\n",
348 p
->config
.number_of_pins
, RCAR_MAX_GPIO_PER_BANK
);
349 p
->config
.number_of_pins
= RCAR_MAX_GPIO_PER_BANK
;
355 static int gpio_rcar_probe(struct platform_device
*pdev
)
357 struct gpio_rcar_priv
*p
;
358 struct resource
*io
, *irq
;
359 struct gpio_chip
*gpio_chip
;
360 struct irq_chip
*irq_chip
;
361 struct device
*dev
= &pdev
->dev
;
362 const char *name
= dev_name(dev
);
365 p
= devm_kzalloc(dev
, sizeof(*p
), GFP_KERNEL
);
372 spin_lock_init(&p
->lock
);
374 /* Get device configuration from DT node or platform data. */
375 ret
= gpio_rcar_parse_pdata(p
);
379 platform_set_drvdata(pdev
, p
);
381 pm_runtime_enable(dev
);
382 pm_runtime_get_sync(dev
);
384 io
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
385 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
388 dev_err(dev
, "missing IRQ or IOMEM\n");
393 p
->base
= devm_ioremap_nocache(dev
, io
->start
, resource_size(io
));
395 dev_err(dev
, "failed to remap I/O memory\n");
400 gpio_chip
= &p
->gpio_chip
;
401 gpio_chip
->request
= gpio_rcar_request
;
402 gpio_chip
->free
= gpio_rcar_free
;
403 gpio_chip
->direction_input
= gpio_rcar_direction_input
;
404 gpio_chip
->get
= gpio_rcar_get
;
405 gpio_chip
->direction_output
= gpio_rcar_direction_output
;
406 gpio_chip
->set
= gpio_rcar_set
;
407 gpio_chip
->to_irq
= gpio_rcar_to_irq
;
408 gpio_chip
->label
= name
;
409 gpio_chip
->dev
= dev
;
410 gpio_chip
->owner
= THIS_MODULE
;
411 gpio_chip
->base
= p
->config
.gpio_base
;
412 gpio_chip
->ngpio
= p
->config
.number_of_pins
;
414 irq_chip
= &p
->irq_chip
;
415 irq_chip
->name
= name
;
416 irq_chip
->irq_mask
= gpio_rcar_irq_disable
;
417 irq_chip
->irq_unmask
= gpio_rcar_irq_enable
;
418 irq_chip
->irq_set_type
= gpio_rcar_irq_set_type
;
419 irq_chip
->flags
= IRQCHIP_SKIP_SET_WAKE
| IRQCHIP_SET_TYPE_MASKED
420 | IRQCHIP_MASK_ON_SUSPEND
;
422 p
->irq_domain
= irq_domain_add_simple(pdev
->dev
.of_node
,
423 p
->config
.number_of_pins
,
425 &gpio_rcar_irq_domain_ops
, p
);
426 if (!p
->irq_domain
) {
428 dev_err(dev
, "cannot initialize irq domain\n");
432 if (devm_request_irq(dev
, irq
->start
, gpio_rcar_irq_handler
,
433 IRQF_SHARED
, name
, p
)) {
434 dev_err(dev
, "failed to request IRQ\n");
439 ret
= gpiochip_add(gpio_chip
);
441 dev_err(dev
, "failed to add GPIO controller\n");
445 dev_info(dev
, "driving %d GPIOs\n", p
->config
.number_of_pins
);
447 /* warn in case of mismatch if irq base is specified */
448 if (p
->config
.irq_base
) {
449 ret
= irq_find_mapping(p
->irq_domain
, 0);
450 if (p
->config
.irq_base
!= ret
)
451 dev_warn(dev
, "irq base mismatch (%u/%u)\n",
452 p
->config
.irq_base
, ret
);
455 if (p
->config
.pctl_name
) {
456 ret
= gpiochip_add_pin_range(gpio_chip
, p
->config
.pctl_name
, 0,
457 gpio_chip
->base
, gpio_chip
->ngpio
);
459 dev_warn(dev
, "failed to add pin range\n");
465 irq_domain_remove(p
->irq_domain
);
468 pm_runtime_disable(dev
);
472 static int gpio_rcar_remove(struct platform_device
*pdev
)
474 struct gpio_rcar_priv
*p
= platform_get_drvdata(pdev
);
476 gpiochip_remove(&p
->gpio_chip
);
478 irq_domain_remove(p
->irq_domain
);
479 pm_runtime_put(&pdev
->dev
);
480 pm_runtime_disable(&pdev
->dev
);
484 static struct platform_driver gpio_rcar_device_driver
= {
485 .probe
= gpio_rcar_probe
,
486 .remove
= gpio_rcar_remove
,
489 .of_match_table
= of_match_ptr(gpio_rcar_of_table
),
493 module_platform_driver(gpio_rcar_device_driver
);
495 MODULE_AUTHOR("Magnus Damm");
496 MODULE_DESCRIPTION("Renesas R-Car GPIO Driver");
497 MODULE_LICENSE("GPL v2");