blob: d5642b96495f34b978140e3d166c24cf02197769 [file] [log] [blame]
Peng Fan9b15ce92019-08-27 06:26:08 +00001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2019 NXP
4 */
5
6#ifndef __IMX8MM_EVK_H
7#define __IMX8MM_EVK_H
8
9#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Peng Fan9b15ce92019-08-27 06:26:08 +000011#include <asm/arch/imx-regs.h>
12
Mamta Shukla1c3a8e72022-07-12 14:36:21 +000013#define UBOOT_ITB_OFFSET 0x57C00
14#define FSPI_CONF_BLOCK_SIZE 0x1000
15#define UBOOT_ITB_OFFSET_FSPI \
16 (UBOOT_ITB_OFFSET + FSPI_CONF_BLOCK_SIZE)
17#ifdef CONFIG_FSPI_CONF_HEADER
Tom Rini65cc0e22022-11-16 13:10:41 -050018#define CFG_SYS_UBOOT_BASE \
Mamta Shukla1c3a8e72022-07-12 14:36:21 +000019 (QSPI0_AMBA_BASE + UBOOT_ITB_OFFSET_FSPI)
20#else
Tom Rini65cc0e22022-11-16 13:10:41 -050021#define CFG_SYS_UBOOT_BASE \
Peng Fan9b15ce92019-08-27 06:26:08 +000022 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
Mamta Shukla1c3a8e72022-07-12 14:36:21 +000023#endif
Peng Fan9b15ce92019-08-27 06:26:08 +000024
25#ifdef CONFIG_SPL_BUILD
Peng Fan9b15ce92019-08-27 06:26:08 +000026/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
Tom Rinidd5b58c2022-12-04 10:04:49 -050027#define CFG_MALLOC_F_ADDR 0x930000
Peng Fan9b15ce92019-08-27 06:26:08 +000028/* For RAW image gives a error info not panic */
Peng Fan9b15ce92019-08-27 06:26:08 +000029
30#endif
31
Alice Guo2df89302020-12-18 14:50:07 +080032#define BOOT_TARGET_DEVICES(func) \
33 func(MMC, mmc, 1) \
34 func(MMC, mmc, 2) \
35 func(DHCP, dhcp, na)
36
37#include <config_distro_bootcmd.h>
Alice Guo2df89302020-12-18 14:50:07 +080038
Peng Fan9b15ce92019-08-27 06:26:08 +000039/* Initial environment variables */
Tom Rini0613c362022-12-04 10:03:50 -050040#define CFG_EXTRA_ENV_SETTINGS \
Alice Guo2df89302020-12-18 14:50:07 +080041 BOOTENV \
Tom Rini72d81362021-08-23 10:25:30 -040042 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
43 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Fabio Estevam32efcbc2019-12-16 16:09:22 -030044 "image=Image\0" \
Fabio Estevam502f3ca2019-12-11 14:31:03 -030045 "console=ttymxc1,115200\0" \
Peng Fanf53e1c22021-03-19 15:56:57 +080046 "fdt_addr_r=0x43000000\0" \
Fabio Estevam32efcbc2019-12-16 16:09:22 -030047 "boot_fit=no\0" \
Peng Fanf53e1c22021-03-19 15:56:57 +080048 "fdtfile=imx8mm-evk.dtb\0" \
Peng Fan9b15ce92019-08-27 06:26:08 +000049 "initrd_addr=0x43800000\0" \
Grygorii Tertychnyiacbc1d82020-08-21 15:39:43 +020050 "bootm_size=0x10000000\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050051 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080052 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Peng Fan9b15ce92019-08-27 06:26:08 +000053
54/* Link Definitions */
Peng Fan9b15ce92019-08-27 06:26:08 +000055
Tom Rini65cc0e22022-11-16 13:10:41 -050056#define CFG_SYS_INIT_RAM_ADDR 0x40000000
57#define CFG_SYS_INIT_RAM_SIZE 0x200000
Peng Fan9b15ce92019-08-27 06:26:08 +000058
Peng Fan9b15ce92019-08-27 06:26:08 +000059
Tom Riniaa6e94d2022-11-16 13:10:37 -050060#define CFG_SYS_SDRAM_BASE 0x40000000
Peng Fan9b15ce92019-08-27 06:26:08 +000061#define PHYS_SDRAM 0x40000000
62#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
63
Tom Rinifa760c32022-12-04 10:03:53 -050064#define CFG_FEC_MXC_PHYADDR 0
Peng Fanbdcf3a82019-10-22 03:30:04 +000065
Peng Fan9b15ce92019-08-27 06:26:08 +000066#endif