2 * Low-Level PCI and SB support for BCM47xx
4 * Copyright 2006, Broadcom Corporation
7 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
8 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
9 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
10 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
12 * $Id: hndpci.c,v 1.1.1.3 2006/04/08 06:13:39 honor Exp $
22 #include <bcmendian.h>
30 #define PCI_MSG(args) printf args
33 #endif /* BCMDBG_PCI */
35 /* Can free sbpci_init() memory after boot */
40 /* Emulated configuration space */
48 static pci_config_regs sb_config_regs
[SB_MAXCORES
];
49 static sb_bar_cfg_t sb_bar_cfg
[SB_MAXCORES
];
51 /* Links to emulated and real PCI configuration spaces */
54 pci_config_regs
*emu
; /* emulated PCI config */
55 pci_config_regs
*pci
; /* real PCI config */
56 sb_bar_cfg_t
*bar
; /* region sizes */
58 static sb_pci_cfg_t sb_pci_cfg
[SB_MAXCORES
][MAXFUNCS
];
60 /* Special emulated config space for non-existing device */
61 static pci_config_regs sb_pci_null
= { 0xffff, 0xffff };
64 static uint16 pci_ban
[SB_MAXCORES
] = { 0 };
65 static uint pci_banned
= 0;
68 static bool cardbus
= FALSE
;
70 /* Disable PCI host core */
71 static bool pci_disabled
= FALSE
;
73 /* Host bridge slot #, default to 0 */
74 static uint8 pci_hbslot
= 0;
77 #define PCI_SLOTAD_MAP 16 /* SLOT<n> mapps to AD<n+16> */
78 #define PCI_HBSBCFG_REV 8 /* MIN. core rev. required to
79 * access host bridge PCI cfg space
84 * Functions for accessing external PCI configuration space
87 /* Assume one-hot slot wiring */
88 #define PCI_SLOT_MAX 16 /* Max. PCI Slots */
90 static uint32
config_cmd(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
)
97 /* CardBusMode supports only one device */
98 if (cardbus
&& dev
> 1)
103 coreidx
= sb_coreidx(sbh
);
104 regs
= (sbpciregs_t
*) sb_setcore(sbh
, SB_PCI
, 0);
106 /* Type 0 transaction */
108 /* Skip unwired slots */
109 if (dev
< PCI_SLOT_MAX
) {
112 /* Slide the PCI window to the appropriate slot */
115 ((1 << (dev
+ PCI_SLOTAD_MAP
)) & SBTOPCI1_MASK
));
116 W_REG(osh
, ®s
->sbtopci1
, win
);
118 ((1 << (dev
+ PCI_SLOTAD_MAP
)) & ~SBTOPCI1_MASK
) |
119 (func
<< PCICFG_FUN_SHIFT
) | (off
& ~3);
122 /* Type 1 transaction */
123 W_REG(osh
, ®s
->sbtopci1
, SBTOPCI_CFG1
);
125 (bus
<< PCICFG_BUS_SHIFT
) |
126 (dev
<< PCICFG_SLOT_SHIFT
) |
127 (func
<< PCICFG_FUN_SHIFT
) | (off
& ~3);
130 sb_setcoreidx(sbh
, coreidx
);
136 * Read host bridge PCI config registers from Silicon Backplane (>=rev8).
138 * It returns TRUE to indicate that access to the host bridge's pci config
139 * from SB is ok, and values in 'addr' and 'val' are valid.
141 * It can only read registers at multiple of 4-bytes. Callers must pick up
142 * needed bytes from 'val' based on 'off' value. Value in 'addr' reflects
143 * the register address where value in 'val' is read.
146 sb_pcihb_read_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
,
147 uint32
** addr
, uint32
* val
)
156 ASSERT(dev
== pci_hbslot
);
161 /* read pci config when core rev >= 8 */
162 coreidx
= sb_coreidx(sbh
);
163 regs
= (sbpciregs_t
*) sb_setcore(sbh
, SB_PCI
, 0);
164 if (regs
&& sb_corerev(sbh
) >= PCI_HBSBCFG_REV
) {
165 *addr
= (uint32
*) & regs
->pcicfg
[func
][off
>> 2];
166 *val
= R_REG(osh
, *addr
);
169 sb_setcoreidx(sbh
, coreidx
);
175 extpci_read_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
,
178 uint32 addr
= 0, *reg
= NULL
, val
;
182 * Set value to -1 when:
183 * flag 'pci_disabled' is true;
184 * value of 'addr' is zero;
190 else if (bus
== 1 && dev
== pci_hbslot
&& func
== 0 &&
191 sb_pcihb_read_config(sbh
, bus
, dev
, func
, off
, ®
, &val
)) ;
192 else if (((addr
= config_cmd(sbh
, bus
, dev
, func
, off
)) == 0) ||
193 ((reg
= (uint32
*) REG_MAP(addr
, len
)) == 0) ||
194 (BUSPROBE(val
, reg
) != 0))
197 PCI_MSG(("%s: 0x%x <= 0x%p(0x%x), len %d, off 0x%x, buf 0x%p\n",
198 __FUNCTION__
, val
, reg
, addr
, len
, off
, buf
));
200 val
>>= 8 * (off
& 3);
202 *((uint32
*) buf
) = val
;
204 *((uint16
*) buf
) = (uint16
) val
;
206 *((uint8
*) buf
) = (uint8
) val
;
217 extpci_write_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
,
221 uint32 addr
= 0, *reg
= NULL
, val
;
227 * Ignore write attempt when:
228 * flag 'pci_disabled' is true;
229 * value of 'addr' is zero;
235 else if (bus
== 1 && dev
== pci_hbslot
&& func
== 0 &&
236 sb_pcihb_read_config(sbh
, bus
, dev
, func
, off
, ®
, &val
)) ;
237 else if (((addr
= config_cmd(sbh
, bus
, dev
, func
, off
)) == 0) ||
238 ((reg
= (uint32
*) REG_MAP(addr
, len
)) == 0) ||
239 (BUSPROBE(val
, reg
) != 0))
243 val
= *((uint32
*) buf
);
245 val
&= ~(0xffff << (8 * (off
& 3)));
246 val
|= *((uint16
*) buf
) << (8 * (off
& 3));
247 } else if (len
== 1) {
248 val
&= ~(0xff << (8 * (off
& 3)));
249 val
|= *((uint8
*) buf
) << (8 * (off
& 3));
255 PCI_MSG(("%s: 0x%x => 0x%p\n", __FUNCTION__
, val
, reg
));
257 W_REG(osh
, reg
, val
);
267 * Must access emulated PCI configuration at these locations even when
268 * the real PCI config space exists and is accessible.
272 * PCI_CFG_PROGIF (0x09)
273 * PCI_CFG_SUBCL (0x0a)
274 * PCI_CFG_BASECL (0x0b)
279 #define FORCE_EMUCFG(off, len) \
280 ((off == PCI_CFG_VID) || (off == PCI_CFG_DID) || \
281 (off == PCI_CFG_PROGIF) || \
282 (off == PCI_CFG_SUBCL) || (off == PCI_CFG_BASECL) || \
283 (off == PCI_CFG_HDR) || \
284 (off == PCI_CFG_INT) || (off == PCI_CFG_PIN))
286 /* Sync the emulation registers and the real PCI config registers. */
288 sb_pcid_read_config(sb_t
* sbh
, uint coreidx
, sb_pci_cfg_t
* cfg
,
298 /* decide if real PCI config register access is necessary */
299 if (FORCE_EMUCFG(off
, len
))
304 /* access to the real pci config space only when the core is up */
305 oldidx
= sb_coreidx(sbh
);
306 sb_setcoreidx(sbh
, coreidx
);
307 if (sb_iscoreup(sbh
)) {
309 *(uint32
*) ((ulong
) cfg
->emu
+ off
) =
311 (osh
, (uint32
*) ((ulong
) cfg
->pci
+ off
)));
313 *(uint16
*) ((ulong
) cfg
->emu
+ off
) =
315 (osh
, (uint16
*) ((ulong
) cfg
->pci
+ off
)));
317 *(uint8
*) ((ulong
) cfg
->emu
+ off
) =
318 R_REG(osh
, (uint8
*) ((ulong
) cfg
->pci
+ off
));
320 sb_setcoreidx(sbh
, oldidx
);
324 sb_pcid_write_config(sb_t
* sbh
, uint coreidx
, sb_pci_cfg_t
* cfg
,
336 /* decide if real PCI config register access is necessary */
337 if (FORCE_EMUCFG(off
, len
))
340 /* access to the real pci config space only when the core is up */
341 oldidx
= sb_coreidx(sbh
);
342 sb_setcoreidx(sbh
, coreidx
);
343 if (sb_iscoreup(sbh
)) {
345 W_REG(osh
, (uint32
*) ((ulong
) cfg
->pci
+ off
),
346 ltoh32(*(uint32
*) ((ulong
) cfg
->emu
+ off
)));
348 W_REG(osh
, (uint16
*) ((ulong
) cfg
->pci
+ off
),
349 ltoh16(*(uint16
*) ((ulong
) cfg
->emu
+ off
)));
351 W_REG(osh
, (uint8
*) ((ulong
) cfg
->pci
+ off
),
352 *(uint8
*) ((ulong
) cfg
->emu
+ off
));
354 sb_setcoreidx(sbh
, oldidx
);
358 * Functions for accessing translated SB configuration space
361 sb_read_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
, void *buf
,
364 pci_config_regs
*cfg
;
366 if (dev
>= SB_MAXCORES
|| func
>= MAXFUNCS
367 || (off
+ len
) > sizeof(pci_config_regs
))
369 cfg
= sb_pci_cfg
[dev
][func
].emu
;
371 ASSERT(ISALIGNED(off
, len
));
372 ASSERT(ISALIGNED((uintptr
) buf
, len
));
374 /* use special config space if the device does not exist */
377 /* sync emulation with real PCI config if necessary */
378 else if (sb_pci_cfg
[dev
][func
].pci
)
379 sb_pcid_read_config(sbh
, dev
, &sb_pci_cfg
[dev
][func
], off
, len
);
382 *((uint32
*) buf
) = ltoh32(*((uint32
*) ((ulong
) cfg
+ off
)));
384 *((uint16
*) buf
) = ltoh16(*((uint16
*) ((ulong
) cfg
+ off
)));
386 *((uint8
*) buf
) = *((uint8
*) ((ulong
) cfg
+ off
));
394 sb_write_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
, void *buf
,
399 pci_config_regs
*cfg
;
403 if (dev
>= SB_MAXCORES
|| func
>= MAXFUNCS
404 || (off
+ len
) > sizeof(pci_config_regs
))
406 cfg
= sb_pci_cfg
[dev
][func
].emu
;
410 ASSERT(ISALIGNED(off
, len
));
411 ASSERT(ISALIGNED((uintptr
) buf
, len
));
415 /* Emulate BAR sizing */
416 if (off
>= OFFSETOF(pci_config_regs
, base
[0]) &&
417 off
<= OFFSETOF(pci_config_regs
, base
[3]) &&
418 len
== 4 && *((uint32
*) buf
) == ~0) {
419 coreidx
= sb_coreidx(sbh
);
420 if ((regs
= sb_setcoreidx(sbh
, dev
))) {
421 bar
= sb_pci_cfg
[dev
][func
].bar
;
422 /* Highest numbered address match register */
423 if (off
== OFFSETOF(pci_config_regs
, base
[0]))
424 cfg
->base
[0] = ~(bar
->size0
- 1);
425 else if (off
== OFFSETOF(pci_config_regs
, base
[1])
427 cfg
->base
[1] = ~(bar
->size1
- 1);
428 else if (off
== OFFSETOF(pci_config_regs
, base
[2])
430 cfg
->base
[2] = ~(bar
->size2
- 1);
431 else if (off
== OFFSETOF(pci_config_regs
, base
[3])
433 cfg
->base
[3] = ~(bar
->size3
- 1);
435 sb_setcoreidx(sbh
, coreidx
);
437 *((uint32
*) ((ulong
) cfg
+ off
)) = htol32(*((uint32
*) buf
));
439 *((uint16
*) ((ulong
) cfg
+ off
)) = htol16(*((uint16
*) buf
));
441 *((uint8
*) ((ulong
) cfg
+ off
)) = *((uint8
*) buf
);
445 /* sync emulation with real PCI config if necessary */
446 if (sb_pci_cfg
[dev
][func
].pci
)
447 sb_pcid_write_config(sbh
, dev
, &sb_pci_cfg
[dev
][func
], off
,
454 sbpci_read_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
,
458 return sb_read_config(sbh
, bus
, dev
, func
, off
, buf
, len
);
460 return extpci_read_config(sbh
, bus
, dev
, func
, off
, buf
, len
);
464 sbpci_write_config(sb_t
* sbh
, uint bus
, uint dev
, uint func
, uint off
,
468 return sb_write_config(sbh
, bus
, dev
, func
, off
, buf
, len
);
470 return extpci_write_config(sbh
, bus
, dev
, func
, off
, buf
, len
);
473 void sbpci_ban(uint16 core
)
475 if (pci_banned
< ARRAYSIZE(pci_ban
))
476 pci_ban
[pci_banned
++] = core
;
480 * Initiliaze PCI core. Return 0 after a successful initialization.
481 * Otherwise return -1 to indicate there is no PCI core and return 1
482 * to indicate PCI core is disabled.
484 int __init
sbpci_init_pci(sb_t
* sbh
)
486 uint chip
, chiprev
, chippkg
, host
;
496 chiprev
= sb_chiprev(sbh
);
497 chippkg
= sb_chippkg(sbh
);
501 if (!(pci
= (sbpciregs_t
*) sb_setcore(sbh
, SB_PCI
, 0))) {
502 printk("PCI: no core\n");
507 if ((chip
== 0x4310) && (chiprev
== 0))
510 sb
= (sbconfig_t
*) ((ulong
) pci
+ SBCONFIGOFF
);
512 boardflags
= (uint32
) getintvar(NULL
, "boardflags");
515 * The 200-pin BCM4712 package does not bond out PCI. Even when
516 * PCI is bonded out, some boards may leave the pins
519 if (((chip
== BCM4712_CHIP_ID
) &&
520 ((chippkg
== BCM4712SMALL_PKG_ID
) ||
521 (chippkg
== BCM4712MID_PKG_ID
))) || (boardflags
& BFL_NOPCI
))
524 /* Enable the core */
525 sb_core_reset(sbh
, 0, 0);
528 * If the PCI core should not be touched (disabled, not bonded
529 * out, or pins floating), do not even attempt to access core
530 * registers. Otherwise, try to determine if it is in host
536 host
= !BUSPROBE(val
, &pci
->control
);
541 /* Disable PCI interrupts in client mode */
542 W_REG(osh
, &sb
->sbintvec
, 0);
544 /* Disable the PCI bridge in client mode */
546 sb_core_disable(sbh
, 0);
548 printk("PCI: Disabled\n");
550 printk("PCI: Initializing host\n");
552 /* Disable PCI SBReqeustTimeout for BCM4785 */
553 if (chip
== BCM4785_CHIP_ID
) {
554 AND_REG(osh
, &sb
->sbimconfiglow
, ~0x00000070);
558 /* Reset the external PCI bus and enable the clock */
559 W_REG(osh
, &pci
->control
, 0x5); /* enable the tristate drivers */
560 W_REG(osh
, &pci
->control
, 0xd); /* enable the PCI clock */
561 OSL_DELAY(150); /* delay > 100 us */
562 W_REG(osh
, &pci
->control
, 0xf); /* deassert PCI reset */
563 /* Use internal arbiter and park REQ/GRNT at external master 0 */
564 W_REG(osh
, &pci
->arbcontrol
, PCI_INT_ARB
);
565 OSL_DELAY(1); /* delay 1 us */
566 if (sb_corerev(sbh
) >= 8) {
567 val
= getintvar(NULL
, "parkid");
568 ASSERT(val
<= PCI_PARKID_LAST
);
569 OR_REG(osh
, &pci
->arbcontrol
, val
<< PCI_PARKID_SHIFT
);
573 /* Enable CardBusMode */
574 cardbus
= getintvar(NULL
, "cardbus") == 1;
576 printk("PCI: Enabling CardBus\n");
577 /* GPIO 1 resets the CardBus device on bcm94710ap */
578 sb_gpioout(sbh
, 1, 1, GPIO_DRV_PRIORITY
);
579 sb_gpioouten(sbh
, 1, 1, GPIO_DRV_PRIORITY
);
580 W_REG(osh
, &pci
->sprom
[0],
581 R_REG(osh
, &pci
->sprom
[0]) | 0x400);
584 /* 64 MB I/O access window */
585 W_REG(osh
, &pci
->sbtopci0
, SBTOPCI_IO
);
586 /* 64 MB configuration access window */
587 W_REG(osh
, &pci
->sbtopci1
, SBTOPCI_CFG0
);
588 /* 1 GB memory access window */
589 W_REG(osh
, &pci
->sbtopci2
, SBTOPCI_MEM
| SB_PCI_DMA
);
591 /* Host bridge slot # nvram overwrite */
592 if ((hbslot
= nvram_get("pcihbslot"))) {
593 pci_hbslot
= simple_strtoul(hbslot
, NULL
, 0);
594 ASSERT(pci_hbslot
< PCI_MAX_DEVICES
);
597 /* Enable PCI bridge BAR0 prefetch and burst */
599 sbpci_write_config(sbh
, 1, pci_hbslot
, 0, PCI_CFG_CMD
, &val
,
602 /* Enable PCI interrupts */
603 W_REG(osh
, &pci
->intmask
, PCI_INTA
);
610 * Get the PCI region address and size information.
613 sbpci_init_regions(sb_t
* sbh
, uint func
, pci_config_regs
* cfg
,
623 coreid
= sb_coreid(sbh
);
624 regs
= sb_coreregs(sbh
);
625 sb
= (sbconfig_t
*) ((ulong
) regs
+ SBCONFIGOFF
);
629 base
= htol32(sb_base(R_REG(osh
, &sb
->sbadmatch0
)));
631 cfg
->base
[0] = func
== 0 ? base
: base
+ 0x800; /* OHCI/EHCI */
638 bar
->size0
= func
== 0 ? 0x200 : 0x100; /* OHCI/EHCI */
644 cfg
->base
[0] = htol32(sb_base(R_REG(osh
, &sb
->sbadmatch0
)));
645 cfg
->base
[1] = htol32(sb_base(R_REG(osh
, &sb
->sbadmatch1
)));
646 cfg
->base
[2] = htol32(sb_base(R_REG(osh
, &sb
->sbadmatch2
)));
647 cfg
->base
[3] = htol32(sb_base(R_REG(osh
, &sb
->sbadmatch3
)));
651 (R_REG(osh
, &sb
->sbidlow
) & SBIDL_AR_MASK
) >>
653 bar
->size0
= sb_size(R_REG(osh
, &sb
->sbadmatch0
));
654 bar
->size1
= sb_size(R_REG(osh
, &sb
->sbadmatch1
));
655 bar
->size2
= sb_size(R_REG(osh
, &sb
->sbadmatch2
));
656 bar
->size3
= sb_size(R_REG(osh
, &sb
->sbadmatch3
));
662 * Construct PCI config spaces for SB cores so that they
663 * can be accessed as if they were PCI devices.
665 static void __init
sbpci_init_cores(sb_t
* sbh
)
667 uint chiprev
, coreidx
, i
;
669 pci_config_regs
*cfg
, *pci
;
673 uint16 vendor
, device
;
675 uint8
class, subclass
, progif
;
680 chiprev
= sb_chiprev(sbh
);
681 coreidx
= sb_coreidx(sbh
);
685 /* Scan the SB bus */
686 bzero(sb_config_regs
, sizeof(sb_config_regs
));
687 bzero(sb_bar_cfg
, sizeof(sb_bar_cfg
));
688 bzero(sb_pci_cfg
, sizeof(sb_pci_cfg
));
689 memset(&sb_pci_null
, -1, sizeof(sb_pci_null
));
690 cfg
= sb_config_regs
;
692 for (dev
= 0; dev
< SB_MAXCORES
; dev
++) {
693 /* Check if the core exists */
694 if (!(regs
= sb_setcoreidx(sbh
, dev
)))
696 sb
= (sbconfig_t
*) ((ulong
) regs
+ SBCONFIGOFF
);
698 /* Check if this core is banned */
699 coreid
= sb_coreid(sbh
);
700 for (i
= 0; i
< pci_banned
; i
++)
701 if (coreid
== pci_ban
[i
])
706 for (func
= 0; func
< MAXFUNCS
; ++func
) {
707 /* Make sure we won't go beyond the limit */
708 if (cfg
>= &sb_config_regs
[SB_MAXCORES
]) {
709 printk("PCI: too many emulated devices\n");
713 /* Convert core id to pci id */
715 (sbh
, func
, &vendor
, &device
, &class, &subclass
,
720 * Differentiate real PCI config from emulated.
721 * non zero 'pci' indicate there is a real PCI config space
725 case BCM47XX_GIGETH_ID
:
727 (pci_config_regs
*) ((uint32
) regs
+ 0x800);
729 case BCM47XX_SATAXOR_ID
:
731 (pci_config_regs
*) ((uint32
) regs
+ 0x400);
733 case BCM47XX_ATA100_ID
:
735 (pci_config_regs
*) ((uint32
) regs
+ 0x800);
741 /* Supported translations */
742 cfg
->vendor
= htol16(vendor
);
743 cfg
->device
= htol16(device
);
744 cfg
->rev_id
= chiprev
;
745 cfg
->prog_if
= progif
;
746 cfg
->sub_class
= subclass
;
747 cfg
->base_class
= class;
748 cfg
->header_type
= header
;
749 sbpci_init_regions(sbh
, func
, cfg
, bar
);
750 /* Save core interrupt flag */
752 R_REG(osh
, &sb
->sbtpsflag
) & SBTPS_NUM0_MASK
;
753 /* Save core interrupt assignment */
754 cfg
->int_line
= sb_irq(sbh
);
755 /* Indicate there is no SROM */
756 *((uint32
*) & cfg
->sprom_control
) = 0xffffffff;
758 /* Point to the PCI config spaces */
759 sb_pci_cfg
[dev
][func
].emu
= cfg
;
760 sb_pci_cfg
[dev
][func
].pci
= pci
;
761 sb_pci_cfg
[dev
][func
].bar
= bar
;
768 sb_setcoreidx(sbh
, coreidx
);
772 * Initialize PCI core and construct PCI config spaces for SB cores.
773 * Must propagate sbpci_init_pci() return value to the caller to let
774 * them know the PCI core initialization status.
776 int __init
sbpci_init(sb_t
* sbh
)
778 int status
= sbpci_init_pci(sbh
);
779 sbpci_init_cores(sbh
);