-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pic64gx_curiosity_kit: add initial its file
Add Initial its file for PIC64GX curiosity kit Signed-off-by: Pierre-Henry Moussay <[email protected]> Reviewed-by: Jamie Gibbons <[email protected]>
- Loading branch information
1 parent
d755a88
commit dd16c9f
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
/* | ||
* Flattened Image Tree file for PIC64GX Curiosity Kit | ||
* | ||
* Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries. | ||
* Author: Conor Dooley <[email protected]> | ||
* | ||
*/ | ||
|
||
/dts-v1/; | ||
|
||
/ { | ||
description = "U-Boot fitImage for the PIC64GX"; | ||
#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/("./dts/microchip/pic64gx-curiosity-kit.dtb"); | ||
type = "flat_dt"; | ||
arch = "riscv"; | ||
compression = "none"; | ||
load = <0x8a000000>; | ||
hash-1 { | ||
algo = "sha256"; | ||
}; | ||
}; | ||
fdt_amp { | ||
description = "Device Tree blob for AMP"; | ||
data = /incbin/("./pic64gx_curiosity_kit/pic64gx_curiosity_kit_amp.dtbo"); | ||
type = "flat_dt"; | ||
arch = "riscv"; | ||
compression = "none"; | ||
load = <0x8a0b0000>; | ||
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 PIC64GX Curiosity Kit"; | ||
fdt = "base_fdt"; | ||
}; | ||
|
||
amp { | ||
description = "FDT overlay blob for AMP"; | ||
fdt = "fdt_amp"; | ||
}; | ||
}; | ||
}; | ||
|