blob: 1864374a4fc80aef7d12ad0013c8781de5c4f8bd [file] [log] [blame]
Peng Fan0d331c02019-03-05 02:32:49 +00001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2018 NXP
4 */
5
6#ifndef __IMX8QM_MEK_H
7#define __IMX8QM_MEK_H
8
9#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Peng Fan0d331c02019-03-05 02:32:49 +000011#include <asm/arch/imx-regs.h>
12
13#ifdef CONFIG_SPL_BUILD
Peng Fan0d331c02019-03-05 02:32:49 +000014#define CONFIG_SPL_MAX_SIZE (124 * 1024)
15#define CONFIG_SYS_MONITOR_LEN (1024 * 1024)
16#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
17#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x800
18#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 0
19
20#define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/armv8/u-boot-spl.lds"
21#define CONFIG_SPL_STACK 0x013E000
22#define CONFIG_SPL_BSS_START_ADDR 0x00128000
23#define CONFIG_SPL_BSS_MAX_SIZE 0x1000 /* 4 KB */
24#define CONFIG_SYS_SPL_MALLOC_START 0x00120000
25#define CONFIG_SYS_SPL_MALLOC_SIZE 0x3000 /* 12 KB */
26#define CONFIG_SERIAL_LPUART_BASE 0x5a060000
Peng Fan0d331c02019-03-05 02:32:49 +000027#define CONFIG_MALLOC_F_ADDR 0x00120000
28
29#define CONFIG_SPL_RAW_IMAGE_ARM_TRUSTED_FIRMWARE
30
31#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
32
33#define CONFIG_OF_EMBED
34#endif
35
36#define CONFIG_REMAKE_ELF
37
Peng Fan0d331c02019-03-05 02:32:49 +000038/* Flat Device Tree Definitions */
39#define CONFIG_OF_BOARD_SETUP
40
Peng Fan0d331c02019-03-05 02:32:49 +000041#define CONFIG_SYS_FSL_ESDHC_ADDR 0
42#define USDHC1_BASE_ADDR 0x5B010000
43#define USDHC2_BASE_ADDR 0x5B020000
44#define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
45
46#define CONFIG_ENV_OVERWRITE
47
48#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
49
Peng Fanb06ff8f2019-09-25 08:11:17 +000050#ifdef CONFIG_AHAB_BOOT
51#define AHAB_ENV "sec_boot=yes\0"
52#else
53#define AHAB_ENV "sec_boot=no\0"
54#endif
55
Peng Fan0d331c02019-03-05 02:32:49 +000056/* Initial environment variables */
57#define CONFIG_EXTRA_ENV_SETTINGS \
Peng Fanb06ff8f2019-09-25 08:11:17 +000058 AHAB_ENV \
Peng Fan0d331c02019-03-05 02:32:49 +000059 "script=boot.scr\0" \
60 "image=Image\0" \
61 "panel=NULL\0" \
62 "console=ttyLP0,${baudrate} earlycon=lpuart32,0x5a060000,${baudrate}\0" \
63 "fdt_addr=0x83000000\0" \
64 "fdt_high=0xffffffffffffffff\0" \
65 "boot_fdt=try\0" \
Peng Fane825d302020-05-05 20:28:44 +080066 "fdt_file=undefined\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000067 "initrd_addr=0x83800000\0" \
68 "initrd_high=0xffffffffffffffff\0" \
69 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
70 "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
71 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
72 "mmcautodetect=yes\0" \
73 "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
74 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
75 "bootscript=echo Running bootscript from mmc ...; " \
76 "source\0" \
77 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
78 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Peng Fanb06ff8f2019-09-25 08:11:17 +000079 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
80 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
81 "auth_os=auth_cntr ${cntr_addr}\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000082 "mmcboot=echo Booting from mmc ...; " \
83 "run mmcargs; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000084 "if test ${sec_boot} = yes; then " \
85 "if run auth_os; then " \
86 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +000087 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000088 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +000089 "fi; " \
90 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000091 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
92 "if run loadfdt; then " \
93 "run boot_os; " \
94 "else " \
95 "echo WARN: Cannot load the DT; " \
96 "fi; " \
97 "else " \
98 "echo wait for boot; " \
99 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +0000100 "fi;\0" \
101 "netargs=setenv bootargs console=${console} " \
102 "root=/dev/nfs " \
103 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
104 "netboot=echo Booting from net ...; " \
105 "run netargs; " \
106 "if test ${ip_dyn} = yes; then " \
107 "setenv get_cmd dhcp; " \
108 "else " \
109 "setenv get_cmd tftp; " \
110 "fi; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +0000111 "if test ${sec_boot} = yes; then " \
112 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
113 "if run auth_os; then " \
114 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +0000115 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +0000116 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +0000117 "fi; " \
118 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +0000119 "${get_cmd} ${loadaddr} ${image}; " \
120 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
121 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
122 "booti ${loadaddr} - ${fdt_addr}; " \
123 "else " \
124 "echo WARN: Cannot load the DT; " \
125 "fi; " \
126 "else " \
127 "booti; " \
128 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +0000129 "fi;\0"
130
131#define CONFIG_BOOTCOMMAND \
132 "mmc dev ${mmcdev}; if mmc rescan; then " \
133 "if run loadbootscript; then " \
134 "run bootscript; " \
135 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +0000136 "if test ${sec_boot} = yes; then " \
137 "if run loadcntr; then " \
138 "run mmcboot; " \
139 "else run netboot; " \
140 "fi; " \
141 "else " \
142 "if run loadimage; then " \
143 "run mmcboot; " \
144 "else run netboot; " \
145 "fi; " \
146 "fi; " \
Peng Fan0d331c02019-03-05 02:32:49 +0000147 "fi; " \
148 "else booti ${loadaddr} - ${fdt_addr}; fi"
149
150/* Link Definitions */
151#define CONFIG_LOADADDR 0x80280000
152
153#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
154
155#define CONFIG_SYS_INIT_SP_ADDR 0x80200000
156
157/* Default environment is in SD */
Peng Fan0d331c02019-03-05 02:32:49 +0000158#define CONFIG_SYS_MMC_ENV_PART 0 /* user area */
159
160#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
161
162/* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
163#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
164#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
165#define CONFIG_SYS_FSL_USDHC_NUM 2
166
167/* Size of malloc() pool */
168#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (32 * 1024)) * 1024)
169
170#define CONFIG_SYS_SDRAM_BASE 0x80000000
171#define PHYS_SDRAM_1 0x80000000
172#define PHYS_SDRAM_2 0x880000000
173#define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
174#define PHYS_SDRAM_2_SIZE 0x100000000 /* 4 GB */
175
Peng Fan0d331c02019-03-05 02:32:49 +0000176/* Generic Timer Definitions */
177#define COUNTER_FREQUENCY 8000000 /* 8MHz */
178
179/* Networking */
180#define CONFIG_FEC_XCV_TYPE RGMII
181#define FEC_QUIRK_ENET_MAC
182
183#endif /* __IMX8QM_MEK_H */