files.isa revision 1.15
1#	$NetBSD: files.isa,v 1.15 1996/03/17 13:21:31 cgd Exp $
2#
3# Config.new file and device description for machine-independent ISA code.
4# Included by ports that need it.  Requires that the SCSI files be
5# defined first.
6
7# ports should specify appropriate major numbers for the following
8# devices:
9#	mcd, scd, wd, wt
10
11device	isa {[port = -1], [size = 0],
12	     [iomem = -1], [iosiz = 0],
13	     [irq = -1], [drq = -1]}
14attach	isa at isabus
15file	dev/isa/isa.c			isa needs-flag
16
17# ISA DMA controller
18define	isadma
19file	dev/isa/isadma.c		isadma needs-flag
20
21#
22# 8250/16[45]50-based multi-port serial boards
23#
24
25define	commulti {[slave = -1]}
26
27# AST 4-port board
28device	ast: commulti
29attach	ast at isa
30file	dev/isa/ast.c			ast
31
32# BOCA 8-port board
33device	boca: commulti
34attach	boca at isa
35file	dev/isa/boca.c			boca
36
37# IBM RT PC 4-port board
38device	rtfps: commulti
39attach	rtfps at isa
40file	dev/isa/rtfps.c			rtfps
41
42#
43# Serial and parallel drivers
44#
45
46# 8250/16[45]50-based "com" ports
47device	com: tty
48attach	com at isa with com_isa
49attach	com at commulti with com_commulti
50file	dev/isa/com.c			com & (com_isa | com_commulti) needs-flag
51
52# Cyclades Cyclom multiport serial cards
53# XXX currently broken
54device	cy: tty
55attach	cy at isa
56file	dev/isa/cy.c			cy needs-count
57
58# PC parallel ports (XXX what chip?)
59device	lpt
60attach	lpt at isa
61file	dev/isa/lpt.c			lpt needs-flag
62
63#
64# SCSI host adapters
65#
66
67# Adaptec AHA-154x family
68device	aha: scsi, isadma
69attach	aha at isa
70file	dev/isa/aha1542.c		aha
71
72# Adapctec AIC-6[32]60 ICs
73device	aic: scsi, isadma
74attach	aic at isa
75file	dev/isa/aic6360.c		aic
76
77# Adaptec 7770-based EISA, VLB, etc. controllers
78device	ahe: scsi, aic7xxx
79attach	ahe at isa
80file	dev/isa/aha284x.c		ahe
81
82# BusLogic BT-74x EISA family (XXX; should be EISA.  it's special)
83device	bt: scsi, isadma
84attach	bt at isa
85file	dev/isa/bt742a.c		bt
86
87# Seagate ST0[12] ICs
88device	sea: scsi, isadma
89attach	sea at isa
90file	dev/isa/seagate.c		sea
91
92# UltraStor UHA-[13]4f boards
93device	uha: scsi, isadma
94attach	uha at isa
95file	dev/isa/ultra14f.c		uha
96
97# Western Digital WD7000 boards (XXX incomplete description)
98# XXX not yet working
99device	wds: scsi, isadma
100attach	wds at isa
101file	dev/isa/wd7000.c		wds
102
103#
104# Other ISA disk controllers
105#
106
107# Mitsumi CD-ROM controllers
108device	mcd: disk
109attach	mcd at isa
110file	dev/isa/mcd.c			mcd needs-flag
111
112# Sony CDU-3[13]A CD-ROM drives
113device	scd: disk
114attach	scd at isa
115file	dev/isa/scd.c			scd needs-flag
116
117# ISA "wd" (ESDI/IDE/etc.) controllers
118device	wdc {drive = -1}
119attach	wdc at isa
120device	wd: disk, isadma
121attach	wd at wdc
122file	dev/isa/wd.c			wdc needs-flag
123
124# Wangtek- and Archive-compatible tape controller boards
125device	wt: tape, isadma
126attach	wt at isa
127file	dev/isa/wt.c			wt needs-flag
128
129#
130# ISA networking drivers
131#
132
133# 3Com common probe code
134define	elink
135file	dev/isa/elink.c			elink
136
137# National Semiconductor DS8390/WD83C690-based boards
138# (WD/SMC 80x3 family, SMC Ultra [8216], 3Com 3C503, NE[12]000, and clones)
139device	ed: ether, ifnet
140attach	ed at isa
141file	dev/isa/if_ed.c			ed
142
143# 3Com 3C505
144device	eg: ether, ifnet
145attach	eg at isa
146file	dev/isa/if_eg.c			eg
147
148# 3Com 3C501
149device	el: ether, ifnet
150attach	el at isa
151file	dev/isa/if_el.c			el
152
153# 3Com 3C5x9, 3c59x (EtherLink III) family
154device	ep: ether, ifnet, elink
155attach	ep at isa with ep_isa
156attach	ep at pci with ep_pci
157file	dev/isa/if_ep.c			ep
158
159# Fujitsu MB8696[05]-based boards
160# (Allied Telesis AT1700)
161device	fe: ether, ifnet
162attach	fe at isa
163file	dev/isa/if_fe.c			fe
164
165# HP Lan Ethernet controllers
166# XXX currently broken
167#device hp: ether, ifnet
168#attach	hp at isa
169#file	dev/isa/if_hp.c			hp
170
171# Intel i82586-based boards
172# (AT&T StarLAN 10, AT&T EN100, AT&T StarLAN Fiber, 3Com 3C507)
173device	ie: ether, ifnet, elink
174attach	ie at isa
175file	dev/isa/if_ie.c			ie
176
177# XXX ???
178# XXX NOT IN TREE?
179#device	ix: ether, ifnet
180#attach	ix at isa
181#file	dev/isa/if_ix.c			ix
182
183# AMD am7990 (Lance) -based boards
184# (BICC Isolan, NE2100, DEPCA)
185# XXX conflicts with alpha if_le.c
186#device	le: ether, ifnet, isadma
187#attach	le at isa with le_isa
188#file	dev/isa/if_le.c			le
189
190#
191# ISA Sound hardware
192#
193
194# the SoundBlaster DSP, or close likenesses; used by other drivers
195define	sbdsp
196file	dev/isa/sbdsp.c			sbdsp
197
198# SoundBlaster family
199device	sb: audio, isadma, sbdsp, mulaw
200attach	sb at isa
201file	dev/isa/sb.c			sb needs-flag
202
203# ProAudio Spectrum
204device	pas: audio, isadma, sbdsp, mulaw
205attach	pas at isa
206file	dev/isa/pas.c			pas needs-flag
207
208# AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers
209define	ad1848
210file	dev/isa/ad1848.c		ad1848
211
212# ICS2101 mixer chip support; used by other drivers
213define	ics2101
214file	dev/isa/ics2101.c		ics2101
215
216
217# Audio systems based on Echo Speech Corp. ESC61[45] ASICs
218device	pss {[port = -1], [size = 0],
219	     [iomem = -1], [iosiz = 0],
220	     [irq = -1], [drq = -1]}
221attach	pss at isa
222device	sp: audio, isadma, ad1848
223attach	sp at pss
224file	dev/isa/pss.c			pss needs-flag
225
226# Microsoft Windows Sound System
227device	wss: audio, isadma, ad1848
228attach	wss at isa
229file	dev/isa/wss.c			wss needs-flag
230
231# Gravis UltraSound & UltraSound MAX.
232# Use the "flags" keyword in a config file to specify an extra DMA
233# channel for full-duplex operation. 
234device	gus: audio, isadma, ics2101, ad1848, mulaw
235attach	gus at isa
236file	dev/isa/gus.c			gus needs-flag
237