2020-01-28 13:42:25 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
2021-10-09 20:41:11 +00:00
|
|
|
* Copyright 2020-2021 Toradex
|
2020-01-28 13:42:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VERDIN_IMX8MM_H
|
|
|
|
#define __VERDIN_IMX8MM_H
|
|
|
|
|
|
|
|
#include <asm/arch/imx-regs.h>
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
#define CONFIG_SPL_MAX_SIZE (148 * 1024)
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN SZ_512K
|
|
|
|
#define CONFIG_SYS_UBOOT_BASE \
|
|
|
|
(QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
|
|
|
|
|
2021-05-17 22:40:30 +00:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
|
|
|
|
2020-01-28 13:42:25 +00:00
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
|
|
#define CONFIG_SPL_STACK 0x920000
|
|
|
|
#define CONFIG_SPL_BSS_START_ADDR 0x910000
|
|
|
|
#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K /* 8 KB */
|
|
|
|
#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
|
|
|
|
#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K /* 512 KB */
|
|
|
|
|
|
|
|
/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
|
|
|
|
#define CONFIG_MALLOC_F_ADDR 0x930000
|
|
|
|
/* For RAW image gives a error info not panic */
|
|
|
|
#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
|
|
|
"fdt_addr_r=0x44000000\0" \
|
|
|
|
"kernel_addr_r=0x42000000\0" \
|
|
|
|
"ramdisk_addr_r=0x46400000\0" \
|
|
|
|
"scriptaddr=0x46000000\0"
|
|
|
|
|
|
|
|
/* Enable Distro Boot */
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#else
|
|
|
|
#define BOOTENV
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Initial environment variables */
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
BOOTENV \
|
|
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
|
|
"bootcmd_mfg=fastboot 0\0" \
|
2021-10-09 20:41:11 +00:00
|
|
|
"boot_file=Image\0" \
|
2022-04-13 09:33:27 +00:00
|
|
|
"boot_script_dhcp=boot.scr\0" \
|
2020-01-28 13:42:25 +00:00
|
|
|
"console=ttymxc0\0" \
|
|
|
|
"fdt_addr=0x43000000\0" \
|
2021-10-09 20:41:11 +00:00
|
|
|
"fdt_board=dev\0" \
|
2020-01-28 13:42:25 +00:00
|
|
|
"initrd_addr=0x43800000\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
|
|
|
"setup=setenv setupargs console=${console},${baudrate} " \
|
|
|
|
"console=tty1 consoleblank=0 earlycon\0" \
|
|
|
|
"update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
|
|
|
|
"if test \"$confirm\" = \"y\"; then " \
|
|
|
|
"setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
|
|
|
|
"${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \
|
|
|
|
"${blkcnt}; fi\0"
|
|
|
|
|
|
|
|
#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
|
|
|
|
#define CONFIG_SYS_INIT_RAM_SIZE SZ_2M
|
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
|
|
(CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
|
|
#define CONFIG_SYS_INIT_SP_ADDR \
|
|
|
|
(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
|
|
|
|
|
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
|
|
|
/* Environment in eMMC, before config block at the end of 1st "boot sector" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x40000000
|
|
|
|
|
|
|
|
/* SDRAM configuration */
|
|
|
|
#define PHYS_SDRAM 0x40000000
|
|
|
|
#define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */
|
|
|
|
|
|
|
|
/* UART */
|
|
|
|
#define CONFIG_MXC_UART_BASE UART1_BASE_ADDR
|
|
|
|
|
|
|
|
/* Monitor Command Prompt */
|
|
|
|
#define CONFIG_SYS_CBSIZE SZ_2K
|
|
|
|
#define CONFIG_SYS_MAXARGS 64
|
|
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
|
|
|
sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
|
|
|
|
|
|
/* ENET */
|
|
|
|
#define CONFIG_FEC_MXC_PHYADDR 7
|
|
|
|
#define FEC_QUIRK_ENET_MAC
|
|
|
|
|
2021-03-31 21:46:35 +00:00
|
|
|
/* USB Configs */
|
|
|
|
#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
|
|
|
|
#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
|
|
#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
|
|
|
|
|
2021-10-09 20:41:11 +00:00
|
|
|
#endif /* __VERDIN_IMX8MM_H */
|