blob: 6f42cd32d80fbfc4e8923826d448da40e7f49b5c [file] [log] [blame]
developered71a402018-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
developered71a402018-11-15 10:07:53 +080014/* DRAM */
Tom Rinibb4dd962022-11-16 13:10:37 -050015#define CFG_SYS_SDRAM_BASE 0x80000000
developered71a402018-11-15 10:07:53 +080016
developerf14524e2018-12-20 16:12:49 +080017/* This is needed for kernel booting */
Matthias Brugger4afa2c22020-04-26 01:17:46 +020018#define FDT_HIGH "0xac000000"
developered71a402018-11-15 10:07:53 +080019
Matthias Brugger4afa2c22020-04-26 01:17:46 +020020#define ENV_MEM_LAYOUT_SETTINGS \
21 "fdt_high=" FDT_HIGH "\0" \
22 "kernel_addr_r=0x84000000\0" \
23 "fdt_addr_r=" FDT_HIGH "\0" \
David Woodhousec625c942020-07-12 23:33:02 +010024 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
developered71a402018-11-15 10:07:53 +080025
Matthias Brugger4afa2c22020-04-26 01:17:46 +020026#ifdef CONFIG_DISTRO_DEFAULTS
27
28#define BOOT_TARGET_DEVICES(func) \
29 func(MMC, mmc, 1)
30
31#include <config_distro_bootcmd.h>
32
33/* Extra environment variables */
Tom Rinic9edebe2022-12-04 10:03:50 -050034#define CFG_EXTRA_ENV_SETTINGS \
Matthias Brugger4afa2c22020-04-26 01:17:46 +020035 ENV_MEM_LAYOUT_SETTINGS \
36 BOOTENV
37
38#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
39
developered71a402018-11-15 10:07:53 +080040#endif