a3005460e583c08fdc79df7b3cb057c344dd75c3
[platform/kernel/u-boot.git] / include / configs / mt8518.h
1 /* 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 #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
24 #define CONFIG_SYS_LOAD_ADDR                    0x41000000
25
26 #define CONFIG_SYS_MALLOC_LEN                   SZ_32M
27 #define CONFIG_SYS_BOOTM_LEN                    SZ_64M
28
29 /* Uboot definition */
30 #define CONFIG_SYS_INIT_SP_ADDR                 (CONFIG_SYS_TEXT_BASE + \
31                                                 SZ_2M - \
32                                                 GENERATED_GBL_DATA_SIZE)
33
34 #define ENV_BOOT_READ_IMAGE \
35         "boot_rd_img=mmc dev 0" \
36         ";mmc read ${loadaddr} 0x27400 0x4000" \
37         ";iminfo ${loadaddr}\0"
38
39 /* Console configuration */
40 #define ENV_DEVICE_SETTINGS \
41         "stdin=serial\0" \
42         "stdout=serial\0" \
43         "stderr=serial\0"
44
45 #define ENV_BOOT_CMD \
46         "mtk_boot=run boot_rd_img;bootm;\0"
47
48 #define ENV_FASTBOOT \
49         "serial#=1234567890ABCDEF\0" \
50         "board=mt8518\0"
51
52 #define CONFIG_EXTRA_ENV_SETTINGS \
53         "fdt_high=0x6c000000\0" \
54         ENV_DEVICE_SETTINGS \
55         ENV_BOOT_READ_IMAGE \
56         ENV_FASTBOOT \
57         ENV_BOOT_CMD \
58         "bootcmd=run mtk_boot;\0" \
59
60 #endif