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