blob: f5aa0909fa61db501d0ab56c7f8fbe685ea7da76 [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
16#define CONFIG_CPU_ARMV8
17
18#define COUNTER_FREQUENCY 13000000
19
20/* DRAM definition */
21#define CONFIG_SYS_SDRAM_BASE 0x40000000
22#define CONFIG_SYS_SDRAM_SIZE 0x20000000
23
mingming leeabf2c682019-11-07 19:28:44 +080024#define CONFIG_SYS_MALLOC_LEN SZ_32M
25#define CONFIG_SYS_BOOTM_LEN SZ_64M
26
27/* Uboot definition */
mingming leeabf2c682019-11-07 19:28:44 +080028#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
29 SZ_2M - \
30 GENERATED_GBL_DATA_SIZE)
31
mingming leeabf2c682019-11-07 19:28:44 +080032#define ENV_BOOT_READ_IMAGE \
33 "boot_rd_img=mmc dev 0" \
34 ";mmc read ${loadaddr} 0x27400 0x4000" \
35 ";iminfo ${loadaddr}\0"
mingming leeabf2c682019-11-07 19:28:44 +080036
37/* Console configuration */
38#define ENV_DEVICE_SETTINGS \
39 "stdin=serial\0" \
40 "stdout=serial\0" \
41 "stderr=serial\0"
42
43#define ENV_BOOT_CMD \
44 "mtk_boot=run boot_rd_img;bootm;\0"
45
mingming leedafd97f2020-01-16 16:11:39 +080046#define ENV_FASTBOOT \
47 "serial#=1234567890ABCDEF\0" \
48 "board=mt8518\0"
49
mingming leeabf2c682019-11-07 19:28:44 +080050#define CONFIG_EXTRA_ENV_SETTINGS \
51 "fdt_high=0x6c000000\0" \
52 ENV_DEVICE_SETTINGS \
53 ENV_BOOT_READ_IMAGE \
mingming leedafd97f2020-01-16 16:11:39 +080054 ENV_FASTBOOT \
mingming leeabf2c682019-11-07 19:28:44 +080055 ENV_BOOT_CMD \
56 "bootcmd=run mtk_boot;\0" \
57
58#endif