Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 1 | /* |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 2 | * Copyright 2007,2009-2010 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 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 37 | void sdram_init(void); |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 38 | phys_size_t fixed_sdram(void); |
Timur Tabi | e69e520 | 2010-08-31 19:56:43 -0500 | [diff] [blame] | 39 | int mpc8610hpcd_diu_init(void); |
Jon Loeliger | c9974ab | 2008-01-04 11:58:23 -0600 | [diff] [blame] | 40 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 41 | |
| 42 | /* called before any console output */ |
| 43 | int board_early_init_f(void) |
| 44 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 46 | volatile ccsr_gur_t *gur = &immap->im_gur; |
| 47 | |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 48 | gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */ |
| 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
| 53 | int misc_init_r(void) |
| 54 | { |
| 55 | u8 tmp_val, version; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 56 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 57 | |
| 58 | /*Do not use 8259PIC*/ |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 59 | tmp_val = in_8(pixis_base + PIXIS_BRDCFG0); |
| 60 | out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80); |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 61 | |
| 62 | /*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] | 63 | version = in_8(pixis_base + PIXIS_PVER); |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 64 | if(version >= 0x07) { |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 65 | tmp_val = in_8(pixis_base + PIXIS_BRDCFG0); |
| 66 | out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf); |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | /* Using this for DIU init before the driver in linux takes over |
| 70 | * Enable the TFP410 Encoder (I2C address 0x38) |
| 71 | */ |
| 72 | |
| 73 | tmp_val = 0xBF; |
| 74 | i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val)); |
| 75 | /* Verify if enabled */ |
| 76 | tmp_val = 0; |
| 77 | i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val)); |
| 78 | debug("DVI Encoder Read: 0x%02lx\n",tmp_val); |
| 79 | |
| 80 | tmp_val = 0x10; |
| 81 | i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val)); |
| 82 | /* Verify if enabled */ |
| 83 | tmp_val = 0; |
| 84 | i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val)); |
| 85 | debug("DVI Encoder Read: 0x%02lx\n",tmp_val); |
| 86 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | int checkboard(void) |
| 91 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 93 | volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 94 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 95 | |
Wolfgang Denk | 9b55a25 | 2008-07-11 01:16:00 +0200 | [diff] [blame] | 96 | printf ("Board: MPC8610HPCD, System ID: 0x%02x, " |
| 97 | "System Version: 0x%02x, FPGA Version: 0x%02x\n", |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 98 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 99 | in_8(pixis_base + PIXIS_PVER)); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 100 | |
| 101 | mcm->abcr |= 0x00010000; /* 0 */ |
| 102 | mcm->hpmr3 = 0x80000008; /* 4c */ |
| 103 | mcm->hpmr0 = 0; |
| 104 | mcm->hpmr1 = 0; |
| 105 | mcm->hpmr2 = 0; |
| 106 | mcm->hpmr4 = 0; |
| 107 | mcm->hpmr5 = 0; |
| 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 113 | phys_size_t |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 114 | initdram(int board_type) |
| 115 | { |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 116 | phys_size_t dram_size = 0; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 117 | |
| 118 | #if defined(CONFIG_SPD_EEPROM) |
Jon Loeliger | 39aa1a7 | 2008-08-26 15:01:36 -0500 | [diff] [blame] | 119 | dram_size = fsl_ddr_sdram(); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 120 | #else |
| 121 | dram_size = fixed_sdram(); |
| 122 | #endif |
| 123 | |
Timur Tabi | 9ff32d8 | 2010-03-29 12:51:07 -0500 | [diff] [blame] | 124 | setup_ddr_bat(dram_size); |
| 125 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 126 | puts(" DDR: "); |
| 127 | return dram_size; |
| 128 | } |
| 129 | |
| 130 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 131 | #if !defined(CONFIG_SPD_EEPROM) |
| 132 | /* |
| 133 | * Fixed sdram init -- doesn't use serial presence detect. |
| 134 | */ |
| 135 | |
Becky Bruce | 4c77de3 | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 136 | phys_size_t fixed_sdram(void) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 137 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 138 | #if !defined(CONFIG_SYS_RAMBOOT) |
| 139 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 140 | volatile ccsr_ddr_t *ddr = &immap->im_ddr1; |
| 141 | uint d_init; |
| 142 | |
| 143 | ddr->cs0_bnds = 0x0000001f; |
| 144 | ddr->cs0_config = 0x80010202; |
| 145 | |
Kumar Gala | 45239cf | 2008-04-29 10:27:08 -0500 | [diff] [blame] | 146 | ddr->timing_cfg_3 = 0x00000000; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 147 | ddr->timing_cfg_0 = 0x00260802; |
| 148 | ddr->timing_cfg_1 = 0x3935d322; |
| 149 | ddr->timing_cfg_2 = 0x14904cc8; |
Peter Tyser | e7ee23e | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 150 | ddr->sdram_mode = 0x00480432; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 151 | ddr->sdram_mode_2 = 0x00000000; |
| 152 | ddr->sdram_interval = 0x06180fff; /* 0x06180100; */ |
| 153 | ddr->sdram_data_init = 0xDEADBEEF; |
| 154 | ddr->sdram_clk_cntl = 0x03800000; |
| 155 | ddr->sdram_cfg_2 = 0x04400010; |
| 156 | |
| 157 | #if defined(CONFIG_DDR_ECC) |
| 158 | ddr->err_int_en = 0x0000000d; |
| 159 | ddr->err_disable = 0x00000000; |
| 160 | ddr->err_sbe = 0x00010000; |
| 161 | #endif |
| 162 | asm("sync;isync"); |
| 163 | |
| 164 | udelay(500); |
| 165 | |
Peter Tyser | e7ee23e | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 166 | ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/ |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 167 | |
| 168 | |
| 169 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 170 | d_init = 1; |
| 171 | debug("DDR - 1st controller: memory initializing\n"); |
| 172 | /* |
| 173 | * Poll until memory is initialized. |
| 174 | * 512 Meg at 400 might hit this 200 times or so. |
| 175 | */ |
| 176 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) |
| 177 | udelay(1000); |
| 178 | |
| 179 | debug("DDR: memory initialized\n\n"); |
| 180 | asm("sync; isync"); |
| 181 | udelay(500); |
| 182 | #endif |
| 183 | |
| 184 | return 512 * 1024 * 1024; |
| 185 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 186 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | #endif |
| 190 | |
| 191 | #if defined(CONFIG_PCI) |
| 192 | /* |
| 193 | * Initialize PCI Devices, report devices found. |
| 194 | */ |
| 195 | |
| 196 | #ifndef CONFIG_PCI_PNP |
| 197 | static struct pci_config_table pci_fsl86xxads_config_table[] = { |
| 198 | {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 199 | PCI_IDSEL_NUMBER, PCI_ANY_ID, |
| 200 | pci_cfgfunc_config_device, {PCI_ENET0_IOADDR, |
| 201 | PCI_ENET0_MEMADDR, |
| 202 | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} }, |
| 203 | {} |
| 204 | }; |
| 205 | #endif |
| 206 | |
| 207 | |
| 208 | static struct pci_controller pci1_hose = { |
| 209 | #ifndef CONFIG_PCI_PNP |
| 210 | config_table:pci_mpc86xxcts_config_table |
| 211 | #endif |
| 212 | }; |
| 213 | #endif /* CONFIG_PCI */ |
| 214 | |
| 215 | #ifdef CONFIG_PCIE1 |
| 216 | static struct pci_controller pcie1_hose; |
| 217 | #endif |
| 218 | |
| 219 | #ifdef CONFIG_PCIE2 |
| 220 | static struct pci_controller pcie2_hose; |
| 221 | #endif |
| 222 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 223 | void pci_init_board(void) |
| 224 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 226 | volatile ccsr_gur_t *gur = &immap->im_gur; |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 227 | struct fsl_pci_info pci_info[3]; |
| 228 | u32 devdisr, pordevsr, io_sel; |
| 229 | int first_free_busno = 0; |
| 230 | int num = 0; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 231 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 232 | int pci_agent, pcie_ep, pcie_configured; |
| 233 | |
| 234 | devdisr = in_be32(&gur->devdisr); |
| 235 | pordevsr = in_be32(&gur->pordevsr); |
| 236 | io_sel = (pordevsr & MPC8610_PORDEVSR_IO_SEL) |
| 237 | >> MPC8610_PORDEVSR_IO_SEL_SHIFT; |
| 238 | |
| 239 | 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] | 240 | |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 241 | #ifdef CONFIG_PCIE1 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 242 | 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] | 243 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 244 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)){ |
| 245 | SET_STD_PCIE_INFO(pci_info[num], 1); |
| 246 | pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs); |
| 247 | printf (" PCIE1 connected to ULI as %s (base addr %lx)\n", |
Peter Tyser | 64917ca | 2010-01-17 15:38:26 -0600 | [diff] [blame] | 248 | pcie_ep ? "Endpoint" : "Root Complex", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 249 | pci_info[num].regs); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 250 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 251 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 252 | &pcie1_hose, first_free_busno); |
| 253 | } else { |
| 254 | printf (" PCIE1: disabled\n"); |
| 255 | } |
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 | puts("\n"); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 258 | #else |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 259 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE1); /* disable */ |
| 260 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 261 | |
| 262 | #ifdef CONFIG_PCIE2 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 263 | 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] | 264 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 265 | if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)){ |
| 266 | SET_STD_PCIE_INFO(pci_info[num], 2); |
| 267 | pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs); |
| 268 | printf (" PCIE2 connected to Slot as %s (base addr %lx)\n", |
Peter Tyser | 64917ca | 2010-01-17 15:38:26 -0600 | [diff] [blame] | 269 | pcie_ep ? "Endpoint" : "Root Complex", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 270 | pci_info[num].regs); |
| 271 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 272 | &pcie2_hose, first_free_busno); |
| 273 | } else { |
| 274 | printf (" PCIE2: disabled\n"); |
| 275 | } |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 276 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 277 | puts("\n"); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 278 | #else |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 279 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE2); /* disable */ |
| 280 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 281 | |
| 282 | #ifdef CONFIG_PCI1 |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 283 | if (!(devdisr & MPC86xx_DEVDISR_PCI1)) { |
| 284 | SET_STD_PCI_INFO(pci_info[num], 1); |
| 285 | pci_agent = fsl_setup_hose(&pci1_hose, pci_info[num].regs); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 286 | printf(" PCI connected to PCI slots as %s" \ |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 287 | " (base address %lx)\n", |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 288 | pci_agent ? "Agent" : "Host", |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 289 | pci_info[num].regs); |
| 290 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
| 291 | &pci1_hose, first_free_busno); |
| 292 | } else { |
| 293 | printf (" PCI: disabled\n"); |
| 294 | } |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 295 | |
Kumar Gala | 5e3d705 | 2009-11-04 12:51:10 -0600 | [diff] [blame] | 296 | puts("\n"); |
| 297 | #else |
| 298 | setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */ |
| 299 | #endif |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 300 | } |
| 301 | |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 302 | #if defined(CONFIG_OF_BOARD_SETUP) |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 303 | void |
| 304 | ft_board_setup(void *blob, bd_t *bd) |
| 305 | { |
Peter Tyser | 8439f05 | 2009-09-21 23:09:28 -0500 | [diff] [blame] | 306 | ft_cpu_setup(blob, bd); |
Jon Loeliger | 1df170f | 2008-01-04 12:07:27 -0600 | [diff] [blame] | 307 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 308 | FT_FSL_PCI_SETUP; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 309 | } |
| 310 | #endif |
| 311 | |
| 312 | /* |
| 313 | * get_board_sys_clk |
| 314 | * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ |
| 315 | */ |
| 316 | |
| 317 | unsigned long |
| 318 | get_board_sys_clk(ulong dummy) |
| 319 | { |
York Sun | a877880 | 2007-10-29 13:58:39 -0500 | [diff] [blame] | 320 | u8 i; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 321 | ulong val = 0; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 322 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 323 | |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 324 | i = in_8(pixis_base + PIXIS_SPD); |
Jon Loeliger | 3dd2db5 | 2007-10-16 13:54:01 -0500 | [diff] [blame] | 325 | i &= 0x07; |
| 326 | |
| 327 | switch (i) { |
| 328 | case 0: |
| 329 | val = 33333000; |
| 330 | break; |
| 331 | case 1: |
| 332 | val = 39999600; |
| 333 | break; |
| 334 | case 2: |
| 335 | val = 49999500; |
| 336 | break; |
| 337 | case 3: |
| 338 | val = 66666000; |
| 339 | break; |
| 340 | case 4: |
| 341 | val = 83332500; |
| 342 | break; |
| 343 | case 5: |
| 344 | val = 99999000; |
| 345 | break; |
| 346 | case 6: |
| 347 | val = 133332000; |
| 348 | break; |
| 349 | case 7: |
| 350 | val = 166665000; |
| 351 | break; |
| 352 | } |
| 353 | |
| 354 | return val; |
| 355 | } |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 356 | |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 357 | int board_eth_init(bd_t *bis) |
| 358 | { |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 359 | return pci_eth_init(bis); |
Ben Warren | 65d3d99 | 2008-07-11 23:42:19 -0700 | [diff] [blame] | 360 | } |
Peter Tyser | 4ef630d | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 361 | |
| 362 | void board_reset(void) |
| 363 | { |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 364 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 365 | |
| 366 | out_8(pixis_base + PIXIS_RST, 0); |
Peter Tyser | 4ef630d | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 367 | |
| 368 | while (1) |
| 369 | ; |
| 370 | } |