Priyanka Jain | 58c3e62 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2018 NXP |
| 4 | */ |
| 5 | |
| 6 | #ifndef __LX2_COMMON_H |
| 7 | #define __LX2_COMMON_H |
| 8 | |
| 9 | #include <asm/arch/stream_id_lsch3.h> |
| 10 | #include <asm/arch/config.h> |
| 11 | #include <asm/arch/soc.h> |
| 12 | |
| 13 | #define CONFIG_REMAKE_ELF |
| 14 | #define CONFIG_FSL_LAYERSCAPE |
| 15 | #define CONFIG_GICV3 |
| 16 | #define CONFIG_FSL_TZPC_BP147 |
| 17 | #define CONFIG_FSL_MEMAC |
| 18 | |
| 19 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |
| 20 | #define CONFIG_SYS_FLASH_BASE 0x20000000 |
| 21 | |
| 22 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 23 | #define CONFIG_BOARD_EARLY_INIT_F 1 |
| 24 | |
| 25 | /* DDR */ |
| 26 | #define CONFIG_FSL_DDR_INTERACTIVE /* Interactive debugging */ |
| 27 | #define CONFIG_SYS_FSL_DDR_INTLV_256B /* force 256 byte interleaving */ |
| 28 | #define CONFIG_VERY_BIG_RAM |
| 29 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000UL |
| 30 | #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
| 31 | #define CONFIG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL |
| 32 | #define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 2 |
| 33 | #define CONFIG_SYS_SDRAM_SIZE 0x200000000UL |
| 34 | #define CONFIG_DDR_SPD |
| 35 | #define CONFIG_DDR_ECC |
| 36 | #define CONFIG_ECC_INIT_VIA_DDRCONTROLLER |
| 37 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
| 38 | #define CONFIG_MEM_INIT_VALUE 0xdeadbeef |
| 39 | #define SPD_EEPROM_ADDRESS1 0x51 |
| 40 | #define SPD_EEPROM_ADDRESS2 0x52 |
| 41 | #define SPD_EEPROM_ADDRESS3 0x53 |
| 42 | #define SPD_EEPROM_ADDRESS4 0x54 |
| 43 | #define SPD_EEPROM_ADDRESS5 0x55 |
| 44 | #define SPD_EEPROM_ADDRESS6 0x56 |
| 45 | #define SPD_EEPROM_ADDRESS SPD_EEPROM_ADDRESS1 |
| 46 | #define CONFIG_SYS_SPD_BUS_NUM 0 /* SPD on I2C bus 0 */ |
| 47 | #define CONFIG_DIMM_SLOTS_PER_CTLR 2 |
| 48 | #define CONFIG_CHIP_SELECTS_PER_CTRL 4 |
| 49 | #define CONFIG_FSL_DDR_BIST /* enable built-in memory test */ |
| 50 | #define CONFIG_SYS_MONITOR_LEN (936 * 1024) |
| 51 | |
| 52 | /* Miscellaneous configurable options */ |
| 53 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000) |
| 54 | |
| 55 | /* SMP Definitinos */ |
| 56 | #define CPU_RELEASE_ADDR secondary_boot_func |
| 57 | |
| 58 | /* Generic Timer Definitions */ |
| 59 | /* |
| 60 | * This is not an accurate number. It is used in start.S. The frequency |
| 61 | * will be udpated later when get_bus_freq(0) is available. |
| 62 | */ |
| 63 | |
| 64 | #define COUNTER_FREQUENCY 25000000 /* 25MHz */ |
| 65 | |
| 66 | /* Size of malloc() pool */ |
| 67 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024) |
| 68 | |
| 69 | /* Serial Port */ |
| 70 | #define CONFIG_PL01X_SERIAL |
| 71 | #define CONFIG_PL011_CLOCK (get_bus_freq(0) / 4) |
| 72 | #define CONFIG_SYS_SERIAL0 0x21c0000 |
| 73 | #define CONFIG_SYS_SERIAL1 0x21d0000 |
| 74 | #define CONFIG_SYS_SERIAL2 0x21e0000 |
| 75 | #define CONFIG_SYS_SERIAL3 0x21f0000 |
| 76 | /*below might needs to be removed*/ |
| 77 | #define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0, \ |
| 78 | (void *)CONFIG_SYS_SERIAL1, \ |
| 79 | (void *)CONFIG_SYS_SERIAL2, \ |
| 80 | (void *)CONFIG_SYS_SERIAL3 } |
| 81 | #define CONFIG_BAUDRATE 115200 |
| 82 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| 83 | |
| 84 | /* MC firmware */ |
| 85 | #define CONFIG_SYS_LS_MC_DPC_MAX_LENGTH 0x20000 |
| 86 | #define CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET 0x00F00000 |
| 87 | #define CONFIG_SYS_LS_MC_DPL_MAX_LENGTH 0x20000 |
| 88 | #define CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET 0x00F20000 |
| 89 | #define CONFIG_SYS_LS_MC_BOOT_TIMEOUT_MS 5000 |
| 90 | |
| 91 | /* Define phy_reset function to boot the MC based on mcinitcmd. |
| 92 | * This happens late enough to properly fixup u-boot env MAC addresses. |
| 93 | */ |
| 94 | #define CONFIG_RESET_PHY_R |
| 95 | |
| 96 | /* |
| 97 | * Carve out a DDR region which will not be used by u-boot/Linux |
| 98 | * |
| 99 | * It will be used by MC and Debug Server. The MC region must be |
| 100 | * 512MB aligned, so the min size to hide is 512MB. |
| 101 | */ |
| 102 | #ifdef CONFIG_FSL_MC_ENET |
| 103 | #define CONFIG_SYS_LS_MC_DRAM_BLOCK_MIN_SIZE (512UL * 1024 * 1024) |
| 104 | #endif |
| 105 | |
| 106 | /* I2C bus multiplexer */ |
| 107 | #define I2C_MUX_PCA_ADDR_PRI 0x77 /* Primary Mux*/ |
| 108 | #define I2C_MUX_CH_DEFAULT 0x8 |
| 109 | |
| 110 | /* RTC */ |
| 111 | #define RTC |
| 112 | #define CONFIG_SYS_I2C_RTC_ADDR 0x51 /* Channel 3*/ |
| 113 | |
| 114 | /* EEPROM */ |
| 115 | #define CONFIG_ID_EEPROM |
| 116 | #define CONFIG_SYS_I2C_EEPROM_NXID |
| 117 | #define CONFIG_SYS_EEPROM_BUS_NUM 0 |
| 118 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x57 |
| 119 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 120 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 |
| 121 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5 |
| 122 | |
| 123 | /* Qixis */ |
| 124 | #define CONFIG_FSL_QIXIS |
| 125 | #define CONFIG_QIXIS_I2C_ACCESS |
| 126 | #define CONFIG_SYS_I2C_FPGA_ADDR 0x66 |
| 127 | |
| 128 | /* PCI */ |
| 129 | #ifdef CONFIG_PCI |
| 130 | #define CONFIG_SYS_PCI_64BIT |
| 131 | #define CONFIG_PCI_SCAN_SHOW |
| 132 | #endif |
| 133 | |
| 134 | /* MMC */ |
| 135 | #ifdef CONFIG_MMC |
| 136 | #define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| 137 | #endif |
| 138 | |
| 139 | /* SATA */ |
| 140 | |
| 141 | #ifdef CONFIG_SCSI |
| 142 | #define CONFIG_SCSI_AHCI_PLAT |
| 143 | #define CONFIG_SYS_SATA1 AHCI_BASE_ADDR1 |
| 144 | #define CONFIG_SYS_SATA2 AHCI_BASE_ADDR2 |
| 145 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 |
| 146 | #define CONFIG_SYS_SCSI_MAX_LUN 1 |
| 147 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ |
| 148 | CONFIG_SYS_SCSI_MAX_LUN) |
| 149 | #endif |
| 150 | |
| 151 | /* USB */ |
| 152 | #ifdef CONFIG_USB |
| 153 | #define CONFIG_HAS_FSL_XHCI_USB |
| 154 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
| 155 | #endif |
| 156 | |
| 157 | /* FlexSPI */ |
| 158 | #ifdef CONFIG_NXP_FSPI |
| 159 | #define NXP_FSPI_FLASH_SIZE SZ_64M |
| 160 | #define NXP_FSPI_FLASH_NUM 1 |
| 161 | #endif |
| 162 | |
| 163 | #ifndef __ASSEMBLY__ |
| 164 | unsigned long get_board_sys_clk(void); |
| 165 | unsigned long get_board_ddr_clk(void); |
| 166 | #endif |
| 167 | |
| 168 | #define CONFIG_SYS_CLK_FREQ get_board_sys_clk() |
| 169 | #define CONFIG_DDR_CLK_FREQ get_board_ddr_clk() |
| 170 | #define COUNTER_FREQUENCY_REAL (CONFIG_SYS_CLK_FREQ / 4) |
| 171 | |
| 172 | #define CONFIG_HWCONFIG |
| 173 | #define HWCONFIG_BUFFER_SIZE 128 |
| 174 | |
| 175 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
| 176 | #define CONFIG_ENV_SIZE 0x2000 /* 8KB */ |
| 177 | #define CONFIG_ENV_SECT_SIZE 0x20000 |
| 178 | #define CONFIG_ENV_OFFSET 0x500000 |
| 179 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + \ |
| 180 | CONFIG_ENV_OFFSET) |
| 181 | |
| 182 | /* Allow to overwrite serial and ethaddr */ |
| 183 | #define CONFIG_ENV_OVERWRITE |
| 184 | |
| 185 | /* Monitor Command Prompt */ |
| 186 | #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
| 187 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 188 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 189 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */ |
| 190 | #define CONFIG_CMDLINE_EDITING 1 |
| 191 | #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| 192 | |
| 193 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| 194 | |
| 195 | /* Initial environment variables */ |
Priyanka Jain | 58c3e62 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 196 | #define XSPI_MC_INIT_CMD \ |
Udit Agarwal | 19e97e4 | 2018-12-14 04:43:32 +0000 | [diff] [blame] | 197 | "env exists secureboot && " \ |
| 198 | "esbc_validate 0x20700000 && " \ |
| 199 | "esbc_validate 0x20740000 ;" \ |
Priyanka Jain | 58c3e62 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 200 | "fsl_mc start mc 0x20a00000 0x20e00000\0" |
| 201 | |
| 202 | #define SD_MC_INIT_CMD \ |
| 203 | "mmc read 0x80000000 0x5000 0x800;" \ |
| 204 | "mmc read 0x80100000 0x7000 0x800;" \ |
Udit Agarwal | 19e97e4 | 2018-12-14 04:43:32 +0000 | [diff] [blame] | 205 | "env exists secureboot && " \ |
| 206 | "mmc read 0x80700000 0x3800 0x10 && " \ |
| 207 | "mmc read 0x80740000 0x3A00 0x10 && " \ |
| 208 | "esbc_validate 0x80700000 && " \ |
| 209 | "esbc_validate 0x80740000 ;" \ |
Priyanka Jain | 58c3e62 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 210 | "fsl_mc start mc 0x80000000 0x80100000\0" |
| 211 | |
Priyanka Jain | 3e1a9b5 | 2019-01-24 05:22:18 +0000 | [diff] [blame] | 212 | #define EXTRA_ENV_SETTINGS \ |
| 213 | "hwconfig=fsl_ddr:bank_intlv=auto\0" \ |
| 214 | "ramdisk_addr=0x800000\0" \ |
| 215 | "ramdisk_size=0x2000000\0" \ |
| 216 | "fdt_high=0xa0000000\0" \ |
| 217 | "initrd_high=0xffffffffffffffff\0" \ |
| 218 | "fdt_addr=0x64f00000\0" \ |
| 219 | "kernel_start=0x1000000\0" \ |
Udit Agarwal | 19e97e4 | 2018-12-14 04:43:32 +0000 | [diff] [blame] | 220 | "kernelheader_start=0x7C0000\0" \ |
Priyanka Jain | 3e1a9b5 | 2019-01-24 05:22:18 +0000 | [diff] [blame] | 221 | "scriptaddr=0x80000000\0" \ |
| 222 | "scripthdraddr=0x80080000\0" \ |
| 223 | "fdtheader_addr_r=0x80100000\0" \ |
| 224 | "kernelheader_addr_r=0x80200000\0" \ |
| 225 | "kernel_addr_r=0x81000000\0" \ |
| 226 | "kernelheader_size=0x40000\0" \ |
| 227 | "fdt_addr_r=0x90000000\0" \ |
| 228 | "load_addr=0xa0000000\0" \ |
| 229 | "kernel_size=0x2800000\0" \ |
| 230 | "kernel_addr_sd=0x8000\0" \ |
Udit Agarwal | 19e97e4 | 2018-12-14 04:43:32 +0000 | [diff] [blame] | 231 | "kernelhdr_addr_sd=0x3E00\0" \ |
Priyanka Jain | 3e1a9b5 | 2019-01-24 05:22:18 +0000 | [diff] [blame] | 232 | "kernel_size_sd=0x1d000\0" \ |
Udit Agarwal | 19e97e4 | 2018-12-14 04:43:32 +0000 | [diff] [blame] | 233 | "kernelhdr_size_sd=0x10\0" \ |
Priyanka Jain | 3e1a9b5 | 2019-01-24 05:22:18 +0000 | [diff] [blame] | 234 | "console=ttyAMA0,38400n8\0" \ |
| 235 | BOOTENV \ |
| 236 | "mcmemsize=0x70000000\0" \ |
| 237 | XSPI_MC_INIT_CMD \ |
| 238 | "boot_scripts=lx2160ardb_boot.scr\0" \ |
| 239 | "boot_script_hdr=hdr_lx2160ardb_bs.out\0" \ |
| 240 | "scan_dev_for_boot_part=" \ |
| 241 | "part list ${devtype} ${devnum} devplist; " \ |
| 242 | "env exists devplist || setenv devplist 1; " \ |
| 243 | "for distro_bootpart in ${devplist}; do " \ |
| 244 | "if fstype ${devtype} " \ |
| 245 | "${devnum}:${distro_bootpart} " \ |
| 246 | "bootfstype; then " \ |
| 247 | "run scan_dev_for_boot; " \ |
| 248 | "fi; " \ |
| 249 | "done\0" \ |
| 250 | "scan_dev_for_boot=" \ |
| 251 | "echo Scanning ${devtype} " \ |
| 252 | "${devnum}:${distro_bootpart}...; " \ |
| 253 | "for prefix in ${boot_prefixes}; do " \ |
| 254 | "run scan_dev_for_scripts; " \ |
| 255 | "done;\0" \ |
| 256 | "boot_a_script=" \ |
| 257 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 258 | "${scriptaddr} ${prefix}${script}; " \ |
| 259 | "env exists secureboot && load ${devtype} " \ |
| 260 | "${devnum}:${distro_bootpart} " \ |
| 261 | "${scripthdraddr} ${prefix}${boot_script_hdr} " \ |
| 262 | "&& esbc_validate ${scripthdraddr};" \ |
| 263 | "source ${scriptaddr}\0" |
| 264 | |
| 265 | #define XSPI_NOR_BOOTCOMMAND \ |
| 266 | "env exists mcinitcmd && env exists secureboot "\ |
| 267 | "&& esbc_validate 0x20780000; " \ |
| 268 | "env exists mcinitcmd && " \ |
| 269 | "fsl_mc lazyapply dpl 0x20d00000; " \ |
| 270 | "run distro_bootcmd;run xspi_bootcmd; " \ |
| 271 | "env exists secureboot && esbc_halt;" |
| 272 | |
| 273 | #define SD_BOOTCOMMAND \ |
| 274 | "env exists mcinitcmd && mmcinfo; " \ |
| 275 | "mmc read 0x80001000 0x6800 0x800; " \ |
| 276 | "env exists mcinitcmd && env exists secureboot " \ |
| 277 | " && mmc read 0x80780000 0x3C00 0x10 " \ |
| 278 | "&& esbc_validate 0x80780000;env exists mcinitcmd " \ |
| 279 | "&& fsl_mc lazyapply dpl 0x80001000;" \ |
| 280 | "run distro_bootcmd;run sd_bootcmd;" \ |
| 281 | "env exists secureboot && esbc_halt;" |
| 282 | |
| 283 | #define BOOT_TARGET_DEVICES(func) \ |
| 284 | func(USB, usb, 0) \ |
| 285 | func(MMC, mmc, 0) \ |
| 286 | func(SCSI, scsi, 0) |
| 287 | #include <config_distro_bootcmd.h> |
| 288 | |
Priyanka Jain | 58c3e62 | 2018-11-28 13:04:27 +0000 | [diff] [blame] | 289 | #endif /* __LX2_COMMON_H */ |