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
e9eed3f1
Commit
e9eed3f1
authored
5 years ago
by
Paul Beesley
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "rockchip: drop rockchip-specific imported linker symbols for bl31" into integration
parents
84167417
3e6945e9
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plat/rockchip/common/bl31_plat_setup.c
+4
-13
plat/rockchip/common/bl31_plat_setup.c
with
4 additions
and
13 deletions
+4
-13
plat/rockchip/common/bl31_plat_setup.c
View file @
e9eed3f1
...
@@ -18,15 +18,6 @@
...
@@ -18,15 +18,6 @@
#include <plat_private.h>
#include <plat_private.h>
#include <plat/common/platform.h>
#include <plat/common/platform.h>
/*
* The next 2 constants identify the extents of the code & RO data region.
* These addresses are used by the MMU setup code and therefore they must be
* page-aligned. It is the responsibility of the linker script to ensure that
* __RO_START__ and __RO_END__ linker symbols refer to page-aligned addresses.
*/
IMPORT_SYM
(
unsigned
long
,
__RO_START__
,
BL31_RO_BASE
);
IMPORT_SYM
(
unsigned
long
,
__RO_END__
,
BL31_RO_LIMIT
);
static
entry_point_info_t
bl32_ep_info
;
static
entry_point_info_t
bl32_ep_info
;
static
entry_point_info_t
bl33_ep_info
;
static
entry_point_info_t
bl33_ep_info
;
...
@@ -116,10 +107,10 @@ void bl31_plat_arch_setup(void)
...
@@ -116,10 +107,10 @@ void bl31_plat_arch_setup(void)
{
{
plat_cci_init
();
plat_cci_init
();
plat_cci_enable
();
plat_cci_enable
();
plat_configure_mmu_el3
(
BL
31_RO
_BASE
,
plat_configure_mmu_el3
(
BL
_CODE
_BASE
,
BL_COHERENT_RAM_END
-
BL
31_RO
_BASE
,
BL_COHERENT_RAM_END
-
BL
_CODE
_BASE
,
BL
31_RO
_BASE
,
BL
_CODE
_BASE
,
BL
31_RO_LIMIT
,
BL
_CODE_END
,
BL_COHERENT_RAM_BASE
,
BL_COHERENT_RAM_BASE
,
BL_COHERENT_RAM_END
);
BL_COHERENT_RAM_END
);
}
}
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