blob: a25efbb16bdb162eb45501868912581ec4a7dc44 [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_SERIAL_LPUART_BASE 0x5a060000
Tom Rinidd5b58c2022-12-04 10:04:49 -050015#define CFG_MALLOC_F_ADDR 0x00120000
Peng Fan0d331c02019-03-05 02:32:49 +000016
Peng Fan0d331c02019-03-05 02:32:49 +000017#endif
18
Peng Fanb06ff8f2019-09-25 08:11:17 +000019#ifdef CONFIG_AHAB_BOOT
20#define AHAB_ENV "sec_boot=yes\0"
21#else
22#define AHAB_ENV "sec_boot=no\0"
23#endif
24
Peng Fan0d331c02019-03-05 02:32:49 +000025/* Initial environment variables */
Tom Rini0613c362022-12-04 10:03:50 -050026#define CFG_EXTRA_ENV_SETTINGS \
Peng Fanb06ff8f2019-09-25 08:11:17 +000027 AHAB_ENV \
Peng Fan0d331c02019-03-05 02:32:49 +000028 "script=boot.scr\0" \
29 "image=Image\0" \
30 "panel=NULL\0" \
31 "console=ttyLP0,${baudrate} earlycon=lpuart32,0x5a060000,${baudrate}\0" \
32 "fdt_addr=0x83000000\0" \
33 "fdt_high=0xffffffffffffffff\0" \
34 "boot_fdt=try\0" \
Peng Fane825d302020-05-05 20:28:44 +080035 "fdt_file=undefined\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000036 "initrd_addr=0x83800000\0" \
37 "initrd_high=0xffffffffffffffff\0" \
38 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
Tom Rinide35b8f2021-12-11 14:55:52 -050039 "mmcpart=1\0" \
Peng Fanadfaa422022-04-15 12:23:41 +080040 "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000041 "mmcautodetect=yes\0" \
42 "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \
43 "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
44 "bootscript=echo Running bootscript from mmc ...; " \
45 "source\0" \
46 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
47 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
Peng Fanb06ff8f2019-09-25 08:11:17 +000048 "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \
49 "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \
50 "auth_os=auth_cntr ${cntr_addr}\0" \
Peng Fan0d331c02019-03-05 02:32:49 +000051 "mmcboot=echo Booting from mmc ...; " \
52 "run mmcargs; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000053 "if test ${sec_boot} = yes; then " \
54 "if run auth_os; then " \
55 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +000056 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000057 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +000058 "fi; " \
59 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000060 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
61 "if run loadfdt; then " \
62 "run boot_os; " \
63 "else " \
64 "echo WARN: Cannot load the DT; " \
65 "fi; " \
66 "else " \
67 "echo wait for boot; " \
68 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +000069 "fi;\0" \
70 "netargs=setenv bootargs console=${console} " \
71 "root=/dev/nfs " \
72 "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
73 "netboot=echo Booting from net ...; " \
74 "run netargs; " \
75 "if test ${ip_dyn} = yes; then " \
76 "setenv get_cmd dhcp; " \
77 "else " \
78 "setenv get_cmd tftp; " \
79 "fi; " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000080 "if test ${sec_boot} = yes; then " \
81 "${get_cmd} ${cntr_addr} ${cntr_file}; " \
82 "if run auth_os; then " \
83 "run boot_os; " \
Peng Fan0d331c02019-03-05 02:32:49 +000084 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000085 "echo ERR: failed to authenticate; " \
Peng Fan0d331c02019-03-05 02:32:49 +000086 "fi; " \
87 "else " \
Peng Fanb06ff8f2019-09-25 08:11:17 +000088 "${get_cmd} ${loadaddr} ${image}; " \
89 "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
90 "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
91 "booti ${loadaddr} - ${fdt_addr}; " \
92 "else " \
93 "echo WARN: Cannot load the DT; " \
94 "fi; " \
95 "else " \
96 "booti; " \
97 "fi;" \
Peng Fan0d331c02019-03-05 02:32:49 +000098 "fi;\0"
99
Peng Fan0d331c02019-03-05 02:32:49 +0000100/* Link Definitions */
Peng Fan0d331c02019-03-05 02:32:49 +0000101
Peng Fan0d331c02019-03-05 02:32:49 +0000102/* Default environment is in SD */
Peng Fan0d331c02019-03-05 02:32:49 +0000103
Peng Fan0d331c02019-03-05 02:32:49 +0000104/* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */
Peng Fan0d331c02019-03-05 02:32:49 +0000105
Tom Riniaa6e94d2022-11-16 13:10:37 -0500106#define CFG_SYS_SDRAM_BASE 0x80000000
Peng Fan0d331c02019-03-05 02:32:49 +0000107#define PHYS_SDRAM_1 0x80000000
108#define PHYS_SDRAM_2 0x880000000
109#define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */
110#define PHYS_SDRAM_2_SIZE 0x100000000 /* 4 GB */
111
Peng Fan0d331c02019-03-05 02:32:49 +0000112#endif /* __IMX8QM_MEK_H */