This replaces 'SPDX-License-Identifier' tags in all the files under soc/mediatek/mt8188 for better code re-use in other open source software stack. These files were originally from MediaTek and follow coreboot's main license: "GPL-2.0-only". Now MediaTek replaces these files to "GPL-2.0-only OR MIT" license. Signed-off-by: Macpaul Lin <macpaul.lin@mediatek.com> Change-Id: If61e8b252400e8e5ecd185b6806b1ca279065f15 Reviewed-on: https://review.coreboot.org/c/coreboot/+/66628 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> Reviewed-by: Martin L Roth <gaumless@gmail.com>
14 lines
223 B
C
14 lines
223 B
C
/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
|
|
|
|
/*
|
|
* This file is created based on MT8188 Functional Specification
|
|
* Chapter number: 3.7
|
|
*/
|
|
|
|
#include <soc/emi.h>
|
|
|
|
size_t sdram_size(void)
|
|
{
|
|
return (size_t)4 * GiB;
|
|
}
|