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