diff options
Diffstat (limited to 'sys/arch/powerpc/pci/pcibrvar.h')
-rw-r--r-- | sys/arch/powerpc/pci/pcibrvar.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/arch/powerpc/pci/pcibrvar.h b/sys/arch/powerpc/pci/pcibrvar.h index 1eb409b9cb3..21b2ebb9de7 100644 --- a/sys/arch/powerpc/pci/pcibrvar.h +++ b/sys/arch/powerpc/pci/pcibrvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcibrvar.h,v 1.4 2000/01/22 03:55:40 rahnds Exp $ */ +/* $OpenBSD: pcibrvar.h,v 1.5 2000/03/20 07:10:51 rahnds Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -33,9 +33,13 @@ */ struct pcibr_config { - bus_space_tag_t lc_iot; bus_space_tag_t lc_memt; + bus_space_tag_t lc_iot; + bus_space_handle_t ioh_cf8; + bus_space_handle_t ioh_cfc; struct ppc_pci_chipset lc_pc; + int config_type; + int bus; int pci_init_done; }; @@ -44,9 +48,8 @@ struct pcibr_softc { struct pcibr_config *sc_pcibr; struct ppc_bus_space sc_membus_space; struct ppc_bus_space sc_iobus_space; - bus_space_handle_t ioh_cf8; - bus_space_handle_t ioh_cfc; - + struct powerpc_bus_dma_tag sc_dmatag; + struct pcibr_config pcibr_config; }; |