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