blob: c69f2fa19f3057f61c2701477ca52e059bb079fa [file] [log] [blame]
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2019 NXP
4 */
5
6#ifndef __IMX8MM_CL_IOT_GATE_H
7#define __IMX8MM_CL_IOT_GATE_H
8
9#include <linux/sizes.h>
10#include <linux/stringify.h>
11#include <asm/arch/imx-regs.h>
12#include <config_distro_bootcmd.h>
13
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080014#define CONFIG_SYS_MONITOR_LEN SZ_512K
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080015#define CONFIG_SYS_UBOOT_BASE \
16 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
17
18#ifdef CONFIG_SPL_BUILD
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080019/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
20#define CONFIG_MALLOC_F_ADDR 0x912000
21/* For RAW image gives a error info not panic */
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080022
23#endif
24
Sughosh Ganu741ef862022-04-15 11:29:34 +053025/* GUIDs for capsule updatable firmware images */
26#define IMX8MM_CL_IOT_GATE_FIT_IMAGE_GUID \
27 EFI_GUID(0x7a32a939, 0xab92, 0x467b, 0x91, 0x52, \
28 0x74, 0x77, 0x1b, 0x95, 0xe6, 0x46)
29
30#define IMX8MM_CL_IOT_GATE_OPTEE_FIT_IMAGE_GUID \
31 EFI_GUID(0x0bf1165c, 0x1831, 0x4864, 0x94, 0x5e, \
32 0xac, 0x3d, 0x38, 0x48, 0xf4, 0x99)
33
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080034#if CONFIG_IS_ENABLED(CMD_MMC)
35# define BOOT_TARGET_MMC(func) \
36 func(MMC, mmc, 2) \
37 func(MMC, mmc, 0)
38#else
39# define BOOT_TARGET_MMC(func)
40#endif
41
42#if CONFIG_IS_ENABLED(CMD_USB)
43# define BOOT_TARGET_USB(func) func(USB, usb, 0)
44#else
45# define BOOT_TARGET_USB(func)
46#endif
47
48#if CONFIG_IS_ENABLED(CMD_PXE)
49# define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
50#else
51# define BOOT_TARGET_PXE(func)
52#endif
53
54#if CONFIG_IS_ENABLED(CMD_DHCP)
55# define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
56#else
57# define BOOT_TARGET_DHCP(func)
58#endif
59
60#define BOOT_TARGET_DEVICES(func) \
61 BOOT_TARGET_USB(func) \
62 BOOT_TARGET_MMC(func) \
63 BOOT_TARGET_PXE(func) \
64 BOOT_TARGET_DHCP(func)
65
66/* Initial environment variables */
67#define CONFIG_EXTRA_ENV_SETTINGS \
68 BOOTENV \
69 "script=boot.scr\0" \
70 "image=Image\0" \
71 "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
72 "fdt_addr=0x43000000\0" \
73 "fdt_addr_r=0x43000000\0" \
74 "boot_fit=no\0" \
Ying-Chun Liu (PaulLiu)f8a5cda2022-01-12 00:38:04 +080075 "dfu_alt_info=mmc 2=flash-bin raw 0x42 0x1D00 mmcpart 1\0" \
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080076 "fdt_file=sb-iotgimx8.dtb\0" \
77 "fdtfile=sb-iotgimx8.dtb\0" \
78 "initrd_addr=0x43800000\0" \
79 "bootm_size=0x10000000\0" \
80 "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050081 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080082 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +080083 "mmcautodetect=yes\0" \
84 "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
85 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
86 "bootscript=echo Running bootscript from mmc ...; " \
87 "source\0" \
88 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
89 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
90 "kernel_addr_r=0x40480000\0" \
91 "pxefile_addr_r=0x40480000\0" \
92 "ramdisk_addr_r=0x43800000\0" \
93 "mmcboot=echo Booting from mmc ...; " \
94 "run mmcargs; " \
95 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
96 "bootm ${loadaddr}; " \
97 "else " \
98 "if run loadfdt; then " \
99 "booti ${loadaddr} - ${fdt_addr}; " \
100 "else " \
101 "echo WARN: Cannot load the DT; " \
102 "fi; " \
103 "fi;\0" \
104 "netargs=setenv bootargs console=${console} " \
105 "root=/dev/nfs " \
106 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
107 "netboot=echo Booting from net ...; " \
108 "run netargs; " \
109 "if test ${ip_dyn} = yes; then " \
110 "setenv get_cmd dhcp; " \
111 "else " \
112 "setenv get_cmd tftp; " \
113 "fi; " \
114 "${get_cmd} ${loadaddr} ${image}; " \
115 "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \
116 "bootm ${loadaddr}; " \
117 "else " \
118 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
119 "booti ${loadaddr} - ${fdt_addr}; " \
120 "else " \
121 "echo WARN: Cannot load the DT; " \
122 "fi; " \
123 "fi;\0"
124
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800125/* Link Definitions */
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800126
127#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
128#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800129
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800130
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800131#define CONFIG_SYS_SDRAM_BASE 0x40000000
132#define PHYS_SDRAM 0x40000000
133#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
134
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800135/* USDHC */
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800136
137#define CONFIG_SYS_FSL_USDHC_NUM 2
138#define CONFIG_SYS_FSL_ESDHC_ADDR 0
139
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800140#define CONFIG_FEC_MXC_PHYADDR 0
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800141
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800142/* USB Configs */
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800143#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
Ying-Chun Liu (PaulLiu)53b516c2021-04-22 04:50:31 +0800144
145#endif /*__IMX8MM_CL_IOT_GATE_H*/