diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-13 20:10:50 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-13 20:10:50 +0000 |
commit | 2bbf5c811672d5b0c39d5784c61dd91913e8e045 (patch) | |
tree | a1809fa7aebf56fa87ef985c841627841bad37d0 /sys/arch/macppc/pci | |
parent | 9afec5752905399d9d215d7e3ed13f7c74e690fb (diff) |
* Add "pcitag_t *pba_bridgetag" to pci_attach_args. This is set to
NULL for root PCI busses. For busses behind a bridge, it points to
a persistent copy of the bridge's pcitag_t. This can be very useful
for machine-dependent PCI bus enumeration code.
From NetBSD
ok grange@ kettenis@
Diffstat (limited to 'sys/arch/macppc/pci')
-rw-r--r-- | sys/arch/macppc/pci/ht.c | 3 | ||||
-rw-r--r-- | sys/arch/macppc/pci/mpcpcibus.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/macppc/pci/ht.c b/sys/arch/macppc/pci/ht.c index 657c41cac8b..ba439b2056e 100644 --- a/sys/arch/macppc/pci/ht.c +++ b/sys/arch/macppc/pci/ht.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ht.c,v 1.8 2005/12/14 20:06:57 kettenis Exp $ */ +/* $OpenBSD: ht.c,v 1.9 2006/03/13 20:10:49 brad Exp $ */ /* * Copyright (c) 2005 Mark Kettenis @@ -190,6 +190,7 @@ ht_attach(struct device *parent, struct device *self, void *aux) pba.pba_dmat = &pci_bus_dma_tag; pba.pba_pc = &sc->sc_pc; pba.pba_bus = 0; + pba.pba_bridgetag = NULL; printf(": %d devices\n", sc->sc_maxdevs); diff --git a/sys/arch/macppc/pci/mpcpcibus.c b/sys/arch/macppc/pci/mpcpcibus.c index 786ab8c5dbc..cd624c24a0b 100644 --- a/sys/arch/macppc/pci/mpcpcibus.c +++ b/sys/arch/macppc/pci/mpcpcibus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpcpcibus.c,v 1.30 2006/02/11 05:21:40 brad Exp $ */ +/* $OpenBSD: mpcpcibus.c,v 1.31 2006/03/13 20:10:49 brad Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -444,6 +444,7 @@ mpcpcibrattach(struct device *parent, struct device *self, void *aux) pba.pba_memt = &sc->sc_membus_space; pba.pba_pc = &lcp->lc_pc; pba.pba_bus = 0; + pba.pba_bridgetag = NULL; /* we want to check pci irq settings */ if (of_node != 0) { |