Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 561e710 | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 2 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 3 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -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> |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 12 | #include <asm/cache.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 13 | #include <asm/immap_85xx.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 14 | #include <asm/fsl_pci.h> |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 15 | #include <fsl_ddr_sdram.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -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> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 18 | #include <miiphy.h> |
| 19 | #include <libfdt.h> |
| 20 | #include <fdt_support.h> |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 21 | #include <tsec.h> |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 22 | #include <fsl_mdio.h> |
Kumar Gala | b560ab8 | 2009-08-08 10:42:30 -0500 | [diff] [blame] | 23 | #include <netdev.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 24 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 25 | #include "../common/sgmii_riser.h" |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 26 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 27 | int checkboard (void) |
| 28 | { |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 29 | u8 vboot; |
| 30 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 31 | |
Timur Tabi | 5d065c3 | 2012-03-15 11:42:27 +0000 | [diff] [blame] | 32 | printf("Board: MPC8572DS Sys ID: 0x%02x, " |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 33 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 34 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 35 | in_8(pixis_base + PIXIS_PVER)); |
| 36 | |
| 37 | vboot = in_8(pixis_base + PIXIS_VBOOT); |
| 38 | switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) { |
| 39 | case PIXIS_VBOOT_LBMAP_NOR0: |
| 40 | puts ("vBank: 0\n"); |
| 41 | break; |
| 42 | case PIXIS_VBOOT_LBMAP_PJET: |
| 43 | puts ("Promjet\n"); |
| 44 | break; |
| 45 | case PIXIS_VBOOT_LBMAP_NAND: |
| 46 | puts ("NAND\n"); |
| 47 | break; |
| 48 | case PIXIS_VBOOT_LBMAP_NOR1: |
| 49 | puts ("vBank: 1\n"); |
| 50 | break; |
| 51 | } |
| 52 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 53 | return 0; |
| 54 | } |
| 55 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 56 | |
| 57 | #if !defined(CONFIG_SPD_EEPROM) |
| 58 | /* |
| 59 | * Fixed sdram init -- doesn't use serial presence detect. |
| 60 | */ |
| 61 | |
| 62 | phys_size_t fixed_sdram (void) |
| 63 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
York Sun | 9a17eb5 | 2013-11-18 10:29:32 -0800 | [diff] [blame] | 65 | struct ccsr_ddr __iomem *ddr = &immap->im_ddr; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 66 | uint d_init; |
| 67 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 68 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 69 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 70 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 72 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 73 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 74 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 75 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
| 76 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 77 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 78 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 79 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 80 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 81 | |
| 82 | #if defined (CONFIG_DDR_ECC) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 83 | ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; |
| 84 | ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; |
| 85 | ddr->err_sbe = CONFIG_SYS_DDR_SBE; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 86 | #endif |
| 87 | asm("sync;isync"); |
| 88 | |
| 89 | udelay(500); |
| 90 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 92 | |
| 93 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 94 | d_init = 1; |
| 95 | debug("DDR - 1st controller: memory initializing\n"); |
| 96 | /* |
| 97 | * Poll until memory is initialized. |
| 98 | * 512 Meg at 400 might hit this 200 times or so. |
| 99 | */ |
| 100 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) { |
| 101 | udelay(1000); |
| 102 | } |
| 103 | debug("DDR: memory initialized\n\n"); |
| 104 | asm("sync; isync"); |
| 105 | udelay(500); |
| 106 | #endif |
| 107 | |
| 108 | return 512 * 1024 * 1024; |
| 109 | } |
| 110 | |
| 111 | #endif |
| 112 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 113 | #ifdef CONFIG_PCI |
| 114 | void pci_init_board(void) |
| 115 | { |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 116 | struct pci_controller *hose; |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 117 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 118 | fsl_pcie_init_board(0); |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 119 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 120 | hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR)); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 121 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 122 | if (hose) { |
| 123 | u32 temp32; |
| 124 | u8 uli_busno = hose->first_busno + 2; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 125 | |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 126 | /* |
| 127 | * Activate ULI1575 legacy chip by performing a fake |
| 128 | * memory access. Needed to make ULI RTC work. |
| 129 | * Device 1d has the first on-board memory BAR. |
| 130 | */ |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 131 | pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0), |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 132 | PCI_BASE_ADDRESS_1, &temp32); |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 133 | |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 134 | if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) { |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 135 | void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0), |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 136 | temp32, 4, 0); |
| 137 | debug(" uli1572 read to %p\n", p); |
| 138 | in_be32(p); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 139 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 140 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 141 | } |
| 142 | #endif |
| 143 | |
| 144 | int board_early_init_r(void) |
| 145 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 146 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 147 | int flash_esel = find_tlb_idx((void *)flashbase, 1); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 151 | * so that flash can be erased properly. |
| 152 | */ |
| 153 | |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 154 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
Wolfgang Denk | 3cbd823 | 2008-11-02 16:14:22 +0100 | [diff] [blame] | 155 | flush_dcache(); |
| 156 | invalidate_icache(); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 157 | |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 158 | if (flash_esel == -1) { |
| 159 | /* very unlikely unless something is messed up */ |
| 160 | puts("Error: Could not find TLB for FLASH BASE\n"); |
| 161 | flash_esel = 2; /* give our best effort to continue */ |
| 162 | } else { |
| 163 | /* invalidate existing TLB entry for flash + promjet */ |
| 164 | disable_tlb(flash_esel); |
| 165 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 166 | |
Kumar Gala | c953ddf | 2008-12-02 14:19:34 -0600 | [diff] [blame] | 167 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */ |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 168 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */ |
| 169 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */ |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 174 | #ifdef CONFIG_TSEC_ENET |
| 175 | int board_eth_init(bd_t *bis) |
| 176 | { |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 177 | struct fsl_pq_mdio_info mdio_info; |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 178 | struct tsec_info_struct tsec_info[4]; |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 179 | int num = 0; |
| 180 | |
| 181 | #ifdef CONFIG_TSEC1 |
| 182 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 183 | if (is_serdes_configured(SGMII_TSEC1)) { |
| 184 | puts("eTSEC1 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 185 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 186 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 187 | num++; |
| 188 | #endif |
| 189 | #ifdef CONFIG_TSEC2 |
| 190 | SET_STD_TSEC_INFO(tsec_info[num], 2); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 191 | if (is_serdes_configured(SGMII_TSEC2)) { |
| 192 | puts("eTSEC2 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 193 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 194 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 195 | num++; |
| 196 | #endif |
| 197 | #ifdef CONFIG_TSEC3 |
| 198 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 199 | if (is_serdes_configured(SGMII_TSEC3)) { |
| 200 | puts("eTSEC3 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 201 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 202 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 203 | num++; |
| 204 | #endif |
| 205 | #ifdef CONFIG_TSEC4 |
| 206 | SET_STD_TSEC_INFO(tsec_info[num], 4); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 207 | if (is_serdes_configured(SGMII_TSEC4)) { |
| 208 | puts("eTSEC4 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 209 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 210 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 211 | num++; |
| 212 | #endif |
| 213 | |
| 214 | if (!num) { |
| 215 | printf("No TSECs initialized\n"); |
| 216 | |
| 217 | return 0; |
| 218 | } |
| 219 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 220 | #ifdef CONFIG_FSL_SGMII_RISER |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 221 | fsl_sgmii_riser_init(tsec_info, num); |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 222 | #endif |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 223 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 224 | mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 225 | mdio_info.name = DEFAULT_MII_NAME; |
| 226 | fsl_pq_mdio_init(bis, &mdio_info); |
| 227 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 228 | tsec_eth_init(bis, tsec_info, num); |
| 229 | |
Kumar Gala | b560ab8 | 2009-08-08 10:42:30 -0500 | [diff] [blame] | 230 | return pci_eth_init(bis); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 231 | } |
| 232 | #endif |
| 233 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 234 | #if defined(CONFIG_OF_BOARD_SETUP) |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 235 | int ft_board_setup(void *blob, bd_t *bd) |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 236 | { |
Kumar Gala | b673051 | 2009-02-09 22:03:04 -0600 | [diff] [blame] | 237 | phys_addr_t base; |
| 238 | phys_size_t size; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 239 | |
| 240 | ft_cpu_setup(blob, bd); |
| 241 | |
| 242 | base = getenv_bootm_low(); |
| 243 | size = getenv_bootm_size(); |
| 244 | |
| 245 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 246 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 247 | FT_FSL_PCI_SETUP; |
| 248 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 249 | #ifdef CONFIG_FSL_SGMII_RISER |
| 250 | fsl_sgmii_riser_fdt_fixup(blob); |
| 251 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 252 | |
| 253 | return 0; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 254 | } |
| 255 | #endif |