19490a7f1SKumar Gala /* 29490a7f1SKumar Gala * Copyright 2008 Freescale Semiconductor. 39490a7f1SKumar Gala * 49490a7f1SKumar Gala * See file CREDITS for list of people who contributed to this 59490a7f1SKumar Gala * project. 69490a7f1SKumar Gala * 79490a7f1SKumar Gala * This program is free software; you can redistribute it and/or 89490a7f1SKumar Gala * modify it under the terms of the GNU General Public License as 99490a7f1SKumar Gala * published by the Free Software Foundation; either version 2 of 109490a7f1SKumar Gala * the License, or (at your option) any later version. 119490a7f1SKumar Gala * 129490a7f1SKumar Gala * This program is distributed in the hope that it will be useful, 139490a7f1SKumar Gala * but WITHOUT ANY WARRANTY; without even the implied warranty of 149490a7f1SKumar Gala * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 159490a7f1SKumar Gala * GNU General Public License for more details. 169490a7f1SKumar Gala * 179490a7f1SKumar Gala * You should have received a copy of the GNU General Public License 189490a7f1SKumar Gala * along with this program; if not, write to the Free Software 199490a7f1SKumar Gala * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 209490a7f1SKumar Gala * MA 02111-1307 USA 219490a7f1SKumar Gala */ 229490a7f1SKumar Gala 239490a7f1SKumar Gala #include <common.h> 249490a7f1SKumar Gala #include <command.h> 259490a7f1SKumar Gala #include <pci.h> 269490a7f1SKumar Gala #include <asm/processor.h> 279490a7f1SKumar Gala #include <asm/mmu.h> 287c0d4a75SKumar Gala #include <asm/cache.h> 299490a7f1SKumar Gala #include <asm/immap_85xx.h> 30c8514622SKumar Gala #include <asm/fsl_pci.h> 319490a7f1SKumar Gala #include <asm/fsl_ddr_sdram.h> 329490a7f1SKumar Gala #include <asm/io.h> 339490a7f1SKumar Gala #include <spd.h> 349490a7f1SKumar Gala #include <miiphy.h> 359490a7f1SKumar Gala #include <libfdt.h> 369490a7f1SKumar Gala #include <spd_sdram.h> 379490a7f1SKumar Gala #include <fdt_support.h> 382e26d837SJason Jin #include <tsec.h> 392e26d837SJason Jin #include <netdev.h> 4054a7cc49SWolfgang Denk #include <sata.h> 419490a7f1SKumar Gala 429490a7f1SKumar Gala #include "../common/pixis.h" 432e26d837SJason Jin #include "../common/sgmii_riser.h" 449490a7f1SKumar Gala 459490a7f1SKumar Gala phys_size_t fixed_sdram(void); 469490a7f1SKumar Gala 4780522dc8SAndy Fleming int board_early_init_f (void) 4880522dc8SAndy Fleming { 4980522dc8SAndy Fleming #ifdef CONFIG_MMC 5080522dc8SAndy Fleming volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 5180522dc8SAndy Fleming 5280522dc8SAndy Fleming setbits_be32(&gur->pmuxcr, 5380522dc8SAndy Fleming (MPC85xx_PMUXCR_SD_DATA | 5480522dc8SAndy Fleming MPC85xx_PMUXCR_SDHC_CD | 5580522dc8SAndy Fleming MPC85xx_PMUXCR_SDHC_WP)); 5680522dc8SAndy Fleming 5780522dc8SAndy Fleming #endif 5880522dc8SAndy Fleming return 0; 5980522dc8SAndy Fleming } 6080522dc8SAndy Fleming 619490a7f1SKumar Gala int checkboard (void) 629490a7f1SKumar Gala { 636bb5b412SKumar Gala u8 vboot; 646bb5b412SKumar Gala u8 *pixis_base = (u8 *)PIXIS_BASE; 656bb5b412SKumar Gala 666bb5b412SKumar Gala puts("Board: MPC8536DS "); 676bb5b412SKumar Gala #ifdef CONFIG_PHYS_64BIT 686bb5b412SKumar Gala puts("(36-bit addrmap) "); 696bb5b412SKumar Gala #endif 706bb5b412SKumar Gala 716bb5b412SKumar Gala printf ("Sys ID: 0x%02x, " 726bb5b412SKumar Gala "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", 736bb5b412SKumar Gala in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), 746bb5b412SKumar Gala in_8(pixis_base + PIXIS_PVER)); 756bb5b412SKumar Gala 766bb5b412SKumar Gala vboot = in_8(pixis_base + PIXIS_VBOOT); 776bb5b412SKumar Gala switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) { 786bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_NOR0: 796bb5b412SKumar Gala puts ("vBank: 0\n"); 806bb5b412SKumar Gala break; 816bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_NOR1: 826bb5b412SKumar Gala puts ("vBank: 1\n"); 836bb5b412SKumar Gala break; 846bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_NOR2: 856bb5b412SKumar Gala puts ("vBank: 2\n"); 866bb5b412SKumar Gala break; 876bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_NOR3: 886bb5b412SKumar Gala puts ("vBank: 3\n"); 896bb5b412SKumar Gala break; 906bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_PJET: 916bb5b412SKumar Gala puts ("Promjet\n"); 926bb5b412SKumar Gala break; 936bb5b412SKumar Gala case PIXIS_VBOOT_LBMAP_NAND: 946bb5b412SKumar Gala puts ("NAND\n"); 956bb5b412SKumar Gala break; 966bb5b412SKumar Gala } 976bb5b412SKumar Gala 989490a7f1SKumar Gala return 0; 999490a7f1SKumar Gala } 1009490a7f1SKumar Gala 1019490a7f1SKumar Gala phys_size_t 1029490a7f1SKumar Gala initdram(int board_type) 1039490a7f1SKumar Gala { 1049490a7f1SKumar Gala phys_size_t dram_size = 0; 1059490a7f1SKumar Gala 1069490a7f1SKumar Gala puts("Initializing...."); 1079490a7f1SKumar Gala 1089490a7f1SKumar Gala #ifdef CONFIG_SPD_EEPROM 1099490a7f1SKumar Gala dram_size = fsl_ddr_sdram(); 1109490a7f1SKumar Gala #else 1119490a7f1SKumar Gala dram_size = fixed_sdram(); 1129490a7f1SKumar Gala #endif 113e57f0fa1SDave Liu dram_size = setup_ddr_tlbs(dram_size / 0x100000); 114e57f0fa1SDave Liu dram_size *= 0x100000; 1159490a7f1SKumar Gala 1169490a7f1SKumar Gala puts(" DDR: "); 1179490a7f1SKumar Gala return dram_size; 1189490a7f1SKumar Gala } 1199490a7f1SKumar Gala 1209490a7f1SKumar Gala #if !defined(CONFIG_SPD_EEPROM) 1219490a7f1SKumar Gala /* 1229490a7f1SKumar Gala * Fixed sdram init -- doesn't use serial presence detect. 1239490a7f1SKumar Gala */ 1249490a7f1SKumar Gala 1259490a7f1SKumar Gala phys_size_t fixed_sdram (void) 1269490a7f1SKumar Gala { 1276d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; 1289490a7f1SKumar Gala volatile ccsr_ddr_t *ddr= &immap->im_ddr; 1299490a7f1SKumar Gala uint d_init; 1309490a7f1SKumar Gala 1316d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; 1326d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; 1339490a7f1SKumar Gala 1346d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; 1356d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; 1366d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; 1376d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; 1386d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; 1396d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; 1406d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; 1416d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; 1426d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; 1436d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; 1449490a7f1SKumar Gala 1459490a7f1SKumar Gala #if defined (CONFIG_DDR_ECC) 1466d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; 1476d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; 1486d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->err_sbe = CONFIG_SYS_DDR_SBE; 1499490a7f1SKumar Gala #endif 1509490a7f1SKumar Gala asm("sync;isync"); 1519490a7f1SKumar Gala 1529490a7f1SKumar Gala udelay(500); 1539490a7f1SKumar Gala 1546d0f6bcfSJean-Christophe PLAGNIOL-VILLARD ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; 1559490a7f1SKumar Gala 1569490a7f1SKumar Gala #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) 1579490a7f1SKumar Gala d_init = 1; 1589490a7f1SKumar Gala debug("DDR - 1st controller: memory initializing\n"); 1599490a7f1SKumar Gala /* 1609490a7f1SKumar Gala * Poll until memory is initialized. 1619490a7f1SKumar Gala * 512 Meg at 400 might hit this 200 times or so. 1629490a7f1SKumar Gala */ 1639490a7f1SKumar Gala while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) { 1649490a7f1SKumar Gala udelay(1000); 1659490a7f1SKumar Gala } 1669490a7f1SKumar Gala debug("DDR: memory initialized\n\n"); 1679490a7f1SKumar Gala asm("sync; isync"); 1689490a7f1SKumar Gala udelay(500); 1699490a7f1SKumar Gala #endif 1709490a7f1SKumar Gala 1719490a7f1SKumar Gala return 512 * 1024 * 1024; 1729490a7f1SKumar Gala } 1739490a7f1SKumar Gala 1749490a7f1SKumar Gala #endif 1759490a7f1SKumar Gala 1769490a7f1SKumar Gala #ifdef CONFIG_PCI1 1779490a7f1SKumar Gala static struct pci_controller pci1_hose; 1789490a7f1SKumar Gala #endif 1799490a7f1SKumar Gala 1809490a7f1SKumar Gala #ifdef CONFIG_PCIE1 1819490a7f1SKumar Gala static struct pci_controller pcie1_hose; 1829490a7f1SKumar Gala #endif 1839490a7f1SKumar Gala 1849490a7f1SKumar Gala #ifdef CONFIG_PCIE2 1859490a7f1SKumar Gala static struct pci_controller pcie2_hose; 1869490a7f1SKumar Gala #endif 1879490a7f1SKumar Gala 1889490a7f1SKumar Gala #ifdef CONFIG_PCIE3 1899490a7f1SKumar Gala static struct pci_controller pcie3_hose; 1909490a7f1SKumar Gala #endif 1919490a7f1SKumar Gala 1929490a7f1SKumar Gala int first_free_busno=0; 1939490a7f1SKumar Gala 1949490a7f1SKumar Gala void 1959490a7f1SKumar Gala pci_init_board(void) 1969490a7f1SKumar Gala { 1976d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 1989490a7f1SKumar Gala uint devdisr = gur->devdisr; 1999490a7f1SKumar Gala uint sdrs2_io_sel = 2009490a7f1SKumar Gala (gur->pordevsr & MPC85xx_PORDEVSR_SRDS2_IO_SEL) >> 27; 2019490a7f1SKumar Gala uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; 2029490a7f1SKumar Gala uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16; 2039490a7f1SKumar Gala 2049490a7f1SKumar Gala debug(" pci_init_board: devdisr=%x, sdrs2_io_sel=%x, io_sel=%x,\ 2059490a7f1SKumar Gala host_agent=%x\n", devdisr, sdrs2_io_sel, io_sel, host_agent); 2069490a7f1SKumar Gala 2079490a7f1SKumar Gala if (sdrs2_io_sel == 7) 2089490a7f1SKumar Gala printf(" Serdes2 disalbed\n"); 2099490a7f1SKumar Gala else if (sdrs2_io_sel == 4) { 2109490a7f1SKumar Gala printf(" eTSEC1 is in sgmii mode.\n"); 2119490a7f1SKumar Gala printf(" eTSEC3 is in sgmii mode.\n"); 2129490a7f1SKumar Gala } else if (sdrs2_io_sel == 6) 2139490a7f1SKumar Gala printf(" eTSEC1 is in sgmii mode.\n"); 2149490a7f1SKumar Gala 2159490a7f1SKumar Gala #ifdef CONFIG_PCIE3 2169490a7f1SKumar Gala { 2176d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR; 2189490a7f1SKumar Gala struct pci_controller *hose = &pcie3_hose; 2199490a7f1SKumar Gala int pcie_ep = (host_agent == 1); 2209490a7f1SKumar Gala int pcie_configured = (io_sel == 7); 2212dba0deaSKumar Gala struct pci_region *r = hose->regions; 2229490a7f1SKumar Gala 2239490a7f1SKumar Gala if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){ 2249490a7f1SKumar Gala printf ("\n PCIE3 connected to Slot3 as %s (base address %x)", 2259490a7f1SKumar Gala pcie_ep ? "End Point" : "Root Complex", 2269490a7f1SKumar Gala (uint)pci); 2279490a7f1SKumar Gala if (pci->pme_msg_det) { 2289490a7f1SKumar Gala pci->pme_msg_det = 0xffffffff; 2299490a7f1SKumar Gala debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det); 2309490a7f1SKumar Gala } 2319490a7f1SKumar Gala printf ("\n"); 2329490a7f1SKumar Gala 2339490a7f1SKumar Gala /* inbound */ 2342dba0deaSKumar Gala r += fsl_pci_setup_inbound_windows(r); 2359490a7f1SKumar Gala 2369490a7f1SKumar Gala /* outbound memory */ 2372dba0deaSKumar Gala pci_set_region(r++, 23810795f42SKumar Gala CONFIG_SYS_PCIE3_MEM_BUS, 2396d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE3_MEM_PHYS, 2406d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE3_MEM_SIZE, 2419490a7f1SKumar Gala PCI_REGION_MEM); 2429490a7f1SKumar Gala 2439490a7f1SKumar Gala /* outbound io */ 2442dba0deaSKumar Gala pci_set_region(r++, 2455f91ef6aSKumar Gala CONFIG_SYS_PCIE3_IO_BUS, 2466d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE3_IO_PHYS, 2476d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE3_IO_SIZE, 2489490a7f1SKumar Gala PCI_REGION_IO); 2499490a7f1SKumar Gala 2502dba0deaSKumar Gala hose->region_count = r - hose->regions; 2519490a7f1SKumar Gala 2529490a7f1SKumar Gala hose->first_busno=first_free_busno; 2539490a7f1SKumar Gala pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); 2549490a7f1SKumar Gala 2559490a7f1SKumar Gala fsl_pci_init(hose); 2569490a7f1SKumar Gala 2579490a7f1SKumar Gala first_free_busno=hose->last_busno+1; 2589490a7f1SKumar Gala printf (" PCIE3 on bus %02x - %02x\n", 2599490a7f1SKumar Gala hose->first_busno,hose->last_busno); 2609490a7f1SKumar Gala } else { 2619490a7f1SKumar Gala printf (" PCIE3: disabled\n"); 2629490a7f1SKumar Gala } 2639490a7f1SKumar Gala 2649490a7f1SKumar Gala } 2659490a7f1SKumar Gala #else 2669490a7f1SKumar Gala gur->devdisr |= MPC85xx_DEVDISR_PCIE3; /* disable */ 2679490a7f1SKumar Gala #endif 2689490a7f1SKumar Gala 2699490a7f1SKumar Gala #ifdef CONFIG_PCIE1 2709490a7f1SKumar Gala { 2716d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR; 2729490a7f1SKumar Gala struct pci_controller *hose = &pcie1_hose; 2739490a7f1SKumar Gala int pcie_ep = (host_agent == 5); 2749490a7f1SKumar Gala int pcie_configured = (io_sel == 2 || io_sel == 3 2759490a7f1SKumar Gala || io_sel == 5 || io_sel == 7); 2762dba0deaSKumar Gala struct pci_region *r = hose->regions; 2779490a7f1SKumar Gala 2789490a7f1SKumar Gala if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){ 2799490a7f1SKumar Gala printf ("\n PCIE1 connected to Slot1 as %s (base address %x)", 2809490a7f1SKumar Gala pcie_ep ? "End Point" : "Root Complex", 2819490a7f1SKumar Gala (uint)pci); 2829490a7f1SKumar Gala if (pci->pme_msg_det) { 2839490a7f1SKumar Gala pci->pme_msg_det = 0xffffffff; 2849490a7f1SKumar Gala debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det); 2859490a7f1SKumar Gala } 2869490a7f1SKumar Gala printf ("\n"); 2879490a7f1SKumar Gala 2889490a7f1SKumar Gala /* inbound */ 2892dba0deaSKumar Gala r += fsl_pci_setup_inbound_windows(r); 2909490a7f1SKumar Gala 2919490a7f1SKumar Gala /* outbound memory */ 2922dba0deaSKumar Gala pci_set_region(r++, 29310795f42SKumar Gala CONFIG_SYS_PCIE1_MEM_BUS, 2946d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_MEM_PHYS, 2956d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_MEM_SIZE, 2969490a7f1SKumar Gala PCI_REGION_MEM); 2979490a7f1SKumar Gala 2989490a7f1SKumar Gala /* outbound io */ 2992dba0deaSKumar Gala pci_set_region(r++, 3005f91ef6aSKumar Gala CONFIG_SYS_PCIE1_IO_BUS, 3016d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_IO_PHYS, 3026d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_IO_SIZE, 3039490a7f1SKumar Gala PCI_REGION_IO); 3049490a7f1SKumar Gala 30510795f42SKumar Gala #ifdef CONFIG_SYS_PCIE1_MEM_BUS2 3069490a7f1SKumar Gala /* outbound memory */ 3072dba0deaSKumar Gala pci_set_region(r++, 30810795f42SKumar Gala CONFIG_SYS_PCIE1_MEM_BUS2, 3096d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_MEM_PHYS2, 3106d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE1_MEM_SIZE2, 3119490a7f1SKumar Gala PCI_REGION_MEM); 3129490a7f1SKumar Gala #endif 3132dba0deaSKumar Gala hose->region_count = r - hose->regions; 3149490a7f1SKumar Gala hose->first_busno=first_free_busno; 3159490a7f1SKumar Gala 3169490a7f1SKumar Gala pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); 3179490a7f1SKumar Gala 3189490a7f1SKumar Gala fsl_pci_init(hose); 3199490a7f1SKumar Gala 3209490a7f1SKumar Gala first_free_busno=hose->last_busno+1; 3219490a7f1SKumar Gala printf(" PCIE1 on bus %02x - %02x\n", 3229490a7f1SKumar Gala hose->first_busno,hose->last_busno); 3239490a7f1SKumar Gala 3249490a7f1SKumar Gala } else { 3259490a7f1SKumar Gala printf (" PCIE1: disabled\n"); 3269490a7f1SKumar Gala } 3279490a7f1SKumar Gala 3289490a7f1SKumar Gala } 3299490a7f1SKumar Gala #else 3309490a7f1SKumar Gala gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */ 3319490a7f1SKumar Gala #endif 3329490a7f1SKumar Gala 3339490a7f1SKumar Gala #ifdef CONFIG_PCIE2 3349490a7f1SKumar Gala { 3356d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR; 3369490a7f1SKumar Gala struct pci_controller *hose = &pcie2_hose; 3379490a7f1SKumar Gala int pcie_ep = (host_agent == 3); 3389490a7f1SKumar Gala int pcie_configured = (io_sel == 5 || io_sel == 7); 3392dba0deaSKumar Gala struct pci_region *r = hose->regions; 3409490a7f1SKumar Gala 3419490a7f1SKumar Gala if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){ 3429490a7f1SKumar Gala printf ("\n PCIE2 connected to Slot 2 as %s (base address %x)", 3439490a7f1SKumar Gala pcie_ep ? "End Point" : "Root Complex", 3449490a7f1SKumar Gala (uint)pci); 3459490a7f1SKumar Gala if (pci->pme_msg_det) { 3469490a7f1SKumar Gala pci->pme_msg_det = 0xffffffff; 3479490a7f1SKumar Gala debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det); 3489490a7f1SKumar Gala } 3499490a7f1SKumar Gala printf ("\n"); 3509490a7f1SKumar Gala 3519490a7f1SKumar Gala /* inbound */ 3522dba0deaSKumar Gala r += fsl_pci_setup_inbound_windows(r); 3539490a7f1SKumar Gala 3549490a7f1SKumar Gala /* outbound memory */ 3552dba0deaSKumar Gala pci_set_region(r++, 35610795f42SKumar Gala CONFIG_SYS_PCIE2_MEM_BUS, 3576d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_MEM_PHYS, 3586d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_MEM_SIZE, 3599490a7f1SKumar Gala PCI_REGION_MEM); 3609490a7f1SKumar Gala 3619490a7f1SKumar Gala /* outbound io */ 3622dba0deaSKumar Gala pci_set_region(r++, 3635f91ef6aSKumar Gala CONFIG_SYS_PCIE2_IO_BUS, 3646d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_IO_PHYS, 3656d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_IO_SIZE, 3669490a7f1SKumar Gala PCI_REGION_IO); 3679490a7f1SKumar Gala 36810795f42SKumar Gala #ifdef CONFIG_SYS_PCIE2_MEM_BUS2 3699490a7f1SKumar Gala /* outbound memory */ 3702dba0deaSKumar Gala pci_set_region(r++, 37110795f42SKumar Gala CONFIG_SYS_PCIE2_MEM_BUS2, 3726d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_MEM_PHYS2, 3736d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCIE2_MEM_SIZE2, 3749490a7f1SKumar Gala PCI_REGION_MEM); 3759490a7f1SKumar Gala #endif 3762dba0deaSKumar Gala hose->region_count = r - hose->regions; 3779490a7f1SKumar Gala hose->first_busno=first_free_busno; 3789490a7f1SKumar Gala pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); 3799490a7f1SKumar Gala 3809490a7f1SKumar Gala fsl_pci_init(hose); 3819490a7f1SKumar Gala first_free_busno=hose->last_busno+1; 3829490a7f1SKumar Gala printf (" PCIE2 on bus %02x - %02x\n", 3839490a7f1SKumar Gala hose->first_busno,hose->last_busno); 3849490a7f1SKumar Gala 3859490a7f1SKumar Gala } else { 3869490a7f1SKumar Gala printf (" PCIE2: disabled\n"); 3879490a7f1SKumar Gala } 3889490a7f1SKumar Gala 3899490a7f1SKumar Gala } 3909490a7f1SKumar Gala #else 3919490a7f1SKumar Gala gur->devdisr |= MPC85xx_DEVDISR_PCIE2; /* disable */ 3929490a7f1SKumar Gala #endif 3939490a7f1SKumar Gala 3949490a7f1SKumar Gala 3959490a7f1SKumar Gala #ifdef CONFIG_PCI1 3969490a7f1SKumar Gala { 3976d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR; 3989490a7f1SKumar Gala struct pci_controller *hose = &pci1_hose; 3992dba0deaSKumar Gala struct pci_region *r = hose->regions; 4009490a7f1SKumar Gala 4019490a7f1SKumar Gala uint pci_agent = (host_agent == 6); 4029490a7f1SKumar Gala uint pci_speed = 66666000; /*get_clock_freq (); PCI PSPEED in [4:5] */ 4039490a7f1SKumar Gala uint pci_32 = 1; 4049490a7f1SKumar Gala uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */ 4059490a7f1SKumar Gala uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */ 4069490a7f1SKumar Gala 4079490a7f1SKumar Gala 4089490a7f1SKumar Gala if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { 4099490a7f1SKumar Gala printf ("\n PCI: %d bit, %s MHz, %s, %s, %s (base address %x)\n", 4109490a7f1SKumar Gala (pci_32) ? 32 : 64, 4119490a7f1SKumar Gala (pci_speed == 33333000) ? "33" : 4129490a7f1SKumar Gala (pci_speed == 66666000) ? "66" : "unknown", 4139490a7f1SKumar Gala pci_clk_sel ? "sync" : "async", 4149490a7f1SKumar Gala pci_agent ? "agent" : "host", 4159490a7f1SKumar Gala pci_arb ? "arbiter" : "external-arbiter", 4169490a7f1SKumar Gala (uint)pci 4179490a7f1SKumar Gala ); 4189490a7f1SKumar Gala 4199490a7f1SKumar Gala /* inbound */ 4202dba0deaSKumar Gala r += fsl_pci_setup_inbound_windows(r); 4219490a7f1SKumar Gala 4229490a7f1SKumar Gala /* outbound memory */ 4232dba0deaSKumar Gala pci_set_region(r++, 42410795f42SKumar Gala CONFIG_SYS_PCI1_MEM_BUS, 4256d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_MEM_PHYS, 4266d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_MEM_SIZE, 4279490a7f1SKumar Gala PCI_REGION_MEM); 4289490a7f1SKumar Gala 4299490a7f1SKumar Gala /* outbound io */ 4302dba0deaSKumar Gala pci_set_region(r++, 4315f91ef6aSKumar Gala CONFIG_SYS_PCI1_IO_BUS, 4326d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_IO_PHYS, 4336d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_IO_SIZE, 4349490a7f1SKumar Gala PCI_REGION_IO); 4352dba0deaSKumar Gala 43610795f42SKumar Gala #ifdef CONFIG_SYS_PCI1_MEM_BUS2 4379490a7f1SKumar Gala /* outbound memory */ 4382dba0deaSKumar Gala pci_set_region(r++, 43910795f42SKumar Gala CONFIG_SYS_PCI1_MEM_BUS2, 4406d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_MEM_PHYS2, 4416d0f6bcfSJean-Christophe PLAGNIOL-VILLARD CONFIG_SYS_PCI1_MEM_SIZE2, 4429490a7f1SKumar Gala PCI_REGION_MEM); 4439490a7f1SKumar Gala #endif 4442dba0deaSKumar Gala hose->region_count = r - hose->regions; 4459490a7f1SKumar Gala hose->first_busno=first_free_busno; 4469490a7f1SKumar Gala pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); 4479490a7f1SKumar Gala 4489490a7f1SKumar Gala fsl_pci_init(hose); 4499490a7f1SKumar Gala first_free_busno=hose->last_busno+1; 4509490a7f1SKumar Gala printf ("PCI on bus %02x - %02x\n", 4519490a7f1SKumar Gala hose->first_busno,hose->last_busno); 4529490a7f1SKumar Gala } else { 4539490a7f1SKumar Gala printf (" PCI: disabled\n"); 4549490a7f1SKumar Gala } 4559490a7f1SKumar Gala } 4569490a7f1SKumar Gala #else 4579490a7f1SKumar Gala gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */ 4589490a7f1SKumar Gala #endif 4599490a7f1SKumar Gala } 4609490a7f1SKumar Gala 4619490a7f1SKumar Gala 4629490a7f1SKumar Gala int board_early_init_r(void) 4639490a7f1SKumar Gala { 4646d0f6bcfSJean-Christophe PLAGNIOL-VILLARD const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; 4659490a7f1SKumar Gala const u8 flash_esel = 1; 4669490a7f1SKumar Gala 4679490a7f1SKumar Gala /* 4689490a7f1SKumar Gala * Remap Boot flash + PROMJET region to caching-inhibited 4699490a7f1SKumar Gala * so that flash can be erased properly. 4709490a7f1SKumar Gala */ 4719490a7f1SKumar Gala 4727c0d4a75SKumar Gala /* Flush d-cache and invalidate i-cache of any FLASH data */ 4737c0d4a75SKumar Gala flush_dcache(); 4747c0d4a75SKumar Gala invalidate_icache(); 4759490a7f1SKumar Gala 4769490a7f1SKumar Gala /* invalidate existing TLB entry for flash + promjet */ 4779490a7f1SKumar Gala disable_tlb(flash_esel); 4789490a7f1SKumar Gala 479c953ddfdSKumar Gala set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */ 4809490a7f1SKumar Gala MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */ 4819490a7f1SKumar Gala 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */ 4829490a7f1SKumar Gala 4839490a7f1SKumar Gala return 0; 4849490a7f1SKumar Gala } 4859490a7f1SKumar Gala 4869490a7f1SKumar Gala #ifdef CONFIG_GET_CLK_FROM_ICS307 4879490a7f1SKumar Gala /* decode S[0-2] to Output Divider (OD) */ 4889490a7f1SKumar Gala static unsigned char 4899490a7f1SKumar Gala ics307_S_to_OD[] = { 4909490a7f1SKumar Gala 10, 2, 8, 4, 5, 7, 3, 6 4919490a7f1SKumar Gala }; 4929490a7f1SKumar Gala 4939490a7f1SKumar Gala /* Calculate frequency being generated by ICS307-02 clock chip based upon 4949490a7f1SKumar Gala * the control bytes being programmed into it. */ 4959490a7f1SKumar Gala /* XXX: This function should probably go into a common library */ 4969490a7f1SKumar Gala static unsigned long 4979490a7f1SKumar Gala ics307_clk_freq (unsigned char cw0, unsigned char cw1, unsigned char cw2) 4989490a7f1SKumar Gala { 4999490a7f1SKumar Gala const unsigned long long InputFrequency = CONFIG_ICS307_REFCLK_HZ; 5009490a7f1SKumar Gala unsigned long VDW = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1); 5019490a7f1SKumar Gala unsigned long RDW = cw2 & 0x7F; 5029490a7f1SKumar Gala unsigned long OD = ics307_S_to_OD[cw0 & 0x7]; 5039490a7f1SKumar Gala unsigned long freq; 5049490a7f1SKumar Gala 5059490a7f1SKumar Gala /* CLK1Frequency = InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD) */ 5069490a7f1SKumar Gala 5079490a7f1SKumar Gala /* cw0: C1 C0 TTL F1 F0 S2 S1 S0 5089490a7f1SKumar Gala * cw1: V8 V7 V6 V5 V4 V3 V2 V1 5099490a7f1SKumar Gala * cw2: V0 R6 R5 R4 R3 R2 R1 R0 5109490a7f1SKumar Gala * 5119490a7f1SKumar Gala * R6:R0 = Reference Divider Word (RDW) 5129490a7f1SKumar Gala * V8:V0 = VCO Divider Word (VDW) 5139490a7f1SKumar Gala * S2:S0 = Output Divider Select (OD) 5149490a7f1SKumar Gala * F1:F0 = Function of CLK2 Output 5159490a7f1SKumar Gala * TTL = duty cycle 5169490a7f1SKumar Gala * C1:C0 = internal load capacitance for cyrstal 5179490a7f1SKumar Gala */ 5189490a7f1SKumar Gala 5199490a7f1SKumar Gala /* Adding 1 to get a "nicely" rounded number, but this needs 5209490a7f1SKumar Gala * more tweaking to get a "properly" rounded number. */ 5219490a7f1SKumar Gala 5229490a7f1SKumar Gala freq = 1 + (InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD)); 5239490a7f1SKumar Gala 5249490a7f1SKumar Gala debug("ICS307: CW[0-2]: %02X %02X %02X => %u Hz\n", cw0, cw1, cw2, 5259490a7f1SKumar Gala freq); 5269490a7f1SKumar Gala return freq; 5279490a7f1SKumar Gala } 5289490a7f1SKumar Gala 5299490a7f1SKumar Gala unsigned long 5309490a7f1SKumar Gala get_board_sys_clk(ulong dummy) 5319490a7f1SKumar Gala { 532*048e7efeSKumar Gala u8 *pixis_base = (u8 *)PIXIS_BASE; 533*048e7efeSKumar Gala 5349490a7f1SKumar Gala return ics307_clk_freq ( 535*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VSYSCLK0), 536*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VSYSCLK1), 537*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VSYSCLK2) 5389490a7f1SKumar Gala ); 5399490a7f1SKumar Gala } 5409490a7f1SKumar Gala 5419490a7f1SKumar Gala unsigned long 5429490a7f1SKumar Gala get_board_ddr_clk(ulong dummy) 5439490a7f1SKumar Gala { 544*048e7efeSKumar Gala u8 *pixis_base = (u8 *)PIXIS_BASE; 545*048e7efeSKumar Gala 5469490a7f1SKumar Gala return ics307_clk_freq ( 547*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VDDRCLK0), 548*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VDDRCLK1), 549*048e7efeSKumar Gala in_8(pixis_base + PIXIS_VDDRCLK2) 5509490a7f1SKumar Gala ); 5519490a7f1SKumar Gala } 5529490a7f1SKumar Gala #else 5539490a7f1SKumar Gala unsigned long 5549490a7f1SKumar Gala get_board_sys_clk(ulong dummy) 5559490a7f1SKumar Gala { 5569490a7f1SKumar Gala u8 i; 5579490a7f1SKumar Gala ulong val = 0; 558*048e7efeSKumar Gala u8 *pixis_base = (u8 *)PIXIS_BASE; 5599490a7f1SKumar Gala 560*048e7efeSKumar Gala i = in_8(pixis_base + PIXIS_SPD); 5619490a7f1SKumar Gala i &= 0x07; 5629490a7f1SKumar Gala 5639490a7f1SKumar Gala switch (i) { 5649490a7f1SKumar Gala case 0: 5659490a7f1SKumar Gala val = 33333333; 5669490a7f1SKumar Gala break; 5679490a7f1SKumar Gala case 1: 5689490a7f1SKumar Gala val = 40000000; 5699490a7f1SKumar Gala break; 5709490a7f1SKumar Gala case 2: 5719490a7f1SKumar Gala val = 50000000; 5729490a7f1SKumar Gala break; 5739490a7f1SKumar Gala case 3: 5749490a7f1SKumar Gala val = 66666666; 5759490a7f1SKumar Gala break; 5769490a7f1SKumar Gala case 4: 5779490a7f1SKumar Gala val = 83333333; 5789490a7f1SKumar Gala break; 5799490a7f1SKumar Gala case 5: 5809490a7f1SKumar Gala val = 100000000; 5819490a7f1SKumar Gala break; 5829490a7f1SKumar Gala case 6: 5839490a7f1SKumar Gala val = 133333333; 5849490a7f1SKumar Gala break; 5859490a7f1SKumar Gala case 7: 5869490a7f1SKumar Gala val = 166666666; 5879490a7f1SKumar Gala break; 5889490a7f1SKumar Gala } 5899490a7f1SKumar Gala 5909490a7f1SKumar Gala return val; 5919490a7f1SKumar Gala } 5929490a7f1SKumar Gala 5939490a7f1SKumar Gala unsigned long 5949490a7f1SKumar Gala get_board_ddr_clk(ulong dummy) 5959490a7f1SKumar Gala { 5969490a7f1SKumar Gala u8 i; 5979490a7f1SKumar Gala ulong val = 0; 598*048e7efeSKumar Gala u8 *pixis_base = (u8 *)PIXIS_BASE; 5999490a7f1SKumar Gala 600*048e7efeSKumar Gala i = in_8(pixis_base + PIXIS_SPD); 6019490a7f1SKumar Gala i &= 0x38; 6029490a7f1SKumar Gala i >>= 3; 6039490a7f1SKumar Gala 6049490a7f1SKumar Gala switch (i) { 6059490a7f1SKumar Gala case 0: 6069490a7f1SKumar Gala val = 33333333; 6079490a7f1SKumar Gala break; 6089490a7f1SKumar Gala case 1: 6099490a7f1SKumar Gala val = 40000000; 6109490a7f1SKumar Gala break; 6119490a7f1SKumar Gala case 2: 6129490a7f1SKumar Gala val = 50000000; 6139490a7f1SKumar Gala break; 6149490a7f1SKumar Gala case 3: 6159490a7f1SKumar Gala val = 66666666; 6169490a7f1SKumar Gala break; 6179490a7f1SKumar Gala case 4: 6189490a7f1SKumar Gala val = 83333333; 6199490a7f1SKumar Gala break; 6209490a7f1SKumar Gala case 5: 6219490a7f1SKumar Gala val = 100000000; 6229490a7f1SKumar Gala break; 6239490a7f1SKumar Gala case 6: 6249490a7f1SKumar Gala val = 133333333; 6259490a7f1SKumar Gala break; 6269490a7f1SKumar Gala case 7: 6279490a7f1SKumar Gala val = 166666666; 6289490a7f1SKumar Gala break; 6299490a7f1SKumar Gala } 6309490a7f1SKumar Gala return val; 6319490a7f1SKumar Gala } 6329490a7f1SKumar Gala #endif 6339490a7f1SKumar Gala 634cf7e399fSMike Frysinger int sata_initialize(void) 6350f8cbc18SJason Jin { 6366d0f6bcfSJean-Christophe PLAGNIOL-VILLARD volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 6370f8cbc18SJason Jin uint sdrs2_io_sel = 6380f8cbc18SJason Jin (gur->pordevsr & MPC85xx_PORDEVSR_SRDS2_IO_SEL) >> 27; 6390f8cbc18SJason Jin if (sdrs2_io_sel & 0x04) 6400f8cbc18SJason Jin return 1; 641cf7e399fSMike Frysinger 642cf7e399fSMike Frysinger return __sata_initialize(); 6430f8cbc18SJason Jin } 6440f8cbc18SJason Jin 6452e26d837SJason Jin int board_eth_init(bd_t *bis) 6462e26d837SJason Jin { 6472e26d837SJason Jin #ifdef CONFIG_TSEC_ENET 6482e26d837SJason Jin struct tsec_info_struct tsec_info[2]; 6492e26d837SJason Jin volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 6502e26d837SJason Jin int num = 0; 6512e26d837SJason Jin uint sdrs2_io_sel = 6522e26d837SJason Jin (gur->pordevsr & MPC85xx_PORDEVSR_SRDS2_IO_SEL) >> 27; 6532e26d837SJason Jin 6542e26d837SJason Jin #ifdef CONFIG_TSEC1 6552e26d837SJason Jin SET_STD_TSEC_INFO(tsec_info[num], 1); 6562e26d837SJason Jin if ((sdrs2_io_sel == 4) || (sdrs2_io_sel == 6)) { 6572e26d837SJason Jin tsec_info[num].phyaddr = 0; 6582e26d837SJason Jin tsec_info[num].flags |= TSEC_SGMII; 6592e26d837SJason Jin } 6602e26d837SJason Jin num++; 6612e26d837SJason Jin #endif 6622e26d837SJason Jin #ifdef CONFIG_TSEC3 6632e26d837SJason Jin SET_STD_TSEC_INFO(tsec_info[num], 3); 6642e26d837SJason Jin if (sdrs2_io_sel == 4) { 6652e26d837SJason Jin tsec_info[num].phyaddr = 1; 6662e26d837SJason Jin tsec_info[num].flags |= TSEC_SGMII; 6672e26d837SJason Jin } 6682e26d837SJason Jin num++; 6692e26d837SJason Jin #endif 6702e26d837SJason Jin 6712e26d837SJason Jin if (!num) { 6722e26d837SJason Jin printf("No TSECs initialized\n"); 6732e26d837SJason Jin return 0; 6742e26d837SJason Jin } 6752e26d837SJason Jin 676feede8b0SAndy Fleming #ifdef CONFIG_FSL_SGMII_RISER 6772e26d837SJason Jin if ((sdrs2_io_sel == 4) || (sdrs2_io_sel == 6)) 6782e26d837SJason Jin fsl_sgmii_riser_init(tsec_info, num); 679feede8b0SAndy Fleming #endif 6802e26d837SJason Jin 6812e26d837SJason Jin tsec_eth_init(bis, tsec_info, num); 6822e26d837SJason Jin #endif 6832e26d837SJason Jin return pci_eth_init(bis); 6842e26d837SJason Jin } 6852e26d837SJason Jin 6869490a7f1SKumar Gala #if defined(CONFIG_OF_BOARD_SETUP) 6872dba0deaSKumar Gala void ft_board_setup(void *blob, bd_t *bd) 6882dba0deaSKumar Gala { 6899490a7f1SKumar Gala ft_cpu_setup(blob, bd); 6909490a7f1SKumar Gala 6919490a7f1SKumar Gala #ifdef CONFIG_PCI1 6922dba0deaSKumar Gala ft_fsl_pci_setup(blob, "pci0", &pci1_hose); 6939490a7f1SKumar Gala #endif 6949490a7f1SKumar Gala #ifdef CONFIG_PCIE2 6952dba0deaSKumar Gala ft_fsl_pci_setup(blob, "pci1", &pcie2_hose); 6962dba0deaSKumar Gala #endif 6972dba0deaSKumar Gala #ifdef CONFIG_PCIE2 6982dba0deaSKumar Gala ft_fsl_pci_setup(blob, "pci2", &pcie1_hose); 6999490a7f1SKumar Gala #endif 7009490a7f1SKumar Gala #ifdef CONFIG_PCIE1 7012dba0deaSKumar Gala ft_fsl_pci_setup(blob, "pci3", &pcie3_hose); 7029490a7f1SKumar Gala #endif 703feede8b0SAndy Fleming #ifdef CONFIG_FSL_SGMII_RISER 704feede8b0SAndy Fleming fsl_sgmii_riser_fdt_fixup(blob); 705feede8b0SAndy Fleming #endif 7069490a7f1SKumar Gala } 7079490a7f1SKumar Gala #endif 708