mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 12:32:00 +07:00
4cf2b6abaf
Fixes a number of unit_address_vs_reg warnings: DTC arch/arm/boot/dts/bcm7445-bcm97445svmb.dtb arch/arm/boot/dts/bcm7445.dtsi:66.6-225.4: Warning (unit_address_vs_reg): /rdb: node has a reg or ranges property, but no unit name arch/arm/boot/dts/bcm7445.dtsi:227.21-298.4: Warning (unit_address_vs_reg): /memory_controllers: node has a reg or ranges property, but no unit name arch/arm/boot/dts/bcm7445-bcm97445svmb.dts:9.9-14.4: Warning (unit_address_vs_reg): /memory: node has a reg or ranges property, but no unit name arch/arm/boot/dts/bcm7445.dtsi:255.10-275.5: Warning (simple_bus_reg): /memory_controllers/memc@1: simple-bus unit address format error, expected "80000" arch/arm/boot/dts/bcm7445.dtsi:277.10-297.5: Warning (simple_bus_reg): /memory_controllers/memc@2: simple-bus unit address format error, expected "100000" Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
39 lines
705 B
Plaintext
39 lines
705 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
#include "bcm7445.dtsi"
|
|
|
|
/ {
|
|
model = "Broadcom STB (bcm7445), SVMB reference board";
|
|
compatible = "brcm,bcm7445", "brcm,brcmstb";
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x00 0x00000000 0x00 0x40000000>,
|
|
<0x00 0x40000000 0x00 0x40000000>,
|
|
<0x00 0x80000000 0x00 0x40000000>;
|
|
};
|
|
};
|
|
|
|
&nand {
|
|
status = "okay";
|
|
|
|
nandcs@1 {
|
|
compatible = "brcm,nandcs";
|
|
reg = <1>;
|
|
nand-ecc-step-size = <512>;
|
|
nand-ecc-strength = <8>;
|
|
nand-on-flash-bbt;
|
|
|
|
#size-cells = <2>;
|
|
#address-cells = <2>;
|
|
|
|
flash1.rootfs0@0 {
|
|
reg = <0x0 0x0 0x0 0x80000000>;
|
|
};
|
|
|
|
flash1.rootfs1@80000000 {
|
|
reg = <0x0 0x80000000 0x0 0x80000000>;
|
|
};
|
|
};
|
|
};
|