-
Notifications
You must be signed in to change notification settings - Fork 33
/
mpfs_icicle.its
121 lines (111 loc) · 2.5 KB
/
mpfs_icicle.its
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Flattened Image Tree file for Icicle Kit
*
* Copyright (C) 2022 Microchip Technology Inc. and its subsidiaries.
* Author: Conor Dooley <conor.dooley@microchip.com>
*
*/
/dts-v1/;
/ {
description = "U-Boot fitImage for the MPFS";
#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/mpfs-icicle-kit.dtb");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a000000>;
hash-1 {
algo = "sha256";
};
};
fdt_rpi {
description = "Device Tree blob RPI Sense Hat";
data = /incbin/("./mpfs_icicle/mpfs_icicle_rpi_sense_hat.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a080000>;
hash-1 {
algo = "sha256";
};
};
fdt_f5c {
description = "Device Tree blob Flash 5 Click";
data = /incbin/("./mpfs_icicle/mpfs_icicle_flash5_click.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a090000>;
hash-1 {
algo = "sha256";
};
};
fdt_pmod3 {
description = "Device Tree blob Pmod SF3";
data = /incbin/("./mpfs_icicle/mpfs_icicle_pmod_sf3.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a0a0000>;
hash-1 {
algo = "sha256";
};
};
fdt_amp {
description = "Device Tree blob for AMP";
data = /incbin/("./mpfs_icicle/mpfs_icicle_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 MPFS Icicle board";
fdt = "base_fdt";
};
rpi {
description = "FDT overlay blob for RPI Sense Hat";
fdt = "fdt_rpi";
};
f5c {
description = "FDT overlay blob for Flash 5 Click";
fdt = "fdt_f5c";
};
pmod3 {
description = "FDT overlay blob for Pmod SF3";
fdt = "fdt_pmod3";
};
amp {
description = "FDT overlay blob for AMP";
fdt = "fdt_amp";
};
};
};