blob: fca234a1dc71a85f4982a49db4f1ab53e30b9ed7 [file] [log] [blame]
Weijie Gao361e13f2018-11-15 10:07:53 +08001/* 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 Gao361e13f2018-11-15 10:07:53 +080014/* MMC */
15#define MMC_SUPPORTS_TUNING
Weijie Gao361e13f2018-11-15 10:07:53 +080016
17/* DRAM */
Tom Riniaa6e94d2022-11-16 13:10:37 -050018#define CFG_SYS_SDRAM_BASE 0x80000000
Weijie Gao361e13f2018-11-15 10:07:53 +080019
Weijie Gao7d39b742018-12-20 16:12:49 +080020/* This is needed for kernel booting */
Matthias Brugger37f27552020-04-26 01:17:46 +020021#define FDT_HIGH "0xac000000"
Weijie Gao361e13f2018-11-15 10:07:53 +080022
Matthias Brugger37f27552020-04-26 01:17:46 +020023#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 Woodhouse368ac3f2020-07-12 23:33:02 +010027 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
Weijie Gao361e13f2018-11-15 10:07:53 +080028
Matthias Brugger37f27552020-04-26 01:17:46 +020029#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 Rini0613c362022-12-04 10:03:50 -050037#define CFG_EXTRA_ENV_SETTINGS \
Matthias Brugger37f27552020-04-26 01:17:46 +020038 ENV_MEM_LAYOUT_SETTINGS \
39 BOOTENV
40
41#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
42
Weijie Gao361e13f2018-11-15 10:07:53 +080043#endif