Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007 Freescale Semiconductor, Inc. |
| 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 |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 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 | */ |
Jon Loeliger | c9974ab | 2008-01-04 11:58:23 -0600 | [diff] [blame] | 22 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 23 | #include <common.h> |
| 24 | #include <command.h> |
| 25 | #include <pci.h> |
| 26 | #include <asm/processor.h> |
| 27 | #include <asm/immap_86xx.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame^] | 28 | #include <asm/fsl_pci.h> |
Jon Loeliger | 39aa1a7 | 2008-08-26 15:01:36 -0500 | [diff] [blame] | 29 | #include <asm/fsl_ddr_sdram.h> |
Jon Loeliger | c9974ab | 2008-01-04 11:58:23 -0600 | [diff] [blame] | 30 | #include <i2c.h> |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 31 | #include <asm/io.h> |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 32 | #include <libfdt.h> |
| 33 | #include <fdt_support.h> |
Jon Loeliger | a30a549 | 2008-03-04 10:03:03 -0600 | [diff] [blame] | 34 | #include <spd_sdram.h> |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 35 | #include <netdev.h> |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 36 | |
| 37 | #include "../common/pixis.h" |
| 38 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 39 | void sdram_init(void); |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 40 | phys_size_t fixed_sdram(void); |
Jon Loeliger | c9974ab | 2008-01-04 11:58:23 -0600 | [diff] [blame] | 41 | void mpc8610hpcd_diu_init(void); |
| 42 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 43 | |
| 44 | /* called before any console output */ |
| 45 | int board_early_init_f(void) |
| 46 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 48 | volatile ccsr_gur_t *gur = &immap->im_gur; |
| 49 | |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 50 | gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */ |
| 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | int misc_init_r(void) |
| 56 | { |
| 57 | u8 tmp_val, version; |
| 58 | |
| 59 | /*Do not use 8259PIC*/ |
| 60 | tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0); |
| 61 | out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x80); |
| 62 | |
| 63 | /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/ |
| 64 | version = in8(PIXIS_BASE + PIXIS_PVER); |
| 65 | if(version >= 0x07) { |
| 66 | tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0); |
| 67 | out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xbf); |
| 68 | } |
| 69 | |
| 70 | /* Using this for DIU init before the driver in linux takes over |
| 71 | * Enable the TFP410 Encoder (I2C address 0x38) |
| 72 | */ |
| 73 | |
| 74 | tmp_val = 0xBF; |
| 75 | i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val)); |
| 76 | /* Verify if enabled */ |
| 77 | tmp_val = 0; |
| 78 | i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val)); |
| 79 | debug("DVI Encoder Read: 0x%02lx\n",tmp_val); |
| 80 | |
| 81 | tmp_val = 0x10; |
| 82 | i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val)); |
| 83 | /* Verify if enabled */ |
| 84 | tmp_val = 0; |
| 85 | i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val)); |
| 86 | debug("DVI Encoder Read: 0x%02lx\n",tmp_val); |
| 87 | |
| 88 | #ifdef CONFIG_FSL_DIU_FB |
| 89 | mpc8610hpcd_diu_init(); |
| 90 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 91 | |
| 92 | return 0; |
| 93 | } |
| 94 | |
| 95 | int checkboard(void) |
| 96 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 97 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 98 | volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm; |
| 99 | |
Wolfgang Denk | 9b55a25 | 2008-07-11 01:16:00 +0200 | [diff] [blame] | 100 | printf ("Board: MPC8610HPCD, System ID: 0x%02x, " |
| 101 | "System Version: 0x%02x, FPGA Version: 0x%02x\n", |
Kumar Gala | a036b04 | 2008-06-19 01:45:50 -0500 | [diff] [blame] | 102 | in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER), |
| 103 | in8(PIXIS_BASE + PIXIS_PVER)); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 104 | |
| 105 | mcm->abcr |= 0x00010000; /* 0 */ |
| 106 | mcm->hpmr3 = 0x80000008; /* 4c */ |
| 107 | mcm->hpmr0 = 0; |
| 108 | mcm->hpmr1 = 0; |
| 109 | mcm->hpmr2 = 0; |
| 110 | mcm->hpmr4 = 0; |
| 111 | mcm->hpmr5 = 0; |
| 112 | |
| 113 | return 0; |
| 114 | } |
| 115 | |
| 116 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 117 | phys_size_t |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 118 | initdram(int board_type) |
| 119 | { |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 120 | phys_size_t dram_size = 0; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 121 | |
| 122 | #if defined(CONFIG_SPD_EEPROM) |
Jon Loeliger | 39aa1a7 | 2008-08-26 15:01:36 -0500 | [diff] [blame] | 123 | dram_size = fsl_ddr_sdram(); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 124 | #else |
| 125 | dram_size = fixed_sdram(); |
| 126 | #endif |
| 127 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 128 | #if defined(CONFIG_SYS_RAMBOOT) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 129 | puts(" DDR: "); |
| 130 | return dram_size; |
| 131 | #endif |
| 132 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 133 | puts(" DDR: "); |
| 134 | return dram_size; |
| 135 | } |
| 136 | |
| 137 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 138 | #if !defined(CONFIG_SPD_EEPROM) |
| 139 | /* |
| 140 | * Fixed sdram init -- doesn't use serial presence detect. |
| 141 | */ |
| 142 | |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 143 | phys_size_t fixed_sdram(void) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 144 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 145 | #if !defined(CONFIG_SYS_RAMBOOT) |
| 146 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 147 | volatile ccsr_ddr_t *ddr = &immap->im_ddr1; |
| 148 | uint d_init; |
| 149 | |
| 150 | ddr->cs0_bnds = 0x0000001f; |
| 151 | ddr->cs0_config = 0x80010202; |
| 152 | |
Kumar Gala | 45239cf | 2008-04-29 10:27:08 -0500 | [diff] [blame] | 153 | ddr->timing_cfg_3 = 0x00000000; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 154 | ddr->timing_cfg_0 = 0x00260802; |
| 155 | ddr->timing_cfg_1 = 0x3935d322; |
| 156 | ddr->timing_cfg_2 = 0x14904cc8; |
| 157 | ddr->sdram_mode_1 = 0x00480432; |
| 158 | ddr->sdram_mode_2 = 0x00000000; |
| 159 | ddr->sdram_interval = 0x06180fff; /* 0x06180100; */ |
| 160 | ddr->sdram_data_init = 0xDEADBEEF; |
| 161 | ddr->sdram_clk_cntl = 0x03800000; |
| 162 | ddr->sdram_cfg_2 = 0x04400010; |
| 163 | |
| 164 | #if defined(CONFIG_DDR_ECC) |
| 165 | ddr->err_int_en = 0x0000000d; |
| 166 | ddr->err_disable = 0x00000000; |
| 167 | ddr->err_sbe = 0x00010000; |
| 168 | #endif |
| 169 | asm("sync;isync"); |
| 170 | |
| 171 | udelay(500); |
| 172 | |
| 173 | ddr->sdram_cfg_1 = 0xc3000000; /* 0xe3008000;*/ |
| 174 | |
| 175 | |
| 176 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 177 | d_init = 1; |
| 178 | debug("DDR - 1st controller: memory initializing\n"); |
| 179 | /* |
| 180 | * Poll until memory is initialized. |
| 181 | * 512 Meg at 400 might hit this 200 times or so. |
| 182 | */ |
| 183 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) |
| 184 | udelay(1000); |
| 185 | |
| 186 | debug("DDR: memory initialized\n\n"); |
| 187 | asm("sync; isync"); |
| 188 | udelay(500); |
| 189 | #endif |
| 190 | |
| 191 | return 512 * 1024 * 1024; |
| 192 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 193 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | #endif |
| 197 | |
| 198 | #if defined(CONFIG_PCI) |
| 199 | /* |
| 200 | * Initialize PCI Devices, report devices found. |
| 201 | */ |
| 202 | |
| 203 | #ifndef CONFIG_PCI_PNP |
| 204 | static struct pci_config_table pci_fsl86xxads_config_table[] = { |
| 205 | {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 206 | PCI_IDSEL_NUMBER, PCI_ANY_ID, |
| 207 | pci_cfgfunc_config_device, {PCI_ENET0_IOADDR, |
| 208 | PCI_ENET0_MEMADDR, |
| 209 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} }, |
| 210 | {} |
| 211 | }; |
| 212 | #endif |
| 213 | |
| 214 | |
| 215 | static struct pci_controller pci1_hose = { |
| 216 | #ifndef CONFIG_PCI_PNP |
| 217 | config_table:pci_mpc86xxcts_config_table |
| 218 | #endif |
| 219 | }; |
| 220 | #endif /* CONFIG_PCI */ |
| 221 | |
| 222 | #ifdef CONFIG_PCIE1 |
| 223 | static struct pci_controller pcie1_hose; |
| 224 | #endif |
| 225 | |
| 226 | #ifdef CONFIG_PCIE2 |
| 227 | static struct pci_controller pcie2_hose; |
| 228 | #endif |
| 229 | |
| 230 | int first_free_busno = 0; |
| 231 | |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 232 | extern int fsl_pci_setup_inbound_windows(struct pci_region *r); |
| 233 | extern void fsl_pci_init(struct pci_controller *hose); |
| 234 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 235 | void pci_init_board(void) |
| 236 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 237 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 238 | volatile ccsr_gur_t *gur = &immap->im_gur; |
| 239 | uint devdisr = gur->devdisr; |
Jon Loeliger | a551cee | 2008-02-20 14:22:26 -0600 | [diff] [blame] | 240 | uint io_sel = (gur->pordevsr & MPC8610_PORDEVSR_IO_SEL) |
| 241 | >> MPC8610_PORDEVSR_IO_SEL_SHIFT; |
| 242 | uint host_agent = (gur->porbmsr & MPC8610_PORBMSR_HA) |
| 243 | >> MPC8610_PORBMSR_HA_SHIFT; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 244 | |
| 245 | printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n", |
| 246 | devdisr, io_sel, host_agent); |
| 247 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 248 | #ifdef CONFIG_PCIE1 |
| 249 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 250 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 251 | struct pci_controller *hose = &pcie1_hose; |
| 252 | int pcie_configured = (io_sel == 1) || (io_sel == 4); |
| 253 | int pcie_ep = (host_agent == 0) || (host_agent == 2) || |
| 254 | (host_agent == 5); |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 255 | struct pci_region *r = hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 256 | |
| 257 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) { |
| 258 | printf(" PCIe 1 connected to Uli as %s (base address %x)\n", |
| 259 | pcie_ep ? "End Point" : "Root Complex", |
| 260 | (uint)pci); |
| 261 | if (pci->pme_msg_det) |
| 262 | pci->pme_msg_det = 0xffffffff; |
| 263 | |
| 264 | /* inbound */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 265 | r += fsl_pci_setup_inbound_windows(r); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 266 | |
| 267 | /* outbound memory */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 268 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 269 | CONFIG_SYS_PCIE1_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 270 | CONFIG_SYS_PCIE1_MEM_PHYS, |
| 271 | CONFIG_SYS_PCIE1_MEM_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 272 | PCI_REGION_MEM); |
| 273 | |
| 274 | /* outbound io */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 275 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 276 | CONFIG_SYS_PCIE1_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 277 | CONFIG_SYS_PCIE1_IO_PHYS, |
| 278 | CONFIG_SYS_PCIE1_IO_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 279 | PCI_REGION_IO); |
| 280 | |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 281 | hose->region_count = r - hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 282 | |
| 283 | hose->first_busno = first_free_busno; |
| 284 | pci_setup_indirect(hose, (int)&pci->cfg_addr, |
| 285 | (int)&pci->cfg_data); |
| 286 | |
| 287 | fsl_pci_init(hose); |
| 288 | |
| 289 | first_free_busno = hose->last_busno + 1; |
| 290 | printf(" PCI-Express 1 on bus %02x - %02x\n", |
| 291 | hose->first_busno, hose->last_busno); |
| 292 | |
| 293 | } else |
| 294 | puts(" PCI-Express 1: Disabled\n"); |
| 295 | } |
| 296 | #else |
| 297 | puts("PCI-Express 1: Disabled\n"); |
| 298 | #endif /* CONFIG_PCIE1 */ |
| 299 | |
| 300 | |
| 301 | #ifdef CONFIG_PCIE2 |
| 302 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 303 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 304 | struct pci_controller *hose = &pcie2_hose; |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 305 | struct pci_region *r = hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 306 | |
| 307 | int pcie_configured = (io_sel == 0) || (io_sel == 4); |
| 308 | int pcie_ep = (host_agent == 0) || (host_agent == 1) || |
| 309 | (host_agent == 4); |
| 310 | |
| 311 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) { |
| 312 | printf(" PCI-Express 2 connected to slot as %s" \ |
| 313 | " (base address %x)\n", |
| 314 | pcie_ep ? "End Point" : "Root Complex", |
| 315 | (uint)pci); |
| 316 | if (pci->pme_msg_det) |
| 317 | pci->pme_msg_det = 0xffffffff; |
| 318 | |
| 319 | /* inbound */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 320 | r += fsl_pci_setup_inbound_windows(r); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 321 | |
| 322 | /* outbound memory */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 323 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 324 | CONFIG_SYS_PCIE2_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 325 | CONFIG_SYS_PCIE2_MEM_PHYS, |
| 326 | CONFIG_SYS_PCIE2_MEM_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 327 | PCI_REGION_MEM); |
| 328 | |
| 329 | /* outbound io */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 330 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 331 | CONFIG_SYS_PCIE2_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 332 | CONFIG_SYS_PCIE2_IO_PHYS, |
| 333 | CONFIG_SYS_PCIE2_IO_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 334 | PCI_REGION_IO); |
| 335 | |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 336 | hose->region_count = r - hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 337 | |
| 338 | hose->first_busno = first_free_busno; |
| 339 | pci_setup_indirect(hose, (int)&pci->cfg_addr, |
| 340 | (int)&pci->cfg_data); |
| 341 | |
| 342 | fsl_pci_init(hose); |
| 343 | |
| 344 | first_free_busno = hose->last_busno + 1; |
| 345 | printf(" PCI-Express 2 on bus %02x - %02x\n", |
| 346 | hose->first_busno, hose->last_busno); |
| 347 | } else |
| 348 | puts(" PCI-Express 2: Disabled\n"); |
| 349 | } |
| 350 | #else |
| 351 | puts("PCI-Express 2: Disabled\n"); |
| 352 | #endif /* CONFIG_PCIE2 */ |
| 353 | |
| 354 | |
| 355 | #ifdef CONFIG_PCI1 |
| 356 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 357 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 358 | struct pci_controller *hose = &pci1_hose; |
| 359 | int pci_agent = (host_agent >= 4) && (host_agent <= 6); |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 360 | struct pci_region *r = hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 361 | |
| 362 | if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) { |
| 363 | printf(" PCI connected to PCI slots as %s" \ |
| 364 | " (base address %x)\n", |
| 365 | pci_agent ? "Agent" : "Host", |
| 366 | (uint)pci); |
| 367 | |
| 368 | /* inbound */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 369 | r += fsl_pci_setup_inbound_windows(r); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 370 | |
| 371 | /* outbound memory */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 372 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 373 | CONFIG_SYS_PCI1_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 374 | CONFIG_SYS_PCI1_MEM_PHYS, |
| 375 | CONFIG_SYS_PCI1_MEM_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 376 | PCI_REGION_MEM); |
| 377 | |
| 378 | /* outbound io */ |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 379 | pci_set_region(r++, |
Becky Bruce | 3e3fffe | 2008-12-03 22:36:44 -0600 | [diff] [blame] | 380 | CONFIG_SYS_PCI1_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 381 | CONFIG_SYS_PCI1_IO_PHYS, |
| 382 | CONFIG_SYS_PCI1_IO_SIZE, |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 383 | PCI_REGION_IO); |
| 384 | |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 385 | hose->region_count = r - hose->regions; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 386 | |
| 387 | hose->first_busno = first_free_busno; |
| 388 | pci_setup_indirect(hose, (int) &pci->cfg_addr, |
| 389 | (int) &pci->cfg_data); |
| 390 | |
| 391 | fsl_pci_init(hose); |
| 392 | |
| 393 | first_free_busno = hose->last_busno + 1; |
| 394 | printf(" PCI on bus %02x - %02x\n", |
| 395 | hose->first_busno, hose->last_busno); |
| 396 | |
| 397 | |
| 398 | } else |
| 399 | puts(" PCI: Disabled\n"); |
| 400 | } |
| 401 | #endif /* CONFIG_PCI1 */ |
| 402 | } |
| 403 | |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 404 | #if defined(CONFIG_OF_BOARD_SETUP) |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 405 | extern void ft_fsl_pci_setup(void *blob, const char *pci_alias, |
Wolfgang Denk | 3cbd823 | 2008-11-02 16:14:22 +0100 | [diff] [blame] | 406 | struct pci_controller *hose); |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 407 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 408 | void |
| 409 | ft_board_setup(void *blob, bd_t *bd) |
| 410 | { |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 411 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 412 | "timebase-frequency", bd->bi_busfreq / 4, 1); |
| 413 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 414 | "bus-frequency", bd->bi_busfreq, 1); |
| 415 | do_fixup_by_prop_u32(blob, "device_type", "cpu", 4, |
| 416 | "clock-frequency", bd->bi_intfreq, 1); |
| 417 | do_fixup_by_prop_u32(blob, "device_type", "soc", 4, |
| 418 | "bus-frequency", bd->bi_busfreq, 1); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 419 | |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 420 | do_fixup_by_compat_u32(blob, "ns16550", |
| 421 | "clock-frequency", bd->bi_busfreq, 1); |
| 422 | |
| 423 | fdt_fixup_memory(blob, bd->bi_memstart, bd->bi_memsize); |
| 424 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 425 | #ifdef CONFIG_PCI1 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 426 | ft_fsl_pci_setup(blob, "pci0", &pci1_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 427 | #endif |
| 428 | #ifdef CONFIG_PCIE1 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 429 | ft_fsl_pci_setup(blob, "pci1", &pcie1_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 430 | #endif |
| 431 | #ifdef CONFIG_PCIE2 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 432 | ft_fsl_pci_setup(blob, "pci2", &pcie2_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 433 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 434 | } |
| 435 | #endif |
| 436 | |
| 437 | /* |
| 438 | * get_board_sys_clk |
| 439 | * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ |
| 440 | */ |
| 441 | |
| 442 | unsigned long |
| 443 | get_board_sys_clk(ulong dummy) |
| 444 | { |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 445 | u8 i; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 446 | ulong val = 0; |
| 447 | ulong a; |
| 448 | |
| 449 | a = PIXIS_BASE + PIXIS_SPD; |
| 450 | i = in8(a); |
| 451 | i &= 0x07; |
| 452 | |
| 453 | switch (i) { |
| 454 | case 0: |
| 455 | val = 33333000; |
| 456 | break; |
| 457 | case 1: |
| 458 | val = 39999600; |
| 459 | break; |
| 460 | case 2: |
| 461 | val = 49999500; |
| 462 | break; |
| 463 | case 3: |
| 464 | val = 66666000; |
| 465 | break; |
| 466 | case 4: |
| 467 | val = 83332500; |
| 468 | break; |
| 469 | case 5: |
| 470 | val = 99999000; |
| 471 | break; |
| 472 | case 6: |
| 473 | val = 133332000; |
| 474 | break; |
| 475 | case 7: |
| 476 | val = 166665000; |
| 477 | break; |
| 478 | } |
| 479 | |
| 480 | return val; |
| 481 | } |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 482 | |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 483 | int board_eth_init(bd_t *bis) |
| 484 | { |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 485 | return pci_eth_init(bis); |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 486 | } |
Peter Tyser | 4ef630d | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 487 | |
| 488 | void board_reset(void) |
| 489 | { |
| 490 | out8(PIXIS_BASE + PIXIS_RST, 0); |
| 491 | |
| 492 | while (1) |
| 493 | ; |
| 494 | } |