blob: 7b535e8402c3d60948923a27187f0501aff9ff85 (
plain)
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
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2025 Yao Zi <ziyao@disroot.org>
*/
#include <config.h>
/ {
binman: binman {
};
};
&binman {
filename = "u-boot-with-spl.bin";
u-boot-spl {
};
ddr-fw {
filename = "th1520-ddr-firmware.bin";
type = "blob-ext";
};
fit {
offset = <CONFIG_SPL_PAD_TO>;
description = "Configuration to load M-mode U-Boot";
#address-cells = <2>;
fit,fdt-list = "of-list";
images {
opensbi {
description = "OpenSBI fw_dynamic Firmware";
type = "firmware";
os = "opensbi";
arch = "riscv";
load = /bits/ 64 <CONFIG_SPL_OPENSBI_LOAD_ADDR>;
entry = /bits/ 64 <CONFIG_SPL_OPENSBI_LOAD_ADDR>;
opensbi_blob: opensbi {
filename = "fw_dynamic.bin";
missing-msg = "opensbi";
};
};
uboot {
description = "U-Boot";
type = "standalone";
firmware = "opensbi";
os = "U-boot";
arch = "riscv";
compression = "none";
load = /bits/ 64 <CONFIG_TEXT_BASE>;
uboot_nodtb_blob: u-boot-nodtb {
};
};
@fdt-SEQ {
fit,operation = "gen-fdt-nodes";
description = "NAME";
type = "flat_dt";
compression = "none";
};
};
configurations {
default = "@conf-DEFAULT-SEQ";
@conf-SEQ {
description = "NAME";
fdt = "fdt-SEQ";
firmware = "opensbi";
loadables = "uboot";
};
};
};
};
|