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