Convert CONFIG_SYS_MAXARGS 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 #define CONFIG_SYS_CBSIZE               SZ_1K
18 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE +    \
19                                         sizeof(CONFIG_SYS_PROMPT) + 16)
20
21 #define CONFIG_SYS_NONCACHED_MEMORY     SZ_1M
22
23 /* Environment */
24
25 /* Preloader -> Uboot */
26 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_TEXT_BASE + SZ_2M - \
27                                          GENERATED_GBL_DATA_SIZE)
28
29 /* MMC */
30 #define MMC_SUPPORTS_TUNING
31
32 /* DRAM */
33 #define CONFIG_SYS_SDRAM_BASE           0x80000000
34
35 /* This is needed for kernel booting */
36 #define FDT_HIGH                        "0xac000000"
37
38 #define ENV_MEM_LAYOUT_SETTINGS                         \
39         "fdt_high=" FDT_HIGH "\0"                       \
40         "kernel_addr_r=0x84000000\0"                    \
41         "fdt_addr_r=" FDT_HIGH "\0"                     \
42         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
43
44 /* Ethernet */
45 #define CONFIG_IPADDR                   192.168.1.1
46 #define CONFIG_SERVERIP                 192.168.1.2
47
48 #ifdef CONFIG_DISTRO_DEFAULTS
49
50 #define BOOT_TARGET_DEVICES(func)       \
51                 func(MMC, mmc, 1)
52
53 #include <config_distro_bootcmd.h>
54
55 /* Extra environment variables */
56 #define CONFIG_EXTRA_ENV_SETTINGS       \
57         ENV_MEM_LAYOUT_SETTINGS         \
58         BOOTENV
59
60 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
61
62 #endif