mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
cfc8be04c3
Adds NAND device nodes to BCM7xxx MIPS based SoCs. Signed-off-by: Jaedon Shin <jaedon.shin@gmail.com> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: Jonas Gorski <jonas.gorski@gmail.com> Cc: Kevin Cernekee <cernekee@gmail.com> Cc: Rob Herring <robh+dt@kernel.org> Cc: MIPS Mailing List <linux-mips@linux-mips.org> Cc: devicetree@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/14003/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
26 lines
413 B
Plaintext
26 lines
413 B
Plaintext
&nand {
|
|
nandcs@1 {
|
|
compatible = "brcm,nandcs";
|
|
reg = <1>;
|
|
nand-on-flash-bbt;
|
|
|
|
nand-ecc-strength = <4>;
|
|
nand-ecc-step-size = <512>;
|
|
brcm,nand-oob-sector-size = <16>;
|
|
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
flash1.rootfs@0 {
|
|
reg = <0x0 0x10000000>;
|
|
};
|
|
|
|
flash1.kernel@10000000 {
|
|
reg = <0x10000000 0x400000>;
|
|
};
|
|
};
|
|
};
|
|
};
|