39a7ba76633b4ace718d3581a688bd09d5f11d8a
[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 /* Environment */
17
18 /* Preloader -> Uboot */
19
20 /* MMC */
21 #define MMC_SUPPORTS_TUNING
22
23 /* DRAM */
24 #define CFG_SYS_SDRAM_BASE              0x80000000
25
26 /* This is needed for kernel booting */
27 #define FDT_HIGH                        "0xac000000"
28
29 #define ENV_MEM_LAYOUT_SETTINGS                         \
30         "fdt_high=" FDT_HIGH "\0"                       \
31         "kernel_addr_r=0x84000000\0"                    \
32         "fdt_addr_r=" FDT_HIGH "\0"                     \
33         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
34
35 /* Ethernet */
36 #define CONFIG_IPADDR                   192.168.1.1
37 #define CONFIG_SERVERIP                 192.168.1.2
38
39 #ifdef CONFIG_DISTRO_DEFAULTS
40
41 #define BOOT_TARGET_DEVICES(func)       \
42                 func(MMC, mmc, 1)
43
44 #include <config_distro_bootcmd.h>
45
46 /* Extra environment variables */
47 #define CONFIG_EXTRA_ENV_SETTINGS       \
48         ENV_MEM_LAYOUT_SETTINGS         \
49         BOOTENV
50
51 #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
52
53 #endif