Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 1 | /* 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 Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 10 | #include <linux/stringify.h> |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 11 | #include <asm/arch/imx-regs.h> |
| 12 | |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 13 | #ifdef CONFIG_SPL_BUILD |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 14 | #define CONFIG_SYS_MONITOR_LEN (1024 * 1024) |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 15 | |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 16 | #define CONFIG_SERIAL_LPUART_BASE 0x5a060000 |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 17 | #define CONFIG_MALLOC_F_ADDR 0x00120000 |
| 18 | |
| 19 | #define CONFIG_SPL_RAW_IMAGE_ARM_TRUSTED_FIRMWARE |
| 20 | |
Peng Fan | 018e3fd | 2018-12-21 06:21:34 +0000 | [diff] [blame] | 21 | #endif |
| 22 | |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 23 | #ifdef CONFIG_AHAB_BOOT |
| 24 | #define AHAB_ENV "sec_boot=yes\0" |
| 25 | #else |
| 26 | #define AHAB_ENV "sec_boot=no\0" |
| 27 | #endif |
| 28 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 29 | /* Initial environment variables */ |
| 30 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 31 | AHAB_ENV \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 32 | "script=boot.scr\0" \ |
| 33 | "image=Image\0" \ |
| 34 | "panel=NULL\0" \ |
Fabio Estevam | 10a8cc0 | 2020-02-17 15:17:01 -0300 | [diff] [blame] | 35 | "console=ttyLP0\0" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 36 | "fdt_addr=0x83000000\0" \ |
| 37 | "fdt_high=0xffffffffffffffff\0" \ |
| 38 | "boot_fdt=try\0" \ |
Peng Fan | a6c36f1 | 2020-05-05 20:28:45 +0800 | [diff] [blame] | 39 | "fdt_file=undefined\0" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 40 | "initrd_addr=0x83800000\0" \ |
| 41 | "initrd_high=0xffffffffffffffff\0" \ |
| 42 | "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \ |
Tom Rini | de35b8f | 2021-12-11 14:55:52 -0500 | [diff] [blame] | 43 | "mmcpart=1\0" \ |
Peng Fan | adfaa42 | 2022-04-15 12:23:41 +0800 | [diff] [blame] | 44 | "mmcroot=/dev/mmcblk1p2 rootwait rw\0" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 45 | "mmcautodetect=yes\0" \ |
Fabio Estevam | 10a8cc0 | 2020-02-17 15:17:01 -0300 | [diff] [blame] | 46 | "mmcargs=setenv bootargs console=${console},${baudrate} root=${mmcroot}\0 " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 47 | "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ |
| 48 | "bootscript=echo Running bootscript from mmc ...; " \ |
| 49 | "source\0" \ |
| 50 | "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ |
| 51 | "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 52 | "loadcntr=fatload mmc ${mmcdev}:${mmcpart} ${cntr_addr} ${cntr_file}\0" \ |
| 53 | "auth_os=auth_cntr ${cntr_addr}\0" \ |
| 54 | "boot_os=booti ${loadaddr} - ${fdt_addr};\0" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 55 | "mmcboot=echo Booting from mmc ...; " \ |
| 56 | "run mmcargs; " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 57 | "if test ${sec_boot} = yes; then " \ |
| 58 | "if run auth_os; then " \ |
| 59 | "run boot_os; " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 60 | "else " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 61 | "echo ERR: failed to authenticate; " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 62 | "fi; " \ |
| 63 | "else " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 64 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
| 65 | "if run loadfdt; then " \ |
| 66 | "run boot_os; " \ |
| 67 | "else " \ |
| 68 | "echo WARN: Cannot load the DT; " \ |
| 69 | "fi; " \ |
| 70 | "else " \ |
| 71 | "echo wait for boot; " \ |
| 72 | "fi;" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 73 | "fi;\0" \ |
Fabio Estevam | 10a8cc0 | 2020-02-17 15:17:01 -0300 | [diff] [blame] | 74 | "netargs=setenv bootargs console=${console},${baudrate} " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 75 | "root=/dev/nfs " \ |
| 76 | "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ |
| 77 | "netboot=echo Booting from net ...; " \ |
| 78 | "run netargs; " \ |
| 79 | "if test ${ip_dyn} = yes; then " \ |
| 80 | "setenv get_cmd dhcp; " \ |
| 81 | "else " \ |
| 82 | "setenv get_cmd tftp; " \ |
| 83 | "fi; " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 84 | "if test ${sec_boot} = yes; then " \ |
| 85 | "${get_cmd} ${cntr_addr} ${cntr_file}; " \ |
| 86 | "if run auth_os; then " \ |
| 87 | "run boot_os; " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 88 | "else " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 89 | "echo ERR: failed to authenticate; " \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 90 | "fi; " \ |
| 91 | "else " \ |
Peng Fan | 6dcc6ce | 2019-09-25 08:11:19 +0000 | [diff] [blame] | 92 | "${get_cmd} ${loadaddr} ${image}; " \ |
| 93 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
| 94 | "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ |
| 95 | "run boot_os; " \ |
| 96 | "else " \ |
| 97 | "echo WARN: Cannot load the DT; " \ |
| 98 | "fi; " \ |
| 99 | "else " \ |
| 100 | "booti; " \ |
| 101 | "fi;" \ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 102 | "fi;\0" |
| 103 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 104 | /* Link Definitions */ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 105 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 106 | /* Default environment is in SD */ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 107 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 108 | /* On LPDDR4 board, USDHC1 is for eMMC, USDHC2 is for SD on CPU board */ |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 109 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 110 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
| 111 | #define PHYS_SDRAM_1 0x80000000 |
| 112 | #define PHYS_SDRAM_2 0x880000000 |
| 113 | #define PHYS_SDRAM_1_SIZE 0x80000000 /* 2 GB */ |
| 114 | /* LPDDR4 board total DDR is 3GB */ |
| 115 | #define PHYS_SDRAM_2_SIZE 0x40000000 /* 1 GB */ |
| 116 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 117 | #ifndef CONFIG_DM_PCA953X |
| 118 | #define CONFIG_PCA953X |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 119 | #endif |
| 120 | |
Anatolij Gustschin | 5c1c7c1 | 2019-10-21 17:31:53 +0200 | [diff] [blame] | 121 | /* Misc configuration */ |
Anatolij Gustschin | 5c1c7c1 | 2019-10-21 17:31:53 +0200 | [diff] [blame] | 122 | |
Peng Fan | d0dd739 | 2018-10-18 14:28:37 +0200 | [diff] [blame] | 123 | #endif /* __IMX8QXP_MEK_H */ |