1 // SPDX-License-Identifier: GPL-2.0
3 * Renesas INTC External IRQ Pin Driver
5 * Copyright (C) 2013 Magnus Damm
8 #include <linux/init.h>
10 #include <linux/platform_device.h>
11 #include <linux/spinlock.h>
12 #include <linux/interrupt.h>
13 #include <linux/ioport.h>
15 #include <linux/irq.h>
16 #include <linux/irqdomain.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/module.h>
20 #include <linux/of_device.h>
21 #include <linux/pm_runtime.h>
23 #define INTC_IRQPIN_MAX 8 /* maximum 8 interrupts per driver instance */
25 #define INTC_IRQPIN_REG_SENSE 0 /* ICRn */
26 #define INTC_IRQPIN_REG_PRIO 1 /* INTPRInn */
27 #define INTC_IRQPIN_REG_SOURCE 2 /* INTREQnn */
28 #define INTC_IRQPIN_REG_MASK 3 /* INTMSKnn */
29 #define INTC_IRQPIN_REG_CLEAR 4 /* INTMSKCLRnn */
30 #define INTC_IRQPIN_REG_NR_MANDATORY 5
31 #define INTC_IRQPIN_REG_IRLM 5 /* ICR0 with IRLM bit (optional) */
32 #define INTC_IRQPIN_REG_NR 6
34 /* INTC external IRQ PIN hardware register access:
36 * SENSE is read-write 32-bit with 2-bits or 4-bits per IRQ (*)
37 * PRIO is read-write 32-bit with 4-bits per IRQ (**)
38 * SOURCE is read-only 32-bit or 8-bit with 1-bit per IRQ (***)
39 * MASK is write-only 32-bit or 8-bit with 1-bit per IRQ (***)
40 * CLEAR is write-only 32-bit or 8-bit with 1-bit per IRQ (***)
42 * (*) May be accessed by more than one driver instance - lock needed
43 * (**) Read-modify-write access by one driver instance - lock needed
44 * (***) Accessed by one driver instance only - no locking needed
47 struct intc_irqpin_iomem
{
49 unsigned long (*read
)(void __iomem
*iomem
);
50 void (*write
)(void __iomem
*iomem
, unsigned long data
);
54 struct intc_irqpin_irq
{
58 struct intc_irqpin_priv
*p
;
61 struct intc_irqpin_priv
{
62 struct intc_irqpin_iomem iomem
[INTC_IRQPIN_REG_NR
];
63 struct intc_irqpin_irq irq
[INTC_IRQPIN_MAX
];
64 unsigned int sense_bitfield_width
;
65 struct platform_device
*pdev
;
66 struct irq_chip irq_chip
;
67 struct irq_domain
*irq_domain
;
69 unsigned shared_irqs
:1;
73 struct intc_irqpin_config
{
74 unsigned int irlm_bit
;
75 unsigned needs_irlm
:1;
78 static unsigned long intc_irqpin_read32(void __iomem
*iomem
)
80 return ioread32(iomem
);
83 static unsigned long intc_irqpin_read8(void __iomem
*iomem
)
85 return ioread8(iomem
);
88 static void intc_irqpin_write32(void __iomem
*iomem
, unsigned long data
)
90 iowrite32(data
, iomem
);
93 static void intc_irqpin_write8(void __iomem
*iomem
, unsigned long data
)
95 iowrite8(data
, iomem
);
98 static inline unsigned long intc_irqpin_read(struct intc_irqpin_priv
*p
,
101 struct intc_irqpin_iomem
*i
= &p
->iomem
[reg
];
103 return i
->read(i
->iomem
);
106 static inline void intc_irqpin_write(struct intc_irqpin_priv
*p
,
107 int reg
, unsigned long data
)
109 struct intc_irqpin_iomem
*i
= &p
->iomem
[reg
];
111 i
->write(i
->iomem
, data
);
114 static inline unsigned long intc_irqpin_hwirq_mask(struct intc_irqpin_priv
*p
,
117 return BIT((p
->iomem
[reg
].width
- 1) - hw_irq
);
120 static inline void intc_irqpin_irq_write_hwirq(struct intc_irqpin_priv
*p
,
123 intc_irqpin_write(p
, reg
, intc_irqpin_hwirq_mask(p
, reg
, hw_irq
));
126 static DEFINE_RAW_SPINLOCK(intc_irqpin_lock
); /* only used by slow path */
128 static void intc_irqpin_read_modify_write(struct intc_irqpin_priv
*p
,
130 int width
, int value
)
135 raw_spin_lock_irqsave(&intc_irqpin_lock
, flags
);
137 tmp
= intc_irqpin_read(p
, reg
);
138 tmp
&= ~(((1 << width
) - 1) << shift
);
139 tmp
|= value
<< shift
;
140 intc_irqpin_write(p
, reg
, tmp
);
142 raw_spin_unlock_irqrestore(&intc_irqpin_lock
, flags
);
145 static void intc_irqpin_mask_unmask_prio(struct intc_irqpin_priv
*p
,
146 int irq
, int do_mask
)
148 /* The PRIO register is assumed to be 32-bit with fixed 4-bit fields. */
149 int bitfield_width
= 4;
150 int shift
= 32 - (irq
+ 1) * bitfield_width
;
152 intc_irqpin_read_modify_write(p
, INTC_IRQPIN_REG_PRIO
,
153 shift
, bitfield_width
,
154 do_mask
? 0 : (1 << bitfield_width
) - 1);
157 static int intc_irqpin_set_sense(struct intc_irqpin_priv
*p
, int irq
, int value
)
159 /* The SENSE register is assumed to be 32-bit. */
160 int bitfield_width
= p
->sense_bitfield_width
;
161 int shift
= 32 - (irq
+ 1) * bitfield_width
;
163 dev_dbg(&p
->pdev
->dev
, "sense irq = %d, mode = %d\n", irq
, value
);
165 if (value
>= (1 << bitfield_width
))
168 intc_irqpin_read_modify_write(p
, INTC_IRQPIN_REG_SENSE
, shift
,
169 bitfield_width
, value
);
173 static void intc_irqpin_dbg(struct intc_irqpin_irq
*i
, char *str
)
175 dev_dbg(&i
->p
->pdev
->dev
, "%s (%d:%d:%d)\n",
176 str
, i
->requested_irq
, i
->hw_irq
, i
->domain_irq
);
179 static void intc_irqpin_irq_enable(struct irq_data
*d
)
181 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
182 int hw_irq
= irqd_to_hwirq(d
);
184 intc_irqpin_dbg(&p
->irq
[hw_irq
], "enable");
185 intc_irqpin_irq_write_hwirq(p
, INTC_IRQPIN_REG_CLEAR
, hw_irq
);
188 static void intc_irqpin_irq_disable(struct irq_data
*d
)
190 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
191 int hw_irq
= irqd_to_hwirq(d
);
193 intc_irqpin_dbg(&p
->irq
[hw_irq
], "disable");
194 intc_irqpin_irq_write_hwirq(p
, INTC_IRQPIN_REG_MASK
, hw_irq
);
197 static void intc_irqpin_shared_irq_enable(struct irq_data
*d
)
199 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
200 int hw_irq
= irqd_to_hwirq(d
);
202 intc_irqpin_dbg(&p
->irq
[hw_irq
], "shared enable");
203 intc_irqpin_irq_write_hwirq(p
, INTC_IRQPIN_REG_CLEAR
, hw_irq
);
205 p
->shared_irq_mask
&= ~BIT(hw_irq
);
208 static void intc_irqpin_shared_irq_disable(struct irq_data
*d
)
210 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
211 int hw_irq
= irqd_to_hwirq(d
);
213 intc_irqpin_dbg(&p
->irq
[hw_irq
], "shared disable");
214 intc_irqpin_irq_write_hwirq(p
, INTC_IRQPIN_REG_MASK
, hw_irq
);
216 p
->shared_irq_mask
|= BIT(hw_irq
);
219 static void intc_irqpin_irq_enable_force(struct irq_data
*d
)
221 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
222 int irq
= p
->irq
[irqd_to_hwirq(d
)].requested_irq
;
224 intc_irqpin_irq_enable(d
);
226 /* enable interrupt through parent interrupt controller,
227 * assumes non-shared interrupt with 1:1 mapping
228 * needed for busted IRQs on some SoCs like sh73a0
230 irq_get_chip(irq
)->irq_unmask(irq_get_irq_data(irq
));
233 static void intc_irqpin_irq_disable_force(struct irq_data
*d
)
235 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
236 int irq
= p
->irq
[irqd_to_hwirq(d
)].requested_irq
;
238 /* disable interrupt through parent interrupt controller,
239 * assumes non-shared interrupt with 1:1 mapping
240 * needed for busted IRQs on some SoCs like sh73a0
242 irq_get_chip(irq
)->irq_mask(irq_get_irq_data(irq
));
243 intc_irqpin_irq_disable(d
);
246 #define INTC_IRQ_SENSE_VALID 0x10
247 #define INTC_IRQ_SENSE(x) (x + INTC_IRQ_SENSE_VALID)
249 static unsigned char intc_irqpin_sense
[IRQ_TYPE_SENSE_MASK
+ 1] = {
250 [IRQ_TYPE_EDGE_FALLING
] = INTC_IRQ_SENSE(0x00),
251 [IRQ_TYPE_EDGE_RISING
] = INTC_IRQ_SENSE(0x01),
252 [IRQ_TYPE_LEVEL_LOW
] = INTC_IRQ_SENSE(0x02),
253 [IRQ_TYPE_LEVEL_HIGH
] = INTC_IRQ_SENSE(0x03),
254 [IRQ_TYPE_EDGE_BOTH
] = INTC_IRQ_SENSE(0x04),
257 static int intc_irqpin_irq_set_type(struct irq_data
*d
, unsigned int type
)
259 unsigned char value
= intc_irqpin_sense
[type
& IRQ_TYPE_SENSE_MASK
];
260 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
262 if (!(value
& INTC_IRQ_SENSE_VALID
))
265 return intc_irqpin_set_sense(p
, irqd_to_hwirq(d
),
266 value
^ INTC_IRQ_SENSE_VALID
);
269 static int intc_irqpin_irq_set_wake(struct irq_data
*d
, unsigned int on
)
271 struct intc_irqpin_priv
*p
= irq_data_get_irq_chip_data(d
);
272 int hw_irq
= irqd_to_hwirq(d
);
274 irq_set_irq_wake(p
->irq
[hw_irq
].requested_irq
, on
);
276 atomic_inc(&p
->wakeup_path
);
278 atomic_dec(&p
->wakeup_path
);
283 static irqreturn_t
intc_irqpin_irq_handler(int irq
, void *dev_id
)
285 struct intc_irqpin_irq
*i
= dev_id
;
286 struct intc_irqpin_priv
*p
= i
->p
;
289 intc_irqpin_dbg(i
, "demux1");
290 bit
= intc_irqpin_hwirq_mask(p
, INTC_IRQPIN_REG_SOURCE
, i
->hw_irq
);
292 if (intc_irqpin_read(p
, INTC_IRQPIN_REG_SOURCE
) & bit
) {
293 intc_irqpin_write(p
, INTC_IRQPIN_REG_SOURCE
, ~bit
);
294 intc_irqpin_dbg(i
, "demux2");
295 generic_handle_irq(i
->domain_irq
);
301 static irqreturn_t
intc_irqpin_shared_irq_handler(int irq
, void *dev_id
)
303 struct intc_irqpin_priv
*p
= dev_id
;
304 unsigned int reg_source
= intc_irqpin_read(p
, INTC_IRQPIN_REG_SOURCE
);
305 irqreturn_t status
= IRQ_NONE
;
308 for (k
= 0; k
< 8; k
++) {
309 if (reg_source
& BIT(7 - k
)) {
310 if (BIT(k
) & p
->shared_irq_mask
)
313 status
|= intc_irqpin_irq_handler(irq
, &p
->irq
[k
]);
321 * This lock class tells lockdep that INTC External IRQ Pin irqs are in a
322 * different category than their parents, so it won't report false recursion.
324 static struct lock_class_key intc_irqpin_irq_lock_class
;
326 /* And this is for the request mutex */
327 static struct lock_class_key intc_irqpin_irq_request_class
;
329 static int intc_irqpin_irq_domain_map(struct irq_domain
*h
, unsigned int virq
,
332 struct intc_irqpin_priv
*p
= h
->host_data
;
334 p
->irq
[hw
].domain_irq
= virq
;
335 p
->irq
[hw
].hw_irq
= hw
;
337 intc_irqpin_dbg(&p
->irq
[hw
], "map");
338 irq_set_chip_data(virq
, h
->host_data
);
339 irq_set_lockdep_class(virq
, &intc_irqpin_irq_lock_class
,
340 &intc_irqpin_irq_request_class
);
341 irq_set_chip_and_handler(virq
, &p
->irq_chip
, handle_level_irq
);
345 static const struct irq_domain_ops intc_irqpin_irq_domain_ops
= {
346 .map
= intc_irqpin_irq_domain_map
,
347 .xlate
= irq_domain_xlate_twocell
,
350 static const struct intc_irqpin_config intc_irqpin_irlm_r8a777x
= {
351 .irlm_bit
= 23, /* ICR0.IRLM0 */
355 static const struct intc_irqpin_config intc_irqpin_rmobile
= {
359 static const struct of_device_id intc_irqpin_dt_ids
[] = {
360 { .compatible
= "renesas,intc-irqpin", },
361 { .compatible
= "renesas,intc-irqpin-r8a7778",
362 .data
= &intc_irqpin_irlm_r8a777x
},
363 { .compatible
= "renesas,intc-irqpin-r8a7779",
364 .data
= &intc_irqpin_irlm_r8a777x
},
365 { .compatible
= "renesas,intc-irqpin-r8a7740",
366 .data
= &intc_irqpin_rmobile
},
367 { .compatible
= "renesas,intc-irqpin-sh73a0",
368 .data
= &intc_irqpin_rmobile
},
371 MODULE_DEVICE_TABLE(of
, intc_irqpin_dt_ids
);
373 static int intc_irqpin_probe(struct platform_device
*pdev
)
375 const struct intc_irqpin_config
*config
;
376 struct device
*dev
= &pdev
->dev
;
377 struct intc_irqpin_priv
*p
;
378 struct intc_irqpin_iomem
*i
;
379 struct resource
*io
[INTC_IRQPIN_REG_NR
];
380 struct resource
*irq
;
381 struct irq_chip
*irq_chip
;
382 void (*enable_fn
)(struct irq_data
*d
);
383 void (*disable_fn
)(struct irq_data
*d
);
384 const char *name
= dev_name(dev
);
391 p
= devm_kzalloc(dev
, sizeof(*p
), GFP_KERNEL
);
395 /* deal with driver instance configuration */
396 of_property_read_u32(dev
->of_node
, "sense-bitfield-width",
397 &p
->sense_bitfield_width
);
398 control_parent
= of_property_read_bool(dev
->of_node
, "control-parent");
399 if (!p
->sense_bitfield_width
)
400 p
->sense_bitfield_width
= 4; /* default to 4 bits */
403 platform_set_drvdata(pdev
, p
);
405 config
= of_device_get_match_data(dev
);
407 pm_runtime_enable(dev
);
408 pm_runtime_get_sync(dev
);
410 /* get hold of register banks */
411 memset(io
, 0, sizeof(io
));
412 for (k
= 0; k
< INTC_IRQPIN_REG_NR
; k
++) {
413 io
[k
] = platform_get_resource(pdev
, IORESOURCE_MEM
, k
);
414 if (!io
[k
] && k
< INTC_IRQPIN_REG_NR_MANDATORY
) {
415 dev_err(dev
, "not enough IOMEM resources\n");
421 /* allow any number of IRQs between 1 and INTC_IRQPIN_MAX */
422 for (k
= 0; k
< INTC_IRQPIN_MAX
; k
++) {
423 irq
= platform_get_resource(pdev
, IORESOURCE_IRQ
, k
);
428 p
->irq
[k
].requested_irq
= irq
->start
;
433 dev_err(dev
, "not enough IRQ resources\n");
438 /* ioremap IOMEM and setup read/write callbacks */
439 for (k
= 0; k
< INTC_IRQPIN_REG_NR
; k
++) {
442 /* handle optional registers */
446 switch (resource_size(io
[k
])) {
449 i
->read
= intc_irqpin_read8
;
450 i
->write
= intc_irqpin_write8
;
454 i
->read
= intc_irqpin_read32
;
455 i
->write
= intc_irqpin_write32
;
458 dev_err(dev
, "IOMEM size mismatch\n");
463 i
->iomem
= devm_ioremap(dev
, io
[k
]->start
,
464 resource_size(io
[k
]));
466 dev_err(dev
, "failed to remap IOMEM\n");
472 /* configure "individual IRQ mode" where needed */
473 if (config
&& config
->needs_irlm
) {
474 if (io
[INTC_IRQPIN_REG_IRLM
])
475 intc_irqpin_read_modify_write(p
, INTC_IRQPIN_REG_IRLM
,
476 config
->irlm_bit
, 1, 1);
478 dev_warn(dev
, "unable to select IRLM mode\n");
481 /* mask all interrupts using priority */
482 for (k
= 0; k
< nirqs
; k
++)
483 intc_irqpin_mask_unmask_prio(p
, k
, 1);
485 /* clear all pending interrupts */
486 intc_irqpin_write(p
, INTC_IRQPIN_REG_SOURCE
, 0x0);
488 /* scan for shared interrupt lines */
489 ref_irq
= p
->irq
[0].requested_irq
;
491 for (k
= 1; k
< nirqs
; k
++) {
492 if (ref_irq
!= p
->irq
[k
].requested_irq
) {
498 /* use more severe masking method if requested */
499 if (control_parent
) {
500 enable_fn
= intc_irqpin_irq_enable_force
;
501 disable_fn
= intc_irqpin_irq_disable_force
;
502 } else if (!p
->shared_irqs
) {
503 enable_fn
= intc_irqpin_irq_enable
;
504 disable_fn
= intc_irqpin_irq_disable
;
506 enable_fn
= intc_irqpin_shared_irq_enable
;
507 disable_fn
= intc_irqpin_shared_irq_disable
;
510 irq_chip
= &p
->irq_chip
;
511 irq_chip
->name
= "intc-irqpin";
512 irq_chip
->parent_device
= dev
;
513 irq_chip
->irq_mask
= disable_fn
;
514 irq_chip
->irq_unmask
= enable_fn
;
515 irq_chip
->irq_set_type
= intc_irqpin_irq_set_type
;
516 irq_chip
->irq_set_wake
= intc_irqpin_irq_set_wake
;
517 irq_chip
->flags
= IRQCHIP_MASK_ON_SUSPEND
;
519 p
->irq_domain
= irq_domain_add_simple(dev
->of_node
, nirqs
, 0,
520 &intc_irqpin_irq_domain_ops
, p
);
521 if (!p
->irq_domain
) {
523 dev_err(dev
, "cannot initialize irq domain\n");
527 if (p
->shared_irqs
) {
528 /* request one shared interrupt */
529 if (devm_request_irq(dev
, p
->irq
[0].requested_irq
,
530 intc_irqpin_shared_irq_handler
,
531 IRQF_SHARED
, name
, p
)) {
532 dev_err(dev
, "failed to request low IRQ\n");
537 /* request interrupts one by one */
538 for (k
= 0; k
< nirqs
; k
++) {
539 if (devm_request_irq(dev
, p
->irq
[k
].requested_irq
,
540 intc_irqpin_irq_handler
, 0, name
,
542 dev_err(dev
, "failed to request low IRQ\n");
549 /* unmask all interrupts on prio level */
550 for (k
= 0; k
< nirqs
; k
++)
551 intc_irqpin_mask_unmask_prio(p
, k
, 0);
553 dev_info(dev
, "driving %d irqs\n", nirqs
);
558 irq_domain_remove(p
->irq_domain
);
561 pm_runtime_disable(dev
);
565 static int intc_irqpin_remove(struct platform_device
*pdev
)
567 struct intc_irqpin_priv
*p
= platform_get_drvdata(pdev
);
569 irq_domain_remove(p
->irq_domain
);
570 pm_runtime_put(&pdev
->dev
);
571 pm_runtime_disable(&pdev
->dev
);
575 static int __maybe_unused
intc_irqpin_suspend(struct device
*dev
)
577 struct intc_irqpin_priv
*p
= dev_get_drvdata(dev
);
579 if (atomic_read(&p
->wakeup_path
))
580 device_set_wakeup_path(dev
);
585 static SIMPLE_DEV_PM_OPS(intc_irqpin_pm_ops
, intc_irqpin_suspend
, NULL
);
587 static struct platform_driver intc_irqpin_device_driver
= {
588 .probe
= intc_irqpin_probe
,
589 .remove
= intc_irqpin_remove
,
591 .name
= "renesas_intc_irqpin",
592 .of_match_table
= intc_irqpin_dt_ids
,
593 .pm
= &intc_irqpin_pm_ops
,
597 static int __init
intc_irqpin_init(void)
599 return platform_driver_register(&intc_irqpin_device_driver
);
601 postcore_initcall(intc_irqpin_init
);
603 static void __exit
intc_irqpin_exit(void)
605 platform_driver_unregister(&intc_irqpin_device_driver
);
607 module_exit(intc_irqpin_exit
);
609 MODULE_AUTHOR("Magnus Damm");
610 MODULE_DESCRIPTION("Renesas INTC External IRQ Pin Driver");
611 MODULE_LICENSE("GPL v2");