1 /* 2 * Copyright 2004, 2007, 2009-2011 Freescale Semiconductor, Inc. 3 * 4 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com> 5 * 6 * See file CREDITS for list of people who contributed to this 7 * project. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License as 11 * published by the Free Software Foundation; either version 2 of 12 * the License, or (at your option) any later version. 13 * 14 * This program is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 22 * MA 02111-1307 USA 23 */ 24 25 #include <common.h> 26 #include <pci.h> 27 #include <asm/processor.h> 28 #include <asm/mmu.h> 29 #include <asm/immap_85xx.h> 30 #include <asm/fsl_pci.h> 31 #include <asm/fsl_ddr_sdram.h> 32 #include <asm/fsl_serdes.h> 33 #include <miiphy.h> 34 #include <libfdt.h> 35 #include <fdt_support.h> 36 #include <tsec.h> 37 #include <fsl_mdio.h> 38 #include <netdev.h> 39 40 #include "../common/cadmus.h" 41 #include "../common/eeprom.h" 42 #include "../common/via.h" 43 44 void local_bus_init(void); 45 46 int checkboard (void) 47 { 48 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 49 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); 50 51 /* PCI slot in USER bits CSR[6:7] by convention. */ 52 uint pci_slot = get_pci_slot (); 53 54 uint cpu_board_rev = get_cpu_board_revision (); 55 56 puts("Board: MPC8548CDS"); 57 printf(" Carrier Rev: 0x%02x, PCI Slot %d\n", 58 get_board_version(), pci_slot); 59 printf(" Daughtercard Rev: %d.%d (0x%04x)\n", 60 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev), 61 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev); 62 /* 63 * Initialize local bus. 64 */ 65 local_bus_init (); 66 67 /* 68 * Hack TSEC 3 and 4 IO voltages. 69 */ 70 gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */ 71 72 ecm->eedr = 0xffffffff; /* clear ecm errors */ 73 ecm->eeer = 0xffffffff; /* enable ecm errors */ 74 return 0; 75 } 76 77 /* 78 * Initialize Local Bus 79 */ 80 void 81 local_bus_init(void) 82 { 83 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 84 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; 85 86 uint clkdiv; 87 uint lbc_hz; 88 sys_info_t sysinfo; 89 90 get_sys_info(&sysinfo); 91 clkdiv = (lbc->lcrr & LCRR_CLKDIV) * 2; 92 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv; 93 94 gur->lbiuiplldcr1 = 0x00078080; 95 if (clkdiv == 16) { 96 gur->lbiuiplldcr0 = 0x7c0f1bf0; 97 } else if (clkdiv == 8) { 98 gur->lbiuiplldcr0 = 0x6c0f1bf0; 99 } else if (clkdiv == 4) { 100 gur->lbiuiplldcr0 = 0x5c0f1bf0; 101 } 102 103 lbc->lcrr |= 0x00030000; 104 105 asm("sync;isync;msync"); 106 107 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */ 108 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */ 109 } 110 111 /* 112 * Initialize SDRAM memory on the Local Bus. 113 */ 114 void lbc_sdram_init(void) 115 { 116 #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM) 117 118 uint idx; 119 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; 120 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE; 121 uint cpu_board_rev; 122 uint lsdmr_common; 123 124 puts("LBC SDRAM: "); 125 print_size(CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, 126 "\n"); 127 128 /* 129 * Setup SDRAM Base and Option Registers 130 */ 131 set_lbc_or(2, CONFIG_SYS_OR2_PRELIM); 132 set_lbc_br(2, CONFIG_SYS_BR2_PRELIM); 133 lbc->lbcr = CONFIG_SYS_LBC_LBCR; 134 asm("msync"); 135 136 lbc->lsrt = CONFIG_SYS_LBC_LSRT; 137 lbc->mrtpr = CONFIG_SYS_LBC_MRTPR; 138 asm("msync"); 139 140 /* 141 * MPC8548 uses "new" 15-16 style addressing. 142 */ 143 cpu_board_rev = get_cpu_board_revision(); 144 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON; 145 lsdmr_common |= LSDMR_BSMA1516; 146 147 /* 148 * Issue PRECHARGE ALL command. 149 */ 150 lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL; 151 asm("sync;msync"); 152 *sdram_addr = 0xff; 153 ppcDcbf((unsigned long) sdram_addr); 154 udelay(100); 155 156 /* 157 * Issue 8 AUTO REFRESH commands. 158 */ 159 for (idx = 0; idx < 8; idx++) { 160 lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH; 161 asm("sync;msync"); 162 *sdram_addr = 0xff; 163 ppcDcbf((unsigned long) sdram_addr); 164 udelay(100); 165 } 166 167 /* 168 * Issue 8 MODE-set command. 169 */ 170 lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW; 171 asm("sync;msync"); 172 *sdram_addr = 0xff; 173 ppcDcbf((unsigned long) sdram_addr); 174 udelay(100); 175 176 /* 177 * Issue NORMAL OP command. 178 */ 179 lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL; 180 asm("sync;msync"); 181 *sdram_addr = 0xff; 182 ppcDcbf((unsigned long) sdram_addr); 183 udelay(200); /* Overkill. Must wait > 200 bus cycles */ 184 185 #endif /* enable SDRAM init */ 186 } 187 188 #if defined(CONFIG_PCI) || defined(CONFIG_PCI1) 189 /* For some reason the Tundra PCI bridge shows up on itself as a 190 * different device. Work around that by refusing to configure it. 191 */ 192 void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { } 193 194 static struct pci_config_table pci_mpc85xxcds_config_table[] = { 195 {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}}, 196 {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}}, 197 {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1, 198 mpc85xx_config_via_usbide, {0,0,0}}, 199 {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2, 200 mpc85xx_config_via_usb, {0,0,0}}, 201 {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3, 202 mpc85xx_config_via_usb2, {0,0,0}}, 203 {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5, 204 mpc85xx_config_via_power, {0,0,0}}, 205 {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6, 206 mpc85xx_config_via_ac97, {0,0,0}}, 207 {}, 208 }; 209 210 static struct pci_controller pci1_hose; 211 #endif /* CONFIG_PCI */ 212 213 void pci_init_board(void) 214 { 215 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); 216 struct fsl_pci_info pci_info; 217 u32 devdisr, pordevsr, io_sel; 218 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel; 219 int first_free_busno = 0; 220 char buf[32]; 221 222 devdisr = in_be32(&gur->devdisr); 223 pordevsr = in_be32(&gur->pordevsr); 224 porpllsr = in_be32(&gur->porpllsr); 225 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; 226 227 debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); 228 229 #ifdef CONFIG_PCI1 230 pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */ 231 pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */ 232 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; 233 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; 234 235 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { 236 SET_STD_PCI_INFO(pci_info, 1); 237 set_next_law(pci_info.mem_phys, 238 law_size_bits(pci_info.mem_size), pci_info.law); 239 set_next_law(pci_info.io_phys, 240 law_size_bits(pci_info.io_size), pci_info.law); 241 242 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs); 243 printf("PCI1: %d bit, %s MHz, %s, %s, %s (base address %lx)\n", 244 (pci_32) ? 32 : 64, 245 strmhz(buf, pci_speed), 246 pci_clk_sel ? "sync" : "async", 247 pci_agent ? "agent" : "host", 248 pci_arb ? "arbiter" : "external-arbiter", 249 pci_info.regs); 250 251 pci1_hose.config_table = pci_mpc85xxcds_config_table; 252 first_free_busno = fsl_pci_init_port(&pci_info, 253 &pci1_hose, first_free_busno); 254 255 #ifdef CONFIG_PCIX_CHECK 256 if (!(pordevsr & MPC85xx_PORDEVSR_PCI1)) { 257 /* PCI-X init */ 258 if (CONFIG_SYS_CLK_FREQ < 66000000) 259 printf("PCI-X will only work at 66 MHz\n"); 260 261 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ 262 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E; 263 pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16); 264 } 265 #endif 266 } else { 267 printf("PCI1: disabled\n"); 268 } 269 270 puts("\n"); 271 #else 272 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */ 273 #endif 274 275 #ifdef CONFIG_PCI2 276 { 277 uint pci2_clk_sel = porpllsr & 0x4000; /* PORPLLSR[17] */ 278 uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */ 279 if (pci_dual) { 280 printf("PCI2: 32 bit, 66 MHz, %s\n", 281 pci2_clk_sel ? "sync" : "async"); 282 } else { 283 printf("PCI2: disabled\n"); 284 } 285 } 286 #else 287 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable */ 288 #endif /* CONFIG_PCI2 */ 289 290 fsl_pcie_init_board(first_free_busno); 291 } 292 293 void configure_rgmii(void) 294 { 295 unsigned short temp; 296 297 /* Change the resistors for the PHY */ 298 /* This is needed to get the RGMII working for the 1.3+ 299 * CDS cards */ 300 if (get_board_version() == 0x13) { 301 miiphy_write(DEFAULT_MII_NAME, 302 TSEC1_PHY_ADDR, 29, 18); 303 304 miiphy_read(DEFAULT_MII_NAME, 305 TSEC1_PHY_ADDR, 30, &temp); 306 307 temp = (temp & 0xf03f); 308 temp |= 2 << 9; /* 36 ohm */ 309 temp |= 2 << 6; /* 39 ohm */ 310 311 miiphy_write(DEFAULT_MII_NAME, 312 TSEC1_PHY_ADDR, 30, temp); 313 314 miiphy_write(DEFAULT_MII_NAME, 315 TSEC1_PHY_ADDR, 29, 3); 316 317 miiphy_write(DEFAULT_MII_NAME, 318 TSEC1_PHY_ADDR, 30, 0x8000); 319 } 320 321 return; 322 } 323 324 #ifdef CONFIG_TSEC_ENET 325 int board_eth_init(bd_t *bis) 326 { 327 struct fsl_pq_mdio_info mdio_info; 328 struct tsec_info_struct tsec_info[4]; 329 int num = 0; 330 331 #ifdef CONFIG_TSEC1 332 SET_STD_TSEC_INFO(tsec_info[num], 1); 333 num++; 334 #endif 335 #ifdef CONFIG_TSEC2 336 SET_STD_TSEC_INFO(tsec_info[num], 2); 337 num++; 338 #endif 339 #ifdef CONFIG_TSEC3 340 /* initialize TSEC3 only if Carrier is 1.3 or above on CDS */ 341 if (get_board_version() >= 0x13) { 342 SET_STD_TSEC_INFO(tsec_info[num], 3); 343 tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID; 344 num++; 345 } 346 #endif 347 #ifdef CONFIG_TSEC4 348 /* initialize TSEC4 only if Carrier is 1.3 or above on CDS */ 349 if (get_board_version() >= 0x13) { 350 SET_STD_TSEC_INFO(tsec_info[num], 4); 351 tsec_info[num].interface = PHY_INTERFACE_MODE_RGMII_ID; 352 num++; 353 } 354 #endif 355 356 if (!num) { 357 printf("No TSECs initialized\n"); 358 359 return 0; 360 } 361 362 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; 363 mdio_info.name = DEFAULT_MII_NAME; 364 fsl_pq_mdio_init(bis, &mdio_info); 365 366 tsec_eth_init(bis, tsec_info, num); 367 configure_rgmii(); 368 369 return pci_eth_init(bis); 370 } 371 #endif 372 373 #if defined(CONFIG_OF_BOARD_SETUP) 374 void ft_pci_setup(void *blob, bd_t *bd) 375 { 376 FT_FSL_PCI_SETUP; 377 } 378 #endif 379