GENERIC revision 1.361
11.361Ssoda#	$NetBSD: GENERIC,v 1.361 2000/07/18 11:41:32 soda Exp $
21.1Smycroft#
31.1Smycroft#	GENERIC -- everything that's currently supported
41.1Smycroft#
51.1Smycroft
61.61Sfvdlinclude "arch/i386/conf/std.i386"
71.293Shubertf
81.361Ssoda#ident 		"GENERIC-$Revision: 1.361 $"
91.14Scgd
101.110Sthorpejmaxusers	32		# estimated number of users
111.150Sthorpej
121.110Sthorpej# CPU support.  At least one is REQUIRED.
131.110Sthorpejoptions 	I386_CPU
141.82Smellonoptions 	I486_CPU
151.82Smellonoptions 	I586_CPU
161.154Senamioptions 	I686_CPU
171.110Sthorpej
181.110Sthorpej# CPU-related options.
191.82Smellonoptions 	MATH_EMULATE	# floating point emulation
201.102Smycroft#options 	VM86		# virtual 8086 emulation
211.102Smycroftoptions 	USER_LDT	# user-settable LDT; used by WINE
221.112Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
231.112Sperry#options 	DUMMY_NOPS
241.191Sbouyer
251.197Slukem# delay between "rebooting ..." message and hardware reset, in milliseconds
261.191Sbouyer#options 	CPURESET_DELAY=2000
271.110Sthorpej
281.110Sthorpej# This option allows you to force a serial console at the specified
291.121Sdrochner# I/O address.   see console(4) for details.
301.175Srvb#options 	"CONSDEVNAME=\"com\"",CONADDR=0x2f8,CONSPEED=57600
311.175Srvb#	you don't want the option below ON iff you are using the
321.184Sdrochner#	serial console option of the new boot strap code.
331.302Sitojun#options 	CONS_OVERRIDE	# Always use above! independent of boot info
341.32Sthorpej
351.101Smycroft# The following options override the memory sizes passed in from the boot
361.101Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
371.111Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
381.101Smycroft# memory if the extended BIOS data area is located at the top of base memory
391.101Smycroft# (as is the case on most recent systems).
401.185Smycroft#options 	REALBASEMEM=639		# size of base memory (in KB)
411.185Smycroft#options 	REALEXTMEM=15360	# size of extended memory (in KB)
421.1Smycroft
431.110Sthorpej# Standard system options
441.110Sthorpej
451.110Sthorpejoptions 	UCONSOLE	# users can use TIOCCONS (for xconsole)
461.110Sthorpejoptions 	INSECURE	# disable kernel security levels
471.1Smycroft
481.82Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
491.216Scjsoptions 	NTP		# NTP phase/frequency locked loop
501.1Smycroft
511.98Smikeloptions 	KTRACE		# system call tracing via ktrace(1)
521.1Smycroft
531.82Smellonoptions 	SYSVMSG		# System V-like message queues
541.82Smellonoptions 	SYSVSEM		# System V-like semaphores
551.82Smellonoptions 	SYSVSHM		# System V-like memory sharing
561.82Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
571.82Smellon
581.110Sthorpejoptions 	LKM		# loadable kernel modules
591.110Sthorpej
601.110Sthorpej# Diagnostic/debugging support options
611.110Sthorpejoptions 	DIAGNOSTIC	# cheap kernel consistency checks
621.110Sthorpej#options 	DEBUG		# expensive debugging checks/support
631.127Stv#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
641.110Sthorpejoptions 	DDB		# in-kernel debugger
651.359Smycroftoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
661.110Sthorpej#options 	KGDB		# remote debugger
671.110Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
681.110Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
691.110Sthorpej
701.116Smikel# Compatibility options
711.82Smellonoptions 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
721.82Smellonoptions 	COMPAT_09	# NetBSD 0.9,
731.82Smellonoptions 	COMPAT_10	# NetBSD 1.0,
741.82Smellonoptions 	COMPAT_11	# NetBSD 1.1,
751.55Smycroftoptions 	COMPAT_12	# NetBSD 1.2,
761.125Skleinkoptions 	COMPAT_13	# NetBSD 1.3,
771.245Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
781.82Smellonoptions 	COMPAT_43	# and 4.3BSD
791.139Smycroftoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
801.1Smycroft
811.82Smellonoptions 	COMPAT_SVR4	# binary compatibility with SVR4
821.82Smellonoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
831.82Smellonoptions 	COMPAT_LINUX	# binary compatibility with Linux
841.82Smellonoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
851.360Sminoura#options        COMPAT_PECOFF   # kernel support to run Win32 apps
861.240Sfvdl
871.240Sfvdloptions 	COMPAT_AOUT	# binary compat for NetBSD a.out binaries
881.1Smycroft
891.110Sthorpej# File systems
901.71Sthorpejfile-system 	FFS		# UFS
911.80Sperryfile-system 	EXT2FS		# second extended file system (linux)
921.71Sthorpejfile-system 	LFS		# log-structured file system
931.71Sthorpejfile-system 	MFS		# memory file system
941.71Sthorpejfile-system 	NFS		# Network File System client
951.251Sjdolecekfile-system 	NTFS		# Windows/NT file system (experimental)
961.71Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
971.71Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
981.71Sthorpejfile-system 	FDESC		# /dev/fd
991.71Sthorpejfile-system 	KERNFS		# /kern
1001.71Sthorpejfile-system 	NULLFS		# loopback file system
1011.292Swrstudenfile-system 	OVERLAY		# overlay file system
1021.71Sthorpejfile-system 	PORTAL		# portal filesystem (still experimental)
1031.71Sthorpejfile-system 	PROCFS		# /proc
1041.71Sthorpejfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1051.71Sthorpejfile-system 	UNION		# union file system
1061.187Srvbfile-system	CODA		# Coda File System; also needs vcoda (below)
1071.71Sthorpej
1081.110Sthorpej# File system options
1091.82Smellonoptions 	QUOTA		# UFS quotas
1101.261Sitohy#options 	FFS_EI		# FFS Endian Independent support
1111.355Sfvdloptions 	SOFTDEP         # FFS soft updates support.
1121.82Smellonoptions 	NFSSERVER	# Network File System server
1131.81Sveego#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1141.80Sperry				# immutable) behave as system flags.
1151.273Sperry
1161.110Sthorpej# Networking options
1171.82Smellon#options 	GATEWAY		# packet forwarding
1181.82Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1191.273Sperryoptions 	INET6		# IPV6
1201.356Sitojunoptions 	PULLDOWN_TEST	# use m_pulldown for IPv4/v6 processing
1211.273Sperry#options 	IPSEC		# IP security
1221.273Sperry#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1231.273Sperry#options 	IPSEC_DEBUG	# debug for IP security
1241.82Smellon#options 	MROUTING	# IP multicast routing
1251.82Smellonoptions 	NS		# XNS
1261.82Smellon#options 	NSIP		# XNS tunneling over IP
1271.82Smellonoptions 	ISO,TPIP	# OSI
1281.358Ssommerfe#options 	EON		# OSI tunneling over IP
1291.82Smellonoptions 	CCITT,LLC,HDLC	# X.25
1301.110Sthorpejoptions 	NETATALK	# AppleTalk networking protocols
1311.242Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1321.242Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1331.242Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1341.242Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1351.242Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
1361.1Smycroft
1371.116Smikel# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1381.110Sthorpej#options 	TCP_COMPAT_42
1391.1Smycroft
1401.112Sperry# These options enable verbose messages for several subsystems.
1411.112Sperry# Warning, these may compile large string tables into the kernel!
1421.112Sperryoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
1431.335Saugustssoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1441.112Sperryoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1451.315Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1461.110Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1471.112Sperryoptions 	SCSIVERBOSE	# human readable SCSI error messages
1481.162Saugustssoptions 	USBVERBOSE	# verbose USB device autoconfig messages
1491.275Sdrochner#options 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
1501.346Sjhawk#options	PNPBIOSDEBUG	# more fullsome Pnp BIOS debugging messages
1511.271Smycroftoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
1521.110Sthorpej
1531.221Sdrochner#
1541.217Sdrochner# wscons options
1551.221Sdrochner#
1561.221Sdrochner# builtin terminal emulations
1571.217Sdrochner#options 	WSEMUL_SUN		# sun terminal emulation
1581.217Sdrochneroptions 	WSEMUL_VT100		# VT100 / VT220 emulation
1591.217Sdrochner# different kernel output - see dev/wscons/wsdisplayvar.h
1601.217Sdrochneroptions 	WS_KERNEL_FG=WSCOL_GREEN
1611.230Sdrochner#options 	WS_KERNEL_BG=WSCOL_BLACK
1621.221Sdrochner# compatibility to other console drivers
1631.217Sdrochneroptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
1641.217Sdrochneroptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
1651.217Sdrochneroptions 	WSDISPLAY_COMPAT_USL		# VT handling
1661.218Scjsoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
1671.217Sdrochner# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
1681.217Sdrochner#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
1691.221Sdrochner# allocate a number of virtual screens at autoconfiguration time
1701.221Sdrochner#options 	WSDISPLAY_DEFAULTSCREENS=4
1711.258Sad# use a large software cursor that doesn't blink
1721.265Sitojunoptions 	PCDISPLAY_SOFTCURSOR
1731.217Sdrochner
1741.110Sthorpej# Kernel root file system and dump configuration.
1751.110Sthorpejconfig		netbsd	root on ? type ?
1761.110Sthorpej#config		netbsd	root on sd0a type ffs
1771.110Sthorpej#config		netbsd	root on ? type nfs
1781.110Sthorpej
1791.110Sthorpej#
1801.110Sthorpej# Device configuration
1811.110Sthorpej#
1821.63Sthorpej
1831.31Scgdmainbus0 at root
1841.31Scgd
1851.110Sthorpej#apm0	at mainbus0			# Advanced power management
1861.272Shubertf
1871.272Shubertf# Tuning for power management, see apm(4) for more details.
1881.272Shubertf#options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
1891.272Shubertf#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
1901.272Shubertf#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
1911.354Shubertf#options 	APM_POWER_PRINT		# Print stats on the console
1921.307Sitojun#options 	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
1931.1Smycroft
1941.112Sperry
1951.112Sperry# Basic Bus Support
1961.112Sperry
1971.344Sthorpej# Plug-and-Play BIOS and attached devices
1981.344Sthorpej
1991.344Sthorpej#pnpbios*	at mainbus?
2001.344Sthorpej
2011.344Sthorpej# mainboard audio chips
2021.345Sjhawk#ess*		at pnpbios? index ?	# ESS AudioDrive
2031.345Sjhawk#sb*		at pnpbios? index ?	# NeoMagic 256AV in sb mode
2041.345Sjhawk#wss*		at pnpbios? index ?	# NeoMagic 256AV in wss mode
2051.345Sjhawk#ym*		at pnpbios? index ?	# OPL3-SA3
2061.344Sthorpej
2071.344Sthorpej# com port
2081.344Sthorpej# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
2091.345Sjhawk# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
2101.344Sthorpej# will be no com0.  A side effect is pcmcia (and other) com? previously
2111.344Sthorpej# starting at com3 may attach as com1 or com2.
2121.344Sthorpej#com*		at pnpbios? index ?	# serial ports
2131.344Sthorpej
2141.344Sthorpej# parallel port
2151.344Sthorpej# The above "com*" comments apply, cf. "lpt0" under "ISA parallel
2161.344Sthorpej# "printer interfaces".
2171.344Sthorpej#lpt*		at pnpbios? index ?	# parallel ports
2181.344Sthorpej
2191.344Sthorpej#pckbc*		at pnpbios? index ?	# PC keyboard/mouse controller
2201.344Sthorpej#fdc*		at pnpbios? index ?	# floppy controller
2211.344Sthorpej
2221.344Sthorpej# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
2231.357Saugustss#pciide*	at pnpbios? index ?
2241.344Sthorpej
2251.110Sthorpej# PCI bus support
2261.110Sthorpejpci*	at mainbus? bus ?
2271.110Sthorpejpci*	at pchb? bus ?
2281.30Scgdpci*	at ppb? bus ?
2291.304Saugustss
2301.304Saugustss# Configure PCI using BIOS information
2311.304Saugustss#options 	PCIBIOS			# PCI BIOS support
2321.304Saugustss#options 	PCIBIOSVERBOSE		# PCI BIOS verbose info
2331.304Saugustss#options 	PCIBIOS_INTR_FIXUP	# fixup PCI interrupt routing
2341.361Ssoda#options 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
2351.309Shubertf#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
2361.304Saugustss#options 	PCIBIOS_BUS_FIXUP	# fixup PCI bus numbering
2371.344Sthorpej#options 	PCIBIOS_ADDR_FIXUP	# fixup PCI I/O addresses
2381.110Sthorpej
2391.112Sperry# PCI bridges
2401.63Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
2411.135Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
2421.63Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
2431.110Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
2441.160Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
2451.160Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
2461.110Sthorpej
2471.110Sthorpej# EISA bus support
2481.110Sthorpejeisa*	at mainbus?
2491.135Sthorpejeisa*	at pceb?
2501.110Sthorpej
2511.110Sthorpej# ISA bus support
2521.110Sthorpejisa*	at mainbus?
2531.135Sthorpejisa*	at pceb?
2541.110Sthorpejisa*	at pcib?
2551.63Sthorpej
2561.112Sperry# PCMCIA bus support
2571.112Sperrypcmcia*	at pcic? controller ? socket ?
2581.223Sbadpcmcia*	at tcic? controller ? socket ?
2591.112Sperry
2601.112Sperry# ISA PCMCIA controllers
2611.296Saugustsspcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
2621.296Saugustsspcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
2631.296Saugustsstcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
2641.211Snathanw
2651.211Snathanw# PCI PCMCIA controllers
2661.211Snathanwpcic0	at pci? dev? function ?
2671.112Sperry
2681.112Sperry# ISA Plug-and-Play bus support
2691.112Sperryisapnp0	at isa?
2701.112Sperry
2711.156Ssommerfe# ISA Plug-and-Play PCMCIA controllers
2721.156Ssommerfepcic*	at isapnp?
2731.112Sperry
2741.344Sthorpej# CardBus bridge support
2751.298Saugustss#cbb*		at pci? dev ? function ?
2761.298Saugustss#cardslot*	at cbb?	
2771.297Saugustss
2781.344Sthorpej# CardBus bus support
2791.298Saugustss#cardbus*	at cardslot?
2801.298Saugustss#pcmcia* 	at cardslot?
2811.297Saugustss
2821.112Sperry# Coprocessor Support
2831.112Sperry
2841.112Sperry# Math Coprocessor support
2851.112Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2861.112Sperry
2871.112Sperry
2881.112Sperry# Console Devices
2891.112Sperry
2901.352Smycroft# ISA console
2911.217Sdrochner#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
2921.165Sbouyer# Keyboard layout configuration for pccons
2931.167Sbouyer#options 	FRENCH_KBD
2941.166Sbouyer#options 	FINNISH_KBD
2951.167Sbouyer#options 	GERMAN_KBD
2961.168Sperry#options 	NORWEGIAN_KBD
2971.352Smycroft# pccons-specific options:
2981.337Sjhawk#options 	XSERVER_DDB	# PF12 gets you into DDB when X is running
2991.337Sjhawk#options 	XSERVER		# X server support
3001.337Sjhawk
3011.110Sthorpej
3021.217Sdrochner# wscons
3031.238Stronpckbc0		at isa?			# pc keyboard controller
3041.238Stronpckbd*		at pckbc?		# PC keyboard
3051.217Sdrochner# "opms" should not be enabled together with "pms" or "pmsi"
3061.243Stronpms*		at pckbc?		# PS/2 mouse for wsmouse
3071.253Saugustsspmsi*		at pckbc?		# PS/2 "Intelli"mouse for wsmouse
3081.243Stron#opms*		at pckbc?		# backwards compatible PS/2 mouse
3091.217Sdrochnervga0		at isa?
3101.311Saugustssvga*		at pci? dev ? function ?
3111.217Sdrochnerpcdisplay0	at isa?			# CGA, MDA, EGA, HGA
3121.217Sdrochnerwsdisplay*	at vga? console ?
3131.217Sdrochnerwsdisplay*	at pcdisplay? console ?
3141.238Stronwskbd* 		at pckbd? console ?
3151.246Saugustsswsmouse*	at pms? mux 0
3161.246Saugustsswsmouse*	at pmsi? mux 0
3171.217Sdrochner
3181.311Saugustsspcppi0		at isa?
3191.146Sdrochnersysbeep0	at pcppi?
3201.110Sthorpej
3211.112Sperry# Serial Devices
3221.63Sthorpej
3231.112Sperry# PCI serial interfaces
3241.282Ssorencom*	at puc? port ?			# 16x50s on "universal" comm boards
3251.112Sperrycy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
3261.338Sthorpejcz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
3271.30Scgd
3281.112Sperry# ISA Plug-and-Play serial interfaces
3291.112Sperrycom*	at isapnp?			# Modems and serial boards
3301.1Smycroft
3311.112Sperry# PCMCIA serial interfaces
3321.112Sperrycom*	at pcmcia? function ?		# Modems and serial cards
3331.188Sthorpej
3341.188Sthorpejpcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
3351.188Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
3361.323Sjoda
3371.323Sjoda# CardBus serial interfaces
3381.357Saugustss#com*	at cardbus? dev ? function ?	# Modems and serial cards
3391.1Smycroft
3401.110Sthorpej# ISA serial interfaces
3411.89Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
3421.112Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
3431.2Smycroftcom1	at isa? port 0x2f8 irq 3
3441.2Smycroftcom2	at isa? port 0x3e8 irq 5
3451.2Smycroft#com3	at isa? port 0x2e8 irq 9
3461.8Smycroft#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
3471.34Scgd#com*	at ast? slave ?
3481.8Smycroft#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
3491.284Sitojun#boca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
3501.284Sitojun#boca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
3511.8Smycroft#com*	at boca? slave ?
3521.210Schristos#tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
3531.210Schristos#com*	at tcom? slave ?
3541.1Smycroft#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
3551.1Smycroft#com*	at rtfps? slave ?
3561.58Schristos#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
3571.328Sexplorer#addcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
3581.328Sexplorer#com*	at addcom? slave ?
3591.1Smycroft
3601.357Saugustss
3611.112Sperry# Parallel Printer Interfaces
3621.160Scgd
3631.160Scgd# PCI parallel printer interfaces
3641.160Scgdlpt*	at puc? port ?			# || ports on "universal" comm boards
3651.110Sthorpej
3661.112Sperry# ISA parallel printer interfaces
3671.110Sthorpejlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
3681.110Sthorpejlpt1	at isa? port 0x278
3691.110Sthorpejlpt2	at isa? port 0x3bc
3701.1Smycroft
3711.357Saugustss# Hardware monitors 
3721.357Saugustss
3731.308Sgroo# LM7[89] and compatible hardware monitors
3741.310Sgroo#lm0	at isa?	port 0x290		# other common ports: 0x280, 0x310
3751.336Sjoda
3761.336Sjoda# VIA VT82C686A hardware monitor
3771.339Sveego#viapm*	at pci? dev ? function ?
3781.344Sthorpej#viaenv* at viapm?
3791.40Sperry
3801.357Saugustss
3811.112Sperry# SCSI Controllers and Devices
3821.68Schristos
3831.112Sperry# PCI SCSI controllers
3841.186Sdanteadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
3851.330Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
3861.112Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
3871.112Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
3881.259Saddpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
3891.112Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
3901.350Sfvdl#ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI (old driver)
3911.350Sfvdlsiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
3921.212Sthorpejpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3931.110Sthorpej
3941.112Sperry# EISA SCSI controllers
3951.112Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
3961.112Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
3971.112Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
3981.263Saddpt*	at eisa? slot ?			# DPT EATA SCSI
3991.112Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
4001.105Sthorpej
4011.112Sperry# PCMCIA SCSI controllers
4021.110Sthorpejaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
4031.313Smycroftesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
4041.145Senami
4051.145Senami# ISA Plug-and-Play SCSI controllers
4061.205Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
4071.145Senamiaic*	at isapnp?			# Adaptec AHA-1520B
4081.110Sthorpej
4091.112Sperry# ISA SCSI controllers
4101.236Sdanteadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02]
4111.112Sperryaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
4121.112Sperryaha1	at isa? port 0x334 irq ? drq ?
4131.112Sperryahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
4141.112Sperryaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
4151.116Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
4161.112Sperrybha1	at isa? port 0x334 irq ? drq ?
4171.301Sad# The "nca" and "dpt" probes might give false hits or hang your machine.
4181.301Sad#dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
4191.262Sdrochner#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 contoller
4201.262Sdrochner#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
4211.112Sperrysea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
4221.112Sperryuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
4231.129Sdrochneruha1	at isa? port 0x340 irq ? drq ?
4241.112Sperrywds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
4251.112Sperrywds1	at isa? port 0x358 irq 11 drq 5
4261.110Sthorpej
4271.297Saugustss# CardBus SCSI cards
4281.298Saugustss#ahc*	at cardbus? dev ? function ?	# Adaptec ADP-1480
4291.297Saugustss
4301.110Sthorpej# SCSI bus support
4311.179Sdantescsibus* at adv?
4321.186Sdantescsibus* at adw?
4331.110Sthorpejscsibus* at aha?
4341.110Sthorpejscsibus* at ahb?
4351.110Sthorpejscsibus* at ahc?
4361.110Sthorpejscsibus* at aic?
4371.110Sthorpejscsibus* at bha?
4381.259Sadscsibus* at dpt?
4391.314Smycroftscsibus* at esp?
4401.110Sthorpejscsibus* at isp?
4411.264Sdrochner#scsibus* at nca?
4421.350Sfvdl#scsibus* at ncr?
4431.212Sthorpejscsibus* at pcscp?
4441.110Sthorpejscsibus* at sea?
4451.350Sfvdlscsibus* at siop?
4461.110Sthorpejscsibus* at uha?
4471.110Sthorpejscsibus* at wds?
4481.110Sthorpej
4491.110Sthorpej# SCSI devices
4501.110Sthorpejsd*	at scsibus? target ? lun ?	# SCSI disk drives
4511.110Sthorpejst*	at scsibus? target ? lun ?	# SCSI tape drives
4521.110Sthorpejcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
4531.110Sthorpejch*	at scsibus? target ? lun ?	# SCSI autochangers
4541.351Saugustssses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
4551.110Sthorpejss*	at scsibus? target ? lun ?	# SCSI scanners
4561.110Sthorpejuk*	at scsibus? target ? lun ?	# SCSI unknown
4571.110Sthorpej
4581.312Sad# RAID controllers and devices
4591.312Sadcac*	at pci? dev ? function ?	# Compaq array controller
4601.312Sadca*	at cac? unit ?			# Compaq array disk device
4611.112Sperry
4621.357Saugustss
4631.220Sabs# IDE and related devices
4641.228Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
4651.194Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
4661.194Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
4671.194Sbouyer# a machine hang with some controllers.
4681.311Saugustsspciide* at pci? dev ? function ? flags 0x0000
4691.132Smycroft
4701.132Smycroft# ISA Plug-and-Play IDE controllers
4711.192Sbouyerwdc*	at isapnp? 
4721.131Smycroft
4731.131Smycroft# PCMCIA IDE controllers
4741.190Senamiwdc*	at pcmcia? function ?
4751.112Sperry
4761.189Sbouyer# ISA ST506, ESDI, and IDE controllers
4771.235Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
4781.261Sitohy# fall back to 16bits I/O if 32bits I/O are not functional).
4791.235Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
4801.235Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
4811.235Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
4821.112Sperry
4831.220Sabs# IDE drives
4841.220Sabs# Flags are used only with controllers that support DMA operations
4851.206Sbouyer# and mode settings (e.g. some pciide controllers)
4861.220Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
4871.220Sabs# mode to use, the next set of four bits the DMA mode and the third set the
4881.220Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
4891.220Sabs# to use, and the last bit must be 1 for this setting to be used.
4901.220Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
4911.220Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
4921.220Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
4931.220Sabs# 0x0000 means "use whatever the drive claims to support".
4941.206Sbouyerwd*	at wdc? channel ? drive ? flags 0x0000
4951.206Sbouyerwd*	at pciide? channel ? drive ? flags 0x0000
4961.112Sperry
4971.110Sthorpej# ATAPI bus support
4981.189Sbouyeratapibus* at wdc? channel ?
4991.202Sbouyeratapibus* at pciide? channel ?
5001.110Sthorpej
5011.110Sthorpej# ATAPI devices
5021.206Sbouyer# flags have the same meaning as for IDE drives.
5031.206Sbouyercd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
5041.206Sbouyersd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
5051.206Sbouyeruk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
5061.110Sthorpej
5071.112Sperry
5081.112Sperry# Miscellaneous mass storage devices
5091.112Sperry
5101.112Sperry# ISA floppy
5111.112Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
5121.112Sperry#fdc1	at isa? port 0x370 irq ? drq ?
5131.112Sperryfd*	at fdc? drive ?			# the drives themselves
5141.112Sperry# some machines need you to do this instead of fd*
5151.112Sperry#fd0	at fdc0 drive 0
5161.112Sperry
5171.112Sperry# ISA CD-ROM devices
5181.112Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
5191.112Sperry
5201.112Sperry# ISA tape devices
5211.157Sbouyer# note: the wt driver conflicts unpleasantly with SMC boards at the
5221.116Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
5231.112Sperry# uncomment it unless you are actually using it.
5241.129Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
5251.112Sperry
5261.112Sperry
5271.112Sperry# Network Interfaces
5281.112Sperry
5291.112Sperry# PCI network interfaces
5301.112Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
5311.112Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
5321.200Sfvdlep*	at pci? dev ? function ?	# 3Com 3c59x
5331.200Sfvdlex*	at pci? dev ? function ?	# 3Com 90x[B]
5341.150Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
5351.152Smjacobesh*	at pci? dev ? function ?	# Essential HIPPI card
5361.112Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
5371.112Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
5381.112Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
5391.340Saugustsslmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
5401.112Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
5411.287Schoppsntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
5421.340Saugustssrtk*	at pci? dev ? function ?	# Realtek 8129/8139
5431.250Sthorpejsip*	at pci? dev ? function ?	# SiS 900 Ethernet
5441.344Sthorpejti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
5451.115Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
5461.260Sthorpejtlp*	at pci? dev ? function ?	# DECchip 21x4x (and clones) Ethernet
5471.270Sthorpej#options 	TLP_MATCH_21040
5481.270Sthorpej#options 	TLP_MATCH_21041
5491.270Sthorpej#options 	TLP_MATCH_21140
5501.270Sthorpej#options 	TLP_MATCH_21142
5511.213Ssakamotovr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
5521.112Sperry
5531.112Sperry# EISA network interfaces
5541.112Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
5551.112Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
5561.270Sthorpejtlp*	at eisa? slot ?			# DEC DE-425 Ethernet
5571.112Sperry
5581.112Sperry# ISA Plug-and-Play network interfaces
5591.112Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
5601.112Sperryne*	at isapnp?			# NE2000-compatible Ethernet
5611.222Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
5621.112Sperry
5631.112Sperry# PCMCIA network interfaces
5641.316Sonoeawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
5651.280Sitojuncnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
5661.112Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
5671.144Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
5681.112Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
5691.294Saugustssray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
5701.112Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
5711.252Sbouyerwi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
5721.349Sgmcgarryxi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
5731.260Sthorpej
5741.260Sthorpejmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
5751.260Sthorpejcom*	at mhzc?
5761.260Sthorpejsm*	at mhzc?
5771.112Sperry
5781.112Sperry# ISA network interfaces
5791.143Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
5801.164Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
5811.117Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
5821.120Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
5831.112Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
5841.343Stvep*	at isa? port ? irq ?			# 3C509 ethernet cards
5851.140Spkef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
5861.140Spkai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
5871.143Senamifmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
5881.140Spkix0	at isa? port 0x300 irq 10		# EtherExpress/16
5891.121Sdrochneriy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
5901.123Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
5911.146Sdrochner#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
5921.146Sdrochner#le*	at depca?
5931.147Sdrochnernele0	at isa? port 0x320 irq 9 drq 7		# NE2100
5941.344Sthorpejle*	at nele?
5951.287Schopps#ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
5961.146Sdrochnerbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
5971.146Sdrochnerle*	at bicc?
5981.112Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
5991.112Sperryne1	at isa? port 0x300 irq 10
6001.119Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
6011.222Sbadtr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
6021.222Sbadtr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
6031.222Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
6041.118Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
6051.118Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
6061.112Sperry
6071.297Saugustss# CardBus network cards
6081.298Saugustss#ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
6091.298Saugustss#fxp*	at cardbus? dev ? function ?	# Intel i8255x
6101.340Saugustss#rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
6111.298Saugustss#tlp*	at cardbus? dev ? function ?	# DECchip 21143
6121.297Saugustss
6131.172Sthorpej# MII/PHY support
6141.344Sthorpejdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
6151.195Sthorpejexphy*	at mii? phy ?			# 3Com internal PHYs
6161.198Sthorpejicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
6171.172Sthorpejinphy*	at mii? phy ?			# Intel 82555 PHYs
6181.270Sthorpejiophy*	at mii? phy ?			# Intel 82553 PHYs
6191.195Sthorpejlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
6201.172Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
6211.281Sthorpejnsphyter* at mii? phy ?			# NS83843 PHYs
6221.172Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
6231.199Sthorpejsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
6241.172Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
6251.270Sthorpejtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
6261.201Sthorpejukphy*	at mii? phy ?			# generic unknown PHYs
6271.112Sperry
6281.357Saugustss
6291.162Saugustss# USB Controller and Devices
6301.162Saugustss
6311.162Saugustss# PCI USB controllers
6321.340Saugustssohci*	at pci?	dev ? function ?	# Open Host Controller
6331.278Saugustssuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
6341.297Saugustss
6351.297Saugustss# CardBus USB controllers
6361.298Saugustss#ohci*	at cardbus? dev ? function ?	# Open Host Controller
6371.162Saugustss
6381.162Saugustss# USB bus support
6391.340Saugustssusb*	at ohci?
6401.162Saugustssusb*	at uhci?
6411.162Saugustss
6421.162Saugustss# USB Hubs
6431.162Saugustssuhub*	at usb?
6441.207Saugustssuhub*	at uhub? port ? configuration ? interface ?
6451.162Saugustss
6461.162Saugustss# USB Mice
6471.207Saugustssums*	at uhub? port ? configuration ? interface ?
6481.246Saugustsswsmouse*	at ums? mux 0
6491.162Saugustss
6501.162Saugustss# USB Keyboards
6511.207Saugustssukbd*	at uhub? port ? configuration ? interface ?
6521.246Saugustsswskbd*	at ukbd? console ? mux 1
6531.162Saugustss
6541.162Saugustss# USB Generic HID devices
6551.207Saugustssuhid*	at uhub? port ? configuration ? interface ?
6561.162Saugustss
6571.162Saugustss# USB Printer
6581.207Saugustssulpt*	at uhub? port ? configuration ? interface ?
6591.162Saugustss
6601.254Saugustss# USB Modem
6611.254Saugustssumodem*	at uhub? port ? configuration ?
6621.295Saugustssucom*	at umodem?
6631.256Sthorpej
6641.256Sthorpej# USB Mass Storage
6651.256Sthorpejumass*	at uhub? port ? configuration ? interface ?
6661.320Saugustssatapibus* at umass? channel ?
6671.256Sthorpejscsibus* at umass? channel ?
6681.254Saugustss
6691.257Saugustss# USB audio
6701.257Saugustssuaudio*	at uhub? port ? configuration ?
6711.257Saugustss
6721.289Saugustss# USB Ethernet adapters
6731.289Saugustssaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
6741.291Saugustsscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
6751.290Saugustsskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
6761.318Saugustss
6771.321Saugustss# Prolofic PL2301/PL2302 host-to-host adapter
6781.321Saugustssupl*	at uhub? port ?
6791.325Saugustss
6801.325Saugustss# Serial adapters
6811.325Saugustss# FTDI FT8U100AX serial adapter
6821.325Saugustss#uftdi*	at uhub? port ?
6831.325Saugustss#ucom*	at uftdi? portno ?
6841.324Saugustss
6851.324Saugustss# Diamond Multimedia Rio 500
6861.324Saugustssurio*	at uhub? port ?
6871.321Saugustss
6881.318Saugustss# USB Handspring Visor
6891.321Saugustssuvisor*	at uhub? port ?
6901.321Saugustssucom*	at uvisor?
6911.289Saugustss
6921.162Saugustss# USB Generic driver
6931.244Saugustssugen*	at uhub? port ?
6941.162Saugustss
6951.357Saugustss
6961.112Sperry# Audio Devices
6971.112Sperry
6981.148Saugustss# PCI audio devices
6991.319Stsarnaauvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
7001.283Saugustssclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
7011.331Saugustsscmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
7021.148Saugustsseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
7031.241Skleinkeso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
7041.268Saugustssfms*	at pci? dev ? function ?	# Forte Media FM801
7051.209Saugustsssv*	at pci? dev ? function ?	# S3 SonicVibes
7061.148Saugustss
7071.112Sperry# ISA Plug-and-Play audio devices
7081.173Saugustssess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
7091.112Sperryguspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
7101.112Sperrysb*	at isapnp?			# SoundBlaster-compatible audio
7111.169Saugustsswss*	at isapnp?			# Windows Sound System
7121.149Saugustssym*	at isapnp?			# Yamaha OPL3-SA3 audio
7131.112Sperry
7141.112Sperry# ISA audio devices
7151.232Sdrochner# the "aria" probe might give false hits
7161.232Sdrochner#aria0	at isa? port 0x290 irq 10 		# Aria
7171.237Saugustss#ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
7181.112Sperrygus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
7191.112Sperrypas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
7201.112Sperrypss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
7211.112Sperrysp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
7221.161Sperrysb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
7231.112Sperrywss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
7241.112Sperry
7251.332Saugustss#cms0	at isa? port 0x220			# Creative Music System
7261.332Saugustss
7271.261Sitohy# OPL[23] FM synthesizers
7281.178Saugustss#opl0	at isa? port 0x388	# use only if not attached to sound card
7291.241Skleinkopl*	at eso?
7301.178Saugustssopl*	at ess?
7311.268Saugustssopl*	at fms?
7321.176Saugustssopl*	at sb?
7331.209Saugustssopl*	at sv?
7341.253Saugustssopl*	at wss?
7351.261Sitohyopl*	at ym?
7361.176Saugustss
7371.112Sperry# Audio support
7381.233Sdrochner#audio*	at aria?
7391.319Stsarnaaudio*	at auvia?
7401.283Saugustssaudio*	at clcs?
7411.331Saugustssaudio*	at cmpci?
7421.155Senamiaudio*	at eap?
7431.241Skleinkaudio*	at eso?
7441.176Saugustssaudio*	at ess?
7451.268Saugustssaudio*	at fms?
7461.112Sperryaudio*	at gus?
7471.112Sperryaudio*	at guspnp?
7481.112Sperryaudio*	at pas?
7491.112Sperryaudio*	at sb?
7501.112Sperryaudio*	at sp?
7511.209Saugustssaudio*	at sv?
7521.257Saugustssaudio*	at uaudio?
7531.112Sperryaudio*	at wss?
7541.149Saugustssaudio*	at ym?
7551.112Sperry
7561.249Saugustss# MPU 401 UARTs
7571.249Saugustss#mpu*	at isa? port 0x330 irq 9        # MPU401 or compatible card
7581.249Saugustssmpu*	at eso?
7591.268Saugustssmpu*	at fms?
7601.248Saugustssmpu*	at sb?
7611.261Sitohympu*	at ym?
7621.247Saugustss
7631.170Saugustss# MIDI support
7641.332Saugustss#midi*	at cms?			# Creative Music System
7651.266Saugustssmidi*	at eap?			# 137[01] MIDI port
7661.248Saugustssmidi*	at mpu?			# MPU 401
7671.248Saugustssmidi*	at opl?			# OPL FM synth
7681.173Saugustssmidi*	at pcppi?		# MIDI interface to the PC speaker
7691.248Saugustssmidi*	at sb?			# SB1 MIDI port
7701.170Saugustss
7711.112Sperry# The spkr driver provides a simple tone interface to the built in speaker.
7721.146Sdrochner#spkr0	at pcppi?		# PC speaker
7731.112Sperry
7741.357Saugustss
7751.334Swiz# TV cards
7761.334Swiz
7771.334Swiz# Brooktree 848/849/878/879 based TV cards
7781.334Swizbktr* at pci? dev ? function ?
7791.357Saugustss
7801.112Sperry
7811.112Sperry# Mice
7821.112Sperry
7831.112Sperry# ISA busmice
7841.243Stronlms0	at isa? port 0x23c irq 5	# Logitech bus mouse
7851.243Stronlms1	at isa? port 0x238 irq 5
7861.243Stronmms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
7871.243Stronmms1	at isa? port 0x238 irq 5
7881.246Saugustsswsmouse*	at lms? mux 0
7891.246Saugustsswsmouse*	at mms? mux 0
7901.217Sdrochner# backwards compatible versions
7911.243Stron#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
7921.243Stron#olms1	at isa? port 0x238 irq 5
7931.243Stron#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
7941.243Stron#omms1	at isa? port 0x238 irq 5
7951.217Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
7961.112Sperry
7971.112Sperry
7981.112Sperry# Joysticks
7991.112Sperry
8001.112Sperry# ISA Plug-and-Play joysticks
8011.112Sperryjoy*	at isapnp?			# Game ports (usually on audio cards)
8021.317Smartin
8031.317Smartin# PCI joysticks
8041.317Smartinjoy*	at pci?				# Game ports (usually on audio cards)
8051.112Sperry
8061.112Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
8071.112Sperry#joy0	at isa? port 0x201
8081.112Sperry
8091.112Sperry
8101.112Sperry# Miscellaneous Devices
8111.112Sperry
8121.112Sperry# Planetconnect Satellite receiver driver.
8131.112Sperry#satlink0 at isa? port 0x300 drq 1
8141.112Sperry
8151.112Sperry
8161.110Sthorpej# Pull in optional local configuration
8171.57Smycroftinclude	"arch/i386/conf/GENERIC.local"
8181.1Smycroft
8191.112Sperry
8201.112Sperry# Pseudo-Devices
8211.112Sperry
8221.112Sperry# disk/mass storage pseudo-devices
8231.112Sperrypseudo-device	ccd		4	# concatenated/striped disk devices
8241.204Soster#pseudo-device	raid		4	# RAIDframe disk driver
8251.305Ssimonb#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
8261.112Sperrypseudo-device	md		1	# memory disk device (ramdisk)
8271.112Sperrypseudo-device	vnd		4	# disk-like interface to files
8281.112Sperry
8291.112Sperry# network pseudo-devices
8301.110Sthorpejpseudo-device	bpfilter	8	# Berkeley packet filter
8311.110Sthorpejpseudo-device	ipfilter		# IP filter (firewall) and NAT
8321.110Sthorpejpseudo-device	loop			# network loopback
8331.110Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
8341.112Sperrypseudo-device	sl		2	# Serial Line IP
8351.112Sperrypseudo-device	strip		2	# Starmode Radio IP (Metricom)
8361.112Sperrypseudo-device	tun		2	# network tunneling over tty
8371.183Shwrpseudo-device	gre		2	# generic L3 over IP tunnel
8381.214Stronpseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
8391.273Sperrypseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
8401.279Sitojun#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
8411.326Sitojun#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
8421.112Sperry
8431.112Sperry# miscellaneous pseudo-devices
8441.110Sthorpejpseudo-device	pty		64	# pseudo-terminals
8451.113Sexplorerpseudo-device	tb		1	# tablet line discipline
8461.170Saugustsspseudo-device	sequencer	1	# MIDI sequencer
8471.227Sexplorer# rnd works; RND_COM does not on port i386 yet.
8481.227Sexplorerpseudo-device	rnd			# /dev/random and in-kernel generator
8491.114Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
8501.181Srvb
8511.182Srvb# a pseudo device needed for Coda	# also needs CODA (above)
8521.187Srvbpseudo-device	vcoda		4	# coda minicache <-> venus comm.
8531.246Saugustss
8541.246Saugustss# mouse & keyboard multiplexor pseudo-devices
8551.246Saugustsspseudo-device	wsmux		2
856