Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 1 | /* |
Paul Gortmaker | bd42bbb | 2009-09-18 19:08:46 -0400 | [diff] [blame] | 2 | * Copyright 2007,2009 Wind River Systems, Inc. <www.windriver.com> |
| 3 | * |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 4 | * Copyright 2007 Embedded Specialties, Inc. |
| 5 | * |
| 6 | * Copyright 2004, 2007 Freescale Semiconductor. |
| 7 | * |
| 8 | * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com> |
| 9 | * |
| 10 | * See file CREDITS for list of people who contributed to this |
| 11 | * project. |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License as |
| 15 | * published by the Free Software Foundation; either version 2 of |
| 16 | * the License, or (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 26 | * MA 02111-1307 USA |
| 27 | */ |
| 28 | |
| 29 | #include <common.h> |
| 30 | #include <pci.h> |
| 31 | #include <asm/processor.h> |
| 32 | #include <asm/immap_85xx.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 33 | #include <asm/fsl_pci.h> |
Kumar Gala | 33b9079 | 2008-08-26 23:15:28 -0500 | [diff] [blame] | 34 | #include <asm/fsl_ddr_sdram.h> |
Kumar Gala | 5d27e02 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 35 | #include <asm/fsl_serdes.h> |
Jon Loeliger | a30a549 | 2008-03-04 10:03:03 -0600 | [diff] [blame] | 36 | #include <spd_sdram.h> |
Paul Gortmaker | 94ca091 | 2009-09-18 19:08:44 -0400 | [diff] [blame] | 37 | #include <netdev.h> |
| 38 | #include <tsec.h> |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 39 | #include <miiphy.h> |
| 40 | #include <libfdt.h> |
| 41 | #include <fdt_support.h> |
| 42 | |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 43 | DECLARE_GLOBAL_DATA_PTR; |
| 44 | |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 45 | void local_bus_init(void); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 46 | |
| 47 | int board_early_init_f (void) |
| 48 | { |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | int checkboard (void) |
| 53 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
| 55 | volatile u_char *rev= (void *)CONFIG_SYS_BD_REV; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 56 | |
| 57 | printf ("Board: Wind River SBC8548 Rev. 0x%01x\n", |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 58 | in_8(rev) >> 4); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * Initialize local bus. |
| 62 | */ |
| 63 | local_bus_init (); |
| 64 | |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 65 | out_be32(&ecm->eedr, 0xffffffff); /* clear ecm errors */ |
| 66 | out_be32(&ecm->eeer, 0xffffffff); /* enable ecm errors */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 67 | return 0; |
| 68 | } |
| 69 | |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 70 | /* |
| 71 | * Initialize Local Bus |
| 72 | */ |
| 73 | void |
| 74 | local_bus_init(void) |
| 75 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 77 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 78 | |
Paul Gortmaker | e2b363f | 2011-12-30 23:53:13 -0500 | [diff] [blame] | 79 | uint clkdiv, lbc_mhz, lcrr = CONFIG_SYS_LBC_LCRR; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 80 | sys_info_t sysinfo; |
| 81 | |
| 82 | get_sys_info(&sysinfo); |
Paul Gortmaker | e2b363f | 2011-12-30 23:53:13 -0500 | [diff] [blame] | 83 | |
| 84 | lbc_mhz = sysinfo.freqLocalBus / 1000000; |
| 85 | clkdiv = sysinfo.freqSystemBus / sysinfo.freqLocalBus; |
| 86 | |
| 87 | debug("LCRR=0x%x, CD=%d, MHz=%d\n", lcrr, clkdiv, lbc_mhz); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 88 | |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 89 | out_be32(&gur->lbiuiplldcr1, 0x00078080); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 90 | if (clkdiv == 16) { |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 91 | out_be32(&gur->lbiuiplldcr0, 0x7c0f1bf0); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 92 | } else if (clkdiv == 8) { |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 93 | out_be32(&gur->lbiuiplldcr0, 0x6c0f1bf0); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 94 | } else if (clkdiv == 4) { |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 95 | out_be32(&gur->lbiuiplldcr0, 0x5c0f1bf0); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 96 | } |
| 97 | |
Paul Gortmaker | e2b363f | 2011-12-30 23:53:13 -0500 | [diff] [blame] | 98 | /* |
| 99 | * Local Bus Clock > 83.3 MHz. According to timing |
| 100 | * specifications set LCRR[EADC] to 2 delay cycles. |
| 101 | */ |
| 102 | if (lbc_mhz > 83) { |
| 103 | lcrr &= ~LCRR_EADC; |
| 104 | lcrr |= LCRR_EADC_2; |
| 105 | } |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 106 | |
Paul Gortmaker | e2b363f | 2011-12-30 23:53:13 -0500 | [diff] [blame] | 107 | /* |
| 108 | * According to MPC8548ERMAD Rev. 1.3, 13.3.1.16, 13-30 |
| 109 | * disable PLL bypass for Local Bus Clock > 83 MHz. |
| 110 | */ |
| 111 | if (lbc_mhz >= 66) |
| 112 | lcrr &= (~LCRR_DBYP); /* DLL Enabled */ |
| 113 | |
| 114 | else |
| 115 | lcrr |= LCRR_DBYP; /* DLL Bypass */ |
| 116 | |
| 117 | out_be32(&lbc->lcrr, lcrr); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 118 | asm("sync;isync;msync"); |
| 119 | |
Paul Gortmaker | e2b363f | 2011-12-30 23:53:13 -0500 | [diff] [blame] | 120 | /* |
| 121 | * According to MPC8548ERMAD Rev.1.3 read back LCRR |
| 122 | * and terminate with isync |
| 123 | */ |
| 124 | lcrr = in_be32(&lbc->lcrr); |
| 125 | asm ("isync;"); |
| 126 | |
| 127 | /* let DLL stabilize */ |
| 128 | udelay(500); |
| 129 | |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 130 | out_be32(&lbc->ltesr, 0xffffffff); /* Clear LBC error IRQs */ |
| 131 | out_be32(&lbc->lteir, 0xffffffff); /* Enable LBC error IRQs */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Initialize SDRAM memory on the Local Bus. |
| 136 | */ |
Becky Bruce | 70961ba | 2010-12-17 17:17:57 -0600 | [diff] [blame] | 137 | void lbc_sdram_init(void) |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 138 | { |
Paul Gortmaker | 11d5a62 | 2009-09-20 20:36:04 -0400 | [diff] [blame] | 139 | #if defined(CONFIG_SYS_LBC_SDRAM_SIZE) |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 140 | |
| 141 | uint idx; |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 142 | const unsigned long size = CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024; |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 143 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE; |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 145 | uint *sdram_addr2 = (uint *)(CONFIG_SYS_LBC_SDRAM_BASE + size/2); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 146 | |
| 147 | puts(" SDRAM: "); |
| 148 | |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 149 | print_size(size, "\n"); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 150 | |
| 151 | /* |
| 152 | * Setup SDRAM Base and Option Registers |
| 153 | */ |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 154 | set_lbc_or(3, CONFIG_SYS_OR3_PRELIM); |
| 155 | set_lbc_br(3, CONFIG_SYS_BR3_PRELIM); |
| 156 | set_lbc_or(4, CONFIG_SYS_OR4_PRELIM); |
| 157 | set_lbc_br(4, CONFIG_SYS_BR4_PRELIM); |
Paul Gortmaker | 11d5a62 | 2009-09-20 20:36:04 -0400 | [diff] [blame] | 158 | |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 159 | out_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 160 | asm("msync"); |
| 161 | |
Paul Gortmaker | 0c7e4d4 | 2009-09-20 20:36:03 -0400 | [diff] [blame] | 162 | out_be32(&lbc->lsrt, CONFIG_SYS_LBC_LSRT); |
| 163 | out_be32(&lbc->mrtpr, CONFIG_SYS_LBC_MRTPR); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 164 | asm("msync"); |
| 165 | |
| 166 | /* |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 167 | * Issue PRECHARGE ALL command. |
| 168 | */ |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 169 | out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_PCHALL); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 170 | asm("sync;msync"); |
| 171 | *sdram_addr = 0xff; |
| 172 | ppcDcbf((unsigned long) sdram_addr); |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 173 | *sdram_addr2 = 0xff; |
| 174 | ppcDcbf((unsigned long) sdram_addr2); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 175 | udelay(100); |
| 176 | |
| 177 | /* |
| 178 | * Issue 8 AUTO REFRESH commands. |
| 179 | */ |
| 180 | for (idx = 0; idx < 8; idx++) { |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 181 | out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_ARFRSH); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 182 | asm("sync;msync"); |
| 183 | *sdram_addr = 0xff; |
| 184 | ppcDcbf((unsigned long) sdram_addr); |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 185 | *sdram_addr2 = 0xff; |
| 186 | ppcDcbf((unsigned long) sdram_addr2); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 187 | udelay(100); |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Issue 8 MODE-set command. |
| 192 | */ |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 193 | out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_MRW); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 194 | asm("sync;msync"); |
| 195 | *sdram_addr = 0xff; |
| 196 | ppcDcbf((unsigned long) sdram_addr); |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 197 | *sdram_addr2 = 0xff; |
| 198 | ppcDcbf((unsigned long) sdram_addr2); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 199 | udelay(100); |
| 200 | |
| 201 | /* |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 202 | * Issue RFEN command. |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 203 | */ |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 204 | out_be32(&lbc->lsdmr, CONFIG_SYS_LBC_LSDMR_RFEN); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 205 | asm("sync;msync"); |
| 206 | *sdram_addr = 0xff; |
| 207 | ppcDcbf((unsigned long) sdram_addr); |
Paul Gortmaker | 5f4c6f0 | 2011-12-30 23:53:09 -0500 | [diff] [blame] | 208 | *sdram_addr2 = 0xff; |
| 209 | ppcDcbf((unsigned long) sdram_addr2); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 210 | udelay(200); /* Overkill. Must wait > 200 bus cycles */ |
| 211 | |
| 212 | #endif /* enable SDRAM init */ |
| 213 | } |
| 214 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 215 | #if defined(CONFIG_SYS_DRAM_TEST) |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 216 | int |
| 217 | testdram(void) |
| 218 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 219 | uint *pstart = (uint *) CONFIG_SYS_MEMTEST_START; |
| 220 | uint *pend = (uint *) CONFIG_SYS_MEMTEST_END; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 221 | uint *p; |
| 222 | |
| 223 | printf("Testing DRAM from 0x%08x to 0x%08x\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 224 | CONFIG_SYS_MEMTEST_START, |
| 225 | CONFIG_SYS_MEMTEST_END); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 226 | |
| 227 | printf("DRAM test phase 1:\n"); |
| 228 | for (p = pstart; p < pend; p++) |
| 229 | *p = 0xaaaaaaaa; |
| 230 | |
| 231 | for (p = pstart; p < pend; p++) { |
| 232 | if (*p != 0xaaaaaaaa) { |
| 233 | printf ("DRAM test fails at: %08x\n", (uint) p); |
| 234 | return 1; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | printf("DRAM test phase 2:\n"); |
| 239 | for (p = pstart; p < pend; p++) |
| 240 | *p = 0x55555555; |
| 241 | |
| 242 | for (p = pstart; p < pend; p++) { |
| 243 | if (*p != 0x55555555) { |
| 244 | printf ("DRAM test fails at: %08x\n", (uint) p); |
| 245 | return 1; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | printf("DRAM test passed.\n"); |
| 250 | return 0; |
| 251 | } |
| 252 | #endif |
| 253 | |
Paul Gortmaker | 7b1f139 | 2009-09-18 19:08:39 -0400 | [diff] [blame] | 254 | #ifdef CONFIG_PCI1 |
| 255 | static struct pci_controller pci1_hose; |
| 256 | #endif /* CONFIG_PCI1 */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 257 | |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 258 | #ifdef CONFIG_PCI |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 259 | void |
| 260 | pci_init_board(void) |
| 261 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 262 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 263 | int first_free_busno = 0; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 264 | |
| 265 | #ifdef CONFIG_PCI1 |
Kumar Gala | 2d0a054 | 2010-12-17 10:30:44 -0600 | [diff] [blame] | 266 | struct fsl_pci_info pci_info; |
| 267 | u32 devdisr = in_be32(&gur->devdisr); |
| 268 | u32 pordevsr = in_be32(&gur->pordevsr); |
| 269 | u32 porpllsr = in_be32(&gur->porpllsr); |
| 270 | |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 271 | if (!(devdisr & MPC85xx_DEVDISR_PCI1)) { |
| 272 | uint pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; |
| 273 | uint pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; |
| 274 | uint pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; |
| 275 | uint pci_speed = CONFIG_SYS_CLK_FREQ; /* get_clock_freq() */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 276 | |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 277 | printf("PCI: Host, %d bit, %s MHz, %s, %s\n", |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 278 | (pci_32) ? 32 : 64, |
Paul Gortmaker | 2c40acd | 2009-09-18 19:08:40 -0400 | [diff] [blame] | 279 | (pci_speed == 33000000) ? "33" : |
| 280 | (pci_speed == 66000000) ? "66" : "unknown", |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 281 | pci_clk_sel ? "sync" : "async", |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 282 | pci_arb ? "arbiter" : "external-arbiter"); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 283 | |
Kumar Gala | 2d0a054 | 2010-12-17 10:30:44 -0600 | [diff] [blame] | 284 | SET_STD_PCI_INFO(pci_info, 1); |
| 285 | set_next_law(pci_info.mem_phys, |
| 286 | law_size_bits(pci_info.mem_size), pci_info.law); |
| 287 | set_next_law(pci_info.io_phys, |
| 288 | law_size_bits(pci_info.io_size), pci_info.law); |
| 289 | |
| 290 | first_free_busno = fsl_pci_init_port(&pci_info, |
Kumar Gala | 01471d5 | 2009-11-04 01:29:04 -0600 | [diff] [blame] | 291 | &pci1_hose, first_free_busno); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 292 | } else { |
Peter Tyser | 8ca78f2 | 2010-10-29 17:59:24 -0500 | [diff] [blame] | 293 | printf("PCI: disabled\n"); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 294 | } |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 295 | |
| 296 | puts("\n"); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 297 | #else |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 298 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 299 | #endif |
| 300 | |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 301 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable PCI2 */ |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 302 | |
Kumar Gala | 2d0a054 | 2010-12-17 10:30:44 -0600 | [diff] [blame] | 303 | fsl_pcie_init_board(first_free_busno); |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 304 | } |
Paul Gortmaker | fdc7eb9 | 2009-09-20 20:36:05 -0400 | [diff] [blame] | 305 | #endif |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 306 | |
Paul Gortmaker | 94ca091 | 2009-09-18 19:08:44 -0400 | [diff] [blame] | 307 | int board_eth_init(bd_t *bis) |
| 308 | { |
| 309 | tsec_standard_init(bis); |
| 310 | pci_eth_init(bis); |
| 311 | return 0; /* otherwise cpu_eth_init gets run */ |
| 312 | } |
| 313 | |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 314 | int last_stage_init(void) |
| 315 | { |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | #if defined(CONFIG_OF_BOARD_SETUP) |
Kumar Gala | 2dba0de | 2008-10-21 08:28:33 -0500 | [diff] [blame] | 320 | void ft_board_setup(void *blob, bd_t *bd) |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 321 | { |
| 322 | ft_cpu_setup(blob, bd); |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 323 | |
| 324 | #ifdef CONFIG_FSL_PCI_INIT |
| 325 | FT_FSL_PCI_SETUP; |
Joe Hamman | 11c45eb | 2007-12-13 06:45:08 -0600 | [diff] [blame] | 326 | #endif |
| 327 | } |
| 328 | #endif |