Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2007-2009 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 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <command.h> |
| 25 | #include <pci.h> |
| 26 | #include <asm/processor.h> |
| 27 | #include <asm/mmu.h> |
| 28 | #include <asm/cache.h> |
| 29 | #include <asm/immap_85xx.h> |
| 30 | #include <asm/fsl_pci.h> |
| 31 | #include <asm/fsl_ddr_sdram.h> |
| 32 | #include <asm/io.h> |
| 33 | #include <miiphy.h> |
| 34 | #include <libfdt.h> |
| 35 | #include <fdt_support.h> |
| 36 | #include <tsec.h> |
| 37 | #include <asm/fsl_law.h> |
| 38 | #include <asm/mp.h> |
Roy Zang | 29c3518 | 2009-06-30 13:56:23 +0800 | [diff] [blame] | 39 | #include <netdev.h> |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 40 | |
| 41 | #include "../common/pixis.h" |
| 42 | #include "../common/sgmii_riser.h" |
| 43 | |
| 44 | DECLARE_GLOBAL_DATA_PTR; |
| 45 | |
| 46 | phys_size_t fixed_sdram(void); |
| 47 | |
| 48 | int checkboard(void) |
| 49 | { |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 50 | u8 sw7; |
| 51 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 52 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 53 | puts("Board: P2020DS "); |
| 54 | #ifdef CONFIG_PHYS_64BIT |
| 55 | puts("(36-bit addrmap) "); |
| 56 | #endif |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 57 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 58 | printf("Sys ID: 0x%02x, " |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 59 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 60 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 61 | in_8(pixis_base + PIXIS_PVER)); |
| 62 | |
| 63 | sw7 = in_8(pixis_base + PIXIS_SW(7)); |
| 64 | switch ((sw7 & PIXIS_SW7_LBMAP) >> 6) { |
| 65 | case 0: |
| 66 | case 1: |
| 67 | printf ("vBank: %d\n", ((sw7 & PIXIS_SW7_VBANK) >> 4)); |
| 68 | break; |
| 69 | case 2: |
| 70 | case 3: |
| 71 | puts ("Promjet\n"); |
| 72 | break; |
| 73 | } |
| 74 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | phys_size_t initdram(int board_type) |
| 79 | { |
| 80 | phys_size_t dram_size = 0; |
| 81 | |
| 82 | puts("Initializing...."); |
| 83 | |
| 84 | #ifdef CONFIG_SPD_EEPROM |
| 85 | dram_size = fsl_ddr_sdram(); |
| 86 | #else |
| 87 | dram_size = fixed_sdram(); |
| 88 | |
| 89 | if (set_ddr_laws(CONFIG_SYS_DDR_SDRAM_BASE, |
| 90 | dram_size, |
| 91 | LAW_TRGT_IF_DDR) < 0) { |
| 92 | printf("ERROR setting Local Access Windows for DDR\n"); |
| 93 | return 0; |
| 94 | }; |
| 95 | #endif |
| 96 | dram_size = setup_ddr_tlbs(dram_size / 0x100000); |
| 97 | dram_size *= 0x100000; |
| 98 | |
| 99 | puts(" DDR: "); |
| 100 | return dram_size; |
| 101 | } |
| 102 | |
| 103 | #if !defined(CONFIG_SPD_EEPROM) |
| 104 | /* |
| 105 | * Fixed sdram init -- doesn't use serial presence detect. |
| 106 | */ |
| 107 | |
| 108 | phys_size_t fixed_sdram(void) |
| 109 | { |
| 110 | volatile ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC85xx_DDR_ADDR; |
| 111 | uint d_init; |
| 112 | |
| 113 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
| 114 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 115 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 116 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
| 117 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 118 | ddr->sdram_md_cntl = CONFIG_SYS_DDR_MODE_CTRL; |
| 119 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 120 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 121 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 122 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
| 123 | ddr->ddr_zq_cntl = CONFIG_SYS_DDR_ZQ_CNTL; |
| 124 | ddr->ddr_wrlvl_cntl = CONFIG_SYS_DDR_WRLVL_CNTL; |
| 125 | ddr->ddr_cdr1 = CONFIG_SYS_DDR_CDR1; |
| 126 | ddr->timing_cfg_4 = CONFIG_SYS_DDR_TIMING_4; |
| 127 | ddr->timing_cfg_5 = CONFIG_SYS_DDR_TIMING_5; |
| 128 | |
| 129 | if (!strcmp("performance", getenv("perf_mode"))) { |
| 130 | /* Performance Mode Values */ |
| 131 | |
| 132 | ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG_PERF; |
| 133 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS_PERF; |
| 134 | ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS_PERF; |
| 135 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1_PERF; |
| 136 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2_PERF; |
| 137 | |
| 138 | asm("sync;isync"); |
| 139 | |
| 140 | udelay(500); |
| 141 | |
| 142 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL_PERF; |
| 143 | } else { |
| 144 | /* Stable Mode Values */ |
| 145 | |
| 146 | ddr->cs1_config = CONFIG_SYS_DDR_CS1_CONFIG; |
| 147 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 148 | ddr->cs1_bnds = CONFIG_SYS_DDR_CS1_BNDS; |
| 149 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 150 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 151 | |
| 152 | /* ECC will be assumed in stable mode */ |
| 153 | ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; |
| 154 | ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; |
| 155 | ddr->err_sbe = CONFIG_SYS_DDR_SBE; |
| 156 | |
| 157 | asm("sync;isync"); |
| 158 | |
| 159 | udelay(500); |
| 160 | |
| 161 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
| 162 | } |
| 163 | |
| 164 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 165 | d_init = 1; |
| 166 | debug("DDR - 1st controller: memory initializing\n"); |
| 167 | /* |
| 168 | * Poll until memory is initialized. |
| 169 | * 512 Meg at 400 might hit this 200 times or so. |
| 170 | */ |
| 171 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) |
| 172 | udelay(1000); |
| 173 | debug("DDR: memory initialized\n\n"); |
| 174 | asm("sync; isync"); |
| 175 | udelay(500); |
| 176 | #endif |
| 177 | |
| 178 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
| 179 | } |
| 180 | |
| 181 | #endif |
| 182 | |
| 183 | #ifdef CONFIG_PCIE1 |
| 184 | static struct pci_controller pcie1_hose; |
| 185 | #endif |
| 186 | |
| 187 | #ifdef CONFIG_PCIE2 |
| 188 | static struct pci_controller pcie2_hose; |
| 189 | #endif |
| 190 | |
| 191 | #ifdef CONFIG_PCIE3 |
| 192 | static struct pci_controller pcie3_hose; |
| 193 | #endif |
| 194 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 195 | #ifdef CONFIG_PCI |
| 196 | void pci_init_board(void) |
| 197 | { |
| 198 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 199 | struct fsl_pci_info pci_info[3]; |
Kumar Gala | 9263e82 | 2009-11-04 13:01:51 -0600 | [diff] [blame] | 200 | u32 devdisr, pordevsr, io_sel; |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 201 | int first_free_busno = 0; |
| 202 | int num = 0; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 203 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 204 | int pcie_ep, pcie_configured; |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 205 | |
| 206 | devdisr = in_be32(&gur->devdisr); |
| 207 | pordevsr = in_be32(&gur->pordevsr); |
| 208 | io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 209 | |
Kumar Gala | 9263e82 | 2009-11-04 13:01:51 -0600 | [diff] [blame] | 210 | debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 211 | |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 212 | if (!(pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS)) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 213 | printf(" eTSEC2 is in sgmii mode.\n"); |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 214 | if (!(pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS)) |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 215 | printf(" eTSEC3 is in sgmii mode.\n"); |
| 216 | |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 217 | puts("\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 218 | #ifdef CONFIG_PCIE2 |
Kumar Gala | 3e7b6c1 | 2009-09-02 09:03:08 -0500 | [diff] [blame] | 219 | pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 220 | |
| 221 | if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)) { |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 222 | SET_STD_PCIE_INFO(pci_info[num], 2); |
Kumar Gala | 9263e82 | 2009-11-04 13:01:51 -0600 | [diff] [blame] | 223 | pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs); |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 224 | printf(" PCIE2 connected to ULI as %s (base addr %lx)\n", |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 225 | pcie_ep ? "End Point" : "Root Complex", |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 226 | pci_info[num].regs); |
| 227 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
Kumar Gala | 01471d5 | 2009-11-04 01:29:04 -0600 | [diff] [blame] | 228 | &pcie2_hose, first_free_busno); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 229 | |
| 230 | /* |
| 231 | * The workaround doesn't work on p2020 because the location |
| 232 | * we try and read isn't valid on p2020, fix this later |
| 233 | */ |
| 234 | #if 0 |
| 235 | /* |
| 236 | * Activate ULI1575 legacy chip by performing a fake |
| 237 | * memory access. Needed to make ULI RTC work. |
| 238 | * Device 1d has the first on-board memory BAR. |
| 239 | */ |
| 240 | |
| 241 | pci_hose_read_config_dword(hose, PCI_BDF(2, 0x1d, 0), |
| 242 | PCI_BASE_ADDRESS_1, &temp32); |
| 243 | if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) { |
| 244 | void *p = pci_mem_to_virt(PCI_BDF(2, 0x1d, 0), |
| 245 | temp32, 4, 0); |
| 246 | debug(" uli1575 read to %p\n", p); |
| 247 | in_be32(p); |
| 248 | } |
| 249 | #endif |
| 250 | } else { |
| 251 | printf(" PCIE2: disabled\n"); |
| 252 | } |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 253 | puts("\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 254 | #else |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 255 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE2); /* disable */ |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 256 | #endif |
| 257 | |
| 258 | #ifdef CONFIG_PCIE3 |
Kumar Gala | 3e7b6c1 | 2009-09-02 09:03:08 -0500 | [diff] [blame] | 259 | pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_3, io_sel); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 260 | |
| 261 | if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)) { |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 262 | SET_STD_PCIE_INFO(pci_info[num], 3); |
Kumar Gala | 9263e82 | 2009-11-04 13:01:51 -0600 | [diff] [blame] | 263 | pcie_ep = fsl_setup_hose(&pcie3_hose, pci_info[num].regs); |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 264 | printf(" PCIE3 connected to Slot 1 as %s (base addr %lx)\n", |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 265 | pcie_ep ? "End Point" : "Root Complex", |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 266 | pci_info[num].regs); |
| 267 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
Kumar Gala | 01471d5 | 2009-11-04 01:29:04 -0600 | [diff] [blame] | 268 | &pcie3_hose, first_free_busno); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 269 | } else { |
| 270 | printf(" PCIE3: disabled\n"); |
| 271 | } |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 272 | puts("\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 273 | #else |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 274 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE3); /* disable */ |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 275 | #endif |
| 276 | |
| 277 | #ifdef CONFIG_PCIE1 |
Kumar Gala | 3e7b6c1 | 2009-09-02 09:03:08 -0500 | [diff] [blame] | 278 | pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 279 | |
| 280 | if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)) { |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 281 | SET_STD_PCIE_INFO(pci_info[num], 1); |
Kumar Gala | 9263e82 | 2009-11-04 13:01:51 -0600 | [diff] [blame] | 282 | pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs); |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 283 | printf(" PCIE1 connected to Slot 2 as %s (base addr %lx)\n", |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 284 | pcie_ep ? "End Point" : "Root Complex", |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 285 | pci_info[num].regs); |
| 286 | first_free_busno = fsl_pci_init_port(&pci_info[num++], |
Kumar Gala | 01471d5 | 2009-11-04 01:29:04 -0600 | [diff] [blame] | 287 | &pcie1_hose, first_free_busno); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 288 | } else { |
| 289 | printf(" PCIE1: disabled\n"); |
| 290 | } |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 291 | puts("\n"); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 292 | #else |
Kumar Gala | 4958af8 | 2009-09-03 09:42:01 -0500 | [diff] [blame] | 293 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */ |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 294 | #endif |
| 295 | } |
| 296 | #endif |
| 297 | |
| 298 | int board_early_init_r(void) |
| 299 | { |
| 300 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
Kumar Gala | 5fb6ea3 | 2009-11-13 09:25:07 -0600 | [diff] [blame^] | 301 | const u8 flash_esel = find_tlb_idx((void *)flashbase, 1); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 302 | |
| 303 | /* |
| 304 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 305 | * so that flash can be erased properly. |
| 306 | */ |
| 307 | |
| 308 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 309 | flush_dcache(); |
| 310 | invalidate_icache(); |
| 311 | |
| 312 | /* invalidate existing TLB entry for flash + promjet */ |
| 313 | disable_tlb(flash_esel); |
| 314 | |
| 315 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, |
| 316 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 317 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); |
| 318 | |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | #ifdef CONFIG_GET_CLK_FROM_ICS307 |
| 323 | /* decode S[0-2] to Output Divider (OD) */ |
| 324 | static unsigned char ics307_S_to_OD[] = { |
| 325 | 10, 2, 8, 4, 5, 7, 3, 6 |
| 326 | }; |
| 327 | |
| 328 | /* Calculate frequency being generated by ICS307-02 clock chip based upon |
| 329 | * the control bytes being programmed into it. */ |
| 330 | /* XXX: This function should probably go into a common library */ |
| 331 | static unsigned long |
| 332 | ics307_clk_freq(unsigned char cw0, unsigned char cw1, unsigned char cw2) |
| 333 | { |
| 334 | const unsigned long InputFrequency = CONFIG_ICS307_REFCLK_HZ; |
| 335 | unsigned long VDW = ((cw1 << 1) & 0x1FE) + ((cw2 >> 7) & 1); |
| 336 | unsigned long RDW = cw2 & 0x7F; |
| 337 | unsigned long OD = ics307_S_to_OD[cw0 & 0x7]; |
| 338 | unsigned long freq; |
| 339 | |
| 340 | /* CLK1Frequency = InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD) */ |
| 341 | |
| 342 | /* cw0: C1 C0 TTL F1 F0 S2 S1 S0 |
| 343 | * cw1: V8 V7 V6 V5 V4 V3 V2 V1 |
| 344 | * cw2: V0 R6 R5 R4 R3 R2 R1 R0 |
| 345 | * |
| 346 | * R6:R0 = Reference Divider Word (RDW) |
| 347 | * V8:V0 = VCO Divider Word (VDW) |
| 348 | * S2:S0 = Output Divider Select (OD) |
| 349 | * F1:F0 = Function of CLK2 Output |
| 350 | * TTL = duty cycle |
| 351 | * C1:C0 = internal load capacitance for cyrstal |
| 352 | */ |
| 353 | |
| 354 | /* Adding 1 to get a "nicely" rounded number, but this needs |
| 355 | * more tweaking to get a "properly" rounded number. */ |
| 356 | |
| 357 | freq = 1 + (InputFrequency * 2 * (VDW + 8) / ((RDW + 2) * OD)); |
| 358 | |
| 359 | debug("ICS307: CW[0-2]: %02X %02X %02X => %lu Hz\n", cw0, cw1, cw2, |
| 360 | freq); |
| 361 | return freq; |
| 362 | } |
| 363 | |
| 364 | unsigned long get_board_sys_clk(ulong dummy) |
| 365 | { |
| 366 | return gd->bus_clk; |
| 367 | } |
| 368 | |
| 369 | unsigned long get_board_ddr_clk(ulong dummy) |
| 370 | { |
| 371 | return gd->mem_clk; |
| 372 | } |
| 373 | |
| 374 | unsigned long |
| 375 | calculate_board_sys_clk(ulong dummy) |
| 376 | { |
| 377 | ulong val; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 378 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 379 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 380 | val = ics307_clk_freq( |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 381 | in_8(pixis_base + PIXIS_VSYSCLK0), |
| 382 | in_8(pixis_base + PIXIS_VSYSCLK1), |
| 383 | in_8(pixis_base + PIXIS_VSYSCLK2)); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 384 | debug("sysclk val = %lu\n", val); |
| 385 | return val; |
| 386 | } |
| 387 | |
| 388 | unsigned long |
| 389 | calculate_board_ddr_clk(ulong dummy) |
| 390 | { |
| 391 | ulong val; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 392 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 393 | |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 394 | val = ics307_clk_freq( |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 395 | in_8(pixis_base + PIXIS_VDDRCLK0), |
| 396 | in_8(pixis_base + PIXIS_VDDRCLK1), |
| 397 | in_8(pixis_base + PIXIS_VDDRCLK2)); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 398 | debug("ddrclk val = %lu\n", val); |
| 399 | return val; |
| 400 | } |
| 401 | #else |
| 402 | unsigned long get_board_sys_clk(ulong dummy) |
| 403 | { |
| 404 | u8 i; |
| 405 | ulong val = 0; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 406 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 407 | |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 408 | i = in_8(pixis_base + PIXIS_SPD); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 409 | i &= 0x07; |
| 410 | |
| 411 | switch (i) { |
| 412 | case 0: |
| 413 | val = 33333333; |
| 414 | break; |
| 415 | case 1: |
| 416 | val = 40000000; |
| 417 | break; |
| 418 | case 2: |
| 419 | val = 50000000; |
| 420 | break; |
| 421 | case 3: |
| 422 | val = 66666666; |
| 423 | break; |
| 424 | case 4: |
| 425 | val = 83333333; |
| 426 | break; |
| 427 | case 5: |
| 428 | val = 100000000; |
| 429 | break; |
| 430 | case 6: |
| 431 | val = 133333333; |
| 432 | break; |
| 433 | case 7: |
| 434 | val = 166666666; |
| 435 | break; |
| 436 | } |
| 437 | |
| 438 | return val; |
| 439 | } |
| 440 | |
| 441 | unsigned long get_board_ddr_clk(ulong dummy) |
| 442 | { |
| 443 | u8 i; |
| 444 | ulong val = 0; |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 445 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 446 | |
Kumar Gala | 048e7ef | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 447 | i = in_8(pixis_base + PIXIS_SPD); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 448 | i &= 0x38; |
| 449 | i >>= 3; |
| 450 | |
| 451 | switch (i) { |
| 452 | case 0: |
| 453 | val = 33333333; |
| 454 | break; |
| 455 | case 1: |
| 456 | val = 40000000; |
| 457 | break; |
| 458 | case 2: |
| 459 | val = 50000000; |
| 460 | break; |
| 461 | case 3: |
| 462 | val = 66666666; |
| 463 | break; |
| 464 | case 4: |
| 465 | val = 83333333; |
| 466 | break; |
| 467 | case 5: |
| 468 | val = 100000000; |
| 469 | break; |
| 470 | case 6: |
| 471 | val = 133333333; |
| 472 | break; |
| 473 | case 7: |
| 474 | val = 166666666; |
| 475 | break; |
| 476 | } |
| 477 | return val; |
| 478 | } |
| 479 | #endif |
| 480 | |
| 481 | #ifdef CONFIG_TSEC_ENET |
| 482 | int board_eth_init(bd_t *bis) |
| 483 | { |
| 484 | struct tsec_info_struct tsec_info[4]; |
| 485 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 486 | int num = 0; |
| 487 | |
| 488 | #ifdef CONFIG_TSEC1 |
| 489 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
| 490 | num++; |
| 491 | #endif |
| 492 | #ifdef CONFIG_TSEC2 |
| 493 | SET_STD_TSEC_INFO(tsec_info[num], 2); |
| 494 | if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS)) |
| 495 | tsec_info[num].flags |= TSEC_SGMII; |
| 496 | num++; |
| 497 | #endif |
| 498 | #ifdef CONFIG_TSEC3 |
| 499 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
| 500 | if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS)) |
| 501 | tsec_info[num].flags |= TSEC_SGMII; |
| 502 | num++; |
| 503 | #endif |
| 504 | |
| 505 | if (!num) { |
| 506 | printf("No TSECs initialized\n"); |
| 507 | |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | #ifdef CONFIG_FSL_SGMII_RISER |
| 512 | fsl_sgmii_riser_init(tsec_info, num); |
| 513 | #endif |
| 514 | |
| 515 | tsec_eth_init(bis, tsec_info, num); |
| 516 | |
Roy Zang | 29c3518 | 2009-06-30 13:56:23 +0800 | [diff] [blame] | 517 | return pci_eth_init(bis); |
Srikanth Srinivasan | feb7838 | 2009-04-03 15:36:13 -0500 | [diff] [blame] | 518 | } |
| 519 | #endif |
| 520 | |
| 521 | #if defined(CONFIG_OF_BOARD_SETUP) |
| 522 | void ft_board_setup(void *blob, bd_t *bd) |
| 523 | { |
| 524 | phys_addr_t base; |
| 525 | phys_size_t size; |
| 526 | |
| 527 | ft_cpu_setup(blob, bd); |
| 528 | |
| 529 | base = getenv_bootm_low(); |
| 530 | size = getenv_bootm_size(); |
| 531 | |
| 532 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 533 | |
| 534 | #ifdef CONFIG_PCIE3 |
| 535 | ft_fsl_pci_setup(blob, "pci0", &pcie3_hose); |
| 536 | #endif |
| 537 | #ifdef CONFIG_PCIE2 |
| 538 | ft_fsl_pci_setup(blob, "pci1", &pcie2_hose); |
| 539 | #endif |
| 540 | #ifdef CONFIG_PCIE1 |
| 541 | ft_fsl_pci_setup(blob, "pci2", &pcie1_hose); |
| 542 | #endif |
| 543 | #ifdef CONFIG_FSL_SGMII_RISER |
| 544 | fsl_sgmii_riser_fdt_fixup(blob); |
| 545 | #endif |
| 546 | } |
| 547 | #endif |
| 548 | |
| 549 | #ifdef CONFIG_MP |
| 550 | void board_lmb_reserve(struct lmb *lmb) |
| 551 | { |
| 552 | cpu_mp_lmb_reserve(lmb); |
| 553 | } |
| 554 | #endif |