1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Configuration for MediaTek MT8512 SoC
5 * Copyright (C) 2019 MediaTek Inc.
6 * Author: Mingming Lee <mingming.lee@mediatek.com>
12 #include <linux/sizes.h>
14 #define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
16 #define COUNTER_FREQUENCY 13000000
18 #define CONFIG_SYS_BOOTM_LEN SZ_64M
20 /* Uboot definition */
21 #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
22 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
24 GENERATED_GBL_DATA_SIZE)
26 #define ENV_BOOT_READ_IMAGE \
27 "boot_rd_img=mmc dev 0" \
28 ";mmc read ${loadaddr} 0x27000 0x8000" \
29 ";iminfo ${loadaddr}\0"
31 /* Console configuration */
32 #define ENV_DEVICE_SETTINGS \
37 #define ENV_BOOT_CMD \
38 "mtk_boot=run boot_rd_img;bootm;\0"
40 #define CONFIG_EXTRA_ENV_SETTINGS \
41 "fdt_high=0x6c000000\0" \
45 "bootcmd=run mtk_boot;\0" \