1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Configuration for MediaTek MT8518 SoC
5 * Copyright (C) 2019 MediaTek Inc.
12 #include <linux/sizes.h>
14 #define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
16 #define CONFIG_CPU_ARMV8
18 #define COUNTER_FREQUENCY 13000000
21 #define CONFIG_SYS_SDRAM_BASE 0x40000000
22 #define CONFIG_SYS_SDRAM_SIZE 0x20000000
24 #define CONFIG_SYS_BOOTM_LEN SZ_64M
26 /* Uboot definition */
27 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
29 GENERATED_GBL_DATA_SIZE)
31 #define ENV_BOOT_READ_IMAGE \
32 "boot_rd_img=mmc dev 0" \
33 ";mmc read ${loadaddr} 0x27400 0x4000" \
34 ";iminfo ${loadaddr}\0"
36 /* Console configuration */
37 #define ENV_DEVICE_SETTINGS \
42 #define ENV_BOOT_CMD \
43 "mtk_boot=run boot_rd_img;bootm;\0"
45 #define ENV_FASTBOOT \
46 "serial#=1234567890ABCDEF\0" \
49 #define CONFIG_EXTRA_ENV_SETTINGS \
50 "fdt_high=0x6c000000\0" \
55 "bootcmd=run mtk_boot;\0" \