blob: 5fdb67f0ece60e48ed8b67e8be0ed31ba29a8cc3 [file] [log] [blame]
Peng Fand0dd7392018-10-18 14:28:37 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2018 NXP
4 */
5
6#ifndef __IMX8QXP_MEK_H
7#define __IMX8QXP_MEK_H
8
9#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Peng Fand0dd7392018-10-18 14:28:37 +020011#include <asm/arch/imx-regs.h>
12
Peng Fan018e3fd2018-12-21 06:21:34 +000013#ifdef CONFIG_SPL_BUILD
Peng Fan018e3fd2018-12-21 06:21:34 +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
Peng Fanb1525842019-08-21 08:28:15 +000017#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x800
Peng Fan018e3fd2018-12-21 06:21:34 +000018#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 Fan018e3fd2018-12-21 06:21:34 +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
Peng Fand0dd7392018-10-18 14:28:37 +020036#define CONFIG_REMAKE_ELF
37
Peng Fand0dd7392018-10-18 14:28:37 +020038/* Flat Device Tree Definitions */
39#define CONFIG_OF_BOARD_SETUP
40
Peng Fand0dd7392018-10-18 14:28:37 +020041#define CONFIG_SYS_FSL_ESDHC_ADDR 0
42#define USDHC1_BASE_ADDR 0x5B010000
43#define USDHC2_BASE_ADDR 0x5B020000
Peng Fand0dd7392018-10-18 14:28:37 +020044
45#define CONFIG_ENV_OVERWRITE
46
47#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
48
Peng Fan6dcc6ce2019-09-25 08:11:19 +000049#ifdef CONFIG_AHAB_BOOT
50#define AHAB_ENV "sec_boot=yes\0"
51#else
52#define AHAB_ENV "sec_boot=no\0"
53#endif
54
Peng Fand0dd7392018-10-18 14:28:37 +020055/* Initial environment variables */
56#define CONFIG_EXTRA_ENV_SETTINGS \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000057 AHAB_ENV \
Peng Fand0dd7392018-10-18 14:28:37 +020058 "script=boot.scr\0" \
59 "image=Image\0" \
60 "panel=NULL\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -030061 "console=ttyLP0\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020062 "fdt_addr=0x83000000\0" \
63 "fdt_high=0xffffffffffffffff\0" \
64 "boot_fdt=try\0" \
Peng Fana6c36f12020-05-05 20:28:45 +080065 "fdt_file=undefined\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020066 "initrd_addr=0x83800000\0" \
67 "initrd_high=0xffffffffffffffff\0" \
68 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
69 "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
70 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
71 "mmcautodetect=yes\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -030072 "mmcargs=setenv bootargs console=${console},${baudrate} root=${mmcroot}\0 " \
Peng Fand0dd7392018-10-18 14:28:37 +020073 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
74 "bootscript=echo Running bootscript from mmc ...; " \
75 "source\0" \
76 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
77 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000078 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
79 "auth_os=auth_cntr ${cntr_addr}\0" \
80 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020081 "mmcboot=echo Booting from mmc ...; " \
82 "run mmcargs; " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000083 "if test ${sec_boot} = yes; then " \
84 "if run auth_os; then " \
85 "run boot_os; " \
Peng Fand0dd7392018-10-18 14:28:37 +020086 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000087 "echo ERR: failed to authenticate; " \
Peng Fand0dd7392018-10-18 14:28:37 +020088 "fi; " \
89 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000090 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
91 "if run loadfdt; then " \
92 "run boot_os; " \
93 "else " \
94 "echo WARN: Cannot load the DT; " \
95 "fi; " \
96 "else " \
97 "echo wait for boot; " \
98 "fi;" \
Peng Fand0dd7392018-10-18 14:28:37 +020099 "fi;\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -0300100 "netargs=setenv bootargs console=${console},${baudrate} " \
Peng Fand0dd7392018-10-18 14:28:37 +0200101 "root=/dev/nfs " \
102 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
103 "netboot=echo Booting from net ...; " \
104 "run netargs; " \
105 "if test ${ip_dyn} = yes; then " \
106 "setenv get_cmd dhcp; " \
107 "else " \
108 "setenv get_cmd tftp; " \
109 "fi; " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000110 "if test ${sec_boot} = yes; then " \
111 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
112 "if run auth_os; then " \
113 "run boot_os; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200114 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000115 "echo ERR: failed to authenticate; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200116 "fi; " \
117 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000118 "${get_cmd} ${loadaddr} ${image}; " \
119 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
120 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
121 "run boot_os; " \
122 "else " \
123 "echo WARN: Cannot load the DT; " \
124 "fi; " \
125 "else " \
126 "booti; " \
127 "fi;" \
Peng Fand0dd7392018-10-18 14:28:37 +0200128 "fi;\0"
129
130#define CONFIG_BOOTCOMMAND \
131 "mmc dev ${mmcdev}; if mmc rescan; then " \
132 "if run loadbootscript; then " \
133 "run bootscript; " \
134 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000135 "if test ${sec_boot} = yes; then " \
136 "if run loadcntr; then " \
137 "run mmcboot; " \
138 "else run netboot; " \
139 "fi; " \
140 "else " \
141 "if run loadimage; then " \
142 "run mmcboot; " \
143 "else run netboot; " \
144 "fi; " \
145 "fi; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200146 "fi; " \
147 "else booti ${loadaddr} - ${fdt_addr}; fi"
148
149/* Link Definitions */
150#define CONFIG_LOADADDR 0x80280000
151
152#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
153
154#define CONFIG_SYS_INIT_SP_ADDR 0x80200000
155
156/* Default environment is in SD */
Peng Fand0dd7392018-10-18 14:28:37 +0200157#define CONFIG_SYS_MMC_ENV_PART 0 /* user area */
158
159#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
160
161/* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
162#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
163#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
164#define CONFIG_SYS_FSL_USDHC_NUM 2
165
166/* Size of malloc() pool */
167#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (32 * 1024)) * 1024)
168
169#define CONFIG_SYS_SDRAM_BASE 0x80000000
170#define PHYS_SDRAM_1 0x80000000
171#define PHYS_SDRAM_2 0x880000000
172#define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
173/* LPDDR4 board total DDR is 3GB */
174#define PHYS_SDRAM_2_SIZE 0x40000000 /* 1 GB */
175
Peng Fand0dd7392018-10-18 14:28:37 +0200176/* Generic Timer Definitions */
177#define COUNTER_FREQUENCY 8000000 /* 8MHz */
178
179#ifndef CONFIG_DM_PCA953X
180#define CONFIG_PCA953X
Peng Fand0dd7392018-10-18 14:28:37 +0200181#endif
182
183/* Networking */
184#define CONFIG_FEC_XCV_TYPE RGMII
185#define FEC_QUIRK_ENET_MAC
186
Anatolij Gustschin5c1c7c12019-10-21 17:31:53 +0200187/* Misc configuration */
188#define CONFIG_SYS_CBSIZE 2048
189#define CONFIG_SYS_MAXARGS 64
190#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
191
Peng Fand0dd7392018-10-18 14:28:37 +0200192#endif /* __IMX8QXP_MEK_H */