2 * (C) Copyright 2006 - 2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Copyright (c) 2005 Cisco Systems. All rights reserved.
6 * Roland Dreier <rolandd@cisco.com>
8 * See file CREDITS for list of people who contributed to this
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.
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.
23 #include <asm/processor.h>
24 #include <asm-ppc/io.h>
29 #if defined(CONFIG_440SPE) && defined(CONFIG_PCI)
31 #include <asm/4xx_pcie.h>
35 PTYPE_LEGACY_ENDPOINT = 0x1,
36 PTYPE_ROOT_PORT = 0x4,
43 static u8* pcie_get_base(struct pci_controller *hose, unsigned int devfn)
45 u8 *base = (u8*)hose->cfg_data;
47 /* use local configuration space for the first bus */
48 if (PCI_BUS(devfn) == 0) {
49 if (hose->cfg_data == (u8*)CFG_PCIE0_CFGBASE)
50 base = (u8*)CFG_PCIE0_XCFGBASE;
51 if (hose->cfg_data == (u8*)CFG_PCIE1_CFGBASE)
52 base = (u8*)CFG_PCIE1_XCFGBASE;
53 if (hose->cfg_data == (u8*)CFG_PCIE2_CFGBASE)
54 base = (u8*)CFG_PCIE2_XCFGBASE;
60 static void pcie_dmer_disable(void)
62 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE),
63 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) | GPL_DMER_MASK_DISA);
64 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE),
65 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) | GPL_DMER_MASK_DISA);
66 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE),
67 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) | GPL_DMER_MASK_DISA);
70 static void pcie_dmer_enable(void)
72 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE0_BASE),
73 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) & ~GPL_DMER_MASK_DISA);
74 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE1_BASE),
75 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) & ~GPL_DMER_MASK_DISA);
76 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE2_BASE),
77 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) & ~GPL_DMER_MASK_DISA);
80 static int pcie_read_config(struct pci_controller *hose, unsigned int devfn,
81 int offset, int len, u32 *val) {
87 * Bus numbers are relative to hose->first_busno
89 devfn -= PCI_BDF(hose->first_busno, 0, 0);
92 * NOTICE: configuration space ranges are currenlty mapped only for
93 * the first 16 buses, so such limit must be imposed. In case more
94 * buses are required the TLB settings in board/amcc/<board>/init.S
95 * need to be altered accordingly (one bus takes 1 MB of memory space).
97 if (PCI_BUS(devfn) >= 16)
101 * Only single device/single function is supported for the primary and
102 * secondary buses of the 440SPe host bridge.
104 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
105 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
108 address = pcie_get_base(hose, devfn);
109 offset += devfn << 4;
112 * Reading from configuration space of non-existing device can
113 * generate transaction errors. For the read duration we suppress
114 * assertion of machine check exceptions to avoid those.
116 pcie_dmer_disable ();
120 *val = in_8(hose->cfg_data + offset);
123 *val = in_le16((u16 *)(hose->cfg_data + offset));
126 *val = in_le32((u32*)(hose->cfg_data + offset));
135 static int pcie_write_config(struct pci_controller *hose, unsigned int devfn,
136 int offset, int len, u32 val) {
141 * Bus numbers are relative to hose->first_busno
143 devfn -= PCI_BDF(hose->first_busno, 0, 0);
146 * Same constraints as in pcie_read_config().
148 if (PCI_BUS(devfn) >= 16)
151 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
152 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
155 address = pcie_get_base(hose, devfn);
156 offset += devfn << 4;
159 * Suppress MCK exceptions, similar to pcie_read_config()
161 pcie_dmer_disable ();
165 out_8(hose->cfg_data + offset, val);
168 out_le16((u16 *)(hose->cfg_data + offset), val);
171 out_le32((u32 *)(hose->cfg_data + offset), val);
180 int pcie_read_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 *val)
185 rv = pcie_read_config(hose, dev, offset, 1, &v);
190 int pcie_read_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 *val)
195 rv = pcie_read_config(hose, dev, offset, 2, &v);
200 int pcie_read_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 *val)
205 rv = pcie_read_config(hose, dev, offset, 3, &v);
210 int pcie_write_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 val)
212 return pcie_write_config(hose,(u32)dev,offset,1,val);
215 int pcie_write_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 val)
217 return pcie_write_config(hose,(u32)dev,offset,2,(u32 )val);
220 int pcie_write_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 val)
222 return pcie_write_config(hose,(u32)dev,offset,3,(u32 )val);
225 static void ppc4xx_setup_utl(u32 port) {
227 volatile void *utl_base = NULL;
234 mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x0000000c);
235 mtdcr(DCRN_PEGPL_REGBAL(PCIE0), 0x20000000);
236 mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001);
237 mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0x68782800);
241 mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x0000000c);
242 mtdcr(DCRN_PEGPL_REGBAL(PCIE1), 0x20001000);
243 mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001);
244 mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0x68782800);
248 mtdcr(DCRN_PEGPL_REGBAH(PCIE2), 0x0000000c);
249 mtdcr(DCRN_PEGPL_REGBAL(PCIE2), 0x20002000);
250 mtdcr(DCRN_PEGPL_REGMSK(PCIE2), 0x00007001);
251 mtdcr(DCRN_PEGPL_SPECIAL(PCIE2), 0x68782800);
254 utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port);
257 * Set buffer allocations and then assert VRB and TXE.
259 out_be32(utl_base + PEUTL_OUTTR, 0x08000000);
260 out_be32(utl_base + PEUTL_INTR, 0x02000000);
261 out_be32(utl_base + PEUTL_OPDBSZ, 0x10000000);
262 out_be32(utl_base + PEUTL_PBBSZ, 0x53000000);
263 out_be32(utl_base + PEUTL_IPHBSZ, 0x08000000);
264 out_be32(utl_base + PEUTL_IPDBSZ, 0x10000000);
265 out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000);
266 out_be32(utl_base + PEUTL_PCTL, 0x80800066);
269 static int check_error(void)
271 u32 valPE0, valPE1, valPE2;
274 /* SDR0_PEGPLLLCT1 reset */
275 if (!(valPE0 = SDR_READ(PESDR0_PLLLCT1) & 0x01000000)) {
276 printf("PCIE: SDR0_PEGPLLLCT1 reset error 0x%x\n", valPE0);
279 valPE0 = SDR_READ(PESDR0_RCSSET);
280 valPE1 = SDR_READ(PESDR1_RCSSET);
281 valPE2 = SDR_READ(PESDR2_RCSSET);
283 /* SDR0_PExRCSSET rstgu */
284 if (!(valPE0 & 0x01000000) ||
285 !(valPE1 & 0x01000000) ||
286 !(valPE2 & 0x01000000)) {
287 printf("PCIE: SDR0_PExRCSSET rstgu error\n");
291 /* SDR0_PExRCSSET rstdl */
292 if (!(valPE0 & 0x00010000) ||
293 !(valPE1 & 0x00010000) ||
294 !(valPE2 & 0x00010000)) {
295 printf("PCIE: SDR0_PExRCSSET rstdl error\n");
299 /* SDR0_PExRCSSET rstpyn */
300 if ((valPE0 & 0x00001000) ||
301 (valPE1 & 0x00001000) ||
302 (valPE2 & 0x00001000)) {
303 printf("PCIE: SDR0_PExRCSSET rstpyn error\n");
307 /* SDR0_PExRCSSET hldplb */
308 if ((valPE0 & 0x10000000) ||
309 (valPE1 & 0x10000000) ||
310 (valPE2 & 0x10000000)) {
311 printf("PCIE: SDR0_PExRCSSET hldplb error\n");
315 /* SDR0_PExRCSSET rdy */
316 if ((valPE0 & 0x00100000) ||
317 (valPE1 & 0x00100000) ||
318 (valPE2 & 0x00100000)) {
319 printf("PCIE: SDR0_PExRCSSET rdy error\n");
323 /* SDR0_PExRCSSET shutdown */
324 if ((valPE0 & 0x00000100) ||
325 (valPE1 & 0x00000100) ||
326 (valPE2 & 0x00000100)) {
327 printf("PCIE: SDR0_PExRCSSET shutdown error\n");
334 * Initialize PCI Express core
336 int ppc4xx_init_pcie(void)
340 /* Set PLL clock receiver to LVPECL */
341 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) | 1 << 28);
346 if (!(SDR_READ(PESDR0_PLLLCT2) & 0x10000))
348 printf("PCIE: PESDR_PLLCT2 resistance calibration failed (0x%08x)\n",
349 SDR_READ(PESDR0_PLLLCT2));
352 /* De-assert reset of PCIe PLL, wait for lock */
353 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) & ~(1 << 24));
357 if (!(SDR_READ(PESDR0_PLLLCT3) & 0x10000000)) {
364 printf("PCIE: VCO output not locked\n");
371 * Board-specific pcie initialization
372 * Platform code can reimplement ppc4xx_init_pcie_port_hw() if needed
376 * Initialize various parts of the PCI Express core for our port:
378 * - Set as a root port and enable max width
379 * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4).
380 * - Set up UTL configuration.
381 * - Increase SERDES drive strength to levels suggested by AMCC.
382 * - De-assert RSTPYN, RSTDL and RSTGU.
384 * NOTICE for 440SPE revB chip: PESDRn_UTLSET2 is not set - we leave it
385 * with default setting 0x11310000. The register has new fields,
386 * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core
389 #if defined(CONFIG_440SPE)
390 int __ppc4xx_init_pcie_port_hw(int port, int rootport)
396 val = PTYPE_ROOT_PORT << 20;
397 utlset1 = 0x21222222;
399 val = PTYPE_LEGACY_ENDPOINT << 20;
400 utlset1 = 0x20222222;
404 val |= LNKW_X8 << 12;
406 val |= LNKW_X4 << 12;
408 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
409 SDR_WRITE(SDRN_PESDR_UTLSET1(port), utlset1);
410 if (!ppc440spe_revB())
411 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x11000000);
412 SDR_WRITE(SDRN_PESDR_HSSL0SET1(port), 0x35000000);
413 SDR_WRITE(SDRN_PESDR_HSSL1SET1(port), 0x35000000);
414 SDR_WRITE(SDRN_PESDR_HSSL2SET1(port), 0x35000000);
415 SDR_WRITE(SDRN_PESDR_HSSL3SET1(port), 0x35000000);
417 SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000);
418 SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000);
419 SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000);
420 SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000);
422 SDR_WRITE(SDRN_PESDR_RCSSET(port), (SDR_READ(SDRN_PESDR_RCSSET(port)) &
423 ~(1 << 24 | 1 << 16)) | 1 << 12);
427 #endif /* CONFIG_440SPE */
429 #if defined(CONFIG_405EX)
430 int __ppc4xx_init_pcie_port_hw(int port, int rootport)
439 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
440 SDR_WRITE(SDRN_PESDR_UTLSET1(port), 0x20222222);
441 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x01110000);
442 SDR_WRITE(SDRN_PESDR_PHYSET1(port), 0x720F0000);
443 SDR_WRITE(SDRN_PESDR_PHYSET2(port), 0x70600003);
445 /* Assert the PE0_PHY reset */
446 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01010000);
449 /* deassert the PE0_hotreset */
450 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01101000);
452 /* poll for phy !reset */
453 while (!(SDR_READ(SDRN_PESDR_PHYSTA(port)) & 0x00001000))
456 /* deassert the PE0_gpl_utl_reset */
457 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x00101000);
460 mtdcr(DCRN_PEGPL_CFG(PCIE0), 0x10000000); /* guarded on */
462 mtdcr(DCRN_PEGPL_CFG(PCIE1), 0x10000000); /* guarded on */
466 #endif /* CONFIG_405EX */
468 int ppc4xx_init_pcie_port_hw(int port, int rootport)
469 __attribute__((weak, alias("__ppc4xx_init_pcie_port_hw")));
472 * We map PCI Express configuration access into the 512MB regions
474 * NOTICE: revB is very strict about PLB real addressess and ranges to
475 * be mapped for config space; it seems to only work with d_nnnn_nnnn
476 * range (hangs the core upon config transaction attempts when set
477 * otherwise) while revA uses c_nnnn_nnnn.
480 * PCIE0: 0xc_4000_0000
481 * PCIE1: 0xc_8000_0000
482 * PCIE2: 0xc_c000_0000
485 * PCIE0: 0xd_0000_0000
486 * PCIE1: 0xd_2000_0000
487 * PCIE2: 0xd_4000_0000
493 static inline u64 ppc4xx_get_cfgaddr(int port)
495 #if defined(CONFIG_405EX)
497 return (u64)CFG_PCIE0_CFGBASE;
499 return (u64)CFG_PCIE1_CFGBASE;
501 #if defined(CONFIG_440SPE)
502 if (ppc440spe_revB()) {
504 default: /* to satisfy compiler */
506 return 0x0000000d00000000ULL;
508 return 0x0000000d20000000ULL;
510 return 0x0000000d40000000ULL;
514 default: /* to satisfy compiler */
516 return 0x0000000c40000000ULL;
518 return 0x0000000c80000000ULL;
520 return 0x0000000cc0000000ULL;
527 * 4xx boards as end point and root point setup
529 * testing inbound and out bound windows
531 * 4xx boards can be plugged into another 4xx boards or you can get PCI-E
532 * cable which can be used to setup loop back from one port to another port.
533 * Please rememeber that unless there is a endpoint plugged in to root port it
534 * will not initialize. It is the same in case of endpoint , unless there is
535 * root port attached it will not initialize.
537 * In this release of software all the PCI-E ports are configured as either
538 * endpoint or rootpoint.In future we will have support for selective ports
539 * setup as endpoint and root point in single board.
541 * Once your board came up as root point , you can verify by reading
542 * /proc/bus/pci/devices. Where you can see the configuration registers
543 * of end point device attached to the port.
545 * Enpoint cofiguration can be verified by connecting 4xx board to any
546 * host or another 4xx board. Then try to scan the device. In case of
547 * linux use "lspci" or appripriate os command.
549 * How do I verify the inbound and out bound windows ? (4xx to 4xx)
550 * in this configuration inbound and outbound windows are setup to access
551 * sram memroy area. SRAM is at 0x4 0000 0000 , on PLB bus. This address
552 * is mapped at 0x90000000. From u-boot prompt write data 0xb000 0000,
553 * This is waere your POM(PLB out bound memory window) mapped. then
554 * read the data from other 4xx board's u-boot prompt at address
555 * 0x9000 0000(SRAM). Data should match.
556 * In case of inbound , write data to u-boot command prompt at 0xb000 0000
557 * which is mapped to 0x4 0000 0000. Now on rootpoint yucca u-boot prompt check
558 * data at 0x9000 0000(SRAM).Data should match.
560 int ppc4xx_init_pcie_port(int port, int rootport)
562 static int core_init;
563 volatile u32 val = 0;
570 if (ppc4xx_init_pcie())
575 * Initialize various parts of the PCI Express core for our port
577 ppc4xx_init_pcie_port_hw(port, rootport);
580 * Notice: the following delay has critical impact on device
581 * initialization - if too short (<50ms) the link doesn't get up.
585 val = SDR_READ(SDRN_PESDR_RCSSTS(sdr_base(port)));
586 if (val & (1 << 20)) {
587 printf("PCIE%d: PGRST failed %08x\n", port, val);
594 val = SDR_READ(SDRN_PESDR_LOOP(sdr_base(port)));
595 if (!(val & 0x00001000)) {
596 printf("PCIE%d: link is not up.\n", port);
601 * Setup UTL registers - but only on revA!
602 * We use default settings for revB chip.
604 if (!ppc440spe_revB())
605 ppc4xx_setup_utl(port);
608 * We map PCI Express configuration access into the 512MB regions
610 addr = ppc4xx_get_cfgaddr(port);
611 low = (u32)(addr & 0x00000000ffffffff);
612 high = (u32)(addr >> 32);
616 mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), high);
617 mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), low);
618 mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */
621 mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), high);
622 mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), low);
623 mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */
626 mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), high);
627 mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), low);
628 mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */
633 * Check for VC0 active and assert RDY.
636 while(!(SDR_READ(SDRN_PESDR_RCSSTS(sdr_base(port))) & (1 << 16))) {
638 printf("PCIE%d: VC0 not active\n", port);
643 SDR_WRITE(SDRN_PESDR_RCSSET(sdr_base(port)),
644 SDR_READ(SDRN_PESDR_RCSSET(sdr_base(port))) | 1 << 20);
650 int ppc4xx_init_pcie_rootport(int port)
652 return ppc4xx_init_pcie_port(port, 1);
655 int ppc4xx_init_pcie_endport(int port)
657 return ppc4xx_init_pcie_port(port, 0);
660 void ppc4xx_setup_pcie_rootpoint(struct pci_controller *hose, int port)
662 volatile void *mbase = NULL;
663 volatile void *rmbase = NULL;
666 pcie_read_config_byte,
667 pcie_read_config_word,
668 pcie_read_config_dword,
669 pcie_write_config_byte,
670 pcie_write_config_word,
671 pcie_write_config_dword);
675 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
676 rmbase = (u32 *)CFG_PCIE0_CFGBASE;
677 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
680 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
681 rmbase = (u32 *)CFG_PCIE1_CFGBASE;
682 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
685 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
686 rmbase = (u32 *)CFG_PCIE2_CFGBASE;
687 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
692 * Set bus numbers on our root port
694 out_8((u8 *)mbase + PCI_PRIMARY_BUS, 0);
695 out_8((u8 *)mbase + PCI_SECONDARY_BUS, 1);
696 out_8((u8 *)mbase + PCI_SUBORDINATE_BUS, 1);
699 * Set up outbound translation to hose->mem_space from PLB
700 * addresses at an offset of 0xd_0000_0000. We set the low
701 * bits of the mask to 11 to turn off splitting into 8
702 * subregions and to enable the outbound translation.
704 out_le32(mbase + PECFG_POM0LAH, 0x00000000);
705 out_le32(mbase + PECFG_POM0LAL, 0x00000000);
709 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d);
710 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
711 port * CFG_PCIE_MEMSIZE);
712 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
713 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
714 ~(CFG_PCIE_MEMSIZE - 1) | 3);
717 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d);
718 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
719 port * CFG_PCIE_MEMSIZE);
720 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
721 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
722 ~(CFG_PCIE_MEMSIZE - 1) | 3);
725 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d);
726 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
727 port * CFG_PCIE_MEMSIZE);
728 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
729 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
730 ~(CFG_PCIE_MEMSIZE - 1) | 3);
734 /* Set up 16GB inbound memory window at 0 */
735 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
736 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
737 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc);
738 out_le32(mbase + PECFG_BAR0LMPA, 0);
740 out_le32(mbase + PECFG_PIM01SAH, 0xffff0000);
741 out_le32(mbase + PECFG_PIM01SAL, 0x00000000);
742 out_le32(mbase + PECFG_PIM0LAL, 0);
743 out_le32(mbase + PECFG_PIM0LAH, 0);
744 out_le32(mbase + PECFG_PIM1LAL, 0x00000000);
745 out_le32(mbase + PECFG_PIM1LAH, 0x00000004);
746 out_le32(mbase + PECFG_PIMEN, 0x1);
748 /* Enable I/O, Mem, and Busmaster cycles */
749 out_le16((u16 *)(mbase + PCI_COMMAND),
750 in_le16((u16 *)(mbase + PCI_COMMAND)) |
751 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
753 /* Set Device and Vendor Id */
756 out_le16(mbase + 0x200, 0xaaa0);
757 out_le16(mbase + 0x202, 0xbed0);
760 out_le16(mbase + 0x200, 0xaaa1);
761 out_le16(mbase + 0x202, 0xbed1);
764 out_le16(mbase + 0x200, 0xaaa2);
765 out_le16(mbase + 0x202, 0xbed2);
768 out_le16(mbase + 0x200, 0xaaa3);
769 out_le16(mbase + 0x202, 0xbed3);
772 /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */
773 out_le32(mbase + 0x208, 0x06040001);
775 printf("PCIE:%d successfully set as rootpoint\n", port);
778 int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port)
780 volatile void *mbase = NULL;
784 pcie_read_config_byte,
785 pcie_read_config_word,
786 pcie_read_config_dword,
787 pcie_write_config_byte,
788 pcie_write_config_word,
789 pcie_write_config_dword);
793 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
794 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
797 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
798 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
801 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
802 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
807 * Set up outbound translation to hose->mem_space from PLB
808 * addresses at an offset of 0xd_0000_0000. We set the low
809 * bits of the mask to 11 to turn off splitting into 8
810 * subregions and to enable the outbound translation.
812 out_le32(mbase + PECFG_POM0LAH, 0x00001ff8);
813 out_le32(mbase + PECFG_POM0LAL, 0x00001000);
817 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d);
818 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
819 port * CFG_PCIE_MEMSIZE);
820 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
821 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
822 ~(CFG_PCIE_MEMSIZE - 1) | 3);
825 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d);
826 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
827 port * CFG_PCIE_MEMSIZE);
828 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
829 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
830 ~(CFG_PCIE_MEMSIZE - 1) | 3);
833 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d);
834 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
835 port * CFG_PCIE_MEMSIZE);
836 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
837 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
838 ~(CFG_PCIE_MEMSIZE - 1) | 3);
842 /* Set up 16GB inbound memory window at 0 */
843 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
844 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
845 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc);
846 out_le32(mbase + PECFG_BAR0LMPA, 0);
847 out_le32(mbase + PECFG_PIM0LAL, 0x00000000);
848 out_le32(mbase + PECFG_PIM0LAH, 0x00000004); /* pointing to SRAM */
849 out_le32(mbase + PECFG_PIMEN, 0x1);
851 /* Enable I/O, Mem, and Busmaster cycles */
852 out_le16((u16 *)(mbase + PCI_COMMAND),
853 in_le16((u16 *)(mbase + PCI_COMMAND)) |
854 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
855 out_le16(mbase + 0x200,0xcaad); /* Setting vendor ID */
856 out_le16(mbase + 0x202,0xfeed); /* Setting device ID */
859 while(!(SDR_READ(SDRN_PESDR_RCSSTS(sdr_base(port))) & (1 << 8))) {
861 printf("PCIE%d: BME not active\n", port);
867 printf("PCIE:%d successfully set as endpoint\n",port);
871 #endif /* CONFIG_440SPE && CONFIG_PCI */