1# $NetBSD: files.isa,v 1.102 2000/05/01 22:48:33 augustss Exp $ 2# 3# Config 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], [drq2 = -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# TC-800 8-port board 33device tcom: commulti 34attach tcom at isa 35file dev/isa/tcom.c tcom 36 37# BOCA 8-port board 38device boca: commulti 39attach boca at isa 40file dev/isa/boca.c boca 41 42# Addonics FlexPort multiport serial card 43device addcom: commulti 44attach addcom at isa with addcom_isa 45file dev/isa/addcom_isa.c addcom 46 47# IBM RT PC 4-port board 48device rtfps: commulti 49attach rtfps at isa 50file dev/isa/rtfps.c rtfps 51 52# BOCA 6-port board (3x 16552) 53device ioat: commulti 54attach ioat at isa 55file dev/isa/ioat66.c ioat 56 57# 58# Serial and parallel drivers 59# 60 61attach com at isa with com_isa 62file dev/isa/com_isa.c com_isa 63 64attach com at commulti with com_multi 65file dev/isa/com_multi.c com_multi 66 67# Cyclades Cyclom-8/16/32 68attach cy at isa with cy_isa 69file dev/isa/cy_isa.c cy_isa 70 71# PC-style parallel ports (XXX what chip?) 72# XXX chip driver should be defined elsewhere 73device lpt 74file dev/ic/lpt.c lpt needs-flag 75 76# PC-style parallel ports: ISA bus attachment 77attach lpt at isa with lpt_isa 78file dev/isa/lpt_isa.c lpt_isa 79 80# 81# SCSI host adapters 82# 83 84# AdvanSys 514x family 85# device declaration in sys/conf/files 86attach adv at isa with adv_isa: isadma 87file dev/isa/adv_isa.c adv_isa 88 89# Adaptec AHA-154x family 90# device declaration in sys/conf/files 91attach aha at isa with aha_isa: isadma 92file dev/isa/aha_isa.c aha_isa 93 94# Adaptec AIC-6[32]60 ICs 95# device declaration in sys/conf/files 96attach aic at isa with aic_isa: isadma 97file dev/isa/aic_isa.c aic_isa 98 99# Qlogic ESP406/FAS408 boards 100# device declaration in sys/conf/files 101attach esp at isa with esp_isa: isadma 102file dev/isa/esp_isa.c esp_isa 103 104# BusLogic BT-[45]4x ISA family 105# device declaration in sys/conf/files 106attach bha at isa with bha_isa: isadma 107file dev/isa/bha_isa.c bha_isa 108 109# DPT SmartCache/SmartRAID III/IV ISA family 110# device declaration in sys/conf/files 111attach dpt at isa with dpt_isa: isadma 112file dev/isa/dpt_isa.c dpt_isa 113 114# Seagate ST0[12] ICs 115device sea: scsi, isadma 116attach sea at isa 117file dev/isa/seagate.c sea 118 119# UltraStor UHA-[13]4f boards 120# device declaration in sys/conf/files 121attach uha at isa with uha_isa: isadma 122file dev/isa/uha_isa.c uha_isa 123 124# Western Digital WD7000 and Future Domain TMC-7000 boards 125device wds: scsi, isadma 126attach wds at isa 127file dev/isa/wds.c wds 128 129# 130# Other ISA disk controllers 131# 132 133# Mitsumi CD-ROM controllers 134device mcd: disk 135attach mcd at isa 136file dev/isa/mcd.c mcd needs-flag 137defopt MCD_PROMISC # enable "promiscuous" match 138 139# Sony CDU-3[13]A CD-ROM drives 140device scd: disk 141attach scd at isa 142file dev/isa/scd.c scd needs-flag 143 144attach wdc at isa with wdc_isa: isadma 145file dev/isa/wdc_isa.c wdc_isa 146 147# Wangtek- and Archive-compatible tape controller boards 148device wt: tape, isadma 149attach wt at isa 150file dev/isa/wt.c wt needs-flag 151 152# 153# ISA networking drivers 154# 155 156# WD/SMC 80x3 family, SMC Elite Ultra [8216], SMC EtherEZ 157# MUST be first: probe is non invasive, and registers are clobbered 158# by other drivers's probe 159device we: ether, ifnet, arp, dp8390nic 160attach we at isa 161file dev/isa/if_we.c we 162 163# 3Com common probe code 164define elink 165file dev/isa/elink.c elink 166 167# 3Com 3C503 168device ec: ether, ifnet, arp, dp8390nic 169attach ec at isa 170file dev/isa/if_ec.c ec 171 172# 3Com 3C505 173device eg: ether, ifnet, arp 174attach eg at isa 175file dev/isa/if_eg.c eg 176 177# 3Com 3C501 178device el: ether, ifnet, arp 179attach el at isa 180file dev/isa/if_el.c el 181 182# 3Com 3C509 Ethernet controller 183# device declaration in sys/conf/files 184attach ep at isa with ep_isa: elink 185file dev/isa/if_ep_isa.c ep_isa 186 187# SDL Communications N2 PCI Network Interface 188# device in sys/conf/files 189attach ntwoc at isa with ntwoc_isa 190file dev/isa/if_ntwoc_isa.c ntwoc_isa 191 192 193# Allied Telesis MB8695-based boards 194# (Allied Telesis AT1700) 195device ate: arp, ether, ifnet, mb86960 196attach ate at isa 197file dev/isa/if_ate.c ate 198 199# Crystal Semiconductor CS8900, CS8920, and CS8920M Ethernet 200device cs: arp, ether, ifnet, isadma 201file dev/isa/cs89x0.c cs 202 203attach cs at isa with cs_isa 204file dev/isa/if_cs_isa.c cs_isa 205 206# Fujitsu MB86960-based boards 207# (Fujitsu FMV-180 series) 208device fmv: arp, ether, ifnet, mb86960 209attach fmv at isa 210file dev/isa/if_fmv.c fmv 211 212# HP Lan Ethernet controllers 213# XXX currently broken 214#device hp: ether, ifnet, arp 215#attach hp at isa 216#file dev/isa/if_hp.c hp 217 218# Intel i82595-based boards. 219# (Intel EtherExpress PRO) 220device iy: ether, ifnet, arp 221attach iy at isa 222file dev/isa/if_iy.c iy 223 224# the probe routine of this "recognizes" the iy. Probe after it. 225# NCR 5380-based boards 226attach nca at isa with nca_isa 227file dev/isa/nca_isa.c nca_isa 228 229# AMD am7990 (Lance) -based boards 230# (BICC Isolan, NE2100, DEPCA) 231# device declaration in sys/conf/files 232device nele {} 233attach nele at isa 234attach le at nele with le_nele: le24, isadma 235device bicc {} 236attach bicc at isa 237attach le at bicc with le_bicc: le24, isadma 238file dev/isa/if_le_isa.c nele | bicc 239device depca {} 240attach depca at isa with depca_isa 241attach le at depca with le_depca: le24 242file dev/isa/if_depca_isa.c depca 243 244# DEC EtherWORKS III (LEMAC-based: DE203, DE204, DE205) cards 245attach lc at isa with lc_isa 246file dev/isa/if_lc_isa.c lc_isa 247 248# Novell NE1000, NE2000, and clones 249attach ne at isa with ne_isa: rtl80x9 250file dev/isa/if_ne_isa.c ne_isa 251 252# SMC91Cxx Ethernet Controllers 253attach sm at isa with sm_isa 254file dev/isa/if_sm_isa.c sm_isa 255 256# 3Com 3C507 257device ef: ether, ifnet, arp, elink, i82586 258attach ef at isa 259file dev/isa/if_ef.c ef 260 261# AT&T StarLan boards 262device ai: ether, ifnet, arp, i82586 263attach ai at isa 264file dev/isa/if_ai.c ai 265 266# EtherExpress/16 267device ix: ether, ifnet, arp, i82586 268attach ix at isa 269file dev/isa/if_ix.c ix 270 271# TROPIC based Token-Ring (IBM/3COM) 272define tr_isa 273file dev/isa/if_tr_isa.c tr_isa 274attach tr at isa with tr_isa: tr_isa, elink 275file dev/isa/if_tribm_isa.c tr_isa 276file dev/isa/if_trtcm_isa.c tr_isa 277 278# ISA NCR/AT&T/Lucent WaveLAN (non-802.11) card 279attach wl at isa with wl_isa: i82586, wavelan 280file dev/isa/if_wl_isa.c wl_isa 281 282# 283# ISA Sound hardware 284# 285 286# MPU401 MIDI UART compatibles 287attach mpu at isa with mpu_isa 288file dev/isa/mpu_isa.c mpu_isa 289 290# the SoundBlaster DSP, or close likenesses; used by other drivers 291define sbdsp { } 292file dev/isa/sbdsp.c sbdsp 293 294# SoundBlaster family 295device sb: audio, isadma, sbdsp, mulaw, auconv, midibus 296file dev/isa/sb.c sb needs-flag 297 298attach sb at isa with sb_isa 299file dev/isa/sb_isa.c sb_isa needs-flag 300 301attach opl at sbdsp with opl_sb 302file dev/isa/opl_sb.c opl_sb 303 304attach mpu at sbdsp with mpu_sb 305file dev/isa/mpu_sb.c mpu_sb 306 307# ProAudio Spectrum 308device pas: audio, isadma, sbdsp, mulaw, auconv 309attach pas at isa 310file dev/isa/pas.c pas needs-flag 311 312# AD1848 (CS4248, CS4231, AD1845) audio codec support; used by other drivers 313file dev/isa/ad1848_isa.c ad1848 314 315# ICS2101 mixer chip support; used by other drivers 316define ics2101 317file dev/isa/ics2101.c ics2101 318 319 320# Audio systems based on Echo Speech Corp. ESC61[45] ASICs 321device pss {[port = -1], [size = 0], 322 [iomem = -1], [iosiz = 0], 323 [irq = -1], [drq = -1]} 324attach pss at isa 325device sp: audio, isadma, ad1848, auconv 326attach sp at pss 327file dev/isa/pss.c pss needs-flag 328 329# Microsoft Windows Sound System 330device wss { } : audio, isadma, ad1848, auconv 331file dev/isa/wss.c wss needs-flag 332 333attach wss at isa with wss_isa 334file dev/isa/wss_isa.c wss_isa needs-flag 335 336attach opl at wss with opl_wss 337file dev/isa/opl_wss.c opl_wss 338 339# ESS Technology ES1887/ES888/ES1888 340device ess { } : audio, isadma, mulaw, auconv, midibus 341file dev/isa/ess.c ess needs-flag 342 343attach ess at isa with ess_isa 344file dev/isa/ess_isa.c ess_isa needs-flag 345 346attach opl at ess with opl_ess 347file dev/isa/opl_ess.c opl_ess 348 349# Yamaha OPL2/OPL3 FM synth 350attach opl at isa with opl_isa 351file dev/isa/opl_isa.c opl_isa 352 353# Yamaha OPL3-SA3 354device ym { }: audio, isadma, ad1848, auconv 355file dev/isa/ym.c ym 356defopt opt_ym.h YM_POWER_MODE YM_POWER_OFF_SEC 357 358attach opl at ym with opl_ym 359file dev/isa/opl_ym.c opl_ym 360 361attach mpu at ym with mpu_ym 362file dev/isa/mpu_ym.c mpu_ym needs-flag 363 364# Gravis UltraSound & UltraSound MAX. 365# Use the "drq2" keyword in a config file to specify an extra DMA 366# channel for full-duplex operation. 367device gus: audio, isadma, ics2101, ad1848, mulaw, auconv 368attach gus at isa 369file dev/isa/gus.c gus needs-flag 370 371# Sierra's Aria chipset. 372# (e.g. Prometheus Aria 16) 373device aria: audio, mulaw, auconv 374attach aria at isa 375file dev/isa/aria.c aria needs-flag 376 377# Creative Music System (CMS) 378device cms: midibus 379attach cms at isa 380file dev/isa/cms.c cms needs-flag 381 382# 383# PlanetConnect satellite receiver driver. 384# 385device satlink: isadma 386attach satlink at isa 387file dev/isa/satlink.c satlink needs-flag 388 389# ISA PC keyboard controller 390attach pckbc at isa with pckbc_isa 391file dev/isa/pckbc_isa.c pckbc needs-flag 392 393# generic ISA VGA 394attach vga at isa with vga_isa 395file dev/isa/vga_isa.c vga_isa needs-flag 396 397# generic EGA 398device ega: wsemuldisplaydev, pcdisplayops 399attach ega at isa 400file dev/isa/ega.c ega needs-flag 401 402# generic PC graphics adapter (MGA, CGA, ...) 403device pcdisplay: wsemuldisplaydev, pcdisplayops 404attach pcdisplay at isa 405file dev/isa/pcdisplay.c pcdisplay needs-flag 406 407# PC PPI + TIMER 1 (speaker interface) 408device pcppi {} 409attach pcppi at isa 410file dev/isa/pcppi.c pcppi needs-flag 411device spkr 412attach spkr at pcppi 413file dev/isa/spkr.c spkr needs-flag 414attach midi at pcppi with midi_pcppi: midisyn 415file dev/isa/midi_pcppi.c midi_pcppi 416 417# 418# Environmental monitors 419# 420 421# LM78 temp/fanspeed monitor 422attach lm at isa with lm_isa 423file dev/isa/lm_isa.c lm_isa 424 425 426# 427# ISA Plug 'n Play autoconfiguration glue. 428# THIS MUST COME AFTER ALL MI ISA DEVICES ARE DEFINED. This is because 429# ISA PnP devices often use `device' declarations listed in this file. 430# 431include "dev/isapnp/files.isapnp" 432