blob: 741ee39db1a340136b57d9411d96bca995e0ebd2 [file] [log] [blame]
Peng Fan439321b2019-12-30 17:46:21 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2019 NXP
4 */
5
6#ifndef __IMX8MP_EVK_H
7#define __IMX8MP_EVK_H
8
9#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Peng Fan439321b2019-12-30 17:46:21 +080011#include <asm/arch/imx-regs.h>
12
Tom Rini65cc0e22022-11-16 13:10:41 -050013#define CFG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
Peng Fan439321b2019-12-30 17:46:21 +080014
Peng Fan48b90f82020-12-25 16:16:34 +080015#if defined(CONFIG_CMD_NET)
Tom Rinifa760c32022-12-04 10:03:53 -050016#define CFG_FEC_MXC_PHYADDR 1
Peng Fan48b90f82020-12-25 16:16:34 +080017
Peng Fan48b90f82020-12-25 16:16:34 +080018#endif
19
Alice Guo9b162b12020-12-18 15:19:26 +080020#define BOOT_TARGET_DEVICES(func) \
21 func(MMC, mmc, 1) \
22 func(MMC, mmc, 2)
23
24#include <config_distro_bootcmd.h>
Alice Guo9b162b12020-12-18 15:19:26 +080025
Peng Fan439321b2019-12-30 17:46:21 +080026/* Initial environment variables */
Tom Rini0613c362022-12-04 10:03:50 -050027#define CFG_EXTRA_ENV_SETTINGS \
Alice Guo9b162b12020-12-18 15:19:26 +080028 BOOTENV \
Tom Rini72d81362021-08-23 10:25:30 -040029 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
30 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Peng Fan439321b2019-12-30 17:46:21 +080031 "image=Image\0" \
32 "console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200\0" \
Peng Fana0273592021-03-19 15:56:58 +080033 "fdt_addr_r=0x43000000\0" \
Peng Fan439321b2019-12-30 17:46:21 +080034 "boot_fdt=try\0" \
Peng Fana0273592021-03-19 15:56:58 +080035 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Peng Fan439321b2019-12-30 17:46:21 +080036 "initrd_addr=0x43800000\0" \
Grygorii Tertychnyiacbc1d82020-08-21 15:39:43 +020037 "bootm_size=0x10000000\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050038 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080039 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Peng Fan439321b2019-12-30 17:46:21 +080040
41/* Link Definitions */
Peng Fan439321b2019-12-30 17:46:21 +080042
Tom Rini65cc0e22022-11-16 13:10:41 -050043#define CFG_SYS_INIT_RAM_ADDR 0x40000000
44#define CFG_SYS_INIT_RAM_SIZE 0x80000
Peng Fan439321b2019-12-30 17:46:21 +080045
Manoj Sai945c1182022-11-28 17:15:31 +053046/* Totally 6GB DDR */
Tom Riniaa6e94d2022-11-16 13:10:37 -050047#define CFG_SYS_SDRAM_BASE 0x40000000
Peng Fan439321b2019-12-30 17:46:21 +080048#define PHYS_SDRAM 0x40000000
Manoj Sai945c1182022-11-28 17:15:31 +053049#define PHYS_SDRAM_SIZE 0xC0000000 /* 3 GB */
50#define PHYS_SDRAM_2 0x100000000
51#define PHYS_SDRAM_2_SIZE 0xC0000000 /* 3 GB */
Peng Fan439321b2019-12-30 17:46:21 +080052
Peng Fan439321b2019-12-30 17:46:21 +080053#endif