sonic-buildimage/platform/marvell-arm64/sonic_fit.its
Pavan Naregundi 307e39bde4
[Marvell-arm64] Add platform support for rd98DX35xx (#16874)
* [Marvell-arm64] Add platform support for rd98DX35xx

This change adds following two variants of rd98DX35xx board to arm64
build.

Board with CPU integrated into the 98DX35xx switching chip:

 Platform: arm64-marvell_rd98DX35xx-r0
 HwSKU: rd98DX35xx
 ASIC: marvell
 Port Config: 32x1G + 16x2.5G + 6x25G

Board with external CN9131 CPU connected over PCI to 98DX35xx
switching chip:

 Platform: arm64-marvell_rd98DX35xx_cn9131-r0
 HwSKU: rd98DX35xx_cn9131
 ASIC: marvell
 Port Config: 32x1G + 16x2.5G + 6x25G

Change-Id: I21dc9fe972417daaabb20a5bddf7779d72b7972e
Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>

* Add HWSKU for rd98DX35xx and rd98DX35xx_cn9131

This patch adds new HWSKU's for Marvell arm64 platforms rd98DX35xx
and rd98DX35xx_cn9131.

Change-Id: Id7c14f49f0e304335cc4ca73dcae52362c49d231
Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>

---------

Signed-off-by: Pavan Naregundi <pnaregundi@marvell.com>
2023-11-20 09:43:02 -08:00

126 lines
3.7 KiB
Plaintext

/dts-v1/;
/ {
description = "U-Boot fitImage for SONIC Marvell Arm64";
#address-cells = <1>;
images {
kernel_ac5x {
description = "Linux Kernel for AC5x";
data = /incbin/("/boot/vmlinuz-5.10.0-23-2-arm64");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x2 0x2080000>;
entry = <0x2 0x2080000>;
hash@1 {
algo = "sha1";
};
};
fdt_ac5x {
description = "Flattened Device Tree blob for AC5x";
data = /incbin/("/usr/lib/linux-image-5.10.0-23-2-arm64/marvell/ac5-98dx35xx-rd.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x2 0x1000000>;
hash@1 {
algo = "sha1";
};
};
fdt_7215_a1 {
description = "Flattened Device Tree blob for 7215_IXS_A1";
data = /incbin/("/usr/lib/linux-image-5.10.0-23-2-arm64/marvell/7215-ixs-a1.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x2 0x1000000>;
hash@1 {
algo = "sha1";
};
};
ramdisk_ac5x {
description = "ramdisk for AC5x";
data = /incbin/("/boot/initrd.img-5.10.0-23-2-arm64");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x2 0x6000000>;
entry = <0x2 0x6000000>;
hash@1 {
algo = "sha1";
};
};
kernel_1 {
description = "Linux Kernel";
data = /incbin/("/boot/vmlinuz-5.10.0-23-2-arm64");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
load = <0x2000000>;
entry = <0x2000000>;
hash@1 {
algo = "sha1";
};
};
ramdisk_1 {
description = "ramdisk";
data = /incbin/("/boot/initrd.img-5.10.0-23-2-arm64");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x6000000>;
entry = <0x6000000>;
hash@1 {
algo = "sha1";
};
};
fdt_cn9131 {
description = "Flattened Device Tree blob";
data = /incbin/("/boot/cn9131-db-comexpress.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x1000000>;
entry = <0x1000000>;
hash@1 {
algo = "sha1";
};
};
};
configurations {
default = "conf_ac5x";
conf_ac5x {
description = "Boot Linux kernel with FDT blob + ramdisk for RD_AC5x";
kernel = "kernel_ac5x";
fdt = "fdt_ac5x";
ramdisk = "ramdisk_ac5x";
hash@1 {
algo = "sha1";
};
};
conf_7215_a1 {
description = "Boot Linux kernel with FDT blob + ramdisk for 7125_IXS_A1";
kernel = "kernel_ac5x";
fdt = "fdt_7215_a1";
ramdisk = "ramdisk_ac5x";
hash@1 {
algo = "sha1";
};
};
conf_cn9131 {
description = "Boot Linux kernel with FDT blob + ramdisk for CN9131";
kernel = "kernel_1";
fdt = "fdt_cn9131";
ramdisk = "ramdisk_1";
hash@1 {
algo = "sha1";
};
};
};
};