mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-09-09 00:06:08 +08:00
Convert IPQ60xx and IPQ807x devices from the old NSS dataplane to the new PPE stack. IPQ50xx is not yet supported. Link: https://github.com/openwrt/openwrt/pull/22381 Signed-off-by: Robert Marko <robimarko@gmail.com>
78 lines
1.2 KiB
Devicetree
78 lines
1.2 KiB
Devicetree
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
/dts-v1/;
|
|
|
|
#include "ipq8174-mx4x00.dtsi"
|
|
|
|
/ {
|
|
model = "Linksys HomeWRK";
|
|
compatible = "linksys,homewrk", "qcom,ipq8074";
|
|
|
|
chosen {
|
|
bootargs-append = " root=/dev/ubiblock0_1";
|
|
};
|
|
};
|
|
|
|
&qpic_nand {
|
|
status = "okay";
|
|
|
|
nand@0 {
|
|
reg = <0>;
|
|
/*
|
|
* Some devices use Micron NAND with with 8 bit ECC
|
|
* other AMD/Spansion NAND with 4 bit ECC
|
|
*nand-ecc-strength = <4>;
|
|
*nand-ecc-step-size = <512>;
|
|
*/
|
|
nand-bus-width = <8>;
|
|
|
|
partitions {
|
|
compatible = "qcom,smem-part";
|
|
|
|
partition-devinfo {
|
|
label = "devinfo";
|
|
read-only;
|
|
|
|
nvmem-layout {
|
|
compatible = "ascii-eq-delim-env";
|
|
|
|
mac_address: mac_address {
|
|
compatible = "mac-base";
|
|
#nvmem-cell-cells = <1>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&swport2 {
|
|
label = "wan";
|
|
nvmem-cells = <&mac_address 0>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&swport3 {
|
|
label = "lan3";
|
|
nvmem-cells = <&mac_address 1>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&swport4 {
|
|
label = "lan2";
|
|
nvmem-cells = <&mac_address 1>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&swport5 {
|
|
label = "lan1";
|
|
nvmem-cells = <&mac_address 1>;
|
|
nvmem-cell-names = "mac-address";
|
|
};
|
|
|
|
&wifi {
|
|
status = "okay";
|
|
|
|
qcom,ath11k-calibration-variant = "Linksys-HomeWRK";
|
|
};
|