Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
81bbb921
Commit
81bbb921
authored
3 years ago
by
Manish Pandey
Committed by
TrustedFirmware Code Review
3 years ago
Browse files
Options
Download
Plain Diff
Merge "fix(plat/fvp): provide boot files via semihosting" into integration
parents
fe1021f1
749d0fa8
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plat/arm/board/fvp/fvp_io_storage.c
+20
-0
plat/arm/board/fvp/fvp_io_storage.c
with
20 additions
and
0 deletions
+20
-0
plat/arm/board/fvp/fvp_io_storage.c
View file @
81bbb921
...
...
@@ -20,6 +20,10 @@
#define BL32_IMAGE_NAME "bl32.bin"
#define BL33_IMAGE_NAME "bl33.bin"
#define TB_FW_CONFIG_NAME "fvp_tb_fw_config.dtb"
#define SOC_FW_CONFIG_NAME "fvp_soc_fw_config.dtb"
#define TOS_FW_CONFIG_NAME "fvp_tsp_fw_config.dtb"
#define NT_FW_CONFIG_NAME "fvp_nt_fw_config.dtb"
#define FW_CONFIG_NAME "fvp_fw_config.dtb"
#define HW_CONFIG_NAME "hw_config.dtb"
#if TRUSTED_BOARD_BOOT
...
...
@@ -58,6 +62,22 @@ static const io_file_spec_t sh_file_spec[] = {
.
path
=
TB_FW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
},
[
SOC_FW_CONFIG_ID
]
=
{
.
path
=
SOC_FW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
},
[
TOS_FW_CONFIG_ID
]
=
{
.
path
=
TOS_FW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
},
[
NT_FW_CONFIG_ID
]
=
{
.
path
=
NT_FW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
},
[
FW_CONFIG_ID
]
=
{
.
path
=
FW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
},
[
HW_CONFIG_ID
]
=
{
.
path
=
HW_CONFIG_NAME
,
.
mode
=
FOPEN_MODE_RB
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help