Skip to content
GitLab
Menu
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
f7a18268
Unverified
Commit
f7a18268
authored
Oct 10, 2018
by
Soby Mathew
Committed by
GitHub
Oct 10, 2018
Browse files
Merge pull request #1614 from MISL-EBU-System-SW/integration-fix
Fix service CPU image load at BL2 stage and update maintainers list
parents
52a9e53b
f2c15046
Changes
3
Show whitespace changes
Inline
Side-by-side
include/plat/marvell/a8k/common/plat_marvell.h
View file @
f7a18268
...
...
@@ -125,4 +125,6 @@ void marvell_ble_prepare_exit(void);
void
marvell_exit_bootrom
(
uintptr_t
base
);
int
plat_marvell_early_cpu_powerdown
(
void
);
int
bl2_plat_handle_scp_bl2
(
image_info_t
*
scp_bl2_image_info
);
#endif
/* __PLAT_MARVELL_H__ */
maintainers.rst
View file @
f7a18268
...
...
@@ -81,6 +81,7 @@ Marvell platform ports and SoC drivers
:F: docs/plat/marvell/
:F: plat/marvell/
:F: drivers/marvell/
:F: tools/doimage/
NVidia platform ports
---------------------
...
...
plat/marvell/common/marvell_bl2_setup.c
View file @
f7a18268
...
...
@@ -105,7 +105,15 @@ int marvell_bl2_handle_post_image_load(unsigned int image_id)
bl_mem_params
->
ep_info
.
args
.
arg0
=
0xffff
&
read_mpidr
();
bl_mem_params
->
ep_info
.
spsr
=
marvell_get_spsr_for_bl33_entry
();
break
;
#ifdef SCP_BL2_BASE
case
SCP_BL2_IMAGE_ID
:
/* The subsequent handling of SCP_BL2 is platform specific */
err
=
bl2_plat_handle_scp_bl2
(
&
bl_mem_params
->
image_info
);
if
(
err
)
{
WARN
(
"Failure in platform-specific handling of SCP_BL2 image.
\n
"
);
}
break
;
#endif
default:
/* Do nothing in default case */
break
;
...
...
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