Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2015 Freescale Semiconductor |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 4 | */ |
| 5 | #include <common.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 6 | #include <env.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 7 | #include <init.h> |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 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> |
| 14 | #include <fdt_support.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 16 | #include <fsl-mc/fsl_mc.h> |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 17 | #include <env_internal.h> |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 18 | #include <i2c.h> |
Priyanka Jain | 2657e43 | 2015-06-29 15:39:40 +0530 | [diff] [blame] | 19 | #include <rtc.h> |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 20 | #include <asm/arch/soc.h> |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 21 | #include <hwconfig.h> |
Saksham Jain | c0c38d2 | 2016-03-23 16:24:35 +0530 | [diff] [blame] | 22 | #include <fsl_sec.h> |
Santan Kumar | c61c699 | 2017-03-07 11:21:03 +0530 | [diff] [blame] | 23 | #include <asm/arch/ppa.h> |
Laurentiu Tudor | 4adff39 | 2019-10-18 09:01:54 +0000 | [diff] [blame] | 24 | #include <asm/arch-fsl-layerscape/fsl_icid.h> |
Santan Kumar | c61c699 | 2017-03-07 11:21:03 +0530 | [diff] [blame] | 25 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 26 | |
| 27 | #include "../common/qixis.h" |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 28 | #include "ls2080aqds_qixis.h" |
Priyanka Jain | 53e7ec0 | 2017-01-19 11:12:28 +0530 | [diff] [blame] | 29 | #include "../common/vid.h" |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 30 | |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 31 | #define PIN_MUX_SEL_SDHC 0x00 |
| 32 | #define PIN_MUX_SEL_DSPI 0x0a |
Yuan Yao | 2ec8584 | 2016-06-08 18:24:52 +0800 | [diff] [blame] | 33 | #define SCFG_QSPICLKCTRL_DIV_20 (5 << 27) |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 34 | |
| 35 | #define SET_SDHC_MUX_SEL(reg, value) ((reg & 0xf0) | value) |
| 36 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 39 | enum { |
| 40 | MUX_TYPE_SDHC, |
| 41 | MUX_TYPE_DSPI, |
| 42 | }; |
| 43 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 44 | unsigned long long get_qixis_addr(void) |
| 45 | { |
| 46 | unsigned long long addr; |
| 47 | |
| 48 | if (gd->flags & GD_FLG_RELOC) |
| 49 | addr = QIXIS_BASE_PHYS; |
| 50 | else |
| 51 | addr = QIXIS_BASE_PHYS_EARLY; |
| 52 | |
| 53 | /* |
| 54 | * IFC address under 256MB is mapped to 0x30000000, any address above |
| 55 | * is mapped to 0x5_10000000 up to 4GB. |
| 56 | */ |
| 57 | addr = addr > 0x10000000 ? addr + 0x500000000ULL : addr + 0x30000000; |
| 58 | |
| 59 | return addr; |
| 60 | } |
| 61 | |
| 62 | int checkboard(void) |
| 63 | { |
| 64 | char buf[64]; |
| 65 | u8 sw; |
| 66 | static const char *const freq[] = {"100", "125", "156.25", |
| 67 | "100 separate SSCG"}; |
| 68 | int clock; |
| 69 | |
Prabhakar Kushwaha | 67f2e9c | 2015-05-28 14:54:07 +0530 | [diff] [blame] | 70 | cpu_name(buf); |
| 71 | printf("Board: %s-QDS, ", buf); |
| 72 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 73 | sw = QIXIS_READ(arch); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 74 | printf("Board Arch: V%d, ", sw >> 4); |
| 75 | printf("Board version: %c, boot from ", (sw & 0xf) + 'A' - 1); |
| 76 | |
Prabhakar Kushwaha | 67f2e9c | 2015-05-28 14:54:07 +0530 | [diff] [blame] | 77 | memset((u8 *)buf, 0x00, ARRAY_SIZE(buf)); |
| 78 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 79 | sw = QIXIS_READ(brdcfg[0]); |
| 80 | sw = (sw & QIXIS_LBMAP_MASK) >> QIXIS_LBMAP_SHIFT; |
| 81 | |
| 82 | if (sw < 0x8) |
| 83 | printf("vBank: %d\n", sw); |
| 84 | else if (sw == 0x8) |
| 85 | puts("PromJet\n"); |
| 86 | else if (sw == 0x9) |
| 87 | puts("NAND\n"); |
Yuan Yao | 331c87c | 2016-06-08 18:25:00 +0800 | [diff] [blame] | 88 | else if (sw == 0xf) |
| 89 | puts("QSPI\n"); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 90 | else if (sw == 0x15) |
| 91 | printf("IFCCard\n"); |
| 92 | else |
| 93 | printf("invalid setting of SW%u\n", QIXIS_LBMAP_SWITCH); |
| 94 | |
| 95 | printf("FPGA: v%d (%s), build %d", |
| 96 | (int)QIXIS_READ(scver), qixis_read_tag(buf), |
| 97 | (int)qixis_read_minor()); |
| 98 | /* the timestamp string contains "\n" at the end */ |
| 99 | printf(" on %s", qixis_read_time(buf)); |
| 100 | |
| 101 | /* |
| 102 | * Display the actual SERDES reference clocks as configured by the |
| 103 | * dip switches on the board. Note that the SWx registers could |
| 104 | * technically be set to force the reference clocks to match the |
| 105 | * values that the SERDES expects (or vice versa). For now, however, |
| 106 | * we just display both values and hope the user notices when they |
| 107 | * don't match. |
| 108 | */ |
| 109 | puts("SERDES1 Reference : "); |
| 110 | sw = QIXIS_READ(brdcfg[2]); |
| 111 | clock = (sw >> 6) & 3; |
| 112 | printf("Clock1 = %sMHz ", freq[clock]); |
| 113 | clock = (sw >> 4) & 3; |
| 114 | printf("Clock2 = %sMHz", freq[clock]); |
| 115 | |
| 116 | puts("\nSERDES2 Reference : "); |
| 117 | clock = (sw >> 2) & 3; |
| 118 | printf("Clock1 = %sMHz ", freq[clock]); |
| 119 | clock = (sw >> 0) & 3; |
| 120 | printf("Clock2 = %sMHz\n", freq[clock]); |
| 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | unsigned long get_board_sys_clk(void) |
| 126 | { |
| 127 | u8 sysclk_conf = QIXIS_READ(brdcfg[1]); |
| 128 | |
| 129 | switch (sysclk_conf & 0x0F) { |
| 130 | case QIXIS_SYSCLK_83: |
| 131 | return 83333333; |
| 132 | case QIXIS_SYSCLK_100: |
| 133 | return 100000000; |
| 134 | case QIXIS_SYSCLK_125: |
| 135 | return 125000000; |
| 136 | case QIXIS_SYSCLK_133: |
| 137 | return 133333333; |
| 138 | case QIXIS_SYSCLK_150: |
| 139 | return 150000000; |
| 140 | case QIXIS_SYSCLK_160: |
| 141 | return 160000000; |
| 142 | case QIXIS_SYSCLK_166: |
| 143 | return 166666666; |
| 144 | } |
| 145 | return 66666666; |
| 146 | } |
| 147 | |
| 148 | unsigned long get_board_ddr_clk(void) |
| 149 | { |
| 150 | u8 ddrclk_conf = QIXIS_READ(brdcfg[1]); |
| 151 | |
| 152 | switch ((ddrclk_conf & 0x30) >> 4) { |
| 153 | case QIXIS_DDRCLK_100: |
| 154 | return 100000000; |
| 155 | case QIXIS_DDRCLK_125: |
| 156 | return 125000000; |
| 157 | case QIXIS_DDRCLK_133: |
| 158 | return 133333333; |
| 159 | } |
| 160 | return 66666666; |
| 161 | } |
| 162 | |
| 163 | int select_i2c_ch_pca9547(u8 ch) |
| 164 | { |
| 165 | int ret; |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 166 | #ifdef CONFIG_DM_I2C |
| 167 | struct udevice *dev; |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 168 | |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 169 | ret = i2c_get_chip_for_busnum(0, I2C_MUX_PCA_ADDR_PRI, 1, &dev); |
| 170 | if (!ret) |
| 171 | ret = dm_i2c_write(dev, 0, &ch, 1); |
| 172 | |
| 173 | #else |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 174 | ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1); |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 175 | #endif |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 176 | if (ret) { |
| 177 | puts("PCA: failed to select proper channel\n"); |
| 178 | return ret; |
| 179 | } |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 184 | int config_board_mux(int ctrl_type) |
| 185 | { |
| 186 | u8 reg5; |
| 187 | |
| 188 | reg5 = QIXIS_READ(brdcfg[5]); |
| 189 | |
| 190 | switch (ctrl_type) { |
| 191 | case MUX_TYPE_SDHC: |
| 192 | reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_SDHC); |
| 193 | break; |
| 194 | case MUX_TYPE_DSPI: |
| 195 | reg5 = SET_SDHC_MUX_SEL(reg5, PIN_MUX_SEL_DSPI); |
| 196 | break; |
| 197 | default: |
| 198 | printf("Wrong mux interface type\n"); |
| 199 | return -1; |
| 200 | } |
| 201 | |
| 202 | QIXIS_WRITE(brdcfg[5], reg5); |
| 203 | |
| 204 | return 0; |
| 205 | } |
| 206 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 207 | int board_init(void) |
| 208 | { |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 209 | char *env_hwconfig; |
| 210 | u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE; |
| 211 | u32 val; |
| 212 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 213 | init_final_memctl_regs(); |
| 214 | |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 215 | val = in_le32(dcfg_ccsr + DCFG_RCWSR13 / 4); |
| 216 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 217 | env_hwconfig = env_get("hwconfig"); |
Haikun Wang | a6cd9da | 2015-06-26 19:58:12 +0800 | [diff] [blame] | 218 | |
| 219 | if (hwconfig_f("dspi", env_hwconfig) && |
| 220 | DCFG_RCWSR13_DSPI == (val & (u32)(0xf << 8))) |
| 221 | config_board_mux(MUX_TYPE_DSPI); |
| 222 | else |
| 223 | config_board_mux(MUX_TYPE_SDHC); |
| 224 | |
Miquel Raynal | d093536 | 2019-10-03 19:50:03 +0200 | [diff] [blame] | 225 | #if defined(CONFIG_MTD_RAW_NAND) && defined(CONFIG_FSL_QSPI) |
Yuan Yao | 86f42d7 | 2016-06-08 18:24:57 +0800 | [diff] [blame] | 226 | val = in_le32(dcfg_ccsr + DCFG_RCWSR15 / 4); |
| 227 | |
| 228 | if (DCFG_RCWSR15_IFCGRPABASE_QSPI == (val & (u32)0x3)) |
| 229 | QIXIS_WRITE(brdcfg[9], |
| 230 | (QIXIS_READ(brdcfg[9]) & 0xf8) | |
| 231 | FSL_QIXIS_BRDCFG9_QSPI); |
| 232 | #endif |
| 233 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 234 | #ifdef CONFIG_ENV_IS_NOWHERE |
| 235 | gd->env_addr = (ulong)&default_environment[0]; |
| 236 | #endif |
| 237 | select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT); |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 238 | |
Chuanhua Han | 4f97aac | 2019-07-26 19:24:00 +0800 | [diff] [blame] | 239 | #ifdef CONFIG_RTC_ENABLE_32KHZ_OUTPUT |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 240 | #ifdef CONFIG_DM_I2C |
| 241 | rtc_enable_32khz_output(0, CONFIG_SYS_I2C_RTC_ADDR); |
| 242 | #else |
Priyanka Jain | 2657e43 | 2015-06-29 15:39:40 +0530 | [diff] [blame] | 243 | rtc_enable_32khz_output(); |
Chuanhua Han | 4f97aac | 2019-07-26 19:24:00 +0800 | [diff] [blame] | 244 | #endif |
Chuanhua Han | 1ab68c7 | 2019-07-26 19:24:01 +0800 | [diff] [blame] | 245 | #endif |
| 246 | |
Udit Agarwal | c83ea8a | 2017-08-16 07:13:29 -0400 | [diff] [blame] | 247 | #ifdef CONFIG_FSL_CAAM |
| 248 | sec_init(); |
| 249 | #endif |
Santan Kumar | c61c699 | 2017-03-07 11:21:03 +0530 | [diff] [blame] | 250 | |
| 251 | #ifdef CONFIG_FSL_LS_PPA |
| 252 | ppa_init(); |
| 253 | #endif |
| 254 | |
Ioana Ciornei | 51a4649 | 2020-05-18 14:48:35 +0300 | [diff] [blame] | 255 | #if !defined(CONFIG_SYS_EARLY_PCI_INIT) && defined(CONFIG_DM_ETH) |
| 256 | pci_init(); |
| 257 | #endif |
| 258 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | int board_early_init_f(void) |
| 263 | { |
Yuan Yao | 5a89cce | 2016-06-08 18:24:54 +0800 | [diff] [blame] | 264 | #ifdef CONFIG_SYS_I2C_EARLY_INIT |
| 265 | i2c_early_init_f(); |
| 266 | #endif |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 267 | fsl_lsch3_early_init_f(); |
Yuan Yao | 2ec8584 | 2016-06-08 18:24:52 +0800 | [diff] [blame] | 268 | #ifdef CONFIG_FSL_QSPI |
| 269 | /* input clk: 1/2 platform clk, output: input/20 */ |
| 270 | out_le32(SCFG_BASE + SCFG_QSPICLKCTLR, SCFG_QSPICLKCTRL_DIV_20); |
| 271 | #endif |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 272 | return 0; |
| 273 | } |
| 274 | |
Priyanka Jain | 53e7ec0 | 2017-01-19 11:12:28 +0530 | [diff] [blame] | 275 | int misc_init_r(void) |
| 276 | { |
| 277 | if (adjust_vdd(0)) |
| 278 | printf("Warning: Adjusting core voltage failed.\n"); |
| 279 | |
| 280 | return 0; |
| 281 | } |
| 282 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 283 | void detail_board_ddr_info(void) |
| 284 | { |
| 285 | puts("\nDDR "); |
| 286 | print_size(gd->bd->bi_dram[0].size + gd->bd->bi_dram[1].size, ""); |
| 287 | print_ddr_info(0); |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 288 | #ifdef CONFIG_SYS_FSL_HAS_DP_DDR |
York Sun | cbe8e1c | 2016-04-04 11:41:26 -0700 | [diff] [blame] | 289 | if (soc_has_dp_ddr() && gd->bd->bi_dram[2].size) { |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 290 | puts("\nDP-DDR "); |
| 291 | print_size(gd->bd->bi_dram[2].size, ""); |
| 292 | print_ddr_info(CONFIG_DP_DDR_CTRL); |
| 293 | } |
Prabhakar Kushwaha | 122bcfd | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 294 | #endif |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Santan Kumar | 1afa900 | 2017-05-05 15:42:29 +0530 | [diff] [blame] | 297 | #if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD) |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 298 | void fdt_fixup_board_enet(void *fdt) |
| 299 | { |
| 300 | int offset; |
| 301 | |
Stuart Yoder | a346615 | 2016-03-02 16:37:13 -0600 | [diff] [blame] | 302 | offset = fdt_path_offset(fdt, "/soc/fsl-mc"); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 303 | |
| 304 | if (offset < 0) |
Stuart Yoder | a346615 | 2016-03-02 16:37:13 -0600 | [diff] [blame] | 305 | offset = fdt_path_offset(fdt, "/fsl-mc"); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 306 | |
| 307 | if (offset < 0) { |
| 308 | printf("%s: ERROR: fsl-mc node not found in device tree (error %d)\n", |
| 309 | __func__, offset); |
| 310 | return; |
| 311 | } |
| 312 | |
Mian Yousaf Kaukab | 9712465 | 2018-12-18 14:01:17 +0100 | [diff] [blame] | 313 | if (get_mc_boot_status() == 0 && |
| 314 | (is_lazy_dpl_addr_valid() || get_dpl_apply_status() == 0)) |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 315 | fdt_status_okay(fdt, offset); |
| 316 | else |
| 317 | fdt_status_fail(fdt, offset); |
| 318 | } |
Alexander Graf | 2ebeb44 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 319 | |
| 320 | void board_quiesce_devices(void) |
| 321 | { |
| 322 | fsl_mc_ldpaa_exit(gd->bd); |
| 323 | } |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 324 | #endif |
| 325 | |
| 326 | #ifdef CONFIG_OF_BOARD_SETUP |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 327 | int ft_board_setup(void *blob, struct bd_info *bd) |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 328 | { |
Bhupesh Sharma | 0b10a1a | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 329 | u64 base[CONFIG_NR_DRAM_BANKS]; |
| 330 | u64 size[CONFIG_NR_DRAM_BANKS]; |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 331 | |
| 332 | ft_cpu_setup(blob, bd); |
| 333 | |
Bhupesh Sharma | 0b10a1a | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 334 | /* fixup DT for the two GPP DDR banks */ |
| 335 | base[0] = gd->bd->bi_dram[0].start; |
| 336 | size[0] = gd->bd->bi_dram[0].size; |
| 337 | base[1] = gd->bd->bi_dram[1].start; |
| 338 | size[1] = gd->bd->bi_dram[1].size; |
| 339 | |
York Sun | 4de24ef | 2017-03-06 09:02:28 -0800 | [diff] [blame] | 340 | #ifdef CONFIG_RESV_RAM |
| 341 | /* reduce size if reserved memory is within this bank */ |
| 342 | if (gd->arch.resv_ram >= base[0] && |
| 343 | gd->arch.resv_ram < base[0] + size[0]) |
| 344 | size[0] = gd->arch.resv_ram - base[0]; |
| 345 | else if (gd->arch.resv_ram >= base[1] && |
| 346 | gd->arch.resv_ram < base[1] + size[1]) |
| 347 | size[1] = gd->arch.resv_ram - base[1]; |
| 348 | #endif |
| 349 | |
Bhupesh Sharma | 0b10a1a | 2015-05-28 14:54:10 +0530 | [diff] [blame] | 350 | fdt_fixup_memory_banks(blob, base, size, 2); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 351 | |
Nipun Gupta | d691264 | 2018-08-20 16:01:14 +0530 | [diff] [blame] | 352 | fdt_fsl_mc_fixup_iommu_map_entry(blob); |
| 353 | |
Sriram Dash | 9fd465c | 2016-09-16 17:12:15 +0530 | [diff] [blame] | 354 | fsl_fdt_fixup_dr_usb(blob, bd); |
Sriram Dash | 0182095 | 2016-06-13 09:58:36 +0530 | [diff] [blame] | 355 | |
Santan Kumar | 1afa900 | 2017-05-05 15:42:29 +0530 | [diff] [blame] | 356 | #if defined(CONFIG_FSL_MC_ENET) && !defined(CONFIG_SPL_BUILD) |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 357 | fdt_fixup_board_enet(blob); |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 358 | #endif |
| 359 | |
Laurentiu Tudor | 4adff39 | 2019-10-18 09:01:54 +0000 | [diff] [blame] | 360 | fdt_fixup_icid(blob); |
| 361 | |
York Sun | 0301703 | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 362 | return 0; |
| 363 | } |
| 364 | #endif |
| 365 | |
| 366 | void qixis_dump_switch(void) |
| 367 | { |
| 368 | int i, nr_of_cfgsw; |
| 369 | |
| 370 | QIXIS_WRITE(cms[0], 0x00); |
| 371 | nr_of_cfgsw = QIXIS_READ(cms[1]); |
| 372 | |
| 373 | puts("DIP switch settings dump:\n"); |
| 374 | for (i = 1; i <= nr_of_cfgsw; i++) { |
| 375 | QIXIS_WRITE(cms[0], i); |
| 376 | printf("SW%d = (0x%02x)\n", i, QIXIS_READ(cms[1])); |
| 377 | } |
| 378 | } |