mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
e8bd76dccd
During the removal of the skeleton.dtsi file with commitabe60a3a7a
("ARM: dts: Kill off skeleton{64}.dtsi") a number of Broadcom SoCs were converted, but a few were left unoticed, now causing boot failures with v5.1 since the kernel cannot find suitable memory. Updating the .dtsi files with the property will be done next, since there are some memory nodes that do not follow the proper naming convention and lack an unit name. Fixes:abe60a3a7a
("ARM: dts: Kill off skeleton{64}.dtsi") Reported-by: Kevin Hilman <khilman@kernel.org> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
73 lines
1.2 KiB
Plaintext
73 lines
1.2 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
/*
|
|
* Copyright (C) 2017 Hamster Tian <haotia@gmail.com>
|
|
* Copyright (C) 2019 Hao Dong <halbertdong@gmail.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "bcm47094.dtsi"
|
|
#include "bcm5301x-nand-cs0-bch4.dtsi"
|
|
|
|
/ {
|
|
compatible = "phicomm,k3", "brcm,bcm47094", "brcm,bcm4708";
|
|
model = "Phicomm K3";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x08000000
|
|
0x88000000 0x18000000>;
|
|
};
|
|
|
|
gpio-keys {
|
|
compatible = "gpio-keys";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
restart {
|
|
label = "Reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&usb3_phy {
|
|
status = "okay";
|
|
};
|
|
|
|
&nandcs {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partition@0 {
|
|
label = "boot";
|
|
reg = <0x0000000 0x0080000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@80000 {
|
|
label = "nvram";
|
|
reg = <0x0080000 0x0100000>;
|
|
};
|
|
|
|
partition@180000{
|
|
label = "phicomm";
|
|
reg = <0x0180000 0x0280000>;
|
|
read-only;
|
|
};
|
|
|
|
partition@400000 {
|
|
label = "firmware";
|
|
reg = <0x0400000 0x7C00000>;
|
|
compatible = "brcm,trx";
|
|
};
|
|
};
|
|
};
|