global: Move remaining CONFIG_SYS_* to CFG_SYS_*
[platform/kernel/u-boot.git] / include / configs / imx8mm_venice.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2021 Gateworks Corporation
4  */
5
6 #ifndef __IMX8MM_VENICE_H
7 #define __IMX8MM_VENICE_H
8
9 #include <asm/arch/imx-regs.h>
10 #include <linux/sizes.h>
11
12 #define CFG_SYS_UBOOT_BASE      \
13         (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
14
15 #ifdef CONFIG_SPL_BUILD
16 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
17 #define CONFIG_MALLOC_F_ADDR            0x930000
18 #endif
19
20 /* Enable Distro Boot */
21 #define BOOT_TARGET_DEVICES(func) \
22         func(MMC, mmc, 1) \
23         func(MMC, mmc, 2) \
24         func(USB, usb, 0) \
25         func(USB, usb, 1) \
26         func(DHCP, dhcp, na)
27 #include <config_distro_bootcmd.h>
28 #define CONFIG_EXTRA_ENV_SETTINGS \
29         "splblk=0x42\0" \
30         BOOTENV
31
32 #define CFG_SYS_INIT_RAM_ADDR        0x40000000
33 #define CFG_SYS_INIT_RAM_SIZE        SZ_2M
34
35 #define CFG_SYS_SDRAM_BASE           0x40000000
36
37 /* SDRAM configuration */
38 #define PHYS_SDRAM                      0x40000000
39 #define PHYS_SDRAM_SIZE                 SZ_4G
40
41 #endif