blob: 9fc62081e2e671af1174c297b5da28078c01a258 (
plain) (
tree)
|
|
/dts-v1/;
/ {
description = "J721e FIT Image Source";
#address-cells = <1>;
images {
kernel@1 {
description = "LCPD kernel";
data = /incbin/("Image");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x80080000>;
entry = <0x80080000>;
};
ramdisk@1 {
description = "Android Ramdisk Image";
data = /incbin/("ramdisk.img");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "none";
};
fdt@1 {
description = "J721e Common Processor Board";
data = /incbin/("k3-j721e-common-proc-board.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x83000000>;
};
fdt@2 {
description = "J721E Alpha Processor Board";
data = /incbin/("k3-j721e-proc-board-tps65917.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x83000000>;
};
fdt@3 {
description = "J721E Infotainment Expansion Overlay";
data = /incbin/("k3-j721e-common-proc-board-infotainment.dtbo");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x83080000>;
};
};
configurations {
default = "k3-j721e-common-proc-board.dtb";
k3-j721e-common-proc-board.dtb {
description = "J721e Common Processor Board";
kernel = "kernel@1";
ramdisk = "ramdisk@1";
fdt = "fdt@1";
};
k3-j721e-proc-board-tps65917.dtb {
description = "J721e Alpha Processor Board";
kernel = "kernel@1";
ramdisk = "ramdisk@1";
fdt = "fdt@2";
};
k3-j721e-common-proc-board-infotainment.dtbo {
fdt = "fdt@3";
};
};
};
|