blob: 49ee926b0c945c318b4975c041e443e93c982585 [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
mingming leeabf2c682019-11-07 19:28:44 +080014#define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
15
mingming leeabf2c682019-11-07 19:28:44 +080016#define COUNTER_FREQUENCY 13000000
17
18/* DRAM definition */
19#define CONFIG_SYS_SDRAM_BASE 0x40000000
20#define CONFIG_SYS_SDRAM_SIZE 0x20000000
21
mingming leeabf2c682019-11-07 19:28:44 +080022#define CONFIG_SYS_BOOTM_LEN SZ_64M
23
24/* Uboot definition */
mingming leeabf2c682019-11-07 19:28:44 +080025#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
26 SZ_2M - \
27 GENERATED_GBL_DATA_SIZE)
28
mingming leeabf2c682019-11-07 19:28:44 +080029#define ENV_BOOT_READ_IMAGE \
30 "boot_rd_img=mmc dev 0" \
31 ";mmc read ${loadaddr} 0x27400 0x4000" \
32 ";iminfo ${loadaddr}\0"
mingming leeabf2c682019-11-07 19:28:44 +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
mingming leedafd97f2020-01-16 16:11:39 +080043#define ENV_FASTBOOT \
44 "serial#=1234567890ABCDEF\0" \
45 "board=mt8518\0"
46
mingming leeabf2c682019-11-07 19:28:44 +080047#define CONFIG_EXTRA_ENV_SETTINGS \
48 "fdt_high=0x6c000000\0" \
49 ENV_DEVICE_SETTINGS \
50 ENV_BOOT_READ_IMAGE \
mingming leedafd97f2020-01-16 16:11:39 +080051 ENV_FASTBOOT \
mingming leeabf2c682019-11-07 19:28:44 +080052 ENV_BOOT_CMD \
53 "bootcmd=run mtk_boot;\0" \
54
55#endif