Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 1 | /* 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 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 12 | #define CFG_SYS_UBOOT_BASE \ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 13 | (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512) |
| 14 | |
| 15 | #ifdef CONFIG_SPL_BUILD |
| 16 | /*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 17 | |
| 18 | /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */ |
Tom Rini | dd5b58c | 2022-12-04 10:04:49 -0500 | [diff] [blame] | 19 | #define CFG_MALLOC_F_ADDR 0x184000 |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 20 | /* For RAW image gives a error info not panic */ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 21 | |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 22 | #endif /* CONFIG_SPL_BUILD */ |
| 23 | |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 24 | #define MEM_LAYOUT_ENV_SETTINGS \ |
Marcel Ziswiler | bbe0089 | 2022-08-22 15:06:00 +0200 | [diff] [blame] | 25 | "fdt_addr_r=0x50200000\0" \ |
| 26 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
| 27 | "kernel_comp_addr_r=0x40200000\0" \ |
Marcel Ziswiler | 559c538 | 2022-09-22 23:28:32 +0200 | [diff] [blame] | 28 | "kernel_comp_size=0x08000000\0" \ |
Marcel Ziswiler | bbe0089 | 2022-08-22 15:06:00 +0200 | [diff] [blame] | 29 | "ramdisk_addr_r=0x50300000\0" \ |
| 30 | "scriptaddr=0x50280000\0" |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 31 | |
| 32 | /* Enable Distro Boot */ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 33 | #define BOOT_TARGET_DEVICES(func) \ |
| 34 | func(MMC, mmc, 1) \ |
| 35 | func(MMC, mmc, 2) \ |
| 36 | func(DHCP, dhcp, na) |
| 37 | #include <config_distro_bootcmd.h> |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 38 | |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 39 | /* Initial environment variables */ |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 40 | #define CFG_EXTRA_ENV_SETTINGS \ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 41 | BOOTENV \ |
| 42 | MEM_LAYOUT_ENV_SETTINGS \ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 43 | "boot_file=Image\0" \ |
Hiago De Franco | 2775250 | 2023-09-04 10:24:37 -0300 | [diff] [blame] | 44 | "boot_scripts=boot.scr\0" \ |
| 45 | "boot_script_dhcp=boot.scr\0" \ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 46 | "console=ttymxc2\0" \ |
| 47 | "fdt_board=dev\0" \ |
| 48 | "initrd_addr=0x43800000\0" \ |
| 49 | "initrd_high=0xffffffffffffffff\0" \ |
Philippe Schenker | a3f2dcf | 2022-05-25 09:55:02 +0200 | [diff] [blame] | 50 | "setup=setenv setupargs console=tty1 console=${console},${baudrate} " \ |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 51 | "consoleblank=0 earlycon\0" \ |
| 52 | "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \ |
| 53 | "if test \"$confirm\" = \"y\"; then " \ |
| 54 | "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \ |
| 55 | "${blkcnt} / 0x200; mmc dev 2 1; mmc write ${loadaddr} 0x0 " \ |
| 56 | "${blkcnt}; fi\0" |
| 57 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 58 | #define CFG_SYS_INIT_RAM_ADDR 0x40000000 |
| 59 | #define CFG_SYS_INIT_RAM_SIZE SZ_512K |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 60 | |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 61 | /* i.MX 8M Plus supports max. 8GB memory in two albeit concecutive banks */ |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 62 | #define CFG_SYS_SDRAM_BASE 0x40000000 |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 63 | #define PHYS_SDRAM 0x40000000 |
| 64 | #define PHYS_SDRAM_SIZE (SZ_2G + SZ_1G) |
| 65 | #define PHYS_SDRAM_2 0x100000000 |
| 66 | #define PHYS_SDRAM_2_SIZE (SZ_4G + SZ_1G) |
| 67 | |
Marcel Ziswiler | 2bc2f81 | 2022-02-07 11:54:13 +0100 | [diff] [blame] | 68 | #endif /* __VERDIN_IMX8MP_H */ |