Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 1 | /* |
ramneek mehresh | 3d7506f | 2012-04-18 19:39:53 +0000 | [diff] [blame] | 2 | * Copyright 2007-2012 Freescale Semiconductor, Inc. |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 3 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
| 9 | #include <pci.h> |
| 10 | #include <asm/processor.h> |
| 11 | #include <asm/mmu.h> |
| 12 | #include <asm/cache.h> |
| 13 | #include <asm/immap_85xx.h> |
| 14 | #include <asm/fsl_pci.h> |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 15 | #include <fsl_ddr_sdram.h> |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 16 | #include <asm/io.h> |
Kumar Gala | 5d27e02 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 17 | #include <asm/fsl_serdes.h> |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 18 | #include <miiphy.h> |
| 19 | #include <libfdt.h> |
| 20 | #include <fdt_support.h> |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 21 | #include <fsl_mdio.h> |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 22 | #include <tsec.h> |
| 23 | #include <asm/fsl_law.h> |
Roy Zang | 29c3518 | 2009-06-30 13:56:23 +0800 | [diff] [blame] | 24 | #include <netdev.h> |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 25 | |
Timur Tabi | 5a46960 | 2010-04-01 10:49:42 -0500 | [diff] [blame] | 26 | #include "../common/ngpixis.h" |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 27 | #include "../common/sgmii_riser.h" |
| 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Jerry Huang | 9c4d876 | 2011-01-24 17:09:53 +0000 | [diff] [blame] | 31 | int board_early_init_f(void) |
| 32 | { |
| 33 | #ifdef CONFIG_MMC |
| 34 | ccsr_gur_t *gur = (ccsr_gur_t *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 35 | |
| 36 | setbits_be32(&gur->pmuxcr, |
| 37 | (MPC85xx_PMUXCR_SDHC_CD | |
| 38 | MPC85xx_PMUXCR_SDHC_WP)); |
| 39 | #endif |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 44 | int checkboard(void) |
| 45 | { |
Timur Tabi | 5a46960 | 2010-04-01 10:49:42 -0500 | [diff] [blame] | 46 | u8 sw; |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 47 | |
Timur Tabi | 5d065c3 | 2012-03-15 11:42:27 +0000 | [diff] [blame] | 48 | printf("Board: P2020DS Sys ID: 0x%02x, " |
| 49 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
Timur Tabi | 5a46960 | 2010-04-01 10:49:42 -0500 | [diff] [blame] | 50 | in_8(&pixis->id), in_8(&pixis->arch), in_8(&pixis->scver)); |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 51 | |
Timur Tabi | 5a46960 | 2010-04-01 10:49:42 -0500 | [diff] [blame] | 52 | sw = in_8(&PIXIS_SW(PIXIS_LBMAP_SWITCH)); |
| 53 | sw = (sw & PIXIS_LBMAP_MASK) >> PIXIS_LBMAP_SHIFT; |
| 54 | |
| 55 | if (sw < 0x8) |
| 56 | /* The lower two bits are the actual vbank number */ |
| 57 | printf("vBank: %d\n", sw & 3); |
| 58 | else |
| 59 | puts("Promjet\n"); |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 60 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | |
york | 394c46c | 2010-07-02 22:25:58 +0000 | [diff] [blame] | 64 | #if !defined(CONFIG_DDR_SPD) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 65 | /* |
| 66 | * Fixed sdram init -- doesn't use serial presence detect. |
| 67 | */ |
| 68 | |
| 69 | phys_size_t fixed_sdram(void) |
| 70 | { |
York Sun | 9a17eb5 | 2013-11-18 10:29:32 -0800 | [diff] [blame] | 71 | struct ccsr_ddr __iomem *ddr = |
| 72 | (struct ccsr_ddr __iomem *)CONFIG_SYS_FSL_DDR_ADDR; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 73 | uint d_init; |
| 74 | |
| 75 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
| 76 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 77 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 78 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
| 79 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 80 | ddr->sdram_md_cntl = CONFIG_SYS_DDR_MODE_CTRL; |
| 81 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 82 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 83 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 84 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
| 85 | ddr->ddr_zq_cntl = CONFIG_SYS_DDR_ZQ_CNTL; |
| 86 | ddr->ddr_wrlvl_cntl = CONFIG_SYS_DDR_WRLVL_CNTL; |
| 87 | ddr->ddr_cdr1 = CONFIG_SYS_DDR_CDR1; |
| 88 | ddr->timing_cfg_4 = CONFIG_SYS_DDR_TIMING_4; |
| 89 | ddr->timing_cfg_5 = CONFIG_SYS_DDR_TIMING_5; |
| 90 | |
| 91 | if (!strcmp("performance", getenv("perf_mode"))) { |
| 92 | /* Performance Mode Values */ |
| 93 | |
| 94 | ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG_PERF; |
| 95 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS_PERF; |
| 96 | ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS_PERF; |
| 97 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1_PERF; |
| 98 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2_PERF; |
| 99 | |
| 100 | asm("sync;isync"); |
| 101 | |
| 102 | udelay(500); |
| 103 | |
| 104 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL_PERF; |
| 105 | } else { |
| 106 | /* Stable Mode Values */ |
| 107 | |
| 108 | ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG; |
| 109 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 110 | ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS; |
| 111 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 112 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 113 | |
| 114 | /* ECC will be assumed in stable mode */ |
| 115 | ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; |
| 116 | ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; |
| 117 | ddr->err_sbe = CONFIG_SYS_DDR_SBE; |
| 118 | |
| 119 | asm("sync;isync"); |
| 120 | |
| 121 | udelay(500); |
| 122 | |
| 123 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
| 124 | } |
| 125 | |
| 126 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 127 | d_init = 1; |
| 128 | debug("DDR - 1st controller: memory initializing\n"); |
| 129 | /* |
| 130 | * Poll until memory is initialized. |
| 131 | * 512 Meg at 400 might hit this 200 times or so. |
| 132 | */ |
| 133 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) |
| 134 | udelay(1000); |
| 135 | debug("DDR: memory initialized\n\n"); |
| 136 | asm("sync; isync"); |
| 137 | udelay(500); |
| 138 | #endif |
| 139 | |
Becky Bruce | 38dba0c | 2010-12-17 17:17:56 -0600 | [diff] [blame] | 140 | if (set_ddr_laws(CONFIG_SYS_DDR_SDRAM_BASE, |
| 141 | CONFIG_SYS_SDRAM_SIZE * 1024 * 1024, |
| 142 | LAW_TRGT_IF_DDR) < 0) { |
| 143 | printf("ERROR setting Local Access Windows for DDR\n"); |
| 144 | return 0; |
| 145 | }; |
| 146 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 147 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
| 148 | } |
| 149 | |
| 150 | #endif |
| 151 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 152 | #ifdef CONFIG_PCI |
| 153 | void pci_init_board(void) |
| 154 | { |
Kumar Gala | 4d5723d | 2010-12-17 07:01:00 -0600 | [diff] [blame] | 155 | fsl_pcie_init_board(0); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 156 | } |
| 157 | #endif |
| 158 | |
| 159 | int board_early_init_r(void) |
| 160 | { |
| 161 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
Kumar Gala | 5fb6ea3 | 2009-11-13 09:25:07 -0600 | [diff] [blame] | 162 | const u8 flash_esel = find_tlb_idx((void *)flashbase, 1); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 163 | |
| 164 | /* |
| 165 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 166 | * so that flash can be erased properly. |
| 167 | */ |
| 168 | |
| 169 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 170 | flush_dcache(); |
| 171 | invalidate_icache(); |
| 172 | |
| 173 | /* invalidate existing TLB entry for flash + promjet */ |
| 174 | disable_tlb(flash_esel); |
| 175 | |
| 176 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, |
| 177 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 178 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); |
| 179 | |
| 180 | return 0; |
| 181 | } |
| 182 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 183 | #ifdef CONFIG_TSEC_ENET |
| 184 | int board_eth_init(bd_t *bis) |
| 185 | { |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 186 | struct fsl_pq_mdio_info mdio_info; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 187 | struct tsec_info_struct tsec_info[4]; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 188 | int num = 0; |
| 189 | |
| 190 | #ifdef CONFIG_TSEC1 |
| 191 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
| 192 | num++; |
| 193 | #endif |
| 194 | #ifdef CONFIG_TSEC2 |
| 195 | SET_STD_TSEC_INFO(tsec_info[num], 2); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 196 | if (is_serdes_configured(SGMII_TSEC2)) { |
| 197 | puts("eTSEC2 is in sgmii mode.\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 198 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 199 | } |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 200 | num++; |
| 201 | #endif |
| 202 | #ifdef CONFIG_TSEC3 |
| 203 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 204 | if (is_serdes_configured(SGMII_TSEC3)) { |
| 205 | puts("eTSEC3 is in sgmii mode.\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 206 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 207 | } |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 208 | num++; |
| 209 | #endif |
| 210 | |
| 211 | if (!num) { |
| 212 | printf("No TSECs initialized\n"); |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | #ifdef CONFIG_FSL_SGMII_RISER |
| 218 | fsl_sgmii_riser_init(tsec_info, num); |
| 219 | #endif |
| 220 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 221 | mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 222 | mdio_info.name = DEFAULT_MII_NAME; |
| 223 | |
| 224 | fsl_pq_mdio_init(bis, &mdio_info); |
| 225 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 226 | tsec_eth_init(bis, tsec_info, num); |
| 227 | |
Roy Zang | 29c3518 | 2009-06-30 13:56:23 +0800 | [diff] [blame] | 228 | return pci_eth_init(bis); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 229 | } |
| 230 | #endif |
| 231 | |
| 232 | #if defined(CONFIG_OF_BOARD_SETUP) |
| 233 | void ft_board_setup(void *blob, bd_t *bd) |
| 234 | { |
| 235 | phys_addr_t base; |
| 236 | phys_size_t size; |
| 237 | |
| 238 | ft_cpu_setup(blob, bd); |
| 239 | |
| 240 | base = getenv_bootm_low(); |
| 241 | size = getenv_bootm_size(); |
| 242 | |
| 243 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 244 | |
ramneek mehresh | 3d7506f | 2012-04-18 19:39:53 +0000 | [diff] [blame] | 245 | #ifdef CONFIG_HAS_FSL_DR_USB |
| 246 | fdt_fixup_dr_usb(blob, bd); |
| 247 | #endif |
| 248 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 249 | FT_FSL_PCI_SETUP; |
| 250 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 251 | #ifdef CONFIG_FSL_SGMII_RISER |
| 252 | fsl_sgmii_riser_fdt_fixup(blob); |
| 253 | #endif |
| 254 | } |
| 255 | #endif |