Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2020 NXP |
| 4 | */ |
| 5 | |
| 6 | #ifndef __IMX8ULP_EVK_H |
| 7 | #define __IMX8ULP_EVK_H |
| 8 | |
| 9 | #include <linux/sizes.h> |
| 10 | #include <asm/arch/imx-regs.h> |
| 11 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 12 | #define CFG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512) |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 13 | |
| 14 | #ifdef CONFIG_SPL_BUILD |
Tom Rini | fb52b94 | 2022-12-04 10:04:49 -0500 | [diff] [blame] | 15 | #define CFG_MALLOC_F_ADDR 0x22040000 |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 16 | |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 17 | #endif |
| 18 | |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 19 | /* ENET Config */ |
| 20 | #if defined(CONFIG_FEC_MXC) |
Tom Rini | 4e3c8a6 | 2022-12-04 10:03:53 -0500 | [diff] [blame] | 21 | #define CFG_FEC_MXC_PHYADDR 1 |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 22 | #endif |
| 23 | |
| 24 | #ifdef CONFIG_DISTRO_DEFAULTS |
| 25 | #define BOOT_TARGET_DEVICES(func) \ |
| 26 | func(MMC, mmc, 0) |
| 27 | |
| 28 | #include <config_distro_bootcmd.h> |
| 29 | #else |
| 30 | #define BOOTENV |
| 31 | #endif |
| 32 | |
| 33 | /* Initial environment variables */ |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 34 | #define CFG_EXTRA_ENV_SETTINGS \ |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 35 | BOOTENV \ |
Tom Rini | 9004ee0 | 2021-08-23 10:25:30 -0400 | [diff] [blame] | 36 | "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
| 37 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 38 | "image=Image\0" \ |
| 39 | "console=ttyLP1,115200 earlycon\0" \ |
| 40 | "fdt_addr_r=0x83000000\0" \ |
| 41 | "boot_fit=no\0" \ |
| 42 | "fdtfile=imx8ulp-evk.dtb\0" \ |
| 43 | "initrd_addr=0x83800000\0" \ |
| 44 | "bootm_size=0x10000000\0" \ |
Tom Rini | b113bca | 2021-12-11 14:55:52 -0500 | [diff] [blame] | 45 | "mmcpart=1\0" \ |
Peng Fan | bb4bb58 | 2022-04-15 12:23:41 +0800 | [diff] [blame] | 46 | "mmcroot=/dev/mmcblk2p2 rootwait rw\0" \ |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 47 | |
| 48 | /* Link Definitions */ |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 49 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 50 | #define CFG_SYS_INIT_RAM_ADDR 0x80000000 |
| 51 | #define CFG_SYS_INIT_RAM_SIZE 0x80000 |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 52 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 53 | #define CFG_SYS_SDRAM_BASE 0x80000000 |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 54 | #define PHYS_SDRAM 0x80000000 |
| 55 | #define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */ |
| 56 | |
Peng Fan | cbe5d38 | 2021-08-07 16:01:13 +0800 | [diff] [blame] | 57 | /* Using ULP WDOG for reset */ |
| 58 | #define WDOG_BASE_ADDR WDG3_RBASE |
| 59 | #endif |