Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2019 NXP |
| 4 | */ |
| 5 | |
| 6 | #ifndef __IMX8MM_CL_IOT_GATE_H |
| 7 | #define __IMX8MM_CL_IOT_GATE_H |
| 8 | |
| 9 | #include <linux/sizes.h> |
| 10 | #include <linux/stringify.h> |
| 11 | #include <asm/arch/imx-regs.h> |
| 12 | #include <config_distro_bootcmd.h> |
| 13 | |
| 14 | #define CONFIG_SYS_BOOTM_LEN (32 * SZ_1M) |
| 15 | #define CONFIG_SPL_MAX_SIZE (148 * 1024) |
| 16 | #define CONFIG_SYS_MONITOR_LEN SZ_512K |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 17 | #define CONFIG_SYS_UBOOT_BASE \ |
| 18 | (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512) |
| 19 | |
| 20 | #ifdef CONFIG_SPL_BUILD |
| 21 | #define CONFIG_SPL_STACK 0x920000 |
| 22 | #define CONFIG_SPL_BSS_START_ADDR 0x910000 |
| 23 | #define CONFIG_SPL_BSS_MAX_SIZE SZ_8K /* 8 KB */ |
| 24 | #define CONFIG_SYS_SPL_MALLOC_START 0x42200000 |
| 25 | #define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K /* 512 KB */ |
| 26 | |
| 27 | /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */ |
| 28 | #define CONFIG_MALLOC_F_ADDR 0x912000 |
| 29 | /* For RAW image gives a error info not panic */ |
| 30 | #define CONFIG_SPL_ABORT_ON_RAW_IMAGE |
| 31 | |
| 32 | #endif |
| 33 | |
| 34 | #if CONFIG_IS_ENABLED(CMD_MMC) |
| 35 | # define BOOT_TARGET_MMC(func) \ |
| 36 | func(MMC, mmc, 2) \ |
| 37 | func(MMC, mmc, 0) |
| 38 | #else |
| 39 | # define BOOT_TARGET_MMC(func) |
| 40 | #endif |
| 41 | |
| 42 | #if CONFIG_IS_ENABLED(CMD_USB) |
| 43 | # define BOOT_TARGET_USB(func) func(USB, usb, 0) |
| 44 | #else |
| 45 | # define BOOT_TARGET_USB(func) |
| 46 | #endif |
| 47 | |
| 48 | #if CONFIG_IS_ENABLED(CMD_PXE) |
| 49 | # define BOOT_TARGET_PXE(func) func(PXE, pxe, na) |
| 50 | #else |
| 51 | # define BOOT_TARGET_PXE(func) |
| 52 | #endif |
| 53 | |
| 54 | #if CONFIG_IS_ENABLED(CMD_DHCP) |
| 55 | # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na) |
| 56 | #else |
| 57 | # define BOOT_TARGET_DHCP(func) |
| 58 | #endif |
| 59 | |
| 60 | #define BOOT_TARGET_DEVICES(func) \ |
| 61 | BOOT_TARGET_USB(func) \ |
| 62 | BOOT_TARGET_MMC(func) \ |
| 63 | BOOT_TARGET_PXE(func) \ |
| 64 | BOOT_TARGET_DHCP(func) |
| 65 | |
| 66 | /* Initial environment variables */ |
| 67 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 68 | BOOTENV \ |
| 69 | "script=boot.scr\0" \ |
| 70 | "image=Image\0" \ |
| 71 | "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \ |
| 72 | "fdt_addr=0x43000000\0" \ |
| 73 | "fdt_addr_r=0x43000000\0" \ |
| 74 | "boot_fit=no\0" \ |
| 75 | "dfu_alt_info=mmc 2=flash-bin raw 0x42 0x250 mmcpart 1;" \ |
| 76 | "u-boot-itb raw 0x300 0x1B00 mmcpart 1\0" \ |
| 77 | "fdt_file=sb-iotgimx8.dtb\0" \ |
| 78 | "fdtfile=sb-iotgimx8.dtb\0" \ |
| 79 | "initrd_addr=0x43800000\0" \ |
| 80 | "bootm_size=0x10000000\0" \ |
| 81 | "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ |
| 82 | "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \ |
| 83 | "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \ |
| 84 | "mmcautodetect=yes\0" \ |
| 85 | "mmcargs=setenv bootargs console=${console} root=${mmcroot}\0 " \ |
| 86 | "loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ |
| 87 | "bootscript=echo Running bootscript from mmc ...; " \ |
| 88 | "source\0" \ |
| 89 | "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ |
| 90 | "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ |
| 91 | "kernel_addr_r=0x40480000\0" \ |
| 92 | "pxefile_addr_r=0x40480000\0" \ |
| 93 | "ramdisk_addr_r=0x43800000\0" \ |
| 94 | "mmcboot=echo Booting from mmc ...; " \ |
| 95 | "run mmcargs; " \ |
| 96 | "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \ |
| 97 | "bootm ${loadaddr}; " \ |
| 98 | "else " \ |
| 99 | "if run loadfdt; then " \ |
| 100 | "booti ${loadaddr} - ${fdt_addr}; " \ |
| 101 | "else " \ |
| 102 | "echo WARN: Cannot load the DT; " \ |
| 103 | "fi; " \ |
| 104 | "fi;\0" \ |
| 105 | "netargs=setenv bootargs console=${console} " \ |
| 106 | "root=/dev/nfs " \ |
| 107 | "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ |
| 108 | "netboot=echo Booting from net ...; " \ |
| 109 | "run netargs; " \ |
| 110 | "if test ${ip_dyn} = yes; then " \ |
| 111 | "setenv get_cmd dhcp; " \ |
| 112 | "else " \ |
| 113 | "setenv get_cmd tftp; " \ |
| 114 | "fi; " \ |
| 115 | "${get_cmd} ${loadaddr} ${image}; " \ |
| 116 | "if test ${boot_fit} = yes || test ${boot_fit} = try; then " \ |
| 117 | "bootm ${loadaddr}; " \ |
| 118 | "else " \ |
| 119 | "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ |
| 120 | "booti ${loadaddr} - ${fdt_addr}; " \ |
| 121 | "else " \ |
| 122 | "echo WARN: Cannot load the DT; " \ |
| 123 | "fi; " \ |
| 124 | "fi;\0" |
| 125 | |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 126 | /* Link Definitions */ |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 127 | |
| 128 | #define CONFIG_SYS_INIT_RAM_ADDR 0x40000000 |
| 129 | #define CONFIG_SYS_INIT_RAM_SIZE 0x80000 |
| 130 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 131 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 132 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 133 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 134 | |
| 135 | #define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */ |
| 136 | |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 137 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
| 138 | #define PHYS_SDRAM 0x40000000 |
| 139 | #define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */ |
| 140 | |
| 141 | #define CONFIG_MXC_UART_BASE UART3_BASE_ADDR |
| 142 | |
| 143 | /* Monitor Command Prompt */ |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 144 | #define CONFIG_SYS_CBSIZE 2048 |
| 145 | #define CONFIG_SYS_MAXARGS 64 |
| 146 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 147 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 148 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 149 | |
| 150 | /* USDHC */ |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 151 | |
| 152 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
| 153 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
| 154 | |
| 155 | #define CONFIG_SYS_MMC_IMG_LOAD_PART 1 |
| 156 | |
Ying-Chun Liu (PaulLiu) | 53b516c | 2021-04-22 04:50:31 +0800 | [diff] [blame] | 157 | #define CONFIG_ETHPRIME "FEC" |
| 158 | |
| 159 | #define CONFIG_FEC_XCV_TYPE RGMII |
| 160 | #define CONFIG_FEC_MXC_PHYADDR 0 |
| 161 | #define FEC_QUIRK_ENET_MAC |
| 162 | |
| 163 | #define IMX_FEC_BASE 0x30BE0000 |
| 164 | |
| 165 | /* USB Configs */ |
| 166 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 167 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 168 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
| 169 | |
| 170 | #endif /*__IMX8MM_CL_IOT_GATE_H*/ |