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