blob: 5b5fce9bda177d72e66f9b1fbcca4a4a1f235fe9 [file] [log] [blame]
Igor Opaniuk309e65b2020-01-28 14:42:25 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Oleksandr Suvorovf106e632021-10-09 22:41:11 +02003 * Copyright 2020-2021 Toradex
Igor Opaniuk309e65b2020-01-28 14:42:25 +01004 */
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
Igor Opaniuk309e65b2020-01-28 14:42:25 +010012#define CONFIG_SYS_MONITOR_LEN SZ_512K
Igor Opaniuk309e65b2020-01-28 14:42:25 +010013#define CONFIG_SYS_UBOOT_BASE \
14 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
15
16#ifdef CONFIG_SPL_BUILD
Igor Opaniuk309e65b2020-01-28 14:42:25 +010017/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
18#define CONFIG_MALLOC_F_ADDR 0x930000
19/* For RAW image gives a error info not panic */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010020#endif
21
22#define MEM_LAYOUT_ENV_SETTINGS \
23 "fdt_addr_r=0x44000000\0" \
24 "kernel_addr_r=0x42000000\0" \
25 "ramdisk_addr_r=0x46400000\0" \
26 "scriptaddr=0x46000000\0"
27
Igor Opaniuk309e65b2020-01-28 14:42:25 +010028/* Enable Distro Boot */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010029#define BOOT_TARGET_DEVICES(func) \
30 func(MMC, mmc, 1) \
31 func(MMC, mmc, 0) \
32 func(DHCP, dhcp, na)
33#include <config_distro_bootcmd.h>
Igor Opaniuk309e65b2020-01-28 14:42:25 +010034
35/* Initial environment variables */
36#define CONFIG_EXTRA_ENV_SETTINGS \
37 BOOTENV \
38 MEM_LAYOUT_ENV_SETTINGS \
39 "bootcmd_mfg=fastboot 0\0" \
Oleksandr Suvorovf106e632021-10-09 22:41:11 +020040 "boot_file=Image\0" \
Igor Opaniuk84c1a2d2022-04-13 11:33:27 +020041 "boot_script_dhcp=boot.scr\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010042 "console=ttymxc0\0" \
43 "fdt_addr=0x43000000\0" \
Oleksandr Suvorovf106e632021-10-09 22:41:11 +020044 "fdt_board=dev\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010045 "initrd_addr=0x43800000\0" \
46 "initrd_high=0xffffffffffffffff\0" \
Philippe Schenker827da102022-05-25 09:55:02 +020047 "setup=setenv setupargs console=tty1 console=${console},${baudrate} " \
48 "consoleblank=0 earlycon\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010049 "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
50 "if test \"$confirm\" = \"y\"; then " \
51 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
52 "${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \
53 "${blkcnt}; fi\0"
54
55#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
56#define CONFIG_SYS_INIT_RAM_SIZE SZ_2M
Igor Opaniuk309e65b2020-01-28 14:42:25 +010057
Igor Opaniuk309e65b2020-01-28 14:42:25 +010058#if defined(CONFIG_ENV_IS_IN_MMC)
59/* Environment in eMMC, before config block at the end of 1st "boot sector" */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010060#endif
61
Igor Opaniuk309e65b2020-01-28 14:42:25 +010062#define CONFIG_SYS_SDRAM_BASE 0x40000000
63
64/* SDRAM configuration */
65#define PHYS_SDRAM 0x40000000
66#define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */
67
Igor Opaniuk309e65b2020-01-28 14:42:25 +010068/* ENET */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010069#define CONFIG_FEC_MXC_PHYADDR 7
Igor Opaniuk309e65b2020-01-28 14:42:25 +010070
Marek Vasut0dcadcf2021-03-31 23:46:35 +020071/* USB Configs */
Marek Vasut0dcadcf2021-03-31 23:46:35 +020072#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Marek Vasut0dcadcf2021-03-31 23:46:35 +020073
Oleksandr Suvorovf106e632021-10-09 22:41:11 +020074#endif /* __VERDIN_IMX8MM_H */