Merge tag 'u-boot-at91-2022.04-a' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / include / configs / warp7.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2016 NXP Semiconductors
4  *
5  * Configuration settings for the i.MX7S Warp board.
6  */
7
8 #ifndef __WARP7_CONFIG_H
9 #define __WARP7_CONFIG_H
10
11 #include "mx7_common.h"
12 #include <imximage.h>
13
14 #define PHYS_SDRAM_SIZE                 SZ_512M
15
16 /* MMC Config*/
17 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC3_BASE_ADDR
18 #define CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
19 #define CONFIG_SYS_MMC_IMG_LOAD_PART    1
20
21 #define CONFIG_DFU_ENV_SETTINGS \
22         "dfu_alt_info=boot raw 0x2 0x1000 mmcpart 1\0" \
23
24 /* When booting with FIT specify the node entry containing boot.scr */
25 #if defined(CONFIG_FIT)
26 #define BOOT_SCR_STRING "source ${bootscriptaddr}:${bootscr_fitimage_name}\0"
27 #else
28 #define BOOT_SCR_STRING "source ${bootscriptaddr}\0"
29 #endif
30
31 #define CONFIG_EXTRA_ENV_SETTINGS \
32         CONFIG_DFU_ENV_SETTINGS \
33         "script=boot.scr\0" \
34         "bootscr_fitimage_name=bootscr\0" \
35         "script_signed=boot.scr.imx-signed\0" \
36         "bootscriptaddr=0x83200000\0" \
37         "image=zImage\0" \
38         "console=ttymxc0\0" \
39         "ethact=usb_ether\0" \
40         "fdt_high=0xffffffff\0" \
41         "initrd_high=0xffffffff\0" \
42         "fdt_file=imx7s-warp.dtb\0" \
43         "fdt_addr=" __stringify(CONFIG_SYS_FDT_ADDR)"\0" \
44         "fdtovaddr=0x83100000\0" \
45         "boot_fdt=try\0" \
46         "ip_dyn=yes\0" \
47         "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
48         "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
49         "rootpart=" __stringify(CONFIG_WARP7_ROOT_PART) "\0" \
50         "finduuid=part uuid mmc 0:${rootpart} uuid\0" \
51         "mmcargs=setenv bootargs console=${console},${baudrate} " \
52                 "root=PARTUUID=${uuid} rootwait rw\0" \
53         "ivt_offset=" __stringify(BOOTROM_IVT_HDR_OFFSET)"\0"\
54         "warp7_auth_or_fail=hab_auth_img_or_fail ${hab_ivt_addr} ${filesize} 0;\0" \
55         "do_bootscript_hab=" \
56                 "if test ${hab_enabled} -eq 1; then " \
57                         "setexpr hab_ivt_addr ${bootscriptaddr} - ${ivt_offset}; " \
58                         "setenv script ${script_signed}; " \
59                         "load mmc ${mmcdev}:${mmcpart} ${hab_ivt_addr} ${script}; " \
60                         "run warp7_auth_or_fail; " \
61                         "run bootscript; "\
62                 "fi;\0" \
63         "loadbootscript=" \
64                 "load mmc ${mmcdev}:${mmcpart} ${bootscriptaddr} ${script};\0" \
65         "bootscript=echo Running bootscript from mmc ...; " \
66                 BOOT_SCR_STRING \
67         "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
68         "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
69         "mmcboot=echo Booting from mmc ...; " \
70                 "run finduuid; " \
71                 "run mmcargs; " \
72                 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
73                         "if run loadfdt; then " \
74                                 "bootz ${loadaddr} - ${fdt_addr}; " \
75                         "else " \
76                                 "if test ${boot_fdt} = try; then " \
77                                         "bootz; " \
78                                 "else " \
79                                         "echo WARN: Cannot load the DT; " \
80                                 "fi; " \
81                         "fi; " \
82                 "else " \
83                         "bootz; " \
84                 "fi;\0" \
85
86 /* Physical Memory Map */
87 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
88
89 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
90 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
91 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
92
93 #define CONFIG_SYS_INIT_SP_OFFSET \
94         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
95 #define CONFIG_SYS_INIT_SP_ADDR \
96         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
97
98 /*
99  * Environment starts at CONFIG_ENV_OFFSET= 0xC0000 = 768k = 768*1024 = 786432
100  *
101  * Detect overlap between U-Boot image and environment area in build-time
102  *
103  * CONFIG_BOARD_SIZE_LIMIT = CONFIG_ENV_OFFSET - u-boot.imx offset
104  * CONFIG_BOARD_SIZE_LIMIT = 768k - 1k = 767k = 785408
105  *
106  * Currently CONFIG_BOARD_SIZE_LIMIT does not handle expressions, so
107  * write the direct value here
108  */
109 #define CONFIG_BOARD_SIZE_LIMIT         785408
110
111 /* environment organization */
112
113 #define CONFIG_SYS_FSL_USDHC_NUM        1
114
115
116 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
117
118 #define CONFIG_USBD_HS
119
120 /* USB Device Firmware Update support */
121 #define DFU_DEFAULT_POLL_TIMEOUT        300
122
123 #define CONFIG_USBNET_DEV_ADDR          "de:ad:be:af:00:01"
124
125 /* Environment variable name to represent HAB enable state */
126 #define HAB_ENABLED_ENVNAME             "hab_enabled"
127
128 #endif