GENERIC revision 1.411
11.411Schristos#	$NetBSD: GENERIC,v 1.411 2001/07/14 02:00:39 christos 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.411Schristos#ident 		"GENERIC-$Revision: 1.411 $"
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.370Sthorpejoptions 	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.408Sdarcy#options	SEMMNI=10	# number of semaphore identifiers
561.408Sdarcy#options	SEMMNS=60	# number of semaphores in system
571.408Sdarcy#options	SEMUME=10	# max number of undo entries per process
581.408Sdarcy#options	SEMMNU=30	# number of undo structures in system
591.82Smellonoptions 	SYSVSHM		# System V-like memory sharing
601.82Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
611.82Smellon
621.110Sthorpejoptions 	LKM		# loadable kernel modules
631.110Sthorpej
641.110Sthorpej# Diagnostic/debugging support options
651.403Sfvdl#options 	DIAGNOSTIC	# expensive kernel consistency checks
661.110Sthorpej#options 	DEBUG		# expensive debugging checks/support
671.127Stv#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
681.110Sthorpejoptions 	DDB		# in-kernel debugger
691.359Smycroftoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
701.110Sthorpej#options 	KGDB		# remote debugger
711.110Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
721.110Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
731.110Sthorpej
741.116Smikel# Compatibility options
751.82Smellonoptions 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
761.82Smellonoptions 	COMPAT_09	# NetBSD 0.9,
771.82Smellonoptions 	COMPAT_10	# NetBSD 1.0,
781.82Smellonoptions 	COMPAT_11	# NetBSD 1.1,
791.55Smycroftoptions 	COMPAT_12	# NetBSD 1.2,
801.125Skleinkoptions 	COMPAT_13	# NetBSD 1.3,
811.245Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
821.398Sfvdloptions 	COMPAT_15	# NetBSD 1.5,
831.82Smellonoptions 	COMPAT_43	# and 4.3BSD
841.139Smycroftoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
851.410Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
861.1Smycroft
871.82Smellonoptions 	COMPAT_SVR4	# binary compatibility with SVR4
881.82Smellonoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
891.82Smellonoptions 	COMPAT_LINUX	# binary compatibility with Linux
901.82Smellonoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
911.411Schristos#options	COMPAT_MACH	# binary compatibility with Mach binaries
921.411Schristos#options	EXEC_MACHO	# exec MACH-O binaries
931.368Sitohy#options 	COMPAT_PECOFF	# kernel support to run Win32 apps
941.1Smycroft
951.110Sthorpej# File systems
961.71Sthorpejfile-system 	FFS		# UFS
971.80Sperryfile-system 	EXT2FS		# second extended file system (linux)
981.71Sthorpejfile-system 	LFS		# log-structured file system
991.71Sthorpejfile-system 	MFS		# memory file system
1001.71Sthorpejfile-system 	NFS		# Network File System client
1011.251Sjdolecekfile-system 	NTFS		# Windows/NT file system (experimental)
1021.71Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1031.71Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
1041.71Sthorpejfile-system 	FDESC		# /dev/fd
1051.71Sthorpejfile-system 	KERNFS		# /kern
1061.71Sthorpejfile-system 	NULLFS		# loopback file system
1071.292Swrstudenfile-system 	OVERLAY		# overlay file system
1081.71Sthorpejfile-system 	PORTAL		# portal filesystem (still experimental)
1091.71Sthorpejfile-system 	PROCFS		# /proc
1101.71Sthorpejfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1111.71Sthorpejfile-system 	UNION		# union file system
1121.187Srvbfile-system	CODA		# Coda File System; also needs vcoda (below)
1131.71Sthorpej
1141.110Sthorpej# File system options
1151.82Smellonoptions 	QUOTA		# UFS quotas
1161.261Sitohy#options 	FFS_EI		# FFS Endian Independent support
1171.355Sfvdloptions 	SOFTDEP         # FFS soft updates support.
1181.82Smellonoptions 	NFSSERVER	# Network File System server
1191.81Sveego#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1201.80Sperry				# immutable) behave as system flags.
1211.273Sperry
1221.110Sthorpej# Networking options
1231.82Smellon#options 	GATEWAY		# packet forwarding
1241.82Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1251.273Sperryoptions 	INET6		# IPV6
1261.273Sperry#options 	IPSEC		# IP security
1271.273Sperry#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1281.273Sperry#options 	IPSEC_DEBUG	# debug for IP security
1291.82Smellon#options 	MROUTING	# IP multicast routing
1301.82Smellonoptions 	NS		# XNS
1311.82Smellon#options 	NSIP		# XNS tunneling over IP
1321.82Smellonoptions 	ISO,TPIP	# OSI
1331.358Ssommerfe#options 	EON		# OSI tunneling over IP
1341.82Smellonoptions 	CCITT,LLC,HDLC	# X.25
1351.110Sthorpejoptions 	NETATALK	# AppleTalk networking protocols
1361.242Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1371.242Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1381.242Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1391.242Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1401.242Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
1411.410Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1421.1Smycroft
1431.112Sperry# These options enable verbose messages for several subsystems.
1441.112Sperry# Warning, these may compile large string tables into the kernel!
1451.112Sperryoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
1461.335Saugustssoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1471.112Sperryoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1481.315Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1491.110Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1501.112Sperryoptions 	SCSIVERBOSE	# human readable SCSI error messages
1511.162Saugustssoptions 	USBVERBOSE	# verbose USB device autoconfig messages
1521.275Sdrochner#options 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
1531.405Stron#options	PNPBIOSDEBUG	# more fulsome PnP BIOS debugging messages
1541.377Saugustssoptions 	I2OVERBOSE	# verbose I2O driver messages
1551.364Saugustss
1561.271Smycroftoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
1571.110Sthorpej
1581.221Sdrochner#
1591.217Sdrochner# wscons options
1601.221Sdrochner#
1611.221Sdrochner# builtin terminal emulations
1621.217Sdrochner#options 	WSEMUL_SUN		# sun terminal emulation
1631.217Sdrochneroptions 	WSEMUL_VT100		# VT100 / VT220 emulation
1641.217Sdrochner# different kernel output - see dev/wscons/wsdisplayvar.h
1651.217Sdrochneroptions 	WS_KERNEL_FG=WSCOL_GREEN
1661.230Sdrochner#options 	WS_KERNEL_BG=WSCOL_BLACK
1671.221Sdrochner# compatibility to other console drivers
1681.217Sdrochneroptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
1691.217Sdrochneroptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
1701.217Sdrochneroptions 	WSDISPLAY_COMPAT_USL		# VT handling
1711.218Scjsoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
1721.217Sdrochner# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
1731.217Sdrochner#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
1741.221Sdrochner# allocate a number of virtual screens at autoconfiguration time
1751.221Sdrochner#options 	WSDISPLAY_DEFAULTSCREENS=4
1761.258Sad# use a large software cursor that doesn't blink
1771.265Sitojunoptions 	PCDISPLAY_SOFTCURSOR
1781.369Slukem# modify the screen type of the console; defaults to "80x25"
1791.373Sminoura#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
1801.217Sdrochner
1811.110Sthorpej# Kernel root file system and dump configuration.
1821.110Sthorpejconfig		netbsd	root on ? type ?
1831.110Sthorpej#config		netbsd	root on sd0a type ffs
1841.110Sthorpej#config		netbsd	root on ? type nfs
1851.110Sthorpej
1861.110Sthorpej#
1871.110Sthorpej# Device configuration
1881.110Sthorpej#
1891.63Sthorpej
1901.31Scgdmainbus0 at root
1911.31Scgd
1921.110Sthorpej#apm0	at mainbus0			# Advanced power management
1931.272Shubertf
1941.272Shubertf# Tuning for power management, see apm(4) for more details.
1951.272Shubertf#options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
1961.272Shubertf#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
1971.272Shubertf#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
1981.354Shubertf#options 	APM_POWER_PRINT		# Print stats on the console
1991.307Sitojun#options 	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
2001.1Smycroft
2011.112Sperry
2021.112Sperry# Basic Bus Support
2031.112Sperry
2041.344Sthorpej# Plug-and-Play BIOS and attached devices
2051.344Sthorpej
2061.344Sthorpej#pnpbios*	at mainbus?
2071.344Sthorpej
2081.344Sthorpej# mainboard audio chips
2091.345Sjhawk#ess*		at pnpbios? index ?	# ESS AudioDrive
2101.345Sjhawk#sb*		at pnpbios? index ?	# NeoMagic 256AV in sb mode
2111.345Sjhawk#wss*		at pnpbios? index ?	# NeoMagic 256AV in wss mode
2121.345Sjhawk#ym*		at pnpbios? index ?	# OPL3-SA3
2131.344Sthorpej
2141.344Sthorpej# com port
2151.344Sthorpej# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
2161.345Sjhawk# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
2171.344Sthorpej# will be no com0.  A side effect is pcmcia (and other) com? previously
2181.344Sthorpej# starting at com3 may attach as com1 or com2.
2191.344Sthorpej#com*		at pnpbios? index ?	# serial ports
2201.344Sthorpej
2211.344Sthorpej# parallel port
2221.344Sthorpej# The above "com*" comments apply, cf. "lpt0" under "ISA parallel
2231.344Sthorpej# "printer interfaces".
2241.344Sthorpej#lpt*		at pnpbios? index ?	# parallel ports
2251.344Sthorpej
2261.344Sthorpej#pckbc*		at pnpbios? index ?	# PC keyboard/mouse controller
2271.344Sthorpej#fdc*		at pnpbios? index ?	# floppy controller
2281.344Sthorpej
2291.344Sthorpej# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
2301.357Saugustss#pciide*	at pnpbios? index ?
2311.396Snathanw
2321.110Sthorpej# PCI bus support
2331.110Sthorpejpci*	at mainbus? bus ?
2341.110Sthorpejpci*	at pchb? bus ?
2351.30Scgdpci*	at ppb? bus ?
2361.304Saugustss
2371.304Saugustss# Configure PCI using BIOS information
2381.304Saugustss#options 	PCIBIOS			# PCI BIOS support
2391.304Saugustss#options 	PCIBIOSVERBOSE		# PCI BIOS verbose info
2401.365Ssoda#options 	PCIBIOS_ADDR_FIXUP	# fixup PCI I/O addresses
2411.365Ssoda#options 	PCIBIOS_BUS_FIXUP	# fixup PCI bus numbering
2421.304Saugustss#options 	PCIBIOS_INTR_FIXUP	# fixup PCI interrupt routing
2431.361Ssoda#options 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
2441.365Ssoda#options 	PCIBIOS_INTR_GUESS	# see pcibios(4)
2451.309Shubertf#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
2461.110Sthorpej
2471.112Sperry# PCI bridges
2481.63Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
2491.135Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
2501.63Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
2511.110Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
2521.160Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
2531.160Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
2541.110Sthorpej
2551.110Sthorpej# EISA bus support
2561.110Sthorpejeisa*	at mainbus?
2571.135Sthorpejeisa*	at pceb?
2581.110Sthorpej
2591.110Sthorpej# ISA bus support
2601.110Sthorpejisa*	at mainbus?
2611.135Sthorpejisa*	at pceb?
2621.110Sthorpejisa*	at pcib?
2631.63Sthorpej
2641.112Sperry# PCMCIA bus support
2651.112Sperrypcmcia*	at pcic? controller ? socket ?
2661.223Sbadpcmcia*	at tcic? controller ? socket ?
2671.112Sperry
2681.112Sperry# ISA PCMCIA controllers
2691.296Saugustsspcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
2701.296Saugustsspcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
2711.296Saugustsstcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
2721.211Snathanw
2731.211Snathanw# PCI PCMCIA controllers
2741.211Snathanwpcic0	at pci? dev? function ?
2751.112Sperry
2761.112Sperry# ISA Plug-and-Play bus support
2771.112Sperryisapnp0	at isa?
2781.112Sperry
2791.156Ssommerfe# ISA Plug-and-Play PCMCIA controllers
2801.156Ssommerfepcic*	at isapnp?
2811.112Sperry
2821.344Sthorpej# CardBus bridge support
2831.298Saugustss#cbb*		at pci? dev ? function ?
2841.298Saugustss#cardslot*	at cbb?	
2851.297Saugustss
2861.344Sthorpej# CardBus bus support
2871.298Saugustss#cardbus*	at cardslot?
2881.298Saugustss#pcmcia* 	at cardslot?
2891.297Saugustss
2901.112Sperry# Coprocessor Support
2911.112Sperry
2921.112Sperry# Math Coprocessor support
2931.112Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2941.112Sperry
2951.112Sperry
2961.112Sperry# Console Devices
2971.112Sperry
2981.352Smycroft# ISA console
2991.217Sdrochner#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
3001.165Sbouyer# Keyboard layout configuration for pccons
3011.167Sbouyer#options 	FRENCH_KBD
3021.166Sbouyer#options 	FINNISH_KBD
3031.167Sbouyer#options 	GERMAN_KBD
3041.168Sperry#options 	NORWEGIAN_KBD
3051.352Smycroft# pccons-specific options:
3061.337Sjhawk#options 	XSERVER_DDB	# PF12 gets you into DDB when X is running
3071.337Sjhawk#options 	XSERVER		# X server support
3081.337Sjhawk
3091.110Sthorpej
3101.217Sdrochner# wscons
3111.238Stronpckbc0		at isa?			# pc keyboard controller
3121.238Stronpckbd*		at pckbc?		# PC keyboard
3131.217Sdrochner# "opms" should not be enabled together with "pms" or "pmsi"
3141.243Stronpms*		at pckbc?		# PS/2 mouse for wsmouse
3151.253Saugustsspmsi*		at pckbc?		# PS/2 "Intelli"mouse for wsmouse
3161.243Stron#opms*		at pckbc?		# backwards compatible PS/2 mouse
3171.217Sdrochnervga0		at isa?
3181.311Saugustssvga*		at pci? dev ? function ?
3191.217Sdrochnerpcdisplay0	at isa?			# CGA, MDA, EGA, HGA
3201.217Sdrochnerwsdisplay*	at vga? console ?
3211.217Sdrochnerwsdisplay*	at pcdisplay? console ?
3221.238Stronwskbd* 		at pckbd? console ?
3231.246Saugustsswsmouse*	at pms? mux 0
3241.246Saugustsswsmouse*	at pmsi? mux 0
3251.217Sdrochner
3261.311Saugustsspcppi0		at isa?
3271.146Sdrochnersysbeep0	at pcppi?
3281.110Sthorpej
3291.112Sperry# Serial Devices
3301.63Sthorpej
3311.112Sperry# PCI serial interfaces
3321.282Ssorencom*	at puc? port ?			# 16x50s on "universal" comm boards
3331.112Sperrycy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
3341.338Sthorpejcz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
3351.30Scgd
3361.112Sperry# ISA Plug-and-Play serial interfaces
3371.112Sperrycom*	at isapnp?			# Modems and serial boards
3381.1Smycroft
3391.112Sperry# PCMCIA serial interfaces
3401.112Sperrycom*	at pcmcia? function ?		# Modems and serial cards
3411.188Sthorpej
3421.188Sthorpejpcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
3431.188Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
3441.323Sjoda
3451.323Sjoda# CardBus serial interfaces
3461.357Saugustss#com*	at cardbus? dev ? function ?	# Modems and serial cards
3471.1Smycroft
3481.110Sthorpej# ISA serial interfaces
3491.89Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
3501.112Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
3511.2Smycroftcom1	at isa? port 0x2f8 irq 3
3521.2Smycroftcom2	at isa? port 0x3e8 irq 5
3531.2Smycroft#com3	at isa? port 0x2e8 irq 9
3541.8Smycroft#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
3551.34Scgd#com*	at ast? slave ?
3561.8Smycroft#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
3571.284Sitojun#boca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
3581.284Sitojun#boca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
3591.8Smycroft#com*	at boca? slave ?
3601.210Schristos#tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
3611.210Schristos#com*	at tcom? slave ?
3621.1Smycroft#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
3631.1Smycroft#com*	at rtfps? slave ?
3641.58Schristos#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
3651.328Sexplorer#addcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
3661.328Sexplorer#com*	at addcom? slave ?
3671.378Sjdolecek#moxa0	at isa?	port 0x100 irq 5	# MOXA C168H serial card (experimental)
3681.378Sjdolecek#com*	at moxa? slave ?
3691.1Smycroft
3701.357Saugustss
3711.112Sperry# Parallel Printer Interfaces
3721.160Scgd
3731.160Scgd# PCI parallel printer interfaces
3741.160Scgdlpt*	at puc? port ?			# || ports on "universal" comm boards
3751.110Sthorpej
3761.112Sperry# ISA parallel printer interfaces
3771.110Sthorpejlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
3781.110Sthorpejlpt1	at isa? port 0x278
3791.110Sthorpejlpt2	at isa? port 0x3bc
3801.1Smycroft
3811.357Saugustss# Hardware monitors 
3821.357Saugustss
3831.308Sgroo# LM7[89] and compatible hardware monitors
3841.310Sgroo#lm0	at isa?	port 0x290		# other common ports: 0x280, 0x310
3851.336Sjoda
3861.336Sjoda# VIA VT82C686A hardware monitor
3871.339Sveego#viapm*	at pci? dev ? function ?
3881.344Sthorpej#viaenv* at viapm?
3891.40Sperry
3901.377Saugustss
3911.375Sad# I2O devices
3921.375Sadiop*	at pci? dev ? function ?	# I/O processor
3931.375Sadiopsp*	at iop? tid ?			# SCSI/FC-AL ports
3941.379Sadld*	at iop? tid ?			# block devices
3951.357Saugustss
3961.377Saugustss
3971.112Sperry# SCSI Controllers and Devices
3981.68Schristos
3991.112Sperry# PCI SCSI controllers
4001.186Sdanteadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
4011.330Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
4021.112Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
4031.112Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
4041.259Saddpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
4051.406Stsutsuiiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
4061.112Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
4071.350Sfvdlsiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
4081.212Sthorpejpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
4091.110Sthorpej
4101.112Sperry# EISA SCSI controllers
4111.112Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
4121.112Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
4131.112Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
4141.263Saddpt*	at eisa? slot ?			# DPT EATA SCSI
4151.112Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
4161.105Sthorpej
4171.112Sperry# PCMCIA SCSI controllers
4181.110Sthorpejaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
4191.313Smycroftesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
4201.145Senami
4211.145Senami# ISA Plug-and-Play SCSI controllers
4221.205Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
4231.145Senamiaic*	at isapnp?			# Adaptec AHA-1520B
4241.110Sthorpej
4251.112Sperry# ISA SCSI controllers
4261.367Srossadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02] SCSI
4271.112Sperryaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
4281.112Sperryaha1	at isa? port 0x334 irq ? drq ?
4291.112Sperryahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
4301.112Sperryaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
4311.116Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
4321.112Sperrybha1	at isa? port 0x334 irq ? drq ?
4331.301Sad# The "nca" and "dpt" probes might give false hits or hang your machine.
4341.301Sad#dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
4351.368Sitohy#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
4361.262Sdrochner#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
4371.112Sperrysea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
4381.112Sperryuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
4391.129Sdrochneruha1	at isa? port 0x340 irq ? drq ?
4401.112Sperrywds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
4411.112Sperrywds1	at isa? port 0x358 irq 11 drq 5
4421.110Sthorpej
4431.297Saugustss# CardBus SCSI cards
4441.298Saugustss#ahc*	at cardbus? dev ? function ?	# Adaptec ADP-1480
4451.297Saugustss
4461.110Sthorpej# SCSI bus support
4471.179Sdantescsibus* at adv?
4481.186Sdantescsibus* at adw?
4491.110Sthorpejscsibus* at aha?
4501.110Sthorpejscsibus* at ahb?
4511.110Sthorpejscsibus* at ahc?
4521.110Sthorpejscsibus* at aic?
4531.110Sthorpejscsibus* at bha?
4541.259Sadscsibus* at dpt?
4551.314Smycroftscsibus* at esp?
4561.406Stsutsuiscsibus* at iha?
4571.376Sadscsibus* at iopsp?
4581.110Sthorpejscsibus* at isp?
4591.264Sdrochner#scsibus* at nca?
4601.212Sthorpejscsibus* at pcscp?
4611.110Sthorpejscsibus* at sea?
4621.350Sfvdlscsibus* at siop?
4631.110Sthorpejscsibus* at uha?
4641.110Sthorpejscsibus* at wds?
4651.110Sthorpej
4661.110Sthorpej# SCSI devices
4671.110Sthorpejsd*	at scsibus? target ? lun ?	# SCSI disk drives
4681.110Sthorpejst*	at scsibus? target ? lun ?	# SCSI tape drives
4691.110Sthorpejcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
4701.110Sthorpejch*	at scsibus? target ? lun ?	# SCSI autochangers
4711.351Saugustssses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
4721.110Sthorpejss*	at scsibus? target ? lun ?	# SCSI scanners
4731.110Sthorpejuk*	at scsibus? target ? lun ?	# SCSI unknown
4741.110Sthorpej
4751.372Sad
4761.312Sad# RAID controllers and devices
4771.404Sadcac*	at eisa? slot ?			# Compaq EISA array controllers
4781.372Sadcac*	at pci? dev ? function ?	# Compaq PCI array controllers
4791.399Sadmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
4801.404Sadmlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
4811.374Sadtwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
4821.112Sperry
4831.399Sadld*	at cac? unit ?			# logical disk devices
4841.399Sadld*	at twe? unit ?
4851.399Sadld*	at mlx? unit ?
4861.357Saugustss
4871.220Sabs# IDE and related devices
4881.228Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
4891.194Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
4901.194Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
4911.194Sbouyer# a machine hang with some controllers.
4921.311Saugustsspciide* at pci? dev ? function ? flags 0x0000
4931.132Smycroft
4941.132Smycroft# ISA Plug-and-Play IDE controllers
4951.192Sbouyerwdc*	at isapnp? 
4961.131Smycroft
4971.131Smycroft# PCMCIA IDE controllers
4981.190Senamiwdc*	at pcmcia? function ?
4991.112Sperry
5001.189Sbouyer# ISA ST506, ESDI, and IDE controllers
5011.235Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
5021.261Sitohy# fall back to 16bits I/O if 32bits I/O are not functional).
5031.235Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
5041.235Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
5051.235Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
5061.112Sperry
5071.220Sabs# IDE drives
5081.220Sabs# Flags are used only with controllers that support DMA operations
5091.206Sbouyer# and mode settings (e.g. some pciide controllers)
5101.220Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
5111.220Sabs# mode to use, the next set of four bits the DMA mode and the third set the
5121.220Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
5131.220Sabs# to use, and the last bit must be 1 for this setting to be used.
5141.220Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
5151.220Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
5161.220Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
5171.220Sabs# 0x0000 means "use whatever the drive claims to support".
5181.206Sbouyerwd*	at wdc? channel ? drive ? flags 0x0000
5191.206Sbouyerwd*	at pciide? channel ? drive ? flags 0x0000
5201.112Sperry
5211.110Sthorpej# ATAPI bus support
5221.189Sbouyeratapibus* at wdc? channel ?
5231.202Sbouyeratapibus* at pciide? channel ?
5241.110Sthorpej
5251.110Sthorpej# ATAPI devices
5261.206Sbouyer# flags have the same meaning as for IDE drives.
5271.206Sbouyercd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
5281.206Sbouyersd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
5291.206Sbouyeruk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
5301.110Sthorpej
5311.112Sperry
5321.112Sperry# Miscellaneous mass storage devices
5331.112Sperry
5341.112Sperry# ISA floppy
5351.112Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
5361.112Sperry#fdc1	at isa? port 0x370 irq ? drq ?
5371.112Sperryfd*	at fdc? drive ?			# the drives themselves
5381.112Sperry# some machines need you to do this instead of fd*
5391.112Sperry#fd0	at fdc0 drive 0
5401.112Sperry
5411.112Sperry# ISA CD-ROM devices
5421.112Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
5431.112Sperry
5441.112Sperry# ISA tape devices
5451.157Sbouyer# note: the wt driver conflicts unpleasantly with SMC boards at the
5461.116Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
5471.112Sperry# uncomment it unless you are actually using it.
5481.129Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
5491.112Sperry
5501.112Sperry
5511.112Sperry# Network Interfaces
5521.112Sperry
5531.112Sperry# PCI network interfaces
5541.383Sonoean*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
5551.112Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
5561.112Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
5571.200Sfvdlep*	at pci? dev ? function ?	# 3Com 3c59x
5581.200Sfvdlex*	at pci? dev ? function ?	# 3Com 90x[B]
5591.150Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
5601.152Smjacobesh*	at pci? dev ? function ?	# Essential HIPPI card
5611.112Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
5621.112Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
5631.407Sthorpejgsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
5641.112Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
5651.340Saugustsslmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
5661.112Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
5671.287Schoppsntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
5681.340Saugustssrtk*	at pci? dev ? function ?	# Realtek 8129/8139
5691.407Sthorpejsf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
5701.407Sthorpejsip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
5711.344Sthorpejti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
5721.115Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
5731.260Sthorpejtlp*	at pci? dev ? function ?	# DECchip 21x4x (and clones) Ethernet
5741.270Sthorpej#options 	TLP_MATCH_21040
5751.270Sthorpej#options 	TLP_MATCH_21041
5761.270Sthorpej#options 	TLP_MATCH_21140
5771.270Sthorpej#options 	TLP_MATCH_21142
5781.213Ssakamotovr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
5791.112Sperry
5801.112Sperry# EISA network interfaces
5811.112Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
5821.112Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
5831.270Sthorpejtlp*	at eisa? slot ?			# DEC DE-425 Ethernet
5841.112Sperry
5851.112Sperry# ISA Plug-and-Play network interfaces
5861.387Saugustssan*	at isapnp?			# Aironet 802.11
5871.112Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
5881.112Sperryne*	at isapnp?			# NE2000-compatible Ethernet
5891.222Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
5901.112Sperry
5911.112Sperry# PCMCIA network interfaces
5921.382Sonoean*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
5931.316Sonoeawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
5941.280Sitojuncnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
5951.112Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
5961.144Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
5971.112Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
5981.294Saugustssray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
5991.112Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
6001.252Sbouyerwi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
6011.349Sgmcgarryxi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
6021.260Sthorpej
6031.260Sthorpejmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
6041.260Sthorpejcom*	at mhzc?
6051.260Sthorpejsm*	at mhzc?
6061.112Sperry
6071.112Sperry# ISA network interfaces
6081.143Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
6091.164Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
6101.117Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
6111.120Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
6121.112Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
6131.343Stvep*	at isa? port ? irq ?			# 3C509 ethernet cards
6141.140Spkef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
6151.140Spkai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
6161.143Senamifmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
6171.140Spkix0	at isa? port 0x300 irq 10		# EtherExpress/16
6181.121Sdrochneriy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
6191.123Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
6201.146Sdrochner#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
6211.146Sdrochner#le*	at depca?
6221.147Sdrochnernele0	at isa? port 0x320 irq 9 drq 7		# NE2100
6231.344Sthorpejle*	at nele?
6241.287Schopps#ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
6251.146Sdrochnerbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
6261.146Sdrochnerle*	at bicc?
6271.112Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
6281.112Sperryne1	at isa? port 0x300 irq 10
6291.119Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
6301.222Sbadtr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
6311.222Sbadtr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
6321.222Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
6331.118Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
6341.118Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
6351.112Sperry
6361.297Saugustss# CardBus network cards
6371.298Saugustss#ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
6381.298Saugustss#fxp*	at cardbus? dev ? function ?	# Intel i8255x
6391.340Saugustss#rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
6401.298Saugustss#tlp*	at cardbus? dev ? function ?	# DECchip 21143
6411.297Saugustss
6421.172Sthorpej# MII/PHY support
6431.344Sthorpejdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
6441.195Sthorpejexphy*	at mii? phy ?			# 3Com internal PHYs
6451.198Sthorpejicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
6461.172Sthorpejinphy*	at mii? phy ?			# Intel 82555 PHYs
6471.270Sthorpejiophy*	at mii? phy ?			# Intel 82553 PHYs
6481.195Sthorpejlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
6491.407Sthorpejgphyter* at mii? phy ?			# NS83861 Gig-E PHY
6501.172Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
6511.281Sthorpejnsphyter* at mii? phy ?			# NS83843 PHYs
6521.172Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
6531.199Sthorpejsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
6541.172Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
6551.270Sthorpejtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
6561.201Sthorpejukphy*	at mii? phy ?			# generic unknown PHYs
6571.112Sperry
6581.357Saugustss
6591.162Saugustss# USB Controller and Devices
6601.162Saugustss
6611.162Saugustss# PCI USB controllers
6621.340Saugustssohci*	at pci?	dev ? function ?	# Open Host Controller
6631.278Saugustssuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
6641.297Saugustss
6651.297Saugustss# CardBus USB controllers
6661.298Saugustss#ohci*	at cardbus? dev ? function ?	# Open Host Controller
6671.162Saugustss
6681.162Saugustss# USB bus support
6691.340Saugustssusb*	at ohci?
6701.162Saugustssusb*	at uhci?
6711.162Saugustss
6721.162Saugustss# USB Hubs
6731.162Saugustssuhub*	at usb?
6741.207Saugustssuhub*	at uhub? port ? configuration ? interface ?
6751.162Saugustss
6761.162Saugustss# USB Mice
6771.207Saugustssums*	at uhub? port ? configuration ? interface ?
6781.246Saugustsswsmouse*	at ums? mux 0
6791.162Saugustss
6801.162Saugustss# USB Keyboards
6811.207Saugustssukbd*	at uhub? port ? configuration ? interface ?
6821.246Saugustsswskbd*	at ukbd? console ? mux 1
6831.162Saugustss
6841.162Saugustss# USB Generic HID devices
6851.207Saugustssuhid*	at uhub? port ? configuration ? interface ?
6861.162Saugustss
6871.162Saugustss# USB Printer
6881.207Saugustssulpt*	at uhub? port ? configuration ? interface ?
6891.162Saugustss
6901.254Saugustss# USB Modem
6911.254Saugustssumodem*	at uhub? port ? configuration ?
6921.295Saugustssucom*	at umodem?
6931.256Sthorpej
6941.256Sthorpej# USB Mass Storage
6951.256Sthorpejumass*	at uhub? port ? configuration ? interface ?
6961.320Saugustssatapibus* at umass? channel ?
6971.256Sthorpejscsibus* at umass? channel ?
6981.254Saugustss
6991.257Saugustss# USB audio
7001.257Saugustssuaudio*	at uhub? port ? configuration ?
7011.257Saugustss
7021.397Stshiozak# USB MIDI
7031.397Stshiozakumidi* at uhub? port ? configuration ?
7041.397Stshiozak
7051.289Saugustss# USB Ethernet adapters
7061.289Saugustssaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
7071.291Saugustsscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
7081.290Saugustsskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
7091.318Saugustss
7101.321Saugustss# Prolofic PL2301/PL2302 host-to-host adapter
7111.321Saugustssupl*	at uhub? port ?
7121.325Saugustss
7131.325Saugustss# Serial adapters
7141.325Saugustss# FTDI FT8U100AX serial adapter
7151.395Saugustssuftdi*	at uhub? port ?
7161.395Saugustssucom*	at uftdi? portno ?
7171.394Sichiro
7181.394Sichirouplcom*	at uhub? port ?		# I/O DATA USB-RSAQ2 serial adapter
7191.394Sichiroucom*	at uplcom? portno ? 
7201.401Sichiro
7211.401Sichiroumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
7221.401Sichiroucom*	at umct? portno ?
7231.324Saugustss
7241.324Saugustss# Diamond Multimedia Rio 500
7251.324Saugustssurio*	at uhub? port ?
7261.321Saugustss
7271.318Saugustss# USB Handspring Visor
7281.321Saugustssuvisor*	at uhub? port ?
7291.321Saugustssucom*	at uvisor?
7301.377Saugustss
7311.377Saugustss# USB scanners
7321.377Saugustssuscanner* at uhub? port ?
7331.391Saugustss
7341.391Saugustss# USB scanners that use SCSI emulation, e.g., HP5300
7351.391Saugustssusscanner* at uhub? port ?
7361.391Saugustssscsibus* at usscanner? channel ?
7371.392Saugustss
7381.392Saugustss# Y@P firmware loader
7391.392Saugustssuyap* at uhub? port ?
7401.289Saugustss
7411.162Saugustss# USB Generic driver
7421.244Saugustssugen*	at uhub? port ?
7431.162Saugustss
7441.357Saugustss
7451.112Sperry# Audio Devices
7461.112Sperry
7471.148Saugustss# PCI audio devices
7481.390Slukemauich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
7491.319Stsarnaauvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
7501.283Saugustssclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
7511.393Saugustssclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
7521.331Saugustsscmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
7531.148Saugustsseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
7541.389Srhesm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
7551.241Skleinkeso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
7561.268Saugustssfms*	at pci? dev ? function ?	# Forte Media FM801
7571.381Saugustssneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
7581.209Saugustsssv*	at pci? dev ? function ?	# S3 SonicVibes
7591.402Sminourayds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
7601.148Saugustss
7611.112Sperry# ISA Plug-and-Play audio devices
7621.173Saugustssess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
7631.112Sperryguspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
7641.112Sperrysb*	at isapnp?			# SoundBlaster-compatible audio
7651.169Saugustsswss*	at isapnp?			# Windows Sound System
7661.149Saugustssym*	at isapnp?			# Yamaha OPL3-SA3 audio
7671.112Sperry
7681.112Sperry# ISA audio devices
7691.232Sdrochner# the "aria" probe might give false hits
7701.232Sdrochner#aria0	at isa? port 0x290 irq 10 		# Aria
7711.237Saugustss#ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
7721.112Sperrygus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
7731.112Sperrypas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
7741.112Sperrypss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
7751.112Sperrysp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
7761.161Sperrysb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
7771.388Stvwss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
7781.112Sperry
7791.332Saugustss#cms0	at isa? port 0x220			# Creative Music System
7801.332Saugustss
7811.261Sitohy# OPL[23] FM synthesizers
7821.178Saugustss#opl0	at isa? port 0x388	# use only if not attached to sound card
7831.241Skleinkopl*	at eso?
7841.178Saugustssopl*	at ess?
7851.268Saugustssopl*	at fms?
7861.176Saugustssopl*	at sb?
7871.209Saugustssopl*	at sv?
7881.253Saugustssopl*	at wss?
7891.402Sminouraopl*	at yds?
7901.261Sitohyopl*	at ym?
7911.176Saugustss
7921.112Sperry# Audio support
7931.233Sdrochner#audio*	at aria?
7941.390Slukemaudio*	at auich?
7951.319Stsarnaaudio*	at auvia?
7961.283Saugustssaudio*	at clcs?
7971.393Saugustssaudio*	at clct?
7981.331Saugustssaudio*	at cmpci?
7991.155Senamiaudio*	at eap?
8001.389Srhaudio*	at esm?
8011.241Skleinkaudio*	at eso?
8021.176Saugustssaudio*	at ess?
8031.268Saugustssaudio*	at fms?
8041.112Sperryaudio*	at gus?
8051.112Sperryaudio*	at guspnp?
8061.380Sthorpejaudio*	at neo?
8071.112Sperryaudio*	at pas?
8081.112Sperryaudio*	at sb?
8091.112Sperryaudio*	at sp?
8101.209Saugustssaudio*	at sv?
8111.257Saugustssaudio*	at uaudio?
8121.112Sperryaudio*	at wss?
8131.402Sminouraaudio*	at yds?
8141.149Saugustssaudio*	at ym?
8151.112Sperry
8161.249Saugustss# MPU 401 UARTs
8171.249Saugustss#mpu*	at isa? port 0x330 irq 9        # MPU401 or compatible card
8181.249Saugustssmpu*	at eso?
8191.268Saugustssmpu*	at fms?
8201.248Saugustssmpu*	at sb?
8211.402Sminourampu*	at yds?
8221.261Sitohympu*	at ym?
8231.247Saugustss
8241.170Saugustss# MIDI support
8251.364Saugustssmidi*	at clcs?		# Cirrus Logic CS4280 MIDI port
8261.393Saugustss#midi*	at clct?		# Cirrus Logic CS4281 MIDI port
8271.332Saugustss#midi*	at cms?			# Creative Music System
8281.266Saugustssmidi*	at eap?			# 137[01] MIDI port
8291.248Saugustssmidi*	at mpu?			# MPU 401
8301.248Saugustssmidi*	at opl?			# OPL FM synth
8311.173Saugustssmidi*	at pcppi?		# MIDI interface to the PC speaker
8321.248Saugustssmidi*	at sb?			# SB1 MIDI port
8331.397Stshiozakmidi*   at umidi?               # USB MIDI
8341.170Saugustss
8351.112Sperry# The spkr driver provides a simple tone interface to the built in speaker.
8361.146Sdrochner#spkr0	at pcppi?		# PC speaker
8371.112Sperry
8381.357Saugustss
8391.334Swiz# TV cards
8401.334Swiz
8411.334Swiz# Brooktree 848/849/878/879 based TV cards
8421.334Swizbktr* at pci? dev ? function ?
8431.357Saugustss
8441.112Sperry
8451.112Sperry# Mice
8461.112Sperry
8471.112Sperry# ISA busmice
8481.243Stronlms0	at isa? port 0x23c irq 5	# Logitech bus mouse
8491.243Stronlms1	at isa? port 0x238 irq 5
8501.243Stronmms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
8511.243Stronmms1	at isa? port 0x238 irq 5
8521.246Saugustsswsmouse*	at lms? mux 0
8531.246Saugustsswsmouse*	at mms? mux 0
8541.217Sdrochner# backwards compatible versions
8551.243Stron#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
8561.243Stron#olms1	at isa? port 0x238 irq 5
8571.243Stron#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
8581.243Stron#omms1	at isa? port 0x238 irq 5
8591.217Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
8601.112Sperry
8611.112Sperry
8621.112Sperry# Joysticks
8631.400Sperry
8641.400Sperry#joy*		at pnpbios? index ?	# Game port
8651.112Sperry
8661.112Sperry# ISA Plug-and-Play joysticks
8671.112Sperryjoy*	at isapnp?			# Game ports (usually on audio cards)
8681.317Smartin
8691.317Smartin# PCI joysticks
8701.317Smartinjoy*	at pci?				# Game ports (usually on audio cards)
8711.112Sperry
8721.112Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
8731.112Sperry#joy0	at isa? port 0x201
8741.112Sperry
8751.112Sperry
8761.112Sperry# Miscellaneous Devices
8771.112Sperry
8781.112Sperry# Planetconnect Satellite receiver driver.
8791.112Sperry#satlink0 at isa? port 0x300 drq 1
8801.112Sperry
8811.112Sperry
8821.110Sthorpej# Pull in optional local configuration
8831.57Smycroftinclude	"arch/i386/conf/GENERIC.local"
8841.1Smycroft
8851.112Sperry
8861.112Sperry# Pseudo-Devices
8871.112Sperry
8881.112Sperry# disk/mass storage pseudo-devices
8891.112Sperrypseudo-device	ccd		4	# concatenated/striped disk devices
8901.204Soster#pseudo-device	raid		4	# RAIDframe disk driver
8911.305Ssimonb#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
8921.112Sperrypseudo-device	md		1	# memory disk device (ramdisk)
8931.112Sperrypseudo-device	vnd		4	# disk-like interface to files
8941.112Sperry
8951.112Sperry# network pseudo-devices
8961.110Sthorpejpseudo-device	bpfilter	8	# Berkeley packet filter
8971.110Sthorpejpseudo-device	ipfilter		# IP filter (firewall) and NAT
8981.110Sthorpejpseudo-device	loop			# network loopback
8991.110Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
9001.112Sperrypseudo-device	sl		2	# Serial Line IP
9011.112Sperrypseudo-device	strip		2	# Starmode Radio IP (Metricom)
9021.112Sperrypseudo-device	tun		2	# network tunneling over tty
9031.183Shwrpseudo-device	gre		2	# generic L3 over IP tunnel
9041.214Stronpseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
9051.273Sperrypseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
9061.279Sitojun#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
9071.326Sitojun#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
9081.386Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
9091.112Sperry
9101.112Sperry# miscellaneous pseudo-devices
9111.371Sjdolecekpseudo-device	pty			# pseudo-terminals
9121.113Sexplorerpseudo-device	tb		1	# tablet line discipline
9131.170Saugustsspseudo-device	sequencer	1	# MIDI sequencer
9141.227Sexplorer# rnd works; RND_COM does not on port i386 yet.
9151.227Sexplorerpseudo-device	rnd			# /dev/random and in-kernel generator
9161.114Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
9171.181Srvb
9181.182Srvb# a pseudo device needed for Coda	# also needs CODA (above)
9191.187Srvbpseudo-device	vcoda		4	# coda minicache <-> venus comm.
9201.246Saugustss
9211.246Saugustss# mouse & keyboard multiplexor pseudo-devices
9221.246Saugustsspseudo-device	wsmux		2
923