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
d5dbe878
Commit
d5dbe878
authored
Sep 15, 2016
by
davidcunado-arm
Committed by
GitHub
Sep 15, 2016
Browse files
Merge pull request #708 from sandrine-bailleux-arm/sb/forward-decs
Add some missing forward declarations in plat_arm.h
parents
a760613f
afc931f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/plat/arm/common/plat_arm.h
View file @
d5dbe878
...
...
@@ -37,6 +37,12 @@
#include <utils.h>
#include <xlat_tables.h>
/*******************************************************************************
* Forward declarations
******************************************************************************/
struct
bl31_params
;
struct
meminfo
;
#define ARM_CASSERT_MMAP \
CASSERT((ARRAY_SIZE(plat_arm_mmap) + ARM_BL_REGIONS) \
<= MAX_MMAP_REGIONS, \
...
...
@@ -145,7 +151,7 @@ void arm_bl1_platform_setup(void);
void
arm_bl1_plat_arch_setup
(
void
);
/* BL2 utility functions */
void
arm_bl2_early_platform_setup
(
meminfo
_t
*
mem_layout
);
void
arm_bl2_early_platform_setup
(
struct
meminfo
*
mem_layout
);
void
arm_bl2_platform_setup
(
void
);
void
arm_bl2_plat_arch_setup
(
void
);
uint32_t
arm_get_spsr_for_bl32_entry
(
void
);
...
...
@@ -158,7 +164,7 @@ void arm_bl2u_platform_setup(void);
void
arm_bl2u_plat_arch_setup
(
void
);
/* BL31 utility functions */
void
arm_bl31_early_platform_setup
(
bl31_params
_t
*
from_bl2
,
void
arm_bl31_early_platform_setup
(
struct
bl31_params
*
from_bl2
,
void
*
plat_params_from_bl2
);
void
arm_bl31_platform_setup
(
void
);
void
arm_bl31_plat_runtime_setup
(
void
);
...
...
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