diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2019-03-15 15:14:39 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-22 11:55:58 -0400 |
commit | d8d9bfb90b772de28c2dea3a1e9338eb46ba42c2 (patch) | |
tree | c2ab7e6bda7e17de3270f55f2fc4fad91d207d4b /arch/mips | |
parent | f917438772c7c7da7f30e9209d9f100edac0255e (diff) | |
download | u-boot-d8d9bfb90b772de28c2dea3a1e9338eb46ba42c2.tar.gz |
dt: bcm6838: add nand controller
Add the nand controller in the bcm6838 device tree.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/dts/brcm,bcm6838.dtsi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/mips/dts/brcm,bcm6838.dtsi b/arch/mips/dts/brcm,bcm6838.dtsi index c060802e8a..6676f83b2a 100644 --- a/arch/mips/dts/brcm,bcm6838.dtsi +++ b/arch/mips/dts/brcm,bcm6838.dtsi @@ -125,5 +125,18 @@ status = "disabled"; }; + + nand: nand-controller@14e02200 { + #address-cells = <1>; + #size-cells = <0>; + compatible = "brcm,nand-bcm6838", + "brcm,brcmnand-v5.0", + "brcm,brcmnand"; + reg-names = "nand", "nand-int-base", "nand-cache"; + reg = <0x14e02200 0x180>, + <0x14e000f0 0x10>, + <0x14e02600 0x180>; + status = "disabled"; + }; }; }; |