Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
Oleksandr Suvorov | 41d4b00 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 3 | * Copyright 2020-2021 Toradex |
Igor Opaniuk | 14d5aef | 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 | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 12 | #define CFG_SYS_UBOOT_BASE \ |
Igor Opaniuk | 14d5aef | 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 | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 16 | /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */ |
Tom Rini | dd5b58c | 2022-12-04 10:04:49 -0500 | [diff] [blame] | 17 | #define CFG_MALLOC_F_ADDR 0x930000 |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 18 | /* For RAW image gives a error info not panic */ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 19 | #endif |
| 20 | |
| 21 | #define MEM_LAYOUT_ENV_SETTINGS \ |
Marcel Ziswiler | bbe0089 | 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 | 559c538 | 2022-09-22 23:28:32 +0200 | [diff] [blame] | 25 | "kernel_comp_size=0x08000000\0" \ |
Marcel Ziswiler | bbe0089 | 2022-08-22 15:06:00 +0200 | [diff] [blame] | 26 | "ramdisk_addr_r=0x50300000\0" \ |
| 27 | "scriptaddr=0x50280000\0" |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 28 | |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 29 | /* Enable Distro Boot */ |
Igor Opaniuk | 14d5aef | 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 | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 35 | |
| 36 | /* Initial environment variables */ |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 37 | #define CFG_EXTRA_ENV_SETTINGS \ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 38 | BOOTENV \ |
| 39 | MEM_LAYOUT_ENV_SETTINGS \ |
Oleksandr Suvorov | 41d4b00 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 40 | "boot_file=Image\0" \ |
Igor Opaniuk | 1377a77 | 2022-04-13 11:33:27 +0200 | [diff] [blame] | 41 | "boot_script_dhcp=boot.scr\0" \ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 42 | "console=ttymxc0\0" \ |
Oleksandr Suvorov | 41d4b00 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 43 | "fdt_board=dev\0" \ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 44 | "initrd_addr=0x43800000\0" \ |
| 45 | "initrd_high=0xffffffffffffffff\0" \ |
Philippe Schenker | a3f2dcf | 2022-05-25 09:55:02 +0200 | [diff] [blame] | 46 | "setup=setenv setupargs console=tty1 console=${console},${baudrate} " \ |
| 47 | "consoleblank=0 earlycon\0" \ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 48 | "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \ |
| 49 | "if test \"$confirm\" = \"y\"; then " \ |
| 50 | "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \ |
| 51 | "${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \ |
| 52 | "${blkcnt}; fi\0" |
| 53 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 54 | #define CFG_SYS_INIT_RAM_ADDR 0x40000000 |
| 55 | #define CFG_SYS_INIT_RAM_SIZE SZ_2M |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 56 | |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 57 | #if defined(CONFIG_ENV_IS_IN_MMC) |
| 58 | /* Environment in eMMC, before config block at the end of 1st "boot sector" */ |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 59 | #endif |
| 60 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 61 | #define CFG_SYS_SDRAM_BASE 0x40000000 |
Igor Opaniuk | 14d5aef | 2020-01-28 14:42:25 +0100 | [diff] [blame] | 62 | |
| 63 | /* SDRAM configuration */ |
| 64 | #define PHYS_SDRAM 0x40000000 |
| 65 | #define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */ |
| 66 | |
Marek Vasut | d08cdc2 | 2021-03-31 23:46:35 +0200 | [diff] [blame] | 67 | /* USB Configs */ |
Tom Rini | dd11fdc | 2022-12-04 10:04:56 -0500 | [diff] [blame] | 68 | #define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
Marek Vasut | d08cdc2 | 2021-03-31 23:46:35 +0200 | [diff] [blame] | 69 | |
Oleksandr Suvorov | 41d4b00 | 2021-10-09 22:41:11 +0200 | [diff] [blame] | 70 | #endif /* __VERDIN_IMX8MM_H */ |