blob: 9e29dc19033fce1869abe150331457f224f6e086 [file] [log] [blame]
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +01001/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright 2022 Toradex
4 */
5
6#ifndef __VERDIN_IMX8MP_H
7#define __VERDIN_IMX8MP_H
8
9#include <asm/arch/imx-regs.h>
10#include <linux/sizes.h>
11
12#define CONFIG_SPL_MAX_SIZE (152 * 1024)
13#define CONFIG_SYS_MONITOR_LEN SZ_512K
14#define CONFIG_SYS_UBOOT_BASE \
15 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
16
17#ifdef CONFIG_SPL_BUILD
18/*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +010019#define CONFIG_SPL_STACK 0x960000
20#define CONFIG_SPL_BSS_START_ADDR 0x0098fc00
21#define CONFIG_SPL_BSS_MAX_SIZE SZ_1K
22#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
23#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K
24
25/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
26#define CONFIG_MALLOC_F_ADDR 0x184000
27/* For RAW image gives a error info not panic */
28#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
29
30#define CONFIG_POWER_PCA9450
31
32#define CONFIG_SYS_I2C
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +010033#endif /* CONFIG_SPL_BUILD */
34
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +010035/* ENET Config */
36/* ENET1 */
37#if defined(CONFIG_CMD_NET)
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +010038#define CONFIG_FEC_MXC_PHYADDR 7
39#define FEC_QUIRK_ENET_MAC
40
41#define PHY_ANEG_TIMEOUT 20000
42#endif /* CONFIG_CMD_NET */
43
44#define MEM_LAYOUT_ENV_SETTINGS \
45 "fdt_addr_r=0x43000000\0" \
46 "kernel_addr_r=0x40000000\0" \
47 "ramdisk_addr_r=0x46400000\0" \
48 "scriptaddr=0x46000000\0"
49
50/* Enable Distro Boot */
51#ifndef CONFIG_SPL_BUILD
52#define BOOT_TARGET_DEVICES(func) \
53 func(MMC, mmc, 1) \
54 func(MMC, mmc, 2) \
55 func(DHCP, dhcp, na)
56#include <config_distro_bootcmd.h>
Marcel Ziswiler2bc2f812022-02-07 11:54:13 +010057#else
58#define BOOTENV
59#endif
60
61#if defined(CONFIG_TDX_EASY_INSTALLER)
62# define BOOT_SCRIPT "boot-tezi.scr"
63#else
64# define BOOT_SCRIPT "boot.scr"
65#endif
66
67/* Initial environment variables */
68#define CONFIG_EXTRA_ENV_SETTINGS \
69 BOOTENV \
70 MEM_LAYOUT_ENV_SETTINGS \
71 "bootcmd_mfg=fastboot 0\0" \
72 "boot_file=Image\0" \
73 "boot_scripts=" BOOT_SCRIPT "\0" \
74 "boot_script_dhcp=" BOOT_SCRIPT "\0" \
75 "console=ttymxc2\0" \
76 "fdt_board=dev\0" \
77 "initrd_addr=0x43800000\0" \
78 "initrd_high=0xffffffffffffffff\0" \
79 "netargs=setenv bootargs console=${console},${baudrate} " \
80 "root=/dev/nfs ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp" \
81 "\0" \
82 "nfsboot=run netargs; dhcp ${loadaddr} ${boot_file}; " \
83 "tftp ${fdt_addr} verdin/${fdtfile}; " \
84 "booti ${loadaddr} - ${fdt_addr}\0" \
85 "setup=setenv setupargs console=${console},${baudrate} console=tty1 " \
86 "consoleblank=0 earlycon\0" \
87 "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
88 "if test \"$confirm\" = \"y\"; then " \
89 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
90 "${blkcnt} / 0x200; mmc dev 2 1; mmc write ${loadaddr} 0x0 " \
91 "${blkcnt}; fi\0"
92
93#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
94#define CONFIG_SYS_INIT_RAM_SIZE SZ_512K
95#define CONFIG_SYS_INIT_SP_OFFSET \
96 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
97#define CONFIG_SYS_INIT_SP_ADDR \
98 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
99
100#define CONFIG_SYS_BOOTM_LEN SZ_64M /* Increase max gunzip size */
101
102/* i.MX 8M Plus supports max. 8GB memory in two albeit concecutive banks */
103#define CONFIG_SYS_SDRAM_BASE 0x40000000
104#define PHYS_SDRAM 0x40000000
105#define PHYS_SDRAM_SIZE (SZ_2G + SZ_1G)
106#define PHYS_SDRAM_2 0x100000000
107#define PHYS_SDRAM_2_SIZE (SZ_4G + SZ_1G)
108
109/* UART */
110#define CONFIG_MXC_UART_BASE UART3_BASE_ADDR
111
112/* Monitor Command Prompt */
113#define CONFIG_SYS_CBSIZE SZ_2K
114#define CONFIG_SYS_MAXARGS 64
115#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
116#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
117 sizeof(CONFIG_SYS_PROMPT) + 16)
118
119/* USDHC */
120#define CONFIG_SYS_FSL_USDHC_NUM 2
121#define CONFIG_SYS_FSL_ESDHC_ADDR 0
122
123#endif /* __VERDIN_IMX8MP_H */