]> git.baikalelectronics.ru Git - kernel.git/commitdiff
irqchip/bcm: Restore registration print with %pOF
authorFlorian Fainelli <f.fainelli@gmail.com>
Wed, 20 Mar 2019 19:39:19 +0000 (12:39 -0700)
committerMarc Zyngier <marc.zyngier@arm.com>
Mon, 29 Apr 2019 14:00:02 +0000 (15:00 +0100)
It is useful to print which interrupt controllers are registered in the
system and which parent IRQ they use, especially given that L2 interrupt
controllers do not call request_irq() on their parent interrupt and do
not appear under /proc/interrupts for that reason.

We used to print the base register address virtual address which had
little value, use %pOF to print the path to the Device Tree node which
maps to the physical address more easily and is what people need to
troubleshoot systems.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
drivers/irqchip/irq-bcm7038-l1.c
drivers/irqchip/irq-bcm7120-l2.c
drivers/irqchip/irq-brcmstb-l2.c

index 0f6e30e9009da533c6a4bc6c3cf5e79fe2ae748c..0acebac1920b5756d5da391c396c8d443131000b 100644 (file)
@@ -343,6 +343,9 @@ int __init bcm7038_l1_of_init(struct device_node *dn,
                goto out_unmap;
        }
 
+       pr_info("registered BCM7038 L1 intc (%pOF, IRQs: %d)\n",
+               dn, IRQS_PER_WORD * intc->n_words);
+
        return 0;
 
 out_unmap:
index 8968e5e93fcb8e3bf478329b765c149a47153cd0..541bdca9f4af5eabe43d286a32af1083a67e9619 100644 (file)
@@ -318,6 +318,9 @@ static int __init bcm7120_l2_intc_probe(struct device_node *dn,
                }
        }
 
+       pr_info("registered %s intc (%pOF, parent IRQ(s): %d)\n",
+               intc_name, dn, data->num_parent_irqs);
+
        return 0;
 
 out_free_domain:
index 5e4ca139e4eacaa70eb5cba5b7ce4124aed93381..a0642b59befa5875e2320b7c4eb4d04d9aaf704a 100644 (file)
@@ -264,6 +264,8 @@ static int __init brcmstb_l2_intc_of_init(struct device_node *np,
                ct->chip.irq_set_wake = irq_gc_set_wake;
        }
 
+       pr_info("registered L2 intc (%pOF, parent irq: %d)\n", np, parent_irq);
+
        return 0;
 
 out_free_domain: