From bf0f91074bd08c64bedc8bd2db3061c3588d5928 Mon Sep 17 00:00:00 2001 From: Lucas Weaver Date: Fri, 24 Jun 2022 13:22:56 -0500 Subject: [PATCH] osal: Fixing OSAL VRING size for MMU settings for J784S4 --- packages/ti/osal/soc/j784s4/freertos_mmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ti/osal/soc/j784s4/freertos_mmu.c b/packages/ti/osal/soc/j784s4/freertos_mmu.c index 69d8dc9d2..80cab3834 100644 --- a/packages/ti/osal/soc/j784s4/freertos_mmu.c +++ b/packages/ti/osal/soc/j784s4/freertos_mmu.c @@ -127,7 +127,7 @@ static void OsalInitMmu(bool isSecure) * IPC VRing Buffer - uncached */ attrs.attrIndx = Mmu_AttrIndx_MAIR4; - (void)OsalMmuMap(0xAC000000U, 0xAC000000U, 0x02000000U, &attrs, isSecure); + (void)OsalMmuMap(0xAC000000U, 0xAC000000U, 0x04000000U, &attrs, isSecure); return; } -- 2.26.2