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