Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1 | /* |
Haiying Wang | 57b6e9c | 2007-01-22 12:37:30 -0600 | [diff] [blame] | 2 | * Copyright 2006, 2007 Freescale Semiconductor. |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <pci.h> |
| 25 | #include <asm/processor.h> |
| 26 | #include <asm/immap_86xx.h> |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 27 | #include <asm/immap_fsl_pci.h> |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 28 | #include <spd.h> |
Haiying Wang | 57b6e9c | 2007-01-22 12:37:30 -0600 | [diff] [blame] | 29 | #include <asm/io.h> |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 30 | #include <libfdt.h> |
| 31 | #include <fdt_support.h> |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 32 | |
Jon Loeliger | de5fbb8 | 2007-08-15 12:20:40 -0500 | [diff] [blame] | 33 | #include "../common/pixis.h" |
Jon Loeliger | 72f8a8e | 2006-05-31 11:24:28 -0500 | [diff] [blame] | 34 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 35 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 36 | extern void ddr_enable_ecc(unsigned int dram_size); |
| 37 | #endif |
| 38 | |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 39 | #if defined(CONFIG_SPD_EEPROM) |
| 40 | #include "spd_sdram.h" |
| 41 | #endif |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 42 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 43 | void sdram_init(void); |
| 44 | long int fixed_sdram(void); |
| 45 | |
| 46 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 47 | int board_early_init_f(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 48 | { |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 49 | return 0; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 50 | } |
| 51 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 52 | int checkboard(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 53 | { |
| 54 | puts("Board: MPC8641HPCN\n"); |
| 55 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | |
| 60 | long int |
| 61 | initdram(int board_type) |
| 62 | { |
| 63 | long dram_size = 0; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 64 | |
| 65 | #if defined(CONFIG_SPD_EEPROM) |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 66 | dram_size = spd_sdram(); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 67 | #else |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 68 | dram_size = fixed_sdram(); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 69 | #endif |
| 70 | |
| 71 | #if defined(CFG_RAMBOOT) |
| 72 | puts(" DDR: "); |
| 73 | return dram_size; |
| 74 | #endif |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 75 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 76 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 77 | /* |
| 78 | * Initialize and enable DDR ECC. |
| 79 | */ |
| 80 | ddr_enable_ecc(dram_size); |
| 81 | #endif |
| 82 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 83 | puts(" DDR: "); |
| 84 | return dram_size; |
| 85 | } |
| 86 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 87 | |
| 88 | #if defined(CFG_DRAM_TEST) |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 89 | int |
| 90 | testdram(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 91 | { |
| 92 | uint *pstart = (uint *) CFG_MEMTEST_START; |
| 93 | uint *pend = (uint *) CFG_MEMTEST_END; |
| 94 | uint *p; |
| 95 | |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 96 | puts("SDRAM test phase 1:\n"); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 97 | for (p = pstart; p < pend; p++) |
| 98 | *p = 0xaaaaaaaa; |
| 99 | |
| 100 | for (p = pstart; p < pend; p++) { |
| 101 | if (*p != 0xaaaaaaaa) { |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 102 | printf("SDRAM test fails at: %08x\n", (uint) p); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 103 | return 1; |
| 104 | } |
| 105 | } |
| 106 | |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 107 | puts("SDRAM test phase 2:\n"); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 108 | for (p = pstart; p < pend; p++) |
| 109 | *p = 0x55555555; |
| 110 | |
| 111 | for (p = pstart; p < pend; p++) { |
| 112 | if (*p != 0x55555555) { |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 113 | printf("SDRAM test fails at: %08x\n", (uint) p); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 114 | return 1; |
| 115 | } |
| 116 | } |
| 117 | |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 118 | puts("SDRAM test passed.\n"); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | #endif |
| 122 | |
| 123 | |
| 124 | #if !defined(CONFIG_SPD_EEPROM) |
Jon Loeliger | 465b9d8 | 2006-04-27 10:15:16 -0500 | [diff] [blame] | 125 | /* |
| 126 | * Fixed sdram init -- doesn't use serial presence detect. |
| 127 | */ |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 128 | long int |
| 129 | fixed_sdram(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 130 | { |
| 131 | #if !defined(CFG_RAMBOOT) |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 132 | volatile immap_t *immap = (immap_t *) CFG_IMMR; |
| 133 | volatile ccsr_ddr_t *ddr = &immap->im_ddr1; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 134 | |
| 135 | ddr->cs0_bnds = CFG_DDR_CS0_BNDS; |
| 136 | ddr->cs0_config = CFG_DDR_CS0_CONFIG; |
| 137 | ddr->ext_refrec = CFG_DDR_EXT_REFRESH; |
| 138 | ddr->timing_cfg_0 = CFG_DDR_TIMING_0; |
| 139 | ddr->timing_cfg_1 = CFG_DDR_TIMING_1; |
| 140 | ddr->timing_cfg_2 = CFG_DDR_TIMING_2; |
| 141 | ddr->sdram_mode_1 = CFG_DDR_MODE_1; |
| 142 | ddr->sdram_mode_2 = CFG_DDR_MODE_2; |
| 143 | ddr->sdram_interval = CFG_DDR_INTERVAL; |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 144 | ddr->sdram_data_init = CFG_DDR_DATA_INIT; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 145 | ddr->sdram_clk_cntl = CFG_DDR_CLK_CTRL; |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 146 | ddr->sdram_ocd_cntl = CFG_DDR_OCD_CTRL; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 147 | ddr->sdram_ocd_status = CFG_DDR_OCD_STATUS; |
| 148 | |
| 149 | #if defined (CONFIG_DDR_ECC) |
| 150 | ddr->err_disable = 0x0000008D; |
| 151 | ddr->err_sbe = 0x00ff0000; |
| 152 | #endif |
| 153 | asm("sync;isync"); |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 154 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 155 | udelay(500); |
| 156 | |
| 157 | #if defined (CONFIG_DDR_ECC) |
| 158 | /* Enable ECC checking */ |
| 159 | ddr->sdram_cfg_1 = (CFG_DDR_CONTROL | 0x20000000); |
| 160 | #else |
| 161 | ddr->sdram_cfg_1 = CFG_DDR_CONTROL; |
| 162 | ddr->sdram_cfg_2 = CFG_DDR_CONTROL2; |
| 163 | #endif |
| 164 | asm("sync; isync"); |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 165 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 166 | udelay(500); |
| 167 | #endif |
| 168 | return CFG_SDRAM_SIZE * 1024 * 1024; |
| 169 | } |
| 170 | #endif /* !defined(CONFIG_SPD_EEPROM) */ |
| 171 | |
| 172 | |
| 173 | #if defined(CONFIG_PCI) |
| 174 | /* |
| 175 | * Initialize PCI Devices, report devices found. |
| 176 | */ |
| 177 | |
| 178 | #ifndef CONFIG_PCI_PNP |
| 179 | static struct pci_config_table pci_fsl86xxads_config_table[] = { |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 180 | {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 181 | PCI_IDSEL_NUMBER, PCI_ANY_ID, |
| 182 | pci_cfgfunc_config_device, {PCI_ENET0_IOADDR, |
| 183 | PCI_ENET0_MEMADDR, |
| 184 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER}}, |
| 185 | {} |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 186 | }; |
| 187 | #endif |
| 188 | |
| 189 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 190 | static struct pci_controller pci1_hose = { |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 191 | #ifndef CONFIG_PCI_PNP |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 192 | config_table:pci_mpc86xxcts_config_table |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 193 | #endif |
| 194 | }; |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 195 | #endif /* CONFIG_PCI */ |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 196 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 197 | #ifdef CONFIG_PCI2 |
| 198 | static struct pci_controller pci2_hose; |
| 199 | #endif /* CONFIG_PCI2 */ |
| 200 | |
| 201 | int first_free_busno = 0; |
| 202 | |
| 203 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 204 | void pci_init_board(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 205 | { |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 206 | volatile immap_t *immap = (immap_t *) CFG_CCSRBAR; |
| 207 | volatile ccsr_gur_t *gur = &immap->im_gur; |
| 208 | uint devdisr = gur->devdisr; |
| 209 | uint io_sel = (gur->pordevsr & MPC86xx_PORDEVSR_IO_SEL) >> 16; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 210 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 211 | #ifdef CONFIG_PCI1 |
| 212 | { |
| 213 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR; |
| 214 | extern void fsl_pci_init(struct pci_controller *hose); |
| 215 | struct pci_controller *hose = &pci1_hose; |
| 216 | #ifdef DEBUG |
| 217 | uint host1_agent = (gur->porbmsr & MPC86xx_PORBMSR_HA) >> 17; |
| 218 | uint pex1_agent = (host1_agent == 0) || (host1_agent == 1); |
| 219 | #endif |
| 220 | if ((io_sel == 2 || io_sel == 3 || io_sel == 5 |
| 221 | || io_sel == 6 || io_sel == 7 || io_sel == 0xF) |
| 222 | && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) { |
| 223 | debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host"); |
| 224 | debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det); |
| 225 | if (pci->pme_msg_det) { |
| 226 | pci->pme_msg_det = 0xffffffff; |
| 227 | debug(" with errors. Clearing. Now 0x%08x", |
| 228 | pci->pme_msg_det); |
| 229 | } |
| 230 | debug("\n"); |
| 231 | |
| 232 | /* inbound */ |
| 233 | pci_set_region(hose->regions + 0, |
| 234 | CFG_PCI_MEMORY_BUS, |
| 235 | CFG_PCI_MEMORY_PHYS, |
| 236 | CFG_PCI_MEMORY_SIZE, |
| 237 | PCI_REGION_MEM | PCI_REGION_MEMORY); |
| 238 | |
| 239 | /* outbound memory */ |
| 240 | pci_set_region(hose->regions + 1, |
| 241 | CFG_PCI1_MEM_BASE, |
| 242 | CFG_PCI1_MEM_PHYS, |
| 243 | CFG_PCI1_MEM_SIZE, |
| 244 | PCI_REGION_MEM); |
| 245 | |
| 246 | /* outbound io */ |
| 247 | pci_set_region(hose->regions + 2, |
| 248 | CFG_PCI1_IO_BASE, |
| 249 | CFG_PCI1_IO_PHYS, |
| 250 | CFG_PCI1_IO_SIZE, |
| 251 | PCI_REGION_IO); |
| 252 | |
| 253 | hose->region_count = 3; |
| 254 | |
| 255 | hose->first_busno=first_free_busno; |
| 256 | pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); |
| 257 | |
| 258 | fsl_pci_init(hose); |
| 259 | |
| 260 | first_free_busno=hose->last_busno+1; |
| 261 | printf (" PCI-EXPRESS 1 on bus %02x - %02x\n", |
| 262 | hose->first_busno,hose->last_busno); |
| 263 | |
| 264 | /* |
| 265 | * Activate ULI1575 legacy chip by performing a fake |
| 266 | * memory access. Needed to make ULI RTC work. |
| 267 | */ |
Jon Loeliger | cfe0cf2 | 2007-08-06 17:39:44 -0500 | [diff] [blame] | 268 | in_be32((unsigned *) ((char *)(CFG_PCI1_MEM_BASE |
| 269 | + CFG_PCI1_MEM_SIZE - 0x1000000))); |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 270 | |
| 271 | } else { |
| 272 | puts("PCI-EXPRESS 1: Disabled\n"); |
| 273 | } |
| 274 | } |
| 275 | #else |
| 276 | puts("PCI-EXPRESS1: Disabled\n"); |
| 277 | #endif /* CONFIG_PCI1 */ |
| 278 | |
| 279 | #ifdef CONFIG_PCI2 |
| 280 | { |
| 281 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI2_ADDR; |
| 282 | extern void fsl_pci_init(struct pci_controller *hose); |
| 283 | struct pci_controller *hose = &pci2_hose; |
| 284 | |
| 285 | |
| 286 | /* inbound */ |
| 287 | pci_set_region(hose->regions + 0, |
| 288 | CFG_PCI_MEMORY_BUS, |
| 289 | CFG_PCI_MEMORY_PHYS, |
| 290 | CFG_PCI_MEMORY_SIZE, |
| 291 | PCI_REGION_MEM | PCI_REGION_MEMORY); |
| 292 | |
| 293 | /* outbound memory */ |
| 294 | pci_set_region(hose->regions + 1, |
| 295 | CFG_PCI2_MEM_BASE, |
| 296 | CFG_PCI2_MEM_PHYS, |
| 297 | CFG_PCI2_MEM_SIZE, |
| 298 | PCI_REGION_MEM); |
| 299 | |
| 300 | /* outbound io */ |
| 301 | pci_set_region(hose->regions + 2, |
| 302 | CFG_PCI2_IO_BASE, |
| 303 | CFG_PCI2_IO_PHYS, |
| 304 | CFG_PCI2_IO_SIZE, |
| 305 | PCI_REGION_IO); |
| 306 | |
| 307 | hose->region_count = 3; |
| 308 | |
| 309 | hose->first_busno=first_free_busno; |
| 310 | pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data); |
| 311 | |
| 312 | fsl_pci_init(hose); |
| 313 | |
| 314 | first_free_busno=hose->last_busno+1; |
| 315 | printf (" PCI-EXPRESS 2 on bus %02x - %02x\n", |
| 316 | hose->first_busno,hose->last_busno); |
| 317 | } |
| 318 | #else |
| 319 | puts("PCI-EXPRESS 2: Disabled\n"); |
| 320 | #endif /* CONFIG_PCI2 */ |
| 321 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 322 | } |
| 323 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame^] | 324 | |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 325 | #if defined(CONFIG_OF_BOARD_SETUP) |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame^] | 326 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 327 | void |
| 328 | ft_board_setup(void *blob, bd_t *bd) |
| 329 | { |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 330 | int node, tmp[2]; |
| 331 | const char *path; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 332 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame^] | 333 | ft_cpu_setup(blob, bd); |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 334 | |
| 335 | node = fdt_path_offset(blob, "/aliases"); |
| 336 | tmp[0] = 0; |
| 337 | if (node >= 0) { |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 338 | #ifdef CONFIG_PCI1 |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 339 | path = fdt_getprop(blob, node, "pci0", NULL); |
| 340 | if (path) { |
| 341 | tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno; |
| 342 | do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1); |
| 343 | } |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 344 | #endif |
| 345 | #ifdef CONFIG_PCI2 |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 346 | path = fdt_getprop(blob, node, "pci1", NULL); |
| 347 | if (path) { |
| 348 | tmp[1] = pci2_hose.last_busno - pci2_hose.first_busno; |
| 349 | do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1); |
| 350 | } |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 351 | #endif |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 352 | } |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 353 | } |
| 354 | #endif |
| 355 | |
Jon Loeliger | 72f8a8e | 2006-05-31 11:24:28 -0500 | [diff] [blame] | 356 | |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 357 | /* |
| 358 | * get_board_sys_clk |
| 359 | * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ |
| 360 | */ |
| 361 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 362 | unsigned long |
| 363 | get_board_sys_clk(ulong dummy) |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 364 | { |
| 365 | u8 i, go_bit, rd_clks; |
| 366 | ulong val = 0; |
| 367 | |
| 368 | go_bit = in8(PIXIS_BASE + PIXIS_VCTL); |
| 369 | go_bit &= 0x01; |
| 370 | |
| 371 | rd_clks = in8(PIXIS_BASE + PIXIS_VCFGEN0); |
| 372 | rd_clks &= 0x1C; |
| 373 | |
| 374 | /* |
| 375 | * Only if both go bit and the SCLK bit in VCFGEN0 are set |
| 376 | * should we be using the AUX register. Remember, we also set the |
| 377 | * GO bit to boot from the alternate bank on the on-board flash |
| 378 | */ |
| 379 | |
| 380 | if (go_bit) { |
| 381 | if (rd_clks == 0x1c) |
| 382 | i = in8(PIXIS_BASE + PIXIS_AUX); |
| 383 | else |
| 384 | i = in8(PIXIS_BASE + PIXIS_SPD); |
| 385 | } else { |
| 386 | i = in8(PIXIS_BASE + PIXIS_SPD); |
| 387 | } |
| 388 | |
| 389 | i &= 0x07; |
| 390 | |
| 391 | switch (i) { |
| 392 | case 0: |
| 393 | val = 33000000; |
| 394 | break; |
| 395 | case 1: |
| 396 | val = 40000000; |
| 397 | break; |
| 398 | case 2: |
| 399 | val = 50000000; |
| 400 | break; |
| 401 | case 3: |
| 402 | val = 66000000; |
| 403 | break; |
| 404 | case 4: |
| 405 | val = 83000000; |
| 406 | break; |
| 407 | case 5: |
| 408 | val = 100000000; |
| 409 | break; |
| 410 | case 6: |
| 411 | val = 134000000; |
| 412 | break; |
| 413 | case 7: |
| 414 | val = 166000000; |
| 415 | break; |
| 416 | } |
| 417 | |
| 418 | return val; |
| 419 | } |