1 // SPDX-License-Identifier: GPL-2.0+
8 #include <fdt_support.h>
10 #include <asm/arch/clock.h>
11 #include <asm/arch/fsl_serdes.h>
12 #include <asm/arch/soc.h>
13 #include <asm/arch-fsl-layerscape/fsl_icid.h>
20 #include <fsl_esdhc.h>
24 #define LS1046A_PORSR1_REG 0x1EE0000
25 #define BOOT_SRC_SD 0x20000000
26 #define BOOT_SRC_MASK 0xFF800000
27 #define BOARD_REV_GPIO 13
28 #define USB2_SEL_MASK 0x00000100
30 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24) | \
31 (((word) & 0x00ff0000) >> 8) | \
32 (((word) & 0x0000ff00) << 8) | \
33 (((word) & 0x000000ff) << 24))
34 #define SPI_MCR_REG 0x2100000
36 DECLARE_GLOBAL_DATA_PTR;
38 int select_i2c_ch_pca9547(u8 ch)
42 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
44 puts("PCA: failed to select proper channel\n");
51 static inline void demux_select_usb2(void)
54 struct ccsr_gpio *pgpio = (void *)(GPIO3_BASE_ADDR);
56 val = in_be32(&pgpio->gpdir);
58 out_be32(&pgpio->gpdir, val);
60 val = in_be32(&pgpio->gpdat);
62 out_be32(&pgpio->gpdat, val);
65 static inline void set_spi_cs_signal_inactive(void)
67 /* default: all CS signals inactive state is high */
69 uint mcr_cfg_val = DSPI_MCR_MSTR | DSPI_MCR_PCSIS_MASK |
70 DSPI_MCR_CRXF | DSPI_MCR_CTXF;
72 mcr_val = in_be32(SPI_MCR_REG);
73 mcr_val |= DSPI_MCR_HALT;
74 out_be32(SPI_MCR_REG, mcr_val);
75 out_be32(SPI_MCR_REG, mcr_cfg_val);
76 mcr_val = in_be32(SPI_MCR_REG);
77 mcr_val &= ~DSPI_MCR_HALT;
78 out_be32(SPI_MCR_REG, mcr_val);
81 int board_early_init_f(void)
83 fsl_lsch2_early_init_f();
88 static inline uint8_t get_board_version(void)
91 struct ccsr_gpio *pgpio = (void *)(GPIO2_BASE_ADDR);
93 val = (in_le32(&pgpio->gpdat) >> BOARD_REV_GPIO) & 0x03;
100 static const char *freq[2] = {"100.00MHZ", "100.00MHZ"};
104 rev = get_board_version();
107 puts("Board: LS1046AFRWY, Rev: A, boot from ");
110 puts("Board: LS1046AFRWY, Rev: B, boot from ");
113 puts("Board: LS1046AFRWY, Rev: Unknown, boot from ");
116 boot_src = BYTE_SWAP_32(readl(LS1046A_PORSR1_REG));
118 if ((boot_src & BOOT_SRC_MASK) == BOOT_SRC_SD)
122 printf("SD1_CLK1 = %s, SD1_CLK2 = %s\n", freq[0], freq[1]);
129 #ifdef CONFIG_SECURE_BOOT
131 * In case of Secure Boot, the IBR configures the SMMU
132 * to allow only Secure transactions.
133 * SMMU must be reset in bypass mode.
134 * Set the ClientPD bit and Clear the USFCFG Bit
137 val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
138 out_le32(SMMU_SCR0, val);
139 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
140 out_le32(SMMU_NSCR0, val);
143 #ifdef CONFIG_FSL_CAAM
147 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT);
151 int board_setup_core_volt(u32 vdd)
156 void config_board_mux(void)
158 #ifdef CONFIG_HAS_FSL_XHCI_USB
159 struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
162 * USB2 is used, configure mux to USB2_DRVVBUS/USB2_PWRFAULT
163 * USB3 is not used, configure mux to IIC4_SCL/IIC4_SDA
165 out_be32(&scfg->rcwpmuxcr0, 0x3300);
166 #ifdef CONFIG_HAS_FSL_IIC3
167 /* IIC3 is used, configure mux to use IIC3_SCL/IIC3/SDA */
168 out_be32(&scfg->rcwpmuxcr0, 0x0000);
170 out_be32(&scfg->usbdrvvbus_selcr, SCFG_USBDRVVBUS_SELCR_USB1);
171 usb_pwrfault = (SCFG_USBPWRFAULT_DEDICATED <<
172 SCFG_USBPWRFAULT_USB3_SHIFT) |
173 (SCFG_USBPWRFAULT_DEDICATED <<
174 SCFG_USBPWRFAULT_USB2_SHIFT) |
175 (SCFG_USBPWRFAULT_SHARED <<
176 SCFG_USBPWRFAULT_USB1_SHIFT);
177 out_be32(&scfg->usbpwrfault_selcr, usb_pwrfault);
178 #ifndef CONFIG_HAS_FSL_IIC3
180 * LS1046A FRWY board has demultiplexer NX3DV42GU with GPIO3_23 as input
181 * to select I2C3_USB2_SEL_IO
182 * I2C3_USB2_SEL = 0: I2C3_SCL/SDA signals are routed to
183 * I2C3 header (default)
184 * I2C3_USB2_SEL = 1: USB2_DRVVBUS/PWRFAULT signals are routed to
186 * programmed to select USB2 by setting GPIO3_23 output to one
191 set_spi_cs_signal_inactive();
194 #ifdef CONFIG_MISC_INIT_R
195 int misc_init_r(void)
202 int ft_board_setup(void *blob, bd_t *bd)
204 u64 base[CONFIG_NR_DRAM_BANKS];
205 u64 size[CONFIG_NR_DRAM_BANKS];
207 /* fixup DT for the two DDR banks */
208 base[0] = gd->bd->bi_dram[0].start;
209 size[0] = gd->bd->bi_dram[0].size;
210 base[1] = gd->bd->bi_dram[1].start;
211 size[1] = gd->bd->bi_dram[1].size;
213 fdt_fixup_memory_banks(blob, base, size, 2);
214 ft_cpu_setup(blob, bd);
216 #ifdef CONFIG_SYS_DPAA_FMAN
217 fdt_fixup_fman_ethernet(blob);
220 fdt_fixup_icid(blob);