summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-davinci/dm646x.c
diff options
context:
space:
mode:
authorBartosz Golaszewski2019-02-14 15:52:10 +0100
committerSekhar Nori2019-02-19 15:25:16 +0100
commitfd0f4275864d32a5150426bc73247901f5cc9b1b (patch)
tree5cbe416b66b415a3e0a7e99269a81f6926ff4902 /arch/arm/mach-davinci/dm646x.c
parentirqchip: davinci-aintc: add a new config structure (diff)
downloadkernel-qcow2-linux-fd0f4275864d32a5150426bc73247901f5cc9b1b.tar.gz
kernel-qcow2-linux-fd0f4275864d32a5150426bc73247901f5cc9b1b.tar.xz
kernel-qcow2-linux-fd0f4275864d32a5150426bc73247901f5cc9b1b.zip
ARM: davinci: aintc: use the new irqchip config structure in dm* SoCs
Add the new-style config structures for dm* SoCs. They will be used once we make the aintc driver stop using davinci_soc_info. Reviewed-by: David Lechner <david@lechnology.com> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm646x.c')
-rw-r--r--arch/arm/mach-davinci/dm646x.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c
index 98fc5e3815b9..4e871d00e4e9 100644
--- a/arch/arm/mach-davinci/dm646x.c
+++ b/arch/arm/mach-davinci/dm646x.c
@@ -15,6 +15,7 @@
#include <linux/dma-mapping.h>
#include <linux/dmaengine.h>
#include <linux/init.h>
+#include <linux/irqchip/irq-davinci-aintc.h>
#include <linux/platform_data/edma.h>
#include <linux/platform_data/gpio-davinci.h>
#include <linux/platform_device.h>
@@ -689,6 +690,16 @@ void __init dm646x_register_clocks(void)
platform_device_register(&dm646x_pll2_device);
}
+static const struct davinci_aintc_config dm646x_aintc_config = {
+ .reg = {
+ .start = DAVINCI_ARM_INTC_BASE,
+ .end = DAVINCI_ARM_INTC_BASE + SZ_4K - 1,
+ .flags = IORESOURCE_MEM,
+ },
+ .num_irqs = 64,
+ .prios = dm646x_default_priorities,
+};
+
void __init dm646x_init_irq(void)
{
davinci_aintc_init();