blob: 0b88e95603d5017692c2cb86f71f66e621dfa249 [file] [log] [blame]
Marcel Ziswiler36a439d2022-02-07 11:54:13 +01001/* 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 Rini6a5dccc2022-11-16 13:10:41 -050012#define CFG_SYS_UBOOT_BASE \
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010013 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
14
15#ifdef CONFIG_SPL_BUILD
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010016
17/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
Tom Rinifb52b942022-12-04 10:04:49 -050018#define CFG_MALLOC_F_ADDR 0x184000
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010019/* For RAW image gives a error info not panic */
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010020
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010021#endif /* CONFIG_SPL_BUILD */
22
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010023#define MEM_LAYOUT_ENV_SETTINGS \
Marcel Ziswiler82022f92022-08-22 15:06:00 +020024 "fdt_addr_r=0x50200000\0" \
25 "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
26 "kernel_comp_addr_r=0x40200000\0" \
Marcel Ziswiler48646d82022-09-22 23:28:32 +020027 "kernel_comp_size=0x08000000\0" \
Marcel Ziswiler82022f92022-08-22 15:06:00 +020028 "ramdisk_addr_r=0x50300000\0" \
29 "scriptaddr=0x50280000\0"
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010030
31/* Enable Distro Boot */
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010032#define BOOT_TARGET_DEVICES(func) \
33 func(MMC, mmc, 1) \
34 func(MMC, mmc, 2) \
35 func(DHCP, dhcp, na)
36#include <config_distro_bootcmd.h>
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010037
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010038/* Initial environment variables */
Tom Rinic9edebe2022-12-04 10:03:50 -050039#define CFG_EXTRA_ENV_SETTINGS \
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010040 BOOTENV \
41 MEM_LAYOUT_ENV_SETTINGS \
Hiago De Francoe66f86d2023-09-04 10:24:37 -030042 "boot_script_dhcp=boot.scr\0" \
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010043 "console=ttymxc2\0" \
44 "fdt_board=dev\0" \
45 "initrd_addr=0x43800000\0" \
46 "initrd_high=0xffffffffffffffff\0" \
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010047 "update_uboot=askenv confirm Did you load flash.bin (y/N)?; " \
48 "if test \"$confirm\" = \"y\"; then " \
49 "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
50 "${blkcnt} / 0x200; mmc dev 2 1; mmc write ${loadaddr} 0x0 " \
51 "${blkcnt}; fi\0"
52
Tom Rini6a5dccc2022-11-16 13:10:41 -050053#define CFG_SYS_INIT_RAM_ADDR 0x40000000
54#define CFG_SYS_INIT_RAM_SIZE SZ_512K
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010055
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010056/* i.MX 8M Plus supports max. 8GB memory in two albeit concecutive banks */
Tom Rinibb4dd962022-11-16 13:10:37 -050057#define CFG_SYS_SDRAM_BASE 0x40000000
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010058#define PHYS_SDRAM 0x40000000
59#define PHYS_SDRAM_SIZE (SZ_2G + SZ_1G)
60#define PHYS_SDRAM_2 0x100000000
61#define PHYS_SDRAM_2_SIZE (SZ_4G + SZ_1G)
62
Marcel Ziswiler36a439d2022-02-07 11:54:13 +010063#endif /* __VERDIN_IMX8MP_H */