| // SPDX-License-Identifier: (GPL-2.0+ OR MIT) |
| /* |
| * Flattened Image Tree file for BVF |
| * |
| * Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries. |
| * |
| */ |
| |
| /dts-v1/; |
| |
| / { |
| description = "U-Boot fitImage for the BeagleV-Fire"; |
| #address-cells = <2>; |
| |
| images { |
| kernel { |
| description = "Linux kernel"; |
| data = /incbin/("./Image.gz"); |
| type = "kernel"; |
| arch = "riscv"; |
| os = "linux"; |
| compression = "gzip"; |
| load = <0x80200000>; |
| entry = <0x80200000>; |
| hash-1 { |
| algo = "sha256"; |
| }; |
| }; |
| base_fdt { |
| description = "Flattened Device Tree blob"; |
| data = /incbin/("./mpfs-beaglev-fire.dtb"); |
| type = "flat_dt"; |
| arch = "riscv"; |
| compression = "none"; |
| load = <0x8a000000>; |
| hash-1 { |
| algo = "sha256"; |
| }; |
| }; |
| }; |
| |
| configurations { |
| default = "kernel_dtb"; |
| kernel_dtb { |
| description = "1 Linux kernel, FDT blob"; |
| kernel = "kernel"; |
| fdt = "base_fdt"; |
| }; |
| |
| base_dtb { |
| description = "Base FDT blob for BeagleV-Fire board"; |
| fdt = "base_fdt"; |
| }; |
| }; |
| }; |