Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 2 | * Copyright 2007,2009 Freescale Semiconductor, Inc. |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -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 |
| 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 | |
Timur Tabi | 9ff32d8 | 2010-03-29 12:51:07 -0500 | [diff] [blame^] | 130 | setup_ddr_bat(dram_size); |
| 131 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 132 | puts(" DDR: "); |
| 133 | return dram_size; |
| 134 | } |
| 135 | |
| 136 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 137 | #if !defined(CONFIG_SPD_EEPROM) |
| 138 | /* |
| 139 | * Fixed sdram init -- doesn't use serial presence detect. |
| 140 | */ |
| 141 | |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 142 | phys_size_t fixed_sdram(void) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 143 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | #if !defined(CONFIG_SYS_RAMBOOT) |
| 145 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 146 | volatile ccsr_ddr_t *ddr = &immap->im_ddr1; |
| 147 | uint d_init; |
| 148 | |
| 149 | ddr->cs0_bnds = 0x0000001f; |
| 150 | ddr->cs0_config = 0x80010202; |
| 151 | |
Kumar Gala | 45239cf | 2008-04-29 10:27:08 -0500 | [diff] [blame] | 152 | ddr->timing_cfg_3 = 0x00000000; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 153 | ddr->timing_cfg_0 = 0x00260802; |
| 154 | ddr->timing_cfg_1 = 0x3935d322; |
| 155 | ddr->timing_cfg_2 = 0x14904cc8; |
Peter Tyser | e7ee23e | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 156 | ddr->sdram_mode = 0x00480432; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 157 | ddr->sdram_mode_2 = 0x00000000; |
| 158 | ddr->sdram_interval = 0x06180fff; /* 0x06180100; */ |
| 159 | ddr->sdram_data_init = 0xDEADBEEF; |
| 160 | ddr->sdram_clk_cntl = 0x03800000; |
| 161 | ddr->sdram_cfg_2 = 0x04400010; |
| 162 | |
| 163 | #if defined(CONFIG_DDR_ECC) |
| 164 | ddr->err_int_en = 0x0000000d; |
| 165 | ddr->err_disable = 0x00000000; |
| 166 | ddr->err_sbe = 0x00010000; |
| 167 | #endif |
| 168 | asm("sync;isync"); |
| 169 | |
| 170 | udelay(500); |
| 171 | |
Peter Tyser | e7ee23e | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 172 | ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/ |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 173 | |
| 174 | |
| 175 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 176 | d_init = 1; |
| 177 | debug("DDR - 1st controller: memory initializing\n"); |
| 178 | /* |
| 179 | * Poll until memory is initialized. |
| 180 | * 512 Meg at 400 might hit this 200 times or so. |
| 181 | */ |
| 182 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) |
| 183 | udelay(1000); |
| 184 | |
| 185 | debug("DDR: memory initialized\n\n"); |
| 186 | asm("sync; isync"); |
| 187 | udelay(500); |
| 188 | #endif |
| 189 | |
| 190 | return 512 * 1024 * 1024; |
| 191 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 192 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | #endif |
| 196 | |
| 197 | #if defined(CONFIG_PCI) |
| 198 | /* |
| 199 | * Initialize PCI Devices, report devices found. |
| 200 | */ |
| 201 | |
| 202 | #ifndef CONFIG_PCI_PNP |
| 203 | static struct pci_config_table pci_fsl86xxads_config_table[] = { |
| 204 | {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 205 | PCI_IDSEL_NUMBER, PCI_ANY_ID, |
| 206 | pci_cfgfunc_config_device, {PCI_ENET0_IOADDR, |
| 207 | PCI_ENET0_MEMADDR, |
| 208 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} }, |
| 209 | {} |
| 210 | }; |
| 211 | #endif |
| 212 | |
| 213 | |
| 214 | static struct pci_controller pci1_hose = { |
| 215 | #ifndef CONFIG_PCI_PNP |
| 216 | config_table:pci_mpc86xxcts_config_table |
| 217 | #endif |
| 218 | }; |
| 219 | #endif /* CONFIG_PCI */ |
| 220 | |
| 221 | #ifdef CONFIG_PCIE1 |
| 222 | static struct pci_controller pcie1_hose; |
| 223 | #endif |
| 224 | |
| 225 | #ifdef CONFIG_PCIE2 |
| 226 | static struct pci_controller pcie2_hose; |
| 227 | #endif |
| 228 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 229 | void pci_init_board(void) |
| 230 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 231 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 232 | volatile ccsr_gur_t *gur = &immap->im_gur; |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 233 | struct fsl_pci_info pci_info[3]; |
| 234 | u32 devdisr, pordevsr, io_sel; |
| 235 | int first_free_busno = 0; |
| 236 | int num = 0; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 237 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 238 | int pci_agent, pcie_ep, pcie_configured; |
| 239 | |
| 240 | devdisr = in_be32(&gur->devdisr); |
| 241 | pordevsr = in_be32(&gur->pordevsr); |
| 242 | io_sel = (pordevsr & MPC8610_PORDEVSR_IO_SEL) |
| 243 | >> MPC8610_PORDEVSR_IO_SEL_SHIFT; |
| 244 | |
| 245 | debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 246 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 247 | #ifdef CONFIG_PCIE1 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 248 | pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 249 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 250 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)){ |
| 251 | SET_STD_PCIE_INFO(pci_info[num], 1); |
| 252 | pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs); |
| 253 | printf (" PCIE1 connected to ULI as %s (base addr %lx)\n", |
Peter Tyser | 64917ca | 2010-01-17 15:38:26 -0600 | [diff] [blame] | 254 | pcie_ep ? "Endpoint" : "Root Complex", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 255 | pci_info[num].regs); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 256 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 257 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 258 | &pcie1_hose, first_free_busno); |
| 259 | } else { |
| 260 | printf (" PCIE1: disabled\n"); |
| 261 | } |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 262 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 263 | puts("\n"); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 264 | #else |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 265 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE1); /* disable */ |
| 266 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 267 | |
| 268 | #ifdef CONFIG_PCIE2 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 269 | pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 270 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 271 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)){ |
| 272 | SET_STD_PCIE_INFO(pci_info[num], 2); |
| 273 | pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs); |
| 274 | printf (" PCIE2 connected to Slot as %s (base addr %lx)\n", |
Peter Tyser | 64917ca | 2010-01-17 15:38:26 -0600 | [diff] [blame] | 275 | pcie_ep ? "Endpoint" : "Root Complex", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 276 | pci_info[num].regs); |
| 277 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 278 | &pcie2_hose, first_free_busno); |
| 279 | } else { |
| 280 | printf (" PCIE2: disabled\n"); |
| 281 | } |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 282 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 283 | puts("\n"); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 284 | #else |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 285 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE2); /* disable */ |
| 286 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 287 | |
| 288 | #ifdef CONFIG_PCI1 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 289 | if (!(devdisr & MPC86xx_DEVDISR_PCI1)) { |
| 290 | SET_STD_PCI_INFO(pci_info[num], 1); |
| 291 | pci_agent = fsl_setup_hose(&pci1_hose, pci_info[num].regs); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 292 | printf(" PCI connected to PCI slots as %s" \ |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 293 | " (base address %lx)\n", |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 294 | pci_agent ? "Agent" : "Host", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 295 | pci_info[num].regs); |
| 296 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 297 | &pci1_hose, first_free_busno); |
| 298 | } else { |
| 299 | printf (" PCI: disabled\n"); |
| 300 | } |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 301 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 302 | puts("\n"); |
| 303 | #else |
| 304 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */ |
| 305 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 306 | } |
| 307 | |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 308 | #if defined(CONFIG_OF_BOARD_SETUP) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 309 | void |
| 310 | ft_board_setup(void *blob, bd_t *bd) |
| 311 | { |
Peter Tyser | 8439f05 | 2009-09-21 23:09:28 -0500 | [diff] [blame] | 312 | ft_cpu_setup(blob, bd); |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 313 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 314 | #ifdef CONFIG_PCI1 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 315 | ft_fsl_pci_setup(blob, "pci0", &pci1_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 316 | #endif |
| 317 | #ifdef CONFIG_PCIE1 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 318 | ft_fsl_pci_setup(blob, "pci1", &pcie1_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 319 | #endif |
| 320 | #ifdef CONFIG_PCIE2 |
Kumar Gala | c2083e0 | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 321 | ft_fsl_pci_setup(blob, "pci2", &pcie2_hose); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 322 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 323 | } |
| 324 | #endif |
| 325 | |
| 326 | /* |
| 327 | * get_board_sys_clk |
| 328 | * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ |
| 329 | */ |
| 330 | |
| 331 | unsigned long |
| 332 | get_board_sys_clk(ulong dummy) |
| 333 | { |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 334 | u8 i; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 335 | ulong val = 0; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 336 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 337 | |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 338 | i = in_8(pixis_base + PIXIS_SPD); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 339 | i &= 0x07; |
| 340 | |
| 341 | switch (i) { |
| 342 | case 0: |
| 343 | val = 33333000; |
| 344 | break; |
| 345 | case 1: |
| 346 | val = 39999600; |
| 347 | break; |
| 348 | case 2: |
| 349 | val = 49999500; |
| 350 | break; |
| 351 | case 3: |
| 352 | val = 66666000; |
| 353 | break; |
| 354 | case 4: |
| 355 | val = 83332500; |
| 356 | break; |
| 357 | case 5: |
| 358 | val = 99999000; |
| 359 | break; |
| 360 | case 6: |
| 361 | val = 133332000; |
| 362 | break; |
| 363 | case 7: |
| 364 | val = 166665000; |
| 365 | break; |
| 366 | } |
| 367 | |
| 368 | return val; |
| 369 | } |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 370 | |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 371 | int board_eth_init(bd_t *bis) |
| 372 | { |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 373 | return pci_eth_init(bis); |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 374 | } |
Peter Tyser | 4ef630d | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 375 | |
| 376 | void board_reset(void) |
| 377 | { |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 378 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 379 | |
| 380 | out_8(pixis_base + PIXIS_RST, 0); |
Peter Tyser | 4ef630d | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 381 | |
| 382 | while (1) |
| 383 | ; |
| 384 | } |