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