files.isa revision 1.39 1 1.39 is # $NetBSD: files.isa,v 1.39 1997/10/14 15:50:22 is Exp $
2 1.1 cgd #
3 1.33 pk # Config 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.36 augustss [irq = -1], [drq = -1], [drq2 = -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.28 mycroft file dev/isa/com.c com needs-flag
49 1.28 mycroft
50 1.13 thorpej attach com at isa with com_isa
51 1.28 mycroft file dev/isa/com_isa.c com_isa
52 1.28 mycroft
53 1.28 mycroft attach com at commulti with com_multi
54 1.28 mycroft file dev/isa/com_multi.c com_multi
55 1.1 cgd
56 1.24 christos # Cyclades Cyclom-8/16/32
57 1.24 christos attach cy at isa with cy_isa
58 1.24 christos file dev/isa/cy_isa.c cy_isa
59 1.2 cgd
60 1.39 is # PC-style parallel ports (XXX what chip?)
61 1.39 is # XXX chip driver should be defined elsewhere
62 1.13 thorpej device lpt
63 1.39 is file dev/ic/lpt.c lpt needs-flag
64 1.39 is
65 1.39 is # PC-style parallel ports: ISA bus attachment
66 1.39 is attach lpt at isa with lpt_isa
67 1.39 is file dev/isa/lpt_isa.c lpt_isa
68 1.1 cgd
69 1.2 cgd #
70 1.2 cgd # SCSI host adapters
71 1.2 cgd #
72 1.2 cgd
73 1.2 cgd # Adaptec AHA-154x family
74 1.26 mycroft # device declaration in sys/conf/files
75 1.23 mycroft attach aha at isa with aha_isa: isadma
76 1.26 mycroft file dev/isa/aha_isa.c aha_isa
77 1.2 cgd
78 1.21 mycroft # Adaptec AIC-6[32]60 ICs
79 1.38 christos # device declaration in sys/conf/files
80 1.38 christos attach aic at isa with aic_isa: isadma
81 1.38 christos file dev/isa/aic_isa.c aic_isa
82 1.30 pk
83 1.30 pk # Qlogic ESP406/FAS408 boards
84 1.30 pk # ncr53c9x device declaration in sys/conf/files
85 1.30 pk device esp: scsi, ncr53c9x, isadma
86 1.30 pk attach esp at isa with esp_isa
87 1.30 pk file dev/isa/esp_isa.c esp_isa
88 1.2 cgd
89 1.22 mycroft # BusLogic BT-[45]4x ISA family
90 1.22 mycroft # device declaration in sys/conf/files
91 1.22 mycroft attach bha at isa with bha_isa: isadma
92 1.22 mycroft file dev/isa/bha_isa.c bha_isa
93 1.2 cgd
94 1.2 cgd # Seagate ST0[12] ICs
95 1.13 thorpej device sea: scsi, isadma
96 1.13 thorpej attach sea at isa
97 1.1 cgd file dev/isa/seagate.c sea
98 1.2 cgd
99 1.2 cgd # UltraStor UHA-[13]4f boards
100 1.22 mycroft # device declaration in sys/conf/files
101 1.22 mycroft attach uha at isa with uha_isa: isadma
102 1.22 mycroft file dev/isa/uha_isa.c uha_isa
103 1.2 cgd
104 1.17 mycroft # Western Digital WD7000 and Future Domain TMC-7000 boards
105 1.13 thorpej device wds: scsi, isadma
106 1.13 thorpej attach wds at isa
107 1.17 mycroft file dev/isa/wds.c wds
108 1.1 cgd
109 1.2 cgd #
110 1.2 cgd # Other ISA disk controllers
111 1.2 cgd #
112 1.2 cgd
113 1.4 mycroft # Mitsumi CD-ROM controllers
114 1.13 thorpej device mcd: disk
115 1.13 thorpej attach mcd at isa
116 1.1 cgd file dev/isa/mcd.c mcd needs-flag
117 1.2 cgd
118 1.4 mycroft # Sony CDU-3[13]A CD-ROM drives
119 1.13 thorpej device scd: disk
120 1.13 thorpej attach scd at isa
121 1.4 mycroft file dev/isa/scd.c scd needs-flag
122 1.2 cgd
123 1.2 cgd # ISA "wd" (ESDI/IDE/etc.) controllers
124 1.37 bouyer define ata {drive=-1}
125 1.37 bouyer device wdc: atapi, isadma, ata
126 1.13 thorpej attach wdc at isa
127 1.37 bouyer device wd: disk
128 1.37 bouyer attach wd at ata
129 1.37 bouyer file dev/isa/wdc.c wdc needs-flag
130 1.37 bouyer file dev/isa/wd.c wd needs-flag
131 1.2 cgd
132 1.2 cgd # Wangtek- and Archive-compatible tape controller boards
133 1.13 thorpej device wt: tape, isadma
134 1.13 thorpej attach wt at isa
135 1.1 cgd file dev/isa/wt.c wt needs-flag
136 1.1 cgd
137 1.2 cgd #
138 1.2 cgd # ISA networking drivers
139 1.2 cgd #
140 1.2 cgd
141 1.2 cgd # 3Com common probe code
142 1.1 cgd define elink
143 1.1 cgd file dev/isa/elink.c elink
144 1.1 cgd
145 1.2 cgd # National Semiconductor DS8390/WD83C690-based boards
146 1.2 cgd # (WD/SMC 80x3 family, SMC Ultra [8216], 3Com 3C503, NE[12]000, and clones)
147 1.27 is device ed: ether, ifnet, arp
148 1.13 thorpej attach ed at isa
149 1.1 cgd file dev/isa/if_ed.c ed
150 1.2 cgd
151 1.2 cgd # 3Com 3C505
152 1.27 is device eg: ether, ifnet, arp
153 1.13 thorpej attach eg at isa
154 1.1 cgd file dev/isa/if_eg.c eg
155 1.2 cgd
156 1.2 cgd # 3Com 3C501
157 1.27 is device el: ether, ifnet, arp
158 1.13 thorpej attach el at isa
159 1.1 cgd file dev/isa/if_el.c el
160 1.2 cgd
161 1.18 thorpej # 3Com 3C509 Ethernet controller
162 1.28 mycroft # device declaration in sys/conf/files
163 1.18 thorpej attach ep at isa with ep_isa: elink
164 1.18 thorpej file dev/isa/if_ep_isa.c ep_isa
165 1.4 mycroft
166 1.4 mycroft # Fujitsu MB8696[05]-based boards
167 1.4 mycroft # (Allied Telesis AT1700)
168 1.27 is device fe: ether, ifnet, arp
169 1.13 thorpej attach fe at isa
170 1.4 mycroft file dev/isa/if_fe.c fe
171 1.2 cgd
172 1.2 cgd # HP Lan Ethernet controllers
173 1.2 cgd # XXX currently broken
174 1.27 is #device hp: ether, ifnet, arp
175 1.13 thorpej #attach hp at isa
176 1.1 cgd #file dev/isa/if_hp.c hp
177 1.2 cgd
178 1.2 cgd # Intel i82586-based boards
179 1.2 cgd # (AT&T StarLAN 10, AT&T EN100, AT&T StarLAN Fiber, 3Com 3C507)
180 1.27 is device ie: ether, ifnet, elink, arp
181 1.13 thorpej attach ie at isa
182 1.1 cgd file dev/isa/if_ie.c ie
183 1.19 is
184 1.19 is # Intel i82595-based boards.
185 1.19 is # (Intel EtherExpress PRO)
186 1.27 is device iy: ether, ifnet, arp
187 1.19 is attach iy at isa
188 1.19 is file dev/isa/if_iy.c iy
189 1.2 cgd
190 1.2 cgd # XXX ???
191 1.2 cgd # XXX NOT IN TREE?
192 1.27 is #device ix: ether, ifnet, arp
193 1.13 thorpej #attach ix at isa
194 1.2 cgd #file dev/isa/if_ix.c ix
195 1.2 cgd
196 1.2 cgd # AMD am7990 (Lance) -based boards
197 1.2 cgd # (BICC Isolan, NE2100, DEPCA)
198 1.20 thorpej # device declaration in sys/conf/files
199 1.20 thorpej attach le at isa with le_isa: isadma
200 1.20 thorpej file dev/isa/if_le_isa.c le_isa
201 1.34 matt
202 1.34 matt # DEC EtherWORKS III (LEMAC-based: DE203, DE204, DE205) cards
203 1.34 matt attach lc at isa with lc_isa
204 1.34 matt file dev/isa/if_lc_isa.c lc
205 1.1 cgd
206 1.2 cgd #
207 1.2 cgd # ISA Sound hardware
208 1.2 cgd #
209 1.2 cgd
210 1.2 cgd # the SoundBlaster DSP, or close likenesses; used by other drivers
211 1.1 cgd define sbdsp
212 1.1 cgd file dev/isa/sbdsp.c sbdsp
213 1.2 cgd
214 1.2 cgd # SoundBlaster family
215 1.35 augustss device sb: audio, isadma, sbdsp, mulaw, auconv
216 1.1 cgd file dev/isa/sb.c sb needs-flag
217 1.25 christos
218 1.25 christos attach sb at isa with sb_isa
219 1.25 christos file dev/isa/sb_isa.c sb_isa needs-flag
220 1.2 cgd
221 1.2 cgd # ProAudio Spectrum
222 1.35 augustss device pas: audio, isadma, sbdsp, mulaw, auconv
223 1.13 thorpej attach pas at isa
224 1.1 cgd file dev/isa/pas.c pas needs-flag
225 1.1 cgd
226 1.6 brezak # AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers
227 1.1 cgd define ad1848
228 1.1 cgd file dev/isa/ad1848.c ad1848
229 1.2 cgd
230 1.8 brezak # ICS2101 mixer chip support; used by other drivers
231 1.8 brezak define ics2101
232 1.8 brezak file dev/isa/ics2101.c ics2101
233 1.8 brezak
234 1.8 brezak
235 1.6 brezak # Audio systems based on Echo Speech Corp. ESC61[45] ASICs
236 1.13 thorpej device pss {[port = -1], [size = 0],
237 1.13 thorpej [iomem = -1], [iosiz = 0],
238 1.13 thorpej [irq = -1], [drq = -1]}
239 1.13 thorpej attach pss at isa
240 1.35 augustss device sp: audio, isadma, ad1848, auconv
241 1.13 thorpej attach sp at pss
242 1.1 cgd file dev/isa/pss.c pss needs-flag
243 1.2 cgd
244 1.2 cgd # Microsoft Windows Sound System
245 1.35 augustss device wss: audio, isadma, ad1848, auconv
246 1.13 thorpej attach wss at isa
247 1.1 cgd file dev/isa/wss.c wss needs-flag
248 1.8 brezak
249 1.8 brezak # Gravis UltraSound & UltraSound MAX.
250 1.8 brezak # Use the "flags" keyword in a config file to specify an extra DMA
251 1.8 brezak # channel for full-duplex operation.
252 1.35 augustss device gus: audio, isadma, ics2101, ad1848, mulaw, auconv
253 1.13 thorpej attach gus at isa
254 1.8 brezak file dev/isa/gus.c gus needs-flag
255 1.31 hpeyerl
256 1.31 hpeyerl #
257 1.31 hpeyerl # PlanetConnect satellite receiver driver.
258 1.31 hpeyerl #
259 1.31 hpeyerl device satlink: isadma
260 1.31 hpeyerl attach satlink at isa
261 1.32 kleink file dev/isa/satlink.c satlink needs-flag
262