-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmpfs_icicle.its
More file actions
159 lines (146 loc) · 3.96 KB
/
Copy pathmpfs_icicle.its
File metadata and controls
159 lines (146 loc) · 3.96 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// 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";
};
};
fdt-mpfs-icicle-kit.dtb {
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-mpfs-icicle-kit-prod.dtb {
description = "Flattened Device Tree blob";
data = /incbin/("./dts/microchip/mpfs-icicle-kit-prod.dtb");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a000000>;
hash-1 {
algo = "sha256";
};
};
fdt-mpfs-icicle-rpi-sense-hat.dtbo {
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-mpfs-icicle-flash5-click.dtbo {
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-mpfs-icicle-pmod-sf3.dtbo {
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-mpfs-icicle-amp.dtbo {
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";
};
};
fdt-mpfs-icicle-cpu-opp.dtbo {
description = "Device Tree blob for CPU Operating Points";
data = /incbin/("./mpfs_icicle/mpfs_icicle_cpu_opp.dtbo");
type = "flat_dt";
arch = "riscv";
compression = "none";
load = <0x8a0c0000>;
hash-1 {
algo = "sha256";
};
};
};
configurations {
default = "conf-microchip,mpfs-icicle-kit-prod";
conf-microchip,mpfs-icicle-kit {
description = "1 Linux kernel, FDT blob";
kernel = "kernel";
fdt = "fdt-mpfs-icicle-kit.dtb";
};
conf-microchip,mpfs-icicle-kit-prod {
description = "1 Linux kernel, FDT blob";
kernel = "kernel";
fdt = "fdt-mpfs-icicle-kit-prod.dtb";
};
conf-microchip,mpfs-icicle-rpi-sense-hat {
description = "FDT overlay blob for RPI Sense Hat";
fdt = "fdt-mpfs-icicle-rpi-sense-hat.dtbo";
};
conf-microchip,mpfs-icicle-flash5-click {
description = "FDT overlay blob for Flash 5 Click";
fdt = "fdt-mpfs-icicle-flash5-click.dtbo";
};
conf-microchip,mpfs-icicle-pmod-sf3 {
description = "FDT overlay blob for Pmod SF3";
fdt = "fdt-mpfs-icicle-pmod-sf3.dtbo";
};
conf-microchip,mpfs-icicle-amp {
description = "FDT overlay blob for AMP";
fdt = "fdt-mpfs-icicle-amp.dtbo";
};
conf-microchip,mpfs-icicle-cpu-opp {
description = "FDT overlay blob for CPU Operating Points";
fdt = "fdt-mpfs-icicle-cpu-opp.dtbo";
};
conf-microchip,fdt-mpfs-icicle-kit.dtb {
description = "Base FDT blob for MPFS Icicle board";
fdt = "fdt-mpfs-icicle-kit.dtb";
};
conf-microchip,fdt-mpfs-icicle-kit-prod.dtb {
description = "Base FDT blob for MPFS Icicle Production board";
fdt = "fdt-mpfs-icicle-kit-prod.dtb";
};
};
};