York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1 | /* |
Priyanka Jain | 5193405 | 2017-04-25 10:12:31 +0530 | [diff] [blame] | 2 | * Copyright (C) 2017 NXP Semiconductors |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 3 | * Copyright 2015 Freescale Semiconductor |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | #include <common.h> |
| 8 | #include <malloc.h> |
| 9 | #include <errno.h> |
| 10 | #include <netdev.h> |
| 11 | #include <fsl_ifc.h> |
| 12 | #include <fsl_ddr.h> |
| 13 | #include <asm/io.h> |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 14 | #include <hwconfig.h> |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 15 | #include <fdt_support.h> |
| 16 | #include <libfdt.h> |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 17 | #include <fsl-mc/fsl_mc.h> |
| 18 | #include <environment.h> |
Alexander Graf | 215b1fb | 2016-11-17 01:02:59 +0100 | [diff] [blame] | 19 | #include <efi_loader.h> |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 20 | #include <i2c.h> |
York Sun | 4961eaf | 2017-03-06 09:02:34 -0800 | [diff] [blame] | 21 | #include <asm/arch/mmu.h> |
Mingkai Hu | 9f3183d | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 22 | #include <asm/arch/soc.h> |
Santan Kumar | 54ad7b5 | 2017-03-07 11:21:03 +0530 | [diff] [blame] | 23 | #include <asm/arch/ppa.h> |
Saksham Jain | fcfdb6d | 2016-03-23 16:24:35 +0530 | [diff] [blame] | 24 | #include <fsl_sec.h> |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 25 | |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 26 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 27 | #include "../common/qixis.h" |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 28 | #include "ls2080ardb_qixis.h" |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 29 | #endif |
Rai Harninder | ed2530d | 2016-03-23 17:04:38 +0530 | [diff] [blame] | 30 | #include "../common/vid.h" |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 31 | |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 32 | #define PIN_MUX_SEL_SDHC 0x00 |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 33 | #define PIN_MUX_SEL_DSPI 0x0a |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 34 | |
| 35 | #define SET_SDHC_MUX_SEL(reg, value) ((reg & 0xf0) | value) |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 38 | enum { |
| 39 | MUX_TYPE_SDHC, |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 40 | MUX_TYPE_DSPI, |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 41 | }; |
| 42 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 43 | unsigned long long get_qixis_addr(void) |
| 44 | { |
| 45 | unsigned long long addr; |
| 46 | |
| 47 | if (gd->flags & GD_FLG_RELOC) |
| 48 | addr = QIXIS_BASE_PHYS; |
| 49 | else |
| 50 | addr = QIXIS_BASE_PHYS_EARLY; |
| 51 | |
| 52 | /* |
| 53 | * IFC address under 256MB is mapped to 0x30000000, any address above |
| 54 | * is mapped to 0x5_10000000 up to 4GB. |
| 55 | */ |
| 56 | addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000; |
| 57 | |
| 58 | return addr; |
| 59 | } |
| 60 | |
| 61 | int checkboard(void) |
| 62 | { |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 63 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 64 | u8 sw; |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 65 | #endif |
Prabhakar Kushwaha | ff1b8e3 | 2015-05-28 14:54:07 +0530 | [diff] [blame] | 66 | char buf[15]; |
| 67 | |
| 68 | cpu_name(buf); |
| 69 | printf("Board: %s-RDB, ", buf); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 70 | |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 71 | #ifdef CONFIG_TARGET_LS2081ARDB |
| 72 | #ifdef CONFIG_FSL_QIXIS |
| 73 | sw = QIXIS_READ(arch); |
| 74 | printf("Board Arch: V%d, ", sw >> 4); |
| 75 | printf("Board version: %c, ", (sw & 0xf) + 'A'); |
| 76 | |
| 77 | sw = QIXIS_READ(brdcfg[0]); |
| 78 | sw = (sw & QIXIS_QMAP_MASK) >> QIXIS_QMAP_SHIFT; |
| 79 | switch (sw) { |
| 80 | case 0: |
| 81 | puts("boot from QSPI DEV#0\n"); |
| 82 | puts("QSPI_CSA_1 mapped to QSPI DEV#1\n"); |
| 83 | break; |
| 84 | case 1: |
| 85 | puts("boot from QSPI DEV#1\n"); |
| 86 | puts("QSPI_CSA_1 mapped to QSPI DEV#0\n"); |
| 87 | break; |
| 88 | case 2: |
| 89 | puts("boot from QSPI EMU\n"); |
| 90 | puts("QSPI_CSA_1 mapped to QSPI DEV#0\n"); |
| 91 | break; |
| 92 | case 3: |
| 93 | puts("boot from QSPI EMU\n"); |
| 94 | puts("QSPI_CSA_1 mapped to QSPI DEV#1\n"); |
| 95 | break; |
| 96 | case 4: |
| 97 | puts("boot from QSPI DEV#0\n"); |
| 98 | puts("QSPI_CSA_1 mapped to QSPI EMU\n"); |
| 99 | break; |
| 100 | default: |
| 101 | printf("invalid setting of SW%u\n", sw); |
| 102 | break; |
| 103 | } |
| 104 | #endif |
| 105 | puts("SERDES1 Reference : "); |
| 106 | printf("Clock1 = 100MHz "); |
| 107 | printf("Clock2 = 161.13MHz"); |
| 108 | #else |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 109 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 110 | sw = QIXIS_READ(arch); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 111 | printf("Board Arch: V%d, ", sw >> 4); |
Prabhakar Kushwaha | 27df54b | 2015-05-28 14:54:04 +0530 | [diff] [blame] | 112 | printf("Board version: %c, boot from ", (sw & 0xf) + 'A'); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 113 | |
| 114 | sw = QIXIS_READ(brdcfg[0]); |
| 115 | sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT; |
| 116 | |
| 117 | if (sw < 0x8) |
| 118 | printf("vBank: %d\n", sw); |
| 119 | else if (sw == 0x9) |
| 120 | puts("NAND\n"); |
| 121 | else |
| 122 | printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH); |
| 123 | |
| 124 | printf("FPGA: v%d.%d\n", QIXIS_READ(scver), QIXIS_READ(tagdata)); |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 125 | #endif |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 126 | puts("SERDES1 Reference : "); |
| 127 | printf("Clock1 = 156.25MHz "); |
| 128 | printf("Clock2 = 156.25MHz"); |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 129 | #endif |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 130 | |
| 131 | puts("\nSERDES2 Reference : "); |
| 132 | printf("Clock1 = 100MHz "); |
| 133 | printf("Clock2 = 100MHz\n"); |
| 134 | |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | unsigned long get_board_sys_clk(void) |
| 139 | { |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 140 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 141 | u8 sysclk_conf = QIXIS_READ(brdcfg[1]); |
| 142 | |
| 143 | switch (sysclk_conf & 0x0F) { |
| 144 | case QIXIS_SYSCLK_83: |
| 145 | return 83333333; |
| 146 | case QIXIS_SYSCLK_100: |
| 147 | return 100000000; |
| 148 | case QIXIS_SYSCLK_125: |
| 149 | return 125000000; |
| 150 | case QIXIS_SYSCLK_133: |
| 151 | return 133333333; |
| 152 | case QIXIS_SYSCLK_150: |
| 153 | return 150000000; |
| 154 | case QIXIS_SYSCLK_160: |
| 155 | return 160000000; |
| 156 | case QIXIS_SYSCLK_166: |
| 157 | return 166666666; |
| 158 | } |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 159 | #endif |
| 160 | return 100000000; |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | int select_i2c_ch_pca9547(u8 ch) |
| 164 | { |
| 165 | int ret; |
| 166 | |
| 167 | ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1); |
| 168 | if (ret) { |
| 169 | puts("PCA: failed to select proper channel\n"); |
| 170 | return ret; |
| 171 | } |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
Rai Harninder | ed2530d | 2016-03-23 17:04:38 +0530 | [diff] [blame] | 176 | int i2c_multiplexer_select_vid_channel(u8 channel) |
| 177 | { |
| 178 | return select_i2c_ch_pca9547(channel); |
| 179 | } |
| 180 | |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 181 | int config_board_mux(int ctrl_type) |
| 182 | { |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 183 | #ifdef CONFIG_FSL_QIXIS |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 184 | u8 reg5; |
| 185 | |
| 186 | reg5 = QIXIS_READ(brdcfg[5]); |
| 187 | |
| 188 | switch (ctrl_type) { |
| 189 | case MUX_TYPE_SDHC: |
| 190 | reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_SDHC); |
| 191 | break; |
| 192 | case MUX_TYPE_DSPI: |
| 193 | reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_DSPI); |
| 194 | break; |
| 195 | default: |
| 196 | printf("Wrong mux interface type\n"); |
| 197 | return -1; |
| 198 | } |
| 199 | |
| 200 | QIXIS_WRITE(brdcfg[5], reg5); |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 201 | #endif |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 202 | return 0; |
| 203 | } |
| 204 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 205 | int board_init(void) |
| 206 | { |
York Sun | 931e875 | 2016-05-26 13:59:03 -0700 | [diff] [blame] | 207 | #ifdef CONFIG_FSL_MC_ENET |
Shaohui Xie | abc7d0f | 2016-01-28 15:38:15 +0800 | [diff] [blame] | 208 | u32 __iomem *irq_ccsr = (u32 __iomem *)ISC_BASE; |
York Sun | 931e875 | 2016-05-26 13:59:03 -0700 | [diff] [blame] | 209 | #endif |
Haikun.Wang@freescale.com | 5989df7 | 2015-06-26 19:58:24 +0800 | [diff] [blame] | 210 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 211 | init_final_memctl_regs(); |
| 212 | |
| 213 | #ifdef CONFIG_ENV_IS_NOWHERE |
| 214 | gd->env_addr = (ulong)&default_environment[0]; |
| 215 | #endif |
| 216 | select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT); |
| 217 | |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 218 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 219 | QIXIS_WRITE(rst_ctl, QIXIS_RST_CTL_RESET_EN); |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 220 | #endif |
Udit Agarwal | 15e7c68 | 2017-08-16 07:13:29 -0400 | [diff] [blame] | 221 | |
| 222 | #ifdef CONFIG_FSL_CAAM |
| 223 | sec_init(); |
| 224 | #endif |
Santan Kumar | 54ad7b5 | 2017-03-07 11:21:03 +0530 | [diff] [blame] | 225 | #ifdef CONFIG_FSL_LS_PPA |
| 226 | ppa_init(); |
| 227 | #endif |
| 228 | |
York Sun | 931e875 | 2016-05-26 13:59:03 -0700 | [diff] [blame] | 229 | #ifdef CONFIG_FSL_MC_ENET |
Shaohui Xie | abc7d0f | 2016-01-28 15:38:15 +0800 | [diff] [blame] | 230 | /* invert AQR405 IRQ pins polarity */ |
| 231 | out_le32(irq_ccsr + IRQCR_OFFSET / 4, AQR405_IRQ_MASK); |
York Sun | 931e875 | 2016-05-26 13:59:03 -0700 | [diff] [blame] | 232 | #endif |
Udit Agarwal | a8c6fd4 | 2017-02-03 22:53:38 +0530 | [diff] [blame] | 233 | #ifdef CONFIG_FSL_CAAM |
| 234 | sec_init(); |
| 235 | #endif |
Shaohui Xie | abc7d0f | 2016-01-28 15:38:15 +0800 | [diff] [blame] | 236 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | int board_early_init_f(void) |
| 241 | { |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 242 | #ifdef CONFIG_SYS_I2C_EARLY_INIT |
| 243 | i2c_early_init_f(); |
| 244 | #endif |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 245 | fsl_lsch3_early_init_f(); |
| 246 | return 0; |
| 247 | } |
| 248 | |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 249 | int misc_init_r(void) |
| 250 | { |
Santan Kumar | 263536a | 2017-06-15 17:07:01 +0530 | [diff] [blame] | 251 | char *env_hwconfig; |
| 252 | u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE; |
| 253 | u32 val; |
Priyanka Jain | b5dfd47 | 2017-09-15 10:19:48 +0530 | [diff] [blame] | 254 | struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR); |
| 255 | u32 svr = gur_in32(&gur->svr); |
Santan Kumar | 263536a | 2017-06-15 17:07:01 +0530 | [diff] [blame] | 256 | |
| 257 | val = in_le32(dcfg_ccsr + DCFG_RCWSR13 / 4); |
| 258 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 259 | env_hwconfig = env_get("hwconfig"); |
Santan Kumar | 263536a | 2017-06-15 17:07:01 +0530 | [diff] [blame] | 260 | |
| 261 | if (hwconfig_f("dspi", env_hwconfig) && |
| 262 | DCFG_RCWSR13_DSPI == (val & (u32)(0xf << 8))) |
| 263 | config_board_mux(MUX_TYPE_DSPI); |
| 264 | else |
| 265 | config_board_mux(MUX_TYPE_SDHC); |
| 266 | |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 267 | /* |
Santan Kumar | 6cc914e | 2017-06-09 11:48:05 +0530 | [diff] [blame] | 268 | * LS2081ARDB RevF board has smart voltage translator |
Priyanka Jain | 5193405 | 2017-04-25 10:12:31 +0530 | [diff] [blame] | 269 | * which needs to be programmed to enable high speed SD interface |
| 270 | * by setting GPIO4_10 output to zero |
| 271 | */ |
Santan Kumar | 6cc914e | 2017-06-09 11:48:05 +0530 | [diff] [blame] | 272 | #ifdef CONFIG_TARGET_LS2081ARDB |
Priyanka Jain | 5193405 | 2017-04-25 10:12:31 +0530 | [diff] [blame] | 273 | out_le32(GPIO4_GPDIR_ADDR, (1 << 21 | |
| 274 | in_le32(GPIO4_GPDIR_ADDR))); |
| 275 | out_le32(GPIO4_GPDAT_ADDR, (~(1 << 21) & |
| 276 | in_le32(GPIO4_GPDAT_ADDR))); |
Priyanka Jain | 5193405 | 2017-04-25 10:12:31 +0530 | [diff] [blame] | 277 | #endif |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 278 | if (hwconfig("sdhc")) |
| 279 | config_board_mux(MUX_TYPE_SDHC); |
| 280 | |
Rai Harninder | ed2530d | 2016-03-23 17:04:38 +0530 | [diff] [blame] | 281 | if (adjust_vdd(0)) |
| 282 | printf("Warning: Adjusting core voltage failed.\n"); |
Priyanka Jain | b5dfd47 | 2017-09-15 10:19:48 +0530 | [diff] [blame] | 283 | /* |
| 284 | * Default value of board env is based on filename which is |
| 285 | * ls2080ardb. Modify board env for other supported SoCs |
| 286 | */ |
| 287 | if ((SVR_SOC_VER(svr) == SVR_LS2088A) || |
| 288 | (SVR_SOC_VER(svr) == SVR_LS2048A)) |
| 289 | env_set("board", "ls2088ardb"); |
| 290 | else if ((SVR_SOC_VER(svr) == SVR_LS2081A) || |
| 291 | (SVR_SOC_VER(svr) == SVR_LS2041A)) |
| 292 | env_set("board", "ls2081ardb"); |
Rai Harninder | ed2530d | 2016-03-23 17:04:38 +0530 | [diff] [blame] | 293 | |
Yangbo Lu | 5a4d744 | 2015-05-28 14:53:55 +0530 | [diff] [blame] | 294 | return 0; |
| 295 | } |
| 296 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 297 | void detail_board_ddr_info(void) |
| 298 | { |
| 299 | puts("\nDDR "); |
| 300 | print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, ""); |
| 301 | print_ddr_info(0); |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 302 | #ifdef CONFIG_SYS_FSL_HAS_DP_DDR |
York Sun | 3c1d218 | 2016-04-04 11:41:26 -0700 | [diff] [blame] | 303 | if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) { |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 304 | puts("\nDP-DDR "); |
| 305 | print_size(gd->bd->bi_dram[2].size, ""); |
| 306 | print_ddr_info(CONFIG_DP_DDR_CTRL); |
| 307 | } |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 308 | #endif |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 309 | } |
| 310 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 311 | #if defined(CONFIG_ARCH_MISC_INIT) |
| 312 | int arch_misc_init(void) |
| 313 | { |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | #endif |
| 317 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 318 | #ifdef CONFIG_FSL_MC_ENET |
| 319 | void fdt_fixup_board_enet(void *fdt) |
| 320 | { |
| 321 | int offset; |
| 322 | |
Stuart Yoder | e91f1de | 2016-03-02 16:37:13 -0600 | [diff] [blame] | 323 | offset = fdt_path_offset(fdt, "/soc/fsl-mc"); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 324 | |
| 325 | if (offset < 0) |
Stuart Yoder | e91f1de | 2016-03-02 16:37:13 -0600 | [diff] [blame] | 326 | offset = fdt_path_offset(fdt, "/fsl-mc"); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 327 | |
| 328 | if (offset < 0) { |
| 329 | printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n", |
| 330 | __func__, offset); |
| 331 | return; |
| 332 | } |
| 333 | |
| 334 | if (get_mc_boot_status() == 0) |
| 335 | fdt_status_okay(fdt, offset); |
| 336 | else |
| 337 | fdt_status_fail(fdt, offset); |
| 338 | } |
Alexander Graf | b7b8410 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 339 | |
| 340 | void board_quiesce_devices(void) |
| 341 | { |
| 342 | fsl_mc_ldpaa_exit(gd->bd); |
| 343 | } |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 344 | #endif |
| 345 | |
| 346 | #ifdef CONFIG_OF_BOARD_SETUP |
Santan Kumar | 7794d9a | 2017-07-05 18:05:08 +0530 | [diff] [blame] | 347 | void fsl_fdt_fixup_flash(void *fdt) |
| 348 | { |
| 349 | int offset; |
| 350 | |
| 351 | /* |
| 352 | * IFC and QSPI are muxed on board. |
| 353 | * So disable IFC node in dts if QSPI is enabled or |
| 354 | * disable QSPI node in dts in case QSPI is not enabled. |
| 355 | */ |
| 356 | #ifdef CONFIG_FSL_QSPI |
| 357 | offset = fdt_path_offset(fdt, "/soc/ifc"); |
| 358 | |
| 359 | if (offset < 0) |
| 360 | offset = fdt_path_offset(fdt, "/ifc"); |
| 361 | #else |
| 362 | offset = fdt_path_offset(fdt, "/soc/quadspi"); |
| 363 | |
| 364 | if (offset < 0) |
| 365 | offset = fdt_path_offset(fdt, "/quadspi"); |
| 366 | #endif |
| 367 | if (offset < 0) |
| 368 | return; |
| 369 | |
| 370 | fdt_status_disabled(fdt, offset); |
| 371 | } |
| 372 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 373 | int ft_board_setup(void *blob, bd_t *bd) |
| 374 | { |
Bhupesh Sharma | a2dc818 | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 375 | u64 base[CONFIG_NR_DRAM_BANKS]; |
| 376 | u64 size[CONFIG_NR_DRAM_BANKS]; |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 377 | |
| 378 | ft_cpu_setup(blob, bd); |
| 379 | |
Bhupesh Sharma | a2dc818 | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 380 | /* fixup DT for the two GPP DDR banks */ |
| 381 | base[0] = gd->bd->bi_dram[0].start; |
| 382 | size[0] = gd->bd->bi_dram[0].size; |
| 383 | base[1] = gd->bd->bi_dram[1].start; |
| 384 | size[1] = gd->bd->bi_dram[1].size; |
| 385 | |
York Sun | 36cc0de | 2017-03-06 09:02:28 -0800 | [diff] [blame] | 386 | #ifdef CONFIG_RESV_RAM |
| 387 | /* reduce size if reserved memory is within this bank */ |
| 388 | if (gd->arch.resv_ram >= base[0] && |
| 389 | gd->arch.resv_ram < base[0] + size[0]) |
| 390 | size[0] = gd->arch.resv_ram - base[0]; |
| 391 | else if (gd->arch.resv_ram >= base[1] && |
| 392 | gd->arch.resv_ram < base[1] + size[1]) |
| 393 | size[1] = gd->arch.resv_ram - base[1]; |
| 394 | #endif |
| 395 | |
Bhupesh Sharma | a2dc818 | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 396 | fdt_fixup_memory_banks(blob, base, size, 2); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 397 | |
Sriram Dash | a5c289b | 2016-09-16 17:12:15 +0530 | [diff] [blame] | 398 | fsl_fdt_fixup_dr_usb(blob, bd); |
Sriram Dash | ef53b8c | 2016-06-13 09:58:36 +0530 | [diff] [blame] | 399 | |
Santan Kumar | 7794d9a | 2017-07-05 18:05:08 +0530 | [diff] [blame] | 400 | fsl_fdt_fixup_flash(blob); |
| 401 | |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 402 | #ifdef CONFIG_FSL_MC_ENET |
| 403 | fdt_fixup_board_enet(blob); |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 404 | #endif |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | #endif |
| 409 | |
| 410 | void qixis_dump_switch(void) |
| 411 | { |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 412 | #ifdef CONFIG_FSL_QIXIS |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 413 | int i, nr_of_cfgsw; |
| 414 | |
| 415 | QIXIS_WRITE(cms[0], 0x00); |
| 416 | nr_of_cfgsw = QIXIS_READ(cms[1]); |
| 417 | |
| 418 | puts("DIP switch settings dump:\n"); |
| 419 | for (i = 1; i <= nr_of_cfgsw; i++) { |
| 420 | QIXIS_WRITE(cms[0], i); |
| 421 | printf("SW%d = (0x%02x)\n", i, QIXIS_READ(cms[1])); |
| 422 | } |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 423 | #endif |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 424 | } |
York Sun | fc7b385 | 2015-05-28 14:54:09 +0530 | [diff] [blame] | 425 | |
| 426 | /* |
| 427 | * Board rev C and earlier has duplicated I2C addresses for 2nd controller. |
| 428 | * Both slots has 0x54, resulting 2nd slot unusable. |
| 429 | */ |
| 430 | void update_spd_address(unsigned int ctrl_num, |
| 431 | unsigned int slot, |
| 432 | unsigned int *addr) |
| 433 | { |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 434 | #ifndef CONFIG_TARGET_LS2081ARDB |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 435 | #ifdef CONFIG_FSL_QIXIS |
York Sun | fc7b385 | 2015-05-28 14:54:09 +0530 | [diff] [blame] | 436 | u8 sw; |
| 437 | |
| 438 | sw = QIXIS_READ(arch); |
| 439 | if ((sw & 0xf) < 0x3) { |
| 440 | if (ctrl_num == 1 && slot == 0) |
| 441 | *addr = SPD_EEPROM_ADDRESS4; |
| 442 | else if (ctrl_num == 1 && slot == 1) |
| 443 | *addr = SPD_EEPROM_ADDRESS3; |
| 444 | } |
Priyanka Jain | d1418c1 | 2017-04-28 10:41:34 +0530 | [diff] [blame] | 445 | #endif |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 446 | #endif |
York Sun | fc7b385 | 2015-05-28 14:54:09 +0530 | [diff] [blame] | 447 | } |