soc/mediatek/mt8192: Add a placeholder for the EMI driver

Add minimal function to report SDRAM size.

Signed-off-by: CK Hu <ck.hu@mediatek.com>
Change-Id: If74b6b52dd6e91d1ff40cf8460b6a03b2f3bb6f6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43961
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
CK Hu 2020-05-13 10:21:02 +08:00 committed by Hung-Te Lin
parent a396c0a7ee
commit ad700565ef
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <soc/emi.h>
size_t sdram_size(void)
{
size_t dram_size = 0x100000000;
return dram_size;
}

View File

@ -0,0 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef SOC_MEDIATEK_MT8192_EMI_H
#define SOC_MEDIATEK_MT8192_EMI_H
#include <types.h>
size_t sdram_size(void);
#endif /* SOC_MEDIATEK_MT8192_EMI_H */