2 * Copyright (C) 2017 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/bitops.h>
16 #include <linux/gpio/driver.h>
17 #include <linux/irq.h>
18 #include <linux/irqdomain.h>
19 #include <linux/module.h>
21 #include <linux/of_device.h>
22 #include <linux/of_irq.h>
23 #include <linux/platform_device.h>
24 #include <linux/spinlock.h>
25 #include <dt-bindings/gpio/uniphier-gpio.h>
27 #define UNIPHIER_GPIO_BANK_MASK \
28 GENMASK((UNIPHIER_GPIO_LINES_PER_BANK) - 1, 0)
30 #define UNIPHIER_GPIO_IRQ_MAX_NUM 24
32 #define UNIPHIER_GPIO_PORT_DATA 0x0 /* data */
33 #define UNIPHIER_GPIO_PORT_DIR 0x4 /* direction (1:in, 0:out) */
34 #define UNIPHIER_GPIO_IRQ_EN 0x90 /* irq enable */
35 #define UNIPHIER_GPIO_IRQ_MODE 0x94 /* irq mode (1: both edge) */
36 #define UNIPHIER_GPIO_IRQ_FLT_EN 0x98 /* noise filter enable */
37 #define UNIPHIER_GPIO_IRQ_FLT_CYC 0x9c /* noise filter clock cycle */
39 struct uniphier_gpio_priv
{
40 struct gpio_chip chip
;
41 struct irq_chip irq_chip
;
42 struct irq_domain
*domain
;
48 static unsigned int uniphier_gpio_bank_to_reg(unsigned int bank
)
55 * Unfortunately, the GPIO port registers are not contiguous because
56 * offset 0x90-0x9f is used for IRQ. Add 0x10 when crossing the region.
58 if (reg
>= UNIPHIER_GPIO_IRQ_EN
)
64 static void uniphier_gpio_get_bank_and_mask(unsigned int offset
,
65 unsigned int *bank
, u32
*mask
)
67 *bank
= offset
/ UNIPHIER_GPIO_LINES_PER_BANK
;
68 *mask
= BIT(offset
% UNIPHIER_GPIO_LINES_PER_BANK
);
71 static void uniphier_gpio_reg_update(struct uniphier_gpio_priv
*priv
,
72 unsigned int reg
, u32 mask
, u32 val
)
77 spin_lock_irqsave(&priv
->lock
, flags
);
78 tmp
= readl(priv
->regs
+ reg
);
81 writel(tmp
, priv
->regs
+ reg
);
82 spin_unlock_irqrestore(&priv
->lock
, flags
);
85 static void uniphier_gpio_bank_write(struct gpio_chip
*chip
, unsigned int bank
,
86 unsigned int reg
, u32 mask
, u32 val
)
88 struct uniphier_gpio_priv
*priv
= gpiochip_get_data(chip
);
93 uniphier_gpio_reg_update(priv
, uniphier_gpio_bank_to_reg(bank
) + reg
,
97 static void uniphier_gpio_offset_write(struct gpio_chip
*chip
,
98 unsigned int offset
, unsigned int reg
,
104 uniphier_gpio_get_bank_and_mask(offset
, &bank
, &mask
);
106 uniphier_gpio_bank_write(chip
, bank
, reg
, mask
, val
? mask
: 0);
109 static int uniphier_gpio_offset_read(struct gpio_chip
*chip
,
110 unsigned int offset
, unsigned int reg
)
112 struct uniphier_gpio_priv
*priv
= gpiochip_get_data(chip
);
113 unsigned int bank
, reg_offset
;
116 uniphier_gpio_get_bank_and_mask(offset
, &bank
, &mask
);
117 reg_offset
= uniphier_gpio_bank_to_reg(bank
) + reg
;
119 return !!(readl(priv
->regs
+ reg_offset
) & mask
);
122 static int uniphier_gpio_get_direction(struct gpio_chip
*chip
,
125 return uniphier_gpio_offset_read(chip
, offset
, UNIPHIER_GPIO_PORT_DIR
);
128 static int uniphier_gpio_direction_input(struct gpio_chip
*chip
,
131 uniphier_gpio_offset_write(chip
, offset
, UNIPHIER_GPIO_PORT_DIR
, 1);
136 static int uniphier_gpio_direction_output(struct gpio_chip
*chip
,
137 unsigned int offset
, int val
)
139 uniphier_gpio_offset_write(chip
, offset
, UNIPHIER_GPIO_PORT_DATA
, val
);
140 uniphier_gpio_offset_write(chip
, offset
, UNIPHIER_GPIO_PORT_DIR
, 0);
145 static int uniphier_gpio_get(struct gpio_chip
*chip
, unsigned int offset
)
147 return uniphier_gpio_offset_read(chip
, offset
, UNIPHIER_GPIO_PORT_DATA
);
150 static void uniphier_gpio_set(struct gpio_chip
*chip
,
151 unsigned int offset
, int val
)
153 uniphier_gpio_offset_write(chip
, offset
, UNIPHIER_GPIO_PORT_DATA
, val
);
156 static void uniphier_gpio_set_multiple(struct gpio_chip
*chip
,
157 unsigned long *mask
, unsigned long *bits
)
159 unsigned int bank
, shift
, bank_mask
, bank_bits
;
162 for (i
= 0; i
< chip
->ngpio
; i
+= UNIPHIER_GPIO_LINES_PER_BANK
) {
163 bank
= i
/ UNIPHIER_GPIO_LINES_PER_BANK
;
164 shift
= i
% BITS_PER_LONG
;
165 bank_mask
= (mask
[BIT_WORD(i
)] >> shift
) &
166 UNIPHIER_GPIO_BANK_MASK
;
167 bank_bits
= bits
[BIT_WORD(i
)] >> shift
;
169 uniphier_gpio_bank_write(chip
, bank
, UNIPHIER_GPIO_PORT_DATA
,
170 bank_mask
, bank_bits
);
174 static int uniphier_gpio_to_irq(struct gpio_chip
*chip
, unsigned int offset
)
176 struct irq_fwspec fwspec
;
178 if (offset
< UNIPHIER_GPIO_IRQ_OFFSET
)
181 fwspec
.fwnode
= of_node_to_fwnode(chip
->parent
->of_node
);
182 fwspec
.param_count
= 2;
183 fwspec
.param
[0] = offset
- UNIPHIER_GPIO_IRQ_OFFSET
;
184 fwspec
.param
[1] = IRQ_TYPE_NONE
;
186 return irq_create_fwspec_mapping(&fwspec
);
189 static void uniphier_gpio_irq_mask(struct irq_data
*data
)
191 struct uniphier_gpio_priv
*priv
= data
->chip_data
;
192 u32 mask
= BIT(data
->hwirq
);
194 uniphier_gpio_reg_update(priv
, UNIPHIER_GPIO_IRQ_EN
, mask
, 0);
196 return irq_chip_mask_parent(data
);
199 static void uniphier_gpio_irq_unmask(struct irq_data
*data
)
201 struct uniphier_gpio_priv
*priv
= data
->chip_data
;
202 u32 mask
= BIT(data
->hwirq
);
204 uniphier_gpio_reg_update(priv
, UNIPHIER_GPIO_IRQ_EN
, mask
, mask
);
206 return irq_chip_unmask_parent(data
);
209 static int uniphier_gpio_irq_set_type(struct irq_data
*data
, unsigned int type
)
211 struct uniphier_gpio_priv
*priv
= data
->chip_data
;
212 u32 mask
= BIT(data
->hwirq
);
215 if (type
== IRQ_TYPE_EDGE_BOTH
) {
217 type
= IRQ_TYPE_EDGE_FALLING
;
220 uniphier_gpio_reg_update(priv
, UNIPHIER_GPIO_IRQ_MODE
, mask
, val
);
221 /* To enable both edge detection, the noise filter must be enabled. */
222 uniphier_gpio_reg_update(priv
, UNIPHIER_GPIO_IRQ_FLT_EN
, mask
, val
);
224 return irq_chip_set_type_parent(data
, type
);
227 static int uniphier_gpio_irq_get_parent_hwirq(struct uniphier_gpio_priv
*priv
,
230 struct device_node
*np
= priv
->chip
.parent
->of_node
;
232 u32 base
, parent_base
, size
;
235 range
= of_get_property(np
, "socionext,interrupt-ranges", &len
);
239 len
/= sizeof(*range
);
241 for (; len
>= 3; len
-= 3) {
242 base
= be32_to_cpu(*range
++);
243 parent_base
= be32_to_cpu(*range
++);
244 size
= be32_to_cpu(*range
++);
246 if (base
<= hwirq
&& hwirq
< base
+ size
)
247 return hwirq
- base
+ parent_base
;
253 static int uniphier_gpio_irq_domain_translate(struct irq_domain
*domain
,
254 struct irq_fwspec
*fwspec
,
255 unsigned long *out_hwirq
,
256 unsigned int *out_type
)
258 if (WARN_ON(fwspec
->param_count
< 2))
261 *out_hwirq
= fwspec
->param
[0];
262 *out_type
= fwspec
->param
[1] & IRQ_TYPE_SENSE_MASK
;
267 static int uniphier_gpio_irq_domain_alloc(struct irq_domain
*domain
,
269 unsigned int nr_irqs
, void *arg
)
271 struct uniphier_gpio_priv
*priv
= domain
->host_data
;
272 struct irq_fwspec parent_fwspec
;
273 irq_hw_number_t hwirq
;
277 if (WARN_ON(nr_irqs
!= 1))
280 ret
= uniphier_gpio_irq_domain_translate(domain
, arg
, &hwirq
, &type
);
284 ret
= uniphier_gpio_irq_get_parent_hwirq(priv
, hwirq
);
288 /* parent is UniPhier AIDET */
289 parent_fwspec
.fwnode
= domain
->parent
->fwnode
;
290 parent_fwspec
.param_count
= 2;
291 parent_fwspec
.param
[0] = ret
;
292 parent_fwspec
.param
[1] = (type
== IRQ_TYPE_EDGE_BOTH
) ?
293 IRQ_TYPE_EDGE_FALLING
: type
;
295 ret
= irq_domain_set_hwirq_and_chip(domain
, virq
, hwirq
,
296 &priv
->irq_chip
, priv
);
300 return irq_domain_alloc_irqs_parent(domain
, virq
, 1, &parent_fwspec
);
303 static int uniphier_gpio_irq_domain_activate(struct irq_domain
*domain
,
304 struct irq_data
*data
, bool early
)
306 struct uniphier_gpio_priv
*priv
= domain
->host_data
;
307 struct gpio_chip
*chip
= &priv
->chip
;
309 gpiochip_lock_as_irq(chip
, data
->hwirq
+ UNIPHIER_GPIO_IRQ_OFFSET
);
313 static void uniphier_gpio_irq_domain_deactivate(struct irq_domain
*domain
,
314 struct irq_data
*data
)
316 struct uniphier_gpio_priv
*priv
= domain
->host_data
;
317 struct gpio_chip
*chip
= &priv
->chip
;
319 gpiochip_unlock_as_irq(chip
, data
->hwirq
+ UNIPHIER_GPIO_IRQ_OFFSET
);
322 static const struct irq_domain_ops uniphier_gpio_irq_domain_ops
= {
323 .alloc
= uniphier_gpio_irq_domain_alloc
,
324 .free
= irq_domain_free_irqs_common
,
325 .activate
= uniphier_gpio_irq_domain_activate
,
326 .deactivate
= uniphier_gpio_irq_domain_deactivate
,
327 .translate
= uniphier_gpio_irq_domain_translate
,
330 static void uniphier_gpio_hw_init(struct uniphier_gpio_priv
*priv
)
333 * Due to the hardware design, the noise filter must be enabled to
334 * detect both edge interrupts. This filter is intended to remove the
335 * noise from the irq lines. It does not work for GPIO input, so GPIO
336 * debounce is not supported. Unfortunately, the filter period is
337 * shared among all irq lines. Just choose a sensible period here.
339 writel(0xff, priv
->regs
+ UNIPHIER_GPIO_IRQ_FLT_CYC
);
342 static unsigned int uniphier_gpio_get_nbanks(unsigned int ngpio
)
344 return DIV_ROUND_UP(ngpio
, UNIPHIER_GPIO_LINES_PER_BANK
);
347 static int uniphier_gpio_probe(struct platform_device
*pdev
)
349 struct device
*dev
= &pdev
->dev
;
350 struct device_node
*parent_np
;
351 struct irq_domain
*parent_domain
;
352 struct uniphier_gpio_priv
*priv
;
353 struct gpio_chip
*chip
;
354 struct irq_chip
*irq_chip
;
355 struct resource
*regs
;
360 parent_np
= of_irq_find_parent(dev
->of_node
);
364 parent_domain
= irq_find_host(parent_np
);
365 of_node_put(parent_np
);
367 return -EPROBE_DEFER
;
369 ret
= of_property_read_u32(dev
->of_node
, "ngpios", &ngpios
);
373 nregs
= uniphier_gpio_get_nbanks(ngpios
) * 2 + 3;
374 priv
= devm_kzalloc(dev
,
375 sizeof(*priv
) + sizeof(priv
->saved_vals
[0]) * nregs
,
380 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
381 priv
->regs
= devm_ioremap_resource(dev
, regs
);
382 if (IS_ERR(priv
->regs
))
383 return PTR_ERR(priv
->regs
);
385 spin_lock_init(&priv
->lock
);
388 chip
->label
= dev_name(dev
);
390 chip
->request
= gpiochip_generic_request
;
391 chip
->free
= gpiochip_generic_free
;
392 chip
->get_direction
= uniphier_gpio_get_direction
;
393 chip
->direction_input
= uniphier_gpio_direction_input
;
394 chip
->direction_output
= uniphier_gpio_direction_output
;
395 chip
->get
= uniphier_gpio_get
;
396 chip
->set
= uniphier_gpio_set
;
397 chip
->set_multiple
= uniphier_gpio_set_multiple
;
398 chip
->to_irq
= uniphier_gpio_to_irq
;
400 chip
->ngpio
= ngpios
;
402 irq_chip
= &priv
->irq_chip
;
403 irq_chip
->name
= dev_name(dev
);
404 irq_chip
->irq_mask
= uniphier_gpio_irq_mask
;
405 irq_chip
->irq_unmask
= uniphier_gpio_irq_unmask
;
406 irq_chip
->irq_eoi
= irq_chip_eoi_parent
;
407 irq_chip
->irq_set_affinity
= irq_chip_set_affinity_parent
;
408 irq_chip
->irq_set_type
= uniphier_gpio_irq_set_type
;
410 uniphier_gpio_hw_init(priv
);
412 ret
= devm_gpiochip_add_data(dev
, chip
, priv
);
416 priv
->domain
= irq_domain_create_hierarchy(
418 UNIPHIER_GPIO_IRQ_MAX_NUM
,
419 of_node_to_fwnode(dev
->of_node
),
420 &uniphier_gpio_irq_domain_ops
, priv
);
424 platform_set_drvdata(pdev
, priv
);
429 static int uniphier_gpio_remove(struct platform_device
*pdev
)
431 struct uniphier_gpio_priv
*priv
= platform_get_drvdata(pdev
);
433 irq_domain_remove(priv
->domain
);
438 static int __maybe_unused
uniphier_gpio_suspend(struct device
*dev
)
440 struct uniphier_gpio_priv
*priv
= dev_get_drvdata(dev
);
441 unsigned int nbanks
= uniphier_gpio_get_nbanks(priv
->chip
.ngpio
);
442 u32
*val
= priv
->saved_vals
;
446 for (i
= 0; i
< nbanks
; i
++) {
447 reg
= uniphier_gpio_bank_to_reg(i
);
449 *val
++ = readl(priv
->regs
+ reg
+ UNIPHIER_GPIO_PORT_DATA
);
450 *val
++ = readl(priv
->regs
+ reg
+ UNIPHIER_GPIO_PORT_DIR
);
453 *val
++ = readl(priv
->regs
+ UNIPHIER_GPIO_IRQ_EN
);
454 *val
++ = readl(priv
->regs
+ UNIPHIER_GPIO_IRQ_MODE
);
455 *val
++ = readl(priv
->regs
+ UNIPHIER_GPIO_IRQ_FLT_EN
);
460 static int __maybe_unused
uniphier_gpio_resume(struct device
*dev
)
462 struct uniphier_gpio_priv
*priv
= dev_get_drvdata(dev
);
463 unsigned int nbanks
= uniphier_gpio_get_nbanks(priv
->chip
.ngpio
);
464 const u32
*val
= priv
->saved_vals
;
468 for (i
= 0; i
< nbanks
; i
++) {
469 reg
= uniphier_gpio_bank_to_reg(i
);
471 writel(*val
++, priv
->regs
+ reg
+ UNIPHIER_GPIO_PORT_DATA
);
472 writel(*val
++, priv
->regs
+ reg
+ UNIPHIER_GPIO_PORT_DIR
);
475 writel(*val
++, priv
->regs
+ UNIPHIER_GPIO_IRQ_EN
);
476 writel(*val
++, priv
->regs
+ UNIPHIER_GPIO_IRQ_MODE
);
477 writel(*val
++, priv
->regs
+ UNIPHIER_GPIO_IRQ_FLT_EN
);
479 uniphier_gpio_hw_init(priv
);
484 static const struct dev_pm_ops uniphier_gpio_pm_ops
= {
485 SET_LATE_SYSTEM_SLEEP_PM_OPS(uniphier_gpio_suspend
,
486 uniphier_gpio_resume
)
489 static const struct of_device_id uniphier_gpio_match
[] = {
490 { .compatible
= "socionext,uniphier-gpio" },
493 MODULE_DEVICE_TABLE(of
, uniphier_gpio_match
);
495 static struct platform_driver uniphier_gpio_driver
= {
496 .probe
= uniphier_gpio_probe
,
497 .remove
= uniphier_gpio_remove
,
499 .name
= "uniphier-gpio",
500 .of_match_table
= uniphier_gpio_match
,
501 .pm
= &uniphier_gpio_pm_ops
,
504 module_platform_driver(uniphier_gpio_driver
);
506 MODULE_AUTHOR("Masahiro Yamada <yamada.masahiro@socionext.com>");
507 MODULE_DESCRIPTION("UniPhier GPIO driver");
508 MODULE_LICENSE("GPL v2");