Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2015 Freescale Semiconductor, Inc. |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <i2c.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <asm/arch/clock.h> |
| 10 | #include <asm/arch/fsl_serdes.h> |
| 11 | #include <asm/arch/soc.h> |
Simon Glass | e3ee2fb | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 12 | #include <fdt_support.h> |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 13 | #include <hwconfig.h> |
| 14 | #include <ahci.h> |
Yangbo Lu | da6121b | 2015-10-26 19:47:55 +0800 | [diff] [blame] | 15 | #include <mmc.h> |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 16 | #include <scsi.h> |
Shaohui Xie | 0464326 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 17 | #include <fm_eth.h> |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 18 | #include <fsl_esdhc.h> |
| 19 | #include <fsl_ifc.h> |
Aneesh Bansal | b3e9820 | 2015-12-08 13:54:29 +0530 | [diff] [blame] | 20 | #include <fsl_sec.h> |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 21 | #include "cpld.h" |
Zhao Qiang | 0be9be8 | 2016-02-05 10:04:17 +0800 | [diff] [blame] | 22 | #ifdef CONFIG_U_QE |
| 23 | #include <fsl_qe.h> |
| 24 | #endif |
Hou Zhiqiang | f97e602 | 2016-06-28 20:18:17 +0800 | [diff] [blame] | 25 | #include <asm/arch/ppa.h> |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Sumit Garg | 2a2857b | 2017-03-30 09:52:38 +0530 | [diff] [blame] | 29 | int board_early_init_f(void) |
| 30 | { |
| 31 | fsl_lsch2_early_init_f(); |
| 32 | |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | #ifndef CONFIG_SPL_BUILD |
| 37 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 38 | int checkboard(void) |
| 39 | { |
Qianyu Gong | e54d134 | 2016-04-26 12:51:43 +0800 | [diff] [blame] | 40 | static const char *freq[2] = {"100.00MHZ", "156.25MHZ"}; |
Gong Qianyu | f671f6c | 2015-10-26 19:47:56 +0800 | [diff] [blame] | 41 | #ifndef CONFIG_SD_BOOT |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 42 | u8 cfg_rcw_src1, cfg_rcw_src2; |
Qianyu Gong | e54d134 | 2016-04-26 12:51:43 +0800 | [diff] [blame] | 43 | u16 cfg_rcw_src; |
Gong Qianyu | f671f6c | 2015-10-26 19:47:56 +0800 | [diff] [blame] | 44 | #endif |
Qianyu Gong | e54d134 | 2016-04-26 12:51:43 +0800 | [diff] [blame] | 45 | u8 sd1refclk_sel; |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 46 | |
| 47 | printf("Board: LS1043ARDB, boot from "); |
| 48 | |
Gong Qianyu | f671f6c | 2015-10-26 19:47:56 +0800 | [diff] [blame] | 49 | #ifdef CONFIG_SD_BOOT |
| 50 | puts("SD\n"); |
| 51 | #else |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 52 | cfg_rcw_src1 = CPLD_READ(cfg_rcw_src1); |
| 53 | cfg_rcw_src2 = CPLD_READ(cfg_rcw_src2); |
| 54 | cpld_rev_bit(&cfg_rcw_src1); |
| 55 | cfg_rcw_src = cfg_rcw_src1; |
| 56 | cfg_rcw_src = (cfg_rcw_src << 1) | cfg_rcw_src2; |
| 57 | |
| 58 | if (cfg_rcw_src == 0x25) |
| 59 | printf("vBank %d\n", CPLD_READ(vbank)); |
| 60 | else if (cfg_rcw_src == 0x106) |
| 61 | puts("NAND\n"); |
| 62 | else |
| 63 | printf("Invalid setting of SW4\n"); |
Gong Qianyu | f671f6c | 2015-10-26 19:47:56 +0800 | [diff] [blame] | 64 | #endif |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 65 | |
| 66 | printf("CPLD: V%x.%x\nPCBA: V%x.0\n", CPLD_READ(cpld_ver), |
| 67 | CPLD_READ(cpld_ver_sub), CPLD_READ(pcba_ver)); |
| 68 | |
| 69 | puts("SERDES Reference Clocks:\n"); |
| 70 | sd1refclk_sel = CPLD_READ(sd1refclk_sel); |
| 71 | printf("SD1_CLK1 = %s, SD1_CLK2 = %s\n", freq[sd1refclk_sel], freq[0]); |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 76 | int board_init(void) |
| 77 | { |
Shaohui Xie | 9f4d011 | 2016-04-29 22:07:21 +0800 | [diff] [blame] | 78 | struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR; |
| 79 | |
Hou Zhiqiang | 4b23ca8 | 2016-08-02 19:03:27 +0800 | [diff] [blame] | 80 | #ifdef CONFIG_SYS_FSL_ERRATUM_A010315 |
| 81 | erratum_a010315(); |
| 82 | #endif |
| 83 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 84 | #ifdef CONFIG_FSL_IFC |
| 85 | init_final_memctl_regs(); |
| 86 | #endif |
| 87 | |
Sumit Garg | f469d27 | 2016-09-01 12:56:43 -0400 | [diff] [blame] | 88 | #ifdef CONFIG_SECURE_BOOT |
| 89 | /* In case of Secure Boot, the IBR configures the SMMU |
| 90 | * to allow only Secure transactions. |
| 91 | * SMMU must be reset in bypass mode. |
| 92 | * Set the ClientPD bit and Clear the USFCFG Bit |
| 93 | */ |
| 94 | u32 val; |
| 95 | val = (in_le32(SMMU_SCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK); |
| 96 | out_le32(SMMU_SCR0, val); |
| 97 | val = (in_le32(SMMU_NSCR0) | SCR0_CLIENTPD_MASK) & ~(SCR0_USFCFG_MASK); |
| 98 | out_le32(SMMU_NSCR0, val); |
| 99 | #endif |
| 100 | |
| 101 | #ifdef CONFIG_FSL_CAAM |
| 102 | sec_init(); |
| 103 | #endif |
| 104 | |
Hou Zhiqiang | f97e602 | 2016-06-28 20:18:17 +0800 | [diff] [blame] | 105 | #ifdef CONFIG_FSL_LS_PPA |
| 106 | ppa_init(); |
| 107 | #endif |
| 108 | |
Zhao Qiang | 0be9be8 | 2016-02-05 10:04:17 +0800 | [diff] [blame] | 109 | #ifdef CONFIG_U_QE |
| 110 | u_qe_init(); |
| 111 | #endif |
Shaohui Xie | 9f4d011 | 2016-04-29 22:07:21 +0800 | [diff] [blame] | 112 | /* invert AQR105 IRQ pins polarity */ |
| 113 | out_be32(&scfg->intpcr, AQR105_IRQ_MASK); |
Zhao Qiang | 0be9be8 | 2016-02-05 10:04:17 +0800 | [diff] [blame] | 114 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | int config_board_mux(void) |
| 119 | { |
Zhao Qiang | 085d267 | 2016-02-05 10:04:18 +0800 | [diff] [blame] | 120 | struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR; |
| 121 | u32 usb_pwrfault; |
| 122 | |
Zhao Qiang | 510e792 | 2016-02-05 10:04:19 +0800 | [diff] [blame] | 123 | if (hwconfig("qe-hdlc")) { |
| 124 | out_be32(&scfg->rcwpmuxcr0, |
| 125 | (in_be32(&scfg->rcwpmuxcr0) & ~0xff00) | 0x6600); |
| 126 | printf("Assign to qe-hdlc clk, rcwpmuxcr0=%x\n", |
| 127 | in_be32(&scfg->rcwpmuxcr0)); |
| 128 | } else { |
Zhao Qiang | 085d267 | 2016-02-05 10:04:18 +0800 | [diff] [blame] | 129 | #ifdef CONFIG_HAS_FSL_XHCI_USB |
Zhao Qiang | 510e792 | 2016-02-05 10:04:19 +0800 | [diff] [blame] | 130 | out_be32(&scfg->rcwpmuxcr0, 0x3333); |
| 131 | out_be32(&scfg->usbdrvvbus_selcr, SCFG_USBDRVVBUS_SELCR_USB1); |
| 132 | usb_pwrfault = (SCFG_USBPWRFAULT_DEDICATED << |
| 133 | SCFG_USBPWRFAULT_USB3_SHIFT) | |
| 134 | (SCFG_USBPWRFAULT_DEDICATED << |
| 135 | SCFG_USBPWRFAULT_USB2_SHIFT) | |
| 136 | (SCFG_USBPWRFAULT_SHARED << |
| 137 | SCFG_USBPWRFAULT_USB1_SHIFT); |
| 138 | out_be32(&scfg->usbpwrfault_selcr, usb_pwrfault); |
Zhao Qiang | 085d267 | 2016-02-05 10:04:18 +0800 | [diff] [blame] | 139 | #endif |
Zhao Qiang | 510e792 | 2016-02-05 10:04:19 +0800 | [diff] [blame] | 140 | } |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 141 | return 0; |
| 142 | } |
| 143 | |
| 144 | #if defined(CONFIG_MISC_INIT_R) |
| 145 | int misc_init_r(void) |
| 146 | { |
| 147 | config_board_mux(); |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 148 | return 0; |
| 149 | } |
| 150 | #endif |
| 151 | |
Zhao Qiang | 510e792 | 2016-02-05 10:04:19 +0800 | [diff] [blame] | 152 | void fdt_del_qe(void *blob) |
| 153 | { |
| 154 | int nodeoff = 0; |
| 155 | |
| 156 | while ((nodeoff = fdt_node_offset_by_compatible(blob, 0, |
| 157 | "fsl,qe")) >= 0) { |
| 158 | fdt_del_node(blob, nodeoff); |
| 159 | } |
| 160 | } |
| 161 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 162 | int ft_board_setup(void *blob, bd_t *bd) |
| 163 | { |
Shaohui Xie | f6c8395 | 2015-11-23 15:23:48 +0800 | [diff] [blame] | 164 | u64 base[CONFIG_NR_DRAM_BANKS]; |
| 165 | u64 size[CONFIG_NR_DRAM_BANKS]; |
| 166 | |
| 167 | /* fixup DT for the two DDR banks */ |
| 168 | base[0] = gd->bd->bi_dram[0].start; |
| 169 | size[0] = gd->bd->bi_dram[0].size; |
| 170 | base[1] = gd->bd->bi_dram[1].start; |
| 171 | size[1] = gd->bd->bi_dram[1].size; |
| 172 | |
| 173 | fdt_fixup_memory_banks(blob, base, size, 2); |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 174 | ft_cpu_setup(blob, bd); |
| 175 | |
Shaohui Xie | 0464326 | 2015-10-26 19:47:54 +0800 | [diff] [blame] | 176 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 177 | fdt_fixup_fman_ethernet(blob); |
| 178 | #endif |
Zhao Qiang | 510e792 | 2016-02-05 10:04:19 +0800 | [diff] [blame] | 179 | |
| 180 | /* |
| 181 | * qe-hdlc and usb multi-use the pins, |
| 182 | * when set hwconfig to qe-hdlc, delete usb node. |
| 183 | */ |
| 184 | if (hwconfig("qe-hdlc")) |
| 185 | #ifdef CONFIG_HAS_FSL_XHCI_USB |
| 186 | fdt_del_node_and_alias(blob, "usb1"); |
| 187 | #endif |
| 188 | /* |
| 189 | * qe just support qe-uart and qe-hdlc, |
| 190 | * if qe-uart and qe-hdlc are not set in hwconfig, |
| 191 | * delete qe node. |
| 192 | */ |
| 193 | if (!hwconfig("qe-uart") && !hwconfig("qe-hdlc")) |
| 194 | fdt_del_qe(blob); |
| 195 | |
Mingkai Hu | eee86ff | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | u8 flash_read8(void *addr) |
| 200 | { |
| 201 | return __raw_readb(addr + 1); |
| 202 | } |
| 203 | |
| 204 | void flash_write16(u16 val, void *addr) |
| 205 | { |
| 206 | u16 shftval = (((val >> 8) & 0xff) | ((val << 8) & 0xff00)); |
| 207 | |
| 208 | __raw_writew(shftval, addr); |
| 209 | } |
| 210 | |
| 211 | u16 flash_read16(void *addr) |
| 212 | { |
| 213 | u16 val = __raw_readw(addr); |
| 214 | |
| 215 | return (((val) >> 8) & 0x00ff) | (((val) << 8) & 0xff00); |
| 216 | } |
Sumit Garg | 2a2857b | 2017-03-30 09:52:38 +0530 | [diff] [blame] | 217 | |
| 218 | #endif |