blob: 06367221ebc3e940ed3d8a845ceb940740ae0e64 [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
14/* Miscellaneous configurable options */
developered71a402018-11-15 10:07:53 +080015
developered71a402018-11-15 10:07:53 +080016#define CONFIG_SYS_BOOTM_LEN SZ_64M
developered71a402018-11-15 10:07:53 +080017
developer73569d42018-12-20 16:12:56 +080018#define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
developered71a402018-11-15 10:07:53 +080019
20/* Environment */
developered71a402018-11-15 10:07:53 +080021
22/* Preloader -> Uboot */
developered71a402018-11-15 10:07:53 +080023
developered71a402018-11-15 10:07:53 +080024/* MMC */
25#define MMC_SUPPORTS_TUNING
developered71a402018-11-15 10:07:53 +080026
27/* DRAM */
28#define CONFIG_SYS_SDRAM_BASE 0x80000000
29
developerf14524e2018-12-20 16:12:49 +080030/* This is needed for kernel booting */
Matthias Brugger4afa2c22020-04-26 01:17:46 +020031#define FDT_HIGH "0xac000000"
developered71a402018-11-15 10:07:53 +080032
Matthias Brugger4afa2c22020-04-26 01:17:46 +020033#define ENV_MEM_LAYOUT_SETTINGS \
34 "fdt_high=" FDT_HIGH "\0" \
35 "kernel_addr_r=0x84000000\0" \
36 "fdt_addr_r=" FDT_HIGH "\0" \
David Woodhousec625c942020-07-12 23:33:02 +010037 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0"
developered71a402018-11-15 10:07:53 +080038
developer73569d42018-12-20 16:12:56 +080039/* Ethernet */
40#define CONFIG_IPADDR 192.168.1.1
41#define CONFIG_SERVERIP 192.168.1.2
42
Matthias Brugger4afa2c22020-04-26 01:17:46 +020043#ifdef CONFIG_DISTRO_DEFAULTS
44
45#define BOOT_TARGET_DEVICES(func) \
46 func(MMC, mmc, 1)
47
48#include <config_distro_bootcmd.h>
49
50/* Extra environment variables */
51#define CONFIG_EXTRA_ENV_SETTINGS \
52 ENV_MEM_LAYOUT_SETTINGS \
53 BOOTENV
54
55#endif /* ifdef CONFIG_DISTRO_DEFAULTS*/
56
developered71a402018-11-15 10:07:53 +080057#endif