]>
Commit | Line | Data |
---|---|---|
b9bf3cbf | 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 <[email protected]> | |
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 | ||
b9bf3cbf | 16 | /* Uboot definition */ |
98463903 | 17 | #define CONFIG_SYS_UBOOT_START CONFIG_TEXT_BASE |
b9bf3cbf | 18 | |
b9bf3cbf | 19 | #define ENV_BOOT_READ_IMAGE \ |
20 | "boot_rd_img=mmc dev 0" \ | |
21 | ";mmc read ${loadaddr} 0x27000 0x8000" \ | |
22 | ";iminfo ${loadaddr}\0" | |
b9bf3cbf | 23 | |
24 | /* Console configuration */ | |
25 | #define ENV_DEVICE_SETTINGS \ | |
26 | "stdin=serial\0" \ | |
27 | "stdout=serial\0" \ | |
28 | "stderr=serial\0" | |
29 | ||
30 | #define ENV_BOOT_CMD \ | |
31 | "mtk_boot=run boot_rd_img;bootm;\0" | |
32 | ||
33 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
34 | "fdt_high=0x6c000000\0" \ | |
35 | ENV_DEVICE_SETTINGS \ | |
36 | ENV_BOOT_READ_IMAGE \ | |
37 | ENV_BOOT_CMD \ | |
38 | "bootcmd=run mtk_boot;\0" \ | |
39 | ||
40 | #endif |