blob: da3dc95f9ee1d6b27bd1ee5029a19c156cfe458f [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_SPL_MAX_SIZE (148 * 1024)
13#define CONFIG_SYS_MONITOR_LEN SZ_512K
Igor Opaniuk309e65b2020-01-28 14:42:25 +010014#define CONFIG_SYS_UBOOT_BASE \
15 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
16
Marek Vasut0d35f742021-05-18 00:40:30 +020017#define CONFIG_SYS_BOOTM_LEN SZ_64M
18
Igor Opaniuk309e65b2020-01-28 14:42:25 +010019#ifdef CONFIG_SPL_BUILD
20#define CONFIG_SPL_STACK 0x920000
21#define CONFIG_SPL_BSS_START_ADDR 0x910000
22#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K /* 8 KB */
23#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
24#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K /* 512 KB */
25
26/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
27#define CONFIG_MALLOC_F_ADDR 0x930000
28/* For RAW image gives a error info not panic */
29#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
30#endif
31
32#define MEM_LAYOUT_ENV_SETTINGS \
33 "fdt_addr_r=0x44000000\0" \
34 "kernel_addr_r=0x42000000\0" \
35 "ramdisk_addr_r=0x46400000\0" \
36 "scriptaddr=0x46000000\0"
37
Igor Opaniuk309e65b2020-01-28 14:42:25 +010038/* Enable Distro Boot */
39#ifndef CONFIG_SPL_BUILD
40#define BOOT_TARGET_DEVICES(func) \
41 func(MMC, mmc, 1) \
42 func(MMC, mmc, 0) \
43 func(DHCP, dhcp, na)
44#include <config_distro_bootcmd.h>
Igor Opaniuk309e65b2020-01-28 14:42:25 +010045#else
46#define BOOTENV
47#endif
48
49/* Initial environment variables */
50#define CONFIG_EXTRA_ENV_SETTINGS \
51 BOOTENV \
52 MEM_LAYOUT_ENV_SETTINGS \
53 "bootcmd_mfg=fastboot 0\0" \
Oleksandr Suvorovf106e632021-10-09 22:41:11 +020054 "boot_file=Image\0" \
Igor Opaniuk84c1a2d2022-04-13 11:33:27 +020055 "boot_script_dhcp=boot.scr\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010056 "console=ttymxc0\0" \
57 "fdt_addr=0x43000000\0" \
Oleksandr Suvorovf106e632021-10-09 22:41:11 +020058 "fdt_board=dev\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010059 "initrd_addr=0x43800000\0" \
60 "initrd_high=0xffffffffffffffff\0" \
Igor Opaniuk309e65b2020-01-28 14:42:25 +010061 "setup=setenv setupargs console=${console},${baudrate} " \
62 "console=tty1 consoleblank=0 earlycon\0" \
63 "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
64 "if test \"$confirm\" = \"y\"; then " \
65 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
66 "${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x2 " \
67 "${blkcnt}; fi\0"
68
69#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
70#define CONFIG_SYS_INIT_RAM_SIZE SZ_2M
71#define CONFIG_SYS_INIT_SP_OFFSET \
72 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
73#define CONFIG_SYS_INIT_SP_ADDR \
74 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
75
Igor Opaniuk309e65b2020-01-28 14:42:25 +010076#if defined(CONFIG_ENV_IS_IN_MMC)
77/* Environment in eMMC, before config block at the end of 1st "boot sector" */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010078#endif
79
Igor Opaniuk309e65b2020-01-28 14:42:25 +010080#define CONFIG_SYS_SDRAM_BASE 0x40000000
81
82/* SDRAM configuration */
83#define PHYS_SDRAM 0x40000000
84#define PHYS_SDRAM_SIZE SZ_2G /* 2GB DDR */
85
Igor Opaniuk309e65b2020-01-28 14:42:25 +010086/* UART */
87#define CONFIG_MXC_UART_BASE UART1_BASE_ADDR
88
89/* Monitor Command Prompt */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010090#define CONFIG_SYS_CBSIZE SZ_2K
91#define CONFIG_SYS_MAXARGS 64
92#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
93#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
94 sizeof(CONFIG_SYS_PROMPT) + 16)
Igor Opaniuk309e65b2020-01-28 14:42:25 +010095
96/* ENET */
Igor Opaniuk309e65b2020-01-28 14:42:25 +010097#define CONFIG_FEC_MXC_PHYADDR 7
98#define FEC_QUIRK_ENET_MAC
Igor Opaniuk309e65b2020-01-28 14:42:25 +010099
Marek Vasut0dcadcf2021-03-31 23:46:35 +0200100/* USB Configs */
101#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
102#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
103#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
104
Oleksandr Suvorovf106e632021-10-09 22:41:11 +0200105#endif /* __VERDIN_IMX8MM_H */