mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
Merge "fix(ast2700): add device mapping for coherent memory" into integration
This commit is contained in:
commit
58f00553d6
1 changed files with 6 additions and 0 deletions
|
@ -76,6 +76,12 @@ void bl31_plat_arch_setup(void)
|
|||
BL_END - BL_CODE_END,
|
||||
MT_RW_DATA | MT_SECURE);
|
||||
|
||||
#if USE_COHERENT_MEM
|
||||
mmap_add_region(BL_COHERENT_RAM_BASE, BL_COHERENT_RAM_BASE,
|
||||
BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
|
||||
MT_DEVICE | MT_RW | MT_SECURE);
|
||||
#endif
|
||||
|
||||
mmap_add_region(BL32_BASE, BL32_BASE, BL32_SIZE,
|
||||
MT_MEMORY | MT_RW);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue