blob: b1d79a3f64a4c7cbaa7082a236ceb16849d8e33a (
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
80
81
82
83
|
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
*/
#define SPL_BOARD_DTB "spl/dts/ti/k3-j742s2-evm.dtb"
#define BOARD_DESCRIPTION "k3-j742s2-evm"
#define UBOOT_BOARD_DESCRIPTION "U-Boot for J742S2 board"
#include "k3-j784s4-binman.dtsi"
#if !defined(CONFIG_ARM64)
&binman {
tiboot3-j742s2-hs-fs {
insert-template = <&tiboot3_j784s4_hs_fs>;
filename = "tiboot3-j742s2-hs-fs-evm.bin";
symlink = "tiboot3.bin";
};
tiboot3-j742s2-hs {
insert-template = <&tiboot3_j784s4_hs>;
filename = "tiboot3-j742s2-hs-evm.bin";
};
};
&ti_fs_enc_fs {
filename = "ti-sysfw/ti-fs-firmware-j742s2-hs-fs-enc.bin";
};
&sysfw_inner_cert_fs {
filename = "ti-sysfw/ti-fs-firmware-j742s2-hs-fs-cert.bin";
};
&ti_fs_enc {
filename = "ti-sysfw/ti-fs-firmware-j742s2-hs-enc.bin";
};
&sysfw_inner_cert {
filename = "ti-sysfw/ti-fs-firmware-j742s2-hs-cert.bin";
};
#else // CONFIG_ARM64
&binman {
tispl {
insert-template = <&ti_spl>;
fit {
images {
dm {
ti-dm {
filename = "ti-dm/j742s2/ipc_echo_testb_mcu1_0_release_strip.xer5f";
};
};
};
};
};
u-boot {
insert-template = <&u_boot>;
};
tispl-unsigned {
insert-template = <&ti_spl_unsigned>;
fit {
images {
dm {
ti-dm {
filename = "ti-dm/j742s2/ipc_echo_testb_mcu1_0_release_strip.xer5f";
};
};
};
};
};
u-boot-unsigned {
insert-template = <&u_boot_unsigned>;
};
};
#endif
|