Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
Oleksandr Suvorov | f106e63 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 3 | * Copyright 2020-2021 Toradex |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __VERDIN_IMX8MM_H |
| 7 | #define __VERDIN_IMX8MM_H |
| 8 | |
| 9 | #include <asm/arch/imx-regs.h> |
| 10 | #include <linux/sizes.h> |
| 11 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame^] | 12 | #define CFG_SYS_UBOOT_BASE \ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 13 | (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512) |
| 14 | |
| 15 | #ifdef CONFIG_SPL_BUILD |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 16 | /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */ |
| 17 | #define CONFIG_MALLOC_F_ADDR 0x930000 |
| 18 | /* For RAW image gives a error info not panic */ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 19 | #endif |
| 20 | |
| 21 | #define MEM_LAYOUT_ENV_SETTINGS \ |
Marcel Ziswiler | 82022f9 | 2022-08-22 15:06:00 +0200 | [diff] [blame] | 22 | "fdt_addr_r=0x50200000\0" \ |
| 23 | "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
| 24 | "kernel_comp_addr_r=0x40200000\0" \ |
Marcel Ziswiler | 48646d8 | 2022-09-22 23:28:32 +0200 | [diff] [blame] | 25 | "kernel_comp_size=0x08000000\0" \ |
Marcel Ziswiler | 82022f9 | 2022-08-22 15:06:00 +0200 | [diff] [blame] | 26 | "ramdisk_addr_r=0x50300000\0" \ |
| 27 | "scriptaddr=0x50280000\0" |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 28 | |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 29 | /* Enable Distro Boot */ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 30 | #define BOOT_TARGET_DEVICES(func) \ |
| 31 | func(MMC, mmc, 1) \ |
| 32 | func(MMC, mmc, 0) \ |
| 33 | func(DHCP, dhcp, na) |
| 34 | #include <config_distro_bootcmd.h> |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 35 | |
| 36 | /* Initial environment variables */ |
| 37 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 38 | BOOTENV \ |
| 39 | MEM_LAYOUT_ENV_SETTINGS \ |
| 40 | "bootcmd_mfg=fastboot 0\0" \ |
Oleksandr Suvorov | f106e63 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 41 | "boot_file=Image\0" \ |
Igor Opaniuk | 84c1a2d | 2022-04-13 11:33:27 +0200 | [diff] [blame] | 42 | "boot_script_dhcp=boot.scr\0" \ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 43 | "console=ttymxc0\0" \ |
| 44 | "fdt_addr=0x43000000\0" \ |
Oleksandr Suvorov | f106e63 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 45 | "fdt_board=dev\0" \ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 46 | "initrd_addr=0x43800000\0" \ |
| 47 | "initrd_high=0xffffffffffffffff\0" \ |
Philippe Schenker | 827da10 | 2022-05-25 09:55:02 +0200 | [diff] [blame] | 48 | "setup=setenv setupargs console=tty1 console=${console},${baudrate} " \ |
| 49 | "consoleblank=0 earlycon\0" \ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 50 | "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \ |
| 51 | "if test \"$confirm\" = \"y\"; then " \ |
| 52 | "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \ |
| 53 | "${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \ |
| 54 | "${blkcnt}; fi\0" |
| 55 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame^] | 56 | #define CFG_SYS_INIT_RAM_ADDR 0x40000000 |
| 57 | #define CFG_SYS_INIT_RAM_SIZE SZ_2M |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 58 | |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 59 | #if defined(CONFIG_ENV_IS_IN_MMC) |
| 60 | /* Environment in eMMC, before config block at the end of 1st "boot sector" */ |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 61 | #endif |
| 62 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 63 | #define CFG_SYS_SDRAM_BASE 0x40000000 |
Igor Opaniuk | 309e65b | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 64 | |
| 65 | /* SDRAM configuration */ |
| 66 | #define PHYS_SDRAM 0x40000000 |
| 67 | #define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */ |
| 68 | |
Marek Vasut | 0dcadcf | 2021-03-31 23:46:35 +0200 | [diff] [blame] | 69 | /* USB Configs */ |
Marek Vasut | 0dcadcf | 2021-03-31 23:46:35 +0200 | [diff] [blame] | 70 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
Marek Vasut | 0dcadcf | 2021-03-31 23:46:35 +0200 | [diff] [blame] | 71 | |
Oleksandr Suvorov | f106e63 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 72 | #endif /* __VERDIN_IMX8MM_H */ |