Commit 206fa996 authored by Masahisa Kojima's avatar Masahisa Kojima
Browse files

qemu/qemu_sbsa: fix memory type of secure NOR flash



This commit fixes the wrong memory type, secure NOR flash
shall be mapped as MT_DEVICE.
Signed-off-by: default avatarMasahisa Kojima <masahisa.kojima@linaro.org>
Change-Id: I9c9ed51675d84ded675bb56b2e4ec7a08184c602
parent cf952b0f
...@@ -353,7 +353,7 @@ ...@@ -353,7 +353,7 @@
#define MAP_SECURE_VARSTORE MAP_REGION_FLAT( \ #define MAP_SECURE_VARSTORE MAP_REGION_FLAT( \
QEMU_SECURE_VARSTORE_BASE, \ QEMU_SECURE_VARSTORE_BASE, \
QEMU_SECURE_VARSTORE_SIZE, \ QEMU_SECURE_VARSTORE_SIZE, \
MT_MEMORY | MT_RW | \ MT_DEVICE | MT_RW | \
MT_SECURE | MT_USER) MT_SECURE | MT_USER)
#endif #endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment