diff options
author | Murali Karicheri <m-karicheri2@ti.com> | 2018-03-12 09:10:07 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2018-03-12 15:14:00 +0100 |
commit | 90d4806b8ddfbf0999618244e0cfba61aeafda8c (patch) | |
tree | 6cd366c90ac548793383142617791eb4a305d0af | |
parent | 4cd6847c28c5bce7fb2b4da04b465603d49ceb73 (diff) | |
download | lwn-90d4806b8ddfbf0999618244e0cfba61aeafda8c.tar.gz lwn-90d4806b8ddfbf0999618244e0cfba61aeafda8c.zip |
ARM: dts: Keystone: add ECC error handler support
Add emif node for keystone2 devices, which is used for ECC support.
Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
[t-kristo@ti.com: made emif enabled by default for all keystone2 devices]
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Acked-by: Santosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/boot/dts/keystone-k2g.dtsi | 6 | ||||
-rw-r--r-- | arch/arm/boot/dts/keystone.dtsi | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/keystone-k2g.dtsi b/arch/arm/boot/dts/keystone-k2g.dtsi index dca80ed864c7..da78c0034427 100644 --- a/arch/arm/boot/dts/keystone-k2g.dtsi +++ b/arch/arm/boot/dts/keystone-k2g.dtsi @@ -603,5 +603,11 @@ power-domains = <&k2g_pds 0x22>; clocks = <&k2g_clks 0x22 0>; }; + + emif: emif@21010000 { + compatible = "ti,emif-keystone"; + reg = <0x21010000 0x200>; + interrupts = <GIC_SPI 123 IRQ_TYPE_EDGE_RISING>; + }; }; }; diff --git a/arch/arm/boot/dts/keystone.dtsi b/arch/arm/boot/dts/keystone.dtsi index 5246042f522b..c298675a29a5 100644 --- a/arch/arm/boot/dts/keystone.dtsi +++ b/arch/arm/boot/dts/keystone.dtsi @@ -343,5 +343,12 @@ <GIC_SPI 29 IRQ_TYPE_EDGE_RISING>; }; }; + + emif: emif@21010000 { + compatible = "ti,emif-keystone"; + reg = <0x21010000 0x200>; + interrupts = <GIC_SPI 448 IRQ_TYPE_EDGE_RISING>; + interrupt-parent = <&gic>; + }; }; }; |