blob: 514722be99006cfa81745716e424b78dca3af7b4 [file] [log] [blame]
mingming leeabf2c682019-11-07 19:28:44 +08001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Configuration for MediaTek MT8518 SoC
4 *
5 * Copyright (C) 2019 MediaTek Inc.
6 * Author: Mingming Lee <mingming.lee@mediatek.com>
7 */
8
9#ifndef __MT8518_H
10#define __MT8518_H
11
12#include <linux/sizes.h>
13
14/* Machine ID */
15#define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
16
17#define CONFIG_CPU_ARMV8
18
19#define COUNTER_FREQUENCY 13000000
20
21/* DRAM definition */
22#define CONFIG_SYS_SDRAM_BASE 0x40000000
23#define CONFIG_SYS_SDRAM_SIZE 0x20000000
24
25#define CONFIG_SYS_LOAD_ADDR 0x41000000
26#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
27
28#define CONFIG_SYS_MALLOC_LEN SZ_32M
29#define CONFIG_SYS_BOOTM_LEN SZ_64M
30
31/* Uboot definition */
mingming leeabf2c682019-11-07 19:28:44 +080032#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
33 SZ_2M - \
34 GENERATED_GBL_DATA_SIZE)
35
36/* ENV Setting */
37#if defined(CONFIG_MMC_MTK)
38#define CONFIG_SYS_MMC_ENV_DEV 0
39#define CONFIG_ENV_OVERWRITE
40
41/* MMC offset in block unit,and block size is 0x200 */
42#define ENV_BOOT_READ_IMAGE \
43 "boot_rd_img=mmc dev 0" \
44 ";mmc read ${loadaddr} 0x27400 0x4000" \
45 ";iminfo ${loadaddr}\0"
46#endif
47
48/* Console configuration */
49#define ENV_DEVICE_SETTINGS \
50 "stdin=serial\0" \
51 "stdout=serial\0" \
52 "stderr=serial\0"
53
54#define ENV_BOOT_CMD \
55 "mtk_boot=run boot_rd_img;bootm;\0"
56
57#define CONFIG_EXTRA_ENV_SETTINGS \
58 "fdt_high=0x6c000000\0" \
59 ENV_DEVICE_SETTINGS \
60 ENV_BOOT_READ_IMAGE \
61 ENV_BOOT_CMD \
62 "bootcmd=run mtk_boot;\0" \
63
64#endif