Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2015 Freescale Semiconductor, Inc. |
Biwen Li | b41f6ba | 2020-07-02 11:13:03 +0800 | [diff] [blame] | 4 | * Copyright 2019-2020 NXP |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <i2c.h> |
| 9 | #include <fdt_support.h> |
Simon Glass | 0e0ac20 | 2017-04-06 12:47:04 -0600 | [diff] [blame] | 10 | #include <fsl_ddr_sdram.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <asm/arch/clock.h> |
| 16 | #include <asm/arch/fsl_serdes.h> |
Hou Zhiqiang | 09fd945 | 2017-04-14 14:48:21 +0800 | [diff] [blame] | 17 | #include <asm/arch/ppa.h> |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 18 | #include <asm/arch/fdt.h> |
York Sun | 729f2d1 | 2017-03-06 09:02:34 -0800 | [diff] [blame] | 19 | #include <asm/arch/mmu.h> |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 20 | #include <asm/arch/cpu.h> |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 21 | #include <asm/arch/soc.h> |
Laurentiu Tudor | 22012d5 | 2018-08-27 17:33:59 +0300 | [diff] [blame] | 22 | #include <asm/arch-fsl-layerscape/fsl_icid.h> |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 23 | #include <ahci.h> |
| 24 | #include <hwconfig.h> |
| 25 | #include <mmc.h> |
| 26 | #include <scsi.h> |
| 27 | #include <fm_eth.h> |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 28 | #include <fsl_esdhc.h> |
| 29 | #include <fsl_ifc.h> |
| 30 | #include <spl.h> |
Stephen Carlson | 7ee444a | 2021-06-22 16:39:31 -0700 | [diff] [blame] | 31 | #include "../common/i2c_mux.h" |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 32 | |
| 33 | #include "../common/qixis.h" |
| 34 | #include "ls1043aqds_qixis.h" |
| 35 | |
| 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
| 38 | enum { |
| 39 | MUX_TYPE_GPIO, |
| 40 | }; |
| 41 | |
| 42 | /* LS1043AQDS serdes mux */ |
| 43 | #define CFG_SD_MUX1_SLOT2 0x0 /* SLOT2 TX/RX0 */ |
| 44 | #define CFG_SD_MUX1_SLOT1 0x1 /* SLOT1 TX/RX1 */ |
| 45 | #define CFG_SD_MUX2_SLOT3 0x0 /* SLOT3 TX/RX0 */ |
| 46 | #define CFG_SD_MUX2_SLOT1 0x1 /* SLOT1 TX/RX2 */ |
| 47 | #define CFG_SD_MUX3_SLOT4 0x0 /* SLOT4 TX/RX0 */ |
| 48 | #define CFG_SD_MUX3_MUX4 0x1 /* MUX4 */ |
| 49 | #define CFG_SD_MUX4_SLOT3 0x0 /* SLOT3 TX/RX1 */ |
| 50 | #define CFG_SD_MUX4_SLOT1 0x1 /* SLOT1 TX/RX3 */ |
Shaohui Xie | db1ab38 | 2016-01-21 17:14:53 +0800 | [diff] [blame] | 51 | #define CFG_UART_MUX_MASK 0x6 |
| 52 | #define CFG_UART_MUX_SHIFT 1 |
| 53 | #define CFG_LPUART_EN 0x1 |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 54 | |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 55 | #ifdef CONFIG_TFABOOT |
| 56 | struct ifc_regs ifc_cfg_nor_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = { |
| 57 | { |
| 58 | "nor0", |
| 59 | CONFIG_SYS_NOR0_CSPR, |
| 60 | CONFIG_SYS_NOR0_CSPR_EXT, |
| 61 | CONFIG_SYS_NOR_AMASK, |
| 62 | CONFIG_SYS_NOR_CSOR, |
| 63 | { |
| 64 | CONFIG_SYS_NOR_FTIM0, |
| 65 | CONFIG_SYS_NOR_FTIM1, |
| 66 | CONFIG_SYS_NOR_FTIM2, |
| 67 | CONFIG_SYS_NOR_FTIM3 |
| 68 | }, |
| 69 | |
| 70 | }, |
| 71 | { |
| 72 | "nor1", |
| 73 | CONFIG_SYS_NOR1_CSPR, |
| 74 | CONFIG_SYS_NOR1_CSPR_EXT, |
| 75 | CONFIG_SYS_NOR_AMASK, |
| 76 | CONFIG_SYS_NOR_CSOR, |
| 77 | { |
| 78 | CONFIG_SYS_NOR_FTIM0, |
| 79 | CONFIG_SYS_NOR_FTIM1, |
| 80 | CONFIG_SYS_NOR_FTIM2, |
| 81 | CONFIG_SYS_NOR_FTIM3 |
| 82 | }, |
| 83 | }, |
| 84 | { |
| 85 | "nand", |
| 86 | CONFIG_SYS_NAND_CSPR, |
| 87 | CONFIG_SYS_NAND_CSPR_EXT, |
| 88 | CONFIG_SYS_NAND_AMASK, |
| 89 | CONFIG_SYS_NAND_CSOR, |
| 90 | { |
| 91 | CONFIG_SYS_NAND_FTIM0, |
| 92 | CONFIG_SYS_NAND_FTIM1, |
| 93 | CONFIG_SYS_NAND_FTIM2, |
| 94 | CONFIG_SYS_NAND_FTIM3 |
| 95 | }, |
| 96 | }, |
| 97 | { |
| 98 | "fpga", |
| 99 | CONFIG_SYS_FPGA_CSPR, |
| 100 | CONFIG_SYS_FPGA_CSPR_EXT, |
| 101 | CONFIG_SYS_FPGA_AMASK, |
| 102 | CONFIG_SYS_FPGA_CSOR, |
| 103 | { |
| 104 | CONFIG_SYS_FPGA_FTIM0, |
| 105 | CONFIG_SYS_FPGA_FTIM1, |
| 106 | CONFIG_SYS_FPGA_FTIM2, |
| 107 | CONFIG_SYS_FPGA_FTIM3 |
| 108 | }, |
| 109 | } |
| 110 | }; |
| 111 | |
| 112 | struct ifc_regs ifc_cfg_nand_boot[CONFIG_SYS_FSL_IFC_BANK_COUNT] = { |
| 113 | { |
| 114 | "nand", |
| 115 | CONFIG_SYS_NAND_CSPR, |
| 116 | CONFIG_SYS_NAND_CSPR_EXT, |
| 117 | CONFIG_SYS_NAND_AMASK, |
| 118 | CONFIG_SYS_NAND_CSOR, |
| 119 | { |
| 120 | CONFIG_SYS_NAND_FTIM0, |
| 121 | CONFIG_SYS_NAND_FTIM1, |
| 122 | CONFIG_SYS_NAND_FTIM2, |
| 123 | CONFIG_SYS_NAND_FTIM3 |
| 124 | }, |
| 125 | }, |
| 126 | { |
| 127 | "nor0", |
| 128 | CONFIG_SYS_NOR0_CSPR, |
| 129 | CONFIG_SYS_NOR0_CSPR_EXT, |
| 130 | CONFIG_SYS_NOR_AMASK, |
| 131 | CONFIG_SYS_NOR_CSOR, |
| 132 | { |
| 133 | CONFIG_SYS_NOR_FTIM0, |
| 134 | CONFIG_SYS_NOR_FTIM1, |
| 135 | CONFIG_SYS_NOR_FTIM2, |
| 136 | CONFIG_SYS_NOR_FTIM3 |
| 137 | }, |
| 138 | }, |
| 139 | { |
| 140 | "nor1", |
| 141 | CONFIG_SYS_NOR1_CSPR, |
| 142 | CONFIG_SYS_NOR1_CSPR_EXT, |
| 143 | CONFIG_SYS_NOR_AMASK, |
| 144 | CONFIG_SYS_NOR_CSOR, |
| 145 | { |
| 146 | CONFIG_SYS_NOR_FTIM0, |
| 147 | CONFIG_SYS_NOR_FTIM1, |
| 148 | CONFIG_SYS_NOR_FTIM2, |
| 149 | CONFIG_SYS_NOR_FTIM3 |
| 150 | }, |
| 151 | }, |
| 152 | { |
| 153 | "fpga", |
| 154 | CONFIG_SYS_FPGA_CSPR, |
| 155 | CONFIG_SYS_FPGA_CSPR_EXT, |
| 156 | CONFIG_SYS_FPGA_AMASK, |
| 157 | CONFIG_SYS_FPGA_CSOR, |
| 158 | { |
| 159 | CONFIG_SYS_FPGA_FTIM0, |
| 160 | CONFIG_SYS_FPGA_FTIM1, |
| 161 | CONFIG_SYS_FPGA_FTIM2, |
| 162 | CONFIG_SYS_FPGA_FTIM3 |
| 163 | }, |
| 164 | } |
| 165 | }; |
| 166 | |
| 167 | void ifc_cfg_boot_info(struct ifc_regs_info *regs_info) |
| 168 | { |
| 169 | enum boot_src src = get_boot_src(); |
| 170 | |
| 171 | if (src == BOOT_SOURCE_IFC_NAND) |
| 172 | regs_info->regs = ifc_cfg_nand_boot; |
| 173 | else |
| 174 | regs_info->regs = ifc_cfg_nor_boot; |
| 175 | regs_info->cs_size = CONFIG_SYS_FSL_IFC_BANK_COUNT; |
| 176 | } |
| 177 | #endif |
| 178 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 179 | int checkboard(void) |
| 180 | { |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 181 | #ifdef CONFIG_TFABOOT |
| 182 | enum boot_src src = get_boot_src(); |
| 183 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 184 | char buf[64]; |
Qianyu Gong | 68d7520 | 2016-06-13 11:20:30 +0800 | [diff] [blame] | 185 | #ifndef CONFIG_SD_BOOT |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 186 | u8 sw; |
| 187 | #endif |
| 188 | |
| 189 | puts("Board: LS1043AQDS, boot from "); |
| 190 | |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 191 | #ifdef CONFIG_TFABOOT |
| 192 | if (src == BOOT_SOURCE_SD_MMC) |
| 193 | puts("SD\n"); |
| 194 | else { |
| 195 | #endif |
| 196 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 197 | #ifdef CONFIG_SD_BOOT |
| 198 | puts("SD\n"); |
| 199 | #else |
| 200 | sw = QIXIS_READ(brdcfg[0]); |
| 201 | sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT; |
| 202 | |
| 203 | if (sw < 0x8) |
| 204 | printf("vBank: %d\n", sw); |
| 205 | else if (sw == 0x8) |
| 206 | puts("PromJet\n"); |
| 207 | else if (sw == 0x9) |
| 208 | puts("NAND\n"); |
Qianyu Gong | 68d7520 | 2016-06-13 11:20:30 +0800 | [diff] [blame] | 209 | else if (sw == 0xF) |
| 210 | printf("QSPI\n"); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 211 | else |
| 212 | printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH); |
| 213 | #endif |
| 214 | |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 215 | #ifdef CONFIG_TFABOOT |
| 216 | } |
| 217 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 218 | printf("Sys ID: 0x%02x, Sys Ver: 0x%02x\n", |
| 219 | QIXIS_READ(id), QIXIS_READ(arch)); |
| 220 | |
| 221 | printf("FPGA: v%d (%s), build %d\n", |
| 222 | (int)QIXIS_READ(scver), qixis_read_tag(buf), |
| 223 | (int)qixis_read_minor()); |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | bool if_board_diff_clk(void) |
| 229 | { |
| 230 | u8 diff_conf = QIXIS_READ(brdcfg[11]); |
| 231 | |
| 232 | return diff_conf & 0x40; |
| 233 | } |
| 234 | |
| 235 | unsigned long get_board_sys_clk(void) |
| 236 | { |
| 237 | u8 sysclk_conf = QIXIS_READ(brdcfg[1]); |
| 238 | |
| 239 | switch (sysclk_conf & 0x0f) { |
| 240 | case QIXIS_SYSCLK_64: |
| 241 | return 64000000; |
| 242 | case QIXIS_SYSCLK_83: |
| 243 | return 83333333; |
| 244 | case QIXIS_SYSCLK_100: |
| 245 | return 100000000; |
| 246 | case QIXIS_SYSCLK_125: |
| 247 | return 125000000; |
| 248 | case QIXIS_SYSCLK_133: |
| 249 | return 133333333; |
| 250 | case QIXIS_SYSCLK_150: |
| 251 | return 150000000; |
| 252 | case QIXIS_SYSCLK_160: |
| 253 | return 160000000; |
| 254 | case QIXIS_SYSCLK_166: |
| 255 | return 166666666; |
| 256 | } |
| 257 | |
| 258 | return 66666666; |
| 259 | } |
| 260 | |
| 261 | unsigned long get_board_ddr_clk(void) |
| 262 | { |
| 263 | u8 ddrclk_conf = QIXIS_READ(brdcfg[1]); |
| 264 | |
| 265 | if (if_board_diff_clk()) |
| 266 | return get_board_sys_clk(); |
| 267 | switch ((ddrclk_conf & 0x30) >> 4) { |
| 268 | case QIXIS_DDRCLK_100: |
| 269 | return 100000000; |
| 270 | case QIXIS_DDRCLK_125: |
| 271 | return 125000000; |
| 272 | case QIXIS_DDRCLK_133: |
| 273 | return 133333333; |
| 274 | } |
| 275 | |
| 276 | return 66666666; |
| 277 | } |
| 278 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 279 | int dram_init(void) |
| 280 | { |
| 281 | /* |
| 282 | * When resuming from deep sleep, the I2C channel may not be |
| 283 | * in the default channel. So, switch to the default channel |
| 284 | * before accessing DDR SPD. |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 285 | * |
| 286 | * PCA9547 mount on I2C1 bus |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 287 | */ |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 288 | select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0); |
Simon Glass | 0e0ac20 | 2017-04-06 12:47:04 -0600 | [diff] [blame] | 289 | fsl_initdram(); |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 290 | #if (!defined(CONFIG_SPL) && !defined(CONFIG_TFABOOT)) || \ |
| 291 | defined(CONFIG_SPL_BUILD) |
York Sun | 729f2d1 | 2017-03-06 09:02:34 -0800 | [diff] [blame] | 292 | /* This will break-before-make MMU for DDR */ |
| 293 | update_early_mmu_table(); |
| 294 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 295 | |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | int i2c_multiplexer_select_vid_channel(u8 channel) |
| 300 | { |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 301 | return select_i2c_ch_pca9547(channel, 0); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | void board_retimer_init(void) |
| 305 | { |
| 306 | u8 reg; |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 307 | int bus_num = 0; |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 308 | |
| 309 | /* Retimer is connected to I2C1_CH7_CH5 */ |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 310 | select_i2c_ch_pca9547(I2C_MUX_CH7, bus_num); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 311 | reg = I2C_MUX_CH5; |
Igor Opaniuk | f7c9176 | 2021-02-09 13:52:45 +0200 | [diff] [blame] | 312 | #if CONFIG_IS_ENABLED(DM_I2C) |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 313 | struct udevice *dev; |
| 314 | int ret; |
| 315 | |
| 316 | ret = i2c_get_chip_for_busnum(bus_num, I2C_MUX_PCA_ADDR_SEC, |
| 317 | 1, &dev); |
| 318 | if (ret) { |
| 319 | printf("%s: Cannot find udev for a bus %d\n", __func__, |
| 320 | bus_num); |
| 321 | return; |
| 322 | } |
| 323 | dm_i2c_write(dev, 0, ®, 1); |
| 324 | |
| 325 | /* Access to Control/Shared register */ |
| 326 | ret = i2c_get_chip_for_busnum(bus_num, I2C_RETIMER_ADDR, |
| 327 | 1, &dev); |
| 328 | if (ret) { |
| 329 | printf("%s: Cannot find udev for a bus %d\n", __func__, |
| 330 | bus_num); |
| 331 | return; |
| 332 | } |
| 333 | |
| 334 | reg = 0x0; |
| 335 | dm_i2c_write(dev, 0xff, ®, 1); |
| 336 | |
| 337 | /* Read device revision and ID */ |
| 338 | dm_i2c_read(dev, 1, ®, 1); |
| 339 | debug("Retimer version id = 0x%x\n", reg); |
| 340 | |
| 341 | /* Enable Broadcast. All writes target all channel register sets */ |
| 342 | reg = 0x0c; |
| 343 | dm_i2c_write(dev, 0xff, ®, 1); |
| 344 | |
| 345 | /* Reset Channel Registers */ |
| 346 | dm_i2c_read(dev, 0, ®, 1); |
| 347 | reg |= 0x4; |
| 348 | dm_i2c_write(dev, 0, ®, 1); |
| 349 | |
| 350 | /* Enable override divider select and Enable Override Output Mux */ |
| 351 | dm_i2c_read(dev, 9, ®, 1); |
| 352 | reg |= 0x24; |
| 353 | dm_i2c_write(dev, 9, ®, 1); |
| 354 | |
| 355 | /* Select VCO Divider to full rate (000) */ |
| 356 | dm_i2c_read(dev, 0x18, ®, 1); |
| 357 | reg &= 0x8f; |
| 358 | dm_i2c_write(dev, 0x18, ®, 1); |
| 359 | |
| 360 | /* Selects active PFD MUX Input as Re-timed Data (001) */ |
| 361 | dm_i2c_read(dev, 0x1e, ®, 1); |
| 362 | reg &= 0x3f; |
| 363 | reg |= 0x20; |
| 364 | dm_i2c_write(dev, 0x1e, ®, 1); |
| 365 | |
| 366 | /* Set data rate as 10.3125 Gbps */ |
| 367 | reg = 0x0; |
| 368 | dm_i2c_write(dev, 0x60, ®, 1); |
| 369 | reg = 0xb2; |
| 370 | dm_i2c_write(dev, 0x61, ®, 1); |
| 371 | reg = 0x90; |
| 372 | dm_i2c_write(dev, 0x62, ®, 1); |
| 373 | reg = 0xb3; |
| 374 | dm_i2c_write(dev, 0x63, ®, 1); |
| 375 | reg = 0xcd; |
| 376 | dm_i2c_write(dev, 0x64, ®, 1); |
| 377 | #else |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 378 | i2c_write(I2C_MUX_PCA_ADDR_SEC, 0, 1, ®, 1); |
| 379 | |
| 380 | /* Access to Control/Shared register */ |
| 381 | reg = 0x0; |
| 382 | i2c_write(I2C_RETIMER_ADDR, 0xff, 1, ®, 1); |
| 383 | |
| 384 | /* Read device revision and ID */ |
| 385 | i2c_read(I2C_RETIMER_ADDR, 1, 1, ®, 1); |
| 386 | debug("Retimer version id = 0x%x\n", reg); |
| 387 | |
| 388 | /* Enable Broadcast. All writes target all channel register sets */ |
| 389 | reg = 0x0c; |
| 390 | i2c_write(I2C_RETIMER_ADDR, 0xff, 1, ®, 1); |
| 391 | |
| 392 | /* Reset Channel Registers */ |
| 393 | i2c_read(I2C_RETIMER_ADDR, 0, 1, ®, 1); |
| 394 | reg |= 0x4; |
| 395 | i2c_write(I2C_RETIMER_ADDR, 0, 1, ®, 1); |
| 396 | |
| 397 | /* Enable override divider select and Enable Override Output Mux */ |
| 398 | i2c_read(I2C_RETIMER_ADDR, 9, 1, ®, 1); |
| 399 | reg |= 0x24; |
| 400 | i2c_write(I2C_RETIMER_ADDR, 9, 1, ®, 1); |
| 401 | |
| 402 | /* Select VCO Divider to full rate (000) */ |
| 403 | i2c_read(I2C_RETIMER_ADDR, 0x18, 1, ®, 1); |
| 404 | reg &= 0x8f; |
| 405 | i2c_write(I2C_RETIMER_ADDR, 0x18, 1, ®, 1); |
| 406 | |
| 407 | /* Selects active PFD MUX Input as Re-timed Data (001) */ |
| 408 | i2c_read(I2C_RETIMER_ADDR, 0x1e, 1, ®, 1); |
| 409 | reg &= 0x3f; |
| 410 | reg |= 0x20; |
| 411 | i2c_write(I2C_RETIMER_ADDR, 0x1e, 1, ®, 1); |
| 412 | |
| 413 | /* Set data rate as 10.3125 Gbps */ |
| 414 | reg = 0x0; |
| 415 | i2c_write(I2C_RETIMER_ADDR, 0x60, 1, ®, 1); |
| 416 | reg = 0xb2; |
| 417 | i2c_write(I2C_RETIMER_ADDR, 0x61, 1, ®, 1); |
| 418 | reg = 0x90; |
| 419 | i2c_write(I2C_RETIMER_ADDR, 0x62, 1, ®, 1); |
| 420 | reg = 0xb3; |
| 421 | i2c_write(I2C_RETIMER_ADDR, 0x63, 1, ®, 1); |
| 422 | reg = 0xcd; |
| 423 | i2c_write(I2C_RETIMER_ADDR, 0x64, 1, ®, 1); |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 424 | #endif |
Wenbin Song | bc7a4fd | 2016-03-09 13:38:24 +0800 | [diff] [blame] | 425 | |
| 426 | /* Return the default channel */ |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 427 | select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, bus_num); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | int board_early_init_f(void) |
| 431 | { |
Biwen Li | b41f6ba | 2020-07-02 11:13:03 +0800 | [diff] [blame] | 432 | u32 __iomem *cntcr = (u32 *)CONFIG_SYS_FSL_TIMER_ADDR; |
Qianyu Gong | 8d3d5c4 | 2016-02-16 13:12:53 +0800 | [diff] [blame] | 433 | #ifdef CONFIG_HAS_FSL_XHCI_USB |
| 434 | struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR; |
| 435 | u32 usb_pwrfault; |
| 436 | #endif |
Shaohui Xie | db1ab38 | 2016-01-21 17:14:53 +0800 | [diff] [blame] | 437 | #ifdef CONFIG_LPUART |
| 438 | u8 uart; |
| 439 | #endif |
Qianyu Gong | a92f213 | 2016-06-13 11:20:31 +0800 | [diff] [blame] | 440 | |
Biwen Li | b41f6ba | 2020-07-02 11:13:03 +0800 | [diff] [blame] | 441 | /* |
| 442 | * Enable secure system counter for timer |
| 443 | */ |
| 444 | out_le32(cntcr, 0x1); |
| 445 | |
Tom Rini | 714482a | 2021-08-18 23:12:25 -0400 | [diff] [blame] | 446 | #if defined(CONFIG_SYS_I2C_EARLY_INIT) |
Qianyu Gong | a92f213 | 2016-06-13 11:20:31 +0800 | [diff] [blame] | 447 | i2c_early_init_f(); |
| 448 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 449 | fsl_lsch2_early_init_f(); |
Qianyu Gong | 8d3d5c4 | 2016-02-16 13:12:53 +0800 | [diff] [blame] | 450 | |
| 451 | #ifdef CONFIG_HAS_FSL_XHCI_USB |
| 452 | out_be32(&scfg->rcwpmuxcr0, 0x3333); |
| 453 | out_be32(&scfg->usbdrvvbus_selcr, SCFG_USBDRVVBUS_SELCR_USB1); |
| 454 | usb_pwrfault = |
Shaohui Xie | b8c4fc9 | 2016-05-30 14:26:55 +0800 | [diff] [blame] | 455 | (SCFG_USBPWRFAULT_DEDICATED << SCFG_USBPWRFAULT_USB3_SHIFT) | |
| 456 | (SCFG_USBPWRFAULT_DEDICATED << SCFG_USBPWRFAULT_USB2_SHIFT) | |
Qianyu Gong | 8d3d5c4 | 2016-02-16 13:12:53 +0800 | [diff] [blame] | 457 | (SCFG_USBPWRFAULT_SHARED << SCFG_USBPWRFAULT_USB1_SHIFT); |
| 458 | out_be32(&scfg->usbpwrfault_selcr, usb_pwrfault); |
| 459 | #endif |
| 460 | |
Shaohui Xie | db1ab38 | 2016-01-21 17:14:53 +0800 | [diff] [blame] | 461 | #ifdef CONFIG_LPUART |
| 462 | /* We use lpuart0 as system console */ |
| 463 | uart = QIXIS_READ(brdcfg[14]); |
| 464 | uart &= ~CFG_UART_MUX_MASK; |
| 465 | uart |= CFG_LPUART_EN << CFG_UART_MUX_SHIFT; |
| 466 | QIXIS_WRITE(brdcfg[14], uart); |
| 467 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 468 | |
| 469 | return 0; |
| 470 | } |
| 471 | |
| 472 | #ifdef CONFIG_FSL_DEEP_SLEEP |
| 473 | /* determine if it is a warm boot */ |
| 474 | bool is_warm_boot(void) |
| 475 | { |
| 476 | #define DCFG_CCSR_CRSTSR_WDRFR (1 << 3) |
| 477 | struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR; |
| 478 | |
| 479 | if (in_be32(&gur->crstsr) & DCFG_CCSR_CRSTSR_WDRFR) |
| 480 | return 1; |
| 481 | |
| 482 | return 0; |
| 483 | } |
| 484 | #endif |
| 485 | |
| 486 | int config_board_mux(int ctrl_type) |
| 487 | { |
| 488 | u8 reg14; |
| 489 | |
| 490 | reg14 = QIXIS_READ(brdcfg[14]); |
| 491 | |
| 492 | switch (ctrl_type) { |
| 493 | case MUX_TYPE_GPIO: |
| 494 | reg14 = (reg14 & (~0x30)) | 0x20; |
| 495 | break; |
| 496 | default: |
| 497 | puts("Unsupported mux interface type\n"); |
| 498 | return -1; |
| 499 | } |
| 500 | |
| 501 | QIXIS_WRITE(brdcfg[14], reg14); |
| 502 | |
| 503 | return 0; |
| 504 | } |
| 505 | |
| 506 | int config_serdes_mux(void) |
| 507 | { |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | |
| 512 | #ifdef CONFIG_MISC_INIT_R |
| 513 | int misc_init_r(void) |
| 514 | { |
| 515 | if (hwconfig("gpio")) |
| 516 | config_board_mux(MUX_TYPE_GPIO); |
| 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | #endif |
| 521 | |
| 522 | int board_init(void) |
| 523 | { |
Hou Zhiqiang | 4b23ca8 | 2016-08-02 19:03:27 +0800 | [diff] [blame] | 524 | #ifdef CONFIG_SYS_FSL_ERRATUM_A010315 |
| 525 | erratum_a010315(); |
| 526 | #endif |
| 527 | |
Biwen Li | 014460b | 2020-02-05 22:02:16 +0800 | [diff] [blame] | 528 | select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 529 | board_retimer_init(); |
| 530 | |
| 531 | #ifdef CONFIG_SYS_FSL_SERDES |
| 532 | config_serdes_mux(); |
| 533 | #endif |
| 534 | |
Hou Zhiqiang | 09fd945 | 2017-04-14 14:48:21 +0800 | [diff] [blame] | 535 | #ifdef CONFIG_FSL_LS_PPA |
| 536 | ppa_init(); |
| 537 | #endif |
| 538 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | #ifdef CONFIG_OF_BOARD_SETUP |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 543 | int ft_board_setup(void *blob, struct bd_info *bd) |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 544 | { |
Shaohui Xie | 16f15fa | 2016-01-04 11:03:44 +0800 | [diff] [blame] | 545 | u64 base[CONFIG_NR_DRAM_BANKS]; |
| 546 | u64 size[CONFIG_NR_DRAM_BANKS]; |
Qianyu Gong | d2c492a | 2016-07-21 12:39:27 +0800 | [diff] [blame] | 547 | u8 reg; |
Shaohui Xie | 16f15fa | 2016-01-04 11:03:44 +0800 | [diff] [blame] | 548 | |
| 549 | /* fixup DT for the two DDR banks */ |
| 550 | base[0] = gd->bd->bi_dram[0].start; |
| 551 | size[0] = gd->bd->bi_dram[0].size; |
| 552 | base[1] = gd->bd->bi_dram[1].start; |
| 553 | size[1] = gd->bd->bi_dram[1].size; |
| 554 | |
| 555 | fdt_fixup_memory_banks(blob, base, size, 2); |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 556 | ft_cpu_setup(blob, bd); |
| 557 | |
| 558 | #ifdef CONFIG_SYS_DPAA_FMAN |
Madalin Bucur | 7084851 | 2020-04-30 15:59:58 +0300 | [diff] [blame] | 559 | #ifndef CONFIG_DM_ETH |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 560 | fdt_fixup_fman_ethernet(blob); |
Madalin Bucur | 7084851 | 2020-04-30 15:59:58 +0300 | [diff] [blame] | 561 | #endif |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 562 | fdt_fixup_board_enet(blob); |
| 563 | #endif |
Qianyu Gong | d2c492a | 2016-07-21 12:39:27 +0800 | [diff] [blame] | 564 | |
Laurentiu Tudor | 22012d5 | 2018-08-27 17:33:59 +0300 | [diff] [blame] | 565 | fdt_fixup_icid(blob); |
| 566 | |
Qianyu Gong | d2c492a | 2016-07-21 12:39:27 +0800 | [diff] [blame] | 567 | reg = QIXIS_READ(brdcfg[0]); |
| 568 | reg = (reg & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT; |
| 569 | |
| 570 | /* Disable IFC if QSPI is enabled */ |
| 571 | if (reg == 0xF) |
| 572 | do_fixup_by_compat(blob, "fsl,ifc", |
| 573 | "status", "disabled", 8 + 1, 1); |
| 574 | |
Shaohui Xie | dd33567 | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 575 | return 0; |
| 576 | } |
| 577 | #endif |
| 578 | |
| 579 | u8 flash_read8(void *addr) |
| 580 | { |
| 581 | return __raw_readb(addr + 1); |
| 582 | } |
| 583 | |
| 584 | void flash_write16(u16 val, void *addr) |
| 585 | { |
| 586 | u16 shftval = (((val >> 8) & 0xff) | ((val << 8) & 0xff00)); |
| 587 | |
| 588 | __raw_writew(shftval, addr); |
| 589 | } |
| 590 | |
| 591 | u16 flash_read16(void *addr) |
| 592 | { |
| 593 | u16 val = __raw_readw(addr); |
| 594 | |
| 595 | return (((val) >> 8) & 0x00ff) | (((val) << 8) & 0xff00); |
| 596 | } |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 597 | |
Tom Rini | 0543c43 | 2019-11-18 20:02:08 -0500 | [diff] [blame] | 598 | #if defined(CONFIG_TFABOOT) && defined(CONFIG_ENV_IS_IN_SPI_FLASH) |
Rajesh Bhagat | 90bde11 | 2018-11-05 18:02:48 +0000 | [diff] [blame] | 599 | void *env_sf_get_env_addr(void) |
| 600 | { |
| 601 | return (void *)(CONFIG_SYS_FSL_QSPI_BASE + CONFIG_ENV_OFFSET); |
| 602 | } |
| 603 | #endif |