diff options
author | Roger Quadros <rogerq@ti.com> | 2016-02-23 17:37:25 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-02-26 19:32:14 +0100 |
commit | 44e4716499b8988a20ba99ba5c871cdbf1c819fd (patch) | |
tree | d1c4994201c69bbfa7d8d4443e2533d9dfd059c3 /arch/arm/boot/dts/omap3-tao3530.dtsi | |
parent | ARM: dts: dm8168-evm: ARM: dts: Disable wait pin monitoring for NAND (diff) | |
download | linux-44e4716499b8988a20ba99ba5c871cdbf1c819fd.tar.xz linux-44e4716499b8988a20ba99ba5c871cdbf1c819fd.zip |
ARM: dts: omap3: Fix NAND device nodes
Add compatible id, GPMC register resource and interrupt
resource to NAND controller nodes.
The GPMC node will provide an interrupt controller for the
NAND IRQs.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/omap3-tao3530.dtsi')
-rw-r--r-- | arch/arm/boot/dts/omap3-tao3530.dtsi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap3-tao3530.dtsi b/arch/arm/boot/dts/omap3-tao3530.dtsi index ae5dbbd9d569..644d3c8ea66a 100644 --- a/arch/arm/boot/dts/omap3-tao3530.dtsi +++ b/arch/arm/boot/dts/omap3-tao3530.dtsi @@ -275,10 +275,14 @@ }; &gpmc { - ranges = <0 0 0x00000000 0x01000000>; + ranges = <0 0 0x30000000 0x01000000>; /* CS0: 16MB for NAND */ nand@0,0 { + compatible = "ti,omap2-nand"; reg = <0 0 4>; /* CS0, offset 0, IO size 4 */ + interrupt-parent = <&gpmc>; + interrupts = <0 IRQ_TYPE_NONE>, /* fifoevent */ + <1 IRQ_TYPE_NONE>; /* termcount */ nand-bus-width = <16>; gpmc,device-width = <2>; /* GPMC_DEVWIDTH_16BIT */ ti,nand-ecc-opt = "sw"; |