Skip to content
Snippets Groups Projects
Commit 7045c4dd authored by Sam Protsenko's avatar Sam Protsenko Committed by Minkyu Kang
Browse files

arm: exynos: Map iRAM APM area for Exynos850 SoC


This iRAM APM area is needed for I3C access to PMIC via APM block.
Without this mapping any access to APM iRAM leads to "Synchronous Abort"
exception.

Signed-off-by: default avatarSam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Minkyu Kang's avatarMinkyu Kang <mk7.kang@samsung.com>
parent 11b9219d
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,14 @@ struct mm_region *mem_map = exynos7880_mem_map;
static struct mm_region exynos850_mem_map[] = {
{
/* iRAM */
.virt = 0x02000000UL,
.phys = 0x02000000UL,
.size = SZ_2M,
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRE) |
PTE_BLOCK_NON_SHARE |
PTE_BLOCK_PXN | PTE_BLOCK_UXN
}, {
/* Peripheral block */
.virt = 0x10000000UL,
.phys = 0x10000000UL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment