diff options
author | Roger Quadros <rogerq@ti.com> | 2016-02-23 17:37:21 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2016-02-26 19:32:14 +0100 |
commit | 03752148384652743069776e7023a8e46ed9164b (patch) | |
tree | c0c7302cb8d2705720a5c536d4924f992fb88116 /arch/arm/boot/dts/am335x-baltos-ir5221.dts | |
parent | ARM: dts: am437x: Disable wait pin monitoring for NAND (diff) | |
download | linux-03752148384652743069776e7023a8e46ed9164b.tar.xz linux-03752148384652743069776e7023a8e46ed9164b.zip |
ARM: dts: am335x: 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.
Cc: Teresa Remmet <t.remmet@phytec.de>
Cc: Ilya Ledvich <ilya@compulab.co.il>
Cc: Yegor Yefremov <yegorslists@googlemail.com>
Cc: Rostislav Lisovy <lisovy@gmail.com>
Cc: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/am335x-baltos-ir5221.dts')
-rw-r--r-- | arch/arm/boot/dts/am335x-baltos-ir5221.dts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/am335x-baltos-ir5221.dts b/arch/arm/boot/dts/am335x-baltos-ir5221.dts index ded1eb64ea52..7b6bcb05db7f 100644 --- a/arch/arm/boot/dts/am335x-baltos-ir5221.dts +++ b/arch/arm/boot/dts/am335x-baltos-ir5221.dts @@ -236,7 +236,11 @@ status = "okay"; nand@0,0 { - reg = <0 0 0>; /* CS0, offset 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 = <8>; ti,nand-ecc-opt = "bch8"; ti,nand-xfer-type = "polled"; |