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
19c72525
Commit
19c72525
authored
Apr 16, 2014
by
danh-arm
Browse files
Merge pull request #45 from danh-arm/dh/tf-issues#114
Rename FVP "mmap" array to avoid name confusion
parents
7640b473
67c78844
Changes
1
Show whitespace changes
Inline
Side-by-side
plat/fvp/aarch64/plat_common.c
View file @
19c72525
...
...
@@ -122,7 +122,7 @@ void disable_mmu(void)
* This doesn't include TZRAM as the 'mem_layout' argument passed to to
* configure_mmu() will give the available subset of that,
*/
const
mmap_region
mmap
[]
=
{
const
mmap_region
fvp_
mmap
[]
=
{
{
TZROM_BASE
,
TZROM_SIZE
,
MT_MEMORY
|
MT_RO
|
MT_SECURE
},
{
TZDRAM_BASE
,
TZDRAM_SIZE
,
MT_MEMORY
|
MT_RW
|
MT_SECURE
},
{
FLASH0_BASE
,
FLASH0_SIZE
,
MT_MEMORY
|
MT_RO
|
MT_SECURE
},
...
...
@@ -153,7 +153,7 @@ void configure_mmu(meminfo *mem_layout,
mmap_add_region
(
coh_start
,
coh_limit
-
coh_start
,
MT_DEVICE
|
MT_RW
|
MT_SECURE
);
mmap_add
(
mmap
);
mmap_add
(
fvp_
mmap
);
init_xlat_tables
();
...
...
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