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 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 14 | /* MMC */ |
| 15 | #define MMC_SUPPORTS_TUNING |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 16 | |
| 17 | /* DRAM */ |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 18 | #define CFG_SYS_SDRAM_BASE 0x80000000 |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 19 | |
Weijie Gao | 7d39b74 | 2018-12-20 16:12:49 +0800 | [diff] [blame] | 20 | /* This is needed for kernel booting */ |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 21 | #define FDT_HIGH "0xac000000" |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 22 | |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 23 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 24 | "fdt_high=" FDT_HIGH "\0" \ |
| 25 | "kernel_addr_r=0x84000000\0" \ |
| 26 | "fdt_addr_r=" FDT_HIGH "\0" \ |
David Woodhouse | 368ac3f | 2020-07-12 23:33:02 +0100 | [diff] [blame] | 27 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 28 | |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_DISTRO_DEFAULTS |
| 30 | |
| 31 | #define BOOT_TARGET_DEVICES(func) \ |
| 32 | func(MMC, mmc, 1) |
| 33 | |
| 34 | #include <config_distro_bootcmd.h> |
| 35 | |
| 36 | /* Extra environment variables */ |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 37 | #define CFG_EXTRA_ENV_SETTINGS \ |
Matthias Brugger | 37f2755 | 2020-04-26 01:17:46 +0200 | [diff] [blame] | 38 | ENV_MEM_LAYOUT_SETTINGS \ |
| 39 | BOOTENV |
| 40 | |
| 41 | #endif /* ifdef CONFIG_DISTRO_DEFAULTS*/ |
| 42 | |
Weijie Gao | 361e13f | 2018-11-15 10:07:53 +0800 | [diff] [blame] | 43 | #endif |