Merge tag 'dm-pull-18mar22' of https://source.denx.de/u-boot/custodians/u-boot-dm...
[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 CONFIG_SPL_MAX_SIZE             (148 * 1024)
13 #define CONFIG_SYS_MONITOR_LEN          SZ_512K
14 #define CONFIG_SYS_UBOOT_BASE   \
15         (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
16
17 #ifdef CONFIG_SPL_BUILD
18 #define CONFIG_SPL_STACK                0x920000
19 #define CONFIG_SPL_BSS_START_ADDR       0x910000
20 #define CONFIG_SPL_BSS_MAX_SIZE         SZ_8K
21 #define CONFIG_SYS_SPL_MALLOC_START     0x42200000
22 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_1M
23
24 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
25 #define CONFIG_MALLOC_F_ADDR            0x930000
26 /* For RAW image gives a error info not panic */
27 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
28
29 #endif
30
31 #define MEM_LAYOUT_ENV_SETTINGS \
32         "fdt_addr_r=0x44000000\0" \
33         "kernel_addr_r=0x42000000\0" \
34         "ramdisk_addr_r=0x46400000\0" \
35         "scriptaddr=0x46000000\0"
36
37 /* Enable Distro Boot */
38 #ifndef CONFIG_SPL_BUILD
39 #define BOOT_TARGET_DEVICES(func) \
40         func(MMC, mmc, 1) \
41         func(MMC, mmc, 2) \
42         func(DHCP, dhcp, na)
43 #include <config_distro_bootcmd.h>
44 #undef CONFIG_ISO_PARTITION
45 #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         "script=boot.scr\0" \
54         "bootm_size=0x10000000\0" \
55         "dev=2\0" \
56         "preboot=gsc wd-disable\0" \
57         "console=ttymxc1,115200\0" \
58         "update_firmware=" \
59                 "tftpboot $loadaddr $image && " \
60                 "setexpr blkcnt $filesize + 0x1ff && " \
61                 "setexpr blkcnt $blkcnt / 0x200 && " \
62                 "mmc dev $dev && " \
63                 "mmc write $loadaddr 0x42 $blkcnt\0" \
64         "boot_net=" \
65                 "tftpboot $kernel_addr_r $image && " \
66                 "booti $kernel_addr_r - $fdtcontroladdr\0" \
67         "update_rootfs=" \
68                 "tftpboot $loadaddr $image && " \
69                 "gzwrite mmc $dev $loadaddr $filesize 100000 1000000\0" \
70         "update_all=" \
71                 "tftpboot $loadaddr $image && " \
72                 "gzwrite mmc $dev $loadaddr $filesize\0" \
73         "erase_env=mmc dev $dev; mmc erase 0x7f08 0x40\0"
74
75 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
76 #define CONFIG_SYS_INIT_RAM_SIZE        SZ_2M
77 #define CONFIG_SYS_INIT_SP_OFFSET \
78         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
79 #define CONFIG_SYS_INIT_SP_ADDR \
80         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
81
82 #define CONFIG_SYS_SDRAM_BASE           0x40000000
83
84 /* SDRAM configuration */
85 #define PHYS_SDRAM                      0x40000000
86 #define PHYS_SDRAM_SIZE                 SZ_1G /* 1GB DDR */
87 #define CONFIG_SYS_BOOTM_LEN            SZ_256M
88
89 /* UART */
90 #define CONFIG_MXC_UART_BASE            UART2_BASE_ADDR
91
92 /* Monitor Command Prompt */
93 #define CONFIG_SYS_CBSIZE               SZ_2K
94 #define CONFIG_SYS_MAXARGS              64
95 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
96 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
97                                         sizeof(CONFIG_SYS_PROMPT) + 16)
98
99 /* USDHC */
100 #define CONFIG_SYS_FSL_USDHC_NUM        2
101 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
102
103 /* FEC */
104 #define CONFIG_FEC_MXC_PHYADDR          0
105 #define FEC_QUIRK_ENET_MAC
106
107 #endif