de7c200585
- split softc size and match/attach out from cfdriver into a new struct cfattach. - new "attach" directive for files.*. May specify the name of the cfattach structure, so that devices may be easily attached to parents with different autoconfiguration semantics.
36 lines
838 B
Plaintext
36 lines
838 B
Plaintext
# $NetBSD: files.pci,v 1.13 1996/03/17 00:55:24 thorpej Exp $
|
|
#
|
|
# Config.new file and device description for machine-independent PCI code.
|
|
# Included by ports that need it. Requires that the SCSI files be
|
|
# defined first.
|
|
|
|
device pci {[dev = -1], [function = -1]}
|
|
attach pci at pcibus
|
|
file dev/pci/pci.c pci needs-flag
|
|
file dev/pci/pci_subr.c pci
|
|
|
|
# Adaptec 7870 chips
|
|
device ahc: scsi, aic7xxx
|
|
attach ahc at pci
|
|
file dev/pci/aic7870.c ahc
|
|
|
|
# Ethernet driver for DC21040-based boards
|
|
device de: ether, ifnet
|
|
attach de at pci
|
|
file dev/pci/if_de.c de
|
|
|
|
# Digital DEFPA PCI FDDI Controller
|
|
device fpa: pdq, fddi, ifnet
|
|
attach fpa at pci
|
|
file dev/pci/if_fpa.c fpa
|
|
|
|
# NCR 53c8xx SCSI chips
|
|
device ncr: scsi
|
|
attach ncr at pci
|
|
file dev/pci/ncr.c ncr
|
|
|
|
# PCI-PCI bridge chips
|
|
device ppb: pcibus
|
|
attach ppb at pci
|
|
file dev/pci/ppb.c ppb
|