blob: a58f68c17e6cbc6be4c4ffdb97cff523100f6a04 [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
38#define CONFIG_BOARD_EARLY_INIT_F
39
40/* Flat Device Tree Definitions */
41#define CONFIG_OF_BOARD_SETUP
42
Peng Fand0dd7392018-10-18 14:28:37 +020043#define CONFIG_SYS_FSL_ESDHC_ADDR 0
44#define USDHC1_BASE_ADDR 0x5B010000
45#define USDHC2_BASE_ADDR 0x5B020000
Peng Fand0dd7392018-10-18 14:28:37 +020046
47#define CONFIG_ENV_OVERWRITE
48
49#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
50
Peng Fan6dcc6ce2019-09-25 08:11:19 +000051#ifdef CONFIG_AHAB_BOOT
52#define AHAB_ENV "sec_boot=yes\0"
53#else
54#define AHAB_ENV "sec_boot=no\0"
55#endif
56
Peng Fand0dd7392018-10-18 14:28:37 +020057/* Initial environment variables */
58#define CONFIG_EXTRA_ENV_SETTINGS \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000059 AHAB_ENV \
Peng Fand0dd7392018-10-18 14:28:37 +020060 "script=boot.scr\0" \
61 "image=Image\0" \
62 "panel=NULL\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -030063 "console=ttyLP0\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020064 "fdt_addr=0x83000000\0" \
65 "fdt_high=0xffffffffffffffff\0" \
66 "boot_fdt=try\0" \
Peng Fana6c36f12020-05-05 20:28:45 +080067 "fdt_file=undefined\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020068 "initrd_addr=0x83800000\0" \
69 "initrd_high=0xffffffffffffffff\0" \
70 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
71 "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
72 "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
73 "mmcautodetect=yes\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -030074 "mmcargs=setenv bootargs console=${console},${baudrate} root=${mmcroot}\0 " \
Peng Fand0dd7392018-10-18 14:28:37 +020075 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
76 "bootscript=echo Running bootscript from mmc ...; " \
77 "source\0" \
78 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
79 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000080 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
81 "auth_os=auth_cntr ${cntr_addr}\0" \
82 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
Peng Fand0dd7392018-10-18 14:28:37 +020083 "mmcboot=echo Booting from mmc ...; " \
84 "run mmcargs; " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000085 "if test ${sec_boot} = yes; then " \
86 "if run auth_os; then " \
87 "run boot_os; " \
Peng Fand0dd7392018-10-18 14:28:37 +020088 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000089 "echo ERR: failed to authenticate; " \
Peng Fand0dd7392018-10-18 14:28:37 +020090 "fi; " \
91 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +000092 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
93 "if run loadfdt; then " \
94 "run boot_os; " \
95 "else " \
96 "echo WARN: Cannot load the DT; " \
97 "fi; " \
98 "else " \
99 "echo wait for boot; " \
100 "fi;" \
Peng Fand0dd7392018-10-18 14:28:37 +0200101 "fi;\0" \
Fabio Estevam10a8cc02020-02-17 15:17:01 -0300102 "netargs=setenv bootargs console=${console},${baudrate} " \
Peng Fand0dd7392018-10-18 14:28:37 +0200103 "root=/dev/nfs " \
104 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
105 "netboot=echo Booting from net ...; " \
106 "run netargs; " \
107 "if test ${ip_dyn} = yes; then " \
108 "setenv get_cmd dhcp; " \
109 "else " \
110 "setenv get_cmd tftp; " \
111 "fi; " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000112 "if test ${sec_boot} = yes; then " \
113 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
114 "if run auth_os; then " \
115 "run boot_os; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200116 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000117 "echo ERR: failed to authenticate; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200118 "fi; " \
119 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000120 "${get_cmd} ${loadaddr} ${image}; " \
121 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
122 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
123 "run boot_os; " \
124 "else " \
125 "echo WARN: Cannot load the DT; " \
126 "fi; " \
127 "else " \
128 "booti; " \
129 "fi;" \
Peng Fand0dd7392018-10-18 14:28:37 +0200130 "fi;\0"
131
132#define CONFIG_BOOTCOMMAND \
133 "mmc dev ${mmcdev}; if mmc rescan; then " \
134 "if run loadbootscript; then " \
135 "run bootscript; " \
136 "else " \
Peng Fan6dcc6ce2019-09-25 08:11:19 +0000137 "if test ${sec_boot} = yes; then " \
138 "if run loadcntr; then " \
139 "run mmcboot; " \
140 "else run netboot; " \
141 "fi; " \
142 "else " \
143 "if run loadimage; then " \
144 "run mmcboot; " \
145 "else run netboot; " \
146 "fi; " \
147 "fi; " \
Peng Fand0dd7392018-10-18 14:28:37 +0200148 "fi; " \
149 "else booti ${loadaddr} - ${fdt_addr}; fi"
150
151/* Link Definitions */
152#define CONFIG_LOADADDR 0x80280000
153
154#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
155
156#define CONFIG_SYS_INIT_SP_ADDR 0x80200000
157
158/* Default environment is in SD */
Peng Fand0dd7392018-10-18 14:28:37 +0200159#define CONFIG_SYS_MMC_ENV_PART 0 /* user area */
160
161#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
162
163/* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
164#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
165#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
166#define CONFIG_SYS_FSL_USDHC_NUM 2
167
168/* Size of malloc() pool */
169#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (32 * 1024)) * 1024)
170
171#define CONFIG_SYS_SDRAM_BASE 0x80000000
172#define PHYS_SDRAM_1 0x80000000
173#define PHYS_SDRAM_2 0x880000000
174#define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
175/* LPDDR4 board total DDR is 3GB */
176#define PHYS_SDRAM_2_SIZE 0x40000000 /* 1 GB */
177
178/* Serial */
179#define CONFIG_BAUDRATE 115200
180
Peng Fand0dd7392018-10-18 14:28:37 +0200181/* Generic Timer Definitions */
182#define COUNTER_FREQUENCY 8000000 /* 8MHz */
183
184#ifndef CONFIG_DM_PCA953X
185#define CONFIG_PCA953X
Peng Fand0dd7392018-10-18 14:28:37 +0200186#endif
187
188/* Networking */
189#define CONFIG_FEC_XCV_TYPE RGMII
190#define FEC_QUIRK_ENET_MAC
191
Anatolij Gustschin5c1c7c12019-10-21 17:31:53 +0200192/* Misc configuration */
193#define CONFIG_SYS_CBSIZE 2048
194#define CONFIG_SYS_MAXARGS 64
195#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
196
Peng Fand0dd7392018-10-18 14:28:37 +0200197#endif /* __IMX8QXP_MEK_H */