Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 5464898 | 2010-04-20 10:21:12 -0500 | [diff] [blame] | 2 | * Copyright 2008-2010 Freescale Semiconductor, Inc. |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <command.h> |
| 25 | #include <pci.h> |
| 26 | #include <asm/processor.h> |
| 27 | #include <asm/mmu.h> |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 28 | #include <asm/cache.h> |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 29 | #include <asm/immap_85xx.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 30 | #include <asm/fsl_pci.h> |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 31 | #include <asm/fsl_ddr_sdram.h> |
| 32 | #include <asm/io.h> |
Kumar Gala | 5464898 | 2010-04-20 10:21:12 -0500 | [diff] [blame] | 33 | #include <asm/fsl_serdes.h> |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 34 | #include <spd.h> |
| 35 | #include <miiphy.h> |
| 36 | #include <libfdt.h> |
| 37 | #include <spd_sdram.h> |
| 38 | #include <fdt_support.h> |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 39 | #include <tsec.h> |
| 40 | #include <netdev.h> |
Wolfgang Denk | 54a7cc4 | 2009-01-28 09:25:31 +0100 | [diff] [blame] | 41 | #include <sata.h> |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 42 | |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 43 | #include "../common/sgmii_riser.h" |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 44 | |
Andy Fleming | 80522dc | 2008-10-30 16:51:33 -0500 | [diff] [blame] | 45 | int board_early_init_f (void) |
| 46 | { |
| 47 | #ifdef CONFIG_MMC |
| 48 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 49 | |
| 50 | setbits_be32(&gur->pmuxcr, |
| 51 | (MPC85xx_PMUXCR_SD_DATA | |
| 52 | MPC85xx_PMUXCR_SDHC_CD | |
| 53 | MPC85xx_PMUXCR_SDHC_WP)); |
| 54 | |
| 55 | #endif |
| 56 | return 0; |
| 57 | } |
| 58 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 59 | int checkboard (void) |
| 60 | { |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 61 | u8 vboot; |
| 62 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 63 | |
| 64 | puts("Board: MPC8536DS "); |
| 65 | #ifdef CONFIG_PHYS_64BIT |
| 66 | puts("(36-bit addrmap) "); |
| 67 | #endif |
| 68 | |
| 69 | printf ("Sys ID: 0x%02x, " |
| 70 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 71 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 72 | in_8(pixis_base + PIXIS_PVER)); |
| 73 | |
| 74 | vboot = in_8(pixis_base + PIXIS_VBOOT); |
| 75 | switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) { |
| 76 | case PIXIS_VBOOT_LBMAP_NOR0: |
| 77 | puts ("vBank: 0\n"); |
| 78 | break; |
| 79 | case PIXIS_VBOOT_LBMAP_NOR1: |
| 80 | puts ("vBank: 1\n"); |
| 81 | break; |
| 82 | case PIXIS_VBOOT_LBMAP_NOR2: |
| 83 | puts ("vBank: 2\n"); |
| 84 | break; |
| 85 | case PIXIS_VBOOT_LBMAP_NOR3: |
| 86 | puts ("vBank: 3\n"); |
| 87 | break; |
| 88 | case PIXIS_VBOOT_LBMAP_PJET: |
| 89 | puts ("Promjet\n"); |
| 90 | break; |
| 91 | case PIXIS_VBOOT_LBMAP_NAND: |
| 92 | puts ("NAND\n"); |
| 93 | break; |
| 94 | } |
| 95 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 96 | return 0; |
| 97 | } |
| 98 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 99 | #if !defined(CONFIG_SPD_EEPROM) |
| 100 | /* |
| 101 | * Fixed sdram init -- doesn't use serial presence detect. |
| 102 | */ |
| 103 | |
| 104 | phys_size_t fixed_sdram (void) |
| 105 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 106 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 107 | volatile ccsr_ddr_t *ddr= &immap->im_ddr; |
| 108 | uint d_init; |
| 109 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 110 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 111 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 112 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 114 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 115 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 116 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 117 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
| 118 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 119 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 120 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 121 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 122 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 123 | |
| 124 | #if defined (CONFIG_DDR_ECC) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 125 | ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; |
| 126 | ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; |
| 127 | ddr->err_sbe = CONFIG_SYS_DDR_SBE; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 128 | #endif |
| 129 | asm("sync;isync"); |
| 130 | |
| 131 | udelay(500); |
| 132 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 133 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 134 | |
| 135 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 136 | d_init = 1; |
| 137 | debug("DDR - 1st controller: memory initializing\n"); |
| 138 | /* |
| 139 | * Poll until memory is initialized. |
| 140 | * 512 Meg at 400 might hit this 200 times or so. |
| 141 | */ |
| 142 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) { |
| 143 | udelay(1000); |
| 144 | } |
| 145 | debug("DDR: memory initialized\n\n"); |
| 146 | asm("sync; isync"); |
| 147 | udelay(500); |
| 148 | #endif |
| 149 | |
| 150 | return 512 * 1024 * 1024; |
| 151 | } |
| 152 | |
| 153 | #endif |
| 154 | |
| 155 | #ifdef CONFIG_PCI1 |
| 156 | static struct pci_controller pci1_hose; |
| 157 | #endif |
| 158 | |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 159 | #ifdef CONFIG_PCI |
| 160 | void pci_init_board(void) |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 161 | { |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 162 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 163 | struct fsl_pci_info pci_info; |
| 164 | u32 devdisr, pordevsr; |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 165 | u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel; |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 166 | int first_free_busno; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 167 | |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 168 | first_free_busno = fsl_pcie_init_board(0); |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 169 | |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 170 | #ifdef CONFIG_PCI1 |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 171 | devdisr = in_be32(&gur->devdisr); |
| 172 | pordevsr = in_be32(&gur->pordevsr); |
| 173 | porpllsr = in_be32(&gur->porpllsr); |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 174 | |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 175 | pci_speed = 66666000; |
| 176 | pci_32 = 1; |
| 177 | pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; |
| 178 | pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 179 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 180 | if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 181 | SET_STD_PCI_INFO(pci_info, 1); |
| 182 | set_next_law(pci_info.mem_phys, |
| 183 | law_size_bits(pci_info.mem_size), pci_info.law); |
| 184 | set_next_law(pci_info.io_phys, |
| 185 | law_size_bits(pci_info.io_size), pci_info.law); |
| 186 | |
| 187 | pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs); |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 188 | printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n", |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 189 | (pci_32) ? 32 : 64, |
| 190 | (pci_speed == 33333000) ? "33" : |
| 191 | (pci_speed == 66666000) ? "66" : "unknown", |
| 192 | pci_clk_sel ? "sync" : "async", |
| 193 | pci_agent ? "agent" : "host", |
| 194 | pci_arb ? "arbiter" : "external-arbiter", |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 195 | pci_info.regs); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 196 | |
Kumar Gala | 5f7b31b | 2010-12-17 15:14:54 -0600 | [diff] [blame] | 197 | first_free_busno = fsl_pci_init_port(&pci_info, |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 198 | &pci1_hose, first_free_busno); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 199 | } else { |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 200 | printf("PCI: disabled\n"); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 201 | } |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 202 | |
| 203 | puts("\n"); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 204 | #else |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 205 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */ |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 206 | #endif |
| 207 | } |
Mingkai Hu | 8a414c4 | 2009-10-28 10:49:31 +0800 | [diff] [blame] | 208 | #endif |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 209 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 210 | int board_early_init_r(void) |
| 211 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
Kumar Gala | 5fb6ea3 | 2009-11-13 09:25:07 -0600 | [diff] [blame] | 213 | const u8 flash_esel = find_tlb_idx((void *)flashbase, 1); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 214 | |
| 215 | /* |
| 216 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 217 | * so that flash can be erased properly. |
| 218 | */ |
| 219 | |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 220 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
Wolfgang Denk | 3cbd823 | 2008-11-02 16:14:22 +0100 | [diff] [blame] | 221 | flush_dcache(); |
| 222 | invalidate_icache(); |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 223 | |
| 224 | /* invalidate existing TLB entry for flash + promjet */ |
| 225 | disable_tlb(flash_esel); |
| 226 | |
Kumar Gala | c953ddf | 2008-12-02 14:19:34 -0600 | [diff] [blame] | 227 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */ |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 228 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */ |
| 229 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */ |
| 230 | |
| 231 | return 0; |
| 232 | } |
| 233 | |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 234 | int board_eth_init(bd_t *bis) |
| 235 | { |
| 236 | #ifdef CONFIG_TSEC_ENET |
| 237 | struct tsec_info_struct tsec_info[2]; |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 238 | int num = 0; |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 239 | |
| 240 | #ifdef CONFIG_TSEC1 |
| 241 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 242 | if (is_serdes_configured(SGMII_TSEC1)) { |
| 243 | puts("eTSEC1 is in sgmii mode.\n"); |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 244 | tsec_info[num].phyaddr = 0; |
| 245 | tsec_info[num].flags |= TSEC_SGMII; |
| 246 | } |
| 247 | num++; |
| 248 | #endif |
| 249 | #ifdef CONFIG_TSEC3 |
| 250 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 251 | if (is_serdes_configured(SGMII_TSEC3)) { |
| 252 | puts("eTSEC3 is in sgmii mode.\n"); |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 253 | tsec_info[num].phyaddr = 1; |
| 254 | tsec_info[num].flags |= TSEC_SGMII; |
| 255 | } |
| 256 | num++; |
| 257 | #endif |
| 258 | |
| 259 | if (!num) { |
| 260 | printf("No TSECs initialized\n"); |
| 261 | return 0; |
| 262 | } |
| 263 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 264 | #ifdef CONFIG_FSL_SGMII_RISER |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 265 | if (is_serdes_configured(SGMII_TSEC1) || |
| 266 | is_serdes_configured(SGMII_TSEC3)) { |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 267 | fsl_sgmii_riser_init(tsec_info, num); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 268 | } |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 269 | #endif |
Jason Jin | 2e26d83 | 2008-10-10 11:41:00 +0800 | [diff] [blame] | 270 | |
| 271 | tsec_eth_init(bis, tsec_info, num); |
| 272 | #endif |
| 273 | return pci_eth_init(bis); |
| 274 | } |
| 275 | |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 276 | #if defined(CONFIG_OF_BOARD_SETUP) |
Kumar Gala | 2dba0de | 2008-10-21 08:28:33 -0500 | [diff] [blame] | 277 | void ft_board_setup(void *blob, bd_t *bd) |
| 278 | { |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 279 | ft_cpu_setup(blob, bd); |
| 280 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 281 | FT_FSL_PCI_SETUP; |
| 282 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 283 | #ifdef CONFIG_FSL_SGMII_RISER |
| 284 | fsl_sgmii_riser_fdt_fixup(blob); |
| 285 | #endif |
Kumar Gala | 9490a7f | 2008-07-25 13:31:05 -0500 | [diff] [blame] | 286 | } |
| 287 | #endif |