Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * Copyright (c) 2005 Cisco Systems. All rights reserved. |
| 6 | * Roland Dreier <rolandd@cisco.com> |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <asm/processor.h> |
| 24 | #include <asm-ppc/io.h> |
| 25 | #include <ppc4xx.h> |
| 26 | #include <common.h> |
| 27 | #include <pci.h> |
| 28 | |
| 29 | #include "440spe_pcie.h" |
| 30 | |
| 31 | #if defined(CONFIG_440SPE) |
| 32 | #if defined(CONFIG_PCI) |
| 33 | |
| 34 | enum { |
| 35 | PTYPE_ENDPOINT = 0x0, |
| 36 | PTYPE_LEGACY_ENDPOINT = 0x1, |
| 37 | PTYPE_ROOT_PORT = 0x4, |
| 38 | |
| 39 | LNKW_X1 = 0x1, |
| 40 | LNKW_X4 = 0x4, |
| 41 | LNKW_X8 = 0x8 |
| 42 | }; |
| 43 | |
| 44 | static int pcie_read_config(struct pci_controller *hose, unsigned int devfn, |
| 45 | int offset, int len, u32 *val) { |
| 46 | |
| 47 | *val = 0; |
| 48 | /* |
| 49 | * 440SPE implements only one function per port |
| 50 | */ |
| 51 | if (!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 1))) |
| 52 | return 0; |
| 53 | |
| 54 | devfn = PCI_BDF(0,0,0); |
| 55 | offset += devfn << 4; |
| 56 | |
| 57 | switch (len) { |
| 58 | case 1: |
| 59 | *val = in_8(hose->cfg_data + offset); |
| 60 | break; |
| 61 | case 2: |
| 62 | *val = in_le16((u16 *)(hose->cfg_data + offset)); |
| 63 | break; |
| 64 | default: |
| 65 | *val = in_le32((u32 *)(hose->cfg_data + offset)); |
| 66 | break; |
| 67 | } |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static int pcie_write_config(struct pci_controller *hose, unsigned int devfn, |
| 72 | int offset, int len, u32 val) { |
| 73 | |
| 74 | /* |
| 75 | * 440SPE implements only one function per port |
| 76 | */ |
| 77 | if (!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 1))) |
| 78 | return 0; |
| 79 | |
| 80 | devfn = PCI_BDF(0,0,0); |
| 81 | offset += devfn << 4; |
| 82 | |
| 83 | switch (len) { |
| 84 | case 1: |
| 85 | out_8(hose->cfg_data + offset, val); |
| 86 | break; |
| 87 | case 2: |
| 88 | out_le16((u16 *)(hose->cfg_data + offset), val); |
| 89 | break; |
| 90 | default: |
| 91 | out_le32((u32 *)(hose->cfg_data + offset), val); |
| 92 | break; |
| 93 | } |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | int pcie_read_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 *val) |
| 98 | { |
| 99 | u32 v; |
| 100 | int rv; |
| 101 | |
| 102 | rv = pcie_read_config(hose, dev, offset, 1, &v); |
| 103 | *val = (u8)v; |
| 104 | return rv; |
| 105 | } |
| 106 | |
| 107 | int pcie_read_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 *val) |
| 108 | { |
| 109 | u32 v; |
| 110 | int rv; |
| 111 | |
| 112 | rv = pcie_read_config(hose, dev, offset, 2, &v); |
| 113 | *val = (u16)v; |
| 114 | return rv; |
| 115 | } |
| 116 | |
| 117 | int pcie_read_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 *val) |
| 118 | { |
| 119 | u32 v; |
| 120 | int rv; |
| 121 | |
| 122 | rv = pcie_read_config(hose, dev, offset, 3, &v); |
| 123 | *val = (u32)v; |
| 124 | return rv; |
| 125 | } |
| 126 | |
| 127 | int pcie_write_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 val) |
| 128 | { |
| 129 | return pcie_write_config(hose,(u32)dev,offset,1,val); |
| 130 | } |
| 131 | |
| 132 | int pcie_write_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 val) |
| 133 | { |
| 134 | return pcie_write_config(hose,(u32)dev,offset,2,(u32 )val); |
| 135 | } |
| 136 | |
| 137 | int pcie_write_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 val) |
| 138 | { |
| 139 | return pcie_write_config(hose,(u32)dev,offset,3,(u32 )val); |
| 140 | } |
| 141 | |
| 142 | static void ppc440spe_setup_utl(u32 port) { |
| 143 | |
| 144 | volatile void *utl_base = NULL; |
| 145 | |
| 146 | /* |
| 147 | * Map UTL registers |
| 148 | */ |
| 149 | switch (port) { |
| 150 | case 0: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 151 | mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x0000000c); |
| 152 | mtdcr(DCRN_PEGPL_REGBAL(PCIE0), 0x20000000); |
| 153 | mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 154 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 155 | break; |
| 156 | |
| 157 | case 1: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 158 | mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x0000000c); |
| 159 | mtdcr(DCRN_PEGPL_REGBAL(PCIE1), 0x20001000); |
| 160 | mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 161 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 162 | break; |
| 163 | |
| 164 | case 2: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 165 | mtdcr(DCRN_PEGPL_REGBAH(PCIE2), 0x0000000c); |
| 166 | mtdcr(DCRN_PEGPL_REGBAL(PCIE2), 0x20002000); |
| 167 | mtdcr(DCRN_PEGPL_REGMSK(PCIE2), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 168 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE2), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 169 | break; |
| 170 | } |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 171 | utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port); |
Wolfgang Denk | 1685091 | 2006-08-27 18:10:01 +0200 | [diff] [blame] | 172 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 173 | /* |
| 174 | * Set buffer allocations and then assert VRB and TXE. |
| 175 | */ |
| 176 | out_be32(utl_base + PEUTL_OUTTR, 0x08000000); |
| 177 | out_be32(utl_base + PEUTL_INTR, 0x02000000); |
| 178 | out_be32(utl_base + PEUTL_OPDBSZ, 0x10000000); |
| 179 | out_be32(utl_base + PEUTL_PBBSZ, 0x53000000); |
| 180 | out_be32(utl_base + PEUTL_IPHBSZ, 0x08000000); |
| 181 | out_be32(utl_base + PEUTL_IPDBSZ, 0x10000000); |
| 182 | out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000); |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 183 | out_be32(utl_base + PEUTL_PCTL, 0x80800066); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | static int check_error(void) |
| 187 | { |
| 188 | u32 valPE0, valPE1, valPE2; |
| 189 | int err = 0; |
| 190 | |
| 191 | /* SDR0_PEGPLLLCT1 reset */ |
| 192 | if (!(valPE0 = SDR_READ(PESDR0_PLLLCT1) & 0x01000000)) { |
| 193 | printf("PCIE: SDR0_PEGPLLLCT1 reset error 0x%x\n", valPE0); |
| 194 | } |
| 195 | |
| 196 | valPE0 = SDR_READ(PESDR0_RCSSET); |
| 197 | valPE1 = SDR_READ(PESDR1_RCSSET); |
| 198 | valPE2 = SDR_READ(PESDR2_RCSSET); |
| 199 | |
| 200 | /* SDR0_PExRCSSET rstgu */ |
| 201 | if (!(valPE0 & 0x01000000) || |
| 202 | !(valPE1 & 0x01000000) || |
| 203 | !(valPE2 & 0x01000000)) { |
| 204 | printf("PCIE: SDR0_PExRCSSET rstgu error\n"); |
| 205 | err = -1; |
| 206 | } |
| 207 | |
| 208 | /* SDR0_PExRCSSET rstdl */ |
| 209 | if (!(valPE0 & 0x00010000) || |
| 210 | !(valPE1 & 0x00010000) || |
| 211 | !(valPE2 & 0x00010000)) { |
| 212 | printf("PCIE: SDR0_PExRCSSET rstdl error\n"); |
| 213 | err = -1; |
| 214 | } |
| 215 | |
| 216 | /* SDR0_PExRCSSET rstpyn */ |
| 217 | if ((valPE0 & 0x00001000) || |
| 218 | (valPE1 & 0x00001000) || |
| 219 | (valPE2 & 0x00001000)) { |
| 220 | printf("PCIE: SDR0_PExRCSSET rstpyn error\n"); |
| 221 | err = -1; |
| 222 | } |
| 223 | |
| 224 | /* SDR0_PExRCSSET hldplb */ |
| 225 | if ((valPE0 & 0x10000000) || |
| 226 | (valPE1 & 0x10000000) || |
| 227 | (valPE2 & 0x10000000)) { |
| 228 | printf("PCIE: SDR0_PExRCSSET hldplb error\n"); |
| 229 | err = -1; |
| 230 | } |
| 231 | |
| 232 | /* SDR0_PExRCSSET rdy */ |
| 233 | if ((valPE0 & 0x00100000) || |
| 234 | (valPE1 & 0x00100000) || |
| 235 | (valPE2 & 0x00100000)) { |
| 236 | printf("PCIE: SDR0_PExRCSSET rdy error\n"); |
| 237 | err = -1; |
| 238 | } |
| 239 | |
| 240 | /* SDR0_PExRCSSET shutdown */ |
| 241 | if ((valPE0 & 0x00000100) || |
| 242 | (valPE1 & 0x00000100) || |
| 243 | (valPE2 & 0x00000100)) { |
| 244 | printf("PCIE: SDR0_PExRCSSET shutdown error\n"); |
| 245 | err = -1; |
| 246 | } |
| 247 | return err; |
| 248 | } |
| 249 | |
| 250 | /* |
| 251 | * Initialize PCI Express core |
| 252 | */ |
| 253 | int ppc440spe_init_pcie(void) |
| 254 | { |
| 255 | int time_out = 20; |
| 256 | |
| 257 | /* Set PLL clock receiver to LVPECL */ |
| 258 | SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) | 1 << 28); |
| 259 | |
| 260 | if (check_error()) |
| 261 | return -1; |
| 262 | |
| 263 | if (!(SDR_READ(PESDR0_PLLLCT2) & 0x10000)) |
| 264 | { |
| 265 | printf("PCIE: PESDR_PLLCT2 resistance calibration failed (0x%08x)\n", |
| 266 | SDR_READ(PESDR0_PLLLCT2)); |
| 267 | return -1; |
| 268 | } |
| 269 | /* De-assert reset of PCIe PLL, wait for lock */ |
| 270 | SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) & ~(1 << 24)); |
| 271 | udelay(3); |
| 272 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 273 | while (time_out) { |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 274 | if (!(SDR_READ(PESDR0_PLLLCT3) & 0x10000000)) { |
| 275 | time_out--; |
| 276 | udelay(1); |
| 277 | } else |
| 278 | break; |
| 279 | } |
| 280 | if (!time_out) { |
| 281 | printf("PCIE: VCO output not locked\n"); |
| 282 | return -1; |
| 283 | } |
| 284 | return 0; |
| 285 | } |
| 286 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 287 | /* |
| 288 | * Yucca board as End point and root point setup |
| 289 | * and |
| 290 | * testing inbound and out bound windows |
| 291 | * |
| 292 | * YUCCA board can be plugged into another yucca board or you can get PCI-E |
| 293 | * cable which can be used to setup loop back from one port to another port. |
| 294 | * Please rememeber that unless there is a endpoint plugged in to root port it |
| 295 | * will not initialize. It is the same in case of endpoint , unless there is |
| 296 | * root port attached it will not initialize. |
| 297 | * |
| 298 | * In this release of software all the PCI-E ports are configured as either |
| 299 | * endpoint or rootpoint.In future we will have support for selective ports |
| 300 | * setup as endpoint and root point in single board. |
| 301 | * |
| 302 | * Once your board came up as root point , you can verify by reading |
| 303 | * /proc/bus/pci/devices. Where you can see the configuration registers |
| 304 | * of end point device attached to the port. |
| 305 | * |
| 306 | * Enpoint cofiguration can be verified by connecting Yucca board to any |
| 307 | * host or another yucca board. Then try to scan the device. In case of |
| 308 | * linux use "lspci" or appripriate os command. |
| 309 | * |
| 310 | * How do I verify the inbound and out bound windows ?(yucca to yucca) |
| 311 | * in this configuration inbound and outbound windows are setup to access |
| 312 | * sram memroy area. SRAM is at 0x4 0000 0000 , on PLB bus. This address |
| 313 | * is mapped at 0x90000000. From u-boot prompt write data 0xb000 0000, |
| 314 | * This is waere your POM(PLB out bound memory window) mapped. then |
| 315 | * read the data from other yucca board's u-boot prompt at address |
| 316 | * 0x9000 0000(SRAM). Data should match. |
| 317 | * In case of inbound , write data to u-boot command prompt at 0xb000 0000 |
| 318 | * which is mapped to 0x4 0000 0000. Now on rootpoint yucca u-boot prompt check |
| 319 | * data at 0x9000 0000(SRAM).Data should match. |
| 320 | */ |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 321 | int ppc440spe_init_pcie_rootport(int port) |
| 322 | { |
| 323 | static int core_init; |
| 324 | volatile u32 val = 0; |
| 325 | int attempts; |
| 326 | |
| 327 | if (!core_init) { |
| 328 | ++core_init; |
| 329 | if (ppc440spe_init_pcie()) |
| 330 | return -1; |
| 331 | } |
| 332 | |
| 333 | /* |
| 334 | * Initialize various parts of the PCI Express core for our port: |
| 335 | * |
| 336 | * - Set as a root port and enable max width |
| 337 | * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4). |
| 338 | * - Set up UTL configuration. |
| 339 | * - Increase SERDES drive strength to levels suggested by AMCC. |
| 340 | * - De-assert RSTPYN, RSTDL and RSTGU. |
| 341 | * |
| 342 | * NOTICE for revB chip: PESDRn_UTLSET2 is not set - we leave it with |
| 343 | * default setting 0x11310000. The register has new fields, |
| 344 | * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core |
| 345 | * hang. |
| 346 | */ |
| 347 | switch (port) { |
| 348 | case 0: |
| 349 | SDR_WRITE(PESDR0_DLPSET, 1 << 24 | PTYPE_ROOT_PORT << 20 | LNKW_X8 << 12); |
| 350 | |
| 351 | SDR_WRITE(PESDR0_UTLSET1, 0x21222222); |
| 352 | if (!ppc440spe_revB()) |
| 353 | SDR_WRITE(PESDR0_UTLSET2, 0x11000000); |
| 354 | SDR_WRITE(PESDR0_HSSL0SET1, 0x35000000); |
| 355 | SDR_WRITE(PESDR0_HSSL1SET1, 0x35000000); |
| 356 | SDR_WRITE(PESDR0_HSSL2SET1, 0x35000000); |
| 357 | SDR_WRITE(PESDR0_HSSL3SET1, 0x35000000); |
| 358 | SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000); |
| 359 | SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000); |
| 360 | SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000); |
| 361 | SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000); |
| 362 | SDR_WRITE(PESDR0_RCSSET, |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 363 | (SDR_READ(PESDR0_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 364 | break; |
| 365 | |
| 366 | case 1: |
| 367 | SDR_WRITE(PESDR1_DLPSET, 1 << 24 | PTYPE_ROOT_PORT << 20 | LNKW_X4 << 12); |
| 368 | SDR_WRITE(PESDR1_UTLSET1, 0x21222222); |
| 369 | if (!ppc440spe_revB()) |
| 370 | SDR_WRITE(PESDR1_UTLSET2, 0x11000000); |
| 371 | SDR_WRITE(PESDR1_HSSL0SET1, 0x35000000); |
| 372 | SDR_WRITE(PESDR1_HSSL1SET1, 0x35000000); |
| 373 | SDR_WRITE(PESDR1_HSSL2SET1, 0x35000000); |
| 374 | SDR_WRITE(PESDR1_HSSL3SET1, 0x35000000); |
| 375 | SDR_WRITE(PESDR1_RCSSET, |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 376 | (SDR_READ(PESDR1_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 377 | break; |
| 378 | |
| 379 | case 2: |
| 380 | SDR_WRITE(PESDR2_DLPSET, 1 << 24 | PTYPE_ROOT_PORT << 20 | LNKW_X4 << 12); |
| 381 | SDR_WRITE(PESDR2_UTLSET1, 0x21222222); |
| 382 | if (!ppc440spe_revB()) |
| 383 | SDR_WRITE(PESDR2_UTLSET2, 0x11000000); |
| 384 | SDR_WRITE(PESDR2_HSSL0SET1, 0x35000000); |
| 385 | SDR_WRITE(PESDR2_HSSL1SET1, 0x35000000); |
| 386 | SDR_WRITE(PESDR2_HSSL2SET1, 0x35000000); |
| 387 | SDR_WRITE(PESDR2_HSSL3SET1, 0x35000000); |
| 388 | SDR_WRITE(PESDR2_RCSSET, |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 389 | (SDR_READ(PESDR2_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 390 | break; |
| 391 | } |
| 392 | /* |
| 393 | * Notice: the following delay has critical impact on device |
| 394 | * initialization - if too short (<50ms) the link doesn't get up. |
| 395 | */ |
| 396 | mdelay(100); |
| 397 | |
| 398 | switch (port) { |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 399 | case 0: |
| 400 | val = SDR_READ(PESDR0_RCSSTS); |
| 401 | break; |
| 402 | case 1: |
| 403 | val = SDR_READ(PESDR1_RCSSTS); |
| 404 | break; |
| 405 | case 2: |
| 406 | val = SDR_READ(PESDR2_RCSSTS); |
| 407 | break; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | if (val & (1 << 20)) { |
| 411 | printf("PCIE%d: PGRST failed %08x\n", port, val); |
| 412 | return -1; |
| 413 | } |
| 414 | |
| 415 | /* |
| 416 | * Verify link is up |
| 417 | */ |
| 418 | val = 0; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 419 | switch (port) { |
| 420 | case 0: |
| 421 | val = SDR_READ(PESDR0_LOOP); |
| 422 | break; |
| 423 | case 1: |
| 424 | val = SDR_READ(PESDR1_LOOP); |
| 425 | break; |
| 426 | case 2: |
| 427 | val = SDR_READ(PESDR2_LOOP); |
| 428 | break; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 429 | } |
| 430 | if (!(val & 0x00001000)) { |
| 431 | printf("PCIE%d: link is not up.\n", port); |
| 432 | return -1; |
| 433 | } |
| 434 | |
| 435 | /* |
| 436 | * Setup UTL registers - but only on revA! |
| 437 | * We use default settings for revB chip. |
| 438 | */ |
| 439 | if (!ppc440spe_revB()) |
| 440 | ppc440spe_setup_utl(port); |
| 441 | |
| 442 | /* |
| 443 | * We map PCI Express configuration access into the 512MB regions |
| 444 | * |
| 445 | * NOTICE: revB is very strict about PLB real addressess and ranges to |
| 446 | * be mapped for config space; it seems to only work with d_nnnn_nnnn |
| 447 | * range (hangs the core upon config transaction attempts when set |
| 448 | * otherwise) while revA uses c_nnnn_nnnn. |
| 449 | * |
| 450 | * For revA: |
| 451 | * PCIE0: 0xc_4000_0000 |
| 452 | * PCIE1: 0xc_8000_0000 |
| 453 | * PCIE2: 0xc_c000_0000 |
| 454 | * |
| 455 | * For revB: |
| 456 | * PCIE0: 0xd_0000_0000 |
| 457 | * PCIE1: 0xd_2000_0000 |
| 458 | * PCIE2: 0xd_4000_0000 |
| 459 | */ |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 460 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 461 | switch (port) { |
| 462 | case 0: |
| 463 | if (ppc440spe_revB()) { |
| 464 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), 0x0000000d); |
| 465 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), 0x00000000); |
| 466 | } else { |
| 467 | /* revA */ |
| 468 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), 0x0000000c); |
| 469 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), 0x40000000); |
| 470 | } |
| 471 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */ |
| 472 | break; |
| 473 | |
| 474 | case 1: |
| 475 | if (ppc440spe_revB()) { |
| 476 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), 0x0000000d); |
| 477 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), 0x20000000); |
| 478 | } else { |
| 479 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), 0x0000000c); |
| 480 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), 0x80000000); |
| 481 | } |
| 482 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */ |
| 483 | break; |
| 484 | |
| 485 | case 2: |
| 486 | if (ppc440spe_revB()) { |
| 487 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), 0x0000000d); |
| 488 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), 0x40000000); |
| 489 | } else { |
| 490 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), 0x0000000c); |
| 491 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), 0xc0000000); |
| 492 | } |
| 493 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */ |
| 494 | break; |
| 495 | } |
| 496 | |
| 497 | /* |
| 498 | * Check for VC0 active and assert RDY. |
| 499 | */ |
| 500 | attempts = 10; |
| 501 | switch (port) { |
| 502 | case 0: |
| 503 | while(!(SDR_READ(PESDR0_RCSSTS) & (1 << 16))) { |
| 504 | if (!(attempts--)) { |
| 505 | printf("PCIE0: VC0 not active\n"); |
| 506 | return -1; |
| 507 | } |
| 508 | mdelay(1000); |
| 509 | } |
| 510 | SDR_WRITE(PESDR0_RCSSET, SDR_READ(PESDR0_RCSSET) | 1 << 20); |
| 511 | break; |
| 512 | case 1: |
| 513 | while(!(SDR_READ(PESDR1_RCSSTS) & (1 << 16))) { |
| 514 | if (!(attempts--)) { |
| 515 | printf("PCIE1: VC0 not active\n"); |
| 516 | return -1; |
| 517 | } |
| 518 | mdelay(1000); |
| 519 | } |
| 520 | |
| 521 | SDR_WRITE(PESDR1_RCSSET, SDR_READ(PESDR1_RCSSET) | 1 << 20); |
| 522 | break; |
| 523 | case 2: |
| 524 | while(!(SDR_READ(PESDR2_RCSSTS) & (1 << 16))) { |
| 525 | if (!(attempts--)) { |
| 526 | printf("PCIE2: VC0 not active\n"); |
| 527 | return -1; |
| 528 | } |
| 529 | mdelay(1000); |
| 530 | } |
| 531 | |
| 532 | SDR_WRITE(PESDR2_RCSSET, SDR_READ(PESDR2_RCSSET) | 1 << 20); |
| 533 | break; |
| 534 | } |
| 535 | mdelay(100); |
| 536 | |
| 537 | return 0; |
| 538 | } |
| 539 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 540 | int ppc440spe_init_pcie_endport(int port) |
| 541 | { |
| 542 | static int core_init; |
| 543 | volatile u32 val = 0; |
| 544 | int attempts; |
| 545 | |
| 546 | if (!core_init) { |
| 547 | ++core_init; |
| 548 | if (ppc440spe_init_pcie()) |
| 549 | return -1; |
| 550 | } |
| 551 | |
| 552 | /* |
| 553 | * Initialize various parts of the PCI Express core for our port: |
| 554 | * |
| 555 | * - Set as a end port and enable max width |
| 556 | * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4). |
| 557 | * - Set up UTL configuration. |
| 558 | * - Increase SERDES drive strength to levels suggested by AMCC. |
| 559 | * - De-assert RSTPYN, RSTDL and RSTGU. |
| 560 | * |
| 561 | * NOTICE for revB chip: PESDRn_UTLSET2 is not set - we leave it with |
| 562 | * default setting 0x11310000. The register has new fields, |
| 563 | * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core |
| 564 | * hang. |
| 565 | */ |
| 566 | switch (port) { |
| 567 | case 0: |
| 568 | SDR_WRITE(PESDR0_DLPSET, 1 << 24 | PTYPE_LEGACY_ENDPOINT << 20 | LNKW_X8 << 12); |
| 569 | |
| 570 | SDR_WRITE(PESDR0_UTLSET1, 0x20222222); |
| 571 | if (!ppc440spe_revB()) |
| 572 | SDR_WRITE(PESDR0_UTLSET2, 0x11000000); |
| 573 | SDR_WRITE(PESDR0_HSSL0SET1, 0x35000000); |
| 574 | SDR_WRITE(PESDR0_HSSL1SET1, 0x35000000); |
| 575 | SDR_WRITE(PESDR0_HSSL2SET1, 0x35000000); |
| 576 | SDR_WRITE(PESDR0_HSSL3SET1, 0x35000000); |
| 577 | SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000); |
| 578 | SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000); |
| 579 | SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000); |
| 580 | SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000); |
| 581 | SDR_WRITE(PESDR0_RCSSET, |
| 582 | (SDR_READ(PESDR0_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
| 583 | break; |
| 584 | |
| 585 | case 1: |
| 586 | SDR_WRITE(PESDR1_DLPSET, 1 << 24 | PTYPE_LEGACY_ENDPOINT << 20 | LNKW_X4 << 12); |
| 587 | SDR_WRITE(PESDR1_UTLSET1, 0x20222222); |
| 588 | if (!ppc440spe_revB()) |
| 589 | SDR_WRITE(PESDR1_UTLSET2, 0x11000000); |
| 590 | SDR_WRITE(PESDR1_HSSL0SET1, 0x35000000); |
| 591 | SDR_WRITE(PESDR1_HSSL1SET1, 0x35000000); |
| 592 | SDR_WRITE(PESDR1_HSSL2SET1, 0x35000000); |
| 593 | SDR_WRITE(PESDR1_HSSL3SET1, 0x35000000); |
| 594 | SDR_WRITE(PESDR1_RCSSET, |
| 595 | (SDR_READ(PESDR1_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
| 596 | break; |
| 597 | |
| 598 | case 2: |
| 599 | SDR_WRITE(PESDR2_DLPSET, 1 << 24 | PTYPE_LEGACY_ENDPOINT << 20 | LNKW_X4 << 12); |
| 600 | SDR_WRITE(PESDR2_UTLSET1, 0x20222222); |
| 601 | if (!ppc440spe_revB()) |
| 602 | SDR_WRITE(PESDR2_UTLSET2, 0x11000000); |
| 603 | SDR_WRITE(PESDR2_HSSL0SET1, 0x35000000); |
| 604 | SDR_WRITE(PESDR2_HSSL1SET1, 0x35000000); |
| 605 | SDR_WRITE(PESDR2_HSSL2SET1, 0x35000000); |
| 606 | SDR_WRITE(PESDR2_HSSL3SET1, 0x35000000); |
| 607 | SDR_WRITE(PESDR2_RCSSET, |
| 608 | (SDR_READ(PESDR2_RCSSET) & ~(1 << 24 | 1 << 16)) | 1 << 12); |
| 609 | break; |
| 610 | } |
| 611 | /* |
| 612 | * Notice: the following delay has critical impact on device |
| 613 | * initialization - if too short (<50ms) the link doesn't get up. |
| 614 | */ |
| 615 | mdelay(100); |
| 616 | |
| 617 | switch (port) { |
| 618 | case 0: val = SDR_READ(PESDR0_RCSSTS); break; |
| 619 | case 1: val = SDR_READ(PESDR1_RCSSTS); break; |
| 620 | case 2: val = SDR_READ(PESDR2_RCSSTS); break; |
| 621 | } |
| 622 | |
| 623 | if (val & (1 << 20)) { |
| 624 | printf("PCIE%d: PGRST failed %08x\n", port, val); |
| 625 | return -1; |
| 626 | } |
| 627 | |
| 628 | /* |
| 629 | * Verify link is up |
| 630 | */ |
| 631 | val = 0; |
| 632 | switch (port) |
| 633 | { |
| 634 | case 0: |
| 635 | val = SDR_READ(PESDR0_LOOP); |
| 636 | break; |
| 637 | case 1: |
| 638 | val = SDR_READ(PESDR1_LOOP); |
| 639 | break; |
| 640 | case 2: |
| 641 | val = SDR_READ(PESDR2_LOOP); |
| 642 | break; |
| 643 | } |
| 644 | if (!(val & 0x00001000)) { |
| 645 | printf("PCIE%d: link is not up.\n", port); |
| 646 | return -1; |
| 647 | } |
| 648 | |
| 649 | /* |
| 650 | * Setup UTL registers - but only on revA! |
| 651 | * We use default settings for revB chip. |
| 652 | */ |
| 653 | if (!ppc440spe_revB()) |
| 654 | ppc440spe_setup_utl(port); |
| 655 | |
| 656 | /* |
| 657 | * We map PCI Express configuration access into the 512MB regions |
| 658 | * |
| 659 | * NOTICE: revB is very strict about PLB real addressess and ranges to |
| 660 | * be mapped for config space; it seems to only work with d_nnnn_nnnn |
| 661 | * range (hangs the core upon config transaction attempts when set |
| 662 | * otherwise) while revA uses c_nnnn_nnnn. |
| 663 | * |
| 664 | * For revA: |
| 665 | * PCIE0: 0xc_4000_0000 |
| 666 | * PCIE1: 0xc_8000_0000 |
| 667 | * PCIE2: 0xc_c000_0000 |
| 668 | * |
| 669 | * For revB: |
| 670 | * PCIE0: 0xd_0000_0000 |
| 671 | * PCIE1: 0xd_2000_0000 |
| 672 | * PCIE2: 0xd_4000_0000 |
| 673 | */ |
| 674 | switch (port) { |
| 675 | case 0: |
| 676 | if (ppc440spe_revB()) { |
| 677 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), 0x0000000d); |
| 678 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), 0x00000000); |
| 679 | } else { |
| 680 | /* revA */ |
| 681 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), 0x0000000c); |
| 682 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), 0x40000000); |
| 683 | } |
| 684 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */ |
| 685 | break; |
| 686 | |
| 687 | case 1: |
| 688 | if (ppc440spe_revB()) { |
| 689 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), 0x0000000d); |
| 690 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), 0x20000000); |
| 691 | } else { |
| 692 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), 0x0000000c); |
| 693 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), 0x80000000); |
| 694 | } |
| 695 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */ |
| 696 | break; |
| 697 | |
| 698 | case 2: |
| 699 | if (ppc440spe_revB()) { |
| 700 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), 0x0000000d); |
| 701 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), 0x40000000); |
| 702 | } else { |
| 703 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), 0x0000000c); |
| 704 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), 0xc0000000); |
| 705 | } |
| 706 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */ |
| 707 | break; |
| 708 | } |
| 709 | |
| 710 | /* |
| 711 | * Check for VC0 active and assert RDY. |
| 712 | */ |
| 713 | attempts = 10; |
| 714 | switch (port) { |
| 715 | case 0: |
| 716 | while(!(SDR_READ(PESDR0_RCSSTS) & (1 << 16))) { |
| 717 | if (!(attempts--)) { |
| 718 | printf("PCIE0: VC0 not active\n"); |
| 719 | return -1; |
| 720 | } |
| 721 | mdelay(1000); |
| 722 | } |
| 723 | SDR_WRITE(PESDR0_RCSSET, SDR_READ(PESDR0_RCSSET) | 1 << 20); |
| 724 | break; |
| 725 | case 1: |
| 726 | while(!(SDR_READ(PESDR1_RCSSTS) & (1 << 16))) { |
| 727 | if (!(attempts--)) { |
| 728 | printf("PCIE1: VC0 not active\n"); |
| 729 | return -1; |
| 730 | } |
| 731 | mdelay(1000); |
| 732 | } |
| 733 | |
| 734 | SDR_WRITE(PESDR1_RCSSET, SDR_READ(PESDR1_RCSSET) | 1 << 20); |
| 735 | break; |
| 736 | case 2: |
| 737 | while(!(SDR_READ(PESDR2_RCSSTS) & (1 << 16))) { |
| 738 | if (!(attempts--)) { |
| 739 | printf("PCIE2: VC0 not active\n"); |
| 740 | return -1; |
| 741 | } |
| 742 | mdelay(1000); |
| 743 | } |
| 744 | |
| 745 | SDR_WRITE(PESDR2_RCSSET, SDR_READ(PESDR2_RCSSET) | 1 << 20); |
| 746 | break; |
| 747 | } |
| 748 | mdelay(100); |
| 749 | |
| 750 | return 0; |
| 751 | } |
| 752 | |
| 753 | void ppc440spe_setup_pcie_rootpoint(struct pci_controller *hose, int port) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 754 | { |
| 755 | volatile void *mbase = NULL; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 756 | volatile void *rmbase = NULL; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 757 | |
| 758 | pci_set_ops(hose, |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 759 | pcie_read_config_byte, |
| 760 | pcie_read_config_word, |
| 761 | pcie_read_config_dword, |
| 762 | pcie_write_config_byte, |
| 763 | pcie_write_config_word, |
| 764 | pcie_write_config_dword); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 765 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 766 | switch (port) { |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 767 | case 0: |
| 768 | mbase = (u32 *)CFG_PCIE0_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 769 | rmbase = (u32 *)CFG_PCIE0_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 770 | hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE; |
| 771 | break; |
| 772 | case 1: |
| 773 | mbase = (u32 *)CFG_PCIE1_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 774 | rmbase = (u32 *)CFG_PCIE1_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 775 | hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE; |
| 776 | break; |
| 777 | case 2: |
| 778 | mbase = (u32 *)CFG_PCIE2_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 779 | rmbase = (u32 *)CFG_PCIE2_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 780 | hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE; |
| 781 | break; |
| 782 | } |
| 783 | |
| 784 | /* |
| 785 | * Set bus numbers on our root port |
| 786 | */ |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 787 | out_8((u8 *)mbase + PCI_PRIMARY_BUS, 0); |
| 788 | out_8((u8 *)mbase + PCI_SECONDARY_BUS, 1); |
| 789 | out_8((u8 *)mbase + PCI_SUBORDINATE_BUS, 1); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 790 | |
| 791 | /* |
| 792 | * Set up outbound translation to hose->mem_space from PLB |
| 793 | * addresses at an offset of 0xd_0000_0000. We set the low |
| 794 | * bits of the mask to 11 to turn off splitting into 8 |
| 795 | * subregions and to enable the outbound translation. |
| 796 | */ |
| 797 | out_le32(mbase + PECFG_POM0LAH, 0x00000000); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 798 | out_le32(mbase + PECFG_POM0LAL, 0x00000000); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 799 | |
| 800 | switch (port) { |
| 801 | case 0: |
| 802 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d); |
| 803 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE + |
| 804 | port * CFG_PCIE_MEMSIZE); |
| 805 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff); |
| 806 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0), |
| 807 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 808 | break; |
| 809 | case 1: |
| 810 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d); |
| 811 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), (CFG_PCIE_MEMBASE + |
| 812 | port * CFG_PCIE_MEMSIZE)); |
| 813 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff); |
| 814 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1), |
| 815 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 816 | break; |
| 817 | case 2: |
| 818 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d); |
| 819 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), (CFG_PCIE_MEMBASE + |
| 820 | port * CFG_PCIE_MEMSIZE)); |
| 821 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff); |
| 822 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2), |
| 823 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 824 | break; |
| 825 | } |
| 826 | |
| 827 | /* Set up 16GB inbound memory window at 0 */ |
| 828 | out_le32(mbase + PCI_BASE_ADDRESS_0, 0); |
| 829 | out_le32(mbase + PCI_BASE_ADDRESS_1, 0); |
| 830 | out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc); |
| 831 | out_le32(mbase + PECFG_BAR0LMPA, 0); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 832 | |
| 833 | out_le32(mbase + PECFG_PIM01SAH, 0xffff0000); |
| 834 | out_le32(mbase + PECFG_PIM01SAL, 0x00000000); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 835 | out_le32(mbase + PECFG_PIM0LAL, 0); |
| 836 | out_le32(mbase + PECFG_PIM0LAH, 0); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 837 | out_le32(mbase + PECFG_PIM1LAL, 0x00000000); |
| 838 | out_le32(mbase + PECFG_PIM1LAH, 0x00000004); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 839 | out_le32(mbase + PECFG_PIMEN, 0x1); |
| 840 | |
| 841 | /* Enable I/O, Mem, and Busmaster cycles */ |
| 842 | out_le16((u16 *)(mbase + PCI_COMMAND), |
| 843 | in_le16((u16 *)(mbase + PCI_COMMAND)) | |
| 844 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 845 | printf("PCIE:%d successfully set as rootpoint\n",port); |
| 846 | } |
| 847 | |
| 848 | int ppc440spe_setup_pcie_endpoint(struct pci_controller *hose, int port) |
| 849 | { |
| 850 | volatile void *mbase = NULL; |
| 851 | int attempts = 0; |
| 852 | |
| 853 | pci_set_ops(hose, |
| 854 | pcie_read_config_byte, |
| 855 | pcie_read_config_word, |
| 856 | pcie_read_config_dword, |
| 857 | pcie_write_config_byte, |
| 858 | pcie_write_config_word, |
| 859 | pcie_write_config_dword); |
| 860 | |
| 861 | switch (port) { |
| 862 | case 0: |
| 863 | mbase = (u32 *)CFG_PCIE0_XCFGBASE; |
| 864 | hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE; |
| 865 | break; |
| 866 | case 1: |
| 867 | mbase = (u32 *)CFG_PCIE1_XCFGBASE; |
| 868 | hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE; |
| 869 | break; |
| 870 | case 2: |
| 871 | mbase = (u32 *)CFG_PCIE2_XCFGBASE; |
| 872 | hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE; |
| 873 | break; |
| 874 | } |
| 875 | |
| 876 | /* |
| 877 | * Set up outbound translation to hose->mem_space from PLB |
| 878 | * addresses at an offset of 0xd_0000_0000. We set the low |
| 879 | * bits of the mask to 11 to turn off splitting into 8 |
| 880 | * subregions and to enable the outbound translation. |
| 881 | */ |
| 882 | out_le32(mbase + PECFG_POM0LAH, 0x00001ff8); |
| 883 | out_le32(mbase + PECFG_POM0LAL, 0x00001000); |
| 884 | |
| 885 | switch (port) { |
| 886 | case 0: |
| 887 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d); |
| 888 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE + |
| 889 | port * CFG_PCIE_MEMSIZE); |
| 890 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff); |
| 891 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0), |
| 892 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 893 | break; |
| 894 | case 1: |
| 895 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d); |
| 896 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), (CFG_PCIE_MEMBASE + |
| 897 | port * CFG_PCIE_MEMSIZE)); |
| 898 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff); |
| 899 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1), |
| 900 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 901 | break; |
| 902 | case 2: |
| 903 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d); |
| 904 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), (CFG_PCIE_MEMBASE + |
| 905 | port * CFG_PCIE_MEMSIZE)); |
| 906 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff); |
| 907 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2), |
| 908 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
| 909 | break; |
| 910 | } |
| 911 | |
| 912 | /* Set up 16GB inbound memory window at 0 */ |
| 913 | out_le32(mbase + PCI_BASE_ADDRESS_0, 0); |
| 914 | out_le32(mbase + PCI_BASE_ADDRESS_1, 0); |
| 915 | out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc); |
| 916 | out_le32(mbase + PECFG_BAR0LMPA, 0); |
| 917 | out_le32(mbase + PECFG_PIM0LAL, 0x00000000); |
| 918 | out_le32(mbase + PECFG_PIM0LAH, 0x00000004); /* pointing to SRAM */ |
| 919 | out_le32(mbase + PECFG_PIMEN, 0x1); |
| 920 | |
| 921 | /* Enable I/O, Mem, and Busmaster cycles */ |
| 922 | out_le16((u16 *)(mbase + PCI_COMMAND), |
| 923 | in_le16((u16 *)(mbase + PCI_COMMAND)) | |
| 924 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
| 925 | out_le16(mbase + 0x200,0xcaad); /* Setting vendor ID */ |
| 926 | out_le16(mbase + 0x202,0xfeed); /* Setting device ID */ |
| 927 | attempts = 10; |
| 928 | switch (port) { |
| 929 | case 0: |
| 930 | while (!(SDR_READ(PESDR0_RCSSTS) & (1 << 8))) { |
| 931 | if (!(attempts--)) { |
| 932 | printf("PCIE0: BMEN is not active\n"); |
| 933 | return -1; |
| 934 | } |
| 935 | mdelay(1000); |
| 936 | } |
| 937 | break; |
| 938 | case 1: |
| 939 | while (!(SDR_READ(PESDR1_RCSSTS) & (1 << 8))) { |
| 940 | if (!(attempts--)) { |
| 941 | printf("PCIE1: BMEN is not active\n"); |
| 942 | return -1; |
| 943 | } |
| 944 | mdelay(1000); |
| 945 | } |
| 946 | break; |
| 947 | case 2: |
| 948 | while (!(SDR_READ(PESDR2_RCSSTS) & (1 << 8))) { |
| 949 | if (!(attempts--)) { |
| 950 | printf("PCIE2: BMEN is not active\n"); |
| 951 | return -1; |
| 952 | } |
| 953 | mdelay(1000); |
| 954 | } |
| 955 | break; |
| 956 | } |
| 957 | printf("PCIE:%d successfully set as endpoint\n",port); |
| 958 | |
| 959 | return 0; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 960 | } |
| 961 | #endif /* CONFIG_PCI */ |
| 962 | #endif /* CONFIG_440SPE */ |