Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

irqchip: atmel-aic5: Add sama5d2 support

Add sama5d2 support to irq-atmel-aic5.

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: Boris BREZILLON <boris.brezillon@free-electrons.com>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Ludovic Desroches <ludovic.desroches@atmel.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: <linux-arm-kernel@lists.infradead.org>
Link: http://lkml.kernel.org/r/1434632855-27272-1-git-send-email-nicolas.ferre@atmel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Nicolas Ferre and committed by
Thomas Gleixner
62a993df 2aedd0fd

+10 -1
+1 -1
Documentation/devicetree/bindings/interrupt-controller/atmel,aic.txt
··· 2 2 3 3 Required properties: 4 4 - compatible: Should be "atmel,<chip>-aic" 5 - <chip> can be "at91rm9200", "sama5d3" or "sama5d4" 5 + <chip> can be "at91rm9200", "sama5d2", "sama5d3" or "sama5d4" 6 6 - interrupt-controller: Identifies the node as an interrupt controller. 7 7 - interrupt-parent: For single AIC system, it is an empty property. 8 8 - #interrupt-cells: The number of cells to define the interrupts. It should be 3.
+9
drivers/irqchip/irq-atmel-aic5.c
··· 339 339 return 0; 340 340 } 341 341 342 + #define NR_SAMA5D2_IRQS 77 343 + 344 + static int __init sama5d2_aic5_of_init(struct device_node *node, 345 + struct device_node *parent) 346 + { 347 + return aic5_of_init(node, parent, NR_SAMA5D2_IRQS); 348 + } 349 + IRQCHIP_DECLARE(sama5d2_aic5, "atmel,sama5d2-aic", sama5d2_aic5_of_init); 350 + 342 351 #define NR_SAMA5D3_IRQS 48 343 352 344 353 static int __init sama5d3_aic5_of_init(struct device_node *node,