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