aboutsummaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8192/soc.c
diff options
context:
space:
mode:
authorCK Hu <ck.hu@mediatek.com>2020-06-16 11:54:38 +0800
committerHung-Te Lin <hungte@chromium.org>2020-10-23 03:58:45 +0000
commit3398f3152cf005d1e8219feacac1e1ec4fe50095 (patch)
treea48952d88a85c011e4f401d4fd821c2e6d268a9e /src/soc/mediatek/mt8192/soc.c
parent9190345bf071261a0764c9cfbe1472f974e2bd19 (diff)
soc/mediatek/mt8192: Turn off L2C SRAM and reconfigure as L2 cache
Mediatek SoC uses part of the L2 cache as SRAM before DRAM is ready. After DRAM is ready, we should invoke disable_l2c_sram to reconfigure the L2C SRAM as L2 cache. Signed-off-by: CK Hu <ck.hu@mediatek.com> Change-Id: Icaf80bd9da3e082405ba66ef05dd5ea9185784a0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/46387 Reviewed-by: Hung-Te Lin <hungte@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/mt8192/soc.c')
-rw-r--r--src/soc/mediatek/mt8192/soc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8192/soc.c b/src/soc/mediatek/mt8192/soc.c
index 9850fa6fbe..6978406cac 100644
--- a/src/soc/mediatek/mt8192/soc.c
+++ b/src/soc/mediatek/mt8192/soc.c
@@ -2,6 +2,7 @@
#include <device/device.h>
#include <soc/emi.h>
+#include <soc/mmu_operations.h>
#include <symbols.h>
static void soc_read_resources(struct device *dev)
@@ -11,6 +12,7 @@ static void soc_read_resources(struct device *dev)
static void soc_init(struct device *dev)
{
+ mtk_mmu_disable_l2c_sram();
}
static struct device_operations soc_ops = {