1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Configuration for MediaTek MT8512 SoC 4 * 5 * Copyright (C) 2019 MediaTek Inc. 6 * Author: Mingming Lee <mingming.lee@mediatek.com> 7 */ 8 9 #ifndef __MT8512_H 10 #define __MT8512_H 11 12 /* Uboot definition */ 13 #define CFG_SYS_UBOOT_START CONFIG_TEXT_BASE 14 15 #define ENV_BOOT_READ_IMAGE \ 16 "boot_rd_img=mmc dev 0" \ 17 ";mmc read ${loadaddr} 0x27000 0x8000" \ 18 ";iminfo ${loadaddr}\0" 19 20 /* Console configuration */ 21 #define ENV_DEVICE_SETTINGS \ 22 "stdin=serial\0" \ 23 "stdout=serial\0" \ 24 "stderr=serial\0" 25 26 #define ENV_BOOT_CMD \ 27 "mtk_boot=run boot_rd_img;bootm;\0" 28 29 #define CFG_EXTRA_ENV_SETTINGS \ 30 "fdt_high=0x6c000000\0" \ 31 ENV_DEVICE_SETTINGS \ 32 ENV_BOOT_READ_IMAGE \ 33 ENV_BOOT_CMD \ 34 "bootcmd=run mtk_boot;\0" \ 35 36 #endif 37