2019-09-16 03:09:55 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright 2018 NXP
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IMX8MN_EVK_H
|
|
|
|
#define __IMX8MN_EVK_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
2020-05-10 17:40:09 +00:00
|
|
|
#include <linux/stringify.h>
|
2019-09-16 03:09:55 +00:00
|
|
|
#include <asm/arch/imx-regs.h>
|
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_UBOOT_BASE \
|
2019-09-16 03:09:55 +00:00
|
|
|
(QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
|
|
|
|
|
2021-05-02 14:32:37 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(MMC, mmc, 2) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2019-09-16 03:09:55 +00:00
|
|
|
/* Initial environment variables */
|
2022-02-24 20:07:14 +00:00
|
|
|
/* see include/configs/ti_armv7_common.h */
|
|
|
|
#define ENV_MEM_LAYOUT_SETTINGS \
|
|
|
|
"loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
|
|
|
|
"kernel_addr_r=0x42000000\0" \
|
|
|
|
"fdt_addr_r=0x48000000\0" \
|
|
|
|
"fdtoverlay_addr_r=0x49000000\0" \
|
|
|
|
"ramdisk_addr_r=0x48080000\0" \
|
|
|
|
"initrd_addr=0x48080000\0" \
|
|
|
|
"scriptaddr=0x40000000\0" \
|
|
|
|
"pxefile_addr_r=0x40100000\0"
|
|
|
|
|
2019-09-16 03:09:55 +00:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2021-03-04 11:07:16 +00:00
|
|
|
"image=Image\0" \
|
2021-05-02 14:32:37 +00:00
|
|
|
BOOTENV \
|
2019-12-11 17:31:03 +00:00
|
|
|
"console=ttymxc1,115200\0" \
|
2021-03-04 11:07:16 +00:00
|
|
|
"boot_fit=no\0" \
|
2021-05-02 14:32:37 +00:00
|
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
2020-08-21 13:39:43 +00:00
|
|
|
"bootm_size=0x10000000\0" \
|
2021-12-11 19:55:52 +00:00
|
|
|
"mmcpart=1\0" \
|
2022-04-15 04:23:41 +00:00
|
|
|
"mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
|
2022-02-24 20:07:14 +00:00
|
|
|
ENV_MEM_LAYOUT_SETTINGS
|
2019-09-16 03:09:55 +00:00
|
|
|
|
|
|
|
/* Link Definitions */
|
|
|
|
|
2022-11-16 18:10:41 +00:00
|
|
|
#define CFG_SYS_INIT_RAM_ADDR 0x40000000
|
|
|
|
#define CFG_SYS_INIT_RAM_SIZE 0x200000
|
2019-09-16 03:09:55 +00:00
|
|
|
|
|
|
|
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x40000000
|
2019-09-16 03:09:55 +00:00
|
|
|
#define PHYS_SDRAM 0x40000000
|
|
|
|
#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
|
|
|
|
|
|
|
|
#endif
|