blob: 5ff5541c5098639d0658737b2809ba8aeea52755 [file] [log] [blame]
mingming leeb9bf3cb2019-12-31 11:29:26 +08001/* 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
mingming leeb9bf3cb2019-12-31 11:29:26 +080016/* Uboot definition */
Simon Glass98463902022-10-20 18:22:39 -060017#define CONFIG_SYS_UBOOT_START CONFIG_TEXT_BASE
mingming leeb9bf3cb2019-12-31 11:29:26 +080018
mingming leeb9bf3cb2019-12-31 11:29:26 +080019#define ENV_BOOT_READ_IMAGE \
20 "boot_rd_img=mmc dev 0" \
21 ";mmc read ${loadaddr} 0x27000 0x8000" \
22 ";iminfo ${loadaddr}\0"
mingming leeb9bf3cb2019-12-31 11:29:26 +080023
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