blob: f4b6353ea850a54544262fdd52790b9b1d83fd8d [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
Oleksandr Suvorov80c9cb32021-08-29 22:39:11 +030013#define CONFIG_SYS_BOOTM_LEN (64 * SZ_1M)
Peng Fan9b15ce92019-08-27 06:26:08 +000014#define CONFIG_SPL_MAX_SIZE (148 * 1024)
15#define CONFIG_SYS_MONITOR_LEN SZ_512K
Peng Fan9b15ce92019-08-27 06:26:08 +000016#define CONFIG_SYS_UBOOT_BASE \
17 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
18
19#ifdef CONFIG_SPL_BUILD
20#define CONFIG_SPL_STACK 0x920000
21#define CONFIG_SPL_BSS_START_ADDR 0x910000
22#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K /* 8 KB */
23#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
24#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K /* 512 KB */
25
26/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
27#define CONFIG_MALLOC_F_ADDR 0x930000
28/* For RAW image gives a error info not panic */
29#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
30
31#endif
32
Alice Guo2df89302020-12-18 14:50:07 +080033#ifndef CONFIG_SPL_BUILD
34#define BOOT_TARGET_DEVICES(func) \
35 func(MMC, mmc, 1) \
36 func(MMC, mmc, 2) \
37 func(DHCP, dhcp, na)
38
39#include <config_distro_bootcmd.h>
40#endif
41
Peng Fan9b15ce92019-08-27 06:26:08 +000042/* Initial environment variables */
43#define CONFIG_EXTRA_ENV_SETTINGS \
Alice Guo2df89302020-12-18 14:50:07 +080044 BOOTENV \
Tom Rini72d81362021-08-23 10:25:30 -040045 "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
46 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
Fabio Estevam32efcbc2019-12-16 16:09:22 -030047 "image=Image\0" \
Fabio Estevam502f3ca2019-12-11 14:31:03 -030048 "console=ttymxc1,115200\0" \
Peng Fanf53e1c22021-03-19 15:56:57 +080049 "fdt_addr_r=0x43000000\0" \
Fabio Estevam32efcbc2019-12-16 16:09:22 -030050 "boot_fit=no\0" \
Peng Fanf53e1c22021-03-19 15:56:57 +080051 "fdtfile=imx8mm-evk.dtb\0" \
Peng Fan9b15ce92019-08-27 06:26:08 +000052 "initrd_addr=0x43800000\0" \
Grygorii Tertychnyiacbc1d82020-08-21 15:39:43 +020053 "bootm_size=0x10000000\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050054 "mmcpart=1\0" \
Peng Fan9b15ce92019-08-27 06:26:08 +000055 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
Peng Fan9b15ce92019-08-27 06:26:08 +000056
57/* Link Definitions */
Peng Fan9b15ce92019-08-27 06:26:08 +000058
59#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
60#define CONFIG_SYS_INIT_RAM_SIZE 0x200000
61#define CONFIG_SYS_INIT_SP_OFFSET \
62 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
63#define CONFIG_SYS_INIT_SP_ADDR \
64 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
65
Peng Fan9b15ce92019-08-27 06:26:08 +000066#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
67
Peng Fan9b15ce92019-08-27 06:26:08 +000068#define CONFIG_SYS_SDRAM_BASE 0x40000000
69#define PHYS_SDRAM 0x40000000
70#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
71
Peng Fan9b15ce92019-08-27 06:26:08 +000072#define CONFIG_MXC_UART_BASE UART2_BASE_ADDR
73
74/* Monitor Command Prompt */
Peng Fan9b15ce92019-08-27 06:26:08 +000075#define CONFIG_SYS_CBSIZE 2048
76#define CONFIG_SYS_MAXARGS 64
77#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
78#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
79 sizeof(CONFIG_SYS_PROMPT) + 16)
80
Peng Fanbdcf3a82019-10-22 03:30:04 +000081#define CONFIG_FEC_MXC_PHYADDR 0
82#define FEC_QUIRK_ENET_MAC
83
Peng Fan9b15ce92019-08-27 06:26:08 +000084#endif