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