From b38f8f7a3e2f4cdd323f195d2a17a6091aa75722 Mon Sep 17 00:00:00 2001 From: Gavin Liu Date: Fri, 7 Feb 2025 17:25:44 +0800 Subject: [PATCH] fix(mt8196): fix wrong register offset of dptx on MT8196 Fix wrong register offset of dptx on MT8196. Change-Id: I46f7ac7751d14c9093b7b5bd1c741179a7fbbd34 Signed-off-by: Gavin Liu --- plat/mediatek/mt8196/include/platform_def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plat/mediatek/mt8196/include/platform_def.h b/plat/mediatek/mt8196/include/platform_def.h index 83370d6c5..f7d1a088b 100644 --- a/plat/mediatek/mt8196/include/platform_def.h +++ b/plat/mediatek/mt8196/include/platform_def.h @@ -207,8 +207,8 @@ /******************************************************************************* * DP related constants ******************************************************************************/ -#define EDP_SEC_BASE (IO_PHYS + 0x2EC50000) -#define DP_SEC_BASE (IO_PHYS + 0x2EC10000) +#define EDP_SEC_BASE (IO_PHYS + 0x2EC54000) +#define DP_SEC_BASE (IO_PHYS + 0x2EC14000) #define EDP_SEC_SIZE (0x1000) #define DP_SEC_SIZE (0x1000)