ALL revision 1.203
11.203Smbalmer# $NetBSD: ALL,v 1.203 2009/07/29 11:52:44 mbalmer Exp $
21.66Schristos# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
31.7Scgd#
41.58Schristos# ALL machine description file
51.58Schristos#
61.58Schristos# This machine description includes all devices and options and it is
71.58Schristos# used to compile-test the source and does not necessarily produce a
81.58Schristos# bootable or useful kernel.
91.58Schristos#
101.58Schristos# For further information on hardware support for this architecture, see
111.58Schristos# the intro(4) man page.  For further information about kernel options
121.58Schristos# for this architecture, see the options(4) man page.  For an explanation
131.58Schristos# of each device driver in this file see the section 4 man page for the
141.58Schristos# device.
151.58Schristos
161.58Schristosinclude 	"arch/i386/conf/std.i386"
171.58Schristos
181.58Schristosoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
191.58Schristos
201.203Smbalmer#ident 		"ALL-$Revision: 1.203 $"
211.58Schristos
221.58Schristosmaxusers	32		# estimated number of users
231.58Schristos
241.58Schristos# CPU-related options.
251.58Schristosoptions 	VM86		# virtual 8086 emulation
261.58Schristosoptions 	USER_LDT	# user-settable LDT; used by WINE
271.58Schristos
281.58Schristos# Enhanced SpeedStep Technology in the Pentium M
291.58Schristosoptions 	ENHANCED_SPEEDSTEP
301.58Schristosoptions 	EST_FREQ_USERWRITE	# any user can set frequency
311.58Schristos
321.58Schristos# AMD PowerNow! K7
331.58Schristosoptions 	POWERNOW_K7
341.58Schristos
351.58Schristos# AMD PowerNow! and Cool`n'Quiet technology
361.63Sjmmvoptions 	POWERNOW_K8
371.58Schristos
381.113Sdaniel# VIA PadLock
391.153Smarttioptions 	VIA_PADLOCK
401.113Sdaniel
411.90Sxtraeme# Intel(R) On Demand Clock Modulation (aka ODCM)
421.100Sxtraemeoptions 	INTEL_ONDEMAND_CLOCKMOD
431.90Sxtraeme
441.158Sjmcneill# XBOX support
451.158Sjmcneilloptions		XBOX
461.158Sjmcneill
471.58Schristosoptions 	MTRR		# memory-type range register syscall support
481.58Schristos# doesn't work with MP just yet..
491.58Schristosoptions 	PERFCTRS	# performance-monitoring counters support
501.58Schristos
511.58Schristosoptions 	MULTIBOOT	# Multiboot support (see multiboot(8))
521.58Schristos
531.58Schristos# delay between "rebooting ..." message and hardware reset, in milliseconds
541.58Schristosoptions 	CPURESET_DELAY=2000
551.58Schristos
561.58Schristos# This option allows you to force a serial console at the specified
571.58Schristos# I/O address.   see console(4) for details.
581.58Schristosoptions 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
591.133Sxtraeme#	you don't want the option below ON iff you are using the
601.58Schristos#	serial console option of the new boot strap code.
611.58Schristosoptions 	CONS_OVERRIDE	# Always use above! independent of boot info
621.58Schristos
631.58Schristos# The following options override the memory sizes passed in from the boot
641.58Schristos# block.  Use them *only* if the boot block is unable to determine the correct
651.58Schristos# values.  Note that the BIOS may *correctly* report less than 640k of base
661.58Schristos# memory if the extended BIOS data area is located at the top of base memory
671.58Schristos# (as is the case on most recent systems).
681.58Schristosoptions 	REALBASEMEM=639		# size of base memory (in KB)
691.58Schristosoptions 	REALEXTMEM=15360	# size of extended memory (in KB)
701.58Schristos
711.58Schristos# Standard system options
721.58Schristos
731.58Schristosoptions 	INSECURE	# disable kernel security levels - X needs this
741.58Schristos
751.58Schristosoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
761.58Schristosoptions 	NTP		# NTP phase/frequency locked loop
771.58Schristos
781.58Schristosoptions 	KTRACE		# system call tracing via ktrace(1)
791.58Schristos
801.58Schristosoptions 	SYSVMSG		# System V-like message queues
811.58Schristosoptions 	SYSVSEM		# System V-like semaphores
821.58Schristosoptions 	SEMMNI=10	# number of semaphore identifiers
831.58Schristosoptions 	SEMMNS=60	# number of semaphores in system
841.58Schristosoptions 	SEMUME=10	# max number of undo entries per process
851.58Schristosoptions 	SEMMNU=30	# number of undo structures in system
861.58Schristosoptions 	SYSVSHM		# System V-like memory sharing
871.58Schristosoptions 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
881.58Schristos
891.160Sjmmvoptions 	MODULAR		# new modules framework
901.58Schristos
911.58Schristosoptions 	USERCONF	# userconf(4) support
921.58Schristosoptions 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
931.58Schristosoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
941.58Schristos
951.58Schristos# Beep when it is safe to power down the system (requires sysbeep)
961.58Schristosoptions 	BEEP_ONHALT
971.58Schristos# Some tunable details of the above feature (default values used below)
981.58Schristosoptions 	BEEP_ONHALT_COUNT=3	# Times to beep
991.58Schristosoptions 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
1001.58Schristosoptions 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
1011.58Schristos
1021.58Schristos# Enable experimental buffer queue strategy for better responsiveness under
1031.58Schristos# high disk I/O load. Likely stable but not yet the default.
1041.58Schristosoptions 	BUFQ_READPRIO
1051.58Schristosoptions 	BUFQ_PRIOCSCAN
1061.58Schristos
1071.58Schristos# Diagnostic/debugging support options
1081.58Schristosoptions 	DIAGNOSTIC	# expensive kernel consistency checks
1091.125Sadoptions 	DEBUG		# expensive debugging checks/support
1101.58Schristosoptions 	KMEMSTATS	# kernel memory statistics (vmstat -m)
1111.58Schristosoptions 	DDB		# in-kernel debugger
1121.58Schristosoptions 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
1131.58Schristosoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
1141.123Sxtraemeoptions 	DDB_VERBOSE_HELP
1151.58Schristosoptions 	KGDB		# remote debugger
1161.58Schristosoptions 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
1171.199Selad#options 	IPKDB		# IP Kernel Debugger
1181.199Selad#options 	IPKDBKEY="\"yes\""
1191.153Smarttimakeoptions 	DEBUG="-g"	# compile full symbol table
1201.82Sxtraemeoptions 	SYSCALL_STATS	# per syscall counts
1211.82Sxtraemeoptions 	SYSCALL_TIMES 	# per syscall times
1221.82Sxtraemeoptions 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
1231.58Schristos
1241.58Schristos# Compatibility options
1251.58Schristosoptions 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
1261.58Schristosoptions 	COMPAT_09	# NetBSD 0.9
1271.58Schristosoptions 	COMPAT_10	# NetBSD 1.0
1281.58Schristosoptions 	COMPAT_11	# NetBSD 1.1
1291.58Schristosoptions 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
1301.58Schristosoptions 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
1311.58Schristosoptions 	COMPAT_14	# NetBSD 1.4
1321.58Schristosoptions 	COMPAT_15	# NetBSD 1.5
1331.58Schristosoptions 	COMPAT_16	# NetBSD 1.6
1341.58Schristosoptions 	COMPAT_20	# NetBSD 2.0
1351.58Schristosoptions 	COMPAT_30	# NetBSD 3.0
1361.101Schristosoptions 	COMPAT_40	# NetBSD 4.0
1371.58Schristosoptions 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
1381.58Schristosoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
1391.58Schristosoptions 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
1401.58Schristos
1411.58Schristosoptions 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
1421.58Schristosoptions 	COMPAT_SVR4	# binary compatibility with SVR4
1431.58Schristosoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
1441.58Schristosoptions 	COMPAT_LINUX	# binary compatibility with Linux
1451.58Schristosoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
1461.58Schristosoptions 	COMPAT_MACH	# binary compatibility with Mach binaries
1471.58Schristosoptions 	COMPAT_DARWIN	# binary compatibility with Darwin binaries
1481.58Schristosoptions 	EXEC_MACHO	# exec MACH-O binaries
1491.58Schristosoptions 	COMPAT_NDIS	# NDIS network driver
1501.135Sdsloptions 	COMPAT_PECOFF	# kernel support to run Win32 apps
1511.58Schristosoptions 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
1521.58Schristos
1531.153Smarttioptions 	X86EMU		# 386 Real Mode emulator
1541.147Sjoerg
1551.58Schristos# File systems
1561.58Schristosfile-system 	FFS		# UFS
1571.58Schristosfile-system 	EXT2FS		# second extended file system (linux)
1581.58Schristosfile-system 	LFS		# log-structured file system
1591.58Schristosfile-system 	MFS		# memory file system
1601.58Schristosfile-system 	NFS		# Network File System client
1611.58Schristosfile-system 	NTFS		# Windows/NT file system (experimental)
1621.58Schristosfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1631.58Schristosfile-system 	MSDOSFS		# MS-DOS file system
1641.58Schristosfile-system 	FDESC		# /dev/fd
1651.58Schristosfile-system 	KERNFS		# /kern
1661.58Schristosfile-system 	NULLFS		# loopback file system
1671.58Schristosfile-system 	OVERLAY		# overlay file system
1681.58Schristosfile-system 	PORTAL		# portal filesystem (still experimental)
1691.58Schristosfile-system 	PROCFS		# /proc
1701.58Schristosfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1711.58Schristosfile-system 	UNION		# union file system
1721.121Smarttifile-system 	CODA		# Coda File System; also needs vcoda (below)
1731.121Smarttifile-system 	SMBFS		# experimental - CIFS; also needs nsmb (below)
1741.121Smarttifile-system 	SYSVBFS		# System V boot file system
1751.121Smarttifile-system 	PTYFS		# /dev/ptm support
1761.121Smarttifile-system 	TMPFS		# Efficient memory file-system
1771.121Smarttifile-system 	UDF		# experimental - OSTA UDF CD/DVD file-system
1781.121Smarttifile-system 	PUFFS		# experimental - Userspace file system support
1791.121Smarttifile-system 	HFS		# experimental - Apple HFS+ file system
1801.121Smarttifile-system 	EFS		# Silicon Graphics Extent File System
1811.121Smarttifile-system 	FILECORE	# Acorn filecore file system
1821.121Smarttifile-system 	ADOSFS		# AmigaDOS file system
1831.58Schristos
1841.58Schristos# File system options
1851.58Schristosoptions 	QUOTA		# UFS quotas
1861.58Schristosoptions 	FFS_EI		# FFS Endian Independent support
1871.174Ssimonboptions 	WAPBL		# File system journaling support - Experimental
1881.58Schristos# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
1891.58Schristos# It is not recommended for general use.
1901.58Schristosoptions 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
1911.159Sadoptions		UFS_EXTATTR
1921.58Schristosoptions 	NFSSERVER	# Network File System server
1931.58Schristosoptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1941.58Schristosoptions 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1951.58Schristos				# immutable) behave as system flags.
1961.153Smarttioptions 	VNODE_LOCKDEBUG
1971.58Schristos
1981.58Schristos# Networking options
1991.58Schristosoptions 	GATEWAY		# packet forwarding
2001.58Schristosoptions 	INET		# IP + ICMP + TCP + UDP
2011.58Schristosoptions 	INET6		# IPV6
2021.58Schristosoptions 	IPSEC		# IP security
2031.58Schristosoptions 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
2041.58Schristosoptions 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
2051.67Schristos#options 	IPSEC_DEBUG	# debug for IP security
2061.58Schristosoptions 	MROUTING	# IP multicast routing
2071.58Schristosoptions 	PIM		# Protocol Independent Multicast
2081.58Schristosoptions 	ISO,TPIP	# OSI
2091.58Schristosoptions 	EON		# OSI tunneling over IP
2101.58Schristosoptions 	NETATALK	# AppleTalk networking protocols
2111.58Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
2121.58Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
2131.58Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
2141.58Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
2151.58Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
2161.59Schristosoptions 	IPFILTER_LOOKUP	# ippool(8) support
2171.58Schristosoptions 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
2181.67Schristos#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
2191.98Srizoptions 	TCP_SIGNATURE	# RFC2385 support, used with BGP
2201.58Schristos
2211.78Shubertfoptions 	ALTQ		# Manipulate network interfaces' output queues
2221.78Shubertfoptions 	ALTQ_BLUE	# Stochastic Fair Blue
2231.78Shubertfoptions 	ALTQ_CBQ	# Class-Based Queueing
2241.78Shubertfoptions 	ALTQ_CDNR	# Diffserv Traffic Conditioner
2251.78Shubertfoptions 	ALTQ_FIFOQ	# First-In First-Out Queue
2261.78Shubertfoptions 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
2271.78Shubertfoptions 	ALTQ_HFSC	# Hierarchical Fair Service Curve
2281.78Shubertfoptions 	ALTQ_LOCALQ	# Local queueing discipline
2291.78Shubertfoptions 	ALTQ_PRIQ	# Priority Queueing
2301.78Shubertfoptions 	ALTQ_RED	# Random Early Detection
2311.78Shubertfoptions 	ALTQ_RIO	# RED with IN/OUT
2321.78Shubertfoptions 	ALTQ_WFQ	# Weighted Fair Queueing
2331.78Shubertf
2341.58Schristos# These options enable verbose messages for several subsystems.
2351.58Schristos# Warning, these may compile large string tables into the kernel!
2361.58Schristosoptions 	ACPIVERBOSE	# verbose ACPI device autoconfig messages
2371.58Schristosoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
2381.58Schristosoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
2391.58Schristosoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
2401.58Schristosoptions 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
2411.58Schristosoptions 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
2421.58Schristosoptions 	SCSIVERBOSE	# human readable SCSI error messages
2431.58Schristosoptions 	USBVERBOSE	# verbose USB device autoconfig messages
2441.58Schristosoptions 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
2451.58Schristos#options 	PNPBIOSDEBUG	# more fulsome PnP BIOS debugging messages
2461.58Schristosoptions 	MCAVERBOSE	# verbose MCA device autoconfig messages
2471.179Spgoyetteoptions		I2C_SCAN	# Scan i2c bus for responses
2481.58Schristos
2491.58Schristosoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
2501.58Schristos
2511.58Schristos#
2521.58Schristos# wscons options
2531.58Schristos#
2541.58Schristos# builtin terminal emulations
2551.58Schristosoptions 	WSEMUL_SUN		# sun terminal emulation
2561.58Schristosoptions 	WSEMUL_VT100		# VT100 / VT220 emulation
2571.58Schristos# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
2581.58Schristosoptions 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
2591.58Schristosoptions 	WS_DEFAULT_FG=WSCOL_WHITE
2601.58Schristosoptions 	WS_DEFAULT_BG=WSCOL_BLACK
2611.58Schristosoptions 	WS_DEFAULT_COLATTR="(0)"
2621.58Schristosoptions 	WS_DEFAULT_MONOATTR="(0)"
2631.58Schristosoptions 	WS_KERNEL_FG=WSCOL_GREEN
2641.58Schristosoptions 	WS_KERNEL_BG=WSCOL_BLACK
2651.58Schristosoptions 	WS_KERNEL_COLATTR="(0)"
2661.58Schristosoptions 	WS_KERNEL_MONOATTR="(0)"
2671.58Schristos# customization of console border color
2681.58Schristosoptions 	WSDISPLAY_CUSTOM_BORDER	# custom border colors via wsconsctl(8)
2691.58Schristosoptions 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
2701.58Schristos# compatibility to other console drivers
2711.58Schristosoptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2721.58Schristosoptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2731.58Schristosoptions 	WSDISPLAY_COMPAT_USL		# VT handling
2741.58Schristosoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2751.58Schristosoptions 	WSKBD_EVENT_AUTOREPEAT		# auto repeat in event mode
2761.66Schristos#options 	WSKBD_USONLY			# strip off non-US keymaps
2771.58Schristos# don't attach pckbd as the console if no PS/2 keyboard is found
2781.58Schristosoptions 	PCKBD_CNATTACH_MAY_FAIL
2791.58Schristos# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
2801.58Schristosoptions 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
2811.58Schristosoptions 	UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver 
2821.58Schristos# allocate a number of virtual screens at autoconfiguration time
2831.58Schristosoptions 	WSDISPLAY_DEFAULTSCREENS=4
2841.58Schristos# use a large software cursor that doesn't blink
2851.58Schristosoptions 	PCDISPLAY_SOFTCURSOR
2861.58Schristos# modify the screen type of the console; defaults to "80x25"
2871.58Schristosoptions 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
2881.58Schristos# work around a hardware bug that loaded fonts don't work; found on ATI cards
2891.58Schristosoptions 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
2901.149Sjoerg# issue VGA BIOS POST on resume
2911.153Smarttioptions 	VGA_POST
2921.58Schristos# console scrolling support.
2931.58Schristosoptions 	WSDISPLAY_SCROLLSUPPORT
2941.58Schristos# enable VGA raster mode capable of displaying multilingual text on console
2951.89Sdogcow#options 	VGA_RASTERCONSOLE
2961.58Schristos# enable splash screen support; requires hw driver support
2971.58Schristos#options 	SPLASHSCREEN
2981.58Schristos#options 	SPLASHSCREEN_PROGRESS
2991.58Schristos
3001.58Schristos# Kernel root file system and dump configuration.
3011.58Schristosconfig		netbsd	root on ? type ?
3021.58Schristos#config		netbsd	root on sd0a type ffs
3031.58Schristos#config		netbsd	root on ? type nfs
3041.58Schristos
3051.58Schristos#
3061.58Schristos# Device configuration
3071.7Scgd#
3081.22Smycroft
3091.58Schristos# Doesn't do anything yet.
3101.58Schristosp64h2apic* at pci? dev? function?	# P64H2 IOxAPIC
3111.58Schristos
3121.58Schristos#apm0	at mainbus0			# Advanced power management
3131.58Schristos
3141.58Schristos# Tuning for power management, see apm(4) for more details.
3151.58Schristos#options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
3161.58Schristos#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
3171.58Schristos#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
3181.58Schristos#options 	APM_POWER_PRINT		# Print stats on the console
3191.58Schristos#options 	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
3201.58Schristos
3211.58Schristos
3221.58Schristos# Basic Bus Support
3231.58Schristos
3241.66Schristos#IPMI support
3251.66Schristosipmi0		at mainbus?
3261.66Schristos
3271.58Schristos# Advanced Configuration and Power Interface
3281.58Schristos
3291.58Schristos# This option can be used to retrieve CPU and APIC information.
3301.58Schristos# that I/O APICs can be used if ACPI is enabled below.
3311.58Schristos#options 	MPBIOS_SCANPCI	# find PCI roots using MPBIOS
3321.58Schristos#options 	ACPI_SCANPCI	# find PCI roots using ACPI
3331.58Schristos
3341.58Schristosacpi0 		at mainbus0
3351.58Schristos
3361.58Schristosoptions 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
3371.58Schristosoptions 	ACPICA_PEDANTIC		# force strict conformance to the Spec.
3381.58Schristos
3391.58Schristos# ACPI devices
3401.58Schristosacpiacad* 	at acpi?		# ACPI AC Adapter
3411.58Schristosacpibat* 	at acpi?		# ACPI Battery
3421.58Schristosacpibut* 	at acpi?		# ACPI Button
3431.146Sjmcneill# The ACPI Embedded Controller is generally configured via the special ECDT.
3441.146Sjmcneill# This is required as parts of the DSDT can reference the EC before the normal
3451.146Sjmcneill# attach phase.
3461.146Sjmcneillacpiec* 	at acpi?		# ACPI Embedded Controller (late binding)
3471.146Sjmcneillacpiecdt* 	at acpi?		# ACPI Embedded Controller (early binding)
3481.58Schristosacpilid* 	at acpi?		# ACPI Lid Switch
3491.58Schristosacpitz* 	at acpi?		# ACPI Thermal Zone
3501.58Schristos
3511.58Schristos# Mainboard devices
3521.86Sxtraemeaiboost* 	at acpi?		# ASUS AI Booster Hardware monitor
3531.162Sjmcneillasus*		at acpi?		# ASUS hotkeys
3541.58Schristosattimer*	at acpi?		# AT Timer
3551.58Schristoscom* 		at acpi?		# Serial communications interface
3561.58Schristosfdc* 		at acpi?		# Floppy disk controller
3571.170Sceggerhpqlb*		at acpi?		# HP Quick Launch Buttons
3581.138Snjolyhpet* 		at acpi?		# High Precision Event Timer
3591.58Schristosjoy*		at acpi?		# Joystick/Game port
3601.58Schristoslpt* 		at acpi?		# Parallel port
3611.58Schristosmpu*		at acpi?		# Roland MPU-401 MIDI UART
3621.58Schristosnpx*		at acpi?		# Math coprocessor
3631.58Schristospckbc*  	at acpi?		# PC keyboard controller
3641.58Schristospcppi*		at acpi?                # AT-style speaker sound
3651.148Sjmcneillthinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
3661.96Sxtraemeug* 		at acpi?		# Abit uGuru Hardware monitor
3671.58Schristoswss* 		at acpi?		# NeoMagic 256AV in wss mode
3681.58Schristosym* 		at acpi?		# Yamaha OPL3-SA[23] audio
3691.58Schristos
3701.58Schristos# Sony Vaio jog dial
3711.58Schristosspic* 		at acpi?		# Sony Programmable I/O Controller
3721.58Schristoswsmouse* 	at spic?
3731.58Schristos
3741.58Schristos# Sony LCD brightness etc.
3751.58Schristossony* 		at acpi?		# Sony Miscellaneous Controller
3761.58Schristos
3771.58Schristos# Toshiba Libretto devices
3781.58Schristosvald* at acpi?
3791.58Schristos
3801.58Schristos# Plug-and-Play BIOS and attached devices
3811.58Schristos
3821.58Schristospnpbios*	at mainbus?
3831.58Schristos
3841.58Schristos# mainboard audio chips
3851.58Schristosess*		at pnpbios? index ?	# ESS AudioDrive
3861.58Schristossb*		at pnpbios? index ?	# NeoMagic 256AV in sb mode
3871.58Schristoswss*		at pnpbios? index ?	# NeoMagic 256AV in wss mode
3881.58Schristosym*		at pnpbios? index ?	# Yamaha OPL3-SA[23] audio
3891.58Schristos
3901.58Schristos# com port
3911.58Schristos# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
3921.58Schristos# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
3931.58Schristos# will be no com0.  A side effect is pcmcia (and other) com? previously
3941.58Schristos# starting at com3 may attach as com1 or com2.
3951.58Schristoscom*		at pnpbios? index ?	# serial ports
3961.58Schristos
3971.58Schristos# parallel port
3981.58Schristos# The above "com*" comments apply, cf. "lpt0" under "ISA parallel
3991.58Schristos# "printer interfaces".
4001.58Schristoslpt*		at pnpbios? index ?	# parallel ports
4011.58Schristos
4021.58Schristospckbc*		at pnpbios? index ?	# PC keyboard/mouse controller
4031.58Schristosfdc*		at pnpbios? index ?	# floppy controller
4041.58Schristosnpx*		at pnpbios? index ?	# Math coprocessor
4051.58Schristos
4061.58Schristos# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
4071.58Schristospciide* 	at pnpbios? index ?
4081.58Schristos
4091.58Schristos# PCI bus support
4101.58Schristospci*	at mainbus? bus ?
4111.58Schristospci*	at pchb? bus ?
4121.58Schristospci*	at ppb? bus ?
4131.58Schristos
4141.58Schristos# Configure PCI using BIOS information
4151.58Schristosoptions 	PCIBIOS			# PCI BIOS support
4161.58Schristosoptions 	PCIBIOSVERBOSE		# PCI BIOS verbose info
4171.58Schristosoptions 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
4181.58Schristosoptions 	PCIBIOS_INTR_GUESS	# see pcibios(4)
4191.58Schristosoptions 	PCIBIOS_LIBRETTO_FIXUP	# this code makes the Toshiba Libretto
4201.58Schristos					# L2/L3 work, but should not be enabled
4211.58Schristos					# on anything else.
4221.58Schristosoptions 	PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20
4231.58Schristos					# work, but should not be enabled
4241.58Schristos					# on anything else.
4251.58Schristos#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
4261.58Schristos
4271.58Schristos# PCI fixups, for both PCIBIOS and ACPI
4281.58Schristosoptions 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
4291.58Schristosoptions 	PCI_BUS_FIXUP		# fixup PCI bus numbering
4301.58Schristosoptions 	PCI_INTR_FIXUP		# fixup PCI interrupt routing
4311.58Schristos
4321.58Schristos# System Controllers
4331.165Sdyoungelansc* at mainbus? bus ?		# AMD Elan SC520 System Controller
4341.58Schristosgpio* 	at elansc?
4351.156Sdyoungelanpar*	at elansc?
4361.156Sdyoungelanpex*	at elansc?
4371.58Schristos
4381.58Schristos# PCI bridges
4391.129Sxtraemeamdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
4401.129Sxtraemehpet* 	at amdpcib?
4411.58Schristosichlpcib* at pci? dev ? function ?	# Intel ICH PCI-ISA w/ watchdog and
4421.58Schristos					# SpeedStep support
4431.146Sjmcneillhpet0 		at ichlpcib?		# High Precision Event Timer
4441.154Sxtraemegcscpcib* at pci? dev ? function ?	# AMD CS5535/CS5536 PCI-ISA w/
4451.154Sxtraemegpio* 	at gcscpcib? 			# timecounter, watchdog and GPIO
4461.58Schristospiixpcib* at pci? dev ? function ?	# Intel PIIX4 PCI-ISA w/ SpeedStep
4471.58Schristosgscpcib* at pci? dev ? function ?	# NS Geode PCI-ISA w/ GPIO support
4481.58Schristosviapcib* at pci? dev ? function ?	# VIA VT8235 PCI-ISA w/ SMBus support
4491.58Schristosiic*	at viapcib?
4501.58Schristospchb*	at pci? dev ? function ?	# PCI-Host bridges
4511.58Schristospceb*	at pci? dev ? function ?	# PCI-EISA bridges
4521.58Schristospcib*	at pci? dev ? function ?	# PCI-ISA bridges
4531.58Schristospcmb*	at pci? dev ? function ?	# PCI-MCA bridges
4541.58Schristosppb*	at pci? dev ? function ?	# PCI-PCI bridges
4551.58Schristos# XXX 'puc's aren't really bridges, but there's no better place for them here
4561.58Schristospuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
4571.58Schristos
4581.58Schristosagp* 	at pchb?
4591.58Schristos
4601.58Schristos
4611.58Schristos# EISA bus support
4621.58Schristoseisa0	at mainbus?
4631.58Schristoseisa0	at pceb?
4641.58Schristos
4651.58Schristos# ISA bus support
4661.129Sxtraemeisa0 	at amdpcib?
4671.154Sxtraemeisa0 	at gcscpcib?
4681.58Schristosisa0	at ichlpcib?
4691.58Schristosisa0	at piixpcib?
4701.58Schristosisa0	at gscpcib?
4711.58Schristosisa0	at viapcib?
4721.58Schristosisa0	at mainbus?
4731.58Schristosisa0	at pceb?
4741.58Schristosisa0	at pcib?
4751.58Schristos
4761.58Schristos# PCMCIA bus support
4771.58Schristospcmcia* at pcic? controller ? socket ?
4781.58Schristospcmcia* at tcic? controller ? socket ?
4791.58Schristos
4801.58Schristos# MCA bus support
4811.58Schristosmca0	at mainbus?
4821.58Schristos
4831.58Schristos# ISA PCMCIA controllers
4841.58Schristospcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
4851.58Schristospcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
4861.58Schristospcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
4871.58Schristostcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
4881.58Schristos
4891.58Schristos# PCI PCMCIA controllers
4901.58Schristospcic0	at pci? dev? function ?
4911.58Schristos
4921.58Schristos# ISA Plug-and-Play bus support
4931.58Schristosisapnp0 at isa?
4941.58Schristos
4951.58Schristos# ISA Plug-and-Play PCMCIA controllers
4961.58Schristospcic*	at isapnp?
4971.58Schristos
4981.58Schristos# CardBus bridge support
4991.58Schristoscbb*		at pci? dev ? function ?
5001.58Schristoscardslot*	at cbb?
5011.58Schristos
5021.58Schristos# CardBus bus support
5031.58Schristoscardbus*	at cardslot?
5041.58Schristospcmcia* 	at cardslot?
5051.58Schristos
5061.58Schristos# Coprocessor Support
5071.58Schristos
5081.58Schristos# Math Coprocessor support
5091.58Schristosnpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
5101.58Schristos
5111.58Schristos
5121.58Schristos# Console Devices
5131.58Schristos
5141.58Schristos# wscons
5151.58Schristospckbc0		at isa?			# pc keyboard controller
5161.58Schristospckbd*		at pckbc?		# PC keyboard
5171.58Schristospms*		at pckbc?		# PS/2 mouse for wsmouse
5181.58Schristosoptions 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
5191.58Schristosoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
5201.186Sjmcneilloptions 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
5211.58Schristosvga0		at isa?
5221.58Schristosvga*		at pci? dev ? function ?
5231.58Schristospcdisplay0	at isa?			# CGA, MDA, EGA, HGA
5241.58Schristosmachfb* 	at pci? dev ? function ? # ATI Mach64 framebuffer driver
5251.192Sjmcneillgenfb*		at pci? dev ? function ? # generic linear framebuffer driver
5261.58Schristoswsdisplay*	at vga? console ?
5271.58Schristoswsdisplay*	at pcdisplay? console ?
5281.58Schristoswsdisplay* 	at machfb? console ?
5291.192Sjmcneillwsdisplay*	at wsemuldisplaydev?
5301.58Schristoswskbd*		at pckbd? console ?
5311.58Schristoswsmouse*	at pms? mux 0
5321.58Schristos
5331.87Sxtraeme# VIA Unichrome framebuffer console
5341.158Sjmcneillunichromefb*	at pci? dev ? function ?
5351.158Sjmcneillwsdisplay*	at unichromefb?
5361.158Sjmcneill
5371.158Sjmcneill# XBOX framebuffer console
5381.158Sjmcneillxboxfb0		at pci? dev ? function ?
5391.158Sjmcneillwsdisplay*	at xboxfb? console ?
5401.87Sxtraeme
5411.93Sdillo# DRI driver
5421.93Sdilloi915drm*	at vga?		# Intel i915, i945 DRM driver
5431.93Sdillomach64drm*	at vga?		# mach64 (3D Rage Pro, Rage) DRM driver
5441.93Sdillomgadrm*		at vga?		# Matrox G[24]00, G[45]50 DRM driver
5451.93Sdillor128drm*	at vga?		# ATI Rage 128 DRM driver
5461.93Sdilloradeondrm*	at vga?		# ATI Radeon DRM driver
5471.93Sdillosavagedrm*	at vga?		# S3 Savage DRM driver
5481.93Sdillosisdrm*		at vga?		# SiS DRM driver
5491.93Sdillotdfxdrm*	at vga?		# 3dfx (voodoo) DRM driver
5501.93Sdillo
5511.58Schristosattimer0	at isa?
5521.58Schristospcppi0		at isa?
5531.58Schristossysbeep0	at pcppi?
5541.58Schristos
5551.58Schristos# Serial Devices
5561.58Schristos
5571.58Schristos# PCI serial interfaces
5581.58Schristoscom*	at puc? port ?			# 16x50s on "universal" comm boards
5591.58Schristoscy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
5601.58Schristoscz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
5611.58Schristos
5621.58Schristos# ISA Plug-and-Play serial interfaces
5631.58Schristoscom*	at isapnp?			# Modems and serial boards
5641.58Schristos
5651.58Schristos# PCMCIA serial interfaces
5661.58Schristoscom*	at pcmcia? function ?		# Modems and serial cards
5671.58Schristos
5681.58Schristospcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
5691.58Schristoscom*	at pcmcom? slave ?		# ...and the slave devices
5701.58Schristos
5711.58Schristos# CardBus serial interfaces
5721.58Schristoscom*	at cardbus? function ?	# Modems and serial cards
5731.58Schristos
5741.58Schristos# ISA serial interfaces
5751.58Schristos#options 	COM_HAYESP		# adds Hayes ESP serial board support
5761.58Schristoscom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
5771.58Schristoscom1	at isa? port 0x2f8 irq 3
5781.58Schristoscom2	at isa? port 0x3e8 irq 5
5791.58Schristoscom3	at isa? port 0x2e8 irq 9
5801.58Schristosast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
5811.58Schristoscom*	at ast? slave ?
5821.58Schristosboca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
5831.58Schristosboca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
5841.58Schristosboca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
5851.58Schristoscom*	at boca? slave ?
5861.58Schristostcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
5871.58Schristoscom*	at tcom? slave ?
5881.58Schristosrtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
5891.58Schristoscom*	at rtfps? slave ?
5901.58Schristoscy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
5911.58Schristosaddcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
5921.58Schristoscom*	at addcom? slave ?
5931.58Schristosmoxa0	at isa?	port 0x100 irq 5	# MOXA C168H serial card (experimental)
5941.58Schristoscom*	at moxa? slave ?
5951.58Schristosioat*	at isa? port 0x220 irq 5	# BOCA IOAT66 6-port serial card
5961.58Schristoscom*	at ioat? slave ?
5971.58Schristos
5981.58Schristos# MCA serial interfaces
5991.58Schristoscom*	at mca? slot ?			# 16x50s on comm boards
6001.58Schristos
6011.58Schristos# Parallel Printer Interfaces
6021.58Schristos
6031.58Schristos# PCI parallel printer interfaces
6041.58Schristoslpt*	at puc? port ?			# || ports on "universal" comm boards
6051.58Schristos
6061.58Schristos# ISA parallel printer interfaces
6071.58Schristoslpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
6081.58Schristoslpt1	at isa? port 0x278
6091.58Schristoslpt2	at isa? port 0x3bc
6101.58Schristos
6111.58Schristos# Hardware monitors
6121.58Schristos
6131.167Sceggeramdtemp* at pci? dev ? function ?	# AMD CPU Temperature sensors
6141.167Scegger
6151.58Schristos# AMD 768 and 8111 power/ACPI controllers
6161.58Schristosamdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
6171.58Schristosiic*	at amdpm?			# sensors below are on this bus
6181.110Skiyohara
6191.130Sxtraeme# Intel Core's on-die Thermal sensor
6201.131Sxtraemeoptions 	INTEL_CORETEMP
6211.130Sxtraeme
6221.115Skiyohara# Intel ICH SMBus controller
6231.115Skiyoharaichsmb*	at pci? dev ? function ?
6241.115Skiyoharaiic*	at ichsmb?
6251.115Skiyohara
6261.110Skiyohara# NVIDIA nForce2/3/4 SMBus controller
6271.110Skiyoharanfsmbc*	at pci? dev ? function ?
6281.110Skiyoharanfsmb*	at nfsmbc?
6291.110Skiyoharaiic*	at nfsmb?
6301.110Skiyohara
6311.111Skiyohara# Intel PIIX4 power management controllers
6321.111Skiyoharapiixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
6331.111Skiyoharaiic*	at piixpm?			# SMBus on PIIX4
6341.111Skiyohara
6351.182Spgoyette# dbCool thermal monitor and fan controller
6361.182Spgoyettedbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
6371.182Spgoyettedbcool* at iic? addr 0x2D		# Tyan S2881
6381.182Spgoyettedbcool* at iic? addr 0x2E		# Tyan S2882-D
6391.58Schristos
6401.183Spgoyette# LM7[89] and compatible hardware monitors
6411.183Spgoyettelm0	at iic?	addr 0x2e
6421.183Spgoyette
6431.158Sjmcneillpic16lc*	at iic? addr 0x10	# XBOX PIC16LC
6441.158Sjmcneillxbseeprom*	at iic? addr 0x54	# XBOX serial EEPROM
6451.158Sjmcneill
6461.122Sxtraeme# IBM Thinkpad Active Protection System
6471.122Sxtraemeaps0 	at isa? port 0x1600
6481.122Sxtraeme
6491.163Sxtraeme# Fintek Super I/O with hardware monitor
6501.163Sxtraemefinsio0 	at isa? port 0x4e
6511.163Sxtraeme
6521.151Sxtraeme# iTE IT87xxF Super I/O with watchdog and sensors support
6531.140Sxtraemeitesio0 	at isa? port 0x2e
6541.58Schristos
6551.58Schristos# LM7[89] and compatible hardware monitors
6561.58Schristoslm0	at isa?	port 0x290		# other common: 0x280, 0x310
6571.58Schristos
6581.102Sblymn# SMSC LPC47B397 hardware monitor functions
6591.102Sblymnsmsc0	at isa? port 0x02e
6601.102Sblymn
6611.58Schristos# PC87366 hardware monitor
6621.58Schristosnsclpcsio*	at isa?
6631.58Schristosgpio*		at nsclpcsio?
6641.58Schristos
6651.94Sxtraeme# Abit uGuru Hardware system monitor
6661.94Sxtraemeug0    at isa? port 0xe0
6671.94Sxtraeme
6681.77Sxtraeme# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer
6691.77Sxtraemeviaenv* 	at pci? dev ? function ?
6701.58Schristos
6711.198Spgoyette# Serial Presence Detect capable memory modules and optional temp sensors
6721.116Stnnspdmem*	at iic? addr 0x50
6731.198Spgoyettesdtemp*	at iic? addr 0x18
6741.58Schristos
6751.58Schristos# I2O devices
6761.58Schristosiop*	at pci? dev ? function ?	# I/O processor
6771.58Schristosiopsp*	at iop? tid ?			# SCSI/FC-AL ports
6781.58Schristosld*	at iop? tid ?			# block devices
6791.58Schristosdpti*	at iop? tid 0			# DPT/Adaptec control interface
6801.58Schristos
6811.58Schristos# GPIO devices
6821.58Schristosgpio*	at gscpcib?
6831.203Smbalmergpio*	at gpiosim?
6841.58Schristos
6851.58Schristos# 1-Wire support
6861.203Smbalmergpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
6871.58Schristosonewire*	at gpioow?
6881.58Schristos
6891.58Schristos# 1-Wire devices
6901.58Schristosowtemp* 	at onewire?			# Temperature sensors
6911.58Schristos
6921.58Schristos# SCSI Controllers and Devices
6931.58Schristos
6941.58Schristos# PCI SCSI controllers
6951.58Schristosadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
6961.58Schristosadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
6971.58Schristosahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
6981.58Schristosahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
6991.58Schristosbha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
7001.58Schristosdpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
7011.58Schristosiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
7021.58Schristosisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
7031.75Sbouyermfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
7041.58Schristosmly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
7051.58Schristosmpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
7061.58Schristosnjs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
7071.58Schristospcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
7081.58Schristossiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
7091.58Schristosesiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
7101.58Schristosoptions 	SIOP_SYMLED		# drive the act. LED in software
7111.58Schristostrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
7121.58Schristos
7131.58Schristos# EISA SCSI controllers
7141.58Schristosahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
7151.58Schristosahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
7161.58Schristosbha*	at eisa? slot ?			# BusLogic 7xx SCSI
7171.58Schristosdpt*	at eisa? slot ?			# DPT EATA SCSI
7181.58Schristosuha*	at eisa? slot ?			# UltraStor 24f SCSI
7191.58Schristos
7201.58Schristos# PCMCIA SCSI controllers
7211.58Schristosaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
7221.58Schristosesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
7231.164Stsutsuinca*	at pcmcia? function ?		# NCR53C400 SCSI
7241.58Schristosspc* 	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
7251.58Schristos
7261.58Schristos# ISA Plug-and-Play SCSI controllers
7271.58Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
7281.58Schristosaic*	at isapnp?			# Adaptec AHA-1520B
7291.58Schristos
7301.58Schristos# ISA SCSI controllers
7311.58Schristosadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02] SCSI
7321.58Schristosaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
7331.58Schristosaha1	at isa? port 0x334 irq ? drq ?
7341.58Schristosahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
7351.58Schristosaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
7361.58Schristosbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
7371.58Schristosbha1	at isa? port 0x334 irq ? drq ?
7381.58Schristos# The "nca" and "dpt" probes might give false hits or hang your machine.
7391.58Schristosdpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
7401.166Stsutsuiesp0	at isa? port 0x230 irq ?	# Emulex ESP406 and Qlogic FAS408 SCSI
7411.58Schristosnca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
7421.58Schristosnca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
7431.58Schristossea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
7441.58Schristosuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
7451.58Schristosuha1	at isa? port 0x340 irq ? drq ?
7461.58Schristoswds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
7471.58Schristoswds1	at isa? port 0x358 irq 11 drq 5
7481.58Schristos
7491.58Schristos# CardBus SCSI cards
7501.58Schristosadv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
7511.58Schristosahc*	at cardbus? function ?	# Adaptec ADP-1480
7521.58Schristosnjs*	at cardbus? function ?	# Workbit NinjaSCSI-32
7531.58Schristos
7541.58Schristos# MCA SCSI cards
7551.58Schristosaha*	at mca? slot ?			# Adaptec AHA-1640
7561.188Stsutsuiesp*	at mca? slot ?			# NCR 53C90 SCSI Adapter
7571.58Schristos
7581.58Schristos# SCSI bus support
7591.58Schristosscsibus* at scsi?
7601.58Schristos
7611.58Schristos# SCSI devices
7621.58Schristossd*	at scsibus? target ? lun ?	# SCSI disk drives
7631.58Schristosst*	at scsibus? target ? lun ?	# SCSI tape drives
7641.58Schristoscd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
7651.58Schristosch*	at scsibus? target ? lun ?	# SCSI autochangers
7661.58Schristosses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
7671.58Schristosss*	at scsibus? target ? lun ?	# SCSI scanners
7681.58Schristosuk*	at scsibus? target ? lun ?	# SCSI unknown
7691.58Schristos
7701.119Sdyoung# SCSI NIC
7711.119Sdyoungse* at scsibus? target ? lun ?
7721.58Schristos
7731.58Schristos# RAID controllers and devices
7741.58Schristosaac*	at pci? dev ? function ?	# Adaptec AAC family
7751.58Schristosamr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
7761.145Sxtraemearcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
7771.58Schristoscac*	at eisa? slot ?			# Compaq EISA array controllers
7781.58Schristoscac*	at pci? dev ? function ?	# Compaq PCI array controllers
7791.58Schristosciss*	at pci? dev ? function ?	# HP Smart Array controllers
7801.58Schristosicp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
7811.58Schristosmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
7821.58Schristosmlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
7831.58Schristostwa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
7841.58Schristostwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
7851.58Schristos
7861.58Schristosld*	at aac? unit ?			# logical disk devices
7871.58Schristosld*	at amr? unit ?
7881.58Schristosld*	at cac? unit ?
7891.58Schristosld*	at icp? unit ?
7901.58Schristosld*	at twa? unit ?
7911.58Schristosld*	at twe? unit ?
7921.58Schristosld*	at mlx? unit ?
7931.58Schristos
7941.58Schristosicpsp*	at icp? unit ?			# SCSI pass-through
7951.58Schristos
7961.58Schristos# IDE and related devices
7971.58Schristos# PCI IDE controllers - see pciide(4) for supported hardware.
7981.58Schristos# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
7991.58Schristos# how to set up DMA modes for this chip. This may work, or may cause
8001.58Schristos# a machine hang with some controllers.
8011.58Schristospciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
8021.58Schristosacardide*	at pci? dev ? function ?	# Acard IDE controllers
8031.58Schristosaceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
8041.78Shubertfahcisata* 	at pci? dev ? function ?	# AHCI SATA controllers
8051.58Schristosartsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
8061.58Schristoscmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
8071.58Schristoscypide* 	at pci? dev ? function ?	# Cypress IDE controllers
8081.106Sxtraemegcscide* 	at pci? dev ? function ? 	# AMD CS5535 Companion IDE controllers
8091.58Schristosgeodeide* 	at pci? dev ? function ?	# AMD Geode IDE controllers
8101.58Schristoshptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
8111.58Schristositeide* 	at pci? dev ? function ?	# IT Express IDE controllers
8121.58Schristosixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
8131.127Sxtraemejmide* 		at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
8141.128Sdogcowahcisata* 	at jmide?
8151.202Skiyoharamvsata*		at pci? dev ? function ?	# Marvell Hercules-I/II
8161.58Schristosoptiide* 	at pci? dev ? function ?	# Opti IDE controllers
8171.58Schristospiixide* 	at pci? dev ? function ?	# Intel IDE controllers
8181.58Schristospdcide* 	at pci? dev ? function ?	# Promise IDE controllers
8191.58Schristospdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
8201.58Schristosrccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
8211.58Schristossatalink*	at pci? dev ? function ?	# SiI SATALink controllers
8221.172Sjnemethsiisata*	at pci? dev ? function ?	# SiI SteelVine controllers
8231.58Schristossiside* 	at pci? dev ? function ?	# SiS IDE controllers
8241.58Schristosslide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
8251.58Schristossvwsata* 	at pci? dev ? function ?	# ServerWorks SATA controllers
8261.58Schristosstpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
8271.58Schristosviaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
8281.58Schristos
8291.58Schristos# ISA Plug-and-Play IDE controllers
8301.58Schristoswdc*	at isapnp?
8311.58Schristos
8321.58Schristos# PCMCIA IDE controllers
8331.58Schristoswdc*	at pcmcia? function ?
8341.58Schristos
8351.60Sitohy# CardBus IDE controllers
8361.64Sitohynjata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
8371.200Skiyoharasiisata* at cardbus? function ?			# SiI SteelVine controllers
8381.60Sitohy
8391.58Schristos# ISA ST506, ESDI, and IDE controllers
8401.58Schristos# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
8411.58Schristos# fall back to 16bits I/O if 32bits I/O are not functional).
8421.58Schristos# Some controllers pass the initial 32bit test, but will fail later.
8431.58Schristoswdc0	at isa? port 0x1f0 irq 14 flags 0x00
8441.58Schristoswdc1	at isa? port 0x170 irq 15 flags 0x00
8451.58Schristos
8461.58Schristos# ATA (IDE) bus support
8471.58Schristosatabus* at ata?
8481.95Sdyoungoptions	ATADEBUG
8491.58Schristos
8501.58Schristos# IDE drives
8511.58Schristos# Flags are used only with controllers that support DMA operations
8521.58Schristos# and mode settings (e.g. some pciide controllers)
8531.58Schristos# The lowest order four bits (rightmost digit) of the flags define the PIO
8541.58Schristos# mode to use, the next set of four bits the DMA mode and the third set the
8551.58Schristos# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
8561.58Schristos# to use, and the last bit must be 1 for this setting to be used.
8571.58Schristos# For DMA and UDMA, 0xf (1111) means 'disable'.
8581.58Schristos# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
8591.58Schristos# (0xc=1100, 0xa=1010, 0xf=1111)
8601.58Schristos# 0x0000 means "use whatever the drive claims to support".
8611.58Schristoswd*	at atabus? drive ? flags 0x0000
8621.58Schristos
8631.58Schristos# ATA RAID configuration support, as found on some Promise controllers.
8641.58Schristospseudo-device	ataraid
8651.58Schristosld*	at ataraid? vendtype ? unit ?
8661.58Schristos
8671.58Schristos# ATAPI bus support
8681.58Schristosatapibus* at atapi?
8691.58Schristos
8701.58Schristos# ATAPI devices
8711.58Schristos# flags have the same meaning as for IDE drives.
8721.58Schristoscd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
8731.58Schristossd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
8741.58Schristosst*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
8751.58Schristosuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
8761.58Schristos
8771.58Schristos
8781.58Schristos# Miscellaneous mass storage devices
8791.58Schristos
8801.58Schristos# ISA floppy
8811.58Schristosfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
8821.58Schristos#fdc1	at isa? port 0x370 irq ? drq ?
8831.58Schristosfd*	at fdc? drive ?			# the drives themselves
8841.58Schristos# some machines need you to do this instead of fd*
8851.58Schristosfd0	at fdc0 drive 0
8861.58Schristos
8871.58Schristos# ISA CD-ROM devices
8881.58Schristosmcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
8891.58Schristos
8901.58Schristos# ISA tape devices
8911.58Schristos# note: the wt driver conflicts unpleasantly with SMC boards at the
8921.58Schristos# same I/O address. The probe reprograms their EEPROMs. Don't
8931.58Schristos# uncomment it unless you are actually using it.
8941.58Schristoswt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
8951.58Schristos
8961.58Schristos# MCA ESDI devices
8971.58Schristosedc*	at mca? slot ?			# IBM ESDI Disk Controllers
8981.58Schristosed*	at edc?
8991.58Schristos
9001.58Schristos
9011.58Schristos# Network Interfaces
9021.58Schristos
9031.58Schristos# PCI network interfaces
9041.189Sceggerage*	at pci? dev ? function ?	# Attansic/Atheros L1 gigabit Ethernet
9051.58Schristosan*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
9061.196Sceggerale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
9071.58Schristosath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
9081.58Schristosatw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
9091.58Schristosbce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
9101.58Schristosbge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
9111.76Sbouyerbnx* 	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
9121.191Sceggerbwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
9131.58Schristosdge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
9141.58Schristosen*	at pci? dev ? function ?	# ENI/Adaptec ATM
9151.58Schristosep*	at pci? dev ? function ?	# 3Com 3c59x
9161.58Schristosepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
9171.58Schristosesh*	at pci? dev ? function ?	# Essential HIPPI card
9181.58Schristosex*	at pci? dev ? function ?	# 3Com 90x[BC]
9191.58Schristosfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
9201.58Schristosfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
9211.58Schristosgsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
9221.58Schristoshme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
9231.58Schristosipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
9241.58Schristosiwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
9251.178Soberiwn*    at pci? dev ? function ?        # Intel PRO/Wireless 4965AGN
9261.58Schristosle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
9271.161Scubelii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
9281.58Schristoslmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
9291.61Srizmskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
9301.61Srizmsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
9311.58Schristosmtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
9321.58Schristos#ndis* 	at pci? dev ? function ?	# Experimental - NDIS Network Driver
9331.58Schristosne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
9341.58Schristosnfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
9351.58Schristosntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
9361.58Schristospcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
9371.58Schristosral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
9381.58Schristosre*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
9391.58Schristosrtk*	at pci? dev ? function ?	# Realtek 8129/8139
9401.78Shubertfrtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
9411.58Schristossf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
9421.58Schristossip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
9431.58Schristosskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
9441.58Schristossk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
9451.58Schristosste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
9461.58Schristosstge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
9471.58Schristosti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
9481.58Schristostl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
9491.58Schristostlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
9501.58Schristostxp*	at pci? dev ? function ?	# 3com 3cr990
9511.58Schristosvge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
9521.58Schristosvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
9531.58Schristoswi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
9541.58Schristoswm*	at pci? dev ? function ?	# Intel 8254x gigabit
9551.58Schristoswpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
9561.58Schristosxge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
9571.58Schristos
9581.58Schristos# EISA network interfaces
9591.58Schristosep*	at eisa? slot ?			# 3Com 3c579 Ethernet
9601.58Schristosfea*	at eisa? slot ?			# DEC DEFEA FDDI
9611.58Schristostlp*	at eisa? slot ?			# DEC DE-425 Ethernet
9621.58Schristos
9631.58Schristos# ISA Plug-and-Play network interfaces
9641.58Schristosan*	at isapnp?			# Aironet 802.11
9651.58Schristosep*	at isapnp?			# 3Com 3c509 Ethernet
9661.58Schristosfmv*	at isapnp?			# Fujitsu FMV-183
9671.58Schristosle*	at isapnp?			# AMD PCnet-ISA Ethernet
9681.58Schristosne*	at isapnp?			# NE2000-compatible Ethernet
9691.58Schristostr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
9701.58Schristos
9711.58Schristos# PCMCIA network interfaces
9721.58Schristosan*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
9731.58Schristosawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
9741.58Schristoscnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
9751.58Schristoscs*	at pcmcia? function ?		# CS89xx Ethernet
9761.58Schristosep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
9771.58Schristosmbe*	at pcmcia? function ?		# MB8696x based Ethernet
9781.58Schristosne*	at pcmcia? function ?		# NE2000-compatible Ethernet
9791.58Schristosray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
9801.58Schristossm*	at pcmcia? function ?		# Megahertz Ethernet
9811.58Schristos# tr at pcmcia has problems with Cardbus bridges
9821.58Schristostr*	at pcmcia? function ?		# TROPIC based Token-Ring
9831.58Schristoswi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
9841.58Schristosxirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
9851.58Schristoscom*	at xirc?
9861.58Schristosxi*	at xirc?
9871.58Schristosmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
9881.58Schristoscom*	at mhzc?
9891.58Schristossm*	at mhzc?
9901.58Schristos
9911.58Schristos# ISA network interfaces
9921.58Schristosate0	at isa? port 0x2a0 irq ?		# AT1700
9931.58Schristoscs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
9941.58Schristosec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
9951.58Schristoseg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
9961.58Schristosel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
9971.58Schristosep*	at isa? port ? irq ?			# 3C509 ethernet cards
9981.58Schristosef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
9991.58Schristosai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
10001.58Schristosfmv0	at isa? port 0x2a0 irq ?		# FMV-181/182
10011.58Schristosix0	at isa? port 0x300 irq 10		# EtherExpress/16
10021.58Schristosiy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
10031.58Schristoslc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
10041.58Schristosdepca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
10051.58Schristosle*	at depca?
10061.58Schristosnele0	at isa? port 0x320 irq 9 drq 7		# NE2100
10071.58Schristosle*	at nele?
10081.58Schristosntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
10091.58Schristosbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
10101.58Schristosle*	at bicc?
10111.58Schristosne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
10121.58Schristosne1	at isa? port 0x300 irq 10
10131.58Schristossm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
10141.58Schristostr0	at isa? port 0xa20 iomem 0xd8000 irq ?	# IBM TROPIC based Token-Ring
10151.58Schristostr1	at isa? port 0xa24 iomem 0xd0000 irq ?	# IBM TROPIC based Token-Ring
10161.58Schristostr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
10171.58Schristoswe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
10181.58Schristoswe1	at isa? port 0x300 iomem 0xcc000 irq 10
10191.58Schristos
10201.58Schristos# CardBus network cards
10211.58Schristosath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
10221.58Schristosatw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
10231.58Schristosex*	at cardbus? function ?	# 3Com 3C575TX
10241.58Schristosfxp*	at cardbus? function ?	# Intel i8255x
10251.124Sjoergre*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
10261.58Schristosrtk*	at cardbus? function ?	# Realtek 8129/8139
10271.58Schristosral*	at cardbus? function ?	# Ralink Technology
10281.58Schristosrtw*	at cardbus? function ?	# Realtek 8180L (802.11)
10291.58Schristostlp*	at cardbus? function ?	# DECchip 21143
10301.58Schristos
10311.58Schristos# MCA network cards
10321.58Schristoselmc*	at mca? slot ?			# 3Com EtherLink/MC (3c523)
10331.58Schristosep*	at mca? slot ?			# 3Com EtherLink III (3c529)
10341.58Schristoswe*	at mca? slot ?			# WD/SMC Ethernet
10351.58Schristosate*	at mca? slot ?			# Allied Telesis AT1720
10361.58Schristosne*	at mca? slot ?			# Novell NE/2 and clones
10371.58Schristostr*	at mca? slot ?			# IBM Token Ring adapter
10381.58Schristostra*	at mca? slot ?			# Tiara LANCard/E and clones
10391.58Schristosle*	at mca? slot ?			# SKNET Personal/MC2+
10401.58Schristos
10411.58Schristos# MII/PHY support
10421.189Sceggeratphy*  at mii? phy ?			# Attansic F1 10/100/1000 PHYs
10431.58Schristosacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
10441.58Schristosamhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
10451.58Schristosbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
10461.58Schristosbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
10471.58Schristosciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
10481.58Schristosdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
10491.58Schristosexphy*	at mii? phy ?			# 3Com internal PHYs
10501.58Schristosgentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
10511.58Schristosglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
10521.58Schristosgphyter* at mii? phy ?			# NS83861 Gig-E PHY
10531.58Schristosicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
10541.58Schristosigphy*	at mii? phy ?			# Intel IGP01E1000
10551.68Sbouyerikphy*	at mii? phy ?			# Intel 82563 PHYs
10561.58Schristosinphy*	at mii? phy ?			# Intel 82555 PHYs
10571.58Schristosiophy*	at mii? phy ?			# Intel 82553 PHYs
10581.58Schristoslxtphy* at mii? phy ?			# Level One LXT-970 PHYs
10591.58Schristosmakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
10601.58Schristosnsphy*	at mii? phy ?			# NS83840 PHYs
10611.58Schristosnsphyter* at mii? phy ? 		# NS83843 PHYs
10621.58Schristospnaphy* at mii? phy ?			# generic HomePNA PHYs
10631.58Schristosqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
10641.58Schristosrgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
10651.58Schristosrlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
10661.58Schristossqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
10671.58Schristostlphy*	at mii? phy ?			# ThunderLAN PHYs
10681.58Schristostqphy*	at mii? phy ?			# TDK Semiconductor PHYs
10691.58Schristosukphy*	at mii? phy ?			# generic unknown PHYs
10701.58Schristosurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
10711.58Schristos
10721.58Schristos
10731.58Schristos# USB Controller and Devices
10741.58Schristos
10751.58Schristos# PCI USB controllers
10761.58Schristosehci*	at pci?	dev ? function ?	# Enhanced Host Controller
10771.109Sjmcneillgcscehci* at pci? dev ? function ?	# Enhanced Host Controller (Geode CSC)
10781.58Schristosohci*	at pci?	dev ? function ?	# Open Host Controller
10791.58Schristosuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
10801.58Schristos
10811.58Schristos# CardBus USB controllers
10821.58Schristosehci*	at cardbus? function ?	# Enhanced Host Controller
10831.58Schristosohci*	at cardbus? function ?	# Open Host Controller
10841.58Schristosuhci*	at cardbus? function ?	# Universal Host Controller (Intel)
10851.58Schristos
10861.58Schristos# ISA USB controllers
10871.58Schristosslhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
10881.58Schristos
10891.118Skiyohara# PCMCIA USB controllers
10901.118Skiyoharaslhci*	at pcmcia? function ?		# ScanLogic SL811HS
10911.118Skiyohara
10921.58Schristos# USB bus support
10931.58Schristosusb*	at ehci?
10941.109Sjmcneillusb*	at gcscehci?
10951.58Schristosusb*	at ohci?
10961.118Skiyoharausb*	at slhci?
10971.58Schristosusb*	at uhci?
10981.58Schristos
10991.58Schristos# USB Hubs
11001.58Schristosuhub*	at usb?
11011.88Sdrochneruhub*	at uhub? port ?
11021.58Schristos
11031.58Schristos# USB HID device
11041.58Schristosuhidev*	at uhub? port ? configuration ? interface ?
11051.58Schristos
11061.58Schristos# USB Mice
11071.58Schristosums*	at uhidev? reportid ?
11081.58Schristoswsmouse* at ums? mux 0
11091.58Schristos
11101.58Schristos# USB eGalax touch-panel
11111.58Schristosuep*	at uhub? port ?
11121.58Schristoswsmouse* at uep? mux 0
11131.58Schristos
11141.58Schristos# USB Keyboards
11151.58Schristosukbd*	at uhidev? reportid ?
11161.58Schristoswskbd*	at ukbd? console ? mux 1
11171.58Schristos
11181.58Schristos# USB serial adapter
11191.58Schristosucycom*	at uhidev? reportid ?
11201.58Schristos
11211.58Schristos# USB Generic HID devices
11221.58Schristosuhid*	at uhidev? reportid ?
11231.58Schristos
11241.58Schristos# USB Printer
11251.58Schristosulpt*	at uhub? port ? configuration ? interface ?
11261.58Schristos
11271.58Schristos# USB Modem
11281.58Schristosumodem*	at uhub? port ? configuration ?
11291.58Schristosucom*	at umodem?
11301.58Schristos
11311.157Sichiro# Huawei E220 3G/HSDPA modem
11321.157Sichirouhmodem* at uhub? port ? configuration ? interface ?
11331.157Sichiroucom*	at uhmodem? portno ?
11341.157Sichiro
11351.58Schristos# USB Mass Storage
11361.58Schristosumass*	at uhub? port ? configuration ? interface ?
11371.58Schristoswd*	at umass?
11381.58Schristos
11391.58Schristos# USB audio
11401.58Schristosuaudio*	at uhub? port ? configuration ?
11411.58Schristos
11421.58Schristos# USB MIDI
11431.58Schristosumidi* at uhub? port ? configuration ?
11441.58Schristos
11451.58Schristos# USB IrDA
11461.58Schristos# USB-IrDA bridge spec
11471.58Schristosuirda* at uhub? port ? configuration ? interface ?
11481.58Schristosirframe* at uirda?
11491.58Schristos
11501.58Schristos# SigmaTel STIr4200 USB/IrDA Bridge
11511.58Schristosustir* at uhub? port ?
11521.58Schristosirframe* at ustir?
11531.58Schristos
11541.58Schristos# USB Ethernet adapters
11551.58Schristosaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
11561.58Schristosaxe*	at uhub? port ?		# ASIX AX88172 based adapters
11571.58Schristoscdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
11581.58Schristoscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
11591.58Schristoskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
11601.58Schristosudav*	at uhub? port ?		# Davicom DM9601 based adapters
11611.58Schristosurl*	at uhub? port ?		# Realtek RTL8150L based adapters
11621.58Schristos
11631.58Schristos# USB 802.11 adapters
11641.58Schristosatu*	at uhub? port ?		# Atmel AT76C50XX based adapters
11651.58Schristosral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
11661.70Sjoergrum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
11671.103Skiyoharazyd*	at uhub? port ?		# Zydas ZD1211
11681.58Schristos
11691.58Schristos# Prolific PL2301/PL2302 host-to-host adapter
11701.58Schristosupl*	at uhub? port ?
11711.58Schristos
11721.58Schristos# Serial adapters
11731.58Schristosubsa*	at uhub? port ?		# Belkin serial adapter
11741.58Schristosucom*	at ubsa? portno ?
11751.58Schristos
11761.120Sxtraemeuchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
11771.120Sxtraemeucom*   at uchcom? portno ?
11781.120Sxtraeme
11791.58Schristosuftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
11801.58Schristosucom*	at uftdi? portno ?
11811.58Schristos
11821.58Schristosuipaq*	at uhub? port ?		# iPAQ PDAs
11831.58Schristosucom*	at uipaq? portno ?
11841.58Schristos
11851.58Schristosumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
11861.58Schristosucom*	at umct? portno ?
11871.58Schristos
11881.58Schristosuplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
11891.58Schristosucom*	at uplcom? portno ?
11901.58Schristos
11911.99Sdogcowuslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
11921.99Sdogcowucom*	at uslsa? portno ?
11931.99Sdogcow
11941.58Schristosuvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
11951.58Schristosucom*	at uvscom? portno ?
11961.58Schristos
11971.173Schristos# RIM BlackBerry
11981.173Schristosuberry*	at uhub? port ?
11991.173Schristos
12001.58Schristos# Diamond Multimedia Rio 500
12011.58Schristosurio*	at uhub? port ?
12021.58Schristos
12031.58Schristos# USB Handspring Visor
12041.58Schristosuvisor*	at uhub? port ?
12051.58Schristosucom*	at uvisor?
12061.58Schristos
12071.58Schristos# Kyocera AIR-EDGE PHONE
12081.58Schristosukyopon* at uhub? port ?
12091.58Schristosucom*	at ukyopon? portno ?
12101.58Schristos
12111.58Schristos# USB scanners
12121.58Schristosuscanner* at uhub? port ?
12131.58Schristos
12141.58Schristos# USB scanners that use SCSI emulation, e.g., HP5300
12151.58Schristosusscanner* at uhub? port ?
12161.58Schristos
12171.58Schristos# Topfield TF5000PVR range of DVB recorders
12181.58Schristosutoppy*	at uhub? port ?
12191.58Schristos
12201.58Schristos# Y@P firmware loader
12211.58Schristosuyap* at uhub? port ?
12221.58Schristos
12231.58Schristos# D-Link DSB-R100 USB radio
12241.58Schristosudsbr*	at uhub? port ?
12251.58Schristosradio*	at udsbr?
12261.58Schristos
12271.158Sjmcneill# XBOX controller
12281.158Sjmcneillxboxcontroller*	at uhub? port ?
12291.158Sjmcneillwsmouse*	at xboxcontroller? mux 0
12301.158Sjmcneill
12311.58Schristos# USB Generic driver
12321.58Schristosugen*	at uhub? port ?
12331.58Schristos# On ugen bulk endpoints, perform read-ahead and write-behind.
12341.58Schristosoptions	UGEN_BULK_RA_WB
12351.58Schristos
12361.58Schristos
12371.58Schristos# IrDA and Consumer Ir devices
12381.58Schristos
12391.58Schristos# Toshiba Oboe
12401.58Schristosoboe* 	at pci? dev ? function ?
12411.58Schristosirframe* at oboe?
12421.58Schristos
12431.58Schristos
12441.58Schristos# PCI IEEE1394 controllers
12451.58Schristosfwohci*	at pci? dev ? function ?	# IEEE1394 Open Host Controller
12461.58Schristos
12471.58Schristos# CardBus IEEE1394 controllers
12481.58Schristosfwohci*	at cardbus? function ?	# IEEE1394 Open Host Controller
12491.58Schristos
12501.58Schristosieee1394if* at fwohci?
12511.58Schristosfwip*	at ieee1394if?			# IP over IEEE1394
12521.58Schristossbp*	at ieee1394if? euihi ? euilo ?	# SCSI over IEEE1394
12531.58Schristos
12541.58Schristos
12551.197Snonaka# SD/MMC/SDIO Controller and Device support
12561.197Snonaka
12571.197Snonaka# SD/MMC controller
12581.197Snonakasdhc*  at pci?				# SD Host Controller
12591.197Snonakasdmmc* at sdhc?				# SD/MMC bus
12601.197Snonaka
12611.197Snonakald*	at sdmmc?
12621.197Snonaka
12631.197Snonaka
12641.58Schristos# Audio Devices
12651.58Schristos
12661.58Schristos# PCI audio devices
12671.58Schristosauacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
12681.58Schristosauich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
12691.58Schristosauixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
12701.58Schristosautri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
12711.58Schristosauvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
12721.58Schristosazalia*	at pci? dev ? function ?	# High Definition Audio
12731.58Schristosclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
12741.58Schristosclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
12751.58Schristoscmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
12761.58Schristoseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
12771.58Schristosemuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
12781.58Schristosesa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
12791.58Schristosesm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
12801.58Schristoseso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
12811.58Schristosfms*	at pci? dev ? function ?	# Forte Media FM801
12821.187Sjmcneillgcscaudio* at pci? dev ? function ?	# AMD Geode CS5536 Companion Audio
12831.58Schristosneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
12841.58Schristossv*	at pci? dev ? function ?	# S3 SonicVibes
12851.58Schristosyds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
12861.58Schristos
12871.58Schristos# ISA Plug-and-Play audio devices
12881.58Schristosess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
12891.58Schristosguspnp* at isapnp?			# Gravis Ultra Sound PnP audio
12901.58Schristossb*	at isapnp?			# SoundBlaster-compatible audio
12911.58Schristoswss*	at isapnp?			# Windows Sound System
12921.58Schristosym*	at isapnp?			# Yamaha OPL3-SA[23] audio
12931.58Schristos
12941.58Schristos# ISA audio devices
12951.58Schristos# the "aria" probe might give false hits
12961.58Schristosaria0	at isa? port 0x290 irq 10 		# Aria
12971.58Schristosess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
12981.58Schristosgus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
12991.58Schristospas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
13001.58Schristossb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
13011.58Schristoswss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
13021.58Schristoscms0	at isa? port 0x220			# Creative Music System
13031.58Schristos
13041.58Schristos# OPL[23] FM synthesizers
13051.58Schristosopl0	at isa? port 0x388	# use only if not attached to sound card
13061.58Schristosopl*	at cmpci? flags 1
13071.58Schristosopl*	at eso?
13081.58Schristosopl*	at ess?
13091.58Schristosopl*	at fms?
13101.58Schristosopl*	at sb?
13111.58Schristosopl*	at sv?
13121.58Schristosopl*	at wss?
13131.58Schristosopl*	at yds?
13141.58Schristosopl*	at ym?
13151.58Schristos
13161.58Schristos# Audio support
13171.58Schristosaudio*	at audiobus?
13181.58Schristos
13191.58Schristos# MPU 401 UARTs
13201.58Schristosmpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
13211.58Schristosmpu*	at isapnp?
13221.58Schristosmpu*	at cmpci?
13231.58Schristosmpu*	at eso?
13241.58Schristosmpu*	at fms?
13251.58Schristosmpu*	at sb?
13261.58Schristosmpu*	at yds?
13271.58Schristosmpu*	at ym?
13281.58Schristos
13291.58Schristos# MIDI support
13301.58Schristosmidi*	at midibus?
13311.58Schristosmidi*	at pcppi?		# MIDI interface to the PC speaker
13321.58Schristos
13331.58Schristos# The spkr driver provides a simple tone interface to the built in speaker.
13341.58Schristosspkr0	at pcppi?		# PC speaker
13351.58Schristos
13361.58Schristos
13371.58Schristos# FM-Radio devices
13381.58Schristos# ISA radio devices
13391.58Schristosaz0	at isa? port 0x350      # Aztech/PackardBell FM Radio Card
13401.58Schristosaz1	at isa? port 0x358
13411.58Schristosrt0	at isa? port 0x20c      # AIMS Lab Radiotrack & compatible
13421.58Schristosrt1	at isa? port 0x284
13431.58Schristosrt2	at isa? port 0x30c
13441.58Schristosrt3	at isa? port 0x384
13451.58Schristosrtii0	at isa? port 0x20c      # AIMS Lab Radiotrack II FM Radio Card
13461.58Schristosrtii1	at isa? port 0x30c
13471.58Schristossf2r0	at isa? port 0x384      # SoundForte RadioLink SF16-FMR2 FM Radio Card
13481.58Schristos
13491.58Schristos# PCI radio devices
13501.58Schristosgtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
13511.58Schristos
13521.58Schristos# Radio support
13531.58Schristosradio*	at az?
13541.58Schristosradio*	at gtp?
13551.58Schristosradio*	at rt?
13561.58Schristosradio*	at rtii?
13571.58Schristosradio*	at sf2r?
13581.58Schristos
13591.58Schristos
13601.180Sjmcneill# Video capture devices
13611.180Sjmcneill
13621.180Sjmcneillpseye* at uhub?			# Sony PLAYSTATION(R) Eye webcam
13631.180Sjmcneilluvideo* at uhub?		# USB Video Class capture devices
13641.180Sjmcneillvideo* at videobus?
13651.180Sjmcneill
13661.180Sjmcneill
13671.58Schristos# TV cards
13681.58Schristos
13691.58Schristos# Brooktree 848/849/878/879 based TV cards
13701.58Schristosbktr* at pci? dev ? function ?
13711.58Schristosradio* at bktr?
13721.58Schristos
13731.194Sdyoungisv* at isa? port 0x3e0			# IDEC Supervision/16 image capture
13741.58Schristos
13751.58Schristos# Bluetooth Controller and Device support
13761.58Schristos
13771.58Schristos# Bluetooth PCMCIA Controllers
13781.58Schristosbt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
13791.117Skiyoharabtbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
13801.58Schristos
13811.58Schristos# Bluetooth USB Controllers
13821.88Sdrochnerubt* at uhub? port ?
13831.58Schristos
13841.62Splunky# Bluetooth Device Hub
13851.143Skiyoharabthub* at bcsp?
13861.62Splunkybthub* at bt3c?
13871.117Skiyoharabthub* at btbc?
13881.83Skiyoharabthub* at btuart?
13891.62Splunkybthub* at ubt?
13901.58Schristos
13911.58Schristos# Bluetooth HID support
13921.62Splunkybthidev* at bthub?
13931.58Schristos
13941.58Schristos# Bluetooth Mouse
13951.58Schristosbtms* at bthidev? reportid ?
13961.58Schristoswsmouse* at btms? mux 0
13971.58Schristos
13981.58Schristos# Bluetooth Keyboard
13991.58Schristosbtkbd* at bthidev? reportid ?
14001.58Schristoswskbd* at btkbd? console ? mux 1
14011.58Schristos
14021.58Schristos# Bluetooth Audio support
14031.62Splunkybtsco* at bthub?
14041.58Schristos
14051.58Schristos
14061.58Schristos# Mice
14071.58Schristos
14081.58Schristos# ISA busmice
14091.58Schristoslms0	at isa? port 0x23c irq 5	# Logitech bus mouse
14101.58Schristoslms1	at isa? port 0x238 irq 5
14111.58Schristosmms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
14121.58Schristosmms1	at isa? port 0x238 irq 5
14131.58Schristoswsmouse*	at lms? mux 0
14141.58Schristoswsmouse*	at mms? mux 0
14151.58Schristos
14161.58Schristos
14171.58Schristos# Cryptographic Devices
14181.58Schristos
14191.58Schristos# PCI cryptographic devices
14201.104Sjmcneillglxsb*	at pci? dev ? function ?	# AMD Geode LX Security Block
14211.58Schristoshifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
14221.58Schristosubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
14231.58Schristos
14241.58Schristos
14251.58Schristos# Joysticks
14261.58Schristos
14271.58Schristosjoy*	at pnpbios? index ?		# Game port
14281.58Schristos
14291.58Schristos# ISA Plug-and-Play joysticks
14301.58Schristosjoy*	at isapnp?			# Game ports (usually on audio cards)
14311.58Schristos
14321.58Schristos# PCI joysticks
14331.58Schristosjoy*	at pci?				# Game ports (usually on audio cards)
14341.58Schristosjoy*	at eap?				# See CAVEATS in eap(4) before enabling
14351.58Schristosjoy*	at eso?				# ESS Solo-1 on-board joystick
14361.58Schristos
14371.58Schristos# ISA joysticks. Probe is a little strange; add only if you have one.
14381.58Schristosjoy0	at isa? port 0x201
14391.58Schristos
14401.58Schristos
14411.58Schristos# Miscellaneous Devices
14421.58Schristosgeodegcb*  at pci? dev ? function ?	# Geode GCB area
14431.58Schristosgeodewdog* at geodegcb? 		# AMD Geode SC1100 watchdog timer
14441.58Schristosgeodecntr* at geodegcb? 		# AMD Geode SC1100 high res. counter
14451.58Schristos
14461.58Schristos# Planetconnect Satellite receiver driver.
14471.58Schristossatlink0 at isa? port 0x300 drq 1
14481.58Schristos
14491.58Schristos# Middle Digital, Inc. PCI-Weasel serial console board control
14501.58Schristos# devices (watchdog timer, etc.)
14511.58Schristosweasel* at pci?
14521.58Schristos
14531.58Schristos# Pull in optional local configuration
14541.58Schristos#include	"arch/i386/conf/ALL.local"
14551.58Schristos
14561.58Schristos
14571.58Schristos# Pseudo-Devices
14581.58Schristos
14591.58Schristospseudo-device 	crypto		# /dev/crypto device
14601.58Schristospseudo-device	swcrypto	# software crypto implementation
14611.58Schristos
14621.58Schristos# disk/mass storage pseudo-devices
14631.58Schristospseudo-device	ccd		4	# concatenated/striped disk devices
14641.58Schristospseudo-device	cgd		4	# cryptographic disk devices
14651.58Schristospseudo-device	raid		8	# RAIDframe disk driver
14661.58Schristosoptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
14671.58Schristos# Options to enable various other RAIDframe RAID types.
14681.58Schristosoptions 	RF_INCLUDE_EVENODD=1
14691.58Schristosoptions 	RF_INCLUDE_RAID5_RS=1
14701.58Schristosoptions 	RF_INCLUDE_PARITYLOGGING=1
14711.58Schristosoptions 	RF_INCLUDE_CHAINDECLUSTER=1
14721.58Schristosoptions 	RF_INCLUDE_INTERDECLUSTER=1
14731.58Schristosoptions 	RF_INCLUDE_PARITY_DECLUSTERING=1
14741.58Schristosoptions 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
14751.58Schristospseudo-device	fss		4	# file system snapshot device
14761.58Schristos
14771.58Schristospseudo-device	md		1	# memory disk device (ramdisk)
14781.58Schristospseudo-device	vnd			# disk-like interface to files
14791.58Schristosoptions 	VND_COMPRESSION		# compressed vnd(4)
14801.58Schristos
14811.190Shaadpseudo-device 	dm			# device-mapper disk driver
14821.190Shaad
14831.58Schristos# network pseudo-devices
14841.97Sxtraemepseudo-device	agr			# Link aggregation agr(4)
14851.58Schristospseudo-device	bpfilter		# Berkeley packet filter
14861.58Schristospseudo-device	carp			# Common Address Redundancy Protocol
14871.58Schristospseudo-device	ipfilter		# IP filter (firewall) and NAT
14881.58Schristospseudo-device	loop			# network loopback
14891.58Schristospseudo-device	ppp			# Point-to-Point Protocol
14901.58Schristospseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
14911.58Schristospseudo-device	sl			# Serial Line IP
14921.58Schristospseudo-device	strip			# Starmode Radio IP (Metricom)
14931.58Schristospseudo-device	irframetty		# IrDA frame line discipline
14941.58Schristospseudo-device	tap			# virtual Ethernet
14951.58Schristospseudo-device	tun			# network tunneling over tty
14961.58Schristospseudo-device	gre			# generic L3 over IP tunnel
14971.58Schristospseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
14981.58Schristospseudo-device	faith			# IPv[46] tcp relay translation i/f
14991.58Schristospseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
15001.58Schristospseudo-device	vlan			# IEEE 802.1q encapsulation
15011.58Schristospseudo-device	bridge			# simple inter-network bridging
15021.58Schristosoptions 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
15031.58Schristospseudo-device	pf			# PF packet filter
15041.58Schristospseudo-device	pflog			# PF log if
15051.65Srpaulopseudo-device	kttcp
15061.72Srpaulopseudo-device	etherip			# EtherIP
15071.78Shubertf# srt is EXPERIMENTAL
15081.78Shubertfpseudo-device	srt			# source-address-based routing
15091.58Schristos
15101.58Schristos# miscellaneous pseudo-devices
15111.58Schristospseudo-device	pty			# pseudo-terminals
15121.58Schristospseudo-device	sequencer	1	# MIDI sequencer
15131.58Schristos# rnd works; RND_COM does not on port i386 yet.
15141.58Schristospseudo-device	rnd			# /dev/random and in-kernel generator
15151.58Schristosoptions 	RND_COM			# use "com" randomness as well (BROKEN)
15161.58Schristospseudo-device	clockctl		# user control of clock subsystem
15171.58Schristospseudo-device	ksyms			# /dev/ksyms
15181.143Skiyoharapseudo-device	bcsp			# BlueCore Serial Protocol
15191.83Skiyoharapseudo-device	btuart			# Bluetooth HCI UART (H4)
15201.203Smbalmerpseudo-device	gpiosim		1	# GPIO simulator
15211.58Schristos
15221.58Schristos# a pseudo device needed for Coda	# also needs CODA (above)
15231.58Schristospseudo-device	vcoda		4	# coda minicache <-> venus comm.
15241.58Schristos
15251.58Schristos# a pseudo device needed for SMBFS
15261.58Schristospseudo-device	nsmb			# experimental - SMB requester
15271.58Schristos
15281.58Schristos# wscons pseudo-devices
15291.58Schristospseudo-device	wsmux			# mouse & keyboard multiplexor
15301.58Schristospseudo-device	wsfont
15311.58Schristos
15321.63Sjmmvoptions 	FILEASSOC		# fileassoc(9) - required for Veriexec
15331.58Schristos
15341.58Schristos# Veriexec
15351.58Schristospseudo-device	veriexec
15361.80Sxtraeme
15371.73Sxtraeme# drvctl - needed to show device dictionary via drvctl(8)
15381.73Sxtraemepseudo-device	drvctl
15391.73Sxtraeme
15401.80Sxtraeme# pseudo-device lockstat needed for lockstat(8)
15411.80Sxtraemepseudo-device	lockstat
15421.80Sxtraeme
15431.80Sxtraeme# software watchdog driver - swwdog(4)
15441.81Sxtraemepseudo-device	swwdog
15451.81Sxtraeme
15461.81Sxtraeme# cmos(4) pseudo-device
15471.81Sxtraemepseudo-device	cmos
15481.80Sxtraeme
15491.136Spooka# Pass-to-Userspace Transporter
15501.136Spookapseudo-device	putter
15511.136Spooka
15521.142Spooka# Userspace block/char drivers
15531.142Spookapseudo-device	pud
15541.142Spooka
15551.137Sjmcneill# pseudo audio device driver
15561.137Sjmcneillpseudo-device	pad
15571.137Sjmcneill
15581.58Schristos# Uncomment the fingerprint methods below that are desired. Note that
15591.58Schristos# removing fingerprint methods will have almost no impact on the kernel
15601.58Schristos# code size.
15611.58Schristos#
15621.58Schristosoptions VERIFIED_EXEC_FP_RMD160
15631.58Schristosoptions VERIFIED_EXEC_FP_SHA256
15641.58Schristosoptions VERIFIED_EXEC_FP_SHA384
15651.58Schristosoptions VERIFIED_EXEC_FP_SHA512
15661.58Schristosoptions VERIFIED_EXEC_FP_SHA1
15671.58Schristosoptions VERIFIED_EXEC_FP_MD5
15681.35Scgd
15691.66Schristosoptions PAX_MPROTECT=0			# PaX mprotect(2) restrictions
15701.150Schristosoptions PAX_SEGVGUARD=0			# PaX Segmentation fault guard
15711.150Schristosoptions PAX_ASLR=0			# PaX Address Space Layout Randomization
15721.168Sad
15731.168Sadoptions ATHHAL_DEBUG
15741.168Sadoptions A9PCIC_DEBUG
15751.168Sadoptions AAC_DEBUG
15761.168Sadoptions AAU_DEBUG
15771.168Sadoptions AC97_DEBUG
15781.168Sadoptions AC97_IO_DEBUG
15791.168Sadoptions ACPI_ACAD_DEBUG
15801.168Sadoptions ACPI_APM_DEBUG
15811.168Sadoptions ACPI_BAT_DEBUG
15821.168Sadoptions ACPI_BUT_DEBUG
15831.168Sad#options ACPI_DEBUG
15841.168Sadoptions ACPI_EXTRA_DEBUG
15851.168Sadoptions ACPI_FDC_DEBUG
15861.168Sadoptions ACPI_LID_DEBUG
15871.168Sadoptions ACPI_MADT_DEBUG
15881.168Sad#options ACPI_MUTEX_DEBUG
15891.168Sadoptions ADB_DEBUG
15901.168Sadoptions ADM1030_DEBUG
15911.168Sadoptions ADT7467_DEBUG
15921.168Sadoptions AE_DEBUG
15931.168Sadoptions AGP_DEBUG
15941.168Sadoptions AHADEBUG
15951.168Sadoptions AHBDEBUG
15961.168Sadoptions AHC_DEBUG=1
15971.168Sadoptions AHD_DEBUG
15981.168Sadoptions AHD_DEBUG_OPTS=1
15991.168Sadoptions AH_DEBUG_ALQ
16001.168Sadoptions AIC_DEBUG
16011.168Sadoptions ALTQ_DEBUG
16021.168Sadoptions AMD756_DEBUG
16031.168Sadoptions AMRR_DEBUG
16041.168Sadoptions AN_DEBUG
16051.168Sadoptions APMDEBUG
16061.168Sadoptions APMDEBUG_VALUE=1
16071.168Sadoptions ARCKBD_DEBUG
16081.168Sadoptions ARGO_DEBUG
16091.168Sadoptions ARP_DEBUG
16101.168Sadoptions ASC_DEBUG
16111.168Sadoptions ATAPI_DEBUG_PROBE
16121.168Sadoptions ATA_DEBUG
16131.168Sadoptions ATA_RAID_DEBUG
16141.168Sadoptions ATE_DEBUG
16151.168Sadoptions ATMEL_DEBUG
16161.168Sadoptions ATPPC_DEBUG
16171.168Sadoptions ATW_BBPDEBUG
16181.168Sadoptions ATW_DEBUG
16191.168Sadoptions ATW_SYNDEBUG
16201.168Sadoptions AUACER_DEBUG
16211.168Sadoptions AUCCDEBUG
16221.168Sadoptions AUCONV_DEBUG
16231.168Sadoptions AUDIO_DEBUG
16241.168Sadoptions AUE_DEBUG
16251.168Sadoptions AUICH_DEBUG
16261.168Sadoptions AUICH_MODEM_DEBUG
16271.168Sadoptions AURATECONV_DEBUG
16281.168Sadoptions AUSMBUS_PSC_DEBUG
16291.168Sadoptions AWACS_DEBUG
16301.168Sadoptions AWI_DEBUG
16311.168Sadoptions AXE_DEBUG
16321.168Sadoptions AZALIA_DEBUG
16331.168Sadoptions BAH_DEBUG
16341.168Sadoptions BCACHE_DEBUG
16351.168Sadoptions BDEBUG
16361.168Sadoptions BEDEBUG
16371.168Sadoptions BHADEBUG
16381.168Sadoptions BIOS_MEMORY_DEBUG
16391.168Sadoptions BIT3DEBUG
16401.168Sadoptions BKTR_RADIO_DEBUG
16411.168Sadoptions BLUETOOTH_DEBUG
16421.168Sadoptions BMAC_DEBUG
16431.168Sadoptions BMD_DEBUG
16441.168Sadoptions BOOTP_DEBUG
16451.168Sadoptions BOOTP_DEBUGx
16461.168Sadoptions BOOTXX_DEBUG
16471.168Sadoptions BOOT_DEBUG
16481.168Sadoptions BT463_DEBUG
16491.168Sadoptions BTDEBUG
16501.168Sadoptions BTHSET_DEBUG
16511.168Sadoptions BTLBDEBUG
16521.168Sadoptions BTNMGRDEBUG
16531.168Sadoptions BUS_DMA_DEBUG
16541.168Sadoptions BUS_SPACE_DEBUG
16551.168Sadoptions CACHE_DEBUG
16561.168Sadoptions CARDBUS_DEBUG
16571.168Sadoptions CD18XXDEBUG
16581.168Sadoptions CGSIX_DEBUG
16591.168Sadoptions CHANGER_DEBUG
16601.168Sadoptions CISS_DEBUG
16611.168Sadoptions CKSUMDEBUG
16621.168Sadoptions CLOCKDEBUG
16631.168Sadoptions CLOCK_DEBUG
16641.168Sadoptions CNW_DEBUG
16651.168Sadoptions COMDEBUG
16661.168Sadoptions COMVRIPDEBUG
16671.168Sadoptions COM_DEBUG
16681.168Sadoptions COM_HPCIODEBUG
16691.168Sadoptions CONSDEBUG
16701.168Sadoptions CRYPTO_DEBUG
16711.168Sadoptions CS4280_DEBUG
16721.168Sadoptions CS_DEBUG
16731.168Sadoptions CUE_DEBUG
16741.168Sadoptions CY_DEBUG
16751.168Sadoptions CZ_DEBUG
16761.168Sadoptions DAIC_DEBUG
16771.168Sadoptions DBRI_DEBUG
16781.168Sadoptions DDB_DEBUG
16791.168Sadoptions DEBUGBUG
16801.168Sadoptions DEBUGGER_THREADING
16811.168Sadoptions DEBUGTERM
16821.168Sadoptions DEBUGXXX
16831.168Sadoptions DEBUG_1284
16841.168Sadoptions DEBUG_1543
16851.168Sadoptions DEBUG_A4000
16861.168Sadoptions DEBUG_ALIGN
16871.168Sadoptions DEBUG_ALLOC
16881.168Sadoptions DEBUG_AMIGA_IF_ED
16891.168Sadoptions DEBUG_AOUTM68K
16901.168Sadoptions DEBUG_BEFOREMMU
16911.168Sadoptions DEBUG_BIOSCALL
16921.168Sadoptions DEBUG_CHUNK_DIR
16931.168Sadoptions DEBUG_CLOCK
16941.168Sadoptions DEBUG_COFF
16951.168Sadoptions DEBUG_CP0_ACCESS
16961.168Sadoptions DEBUG_CURSOR
16971.168Sadoptions DEBUG_DARWIN
16981.168Sadoptions DEBUG_DDB
16991.168Sadoptions DEBUG_DR
17001.168Sadoptions DEBUG_EMUL
17011.168Sadoptions DEBUG_ET4000
17021.168Sadoptions DEBUG_EXEC
17031.168Sadoptions DEBUG_EXT2
17041.168Sadoptions DEBUG_FAULT_CORRECTION
17051.168Sadoptions DEBUG_FFB
17061.168Sadoptions DEBUG_FIND_COMPORT
17071.168Sadoptions DEBUG_FIND_PCIC
17081.168Sadoptions DEBUG_FIND_PCIC_I82365SL_ONLY
17091.168Sadoptions DEBUG_FPE
17101.168Sadoptions DEBUG_FREEBSD_ELF
17111.168Sadoptions DEBUG_GPIO
17121.168Sadoptions DEBUG_GPIO2
17131.168Sadoptions DEBUG_HPUX
17141.168Sadoptions DEBUG_IBCS2
17151.168Sadoptions DEBUG_IPR_VJ
17161.168Sadoptions DEBUG_IRIX
17171.168Sadoptions DEBUG_ISAPNP
17181.168Sadoptions DEBUG_ISSIGNAL
17191.168Sadoptions DEBUG_KERNADDR_ACCESS
17201.168Sadoptions DEBUG_KERNEL_START
17211.168Sadoptions DEBUG_KGDB
17221.168Sadoptions DEBUG_LED
17231.168Sadoptions DEBUG_LINUX
17241.168Sadoptions DEBUG_LINUX_FUTEX
17251.168Sadoptions DEBUG_MACH
17261.168Sadoptions DEBUG_MACHFB 
17271.168Sadoptions DEBUG_MACHO
17281.168Sadoptions DEBUG_MACH_MSG
17291.168Sadoptions DEBUG_MACH_RIGHT
17301.168Sadoptions DEBUG_MACH_VM
17311.168Sadoptions DEBUG_MEMLOAD
17321.168Sadoptions DEBUG_MEMORY_LIST
17331.168Sadoptions DEBUG_MEMSIZE
17341.168Sadoptions DEBUG_NEG
17351.168Sadoptions DEBUG_NFS_BOOT_DHCP
17361.168Sadoptions DEBUG_P9100
17371.168Sadoptions DEBUG_PAGE0
17381.168Sadoptions DEBUG_PCI_MACHDEP
17391.168Sadoptions DEBUG_PECOFF
17401.168Sadoptions DEBUG_PGRP
17411.168Sadoptions DEBUG_POOL
17421.168Sadoptions DEBUG_PORTF
17431.168Sadoptions DEBUG_PROM
17441.168Sadoptions DEBUG_PTM
17451.168Sadoptions DEBUG_RAWFS
17461.168Sadoptions DEBUG_RPC
17471.168Sadoptions DEBUG_SNAPPER
17481.168Sadoptions DEBUG_SVR4
17491.168Sadoptions DEBUG_SYNC
17501.168Sadoptions DEBUG_TERM
17511.168Sadoptions DEBUG_UL
17521.168Sadoptions DEBUG_VAL
17531.168Sadoptions DEBUG_WITH_STDIO
17541.168Sadoptions DEVSW_DEBUG
17551.168Sadoptions DEV_DEBUG
17561.168Sadoptions DISKLABEL_DEBUG
17571.168Sadoptions DISK_DEBUG
17581.168Sadoptions DL_DEBUG
17591.168Sadoptions DMAC_DEBUG
17601.168Sadoptions DMA_DEBUG
17611.168Sadoptions DMCDEBUG
17621.168Sadoptions DO_I4B_MAXDEBUG
17631.168Sadoptions DRACORAWKEYDEBUG
17641.168Sadoptions EARLY_DEBUG_EVENT
17651.168Sadoptions EBUS_DEBUG
17661.168Sadoptions EDC_DEBUG
17671.168Sadoptions EDEBUG
17681.168Sadoptions ED_DEBUG
17691.168Sadoptions EFINET_DEBUG
17701.168Sadoptions EGAFONTDEBUG
17711.168Sadoptions EGDEBUG
17721.168Sadoptions EHCI_DEBUG
17731.168Sadoptions EL_DEBUG
17741.168Sadoptions EMAC3_DEBUG
17751.168Sadoptions EMUXKI_DEBUG
17761.168Sadoptions EM_DEBUG
17771.168Sadoptions EN_DEBUG
17781.168Sadoptions EN_DEBUG_RANGE
17791.168Sadoptions EPGPIO_DEBUG
17801.168Sadoptions EPICMEDIADEBUG
17811.168Sadoptions EPPCIC_DEBUG
17821.168Sadoptions ESDEBUG
17831.168Sadoptions ESP_DEBUG
17841.168Sadoptions ESP_SBUS_DEBUG
17851.168Sadoptions ESS_ISA_DEBUG
17861.168Sadoptions ETHER_DEBUG
17871.168Sadoptions EWSKBD_DEBUG
17881.168Sadoptions EXEC_DEBUG
17891.168Sadoptions EXTENT_DEBUG
17901.168Sadoptions EXTREME_DEBUG
17911.168Sadoptions EXTREME_EXTREME_DEBUG
17921.168Sadoptions FBDEBUG
17931.168Sadoptions FDDEBUG
17941.168Sadoptions FD_DEBUG
17951.168Sadoptions FFBDEBUG
17961.168Sadoptions FILECORE_DEBUG
17971.168Sadoptions FILECORE_DEBUG_BR
17981.168Sadoptions FIRESTARDEBUG
17991.168Sadoptions FLASH_DEBUG
18001.168Sadoptions FLP_DEBUG
18011.168Sadoptions FMV_DEBUG
18021.168Sadoptions FOO_DEBUG
18031.168Sadoptions FPU_DEBUG
18041.168Sadoptions GDROMDEBUG
18051.168Sadoptions GEM_DEBUG
18061.168Sadoptions GEM_DEBUG1
18071.168Sadoptions GEODE_DEBUG
18081.168Sadoptions GEOM_DEBUG
18091.168Sadoptions GE_DEBUG
18101.168Sadoptions GMAC_DEBUG
18111.201Sceggeroptions GPIO_DEBUG
18121.168Sadoptions GRE_DEBUG
18131.168Sadoptions GSFB_DEBUG_MONITOR
18141.168Sadoptions GTFDEBUG
18151.168Sadoptions HD64461PCMCIA_DEBUG
18161.168Sadoptions HD64461VIDEO_DEBUG
18171.168Sadoptions HD64465PCMCIA_DEBUG
18181.168Sadoptions HDLCDEBUG
18191.168Sadoptions HIFN_DEBUG
18201.168Sadoptions HMEDEBUG
18211.168Sadoptions HPCAPMDEBUG
18221.168Sadoptions HPC_DEBUG_INTERRUPT_MONITOR
18231.168Sadoptions HPC_DEBUG_LCD
18241.168Sadoptions HP_DEBUG
18251.168Sadoptions HSCXADEBUG
18261.168Sadoptions HSCXBDEBUG
18271.168Sadoptions I2ODEBUG
18281.168Sadoptions I4BISPPPDEBUG
18291.168Sadoptions I4B_CD_DEBUG_PRINT
18301.168Sadoptions I4B_MBUF_DEBUG
18311.168Sadoptions I4B_MBUF_TYPE_DEBUG
18321.168Sadoptions IBCS2_DEBUG
18331.168Sadoptions ICONV_DEBUG
18341.168Sadoptions ICP_DEBUG
18351.168Sadoptions IEDEBUG
18361.168Sadoptions IEEE80211_DEBUG_REFCNT
18371.168Sadoptions IFAREF_DEBUG
18381.168Sadoptions IFMEDIA_DEBUG
18391.168Sadoptions IHA_DEBUG_STATE
18401.168Sadoptions INTRDEBUG
18411.168Sadoptions INTR_DEBUG
18421.168Sadoptions IPAQ_LCD_DEBUG
18431.168Sadoptions IPF_DEBUG
18441.168Sadoptions IPSEC_DEBUG
18451.168Sadoptions IPW_DEBUG
18461.168Sadoptions IP_RCMD_PROXY_DEBUG
18471.168Sadoptions IRFRAMET_DEBUG
18481.168Sadoptions IRFRAME_DEBUG
18491.168Sadoptions IRQ_DEBUG
18501.168Sadoptions ISACDEBUG
18511.168Sadoptions ISADMA_DEBUG
18521.168Sadoptions ISO_DEBUG
18531.168Sadoptions IT8368DEBUG
18541.168Sadoptions ITE8181DEBUG
18551.168Sadoptions ITK_PROBE_DEBUG
18561.168Sadoptions IWI_DEBUG
18571.168Sadoptions IWM_DEBUG
18581.168Sadoptions IYDEBUG
18591.168Sadoptions IYMEMDEBUG
18601.168Sadoptions J6X0TP_DEBUG
18611.168Sadoptions J720TP_DEBUG
18621.168Sadoptions KBD_DEBUG
18631.168Sadoptions KB_DEBUG
18641.168Sadoptions KERNEL_DEBUG
18651.168Sadoptions KLOADER_DEBUG
18661.168Sadoptions KSTACK_DEBUG
18671.168Sadoptions KSYMS_DEBUG
18681.168Sadoptions KUE_DEBUG
18691.168Sadoptions KVM86DEBUG
18701.168Sadoptions LANA_DEBUG
18711.168Sadoptions LCD_DEBUG
18721.168Sadoptions LDT_DEBUG
18731.168Sadoptions LEDEBUG
18741.168Sadoptions LE_DEBUG
18751.168Sadoptions LIFDEBUG
18761.168Sadoptions LINUX_SG_DEBUG
18771.168Sadoptions LLCDEBUG
18781.168Sadoptions LLC_DEBUG
18791.168Sadoptions LOADER_DEBUG
18801.168Sadoptions LOAD_DEBUG_INFO
18811.168Sadoptions LOCKDEBUG
18821.168Sadoptions LOCKF_DEBUG
18831.168Sadoptions LPT_DEBUG
18841.168Sadoptions MAGMA_DEBUG
18851.168Sadoptions MALLOC_DEBUG
18861.168Sadoptions MAPLE_DEBUG
18871.168Sadoptions MB8795_DEBUG
18881.168Sadoptions MCDDEBUG
18891.168Sadoptions MCDEBUG
18901.168Sadoptions MCHAIN_DEBUG
18911.168Sadoptions MEC_DEBUG
18921.168Sadoptions MEDIABAY_DEBUG
18931.168Sadoptions MEMORY_MAP_DEBUG
18941.168Sadoptions MESH_DEBUG
18951.168Sadoptions MIDI_DEBUG
18961.168Sadoptions MLYDEBUG
18971.168Sadoptions MMEYEPCMCIADEBUG
18981.168Sadoptions MOUSE_DEBUG
18991.168Sadoptions MPDEBUG
19001.168Sadoptions MQ200_DEBUG
19011.168Sadoptions MRT6DEBUG
19021.168Sadoptions MSDOSFS_DEBUG
19031.168Sadoptions MSG_DEBUG_OK
19041.168Sadoptions MULAW_DEBUG
19051.168Sadoptions MYDEV_DEBUG
19061.168Sadoptions NB_DEBUG
19071.168Sadoptions NCR5380_DEBUG
19081.168Sadoptions NCR53C9X_DEBUG
19091.168Sadoptions ND6_DEBUG
19101.168Sadoptions NDEBUG
19111.168Sadoptions ND_DEBUG
19121.168Sadoptions NETATALKDEBUG
19131.168Sadoptions NETDOCK_DEBUG_DRIVER
19141.168Sadoptions NETIF_DEBUG
19151.168Sadoptions NET_DEBUG
19161.168Sadoptions NFE_DEBUG
19171.168Sadoptions NFS_DEBUG
19181.168Sadoptions NFS_DEBUG_COMMIT
19191.168Sadoptions NIDEBUG
19201.168Sadoptions NJSC32_DEBUG
19211.168Sadoptions NON_DEBUG
19221.168Sadoptions NOTDEF_DEBUG
19231.168Sadoptions NOT_DEBUG
19241.168Sadoptions NSIODEBUG
19251.168Sadoptions NTFS_DEBUG
19261.168Sadoptions NV_DEBUG
19271.168Sadoptions OBOE_DEBUG
19281.168Sadoptions OFW_DEBUG
19291.168Sadoptions OHCI_DEBUG
19301.168Sadoptions OLD_ELF_DEBUG
19311.168Sadoptions ONEWIRE_DEBUG
19321.168Sadoptions ONOE_DEBUG
19331.168Sadoptions OPTPOINTDEBUG
19341.168Sadoptions OSIOP_DEBUG
19351.168Sadoptions OST_DEBUG
19361.168Sadoptions P1212_DEBUG
19371.168Sadoptions PARDEBUG
19381.168Sadoptions PBMS_DEBUG
19391.168Sadoptions PCIINTR_DEBUG
19401.168Sadoptions PCI_DEBUG
19411.168Sadoptions PCKBCDEBUG
19421.168Sadoptions PCKBPORTDEBUG
19431.168Sadoptions PCMCIACISDEBUG
19441.168Sadoptions PCMCIADEBUG
19451.168Sadoptions PDCDEBUG
19461.168Sadoptions PDINFO_DEBUG
19471.168Sadoptions PFCKBD_DEBUG
19481.168Sadoptions PFDEBUG
19491.168Sadoptions PFLOGDEBUG
19501.168Sadoptions PHYSMEMDEBUG
19511.168Sadoptions PI1PPC_DEBUG
19521.168Sadoptions PIIXPM_DEBUG
19531.168Sadoptions PIIX_DEBUG
19541.168Sadoptions PIOC_DEBUG
19551.168Sadoptions PLCOM_DEBUG
19561.168Sadoptions PLD_WDOG_DEBUG
19571.168Sadoptions PLIP_DEBUG
19581.168Sadoptions PLUMICUDEBUG
19591.168Sadoptions PLUMIOBUSDEBUG
19601.168Sadoptions PLUMPCMCIA_DEBUG
19611.168Sadoptions PLUMPOWERDEBUG
19621.168Sadoptions PLUMVIDEODEBUG
19631.168Sadoptions PMAPDEBUG
19641.168Sadoptions PMAP_COUNT_DEBUG
19651.168Sadoptions PMAP_DEBUG
19661.168Sadoptions PMAP_DEBUG_MODIFIED
19671.168Sadoptions PMON_DEBUG
19681.168Sadoptions PMSDEBUG
19691.168Sadoptions PNPBIOSDEBUG
19701.168Sadoptions PNPBIOSDEBUG_VALUE=1
19711.168Sadoptions PNPBIOSEVENTSDEBUG
19721.168Sadoptions PORT_DEBUG
19731.168Sadoptions PPBUS_DEBUG
19741.168Sadoptions PPPOE_DEBUG
19751.168Sadoptions PROFILER_DEBUG
19761.168Sadoptions PSH3TP_DEBUG
19771.168Sadoptions PWCTLDEBUG
19781.168Sadoptions QEDEBUG
19791.168Sadoptions QN_DEBUG
19801.168Sadoptions QN_DEBUG1
19811.168Sadoptions QTDEBUG
19821.168Sadoptions RAL_DEBUG
19831.168Sadoptions RARP_DEBUG
19841.168Sadoptions RBUS_DEBUG
19851.168Sadoptions RCONS_DEBUG
19861.168Sadoptions RDDEBUG
19871.168Sadoptions REALLYDEBUG
19881.168Sadoptions RND_DEBUG
19891.168Sadoptions ROMDEBUG
19901.168Sadoptions RPC_DEBUG
19911.168Sadoptions RQDEBUG
19921.168Sadoptions RTC_DEBUG
19931.168Sadoptions RTW_DEBUG
19941.168Sadoptions SACKBCDEBUG
19951.168Sadoptions SBC_DEBUG
19961.168Sadoptions SBJCN_DEBUG
19971.168Sadoptions SBMACDEBUG
19981.168Sadoptions SBSCN_DEBUG
19991.168Sadoptions SCC_DEBUG
20001.168Sadoptions SCHED_DEBUG
20011.168Sadoptions SCIF_DEBUG
20021.168Sadoptions SCI_DEBUG
20031.168Sadoptions SCR_DEBUG
20041.168Sadoptions SCSIDEBUG
20051.168Sadoptions SCSIPI_DEBUG
20061.168Sadoptions SCSI_DEBUG
20071.168Sadoptions SD_DEBUG
20081.168Sadoptions SEA_DEBUG
20091.168Sadoptions SEA_DEBUGQUEUE
20101.168Sadoptions SEDEBUG
20111.168Sadoptions SED_DEBUG
20121.168Sadoptions SEEQ8005_DEBUG
20131.168Sadoptions SEM_DEBUG
20141.168Sadoptions SEQUENCER_DEBUG
20151.168Sadoptions SER_DEBUG
20161.168Sadoptions SFAS_DEBUG
20171.168Sadoptions SGMAP_DEBUG
20181.168Sadoptions SHMDEBUG
20191.168Sadoptions SIF_DEBUG
20201.168Sadoptions SIOP_DEBUG
20211.168Sadoptions SIOP_DEBUG_DR
20221.168Sadoptions SIOP_DEBUG_INTR
20231.168Sadoptions SIOP_DEBUG_SCHED
20241.168Sadoptions SK_DEBUG
20251.168Sadoptions SMAP_DEBUG
20261.168Sadoptions SMB_IOD_DEBUG
20271.168Sadoptions SMB_SOCKETDATA_DEBUG
20281.168Sadoptions SMB_SOCKET_DEBUG
20291.168Sadoptions SMB_VNODE_DEBUG
20301.168Sadoptions SNAPPER_DEBUG
20311.168Sadoptions SNDEBUG
20321.168Sadoptions SOCKBUF_DEBUG
20331.168Sadoptions SONIC_DEBUG
20341.168Sadoptions SPARC_PCI_DEBUG
20351.168Sadoptions SPC_DEBUG
20361.168Sadoptions SPIC_DEBUG
20371.168Sadoptions SPIFI_DEBUG
20381.168Sadoptions SPKRDEBUG
20391.168Sadoptions SPLDEBUG
20401.168Sadoptions SPPDEBUG
20411.168Sadoptions SSCOM_DEBUG
20421.168Sadoptions STIDEBUG
20431.168Sadoptions STP4020_DEBUG
20441.168Sadoptions SUNSCPAL_DEBUG
20451.168Sadoptions SYNAPTICSDEBUG
20461.168Sadoptions SYSCALL_DEBUG
20471.168Sadoptions SYSCTL_DEBUG_CREATE
20481.168Sadoptions SYSCTL_DEBUG_SETUP
20491.168Sadoptions SYSVBFS_VNOPS_DEBUG
20501.168Sadoptions TC5165DEBUG
20511.168Sadoptions TCICDEBUG
20521.168Sadoptions TCICISADEBUG
20531.168Sadoptions TCPISS_DEBUG
20541.168Sadoptions TCPREASS_DEBUG
20551.168Sadoptions TCP_DEBUG
20561.168Sadoptions TCTRLDEBUG
20571.168Sadoptions TIMECOUNTER_DEBUG
20581.168Sadoptions TIMEKEEPER_DEBUG
20591.168Sadoptions TLDEBUG
20601.168Sadoptions TLDEBUG_ADDR
20611.168Sadoptions TLDEBUG_RX
20621.168Sadoptions TLDEBUG_TX
20631.168Sadoptions TLP_DEBUG
20641.168Sadoptions TP_DEBUG
20651.168Sadoptions TRACE_DEBUG
20661.168Sadoptions TRAPDEBUG
20671.168Sadoptions TRAP_SIGDEBUG
20681.168Sadoptions TRISADEBUG
20691.168Sadoptions TRM_DEBUG
20701.168Sadoptions TROPICDEBUG
20711.168Sadoptions TRTCMISADEBUG
20721.168Sadoptions TSDEBUG
20731.168Sadoptions TSLOT_DEBUG
20741.168Sadoptions TTY_DEBUG
20751.168Sadoptions TUDEBUG
20761.168Sadoptions TULIP_DEBUG
20771.168Sadoptions TWA_DEBUG
20781.168Sadoptions TWE_DEBUG
20791.168Sadoptions TX3912VIDEO_DEBUG
20801.168Sadoptions TX39BIU_DEBUG
20811.168Sadoptions TX39CLOCK_DEBUG
20821.168Sadoptions TX39ICU_DEBUG
20831.168Sadoptions TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT
20841.168Sadoptions TX39IO_DEBUG
20851.168Sadoptions TX39IRDEBUG
20861.168Sadoptions TX39POWER_DEBUG
20871.168Sadoptions TX39SIBDEBUG
20881.168Sadoptions TX39UARTDEBUG
20891.168Sadoptions TX39UART_DEBUG
20901.168Sadoptions UAUDIO_DEBUG
20911.168Sadoptions UBSA_DEBUG
20921.168Sadoptions UBSEC_DEBUG
20931.168Sadoptions UBT_DEBUG
20941.168Sadoptions UCB1200_DEBUG 
20951.168Sadoptions UCBIO_DEBUG
20961.168Sadoptions UCBSNDDEBUG
20971.168Sadoptions UCBTPDEBUG
20981.168Sadoptions UCOM_DEBUG
20991.168Sadoptions UCYCOM_DEBUG
21001.168Sadoptions UDAV_DEBUG
21011.168Sadoptions UDSBR_DEBUG
21021.168Sadoptions UFTDI_DEBUG
21031.168Sadoptions UGENSA_DEBUG
21041.168Sadoptions UGEN_DEBUG
21051.168Sadoptions UHADEBUG
21061.168Sadoptions UHCI_DEBUG
21071.168Sadoptions UHIDEV_DEBUG
21081.168Sadoptions UHID_DEBUG
21091.168Sadoptions UHUB_DEBUG
21101.168Sadoptions UIPAQ_DEBUG
21111.168Sadoptions UIRDA_DEBUG
21121.168Sadoptions UISDATA_DEBUG
21131.168Sadoptions UKBD_DEBUG
21141.168Sadoptions UKYOPON_DEBUG
21151.168Sadoptions ULPT_DEBUG
21161.168Sadoptions UL_DEBUG
21171.168Sadoptions UMASS_DEBUG
21181.168Sadoptions UMCT_DEBUG
21191.168Sadoptions UMIDIQUIRK_DEBUG
21201.168Sadoptions UMIDI_DEBUG
21211.168Sadoptions UMODEM_DEBUG
21221.168Sadoptions UNIV_DEBUG
21231.168Sadoptions UPLCOM_DEBUG
21241.168Sadoptions UPL_DEBUG
21251.168Sadoptions URIO_DEBUG
21261.168Sadoptions URLPHY_DEBUG
21271.168Sadoptions URL_DEBUG
21281.168Sadoptions USB_DEBUG
21291.168Sadoptions USCANNER_DEBUG
21301.168Sadoptions USEFULL_DEBUG  
21311.168Sadoptions USSCANNER_DEBUG
21321.168Sadoptions USTIR_DEBUG
21331.168Sadoptions UTOPPY_DEBUG
21341.180Sjmcneilloptions UVIDEO_DEBUG
21351.168Sadoptions UVISOR_DEBUG
21361.168Sadoptions UVSCOM_DEBUG
21371.168Sadoptions VALD_ACPI_DEBUG
21381.168Sadoptions VCONS_DEBUG
21391.168Sadoptions VERYLOWDEBUG
21401.168Sadoptions VGAFONTDEBUG
21411.168Sadoptions VIA8231_DEBUG
21421.168Sadoptions VIAENV_DEBUG
21431.168Sadoptions VIAPCIB_DEBUG
21441.168Sadoptions VIDCAUDIO_DEBUG
21451.168Sadoptions VMEDEBUG
21461.168Sadoptions VOODOOFB_DEBUG
21471.168Sadoptions VR4181AIU_DEBUG
21481.168Sadoptions VRAIU_DEBUG
21491.168Sadoptions VRBCUDEBUG
21501.168Sadoptions VRC2GPIODEBUG
21511.168Sadoptions VRC2PWMDEBUG
21521.168Sadoptions VRC4173BCU_DEBUG
21531.168Sadoptions VRDCU_DEBUG
21541.168Sadoptions VRDMAAU_DEBUG
21551.168Sadoptions VRGIUDEBUG
21561.168Sadoptions VRIP_DEBUG
21571.168Sadoptions VRISADEBUG
21581.168Sadoptions VRKIUDEBUG
21591.168Sadoptions VRLEDDEBUG
21601.168Sadoptions VRPIUDEBUG
21611.168Sadoptions VRPMUDEBUG
21621.168Sadoptions VRRTCDEBUG
21631.168Sadoptions VS_DEBUG
21641.168Sadoptions VT100_DEBUG
21651.168Sadoptions VTOC_DEBUG
21661.168Sadoptions WDCNDELAY_DEBUG
21671.168Sadoptions WDSDEBUG
21681.168Sadoptions WE_DEBUG
21691.168Sadoptions WFQ_DEBUG
21701.168Sadoptions WI_DEBUG
21711.168Sadoptions WI_RING_DEBUG
21721.168Sadoptions WM_DEBUG
21731.168Sadoptions WSKBD_DEBUG
21741.168Sadoptions WSMUX_DEBUG
21751.168Sadoptions XBD_DEBUG
21761.168Sadoptions XDC_DEBUG
21771.168Sadoptions XDDEBUG
21781.168Sadoptions XDEBUG
21791.168Sadoptions XENDEBUG
21801.168Sadoptions XENDEBUG_LOW
21811.168Sadoptions XENDEBUG_NET
21821.168Sadoptions XENDEBUG_SYNC
21831.168Sadoptions XENDEBUG_VBD
21841.168Sadoptions XENNET_DEBUG
21851.168Sadoptions XENNET_DEBUG_DUMP
21861.168Sadoptions XEN_CLOCK_DEBUG
21871.168Sadoptions XE_DEBUG
21881.168Sadoptions XXXXENDEBUG_LOW
21891.168Sadoptions XYC_DEBUG
21901.168Sadoptions ZSKBD_DEBUG
21911.168Sadoptions ZSMACDEBUG
21921.168Sadoptions xSCSI_DEBUG
21931.168Sadoptions xSD_DEBUG
2194