mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 16:31:13 +00:00
50 lines
903 B
Plaintext
50 lines
903 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
#include "qca9533_qca_ap143.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Qualcomm Atheros AP143 (16M) reference board";
|
||
|
compatible = "qca,ap143-16m", "qca,qca9533";
|
||
|
|
||
|
virtual_flash {
|
||
|
compatible = "mtd-concat";
|
||
|
devices = <&fwconcat0 &fwconcat1>;
|
||
|
|
||
|
partitions {
|
||
|
compatible = "fixed-partitions";
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <1>;
|
||
|
|
||
|
partition@0 {
|
||
|
reg = <0x0 0x0>;
|
||
|
label = "firmware";
|
||
|
compatible = "openwrt,uimage", "denx,uimage";
|
||
|
openwrt,ih-magic = <IH_MAGIC_OKLI>;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&partitions {
|
||
|
fwconcat0: partition@50000 {
|
||
|
label = "fwconcat0";
|
||
|
reg = <0x050000 0xe30000>;
|
||
|
};
|
||
|
|
||
|
partition@e80000 {
|
||
|
label = "loader";
|
||
|
reg = <0xe80000 0x10000>;
|
||
|
};
|
||
|
|
||
|
fwconcat1: partition@e90000 {
|
||
|
label = "fwconcat1";
|
||
|
reg = <0xe90000 0x160000>;
|
||
|
};
|
||
|
|
||
|
art: partition@ff0000 {
|
||
|
label = "art";
|
||
|
reg = <0xff0000 0x010000>;
|
||
|
read-only;
|
||
|
};
|
||
|
};
|