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