blob: 738677ff37cd99180a557ec4673d2a30bf246f61 [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
15#ifdef CONFIG_SPL_BUILD
16/*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
Peng Fan439321b2019-12-30 17:46:21 +080017
Peng Fan439321b2019-12-30 17:46:21 +080018
Peng Fan439321b2019-12-30 17:46:21 +080019#define CONFIG_POWER_PCA9450
20
Peng Fan439321b2019-12-30 17:46:21 +080021#endif
22
Peng Fan48b90f82020-12-25 16:16:34 +080023#if defined(CONFIG_CMD_NET)
Peng Fan48b90f82020-12-25 16:16:34 +080024#define CONFIG_FEC_MXC_PHYADDR 1
Peng Fan48b90f82020-12-25 16:16:34 +080025
Peng Fan48b90f82020-12-25 16:16:34 +080026#define PHY_ANEG_TIMEOUT 20000
27
28#endif
29
Alice Guo9b162b12020-12-18 15:19:26 +080030#define BOOT_TARGET_DEVICES(func) \
31 func(MMC, mmc, 1) \
32 func(MMC, mmc, 2)
33
34#include <config_distro_bootcmd.h>
Alice Guo9b162b12020-12-18 15:19:26 +080035
Peng Fan439321b2019-12-30 17:46:21 +080036/* Initial environment variables */
37#define CONFIG_EXTRA_ENV_SETTINGS \
Alice Guo9b162b12020-12-18 15:19:26 +080038 BOOTENV \
Tom Rini72d81362021-08-23 10:25:30 -040039 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
40 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Peng Fan439321b2019-12-30 17:46:21 +080041 "image=Image\0" \
42 "console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200\0" \
Peng Fana0273592021-03-19 15:56:58 +080043 "fdt_addr_r=0x43000000\0" \
Peng Fan439321b2019-12-30 17:46:21 +080044 "boot_fdt=try\0" \
Peng Fana0273592021-03-19 15:56:58 +080045 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Peng Fan439321b2019-12-30 17:46:21 +080046 "initrd_addr=0x43800000\0" \
Grygorii Tertychnyiacbc1d82020-08-21 15:39:43 +020047 "bootm_size=0x10000000\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050048 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080049 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Peng Fan439321b2019-12-30 17:46:21 +080050
51/* Link Definitions */
Peng Fan439321b2019-12-30 17:46:21 +080052
Tom Rini65cc0e22022-11-16 13:10:41 -050053#define CFG_SYS_INIT_RAM_ADDR 0x40000000
54#define CFG_SYS_INIT_RAM_SIZE 0x80000
Peng Fan439321b2019-12-30 17:46:21 +080055
Peng Fan439321b2019-12-30 17:46:21 +080056
Manoj Sai864ac2c2022-08-26 18:03:37 +053057/* Totally 2GB DDR */
Tom Riniaa6e94d2022-11-16 13:10:37 -050058#define CFG_SYS_SDRAM_BASE 0x40000000
Peng Fan439321b2019-12-30 17:46:21 +080059#define PHYS_SDRAM 0x40000000
Manoj Sai864ac2c2022-08-26 18:03:37 +053060#define PHYS_SDRAM_SIZE 0x80000000
Peng Fan439321b2019-12-30 17:46:21 +080061
Peng Fan439321b2019-12-30 17:46:21 +080062#endif