blob: 5f9d06e0f6f4bff7b2b17ef9331e9069c122a709 [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_SYS_MONITOR_LEN (1024 * 1024)
Peng Fan0d331c02019-03-05 02:32:49 +000015
Peng Fan0d331c02019-03-05 02:32:49 +000016#define CONFIG_SERIAL_LPUART_BASE 0x5a060000
Peng Fan0d331c02019-03-05 02:32:49 +000017#define CONFIG_MALLOC_F_ADDR 0x00120000
18
Peng Fan0d331c02019-03-05 02:32:49 +000019#endif
20
Peng Fanb06ff8f2019-09-25 08:11:17 +000021#ifdef CONFIG_AHAB_BOOT
22#define AHAB_ENV "sec_boot=yes\0"
23#else
24#define AHAB_ENV "sec_boot=no\0"
25#endif
26
Peng Fan0d331c02019-03-05 02:32:49 +000027/* Initial environment variables */
28#define CONFIG_EXTRA_ENV_SETTINGS \
Peng Fanb06ff8f2019-09-25 08:11:17 +000029 AHAB_ENV \
Peng Fan0d331c02019-03-05 02:32:49 +000030 "script=boot.scr\0" \
31 "image=Image\0" \
32 "panel=NULL\0" \
33 "console=ttyLP0,${baudrate} earlycon=lpuart32,0x5a060000,${baudrate}\0" \
34 "fdt_addr=0x83000000\0" \
35 "fdt_high=0xffffffffffffffff\0" \
36 "boot_fdt=try\0" \
Peng Fane825d302020-05-05 20:28:44 +080037 "fdt_file=undefined\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000038 "initrd_addr=0x83800000\0" \
39 "initrd_high=0xffffffffffffffff\0" \
40 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050041 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080042 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000043 "mmcautodetect=yes\0" \
44 "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
45 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
46 "bootscript=echo Running bootscript from mmc ...; " \
47 "source\0" \
48 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
49 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Peng Fanb06ff8f2019-09-25 08:11:17 +000050 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
51 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
52 "auth_os=auth_cntr ${cntr_addr}\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000053 "mmcboot=echo Booting from mmc ...; " \
54 "run mmcargs; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000055 "if test ${sec_boot} = yes; then " \
56 "if run auth_os; then " \
57 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +000058 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000059 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +000060 "fi; " \
61 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000062 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
63 "if run loadfdt; then " \
64 "run boot_os; " \
65 "else " \
66 "echo WARN: Cannot load the DT; " \
67 "fi; " \
68 "else " \
69 "echo wait for boot; " \
70 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +000071 "fi;\0" \
72 "netargs=setenv bootargs console=${console} " \
73 "root=/dev/nfs " \
74 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
75 "netboot=echo Booting from net ...; " \
76 "run netargs; " \
77 "if test ${ip_dyn} = yes; then " \
78 "setenv get_cmd dhcp; " \
79 "else " \
80 "setenv get_cmd tftp; " \
81 "fi; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000082 "if test ${sec_boot} = yes; then " \
83 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
84 "if run auth_os; then " \
85 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +000086 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000087 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +000088 "fi; " \
89 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000090 "${get_cmd} ${loadaddr} ${image}; " \
91 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
92 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
93 "booti ${loadaddr} - ${fdt_addr}; " \
94 "else " \
95 "echo WARN: Cannot load the DT; " \
96 "fi; " \
97 "else " \
98 "booti; " \
99 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +0000100 "fi;\0"
101
Peng Fan0d331c02019-03-05 02:32:49 +0000102/* Link Definitions */
Peng Fan0d331c02019-03-05 02:32:49 +0000103
Peng Fan0d331c02019-03-05 02:32:49 +0000104/* Default environment is in SD */
Peng Fan0d331c02019-03-05 02:32:49 +0000105
Peng Fan0d331c02019-03-05 02:32:49 +0000106/* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
Peng Fan0d331c02019-03-05 02:32:49 +0000107
Peng Fan0d331c02019-03-05 02:32:49 +0000108#define CONFIG_SYS_SDRAM_BASE 0x80000000
109#define PHYS_SDRAM_1 0x80000000
110#define PHYS_SDRAM_2 0x880000000
111#define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
112#define PHYS_SDRAM_2_SIZE 0x100000000 /* 4 GB */
113
Peng Fan0d331c02019-03-05 02:32:49 +0000114#endif /* __IMX8QM_MEK_H */