GENERIC revision 1.596
11.596Saugustss# $NetBSD: GENERIC,v 1.596 2004/04/07 13:13:59 augustss Exp $
21.1Smycroft#
31.448Sgmcgarry# GENERIC machine description file
41.591Sperry#
51.448Sgmcgarry# This machine description file is used to generate the default NetBSD
61.448Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.448Sgmcgarry# and device drivers, but should be useful for most applications.
81.1Smycroft#
91.448Sgmcgarry# The machine description file can be customised for your specific
101.448Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.448Sgmcgarry#
121.448Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.448Sgmcgarry# man page.
141.448Sgmcgarry#
151.448Sgmcgarry# For further information on hardware support for this architecture, see
161.448Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.448Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.448Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.448Sgmcgarry# device.
201.1Smycroft
211.448Sgmcgarryinclude 	"arch/i386/conf/std.i386"
221.293Shubertf
231.489Satatatoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.489Satatat
251.596Saugustss#ident 		"GENERIC-$Revision: 1.596 $"
261.14Scgd
271.110Sthorpejmaxusers	32		# estimated number of users
281.150Sthorpej
291.110Sthorpej# CPU support.  At least one is REQUIRED.
301.110Sthorpejoptions 	I386_CPU
311.82Smellonoptions 	I486_CPU
321.82Smellonoptions 	I586_CPU
331.154Senamioptions 	I686_CPU
341.110Sthorpej
351.110Sthorpej# CPU-related options.
361.82Smellonoptions 	MATH_EMULATE	# floating point emulation
371.370Sthorpejoptions 	VM86		# virtual 8086 emulation
381.102Smycroftoptions 	USER_LDT	# user-settable LDT; used by WINE
391.539Sfvdl# insert delay no-ops in interrupts; recommended on very old machines
401.539Sfvdl#options 	PIC_DELAY
411.423Sfvdl
421.423Sfvdloptions 	MTRR		# memory-type range register syscall support
431.513Sfvdl# doesn't work with MP just yet..
441.513Sfvdl#options 	PERFCTRS	# performance-monitoring counters support
451.191Sbouyer
461.197Slukem# delay between "rebooting ..." message and hardware reset, in milliseconds
471.191Sbouyer#options 	CPURESET_DELAY=2000
481.110Sthorpej
491.110Sthorpej# This option allows you to force a serial console at the specified
501.121Sdrochner# I/O address.   see console(4) for details.
511.440Slukem#options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
521.175Srvb#	you don't want the option below ON iff you are using the
531.184Sdrochner#	serial console option of the new boot strap code.
541.302Sitojun#options 	CONS_OVERRIDE	# Always use above! independent of boot info
551.32Sthorpej
561.101Smycroft# The following options override the memory sizes passed in from the boot
571.101Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
581.111Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
591.101Smycroft# memory if the extended BIOS data area is located at the top of base memory
601.101Smycroft# (as is the case on most recent systems).
611.185Smycroft#options 	REALBASEMEM=639		# size of base memory (in KB)
621.185Smycroft#options 	REALEXTMEM=15360	# size of extended memory (in KB)
631.1Smycroft
641.110Sthorpej# Standard system options
651.110Sthorpej
661.504Sgrantoptions 	INSECURE	# disable kernel security levels - X needs this
671.1Smycroft
681.82Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
691.216Scjsoptions 	NTP		# NTP phase/frequency locked loop
701.583Sfvdl#options 	NO_TSC_TIME	# Don't use TSC microtime, even if available.
711.583Sfvdl				# Improves time behavior under VMware.
721.1Smycroft
731.98Smikeloptions 	KTRACE		# system call tracing via ktrace(1)
741.496Sitojunoptions 	SYSTRACE	# system call vetting via systrace(1)
751.1Smycroft
761.82Smellonoptions 	SYSVMSG		# System V-like message queues
771.82Smellonoptions 	SYSVSEM		# System V-like semaphores
781.422Slukem#options 	SEMMNI=10	# number of semaphore identifiers
791.422Slukem#options 	SEMMNS=60	# number of semaphores in system
801.422Slukem#options 	SEMUME=10	# max number of undo entries per process
811.422Slukem#options 	SEMMNU=30	# number of undo structures in system
821.82Smellonoptions 	SYSVSHM		# System V-like memory sharing
831.502Swiz#options 	SHMMAXPGS=2048	# 2048 pages is the default
841.544Sitojunoptions 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
851.82Smellon
861.110Sthorpejoptions 	LKM		# loadable kernel modules
871.467Sjdolecek
881.509Slukemoptions 	USERCONF	# userconf(4) support
891.470Swiz#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
901.551Sjmmv
911.551Sjmmv# Beep when it is safe to power down the system (requires sysbeep)
921.551Sjmmv#options 	BEEP_ONHALT
931.551Sjmmv# Some tunable details of the above feature (default values used below)
941.551Sjmmv#options 	BEEP_ONHALT_COUNT=3	# Times to beep
951.551Sjmmv#options 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
961.551Sjmmv#options 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
971.519Sjunyoung
981.591Sperry# Enable experimental buffer queue strategy for better responsiveness under
991.592Sperry# high disk I/O load. Likely stable but not yet the default.
1001.519Sjunyoung#options 	NEW_BUFQ_STRATEGY
1011.110Sthorpej
1021.110Sthorpej# Diagnostic/debugging support options
1031.563Sdarrenr#options 	DIAGNOSTIC	# expensive kernel consistency checks
1041.563Sdarrenr#options 	DEBUG		# expensive debugging checks/support
1051.127Stv#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
1061.110Sthorpejoptions 	DDB		# in-kernel debugger
1071.563Sdarrenr#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
1081.359Smycroftoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
1091.110Sthorpej#options 	KGDB		# remote debugger
1101.439Slukem#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
1111.110Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
1121.110Sthorpej
1131.116Smikel# Compatibility options
1141.553Sabsoptions 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
1151.553Sabsoptions 	COMPAT_09	# NetBSD 0.9
1161.553Sabsoptions 	COMPAT_10	# NetBSD 1.0
1171.553Sabsoptions 	COMPAT_11	# NetBSD 1.1
1181.553Sabsoptions 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
1191.553Sabsoptions 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
1201.553Sabsoptions 	COMPAT_14	# NetBSD 1.4
1211.553Sabsoptions 	COMPAT_15	# NetBSD 1.5
1221.570Schristosoptions 	COMPAT_16	# NetBSD 1.6
1231.553Sabsoptions 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
1241.139Smycroftoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
1251.563Sdarrenr#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
1261.1Smycroft
1271.542Stronoptions 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
1281.82Smellonoptions 	COMPAT_SVR4	# binary compatibility with SVR4
1291.82Smellonoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
1301.82Smellonoptions 	COMPAT_LINUX	# binary compatibility with Linux
1311.82Smellonoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
1321.563Sdarrenr#options 	COMPAT_MACH	# binary compatibility with Mach binaries
1331.563Sdarrenr#options 	COMPAT_DARWIN	# binary compatibility with Darwin binaries
1341.563Sdarrenr#options 	EXEC_MACHO	# exec MACH-O binaries
1351.563Sdarrenr#options 	COMPAT_PECOFF	# kernel support to run Win32 apps
1361.1Smycroft
1371.110Sthorpej# File systems
1381.71Sthorpejfile-system 	FFS		# UFS
1391.80Sperryfile-system 	EXT2FS		# second extended file system (linux)
1401.71Sthorpejfile-system 	LFS		# log-structured file system
1411.71Sthorpejfile-system 	MFS		# memory file system
1421.71Sthorpejfile-system 	NFS		# Network File System client
1431.251Sjdolecekfile-system 	NTFS		# Windows/NT file system (experimental)
1441.71Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1451.71Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
1461.71Sthorpejfile-system 	FDESC		# /dev/fd
1471.71Sthorpejfile-system 	KERNFS		# /kern
1481.71Sthorpejfile-system 	NULLFS		# loopback file system
1491.292Swrstudenfile-system 	OVERLAY		# overlay file system
1501.71Sthorpejfile-system 	PORTAL		# portal filesystem (still experimental)
1511.71Sthorpejfile-system 	PROCFS		# /proc
1521.71Sthorpejfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1531.71Sthorpejfile-system 	UNION		# union file system
1541.187Srvbfile-system	CODA		# Coda File System; also needs vcoda (below)
1551.547Sjdolecekfile-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
1561.71Sthorpej
1571.110Sthorpej# File system options
1581.82Smellonoptions 	QUOTA		# UFS quotas
1591.563Sdarrenr#options 	FFS_EI		# FFS Endian Independent support
1601.440Slukemoptions 	SOFTDEP		# FFS soft updates support.
1611.82Smellonoptions 	NFSSERVER	# Network File System server
1621.563Sdarrenr#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1631.80Sperry				# immutable) behave as system flags.
1641.273Sperry
1651.110Sthorpej# Networking options
1661.82Smellon#options 	GATEWAY		# packet forwarding
1671.82Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1681.273Sperryoptions 	INET6		# IPV6
1691.563Sdarrenr#options 	IPSEC		# IP security
1701.563Sdarrenr#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1711.273Sperry#options 	IPSEC_DEBUG	# debug for IP security
1721.563Sdarrenr#options 	MROUTING	# IP multicast routing
1731.82Smellonoptions 	NS		# XNS
1741.563Sdarrenr#options 	NSIP		# XNS tunneling over IP
1751.82Smellonoptions 	ISO,TPIP	# OSI
1761.563Sdarrenr#options 	EON		# OSI tunneling over IP
1771.82Smellonoptions 	CCITT,LLC,HDLC	# X.25
1781.110Sthorpejoptions 	NETATALK	# AppleTalk networking protocols
1791.242Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1801.242Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1811.242Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1821.242Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1831.242Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
1841.514Sitojun#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1851.410Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1861.1Smycroft
1871.112Sperry# These options enable verbose messages for several subsystems.
1881.112Sperry# Warning, these may compile large string tables into the kernel!
1891.536Schristos#options 	ACPIVERBOSE	# verbose ACPI device autoconfig messages
1901.112Sperryoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
1911.335Saugustssoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1921.112Sperryoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1931.315Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1941.110Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1951.112Sperryoptions 	SCSIVERBOSE	# human readable SCSI error messages
1961.162Saugustssoptions 	USBVERBOSE	# verbose USB device autoconfig messages
1971.275Sdrochner#options 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
1981.422Slukem#options 	PNPBIOSDEBUG	# more fulsome PnP BIOS debugging messages
1991.377Saugustssoptions 	I2OVERBOSE	# verbose I2O driver messages
2001.415Saugustssoptions 	MCAVERBOSE	# verbose MCA device autoconfig messages
2011.364Saugustss
2021.271Smycroftoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
2031.110Sthorpej
2041.221Sdrochner#
2051.217Sdrochner# wscons options
2061.221Sdrochner#
2071.221Sdrochner# builtin terminal emulations
2081.217Sdrochner#options 	WSEMUL_SUN		# sun terminal emulation
2091.217Sdrochneroptions 	WSEMUL_VT100		# VT100 / VT220 emulation
2101.217Sdrochner# different kernel output - see dev/wscons/wsdisplayvar.h
2111.217Sdrochneroptions 	WS_KERNEL_FG=WSCOL_GREEN
2121.230Sdrochner#options 	WS_KERNEL_BG=WSCOL_BLACK
2131.221Sdrochner# compatibility to other console drivers
2141.217Sdrochneroptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2151.217Sdrochneroptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2161.217Sdrochneroptions 	WSDISPLAY_COMPAT_USL		# VT handling
2171.218Scjsoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2181.217Sdrochner# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
2191.217Sdrochner#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
2201.221Sdrochner# allocate a number of virtual screens at autoconfiguration time
2211.221Sdrochner#options 	WSDISPLAY_DEFAULTSCREENS=4
2221.258Sad# use a large software cursor that doesn't blink
2231.265Sitojunoptions 	PCDISPLAY_SOFTCURSOR
2241.369Slukem# modify the screen type of the console; defaults to "80x25"
2251.373Sminoura#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
2261.499Sjunyoung# work around a hardware bug that loaded fonts don't work; found on ATI cards
2271.499Sjunyoung#options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
2281.500Schristos# the following enables some functions to get mouse console support.
2291.500Schristos# if you want a really secure system, it may be better not to enable them,
2301.500Schristos# see wsmoused(8), section SECURITY CONSIDERATIONS for more info.
2311.500Schristos#options 	WSDISPLAY_CHARFUNCS		# mouse console support
2321.518Sjunyoung# enable VGA raster mode capable of displaying multilingual text on console
2331.518Sjunyoung#options 	VGA_RASTERCONSOLE
2341.217Sdrochner
2351.110Sthorpej# Kernel root file system and dump configuration.
2361.110Sthorpejconfig		netbsd	root on ? type ?
2371.110Sthorpej#config		netbsd	root on sd0a type ffs
2381.110Sthorpej#config		netbsd	root on ? type nfs
2391.110Sthorpej
2401.110Sthorpej#
2411.110Sthorpej# Device configuration
2421.110Sthorpej#
2431.63Sthorpej
2441.31Scgdmainbus0 at root
2451.31Scgd
2461.513Sfvdlcpu* at mainbus?
2471.563Sdarrenr#ioapic* at mainbus?
2481.513Sfvdl
2491.531Sperry# Doesn't do anything yet.
2501.563Sdarrenr#p64h2apic* at pci? dev? function?	# P64H2 IOxAPIC
2511.531Sperry
2521.563Sdarrenr#apm0	at mainbus0			# Advanced power management
2531.272Shubertf
2541.272Shubertf# Tuning for power management, see apm(4) for more details.
2551.272Shubertf#options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
2561.272Shubertf#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
2571.272Shubertf#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
2581.354Shubertf#options 	APM_POWER_PRINT		# Print stats on the console
2591.307Sitojun#options 	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
2601.1Smycroft
2611.112Sperry
2621.112Sperry# Basic Bus Support
2631.535Sjmcneill
2641.535Sjmcneill# Advanced Control and Power Interface
2651.538Sfvdl
2661.538Sfvdl# This option can be used to retrieve CPU and APIC information.
2671.538Sfvdl# that I/O APICs can be used if ACPI is enabled below.
2681.538Sfvdl# To use the I/O APIC(s), enable the ioapic line above.
2691.549Sgrant#options 	MPBIOS		# configure CPUs and APICs using MPBIOS
2701.561Sfvdl#options 	MPBIOS_SCANPCI	# find PCI roots using MPBIOS
2711.549Sgrant#options 	MPACPI		# configure CPUs and APICs using ACPI
2721.549Sgrant				# (acpi at mainbus must also be enabled)
2731.561Sfvdl#options 	MPACPI_SCANPCI	# find PCI roots using MPACPI
2741.535Sjmcneill
2751.563Sdarrenr#acpi0 		at mainbus0
2761.563Sdarrenr#options 	ACPI_PCI_FIXUP		# PCI interrupt routing via ACPI
2771.565Skochi#options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
2781.593Sperry#options 	ACPICA_PEDANTIC		# force strict conformance to the Spec.
2791.535Sjmcneill
2801.535Sjmcneill# ACPI devices
2811.563Sdarrenr#acpiacad* 	at acpi?		# ACPI AC Adapter
2821.563Sdarrenr#acpibat* 	at acpi?		# ACPI Battery
2831.563Sdarrenr#acpibut* 	at acpi?		# ACPI Button
2841.563Sdarrenr#acpiec* 	at acpi?		# ACPI Embedded Controller
2851.563Sdarrenr#acpilid* 	at acpi?		# ACPI Lid Switch
2861.563Sdarrenr#acpitz* 	at acpi?		# ACPI Thermal Zone
2871.535Sjmcneill
2881.535Sjmcneill# Mainboard devices
2891.563Sdarrenr#com* 		at acpi?		# Serial communications interface
2901.563Sdarrenr#fdc* 		at acpi?		# Floppy disk controller
2911.563Sdarrenr#lpt* 		at acpi?		# Parallel port
2921.563Sdarrenr#npx*		at acpi?		# Math coprocessor
2931.563Sdarrenr#pckbc*  	at acpi?		# PC keyboard controller
2941.563Sdarrenr#wss* 		at acpi?		# NeoMagic 256AV in wss mode
2951.535Sjmcneill
2961.535Sjmcneill# Sony Vaio jog dial
2971.563Sdarrenr#spic* 		at acpi?		# Sony Programmable I/O Controller
2981.563Sdarrenr#wsmouse* 	at spic?
2991.541Schristos
3001.541Schristos# Toshiba Libretto devices
3011.563Sdarrenr#vald* at acpi?
3021.112Sperry
3031.344Sthorpej# Plug-and-Play BIOS and attached devices
3041.344Sthorpej
3051.563Sdarrenr#pnpbios*	at mainbus?
3061.344Sthorpej
3071.344Sthorpej# mainboard audio chips
3081.563Sdarrenr#ess*		at pnpbios? index ?	# ESS AudioDrive
3091.563Sdarrenr#sb*		at pnpbios? index ?	# NeoMagic 256AV in sb mode
3101.563Sdarrenr#wss*		at pnpbios? index ?	# NeoMagic 256AV in wss mode
3111.563Sdarrenr#ym*		at pnpbios? index ?	# OPL3-SA3
3121.344Sthorpej
3131.344Sthorpej# com port
3141.344Sthorpej# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
3151.345Sjhawk# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
3161.344Sthorpej# will be no com0.  A side effect is pcmcia (and other) com? previously
3171.344Sthorpej# starting at com3 may attach as com1 or com2.
3181.563Sdarrenr#com*		at pnpbios? index ?	# serial ports
3191.344Sthorpej
3201.344Sthorpej# parallel port
3211.344Sthorpej# The above "com*" comments apply, cf. "lpt0" under "ISA parallel
3221.344Sthorpej# "printer interfaces".
3231.563Sdarrenr#lpt*		at pnpbios? index ?	# parallel ports
3241.344Sthorpej
3251.563Sdarrenr#pckbc*		at pnpbios? index ?	# PC keyboard/mouse controller
3261.563Sdarrenr#fdc*		at pnpbios? index ?	# floppy controller
3271.344Sthorpej
3281.344Sthorpej# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
3291.593Sperry#pciide* 	at pnpbios? index ?
3301.396Snathanw
3311.110Sthorpej# PCI bus support
3321.110Sthorpejpci*	at mainbus? bus ?
3331.110Sthorpejpci*	at pchb? bus ?
3341.30Scgdpci*	at ppb? bus ?
3351.304Saugustss
3361.304Saugustss# Configure PCI using BIOS information
3371.304Saugustss#options 	PCIBIOS			# PCI BIOS support
3381.304Saugustss#options 	PCIBIOSVERBOSE		# PCI BIOS verbose info
3391.365Ssoda#options 	PCIBIOS_ADDR_FIXUP	# fixup PCI I/O addresses
3401.365Ssoda#options 	PCIBIOS_BUS_FIXUP	# fixup PCI bus numbering
3411.304Saugustss#options 	PCIBIOS_INTR_FIXUP	# fixup PCI interrupt routing
3421.361Ssoda#options 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
3431.365Ssoda#options 	PCIBIOS_INTR_GUESS	# see pcibios(4)
3441.309Shubertf#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
3451.507Sthorpej
3461.507Sthorpej# System Controllers
3471.511Sperryelansc* at pci? dev ? function ?	# AMD Elan SC520 System Controller
3481.110Sthorpej
3491.112Sperry# PCI bridges
3501.596Saugustssichlpcib* at pci? dev ? function ?	# Intel ICH PCI-ISA w/ watchdog support
3511.63Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
3521.135Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
3531.63Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
3541.420Satatatpcmb*	at pci? dev ? function ?	# PCI-MCA bridges
3551.110Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
3561.160Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
3571.160Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
3581.424Sfvdl
3591.481Smycroftagp* 	at pchb?
3601.513Sfvdl
3611.513Sfvdl
3621.110Sthorpej# EISA bus support
3631.426Snathanweisa0	at mainbus?
3641.426Snathanweisa0	at pceb?
3651.110Sthorpej
3661.110Sthorpej# ISA bus support
3671.596Saugustssisa0	at ichlpcib?
3681.426Snathanwisa0	at mainbus?
3691.426Snathanwisa0	at pceb?
3701.426Snathanwisa0	at pcib?
3711.63Sthorpej
3721.112Sperry# PCMCIA bus support
3731.593Sperrypcmcia* at pcic? controller ? socket ?
3741.593Sperrypcmcia* at tcic? controller ? socket ?
3751.112Sperry
3761.413Sjdolecek# MCA bus support
3771.413Sjdolecekmca0	at mainbus?
3781.413Sjdolecek
3791.112Sperry# ISA PCMCIA controllers
3801.296Saugustsspcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
3811.296Saugustsspcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
3821.471Sjmcneillpcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
3831.296Saugustsstcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
3841.211Snathanw
3851.211Snathanw# PCI PCMCIA controllers
3861.211Snathanwpcic0	at pci? dev? function ?
3871.112Sperry
3881.112Sperry# ISA Plug-and-Play bus support
3891.593Sperryisapnp0 at isa?
3901.112Sperry
3911.156Ssommerfe# ISA Plug-and-Play PCMCIA controllers
3921.156Ssommerfepcic*	at isapnp?
3931.112Sperry
3941.344Sthorpej# CardBus bridge support
3951.527Sdavidcbb*		at pci? dev ? function ?
3961.527Sdavidcardslot*	at cbb?
3971.297Saugustss
3981.344Sthorpej# CardBus bus support
3991.532Sdavidcardbus*	at cardslot?
4001.527Sdavidpcmcia* 	at cardslot?
4011.297Saugustss
4021.112Sperry# Coprocessor Support
4031.112Sperry
4041.112Sperry# Math Coprocessor support
4051.112Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
4061.112Sperry
4071.112Sperry
4081.112Sperry# Console Devices
4091.112Sperry
4101.352Smycroft# ISA console
4111.217Sdrochner#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
4121.165Sbouyer# Keyboard layout configuration for pccons
4131.167Sbouyer#options 	FRENCH_KBD
4141.166Sbouyer#options 	FINNISH_KBD
4151.167Sbouyer#options 	GERMAN_KBD
4161.168Sperry#options 	NORWEGIAN_KBD
4171.352Smycroft# pccons-specific options:
4181.337Sjhawk#options 	XSERVER_DDB	# PF12 gets you into DDB when X is running
4191.337Sjhawk#options 	XSERVER		# X server support
4201.337Sjhawk
4211.110Sthorpej
4221.217Sdrochner# wscons
4231.238Stronpckbc0		at isa?			# pc keyboard controller
4241.238Stronpckbd*		at pckbc?		# PC keyboard
4251.243Stronpms*		at pckbc?		# PS/2 mouse for wsmouse
4261.492Sjmcneill#options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
4271.217Sdrochnervga0		at isa?
4281.311Saugustssvga*		at pci? dev ? function ?
4291.217Sdrochnerpcdisplay0	at isa?			# CGA, MDA, EGA, HGA
4301.563Sdarrenr#machfb* 	at pci? dev ? function ? # ATI Mach64 framebuffer driver
4311.217Sdrochnerwsdisplay*	at vga? console ?
4321.217Sdrochnerwsdisplay*	at pcdisplay? console ?
4331.563Sdarrenr#wsdisplay* 	at machfb? console ?
4341.501Sitojunwskbd*		at pckbd? console ?
4351.246Saugustsswsmouse*	at pms? mux 0
4361.217Sdrochner
4371.311Saugustsspcppi0		at isa?
4381.146Sdrochnersysbeep0	at pcppi?
4391.110Sthorpej
4401.112Sperry# Serial Devices
4411.63Sthorpej
4421.112Sperry# PCI serial interfaces
4431.282Ssorencom*	at puc? port ?			# 16x50s on "universal" comm boards
4441.112Sperrycy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
4451.338Sthorpejcz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
4461.30Scgd
4471.112Sperry# ISA Plug-and-Play serial interfaces
4481.112Sperrycom*	at isapnp?			# Modems and serial boards
4491.1Smycroft
4501.112Sperry# PCMCIA serial interfaces
4511.112Sperrycom*	at pcmcia? function ?		# Modems and serial cards
4521.188Sthorpej
4531.593Sperrypcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
4541.188Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
4551.323Sjoda
4561.323Sjoda# CardBus serial interfaces
4571.563Sdarrenr#com*	at cardbus? dev ? function ?	# Modems and serial cards
4581.1Smycroft
4591.110Sthorpej# ISA serial interfaces
4601.89Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
4611.112Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
4621.2Smycroftcom1	at isa? port 0x2f8 irq 3
4631.2Smycroftcom2	at isa? port 0x3e8 irq 5
4641.563Sdarrenr#com3	at isa? port 0x2e8 irq 9
4651.563Sdarrenr#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
4661.563Sdarrenr#com*	at ast? slave ?
4671.563Sdarrenr#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
4681.563Sdarrenr#boca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
4691.563Sdarrenr#boca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
4701.563Sdarrenr#com*	at boca? slave ?
4711.563Sdarrenr#tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
4721.563Sdarrenr#com*	at tcom? slave ?
4731.563Sdarrenr#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
4741.563Sdarrenr#com*	at rtfps? slave ?
4751.563Sdarrenr#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
4761.563Sdarrenr#addcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
4771.563Sdarrenr#com*	at addcom? slave ?
4781.563Sdarrenr#moxa0	at isa?	port 0x100 irq 5	# MOXA C168H serial card (experimental)
4791.563Sdarrenr#com*	at moxa? slave ?
4801.1Smycroft
4811.413Sjdolecek# MCA serial interfaces
4821.413Sjdolecekcom*	at mca? slot ?			# 16x50s on comm boards
4831.357Saugustss
4841.112Sperry# Parallel Printer Interfaces
4851.160Scgd
4861.160Scgd# PCI parallel printer interfaces
4871.160Scgdlpt*	at puc? port ?			# || ports on "universal" comm boards
4881.110Sthorpej
4891.112Sperry# ISA parallel printer interfaces
4901.110Sthorpejlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
4911.110Sthorpejlpt1	at isa? port 0x278
4921.110Sthorpejlpt2	at isa? port 0x3bc
4931.1Smycroft
4941.440Slukem# Hardware monitors
4951.357Saugustss
4961.308Sgroo# LM7[89] and compatible hardware monitors
4971.310Sgroo#lm0	at isa?	port 0x290		# other common ports: 0x280, 0x310
4981.336Sjoda
4991.336Sjoda# VIA VT82C686A hardware monitor
5001.563Sdarrenr#viapm*	at pci? dev ? function ?
5011.563Sdarrenr#viaenv* at viapm?
5021.40Sperry
5031.377Saugustss
5041.375Sad# I2O devices
5051.375Sadiop*	at pci? dev ? function ?	# I/O processor
5061.375Sadiopsp*	at iop? tid ?			# SCSI/FC-AL ports
5071.379Sadld*	at iop? tid ?			# block devices
5081.427Saddpti*	at iop? tid 0			# DPT/Adaptec control interface
5091.357Saugustss
5101.377Saugustss
5111.112Sperry# SCSI Controllers and Devices
5121.68Schristos
5131.112Sperry# PCI SCSI controllers
5141.186Sdanteadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
5151.330Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
5161.112Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
5171.567Ssorenahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
5181.112Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
5191.259Saddpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
5201.406Stsutsuiiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
5211.112Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
5221.414Sadmly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
5231.556Sthorpejmpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
5241.414Sadpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
5251.350Sfvdlsiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
5261.566Sbouyeresiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
5271.485Sbouyer#options 	SIOP_SYMLED		# drive the act. LED in software
5281.433Stsutsuitrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
5291.110Sthorpej
5301.112Sperry# EISA SCSI controllers
5311.112Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
5321.112Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
5331.112Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
5341.263Saddpt*	at eisa? slot ?			# DPT EATA SCSI
5351.112Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
5361.105Sthorpej
5371.112Sperry# PCMCIA SCSI controllers
5381.110Sthorpejaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
5391.313Smycroftesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
5401.145Senami
5411.145Senami# ISA Plug-and-Play SCSI controllers
5421.205Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
5431.145Senamiaic*	at isapnp?			# Adaptec AHA-1520B
5441.110Sthorpej
5451.112Sperry# ISA SCSI controllers
5461.367Srossadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02] SCSI
5471.112Sperryaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
5481.112Sperryaha1	at isa? port 0x334 irq ? drq ?
5491.112Sperryahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
5501.112Sperryaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
5511.116Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
5521.112Sperrybha1	at isa? port 0x334 irq ? drq ?
5531.301Sad# The "nca" and "dpt" probes might give false hits or hang your machine.
5541.563Sdarrenr#dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
5551.563Sdarrenr#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
5561.563Sdarrenr#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
5571.112Sperrysea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
5581.112Sperryuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
5591.129Sdrochneruha1	at isa? port 0x340 irq ? drq ?
5601.112Sperrywds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
5611.112Sperrywds1	at isa? port 0x358 irq 11 drq 5
5621.110Sthorpej
5631.297Saugustss# CardBus SCSI cards
5641.563Sdarrenr#adv*	at cardbus? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
5651.563Sdarrenr#ahc*	at cardbus? dev ? function ?	# Adaptec ADP-1480
5661.297Saugustss
5671.413Sjdolecek# MCA SCSI cards
5681.413Sjdolecekaha*	at mca? slot ?			# Adaptec AHA-1640
5691.413Sjdolecek
5701.110Sthorpej# SCSI bus support
5711.498Slukemscsibus* at scsi?
5721.110Sthorpej
5731.110Sthorpej# SCSI devices
5741.110Sthorpejsd*	at scsibus? target ? lun ?	# SCSI disk drives
5751.110Sthorpejst*	at scsibus? target ? lun ?	# SCSI tape drives
5761.110Sthorpejcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
5771.110Sthorpejch*	at scsibus? target ? lun ?	# SCSI autochangers
5781.351Saugustssses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
5791.110Sthorpejss*	at scsibus? target ? lun ?	# SCSI scanners
5801.110Sthorpejuk*	at scsibus? target ? lun ?	# SCSI unknown
5811.110Sthorpej
5821.372Sad
5831.312Sad# RAID controllers and devices
5841.491Sadaac*	at pci? dev ? function ?	# Adaptec AAC family
5851.559Sadamr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
5861.404Sadcac*	at eisa? slot ?			# Compaq EISA array controllers
5871.372Sadcac*	at pci? dev ? function ?	# Compaq PCI array controllers
5881.487Sadicp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
5891.399Sadmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
5901.404Sadmlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
5911.374Sadtwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
5921.112Sperry
5931.491Sadld*	at aac? unit ?			# logical disk devices
5941.559Sadld*	at amr? unit ?
5951.491Sadld*	at cac? unit ?
5961.487Sadld*	at icp? unit ?
5971.399Sadld*	at twe? unit ?
5981.399Sadld*	at mlx? unit ?
5991.487Sad
6001.487Sadicpsp*	at icp? unit ?			# SCSI pass-through
6011.357Saugustss
6021.220Sabs# IDE and related devices
6031.228Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
6041.194Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
6051.194Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
6061.194Sbouyer# a machine hang with some controllers.
6071.573Sbouyerpciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
6081.573Sbouyeracardide*	at pci? dev ? function ?	# Acard IDE controllers
6091.573Sbouyeraceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
6101.585Sthorpejartsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
6111.573Sbouyercmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
6121.573Sbouyercypide* 	at pci? dev ? function ?	# Cypress IDE controllers
6131.573Sbouyerhptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
6141.573Sbouyeroptiide* 	at pci? dev ? function ?	# Opti IDE controllers
6151.573Sbouyerpiixide* 	at pci? dev ? function ?	# Intel IDE controllers
6161.573Sbouyerpdcide* 	at pci? dev ? function ?	# Promise IDE controllers
6171.579Smycroftrccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
6181.584Sthorpejsatalink*	at pci? dev ? function ?	# SiI SATALink controllers
6191.573Sbouyersiside* 	at pci? dev ? function ?	# SiS IDE controllers
6201.573Sbouyerslide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
6211.589Saugustssstpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
6221.573Sbouyerviaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
6231.132Smycroft
6241.132Smycroft# ISA Plug-and-Play IDE controllers
6251.440Slukemwdc*	at isapnp?
6261.131Smycroft
6271.131Smycroft# PCMCIA IDE controllers
6281.190Senamiwdc*	at pcmcia? function ?
6291.112Sperry
6301.189Sbouyer# ISA ST506, ESDI, and IDE controllers
6311.235Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
6321.261Sitohy# fall back to 16bits I/O if 32bits I/O are not functional).
6331.235Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
6341.235Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
6351.235Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
6361.112Sperry
6371.577Slukem# ATA (IDE) bus support
6381.577Slukematabus* at ata?
6391.577Slukem
6401.220Sabs# IDE drives
6411.220Sabs# Flags are used only with controllers that support DMA operations
6421.206Sbouyer# and mode settings (e.g. some pciide controllers)
6431.220Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
6441.220Sabs# mode to use, the next set of four bits the DMA mode and the third set the
6451.220Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
6461.220Sabs# to use, and the last bit must be 1 for this setting to be used.
6471.220Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
6481.220Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
6491.220Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
6501.220Sabs# 0x0000 means "use whatever the drive claims to support".
6511.572Sbouyerwd*	at atabus? drive ? flags 0x0000
6521.545Sthorpej
6531.545Sthorpej# ATA RAID configuration support, as found on some Promise controllers.
6541.545Sthorpejpseudo-device	ataraid
6551.545Sthorpejld*	at ataraid? vendtype ? unit ?
6561.112Sperry
6571.110Sthorpej# ATAPI bus support
6581.498Slukematapibus* at atapi?
6591.110Sthorpej
6601.110Sthorpej# ATAPI devices
6611.206Sbouyer# flags have the same meaning as for IDE drives.
6621.206Sbouyercd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
6631.206Sbouyersd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
6641.442Sbouyerst*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
6651.206Sbouyeruk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
6661.110Sthorpej
6671.112Sperry
6681.112Sperry# Miscellaneous mass storage devices
6691.112Sperry
6701.112Sperry# ISA floppy
6711.112Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
6721.563Sdarrenr#fdc1	at isa? port 0x370 irq ? drq ?
6731.112Sperryfd*	at fdc? drive ?			# the drives themselves
6741.112Sperry# some machines need you to do this instead of fd*
6751.563Sdarrenr#fd0	at fdc0 drive 0
6761.112Sperry
6771.112Sperry# ISA CD-ROM devices
6781.563Sdarrenr#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
6791.112Sperry
6801.112Sperry# ISA tape devices
6811.157Sbouyer# note: the wt driver conflicts unpleasantly with SMC boards at the
6821.116Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
6831.112Sperry# uncomment it unless you are actually using it.
6841.129Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
6851.112Sperry
6861.413Sjdolecek# MCA ESDI devices
6871.413Sjdolecekedc*	at mca? slot ?			# IBM ESDI Disk Controllers
6881.413Sjdoleceked*	at edc?
6891.413Sjdolecek
6901.112Sperry
6911.112Sperry# Network Interfaces
6921.112Sperry
6931.112Sperry# PCI network interfaces
6941.383Sonoean*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
6951.591Sperryath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
6961.576Sdyoungatw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
6971.571Smrgbce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
6981.497Sfvdlbge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
6991.112Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
7001.200Sfvdlep*	at pci? dev ? function ?	# 3Com 3c59x
7011.150Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
7021.152Smjacobesh*	at pci? dev ? function ?	# Essential HIPPI card
7031.418Saugustssex*	at pci? dev ? function ?	# 3Com 90x[BC]
7041.112Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
7051.112Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
7061.407Sthorpejgsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
7071.563Sdarrenr#hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
7081.112Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
7091.340Saugustsslmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
7101.522Smartinmtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
7111.112Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
7121.287Schoppsntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
7131.418Saugustsspcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
7141.340Saugustssrtk*	at pci? dev ? function ?	# Realtek 8129/8139
7151.407Sthorpejsf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
7161.407Sthorpejsip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
7171.587Stlsskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
7181.587Stlssk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
7191.418Saugustssste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
7201.418Saugustssstge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
7211.344Sthorpejti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
7221.115Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
7231.484Smycrofttlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
7241.213Ssakamotovr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
7251.431Sichirowi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
7261.581Stronwm*	at pci? dev ? function ?	# Intel 8254x gigabit
7271.112Sperry
7281.112Sperry# EISA network interfaces
7291.112Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
7301.112Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
7311.270Sthorpejtlp*	at eisa? slot ?			# DEC DE-425 Ethernet
7321.112Sperry
7331.112Sperry# ISA Plug-and-Play network interfaces
7341.387Saugustssan*	at isapnp?			# Aironet 802.11
7351.112Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
7361.521Stsutsuifmv*	at isapnp?			# Fujitsu FMV-183
7371.515Stsutsuile*	at isapnp?			# AMD PCnet-ISA Ethernet
7381.112Sperryne*	at isapnp?			# NE2000-compatible Ethernet
7391.222Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
7401.112Sperry
7411.112Sperry# PCMCIA network interfaces
7421.382Sonoean*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
7431.316Sonoeawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
7441.280Sitojuncnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
7451.112Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
7461.144Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
7471.112Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
7481.294Saugustssray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
7491.112Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
7501.421Saugustss# tr at pcmcia has problems with Cardbus bridges
7511.563Sdarrenr#tr*	at pcmcia? function ?		# TROPIC based Token-Ring
7521.503Sichirowi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
7531.349Sgmcgarryxi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
7541.260Sthorpej
7551.260Sthorpejmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
7561.260Sthorpejcom*	at mhzc?
7571.260Sthorpejsm*	at mhzc?
7581.112Sperry
7591.112Sperry# ISA network interfaces
7601.143Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
7611.164Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
7621.117Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
7631.120Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
7641.112Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
7651.343Stvep*	at isa? port ? irq ?			# 3C509 ethernet cards
7661.140Spkef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
7671.140Spkai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
7681.521Stsutsuifmv0	at isa? port 0x2a0 irq ?		# FMV-181/182
7691.140Spkix0	at isa? port 0x300 irq 10		# EtherExpress/16
7701.121Sdrochneriy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
7711.123Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
7721.563Sdarrenr#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
7731.563Sdarrenr#le*	at depca?
7741.147Sdrochnernele0	at isa? port 0x320 irq 9 drq 7		# NE2100
7751.344Sthorpejle*	at nele?
7761.563Sdarrenr#ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
7771.146Sdrochnerbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
7781.146Sdrochnerle*	at bicc?
7791.112Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
7801.112Sperryne1	at isa? port 0x300 irq 10
7811.119Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
7821.440Slukemtr0	at isa? port 0xa20 iomem 0xd8000 irq ?	# IBM TROPIC based Token-Ring
7831.440Slukemtr1	at isa? port 0xa24 iomem 0xd0000 irq ?	# IBM TROPIC based Token-Ring
7841.222Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
7851.118Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
7861.118Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
7871.112Sperry
7881.297Saugustss# CardBus network cards
7891.586Sdyoung#ath*	at cardbus? dev ? function ?	# Atheros 5210/5211/5212 802.11
7901.576Sdyoung#atw*	at cardbus? dev ? function ?	# ADMtek ADM8211 (802.11)
7911.563Sdarrenr#ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
7921.563Sdarrenr#fxp*	at cardbus? dev ? function ?	# Intel i8255x
7931.563Sdarrenr#rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
7941.563Sdarrenr#tlp*	at cardbus? dev ? function ?	# DECchip 21143
7951.413Sjdolecek
7961.413Sjdolecek# MCA network cards
7971.413Sjdolecekelmc*	at mca? slot ?			# 3Com EtherLink/MC (3c523)
7981.413Sjdolecekep*	at mca? slot ?			# 3Com EtherLink III (3c529)
7991.413Sjdolecekwe*	at mca? slot ?			# WD/SMC Ethernet
8001.413Sjdolecekate*	at mca? slot ?			# Allied Telesis AT1720
8011.413Sjdolecekne*	at mca? slot ?			# Novell NE/2 and clones
8021.413Sjdolecektr*	at mca? slot ?			# IBM Token Ring adapter
8031.413Sjdolecekle*	at mca? slot ?			# SKNET Personal/MC2+
8041.297Saugustss
8051.172Sthorpej# MII/PHY support
8061.555Sthorpejacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
8071.593Sperryamhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
8081.593Sperrybmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
8091.593Sperrybrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
8101.344Sthorpejdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
8111.195Sthorpejexphy*	at mii? phy ?			# 3Com internal PHYs
8121.552Sperrygentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
8131.417Saugustssglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
8141.415Saugustssgphyter* at mii? phy ?			# NS83861 Gig-E PHY
8151.593Sperryicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
8161.580Sfvdligphy*	at mii? phy ?			# Intel IGP01E1000
8171.172Sthorpejinphy*	at mii? phy ?			# Intel 82555 PHYs
8181.270Sthorpejiophy*	at mii? phy ?			# Intel 82553 PHYs
8191.593Sperrylxtphy* at mii? phy ?			# Level One LXT-970 PHYs
8201.593Sperrymakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
8211.172Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
8221.593Sperrynsphyter* at mii? phy ? 		# NS83843 PHYs
8231.593Sperrypnaphy* at mii? phy ?			# generic HomePNA PHYs
8241.172Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
8251.199Sthorpejsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
8261.172Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
8271.270Sthorpejtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
8281.479Saugustssukphy*	at mii? phy ?			# generic unknown PHYs
8291.478Sitojunurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
8301.112Sperry
8311.357Saugustss
8321.162Saugustss# USB Controller and Devices
8331.162Saugustss
8341.162Saugustss# PCI USB controllers
8351.441Saugustss# The EHCI is not ready for prime time.
8361.563Sdarrenr#ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
8371.340Saugustssohci*	at pci?	dev ? function ?	# Open Host Controller
8381.278Saugustssuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
8391.297Saugustss
8401.297Saugustss# CardBus USB controllers
8411.563Sdarrenr#ehci*	at cardbus? dev ? function ?	# Enhanced Host Controller
8421.563Sdarrenr#ohci*	at cardbus? dev ? function ?	# Open Host Controller
8431.162Saugustss
8441.505Sisaki# ISA USB controllers
8451.563Sdarrenr#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
8461.505Sisaki
8471.162Saugustss# USB bus support
8481.563Sdarrenr#usb*	at ehci?
8491.340Saugustssusb*	at ohci?
8501.162Saugustssusb*	at uhci?
8511.563Sdarrenr#usb*	at slhci?
8521.162Saugustss
8531.162Saugustss# USB Hubs
8541.162Saugustssuhub*	at usb?
8551.207Saugustssuhub*	at uhub? port ? configuration ? interface ?
8561.162Saugustss
8571.452Saugustss# USB HID device
8581.452Saugustssuhidev*	at uhub? port ? configuration ? interface ?
8591.452Saugustss
8601.162Saugustss# USB Mice
8611.452Saugustssums*	at uhidev? reportid ?
8621.452Saugustsswsmouse* at ums? mux 0
8631.162Saugustss
8641.162Saugustss# USB Keyboards
8651.452Saugustssukbd*	at uhidev? reportid ?
8661.246Saugustsswskbd*	at ukbd? console ? mux 1
8671.162Saugustss
8681.162Saugustss# USB Generic HID devices
8691.452Saugustssuhid*	at uhidev? reportid ?
8701.162Saugustss
8711.162Saugustss# USB Printer
8721.207Saugustssulpt*	at uhub? port ? configuration ? interface ?
8731.162Saugustss
8741.254Saugustss# USB Modem
8751.254Saugustssumodem*	at uhub? port ? configuration ?
8761.295Saugustssucom*	at umodem?
8771.256Sthorpej
8781.256Sthorpej# USB Mass Storage
8791.256Sthorpejumass*	at uhub? port ? configuration ? interface ?
8801.450Saugustss#wd* at umass?
8811.254Saugustss
8821.257Saugustss# USB audio
8831.257Saugustssuaudio*	at uhub? port ? configuration ?
8841.257Saugustss
8851.397Stshiozak# USB MIDI
8861.397Stshiozakumidi* at uhub? port ? configuration ?
8871.447Saugustss
8881.458Saugustss# USB IrDA
8891.458Saugustss# USB-IrDA bridge spec
8901.449Saugustssuirda* at uhub? port ? configuration ? interface ?
8911.449Saugustssirframe* at uirda?
8921.458Saugustss
8931.458Saugustss# SigmaTel STIr4200 USB/IrDA Bridge
8941.458Saugustssustir* at uhub? port ?
8951.458Saugustssirframe* at ustir?
8961.397Stshiozak
8971.289Saugustss# USB Ethernet adapters
8981.289Saugustssaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
8991.291Saugustsscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
9001.290Saugustsskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
9011.546Saugustssuax*	at uhub? port ?		# ASIX AX88172 based adapters
9021.574Saugustssudav*	at uhub? port ?		# Davicom DM9601 based adapters
9031.476Sichirourl*	at uhub? port ?		# Realtek RTL8150L based adapters
9041.318Saugustss
9051.475Saugustss# Prolific PL2301/PL2302 host-to-host adapter
9061.321Saugustssupl*	at uhub? port ?
9071.325Saugustss
9081.325Saugustss# Serial adapters
9091.517Saugustssubsa*	at uhub? port ?		# Belkin serial adapter
9101.517Saugustssucom*	at ubsa? portno ?
9111.517Saugustss
9121.475Saugustssuftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
9131.395Saugustssucom*	at uftdi? portno ?
9141.394Sichiro
9151.475Saugustssumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
9161.475Saugustssucom*	at umct? portno ?
9171.475Saugustss
9181.593Sperryuplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
9191.440Slukemucom*	at uplcom? portno ?
9201.401Sichiro
9211.593Sperryuvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
9221.475Saugustssucom*	at uvscom? portno ?
9231.324Saugustss
9241.324Saugustss# Diamond Multimedia Rio 500
9251.324Saugustssurio*	at uhub? port ?
9261.321Saugustss
9271.318Saugustss# USB Handspring Visor
9281.321Saugustssuvisor*	at uhub? port ?
9291.321Saugustssucom*	at uvisor?
9301.377Saugustss
9311.377Saugustss# USB scanners
9321.377Saugustssuscanner* at uhub? port ?
9331.391Saugustss
9341.391Saugustss# USB scanners that use SCSI emulation, e.g., HP5300
9351.391Saugustssusscanner* at uhub? port ?
9361.392Saugustss
9371.392Saugustss# Y@P firmware loader
9381.392Saugustssuyap* at uhub? port ?
9391.456Saugustss
9401.456Saugustss# D-Link DSB-R100 USB radio
9411.459Saugustssudsbr*	at uhub? port ?
9421.459Saugustssradio*	at udsbr?
9431.289Saugustss
9441.162Saugustss# USB Generic driver
9451.244Saugustssugen*	at uhub? port ?
9461.443Saugustss
9471.443Saugustss
9481.443Saugustss# IrDA and Consumer Ir devices
9491.446Ssoren
9501.443Saugustss# Toshiba Oboe
9511.446Ssorenoboe* 	at pci? dev ? function ?
9521.445Saugustssirframe* at oboe?
9531.162Saugustss
9541.528Sichiro# PCI IEEE1394 controllers
9551.563Sdarrenr#fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
9561.528Sichiro
9571.528Sichiro# CardBus IEEE1394 controllers
9581.563Sdarrenr#fwohci* at cardbus? dev ? function ?	# IEEE1394 Open Host Controller
9591.528Sichiro
9601.563Sdarrenr#fw*	at fwbus?			# IP over 1394
9611.528Sichiro
9621.528Sichiro# IEEE1394 nodes
9631.563Sdarrenr#fwnode* at fwbus? idhi ? idlo ?
9641.563Sdarrenr#sbpscsi* at fwnode?
9651.563Sdarrenr#scsibus* at sbpscsi?
9661.357Saugustss
9671.112Sperry# Audio Devices
9681.112Sperry
9691.148Saugustss# PCI audio devices
9701.390Slukemauich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
9711.438Ssomeyaautri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
9721.319Stsarnaauvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
9731.283Saugustssclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
9741.393Saugustssclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
9751.331Saugustsscmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
9761.148Saugustsseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
9771.593Sperryemuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
9781.461Sjmcneillesa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
9791.389Srhesm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
9801.241Skleinkeso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
9811.268Saugustssfms*	at pci? dev ? function ?	# Forte Media FM801
9821.381Saugustssneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
9831.209Saugustsssv*	at pci? dev ? function ?	# S3 SonicVibes
9841.402Sminourayds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
9851.148Saugustss
9861.112Sperry# ISA Plug-and-Play audio devices
9871.173Saugustssess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
9881.593Sperryguspnp* at isapnp?			# Gravis Ultra Sound PnP audio
9891.112Sperrysb*	at isapnp?			# SoundBlaster-compatible audio
9901.169Saugustsswss*	at isapnp?			# Windows Sound System
9911.149Saugustssym*	at isapnp?			# Yamaha OPL3-SA3 audio
9921.112Sperry
9931.112Sperry# ISA audio devices
9941.232Sdrochner# the "aria" probe might give false hits
9951.563Sdarrenr#aria0	at isa? port 0x290 irq 10 		# Aria
9961.563Sdarrenr#ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
9971.112Sperrygus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
9981.112Sperrypas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
9991.563Sdarrenr#pss0	at isa? port 0x220 irq 7 drq 6		# Personal Sound System
10001.563Sdarrenr#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
10011.161Sperrysb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
10021.388Stvwss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
10031.112Sperry
10041.428Saugustss# PCMCIA audio devices
10051.563Sdarrenr#esl*	at pcmcia? function ?			# ESS 1688 AudioDrive
10061.428Saugustss
10071.332Saugustss#cms0	at isa? port 0x220			# Creative Music System
10081.332Saugustss
10091.261Sitohy# OPL[23] FM synthesizers
10101.178Saugustss#opl0	at isa? port 0x388	# use only if not attached to sound card
10111.434Sitohyopl*	at cmpci? flags 1
10121.563Sdarrenr#opl*	at esl?
10131.241Skleinkopl*	at eso?
10141.178Saugustssopl*	at ess?
10151.268Saugustssopl*	at fms?
10161.176Saugustssopl*	at sb?
10171.209Saugustssopl*	at sv?
10181.253Saugustssopl*	at wss?
10191.402Sminouraopl*	at yds?
10201.261Sitohyopl*	at ym?
10211.176Saugustss
10221.112Sperry# Audio support
10231.498Slukemaudio*	at audiobus?
10241.112Sperry
10251.249Saugustss# MPU 401 UARTs
10261.440Slukem#mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
10271.434Sitohympu*	at cmpci?
10281.249Saugustssmpu*	at eso?
10291.268Saugustssmpu*	at fms?
10301.248Saugustssmpu*	at sb?
10311.402Sminourampu*	at yds?
10321.261Sitohympu*	at ym?
10331.247Saugustss
10341.170Saugustss# MIDI support
10351.498Slukemmidi*	at midibus?
10361.173Saugustssmidi*	at pcppi?		# MIDI interface to the PC speaker
10371.170Saugustss
10381.112Sperry# The spkr driver provides a simple tone interface to the built in speaker.
10391.563Sdarrenr#spkr0	at pcppi?		# PC speaker
10401.454Saugustss
10411.454Saugustss
10421.454Saugustss# FM-Radio devices
10431.454Saugustss# ISA radio devices
10441.563Sdarrenr#az0	at isa? port 0x350      # Aztech/PackardBell FM Radio Card
10451.563Sdarrenr#az1	at isa? port 0x358
10461.563Sdarrenr#rt0	at isa? port 0x20c      # AIMS Lab Radiotrack & compatible
10471.563Sdarrenr#rt1	at isa? port 0x284
10481.563Sdarrenr#rt2	at isa? port 0x30c
10491.563Sdarrenr#rt3	at isa? port 0x384
10501.563Sdarrenr#rtii0	at isa? port 0x20c      # AIMS Lab Radiotrack II FM Radio Card
10511.563Sdarrenr#rtii1	at isa? port 0x30c
10521.563Sdarrenr#sf2r0	at isa? port 0x384      # SoundForte RadioLink SF16-FMR2 FM Radio Card
10531.454Saugustss
10541.454Saugustss# PCI radio devices
10551.563Sdarrenr#gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
10561.454Saugustss
10571.454Saugustss# Radio support
10581.563Sdarrenr#radio*	at az?
10591.563Sdarrenr#radio*	at gtp?
10601.563Sdarrenr#radio*	at rt?
10611.563Sdarrenr#radio*	at rtii?
10621.563Sdarrenr#radio*	at sf2r?
10631.112Sperry
10641.357Saugustss
10651.334Swiz# TV cards
10661.334Swiz
10671.334Swiz# Brooktree 848/849/878/879 based TV cards
10681.334Swizbktr* at pci? dev ? function ?
10691.463Sjmcneillradio* at bktr?
10701.357Saugustss
10711.112Sperry
10721.112Sperry# Mice
10731.112Sperry
10741.112Sperry# ISA busmice
10751.243Stronlms0	at isa? port 0x23c irq 5	# Logitech bus mouse
10761.243Stronlms1	at isa? port 0x238 irq 5
10771.243Stronmms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
10781.243Stronmms1	at isa? port 0x238 irq 5
10791.246Saugustsswsmouse*	at lms? mux 0
10801.246Saugustsswsmouse*	at mms? mux 0
10811.112Sperry
10821.112Sperry
10831.582Sjonathan# Cryptographic Devices
10841.582Sjonathan
10851.582Sjonathan# PCI cryptographic devices
10861.582Sjonathanhifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
10871.582Sjonathanubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
10881.582Sjonathan
10891.582Sjonathan
10901.112Sperry# Joysticks
10911.400Sperry
10921.594Sperry#joy*	at pnpbios? index ?		# Game port
10931.112Sperry
10941.112Sperry# ISA Plug-and-Play joysticks
10951.112Sperryjoy*	at isapnp?			# Game ports (usually on audio cards)
10961.317Smartin
10971.317Smartin# PCI joysticks
10981.317Smartinjoy*	at pci?				# Game ports (usually on audio cards)
10991.488Skleinkjoy*	at eso?				# ESS Solo-1 on-board joystick
11001.112Sperry
11011.112Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
11021.112Sperry#joy0	at isa? port 0x201
11031.112Sperry
11041.112Sperry
11051.112Sperry# Miscellaneous Devices
11061.112Sperry
11071.112Sperry# Planetconnect Satellite receiver driver.
11081.112Sperry#satlink0 at isa? port 0x300 drq 1
11091.112Sperry
11101.453Shpeyerl# Middle Digital, Inc. PCI-Weasel serial console board control
11111.453Shpeyerl# devices (watchdog timer, etc.)
11121.453Shpeyerlweasel* at pci?
11131.112Sperry
11141.110Sthorpej# Pull in optional local configuration
11151.57Smycroftinclude	"arch/i386/conf/GENERIC.local"
11161.1Smycroft
11171.112Sperry
11181.112Sperry# Pseudo-Devices
11191.582Sjonathan
11201.590Sjonathanpseudo-device 	crypto		# opencrypto framework
11211.112Sperry
11221.112Sperry# disk/mass storage pseudo-devices
11231.112Sperrypseudo-device	ccd		4	# concatenated/striped disk devices
11241.563Sdarrenr#pseudo-device	cgd		4	# cryptographic disk devices
11251.524Sjdolecekpseudo-device	raid		8	# RAIDframe disk driver
11261.524Sjdolecekoptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
11271.533Sjunyoung# Options to enable various other RAIDframe RAID types.
11281.469Swiz#options 	RF_INCLUDE_EVENODD=1
11291.469Swiz#options 	RF_INCLUDE_RAID5_RS=1
11301.469Swiz#options 	RF_INCLUDE_PARITYLOGGING=1
11311.469Swiz#options 	RF_INCLUDE_CHAINDECLUSTER=1
11321.469Swiz#options 	RF_INCLUDE_INTERDECLUSTER=1
11331.469Swiz#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
11341.469Swiz#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
11351.575Sgrog
11361.575Sgrog# Vinum
11371.575Sgrog# pseudo-device	vinum		8	# Vinum
11381.575Sgrog# options 	VINUMDEBUG
11391.513Sfvdl
11401.112Sperrypseudo-device	md		1	# memory disk device (ramdisk)
11411.112Sperrypseudo-device	vnd		4	# disk-like interface to files
11421.112Sperry
11431.112Sperry# network pseudo-devices
11441.110Sthorpejpseudo-device	bpfilter	8	# Berkeley packet filter
11451.110Sthorpejpseudo-device	ipfilter		# IP filter (firewall) and NAT
11461.110Sthorpejpseudo-device	loop			# network loopback
11471.110Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
11481.451Smartinpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
11491.112Sperrypseudo-device	sl		2	# Serial Line IP
11501.112Sperrypseudo-device	strip		2	# Starmode Radio IP (Metricom)
11511.445Saugustsspseudo-device	irframetty		# IrDA frame line discipline
11521.112Sperrypseudo-device	tun		2	# network tunneling over tty
11531.183Shwrpseudo-device	gre		2	# generic L3 over IP tunnel
11541.273Sperrypseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
11551.563Sdarrenr#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
11561.563Sdarrenr#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
11571.386Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
11581.420Satatatpseudo-device	bridge			# simple inter-network bridging
11591.593Sperry#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
11601.112Sperry
11611.112Sperry# miscellaneous pseudo-devices
11621.371Sjdolecekpseudo-device	pty			# pseudo-terminals
11631.113Sexplorerpseudo-device	tb		1	# tablet line discipline
11641.170Saugustsspseudo-device	sequencer	1	# MIDI sequencer
11651.227Sexplorer# rnd works; RND_COM does not on port i386 yet.
11661.227Sexplorerpseudo-device	rnd			# /dev/random and in-kernel generator
11671.114Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
11681.494Slukempseudo-device	clockctl		# user control of clock subsystem
11691.181Srvb
11701.182Srvb# a pseudo device needed for Coda	# also needs CODA (above)
11711.187Srvbpseudo-device	vcoda		4	# coda minicache <-> venus comm.
11721.547Sjdolecek
11731.547Sjdolecek# a pseudo device needed for SMBFS
11741.547Sjdolecekpseudo-device	nsmb			# experimental - SMB requester
11751.246Saugustss
11761.437Sjunyoung# wscons pseudo-devices
11771.437Sjunyoungpseudo-device	wsmux			# mouse & keyboard multiplexor
11781.437Sjunyoungpseudo-device	wsfont
11791.558Sraggepseudo-device	ksyms			# /dev/ksyms
1180