blob: f1709dcd1cd0e1c915fe96e48c660d3952e25fb6 [file] [log] [blame]
Vabhav Sharma51641912019-06-06 12:35:28 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019 NXP
4 */
5
6#include <common.h>
7#include <i2c.h>
8#include <fdt_support.h>
Simon Glass97589732020-05-10 11:40:02 -06009#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Vabhav Sharma51641912019-06-06 12:35:28 +000011#include <asm/io.h>
12#include <asm/arch/clock.h>
13#include <asm/arch/fsl_serdes.h>
14#include <asm/arch/soc.h>
15#include <asm/arch-fsl-layerscape/fsl_icid.h>
16#include <hwconfig.h>
17#include <ahci.h>
18#include <mmc.h>
19#include <scsi.h>
20#include <fm_eth.h>
21#include <fsl_csu.h>
22#include <fsl_esdhc.h>
23#include <fsl_sec.h>
24#include <fsl_dspi.h>
25
26#define LS1046A_PORSR1_REG 0x1EE0000
27#define BOOT_SRC_SD 0x20000000
28#define BOOT_SRC_MASK 0xFF800000
Pramod Kumar43f30ca2019-12-19 10:28:57 +000029#define BOARD_REV_GPIO_SHIFT 17
30#define BOARD_REV_MASK 0x03
Vabhav Sharma51641912019-06-06 12:35:28 +000031#define USB2_SEL_MASK 0x00000100
32
33#define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24) | \
34(((word) & 0x00ff0000) >> 8) | \
35(((word) & 0x0000ff00) << 8) | \
36(((word) & 0x000000ff) << 24))
37#define SPI_MCR_REG 0x2100000
38
39DECLARE_GLOBAL_DATA_PTR;
40
Biwen Lif0018f52020-02-05 22:02:17 +080041int select_i2c_ch_pca9547(u8 ch, int bus_num)
Vabhav Sharma51641912019-06-06 12:35:28 +000042{
43 int ret;
44
Igor Opaniukf7c91762021-02-09 13:52:45 +020045#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Lif0018f52020-02-05 22:02:17 +080046 struct udevice *dev;
47
48 ret = i2c_get_chip_for_busnum(bus_num, I2C_MUX_PCA_ADDR_PRI,
49 1, &dev);
50 if (ret) {
51 printf("%s: Cannot find udev for a bus %d\n", __func__,
52 bus_num);
53 return ret;
54 }
55 ret = dm_i2c_write(dev, 0, &ch, 1);
56#else
Vabhav Sharma51641912019-06-06 12:35:28 +000057 ret = i2c_write(I2C_MUX_PCA_ADDR_PRI, 0, 1, &ch, 1);
Biwen Lif0018f52020-02-05 22:02:17 +080058#endif
Vabhav Sharma51641912019-06-06 12:35:28 +000059 if (ret) {
60 puts("PCA: failed to select proper channel\n");
61 return ret;
62 }
63
64 return 0;
65}
66
67static inline void demux_select_usb2(void)
68{
69 u32 val;
70 struct ccsr_gpio *pgpio = (void *)(GPIO3_BASE_ADDR);
71
72 val = in_be32(&pgpio->gpdir);
73 val |= USB2_SEL_MASK;
74 out_be32(&pgpio->gpdir, val);
75
76 val = in_be32(&pgpio->gpdat);
77 val |= USB2_SEL_MASK;
78 out_be32(&pgpio->gpdat, val);
79}
80
81static inline void set_spi_cs_signal_inactive(void)
82{
83 /* default: all CS signals inactive state is high */
84 uint mcr_val;
85 uint mcr_cfg_val = DSPI_MCR_MSTR | DSPI_MCR_PCSIS_MASK |
86 DSPI_MCR_CRXF | DSPI_MCR_CTXF;
87
88 mcr_val = in_be32(SPI_MCR_REG);
89 mcr_val |= DSPI_MCR_HALT;
90 out_be32(SPI_MCR_REG, mcr_val);
91 out_be32(SPI_MCR_REG, mcr_cfg_val);
92 mcr_val = in_be32(SPI_MCR_REG);
93 mcr_val &= ~DSPI_MCR_HALT;
94 out_be32(SPI_MCR_REG, mcr_val);
95}
96
97int board_early_init_f(void)
98{
99 fsl_lsch2_early_init_f();
100
101 return 0;
102}
103
104static inline uint8_t get_board_version(void)
105{
Vabhav Sharma51641912019-06-06 12:35:28 +0000106 struct ccsr_gpio *pgpio = (void *)(GPIO2_BASE_ADDR);
107
Pramod Kumar43f30ca2019-12-19 10:28:57 +0000108 /* GPIO 13 and GPIO 14 are used for Board Rev */
109 u32 gpio_val = ((in_be32(&pgpio->gpdat) >> BOARD_REV_GPIO_SHIFT))
110 & BOARD_REV_MASK;
111
112 /* GPIOs' are 0..31 in Big Endiness, swap GPIO 13 and GPIO 14 */
113 u8 val = ((gpio_val >> 1) | (gpio_val << 1)) & BOARD_REV_MASK;
Vabhav Sharma51641912019-06-06 12:35:28 +0000114
115 return val;
116}
117
118int checkboard(void)
119{
120 static const char *freq[2] = {"100.00MHZ", "100.00MHZ"};
121 u32 boot_src;
122 u8 rev;
123
124 rev = get_board_version();
125 switch (rev) {
126 case 0x00:
127 puts("Board: LS1046AFRWY, Rev: A, boot from ");
128 break;
129 case 0x01:
130 puts("Board: LS1046AFRWY, Rev: B, boot from ");
131 break;
132 default:
133 puts("Board: LS1046AFRWY, Rev: Unknown, boot from ");
134 break;
135 }
136 boot_src = BYTE_SWAP_32(readl(LS1046A_PORSR1_REG));
137
138 if ((boot_src & BOOT_SRC_MASK) == BOOT_SRC_SD)
139 puts("SD\n");
140 else
141 puts("QSPI\n");
142 printf("SD1_CLK1 = %s, SD1_CLK2 = %s\n", freq[0], freq[1]);
143
144 return 0;
145}
146
147int board_init(void)
148{
Udit Agarwal22ec2382019-11-07 16:11:32 +0000149#ifdef CONFIG_NXP_ESBC
Vabhav Sharma51641912019-06-06 12:35:28 +0000150 /*
151 * In case of Secure Boot, the IBR configures the SMMU
152 * to allow only Secure transactions.
153 * SMMU must be reset in bypass mode.
154 * Set the ClientPD bit and Clear the USFCFG Bit
155 */
156 u32 val;
157val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
158 out_le32(SMMU_SCR0, val);
159 val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK);
160 out_le32(SMMU_NSCR0, val);
161#endif
162
163#ifdef CONFIG_FSL_CAAM
164 sec_init();
165#endif
166
Biwen Lif0018f52020-02-05 22:02:17 +0800167 select_i2c_ch_pca9547(I2C_MUX_CH_DEFAULT, 0);
Vabhav Sharma51641912019-06-06 12:35:28 +0000168 return 0;
169}
170
171int board_setup_core_volt(u32 vdd)
172{
173 return 0;
174}
175
176void config_board_mux(void)
177{
178#ifdef CONFIG_HAS_FSL_XHCI_USB
179 struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
180 u32 usb_pwrfault;
181 /*
182 * USB2 is used, configure mux to USB2_DRVVBUS/USB2_PWRFAULT
183 * USB3 is not used, configure mux to IIC4_SCL/IIC4_SDA
184 */
185 out_be32(&scfg->rcwpmuxcr0, 0x3300);
186#ifdef CONFIG_HAS_FSL_IIC3
187 /* IIC3 is used, configure mux to use IIC3_SCL/IIC3/SDA */
188 out_be32(&scfg->rcwpmuxcr0, 0x0000);
189#endif
190 out_be32(&scfg->usbdrvvbus_selcr, SCFG_USBDRVVBUS_SELCR_USB1);
191 usb_pwrfault = (SCFG_USBPWRFAULT_DEDICATED <<
192 SCFG_USBPWRFAULT_USB3_SHIFT) |
193 (SCFG_USBPWRFAULT_DEDICATED <<
194 SCFG_USBPWRFAULT_USB2_SHIFT) |
195 (SCFG_USBPWRFAULT_SHARED <<
196 SCFG_USBPWRFAULT_USB1_SHIFT);
197 out_be32(&scfg->usbpwrfault_selcr, usb_pwrfault);
198#ifndef CONFIG_HAS_FSL_IIC3
199 /*
200 * LS1046A FRWY board has demultiplexer NX3DV42GU with GPIO3_23 as input
201 * to select I2C3_USB2_SEL_IO
202 * I2C3_USB2_SEL = 0: I2C3_SCL/SDA signals are routed to
203 * I2C3 header (default)
204 * I2C3_USB2_SEL = 1: USB2_DRVVBUS/PWRFAULT signals are routed to
205 * USB2 port
206 * programmed to select USB2 by setting GPIO3_23 output to one
207 */
208 demux_select_usb2();
209#endif
210#endif
211 set_spi_cs_signal_inactive();
212}
213
214#ifdef CONFIG_MISC_INIT_R
215int misc_init_r(void)
216{
217 config_board_mux();
218 return 0;
219}
220#endif
221
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900222int ft_board_setup(void *blob, struct bd_info *bd)
Vabhav Sharma51641912019-06-06 12:35:28 +0000223{
224 u64 base[CONFIG_NR_DRAM_BANKS];
225 u64 size[CONFIG_NR_DRAM_BANKS];
226
227 /* fixup DT for the two DDR banks */
228 base[0] = gd->bd->bi_dram[0].start;
229 size[0] = gd->bd->bi_dram[0].size;
230 base[1] = gd->bd->bi_dram[1].start;
231 size[1] = gd->bd->bi_dram[1].size;
232
233 fdt_fixup_memory_banks(blob, base, size, 2);
234 ft_cpu_setup(blob, bd);
235
236#ifdef CONFIG_SYS_DPAA_FMAN
Madalin Bucurb76b0a62020-04-23 16:25:19 +0300237#ifndef CONFIG_DM_ETH
Vabhav Sharma51641912019-06-06 12:35:28 +0000238 fdt_fixup_fman_ethernet(blob);
239#endif
Madalin Bucurb76b0a62020-04-23 16:25:19 +0300240#endif
Vabhav Sharma51641912019-06-06 12:35:28 +0000241
242 fdt_fixup_icid(blob);
243
244 return 0;
245}