Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 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 */ |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 15 | |
| 16 | #define CONFIG_SYS_MAXARGS 8 |
| 17 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
| 18 | #define CONFIG_SYS_CBSIZE SZ_1K |
| 19 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 20 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 21 | |
Weijie Gao | 8505cdd | 2018-12-20 16:12:56 +0800 | [diff] [blame] | 22 | #define CONFIG_SYS_NONCACHED_MEMORY SZ_1M |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 23 | |
| 24 | /* Environment */ |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 25 | |
| 26 | /* Preloader -> Uboot */ |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 27 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + SZ_2M - \ |
| 28 | GENERATED_GBL_DATA_SIZE) |
| 29 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 30 | /* MMC */ |
| 31 | #define MMC_SUPPORTS_TUNING |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 32 | |
| 33 | /* DRAM */ |
| 34 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
| 35 | |
Weijie Gao | 7d39b74 | 2018-12-20 16:12:49 +0800 | [diff] [blame] | 36 | /* This is needed for kernel booting */ |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 37 | #define FDT_HIGH "0xac000000" |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 38 | |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 39 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 40 | "fdt_high=" FDT_HIGH "\0" \ |
| 41 | "kernel_addr_r=0x84000000\0" \ |
| 42 | "fdt_addr_r=" FDT_HIGH "\0" \ |
David Woodhouse | 368ac3f | 2020-07-12 23:33:02 +0100 | [diff] [blame] | 43 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 44 | |
Weijie Gao | 8505cdd | 2018-12-20 16:12:56 +0800 | [diff] [blame] | 45 | /* Ethernet */ |
| 46 | #define CONFIG_IPADDR 192.168.1.1 |
| 47 | #define CONFIG_SERVERIP 192.168.1.2 |
| 48 | |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 49 | #ifdef CONFIG_DISTRO_DEFAULTS |
| 50 | |
| 51 | #define BOOT_TARGET_DEVICES(func) \ |
| 52 | func(MMC, mmc, 1) |
| 53 | |
| 54 | #include <config_distro_bootcmd.h> |
| 55 | |
| 56 | /* Extra environment variables */ |
| 57 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 58 | ENV_MEM_LAYOUT_SETTINGS \ |
| 59 | BOOTENV |
| 60 | |
| 61 | #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/ |
| 62 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 63 | #endif |