blob: 66a88f51ca43a5cce0bc35534a6d79aa0ee58b5c [file] [log] [blame]
developerb41343a2019-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
16#define CONFIG_CPU_ARMV8
17
18#define COUNTER_FREQUENCY 13000000
19
developerb41343a2019-12-31 11:29:26 +080020#define CONFIG_SYS_MALLOC_LEN SZ_32M
21#define CONFIG_SYS_BOOTM_LEN SZ_64M
22
23/* Uboot definition */
24#define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
25#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
26 SZ_2M - \
27 GENERATED_GBL_DATA_SIZE)
28
developerb41343a2019-12-31 11:29:26 +080029#define ENV_BOOT_READ_IMAGE \
30 "boot_rd_img=mmc dev 0" \
31 ";mmc read ${loadaddr} 0x27000 0x8000" \
32 ";iminfo ${loadaddr}\0"
developerb41343a2019-12-31 11:29:26 +080033
34/* Console configuration */
35#define ENV_DEVICE_SETTINGS \
36 "stdin=serial\0" \
37 "stdout=serial\0" \
38 "stderr=serial\0"
39
40#define ENV_BOOT_CMD \
41 "mtk_boot=run boot_rd_img;bootm;\0"
42
43#define CONFIG_EXTRA_ENV_SETTINGS \
44 "fdt_high=0x6c000000\0" \
45 ENV_DEVICE_SETTINGS \
46 ENV_BOOT_READ_IMAGE \
47 ENV_BOOT_CMD \
48 "bootcmd=run mtk_boot;\0" \
49
50#endif