Merge tag 'u-boot-imx-20220422' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / mt8512.h
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 #include <linux/sizes.h>
13
14 #define CONFIG_SYS_NONCACHED_MEMORY             SZ_1M
15
16
17 #define CONFIG_SYS_BOOTM_LEN                    SZ_64M
18
19 /* Uboot definition */
20 #define CONFIG_SYS_UBOOT_START                  CONFIG_SYS_TEXT_BASE
21 #define CONFIG_SYS_INIT_SP_ADDR                 (CONFIG_SYS_TEXT_BASE + \
22                                                 SZ_2M - \
23                                                 GENERATED_GBL_DATA_SIZE)
24
25 #define ENV_BOOT_READ_IMAGE \
26         "boot_rd_img=mmc dev 0" \
27         ";mmc read ${loadaddr} 0x27000 0x8000" \
28         ";iminfo ${loadaddr}\0"
29
30 /* Console configuration */
31 #define ENV_DEVICE_SETTINGS \
32         "stdin=serial\0" \
33         "stdout=serial\0" \
34         "stderr=serial\0"
35
36 #define ENV_BOOT_CMD \
37         "mtk_boot=run boot_rd_img;bootm;\0"
38
39 #define CONFIG_EXTRA_ENV_SETTINGS \
40         "fdt_high=0x6c000000\0" \
41         ENV_DEVICE_SETTINGS \
42         ENV_BOOT_READ_IMAGE \
43         ENV_BOOT_CMD \
44         "bootcmd=run mtk_boot;\0" \
45
46 #endif