Convert CONFIG_SYS_CBSIZE to Kconfig
[platform/kernel/u-boot.git] / include / configs / mt7623.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Configuration for MediaTek MT7623 SoC
4  *
5  * Copyright (C) 2018 MediaTek Inc.
6  * Author: Weijie Gao <weijie.gao@mediatek.com>
7  */
8
9 #ifndef __MT7623_H
10 #define __MT7623_H
11
12 #include <linux/sizes.h>
13
14 /* Miscellaneous configurable options */
15
16 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
17
18 #define CONFIG_SYS_NONCACHED_MEMORY     SZ_1M
19
20 /* Environment */
21
22 /* Preloader -> Uboot */
23 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_TEXT_BASE + SZ_2M - \
24                                          GENERATED_GBL_DATA_SIZE)
25
26 /* MMC */
27 #define MMC_SUPPORTS_TUNING
28
29 /* DRAM */
30 #define CONFIG_SYS_SDRAM_BASE           0x80000000
31
32 /* This is needed for kernel booting */
33 #define FDT_HIGH                        "0xac000000"
34
35 #define ENV_MEM_LAYOUT_SETTINGS                         \
36         "fdt_high=" FDT_HIGH "\0"                       \
37         "kernel_addr_r=0x84000000\0"                    \
38         "fdt_addr_r=" FDT_HIGH "\0"                     \
39         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
40
41 /* Ethernet */
42 #define CONFIG_IPADDR                   192.168.1.1
43 #define CONFIG_SERVERIP                 192.168.1.2
44
45 #ifdef CONFIG_DISTRO_DEFAULTS
46
47 #define BOOT_TARGET_DEVICES(func)       \
48                 func(MMC, mmc, 1)
49
50 #include <config_distro_bootcmd.h>
51
52 /* Extra environment variables */
53 #define CONFIG_EXTRA_ENV_SETTINGS       \
54         ENV_MEM_LAYOUT_SETTINGS         \
55         BOOTENV
56
57 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
58
59 #endif