blob: e8b563b6972ce25b6813c4ed2377e0acfcd27542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $OpenBSD: files.tc,v 1.8 2005/03/08 20:00:25 tdeval Exp $
# $NetBSD: files.tc,v 1.26 2001/11/28 10:21:24 lukem Exp $
#
# Config file and device description for machine-independent
# TURBOchannel code. Included by ports that need it.
device tc {[slot = -1], [offset = -1]}
#attach tc at tcbus
file dev/tc/tc.c tc needs-flag
# IOCTL ASIC
device ioasic {[offset = -1]}
attach ioasic at tc
file dev/tc/ioasic_subr.c ioasic
# LANCE attachments.
# lance device defined in sys/conf/files
# le_dec_subr attribute defined in sys/dev/dec/files.dec
attach le at ioasic with le_ioasic: le_dec_subr
file dev/tc/if_le_ioasic.c le_ioasic
attach le at tc with le_tc: le_dec_subr
file dev/tc/if_le_tc.c le_tc
# DEFTA FDDI controller
device fta: pdq, fddi, ifnet
attach fta at tc
file dev/tc/if_fta.c fta
# TCDS dual channel SCSI
device tcds {[chip = -1]}
attach tcds at tc
file dev/tc/tcds.c tcds
# 53C[F]90 PMAZ single channel SCSI
device asc: ncr53c9x, scsi
file dev/tc/asc.c asc
attach asc at tc with asc_tc
file dev/tc/asc_tc.c asc_tc
attach asc at tcds with asc_tcds
file dev/tc/asc_tcds.c asc_tcds
|