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