ALL revision 1.126
11.126Sozaki# $NetBSD: ALL,v 1.126 2019/10/28 03:01:11 ozaki-r Exp $
21.1Schristos# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
31.1Schristos#
41.1Schristos# ALL machine description file
51.1Schristos#
61.1Schristos# This machine description includes all devices and options and it is
71.1Schristos# used to compile-test the source and does not necessarily produce a
81.1Schristos# bootable or useful kernel.
91.1Schristos#
101.1Schristos# For further information on hardware support for this architecture, see
111.1Schristos# the intro(4) man page.  For further information about kernel options
121.1Schristos# for this architecture, see the options(4) man page.  For an explanation
131.1Schristos# of each device driver in this file see the section 4 man page for the
141.1Schristos# device.
151.1Schristos
161.1Schristosinclude 	"arch/amd64/conf/std.amd64"
171.1Schristos
181.1Schristosoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
191.1Schristos
201.126Sozaki#ident		"ALL-$Revision: 1.126 $"
211.1Schristos
221.1Schristosmaxusers	64		# estimated number of users
231.1Schristos
241.1Schristosmakeoptions	USE_SSP=yes
251.1Schristos
261.1Schristos# CPU-related options.
271.1Schristos#options 	USER_LDT	# user-settable LDT; used by WINE
281.1Schristosoptions 	X86EMU		# 386 Real Mode emulator
291.1Schristos#options 	PAE		# PAE mode (36 bits physical addressing)
301.85Smrgmakeoptions	SPECTRE_V2_GCC_MITIGATION=1	# GCC Spectre variant 2
311.85Smrg						# migitation
321.1Schristos
331.1Schristos# CPU features
341.1Schristosacpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
351.1Schristoscoretemp*	at cpu?		# Intel on-die thermal sensor
361.1Schristosest0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
371.1Schristosodcm0		at cpu0		# On-demand clock modulation
381.1Schristos#padlock0	at cpu0		# VIA PadLock
391.1Schristospowernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
401.1Schristosviac7temp*	at cpu?		# VIA C7 temperature sensor
411.1Schristosvmt0		at cpu0		# VMware Tools
421.1Schristos
431.57Schristos# Beep when it is safe to power down the system (requires sysbeep)
441.57Schristosoptions 	BEEP_ONHALT
451.57Schristos# Some tunable details of the above feature (default values used below)
461.57Schristosoptions 	BEEP_ONHALT_COUNT=3	# Times to beep
471.57Schristosoptions 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
481.57Schristosoptions 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
491.57Schristos
501.1Schristosoptions 	MULTIBOOT	# Multiboot support (see multiboot(8))
511.1Schristos
521.1Schristos# delay between "rebooting ..." message and hardware reset, in milliseconds
531.1Schristosoptions 	CPURESET_DELAY=2000
541.1Schristos
551.1Schristos# This option allows you to force a serial console at the specified
561.1Schristos# I/O address.   see console(4) for details.
571.1Schristosoptions 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
581.1Schristos#	you don't want the option below ON iff you are using the
591.1Schristos#	serial console option of the new boot strap code.
601.1Schristosoptions 	CONS_OVERRIDE	# Always use above! independent of boot info
611.1Schristos
621.1Schristos# The following options override the memory sizes passed in from the boot
631.1Schristos# block.  Use them *only* if the boot block is unable to determine the correct
641.1Schristos# values.  Note that the BIOS may *correctly* report less than 640k of base
651.1Schristos# memory if the extended BIOS data area is located at the top of base memory
661.1Schristos# (as is the case on most recent systems).
671.1Schristosoptions 	REALBASEMEM=639		# size of base memory (in KB)
681.1Schristosoptions 	REALEXTMEM=15360	# size of extended memory (in KB)
691.1Schristos
701.1Schristos# The following options limit the overall size of physical memory
711.1Schristos# and/or the maximum address used by the system.
721.1Schristos# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map
731.1Schristos# and can deal with holes in the memory layout.
741.1Schristosoptions 	PHYSMEM_MAX_SIZE=64	# max size of physical memory (in MB)
751.1Schristosoptions 	PHYSMEM_MAX_ADDR=2048	# don't use memory above this (in MB)
761.1Schristos
771.1Schristos# Standard system options
781.1Schristos
791.1Schristosoptions 	INSECURE	# disable kernel security levels - X needs this
801.1Schristos
811.1Schristosoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
821.1Schristosoptions 	NTP		# NTP phase/frequency locked loop
831.1Schristos
841.1Schristosoptions 	KTRACE		# system call tracing via ktrace(1)
851.1Schristos
861.1Schristosoptions 	CPU_UCODE	# cpu ucode loading support
871.1Schristos
881.1Schristos# Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
891.1Schristosoptions 	SYSVMSG		# System V-like message queues
901.1Schristosoptions 	SYSVSEM		# System V-like semaphores
911.1Schristosoptions 	SEMMNI=10	# number of semaphore identifiers
921.1Schristosoptions 	SEMMNS=60	# number of semaphores in system
931.1Schristosoptions 	SEMUME=10	# max number of undo entries per process
941.1Schristosoptions 	SEMMNU=30	# number of undo structures in system
951.1Schristosoptions 	SYSVSHM		# System V-like memory sharing
961.1Schristos
971.1Schristosoptions 	MODULAR		# new style module(7) framework
981.18Sjnemethoptions 	MODULAR_DEFAULT_AUTOLOAD
991.1Schristos
1001.1Schristosoptions 	USERCONF	# userconf(4) support
1011.1Schristosoptions 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1021.1Schristosoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
1031.1Schristos
1041.1Schristos# Alternate buffer queue strategies for better responsiveness under high
1051.1Schristos# disk I/O load.
1061.1Schristosoptions 	BUFQ_READPRIO
1071.1Schristosoptions 	BUFQ_PRIOCSCAN
1081.1Schristos
1091.1Schristos# Diagnostic/debugging support options
1101.13Sdhollandoptions 	DIAGNOSTIC	# inexpensive kernel consistency checks
1111.57Schristos				# XXX to be commented out on release branch
1121.1Schristosoptions 	DEBUG		# expensive debugging checks/support
1131.1Schristosoptions 	LOCKDEBUG	# expensive locking checks/support
1141.1Schristosoptions 	DDB		# in-kernel debugger
1151.57Schristosoptions 	DDB_COMMANDONENTER="bt"	# execute command when ddb is entered
1161.2Sszptvlfnoptions 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
1171.1Schristosoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
1181.1Schristosoptions 	DDB_VERBOSE_HELP
1191.1Schristosoptions 	KGDB		# remote debugger
1201.1Schristosoptions 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
1211.57Schristosmakeoptions	COPTS="-O2 -fno-omit-frame-pointer"
1221.1Schristosmakeoptions	DEBUG="-g"	# compile full symbol table
1231.116Skamiloptions		KUBSAN		# Kernel Undefined Behavior Sanitizer (kUBSan)
1241.1Schristosoptions 	SYSCALL_STATS	# per syscall counts
1251.1Schristosoptions 	SYSCALL_TIMES	# per syscall times
1261.1Schristosoptions 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
1271.1Schristosoptions 	KDTRACE_HOOKS	# kernel DTrace hooks
1281.48Spgoyetteoptions 	UVMHIST		# kernhist for uvm subsystem
1291.48Spgoyetteoptions 	BIOHIST		# kernhist for buff I/O
1301.1Schristos
1311.116Skamil# Kernel Address Sanitizer (kASan). You need to disable SVS to use it.
1321.116Skamilmakeoptions	KASAN=1		# Kernel Address Sanitizer
1331.116Skamiloptions		KASAN
1341.116Skamil#no options     SVS
1351.116Skamil
1361.116Skamil# Kernel Info Leak Detector.
1371.116Skamil#makeoptions	KLEAK=1
1381.116Skamil#options		KLEAK
1391.116Skamil
1401.116Skamil# Kernel Code Coverage Driver.
1411.116Skamilmakeoptions	KCOV=1
1421.116Skamiloptions		KCOV
1431.116Skamil
1441.1Schristos# Compatibility options
1451.57Schristosoptions 	EXEC_AOUT	# required by binaries from before 1.5
1461.1Schristosoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
1471.71Smrginclude 	"conf/compat_netbsd09.config"
1481.1Schristos
1491.57Schristosoptions 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
1501.4Sriastradoptions 	COMPAT_NETBSD32 # NetBSD 32-bit
1511.1Schristosoptions 	COMPAT_LINUX	# binary compatibility with Linux
1521.4Sriastradoptions 	COMPAT_LINUX32	# binary compatibility with Linux 32-bit
1531.1Schristos
1541.1Schristos# Wedge support
1551.1Schristosoptions 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
1561.1Schristosoptions 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
1571.57Schristosoptions 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
1581.57Schristosoptions 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
1591.49Sryooptions 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
1601.53Srinoptions 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
1611.1Schristos
1621.1Schristos# File systems
1631.49Sryofile-system	FFS		# UFS
1641.49Sryofile-system	EXT2FS		# second extended file system (linux)
1651.49Sryofile-system	LFS		# log-structured file system
1661.49Sryofile-system	MFS		# memory file system
1671.49Sryofile-system	NFS		# Network File System client
1681.49Sryofile-system	NTFS		# Windows/NT file system (experimental)
1691.49Sryofile-system	CD9660		# ISO 9660 + Rock Ridge file system
1701.49Sryofile-system	MSDOSFS		# MS-DOS file system
1711.49Sryofile-system	FDESC		# /dev/fd
1721.49Sryofile-system	KERNFS		# /kern
1731.49Sryofile-system	NULLFS		# loopback file system
1741.49Sryofile-system	OVERLAY		# overlay file system
1751.1Schristosfile-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
1761.49Sryofile-system	PROCFS		# /proc
1771.49Sryofile-system	UMAPFS		# NULLFS + uid and gid remapping
1781.49Sryofile-system	UNION		# union file system
1791.49Sryofile-system	CODA		# Coda File System; also needs vcoda (below)
1801.49Sryofile-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
1811.49Sryofile-system	SYSVBFS		# System V boot file system
1821.49Sryofile-system	PTYFS		# /dev/ptm support
1831.49Sryofile-system	TMPFS		# Efficient memory file-system
1841.49Sryofile-system	UDF		# experimental - OSTA UDF CD/DVD file-system
1851.49Sryofile-system	HFS		# experimental - Apple HFS+ file system
1861.49Sryofile-system	EFS		# Silicon Graphics Extent File System
1871.49Sryofile-system	FILECORE	# Acorn filecore file system
1881.49Sryofile-system	ADOSFS		# AmigaDOS file system
1891.1Schristosfile-system	NILFS		# experimental - NTT's NiLFS(2)
1901.1Schristosfile-system	V7FS		# 7th Edition(V7) File System
1911.1Schristosfile-system	CHFS		# Chip File System
1921.76Schristosfile-system	AUTOFS		# Automounter Filesystem
1931.1Schristos
1941.1Schristos# File system options
1951.1Schristosoptions 	QUOTA		# legacy UFS quotas
1961.1Schristosoptions 	QUOTA2		# new, in-filesystem UFS quotas
1971.52Srinoptions 	DISKLABEL_EI	# disklabel Endian Independent support
1981.1Schristosoptions 	FFS_EI		# FFS Endian Independent support
1991.1Schristosoptions 	WAPBL		# File system journaling support
2001.1Schristosoptions 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
2011.1Schristosoptions 	UFS_EXTATTR
2021.1Schristosoptions 	LFS_KERNEL_RFW
2031.1Schristosoptions 	LFS_EI		# LFS endian-independent support - experimental
2041.1Schristosoptions 	LFS_DIRHASH	# LFS version of UFS_DIRHASH - experimental
2051.1Schristosoptions 	LFS_EXTATTR	# extended attributes for LFS - experimental
2061.1Schristosoptions 	LFS_QUOTA	# quotas for LFS - experimental
2071.1Schristosoptions 	LFS_QUOTA2	# new-style quotas for LFS - experimental
2081.1Schristosoptions 	NFSSERVER	# Network File System server
2091.46Sdholland#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
2101.1Schristosoptions 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
2111.1Schristos				# immutable) behave as system flags.
2121.1Schristosoptions 	V7FS_EI		# V7FS Endian Independent support
2131.1Schristos
2141.1Schristos# Networking options
2151.1Schristosoptions 	GATEWAY		# packet forwarding
2161.1Schristosoptions 	INET		# IP + ICMP + TCP + UDP
2171.1Schristosoptions 	INET6		# IPv6
2181.1Schristosoptions 	IPSEC		# IP security
2191.1Schristos#options 	IPSEC_DEBUG	# debug for IP security
2201.38Schristosoptions 	MPLS		# MultiProtocol Label Switching (needs mpls)
2211.1Schristosoptions 	MROUTING	# IP multicast routing
2221.1Schristosoptions 	PIM		# Protocol Independent Multicast
2231.1Schristosoptions 	NETATALK	# AppleTalk networking protocols
2241.59Sbouyeroptions 	CAN		# Controller Area Network protocol
2251.28Srjsoptions 	DCCP		# Datagram Congestion Control Protocol
2261.1Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
2271.1Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
2281.1Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
2291.1Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
2301.1Schristosoptions 	IPFILTER_LOOKUP	# ippool(8) support
2311.1Schristosoptions 	IPFILTER_COMPAT # Compat for IP-Filter
2321.1Schristosoptions 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
2331.1Schristosoptions 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
2341.1Schristosoptions 	TCP_SIGNATURE	# RFC 2385 support, used with BGP
2351.46Sdhollandoptions 	SCTP		# Stream Control Transmission Protocol
2361.1Schristos
2371.1Schristosoptions 	ALTQ		# Manipulate network interfaces' output queues
2381.1Schristosoptions 	ALTQ_BLUE	# Stochastic Fair Blue
2391.1Schristosoptions 	ALTQ_CBQ	# Class-Based Queueing
2401.1Schristosoptions 	ALTQ_CDNR	# Diffserv Traffic Conditioner
2411.1Schristosoptions 	ALTQ_FIFOQ	# First-In First-Out Queue
2421.1Schristosoptions 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
2431.1Schristosoptions 	ALTQ_HFSC	# Hierarchical Fair Service Curve
2441.1Schristosoptions 	ALTQ_LOCALQ	# Local queueing discipline
2451.1Schristosoptions 	ALTQ_PRIQ	# Priority Queueing
2461.1Schristosoptions 	ALTQ_RED	# Random Early Detection
2471.1Schristosoptions 	ALTQ_RIO	# RED with IN/OUT
2481.1Schristosoptions 	ALTQ_WFQ	# Weighted Fair Queueing
2491.1Schristos
2501.1Schristos# These options enable verbose messages for several subsystems.
2511.1Schristos# Warning, these may compile large string tables into the kernel!
2521.1Schristosoptions 	ACPIVERBOSE	# verbose ACPI device autoconfig messages
2531.1Schristosoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
2541.1Schristosoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
2551.86Smayaoptions 	MPVERBOSE=1	# verbose mpbios config messages
2561.1Schristosoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
2571.1Schristosoptions 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
2581.1Schristosoptions 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
2591.1Schristosoptions 	SCSIVERBOSE	# human readable SCSI error messages
2601.1Schristosoptions 	USBVERBOSE	# verbose USB device autoconfig messages
2611.1Schristosoptions 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
2621.1Schristos#options 	PNPBIOSDEBUG	# more fulsome PnP BIOS debugging messages
2631.1Schristosoptions 	MCAVERBOSE	# verbose MCA device autoconfig messages
2641.20Schristosoptions 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
2651.1Schristos
2661.1Schristosoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
2671.1Schristos
2681.1Schristos#
2691.1Schristos# wscons options
2701.1Schristos#
2711.1Schristos# builtin terminal emulations
2721.1Schristosoptions 	WSEMUL_SUN		# sun terminal emulation
2731.1Schristosoptions 	WSEMUL_VT100		# VT100 / VT220 emulation
2741.1Schristos# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
2751.1Schristosoptions 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
2761.1Schristosoptions 	WS_DEFAULT_FG=WSCOL_WHITE
2771.1Schristosoptions 	WS_DEFAULT_BG=WSCOL_BLACK
2781.1Schristosoptions 	WS_DEFAULT_COLATTR="(0)"
2791.1Schristosoptions 	WS_DEFAULT_MONOATTR="(0)"
2801.1Schristosoptions 	WS_KERNEL_FG=WSCOL_GREEN
2811.1Schristosoptions 	WS_KERNEL_BG=WSCOL_BLACK
2821.1Schristosoptions 	WS_KERNEL_COLATTR="(0)"
2831.1Schristosoptions 	WS_KERNEL_MONOATTR="(0)"
2841.1Schristos# customization of console border color
2851.1Schristosoptions 	WSDISPLAY_CUSTOM_BORDER	# custom border colors via wsconsctl(8)
2861.1Schristosoptions 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
2871.1Schristos# compatibility to other console drivers
2881.1Schristosoptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2891.1Schristosoptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2901.1Schristosoptions 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
2911.1Schristosoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2921.1Schristosoptions 	WSKBD_EVENT_AUTOREPEAT		# auto repeat in event mode
2931.1Schristos#options 	WSKBD_USONLY			# strip off non-US keymaps
2941.1Schristos# don't attach pckbd as the console if no PS/2 keyboard is found
2951.1Schristosoptions 	PCKBD_CNATTACH_MAY_FAIL
2961.1Schristos# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
2971.1Schristosoptions 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
2981.1Schristosoptions 	UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver
2991.1Schristos# allocate a number of virtual screens at autoconfiguration time
3001.1Schristosoptions 	WSDISPLAY_DEFAULTSCREENS=4
3011.1Schristos# use a large software cursor that doesn't blink
3021.1Schristosoptions 	PCDISPLAY_SOFTCURSOR
3031.1Schristos# modify the screen type of the console; defaults to "80x25"
3041.1Schristosoptions 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
3051.1Schristos# work around a hardware bug that loaded fonts don't work; found on ATI cards
3061.1Schristosoptions 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
3071.1Schristos# console scrolling support.
3081.1Schristosoptions 	WSDISPLAY_SCROLLSUPPORT
3091.1Schristos# enable VGA raster mode capable of displaying multilingual text on console
3101.1Schristos#options 	VGA_RASTERCONSOLE
3111.1Schristos# enable splash screen support; requires hw driver support
3121.1Schristos#options 	SPLASHSCREEN
3131.1Schristos
3141.1Schristos# Keylock support
3151.1Schristosoptions 	KEYLOCK
3161.1Schristosoptions 	secmodel_keylock	# Requires options KEYLOCK
3171.1Schristos
3181.1Schristos# Kernel root file system and dump configuration.
3191.1Schristosconfig		netbsd	root on ? type ?
3201.1Schristos#config		netbsd	root on sd0a type ffs
3211.1Schristos#config		netbsd	root on ? type nfs
3221.1Schristos
3231.1Schristos#
3241.1Schristos# Device configuration
3251.1Schristos#
3261.1Schristos
3271.1Schristos#apm0	at mainbus0			# Advanced power management
3281.1Schristos
3291.1Schristos# Tuning for power management, see apm(4) for more details.
3301.1Schristos#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
3311.1Schristos#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
3321.1Schristos#options 	APM_POWER_PRINT		# Print stats on the console
3331.1Schristos
3341.1Schristos
3351.1Schristos# Basic Bus Support
3361.1Schristos
3371.1Schristos#IPMI support
3381.1Schristosipmi0		at mainbus?
3391.1Schristos
3401.1Schristos# Advanced Configuration and Power Interface
3411.1Schristos
3421.1Schristos# This option can be used to retrieve CPU and APIC information.
3431.1Schristos# that I/O APICs can be used if ACPI is enabled below.
3441.57Schristosoptions 	ACPI_SCANPCI		# find PCI roots using ACPI
3451.57Schristosoptions 	MPBIOS			# configure CPUs and APICs using MPBIOS
3461.57Schristosoptions 	MPBIOS_SCANPCI		# MPBIOS configures PCI roots
3471.57Schristosoptions 	PCI_INTR_FIXUP		# PCI interrupt routing via ACPI
3481.57Schristosoptions 	PCI_BUS_FIXUP		# fixup PCI bus numbering
3491.57Schristosoptions 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
3501.57Schristosoptions 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
3511.57Schristosoptions 	VGA_POST		# in-kernel support for VGA POST
3521.1Schristos
3531.1Schristosacpi0		at mainbus0
3541.1Schristos
3551.1Schristos# ACPI devices
3561.1Schristosapm*		at acpi?		# ACPI apm emulation
3571.1Schristosacpiacad*	at acpi?		# ACPI AC Adapter
3581.1Schristosacpibat*	at acpi?		# ACPI Battery
3591.1Schristosacpibut*	at acpi?		# ACPI Button
3601.1Schristosacpidalb*	at acpi?		# ACPI Direct Application Launch Button
3611.1Schristosacpiec* 	at acpi?		# ACPI Embedded Controller (late)
3621.1Schristosacpiecdt*	at acpi?		# ACPI Embedded Controller (early)
3631.1Schristosacpifan*	at acpi?		# ACPI Fan
3641.1Schristosacpilid*	at acpi?		# ACPI Lid Switch
3651.1Schristosacpipmtr*	at acpi?		# ACPI Power Meter (experimental)
3661.1Schristos# XXX Do not enable this in a real kernel unless you also disable any
3671.1Schristos# XXX "native" i2c controller.  Otherwise you'll have two accessors to
3681.1Schristos# XXX the same bus, and bad things (tm) will happen!
3691.1Schristosacpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
3701.1Schristosacpitz* 	at acpi?		# ACPI Thermal Zone
3711.1Schristosacpivga*	at acpi?		# ACPI Display Adapter
3721.1Schristosacpiout*	at acpivga?		# ACPI Display Output Device
3731.1Schristosacpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
3741.1Schristosacpiwmi*	at acpi?		# ACPI WMI Mapper
3751.1Schristos
3761.1Schristos# Mainboard devices
3771.1Schristosaibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
3781.7Sriastradapplesmc*	at acpi?		# Apple System Management Controller
3791.1Schristosasus*		at acpi?		# ASUS hotkeys
3801.1Schristosattimer*	at acpi?		# AT Timer
3811.1Schristoscom*		at acpi?		# Serial communications interface
3821.1Schristosfdc*		at acpi?		# Floppy disk controller
3831.1Schristosfujbp*		at acpi?		# Fujitsu Brightness & Pointer
3841.1Schristosfujhk*		at acpi?		# Fujitsu Hotkeys
3851.46Sdhollandhpacel* 	at acpi?		# HP 3D DriveGuard accelerometer
3861.1Schristoshpqlb*		at acpi?		# HP Quick Launch Buttons
3871.1Schristoshpet*		at acpihpetbus?		# High Precision Event Timer (table)
3881.1Schristoshpet*		at acpinodebus?		# High Precision Event Timer (device)
3891.1Schristosjoy*		at acpi?		# Joystick/Game port
3901.1Schristoslpt*		at acpi?		# Parallel port
3911.1Schristosmpu*		at acpi?		# Roland MPU-401 MIDI UART
3921.1Schristospckbc*		at acpi?		# PC keyboard controller
3931.1Schristospcppi*		at acpi?		# AT-style speaker sound
3941.72Sjmcneillqemufwcfg*	at acpi?		# QEMU Firmware Configuration device
3951.57Schristossdhc*		at acpi?		# SD Host Controller
3961.57Schristossony*		at acpi?		# Sony Notebook Controller
3971.57Schristosspic*		at acpi?		# Sony Programmable I/O Controller
3981.57Schristoswsmouse*	at spic?		# mouse
3991.1Schristosthinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
4001.57Schristostpm*		at acpi?		# ACPI TPM (Experimental)
4011.1Schristosug*		at acpi?		# Abit uGuru Hardware monitor
4021.57Schristosvalz*		at acpi?		# Toshiba Dynabook hotkeys
4031.1Schristoswb*		at acpi?		# Winbond W83L518D SD/MMC reader
4041.1Schristossdmmc*		at wb?			# SD/MMC bus
4051.57Schristossdhc*		at acpi?		# SD Host Controller
4061.57Schristossony*		at acpi?		# Sony Notebook Controller
4071.1Schristoswmidell*	at acpiwmibus?		# Dell WMI mappings
4081.1Schristoswmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
4091.1Schristoswmihp*		at acpiwmibus?		# HP WMI mappings
4101.1Schristoswmimsi* 	at acpiwmibus?		# MSI WMI mappings
4111.1Schristoswss*		at acpi?		# NeoMagic 256AV in wss mode
4121.1Schristosym*		at acpi?		# Yamaha OPL3-SA[23] audio
4131.1Schristos
4141.7Sriastrad# Apple System Management Controller devices
4151.7Sriastradapplesmcfan*	at applesmcbus?
4161.7Sriastradapplesmctemp*	at applesmcbus?
4171.7Sriastrad
4181.1Schristos# PCI bus support
4191.1Schristospci*	at mainbus? bus ?
4201.1Schristospci*	at pchb? bus ?
4211.1Schristospci*	at ppb? bus ?
4221.1Schristos
4231.1Schristos# Configure PCI using BIOS information
4241.1Schristosoptions 	PCIBIOS			# PCI BIOS support
4251.1Schristosoptions 	PCIBIOSVERBOSE		# PCI BIOS verbose info
4261.1Schristosoptions 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
4271.1Schristosoptions 	PCIBIOS_INTR_GUESS	# see pcibios(4)
4281.1Schristosoptions 	PCIBIOS_LIBRETTO_FIXUP	# this code makes the Toshiba Libretto
4291.1Schristos					# L2/L3 work, but should not be enabled
4301.1Schristos					# on anything else.
4311.1Schristosoptions 	PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20
4321.1Schristos					# work, but should not be enabled
4331.1Schristos					# on anything else.
4341.1Schristos#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
4351.1Schristos
4361.1Schristos# PCI bridges
4371.1Schristosrdcpcib* at pci? dev ? function ?	# RDC Vortex86/PMX-1000 PCI-ISA w/
4381.1Schristospchb*	at pci? dev ? function ?	# PCI-Host bridges
4391.21Suebayasioptions 	AGP_X86
4401.1Schristospcib*	at pci? dev ? function ?	# PCI-ISA bridges
4411.1Schristosppb*	at pci? dev ? function ?	# PCI-PCI bridges
4421.1Schristos# XXX 'puc's aren't really bridges, but there's no better place for them here
4431.1Schristospuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
4441.1Schristos
4451.57Schristosamdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
4461.57Schristoshpet*	at amdpcib?
4471.57Schristos
4481.1Schristospwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
4491.1Schristos
4501.57Schristosichlpcib* at pci? dev ? function ?	# Intel ICH PCI-LPC w/ timecounter,
4511.57Schristos					# watchdog, gpio, Speedstep and HPET
4521.57Schristosfwhrng* at ichlpcib?		# Intel 82802 FWH Random Number Generator
4531.57Schristoshpet*	at ichlpcib?
4541.57Schristostco*	at ichlpcib?		# TCO watch dog timer
4551.57Schristos
4561.57Schristosaapic*	at pci? dev ? function ?	# AMD 8131 IO apic
4571.57Schristos
4581.1Schristosagp*	at pchb?
4591.1Schristos
4601.1Schristos# ISA bus support
4611.57Schristosisa0	at mainbus?
4621.57Schristosisa0	at pcib?
4631.1Schristosisa0	at amdpcib?
4641.1Schristosisa0	at ichlpcib?
4651.1Schristosisa0	at rdcpcib?
4661.57Schristosisa0	at rdcpcib?
4671.1Schristos
4681.1Schristos# IBM 4810 BSP cash drawer port
4691.1Schristosibmcd*	at pci? dev ? function ?
4701.1Schristosgpio*	at ibmcd?
4711.1Schristos
4721.1Schristos# CardBus bridge support
4731.1Schristoscbb*		at pci? dev ? function ?
4741.1Schristoscardslot*	at cbb?
4751.1Schristos
4761.1Schristos# CardBus bus support
4771.1Schristoscardbus*	at cardslot?
4781.1Schristospcmcia* 	at cardslot?
4791.1Schristos
4801.1Schristos# Coprocessor Support
4811.1Schristos
4821.1Schristos# Console Devices
4831.1Schristos
4841.1Schristos# wscons
4851.1Schristospckbc0		at isa?			# PC keyboard controller
4861.1Schristospckbd*		at pckbc?		# PC keyboard
4871.1Schristospms*		at pckbc?		# PS/2 mouse for wsmouse
4881.1Schristosoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
4891.1Schristosoptions 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
4901.67Schristosoptions 	PMS_ALPS_TOUCHPAD	# Enable support for Alps Touchpads
4911.1Schristosvga0		at isa?
4921.1Schristosvga*		at pci? dev ? function ?
4931.57Schristosgenfb*		at pci? dev ? function ?
4941.57Schristosoptions 	VCONS_DRAW_INTR
4951.57Schristoswsdisplay*	at vga? console ?
4961.57Schristoswsdisplay*	at wsemuldisplaydev?
4971.1Schristospcdisplay0	at isa?			# CGA, MDA, EGA, HGA
4981.1Schristoswskbd*		at pckbd? console ?
4991.1Schristoswsmouse*	at pms? mux 0
5001.1Schristos
5011.1Schristoschipsfb*	at pci? dev ? function ?
5021.1Schristosgenfb*		at pci? dev ? function ?
5031.11Stsutsuigffb*		at pci? dev ? function ?
5041.1Schristosigsfb*		at pci? dev ? function ?
5051.1Schristosmachfb* 	at pci? dev ? function ?
5061.1Schristospm2fb*		at pci? dev ? function ?
5071.1Schristosr128fb* 	at pci? dev ? function ?
5081.1Schristosradeonfb*	at pci? dev ? function ?
5091.1Schristostga*		at pci? dev ? function ?	# DEC ZLXp-E[123] Graphics
5101.1Schristosunichromefb*	at pci? dev ? function ?	# VIA Unichrome framebuffer console
5111.1Schristosvoodoofb*	at pci? dev ? function ?
5121.1Schristoswcfb*	at pci? dev ? function ?
5131.1Schristos
5141.22Schristos# DRI legacy drivers
5151.22Schristos#i915drm*	at drm?		# Intel i915, i945 DRM driver
5161.22Schristos#mach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
5171.22Schristos#mgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
5181.22Schristos#r128drm*	at drm?		# ATI Rage 128 DRM driver
5191.22Schristos#radeondrm*	at drm?		# ATI Radeon DRM driver
5201.22Schristos#savagedrm*	at drm?		# S3 Savage DRM driver
5211.22Schristos#sisdrm* 	at drm?		# SiS DRM driver
5221.22Schristos#tdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
5231.22Schristos#vboxdrm*	at drm?		# VirtualBox DRM driver
5241.22Schristos
5251.22Schristos# DRMKMS drivers
5261.49Sryoi915drmkms*	at pci? dev ? function ?
5271.49Sryointelfb*	at intelfbbus?
5281.22Schristos
5291.27Sriastradradeon* 	at pci? dev ? function ?
5301.22Schristosradeondrmkmsfb* at radeonfbbus?
5311.22Schristos
5321.100Sriastradamdgpu* 	at pci? dev ? function ?
5331.100Sriastradamdgpufb* 	at amdgpufbbus?
5341.100Sriastrad
5351.49Sryonouveau*	at pci? dev ? function ?
5361.49Sryonouveaufb*	at nouveaufbbus?
5371.1Schristos
5381.93Smaya# DRMUMS drivers
5391.93Smayaviadrmums*	at drm?
5401.93Smaya
5411.1Schristosattimer0	at isa?
5421.1Schristospcppi0		at isa?
5431.1Schristossysbeep0	at pcppi?
5441.1Schristos
5451.1Schristos# Serial Devices
5461.1Schristos
5471.1Schristos# PCI serial interfaces
5481.1Schristoscom*	at puc? port ?			# 16x50s on "universal" comm boards
5491.1Schristoscy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
5501.1Schristoscz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
5511.1Schristos
5521.1Schristos# PCMCIA serial interfaces
5531.1Schristoscom*	at pcmcia? function ?		# Modems and serial cards
5541.1Schristos
5551.1Schristospcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
5561.1Schristoscom*	at pcmcom? slave ?		# ...and the slave devices
5571.1Schristos
5581.1Schristos# CardBus serial interfaces
5591.1Schristoscom*	at cardbus? function ?	# Modems and serial cards
5601.1Schristos
5611.1Schristos# Cardbus bridges
5621.1Schristos#ppb*	at cardbus? function ?	# Cardbus-PCI bridges (www.magma.com)
5631.1Schristos
5641.1Schristos# ISA serial interfaces
5651.1Schristos#options 	COM_HAYESP		# adds Hayes ESP serial board support
5661.1Schristoscom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
5671.1Schristoscom1	at isa? port 0x2f8 irq 3
5681.1Schristoscom2	at isa? port 0x3e8 irq 5
5691.1Schristoscom3	at isa? port 0x2e8 irq 9
5701.1Schristosast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
5711.1Schristoscom*	at ast? slave ?
5721.1Schristosboca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
5731.1Schristosboca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
5741.1Schristosboca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
5751.1Schristoscom*	at boca? slave ?
5761.1Schristostcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
5771.1Schristoscom*	at tcom? slave ?
5781.1Schristosrtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
5791.1Schristoscom*	at rtfps? slave ?
5801.1Schristoscy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
5811.1Schristosaddcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
5821.1Schristoscom*	at addcom? slave ?
5831.1Schristosmoxa0	at isa?	port 0x100 irq 5	# MOXA C168H serial card (experimental)
5841.1Schristoscom*	at moxa? slave ?
5851.1Schristosioat*	at isa? port 0x220 irq 5	# BOCA IOAT66 6-port serial card
5861.1Schristoscom*	at ioat? slave ?
5871.1Schristos
5881.1Schristos# Parallel Printer Interfaces
5891.1Schristos
5901.1Schristos# PCI parallel printer interfaces
5911.1Schristoslpt*	at puc? port ?			# || ports on "universal" comm boards
5921.1Schristos
5931.1Schristos# ISA parallel printer interfaces
5941.1Schristoslpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
5951.1Schristoslpt1	at isa? port 0x278
5961.1Schristoslpt2	at isa? port 0x3bc
5971.1Schristos
5981.1Schristos# Hardware monitors
5991.1Schristos
6001.80Spgoyette# Temperatures
6011.80Spgoyetteamdsmn* at pci?				# AMD SMN Configuration
6021.80Spgoyetteamdzentemp* at amdsmnbus?		# AMD Ryzen Family 17h CPU temp sensors
6031.80Spgoyette
6041.57Schristosamdnb_misc* at pci?			# AMD NB Misc Configuration
6051.57Schristosamdtemp* at amdnb_misc?  		# AMD CPU Temperature sensors
6061.57Schristos
6071.57Schristos# Winbond LPC Super I/O
6081.57Schristoswbsio*	at isa? port 0x2e
6091.57Schristoswbsio*	at isa? port 0x4e
6101.57Schristos
6111.57Schristos# IBM Hawk Integrated Systems Management Processor
6121.89Sthorpejibmhawk0	at iic? addr 0x37
6131.57Schristos
6141.82Spgoyette# Intel Integrated Memory Controller SMBus (experimental)
6151.82Spgoyetteimc* at pci? dev ? function ?		# Intel Integrated Memory Controller,
6161.82Spgoyetteimcsmb* at imc?				# the associated SMBus controller,
6171.82Spgoyetteiic* at imcsmb?				# and the SMBus itself
6181.82Spgoyette
6191.57Schristos# LM7[89] and compatible hardware monitors
6201.57Schristos# Use flags to select temp sensor type (see lm(4) man page for details)
6211.57Schristoslm0	at isa?	port 0x290 flags 0x0	# other common ports: 0x280, 0x310
6221.57Schristoslm*	at wbsio?
6231.57Schristos
6241.57Schristos# SMSC LPC47B397 hardware monitor functions
6251.57Schristossmsc0	at isa? port 0x02e
6261.57Schristos
6271.57Schristos# SMSC LPC47M192 hardware monitor
6281.89Sthorpejsmscmon*	at iic? addr 0x2c
6291.89Sthorpejsmscmon*	at iic? addr 0x2d	# (alternate address)
6301.57Schristos
6311.1Schristos# AMD 768 and 8111 power/ACPI controllers
6321.1Schristosamdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
6331.1Schristosiic*	at amdpm?			# sensors below are on this bus
6341.1Schristos
6351.1Schristos# Acer Labs M7101 SMBus controller
6361.1Schristosalipm*	at pci? dev ? function ?
6371.1Schristosiic*	at alipm?
6381.1Schristos
6391.1Schristos# Intel ICH SMBus controller
6401.1Schristosichsmb* at pci? dev ? function ?
6411.1Schristosiic*	at ichsmb?
6421.1Schristos
6431.1Schristos# NVIDIA nForce2/3/4 SMBus controller
6441.1Schristosnfsmbc* at pci? dev ? function ?
6451.1Schristosnfsmb*	at nfsmbc?
6461.1Schristosiic*	at nfsmb?
6471.1Schristos
6481.1Schristos# Intel PIIX4 power management controllers
6491.1Schristospiixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
6501.1Schristosiic*	at piixpm?			# SMBus on PIIX4
6511.1Schristos
6521.75Sbouyer# I2C controller as found in some Intel PCH devices.
6531.75Sbouyerdwiic*		at pci?			# I2C controller
6541.75Sbouyeriic*		at dwiic?
6551.75Sbouyer
6561.1Schristos# dbCool Thermal monitor and fan controller
6571.89Sthorpejdbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
6581.89Sthorpejdbcool* at iic? addr 0x2D		# Tyan S2881
6591.89Sthorpejdbcool* at iic? addr 0x2E		# Tyan S2882-D
6601.1Schristos
6611.1Schristos# IBM Hawk Integrated Systems Management Processor
6621.89Sthorpejibmhawk0	at iic?	addr 0x37
6631.1Schristos
6641.1Schristos# LM7[89] and compatible hardware monitors
6651.1Schristos# Use flags to select temp sensor type (see lm(4) man page for details)
6661.89Sthorpejlm0	at iic?	addr 0x2e flags 0x0
6671.1Schristos
6681.1Schristos# SMSC LPC47M192 hardware monitor
6691.89Sthorpejsmscmon*	at iic? addr 0x2c
6701.89Sthorpej#smscmon*	at iic? addr 0x2d	# (alternate address)
6711.1Schristos
6721.1Schristos# IBM Thinkpad Active Protection System
6731.1Schristosaps0	at isa? port 0x1600
6741.1Schristos
6751.1Schristos# Fintek Super I/O with hardware monitor
6761.1Schristosfinsio0 	at isa? port 0x4e
6771.1Schristos
6781.1Schristos# iTE IT87xxF Super I/O with watchdog and sensors support
6791.1Schristositesio0 	at isa? port 0x2e
6801.1Schristos
6811.1Schristos# Winbond LPC Super I/O
6821.1Schristoswbsio*	at isa? port 0x2e
6831.1Schristoswbsio*	at isa? port 0x4e
6841.1Schristos
6851.1Schristos# LM7[89] and compatible hardware monitors
6861.1Schristoslm0	at isa?	port 0x290 flags 0x0	# other common: 0x280, 0x310
6871.1Schristoslm*	at wbsio?
6881.1Schristos
6891.1Schristos# SMSC LPC47B397 hardware monitor functions
6901.1Schristossmsc0	at isa? port 0x02e
6911.1Schristos
6921.1Schristos# PC87366 hardware monitor
6931.1Schristosnsclpcsio*	at isa?
6941.1Schristosgpio*		at nsclpcsio?
6951.1Schristos
6961.1Schristos# Abit uGuru Hardware system monitor
6971.1Schristosug0	at isa? port 0xe0
6981.1Schristos
6991.1Schristos# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer
7001.1Schristosviaenv* 	at pci? dev ? function ?
7011.1Schristos
7021.1Schristos# Serial Presence Detect capable memory modules and optional temp sensors
7031.89Sthorpejspdmem* at iic? addr 0x50
7041.89Sthorpejspdmem* at iic? addr 0x51
7051.89Sthorpejspdmem* at iic? addr 0x52
7061.89Sthorpejspdmem* at iic? addr 0x53
7071.89Sthorpejspdmem* at iic? addr 0x54
7081.89Sthorpejspdmem* at iic? addr 0x55
7091.89Sthorpejspdmem* at iic? addr 0x56
7101.89Sthorpejspdmem* at iic? addr 0x57
7111.89Sthorpejsdtemp* at iic? addr 0x18
7121.89Sthorpejsdtemp* at iic? addr 0x19
7131.89Sthorpejsdtemp* at iic? addr 0x1a
7141.89Sthorpejsdtemp* at iic? addr 0x1b
7151.89Sthorpejsdtemp* at iic? addr 0x1c
7161.89Sthorpejsdtemp* at iic? addr 0x1d
7171.89Sthorpejsdtemp* at iic? addr 0x1e
7181.89Sthorpejsdtemp* at iic? addr 0x1f
7191.1Schristos
7201.75Sbouyer# I2C HID devices
7211.75Sbouyerihidev* at iic?
7221.75Sbouyer
7231.75Sbouyer# I2C Mice
7241.75Sbouyerims*	at ihidev? reportid ?
7251.75Sbouyerwsmouse* at ims? mux 0
7261.75Sbouyer
7271.120Stnn# I2C Displays
7281.120Stnnssdfb*	at iic?
7291.120Stnn
7301.1Schristos# I2O devices
7311.1Schristosiop*	at pci? dev ? function ?	# I/O processor
7321.1Schristosiopsp*	at iop? tid ?			# SCSI/FC-AL ports
7331.1Schristosld*	at iop? tid ?			# block devices
7341.1Schristosdpti*	at iop? tid 0			# DPT/Adaptec control interface
7351.1Schristos
7361.1Schristos# GPIO devices
7371.1Schristosgpio*	at gpiosim?
7381.1Schristos
7391.1Schristos# 1-Wire support
7401.1Schristosgpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
7411.1Schristosgpioow* 	at gpio?
7421.1Schristosonewire*	at gpioow?
7431.1Schristos
7441.1Schristos# 1-Wire devices
7451.1Schristosowtemp* 	at onewire?			# Temperature sensors
7461.1Schristos
7471.36Smsaitoh# I2C support
7481.36Smsaitohgpioiic*	at gpio?
7491.36Smsaitohiic*		at gpioiic?
7501.36Smsaitoh
7511.1Schristos# Keylock support
7521.1Schristosgpiolock*	at gpio?
7531.1Schristos
7541.57Schristos# Pulsing GPIO pins in software
7551.57Schristosgpiopwm*	at gpio?
7561.57Schristos
7571.1Schristos# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio)
7581.1Schristossoekrisgpio0	at isa? port 0x680
7591.1Schristos
7601.1Schristos# SCSI Controllers and Devices
7611.1Schristos
7621.1Schristos# PCI SCSI controllers
7631.1Schristosadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
7641.1Schristosadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
7651.1Schristosahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
7661.1Schristosahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
7671.1Schristosbha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
7681.1Schristosdpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
7691.1Schristosiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
7701.1Schristosisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
7711.1Schristosmfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
7721.108Sbouyermfii*	at pci? dev ? function ?	# LSI MegaRAID SAS (Fusion and newer)
7731.1Schristosmly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
7741.1Schristosmpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030 (Fusion-MPT)
7751.1Schristosmpii*	at pci? dev ? function ?	# LSI Logic Fusion-MPT II
7761.1Schristosnca*	at pci? dev ? function ?	# Domex DMX-3191D
7771.1Schristosnjs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
7781.1Schristospcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
7791.1Schristossiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
7801.1Schristosesiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
7811.1Schristosoptions 	SIOP_SYMLED		# drive the act. LED in software
7821.1Schristostrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
7831.1Schristos
7841.1Schristos# PCMCIA SCSI controllers
7851.1Schristosaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
7861.1Schristosesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
7871.1Schristosnca*	at pcmcia? function ?		# NCR53C400 SCSI
7881.1Schristosspc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
7891.1Schristos
7901.1Schristos# ISA SCSI controllers
7911.1Schristosadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02] SCSI
7921.1Schristosaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
7931.1Schristosaha1	at isa? port 0x334 irq ? drq ?
7941.1Schristosaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
7951.1Schristosbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
7961.1Schristosbha1	at isa? port 0x334 irq ? drq ?
7971.1Schristos# The "nca" and "dpt" probes might give false hits or hang your machine.
7981.1Schristosdpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
7991.1Schristosesp0	at isa? port 0x230 irq ?	# Emulex ESP406 and Qlogic FAS408 SCSI
8001.1Schristosnca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
8011.1Schristosnca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
8021.1Schristossea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
8031.1Schristosuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
8041.1Schristosuha1	at isa? port 0x340 irq ? drq ?
8051.1Schristoswds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
8061.1Schristoswds1	at isa? port 0x358 irq 11 drq 5
8071.1Schristos
8081.1Schristos# CardBus SCSI cards
8091.1Schristosadv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
8101.1Schristosahc*	at cardbus? function ?	# Adaptec ADP-1480
8111.1Schristosnjs*	at cardbus? function ?	# Workbit NinjaSCSI-32
8121.1Schristos
8131.1Schristos# SCSI bus support
8141.1Schristosscsibus* at scsi?
8151.1Schristos
8161.1Schristos# SCSI devices
8171.1Schristossd*	at scsibus? target ? lun ?	# SCSI disk drives
8181.1Schristosst*	at scsibus? target ? lun ?	# SCSI tape drives
8191.1Schristoscd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
8201.1Schristosch*	at scsibus? target ? lun ?	# SCSI autochangers
8211.1Schristosses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
8221.1Schristosss*	at scsibus? target ? lun ?	# SCSI scanners
8231.1Schristosse*	at scsibus? target ? lun ?	# SCSI ethernet adapters
8241.1Schristosuk*	at scsibus? target ? lun ?	# SCSI unknown
8251.1Schristos
8261.1Schristos# SCSI NIC
8271.1Schristosse* at scsibus? target ? lun ?
8281.1Schristos
8291.1Schristos# RAID controllers and devices
8301.1Schristosaac*	at pci? dev ? function ?	# Adaptec AAC family
8311.1Schristosamr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
8321.1Schristosarcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
8331.1Schristoscac*	at pci? dev ? function ?	# Compaq PCI array controllers
8341.1Schristosciss*	at pci? dev ? function ?	# HP Smart Array controllers
8351.81Sjoergoptions CISS_NO_INTERRUPT_HACK
8361.81Sjoerg
8371.1Schristosicp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
8381.1Schristosmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
8391.1Schristostwa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
8401.1Schristostwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
8411.1Schristos
8421.1Schristosld*	at aac? unit ?			# logical disk devices
8431.1Schristosld*	at amr? unit ?
8441.1Schristosld*	at cac? unit ?
8451.1Schristosld*	at icp? unit ?
8461.1Schristosld*	at twa? unit ?
8471.1Schristosld*	at twe? unit ?
8481.1Schristosld*	at mlx? unit ?
8491.1Schristos
8501.1Schristosicpsp*	at icp? unit ?			# SCSI pass-through
8511.1Schristos
8521.1Schristos# IDE and related devices
8531.1Schristos# PCI IDE controllers - see pciide(4) for supported hardware.
8541.1Schristos# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
8551.1Schristos# how to set up DMA modes for this chip. This may work, or may cause
8561.1Schristos# a machine hang with some controllers.
8571.1Schristospciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
8581.1Schristosacardide*	at pci? dev ? function ?	# Acard IDE controllers
8591.1Schristosaceride*	at pci? dev ? function ?	# Acer Lab IDE controllers
8601.1Schristosahcisata*	at pci? dev ? function ?	# AHCI SATA controllers
8611.1Schristosartsata*	at pci? dev ? function ?	# Intel i31244 SATA controller
8621.1Schristoscmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
8631.1Schristoscypide* 	at pci? dev ? function ?	# Cypress IDE controllers
8641.1Schristosgeodeide*	at pci? dev ? function ?	# AMD Geode IDE controllers
8651.1Schristoshptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
8661.1Schristositeide* 	at pci? dev ? function ?	# IT Express IDE controllers
8671.1Schristosixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
8681.1Schristosjmide*		at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
8691.1Schristosahcisata*	at jmide?
8701.1Schristosmvsata* 	at pci? dev ? function ?	# Marvell Hercules-I/II
8711.1Schristosoptiide*	at pci? dev ? function ?	# Opti IDE controllers
8721.1Schristospiixide*	at pci? dev ? function ?	# Intel IDE controllers
8731.1Schristospdcide* 	at pci? dev ? function ?	# Promise IDE controllers
8741.1Schristospdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
8751.1Schristosrccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
8761.1Schristosrdcide* 	at pci? dev ? function ?	# RDC PMX-1000 IDE controllers
8771.1Schristossatalink*	at pci? dev ? function ?	# SiI SATALink controllers
8781.1Schristosschide* 	at pci? dev ? function ?	# Intel SCH IDE controllers
8791.1Schristossiisata*	at pci? dev ? function ?	# SiI SteelVine controllers
8801.1Schristossiside* 	at pci? dev ? function ?	# SiS IDE controllers
8811.49Sryoslide*		at pci? dev ? function ?	# Symphony Labs IDE controllers
8821.1Schristossvwsata*	at pci? dev ? function ?	# ServerWorks SATA controllers
8831.1Schristosstpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
8841.1Schristostoshide*	at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
8851.1Schristosviaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
8861.1Schristos
8871.1Schristos# PCMCIA IDE controllers
8881.1Schristoswdc*	at pcmcia? function ?
8891.1Schristos
8901.1Schristos# CardBus IDE controllers
8911.1Schristosnjata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
8921.1Schristossiisata* at cardbus? function ? 		# SiI SteelVine controllers
8931.1Schristos
8941.1Schristos# ISA ST506, ESDI, and IDE controllers
8951.1Schristos# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
8961.1Schristos# fall back to 16bits I/O if 32bits I/O are not functional).
8971.1Schristos# Some controllers pass the initial 32bit test, but will fail later.
8981.1Schristoswdc0	at isa? port 0x1f0 irq 14 flags 0x00
8991.1Schristoswdc1	at isa? port 0x170 irq 15 flags 0x00
9001.1Schristos
9011.1Schristos# ATA (IDE) bus support
9021.1Schristosatabus* at ata?
9031.1Schristosoptions 	ATADEBUG
9041.1Schristos
9051.1Schristos# IDE drives
9061.1Schristos# Flags are used only with controllers that support DMA operations
9071.1Schristos# and mode settings (e.g. some pciide controllers)
9081.1Schristos# The lowest order four bits (rightmost digit) of the flags define the PIO
9091.1Schristos# mode to use, the next set of four bits the DMA mode and the third set the
9101.1Schristos# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
9111.1Schristos# to use, and the last bit must be 1 for this setting to be used.
9121.1Schristos# For DMA and UDMA, 0xf (1111) means 'disable'.
9131.1Schristos# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
9141.1Schristos# (0xc=1100, 0xa=1010, 0xf=1111)
9151.1Schristos# 0x0000 means "use whatever the drive claims to support".
9161.1Schristoswd*	at atabus? drive ? flags 0x0000
9171.1Schristos
9181.1Schristos# ATA RAID configuration support, as found on some Promise controllers.
9191.1Schristospseudo-device	ataraid
9201.1Schristosld*	at ataraid? vendtype ? unit ?
9211.1Schristos
9221.1Schristos# ATAPI bus support
9231.1Schristosatapibus* at atapi?
9241.1Schristos
9251.1Schristos# ATAPI devices
9261.1Schristos# flags have the same meaning as for IDE drives.
9271.1Schristoscd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
9281.1Schristossd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
9291.1Schristosst*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
9301.1Schristosuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
9311.1Schristos
9321.1Schristos
9331.34Snonaka# NVM Express controllers and devices
9341.34Snonakanvme*	at pci? dev ? function ?
9351.34Snonakald*	at nvme? nsid ?
9361.34Snonaka
9371.34Snonaka
9381.1Schristos# Miscellaneous mass storage devices
9391.1Schristos
9401.1Schristos# ISA floppy
9411.1Schristosfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
9421.1Schristos#fdc1	at isa? port 0x370 irq ? drq ?
9431.1Schristosfd*	at fdc? drive ?			# the drives themselves
9441.1Schristos# some machines need you to do this instead of fd*
9451.1Schristosfd0	at fdc0 drive 0
9461.1Schristos
9471.1Schristos# ISA CD-ROM devices
9481.1Schristosmcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
9491.1Schristos
9501.1Schristos# ISA tape devices
9511.1Schristos# note: the wt driver conflicts unpleasantly with SMC boards at the
9521.1Schristos# same I/O address. The probe reprograms their EEPROMs. Don't
9531.1Schristos# uncomment it unless you are actually using it.
9541.1Schristoswt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
9551.1Schristos
9561.1Schristos# Network Interfaces
9571.1Schristos
9581.1Schristos# PCI network interfaces
9591.1Schristosage*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
9601.1Schristosalc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
9611.1Schristosale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
9621.57Schristosan*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
9631.1Schristosath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
9641.1Schristosathn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
9651.1Schristosatw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
9661.1Schristosbce*	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
9671.1Schristosbge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
9681.1Schristosbnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
9691.1Schristosbwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
9701.1Schristoscas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
9711.1Schristosdge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
9721.109Sjdolecekena*	at pci? dev ? function ?	# Amazon Elastic Network Adapter
9731.1Schristosep*	at pci? dev ? function ?	# 3Com 3c59x
9741.1Schristosepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
9751.1Schristosesh*	at pci? dev ? function ?	# Essential HIPPI card
9761.1Schristoset*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
9771.1Schristosex*	at pci? dev ? function ?	# 3Com 3c90x[BC]
9781.1Schristosfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
9791.1Schristosfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
9801.1Schristosgem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
9811.1Schristosgsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
9821.1Schristoshme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
9831.1Schristosipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
9841.1Schristosiwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
9851.25Snonakaiwm*	at pci? dev ? function ?	# Intel Wireless WiFi Link 7xxx
9861.1Schristosiwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
9871.3Schristosixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
9881.57Schristosixv*	at pci? dev ? function ?	# Intel 8259x 10G virtual function
9891.57Schristosjme*	at pci? dev ? function ?	# JMicron JMC2[56]0 ethernet
9901.57Schristoshme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
9911.1Schristosle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
9921.1Schristoslii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
9931.49Sryomalo*	at pci? dev ? function ?	# Marvell Libertas Wireless
9941.123Stnnmcx*	at pci? dev ? function ?	# Mellanox 5th generation Ethernet
9951.1Schristosmskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
9961.1Schristosmsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
9971.1Schristosmtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
9981.1Schristosne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
9991.1Schristosnfe*	at pci? dev ? function ?	# NVIDIA nForce Ethernet
10001.1Schristosntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
10011.1Schristospcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
10021.1Schristosral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
10031.1Schristosre*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
10041.1Schristosrtk*	at pci? dev ? function ?	# Realtek 8129/8139
10051.1Schristosrtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
10061.57Schristosrtwn*	at pci? dev ? function ?	# Realtek 8188CE/8192CE 802.11b/g/n
10071.1Schristossf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
10081.1Schristossip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
10091.1Schristosskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
10101.1Schristossk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
10111.1Schristosste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
10121.1Schristosstge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
10131.1Schristosti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
10141.1Schristostl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
10151.1Schristostlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
10161.1Schristostxp*	at pci? dev ? function ?	# 3com 3cr990
10171.1Schristosvge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
10181.9Shikaruvmx*	at pci? dev ? function ?	# VMware VMXNET3
10191.1Schristosvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
10201.1Schristosvte*	at pci? dev ? function ?	# Vortex86 RDC R6040 Fast Ethernet
10211.1Schristoswi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
10221.1Schristoswm*	at pci? dev ? function ?	# Intel 8254x gigabit
10231.1Schristoswpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
10241.1Schristosxge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
10251.1Schristos
10261.1Schristos# PCMCIA network interfaces
10271.1Schristosan*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
10281.1Schristosawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
10291.1Schristoscnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
10301.1Schristoscs*	at pcmcia? function ?		# CS89xx Ethernet
10311.1Schristosep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
10321.6Schsmalo*	at pcmcia? function ?		# Marvell Libertas
10331.1Schristosmbe*	at pcmcia? function ?		# MB8696x based Ethernet
10341.1Schristosne*	at pcmcia? function ?		# NE2000-compatible Ethernet
10351.1Schristosray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
10361.1Schristossm*	at pcmcia? function ?		# Megahertz Ethernet
10371.1Schristos# tr at pcmcia has problems with Cardbus bridges
10381.1Schristostr*	at pcmcia? function ?		# TROPIC based Token-Ring
10391.1Schristoswi*	at pcmcia? function ?		# Lucent/Intersil WaveLAN/IEEE (802.11)
10401.1Schristosxirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
10411.1Schristoscom*	at xirc?
10421.1Schristosxi*	at xirc?
10431.1Schristosmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
10441.1Schristoscom*	at mhzc?
10451.1Schristossm*	at mhzc?
10461.1Schristos
10471.1Schristos# ISA network interfaces
10481.1Schristosate0	at isa? port 0x2a0 irq ?		# AT1700
10491.1Schristoscs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
10501.1Schristosec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
10511.1Schristoseg0	at isa? port 0x280 irq 9		# 3c505 Ethernet cards
10521.1Schristosel0	at isa? port 0x300 irq 9		# 3c501 Ethernet cards
10531.1Schristosep*	at isa? port ? irq ?			# 3c509 Ethernet cards
10541.1Schristosef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3c507
10551.1Schristosai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
10561.1Schristosfmv0	at isa? port 0x2a0 irq ?		# FMV-181/182
10571.1Schristosix0	at isa? port 0x300 irq 10		# EtherExpress/16
10581.1Schristosiy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
10591.1Schristoslc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
10601.1Schristosdepca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
10611.1Schristosle*	at depca?
10621.1Schristosnele0	at isa? port 0x320 irq 9 drq 7		# NE2100
10631.1Schristosle*	at nele?
10641.1Schristosntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
10651.1Schristosbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
10661.1Schristosle*	at bicc?
10671.1Schristosne0	at isa? port 0x280 irq 9		# NE[12]000 Ethernet cards
10681.1Schristosne1	at isa? port 0x300 irq 10
10691.1Schristossm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
10701.1Schristostr0	at isa? port 0xa20 iomem 0xd8000 irq ?	# IBM TROPIC based Token-Ring
10711.1Schristostr1	at isa? port 0xa24 iomem 0xd0000 irq ?	# IBM TROPIC based Token-Ring
10721.1Schristostr*	at isa? port ? irq ?			# 3Com TROPIC based Token-Ring
10731.1Schristoswe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
10741.1Schristoswe1	at isa? port 0x300 iomem 0xcc000 irq 10
10751.1Schristos
10761.1Schristos# CardBus network cards
10771.1Schristosath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
10781.1Schristosathn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n)
10791.1Schristosatw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
10801.1Schristosex*	at cardbus? function ?	# 3Com 3c575TX
10811.1Schristosfxp*	at cardbus? function ?	# Intel i8255x
10821.111Sjakllschmalo*	at cardbus? function ?	# Marvell Libertas Wireless
10831.1Schristosral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
10841.1Schristosre*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
10851.1Schristosrtk*	at cardbus? function ?	# Realtek 8129/8139
10861.1Schristosrtw*	at cardbus? function ?	# Realtek 8180L (802.11)
10871.1Schristostlp*	at cardbus? function ?	# DECchip 21143
10881.1Schristos
10891.1Schristos# MII/PHY support
10901.1Schristosacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
10911.1Schristosamhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
10921.1Schristosatphy*	at mii? phy ?			# Attansic/Atheros PHYs
10931.1Schristosbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
10941.1Schristosbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
10951.1Schristosciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
10961.1Schristosdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
10971.1Schristosetphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
10981.1Schristosexphy*	at mii? phy ?			# 3Com internal PHYs
10991.1Schristosgentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
11001.1Schristosglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
11011.1Schristosgphyter* at mii? phy ?			# NS83861 Gig-E PHY
11021.1Schristosicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
11031.1Schristosigphy*	at mii? phy ?			# Intel IGP01E1000
11041.1Schristosihphy*	at mii? phy ?			# Intel 82577 PHYs
11051.1Schristosikphy*	at mii? phy ?			# Intel 82563 PHYs
11061.1Schristosinphy*	at mii? phy ?			# Intel 82555 PHYs
11071.1Schristosiophy*	at mii? phy ?			# Intel 82553 PHYs
11081.124Smsaitohipgphy* at mii? phy ?			# IC PLUS IP1000A/IP1001 PHYs
11091.1Schristoslxtphy* at mii? phy ?			# Level One LXT-970 PHYs
11101.1Schristosmakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
11111.1Schristosnsphy*	at mii? phy ?			# NS83840 PHYs
11121.1Schristosnsphyter* at mii? phy ? 		# NS83843 PHYs
11131.1Schristospnaphy* at mii? phy ?			# generic HomePNA PHYs
11141.1Schristosqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
11151.1Schristosrdcphy* at mii? phy ?			# RDC R6040 internal PHY
11161.1Schristosrgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
11171.1Schristosrlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
11181.1Schristossqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
11191.1Schristostlphy*	at mii? phy ?			# ThunderLAN PHYs
11201.1Schristostqphy*	at mii? phy ?			# TDK Semiconductor PHYs
11211.1Schristosukphy*	at mii? phy ?			# generic unknown PHYs
11221.1Schristosurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
11231.1Schristos
11241.1Schristos
11251.1Schristos# USB Controller and Devices
11261.1Schristos
11271.1Schristos# PCI USB controllers
11281.57Schristosxhci*	at pci?	dev ? function ?	# eXtensible Host Controller
11291.1Schristosehci*	at pci?	dev ? function ?	# Enhanced Host Controller
11301.1Schristosohci*	at pci?	dev ? function ?	# Open Host Controller
11311.1Schristosuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
11321.1Schristosxhci*	at pci?	dev ? function ?	# eXtensible Host Controller
11331.1Schristos
11341.1Schristos# CardBus USB controllers
11351.1Schristosehci*	at cardbus? function ?		# Enhanced Host Controller
11361.1Schristosohci*	at cardbus? function ?		# Open Host Controller
11371.1Schristosuhci*	at cardbus? function ?		# Universal Host Controller (Intel)
11381.1Schristos
11391.1Schristos# ISA USB controllers
11401.1Schristosslhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
11411.1Schristos
11421.1Schristos# PCMCIA USB controllers
11431.1Schristosslhci*	at pcmcia? function ?		# ScanLogic SL811HS
11441.1Schristos
11451.1Schristos# USB bus support
11461.57Schristosusb*	at xhci?
11471.1Schristosusb*	at ehci?
11481.1Schristosusb*	at ohci?
11491.1Schristosusb*	at slhci?
11501.1Schristosusb*	at uhci?
11511.1Schristosusb*	at xhci?
11521.1Schristos
11531.1Schristos# USB Hubs
11541.1Schristosuhub*	at usb?
11551.1Schristosuhub*	at uhub? port ?
11561.1Schristos
11571.1Schristos# USB HID device
11581.1Schristosuhidev* at uhub? port ? configuration ? interface ?
11591.1Schristos
11601.1Schristos# USB Mice
11611.1Schristosums*	at uhidev? reportid ?
11621.1Schristoswsmouse* at ums? mux 0
11631.1Schristos
11641.1Schristos# USB Touchscreens
11651.1Schristosuts*	at uhidev? reportid ?
11661.1Schristoswsmouse* at uts? mux 0
11671.1Schristos
11681.1Schristos# USB eGalax touch-panel
11691.1Schristosuep*	at uhub? port ?
11701.1Schristoswsmouse* at uep? mux 0
11711.1Schristos
11721.1Schristos# USB Apple trackpad
11731.1Schristosuatp*	at uhidev? reportid ?
11741.1Schristoswsmouse* at uatp? mux 0
11751.1Schristos
11761.1Schristosuyurex* at uhidev? reportid ?
11771.1Schristos
11781.1Schristos# USB Keyboards
11791.1Schristosukbd*	at uhidev? reportid ?
11801.1Schristoswskbd*	at ukbd? console ? mux 1
11811.1Schristos
11821.1Schristos# USB TEMPer and TEMPerHUM
11831.1Schristosuthum*	at uhidev? reportid ?
11841.1Schristos
11851.1Schristos# USB serial adapter
11861.1Schristosucycom* at uhidev? reportid ?
11871.1Schristos
11881.1Schristos# USB Generic HID devices
11891.1Schristosuhid*	at uhidev? reportid ?
11901.1Schristos
11911.1Schristos# USB LCDs and USB-VGA adaptors
11921.1Schristosudl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
11931.1Schristoswsdisplay* at udl?
11941.1Schristos
11951.1Schristos# USB Printer
11961.1Schristosulpt*	at uhub? port ? configuration ? interface ?
11971.1Schristos
11981.1Schristos# USB Modem
11991.1Schristosumodem* at uhub? port ? configuration ?
12001.1Schristosucom*	at umodem?
12011.1Schristos
12021.1Schristos# Option N.V. Wireless WAN modems
12031.1Schristosuhso*	at uhub? port ? configuration ?
12041.1Schristos
12051.1Schristos# USB Mass Storage
12061.1Schristosumass*	at uhub? port ? configuration ? interface ?
12071.1Schristoswd*	at umass?
12081.1Schristos
12091.1Schristos# USB audio
12101.1Schristosuaudio* at uhub? port ? configuration ?
12111.1Schristos
12121.1Schristos# USB MIDI
12131.1Schristosumidi* at uhub? port ? configuration ?
12141.1Schristos
12151.1Schristos# USB IrDA
12161.1Schristos# USB-IrDA bridge spec
12171.1Schristosuirda* at uhub? port ? configuration ? interface ?
12181.1Schristosirframe* at uirda?
12191.1Schristos
12201.1Schristosstuirda* at uhub? port ? configuration ? interface ?
12211.1Schristosirframe* at stuirda?
12221.1Schristos
12231.1Schristos# SigmaTel STIr4200 USB/IrDA Bridge
12241.1Schristosustir* at uhub? port ?
12251.1Schristosirframe* at ustir?
12261.1Schristos
12271.1Schristos# KingSun/DonShine USB/IrDA Bridge
12281.1Schristosudsir*	at uhub? port ?
12291.1Schristosirframe* at udsir?
12301.1Schristos
12311.1Schristos# Windows Media Center IR tranceiver
12321.1Schristosirmce*	at uhub? port ?
12331.1Schristoscir*	at irmce?
12341.1Schristos
12351.1Schristos# USB Ethernet adapters
12361.1Schristosaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
12371.1Schristosaxe*	at uhub? port ?		# ASIX AX88172 based adapters
12381.57Schristosaxen*	at uhub? port ?		# ASIX AX88178a/AX88179 based adapters
12391.1Schristoscdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
12401.1Schristoscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
12411.1Schristoskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
12421.57Schristos#mos*	at uhub? port ?		# Moschip MCS7730/MCS7830/MCS7832 based adapters
12431.99Srinmue*	at uhub? port ?		# Microchip LAN75xx/LAN78xx based adapters
12441.1Schristosudav*	at uhub? port ?		# Davicom DM9601 based adapters
12451.96Skhorbenumb*	at uhub? port ?		# Mobile Broadband Interface Model (EXPERIMENTAL)
12461.115Srinure*	at uhub? port ?		# Realtek RTL8152/RTL8153 based adapters
12471.1Schristosurl*	at uhub? port ?		# Realtek RTL8150L based adapters
12481.46Sdhollandurndis* at uhub? port ? 	# Microsoft RNDIS specification
12491.1Schristos
12501.1Schristos# USB 802.11 adapters
12511.1Schristosatu*	at uhub? port ?		# Atmel AT76C50XX based adapters
12521.1Schristosathn*	at uhub? port ?		# Atheros AR9002U
12531.1Schristosotus*	at uhub? port ?		# Atheros AR9001U
12541.1Schristosural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
12551.1Schristosrum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
12561.1Schristosrun*	at uhub? port ?		# Ralink Technology RT(2[78]|30)00 802.11a/b/g/n
12571.1Schristosupgt*	at uhub? port ?		# Intersil PrismGT
12581.1Schristosurtw*	at uhub? port ?		# Realtek RTL8187/RTL8187B 802.11b/g
12591.1Schristosurtwn*	at uhub? port ?		# Realtek RTL8188CU/RTL8192CU 802.11b/g/n
12601.1Schristoszyd*	at uhub? port ?		# Zydas ZD1211
12611.1Schristos
12621.1Schristos# Prolific PL2301/PL2302 host-to-host adapter
12631.1Schristosupl*	at uhub? port ?
12641.1Schristos
12651.1Schristos# Serial adapters
12661.1Schristosuark*	at uhub? port ?		# ArkMicroChips 3116 serial adapter
12671.1Schristosucom*	at uark? portno?
12681.1Schristos
12691.1Schristosubsa*	at uhub? port ?		# Belkin serial adapter
12701.1Schristosucom*	at ubsa? portno ?
12711.1Schristos
12721.1Schristosuchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
12731.1Schristosucom*	at uchcom? portno ?
12741.1Schristos
12751.1Schristosuftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
12761.1Schristosucom*	at uftdi? portno ?
12771.1Schristos
12781.1Schristosuipaq*	at uhub? port ?		# iPAQ PDAs
12791.1Schristosucom*	at uipaq? portno ?
12801.1Schristos
12811.1Schristosumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
12821.1Schristosucom*	at umct? portno ?
12831.1Schristos
12841.1Schristosuplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
12851.1Schristosucom*	at uplcom? portno ?
12861.1Schristos
12871.1Schristosuslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
12881.1Schristosucom*	at uslsa? portno ?
12891.1Schristos
12901.1Schristosuvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
12911.1Schristosucom*	at uvscom? portno ?
12921.1Schristos
12931.1Schristosuark* at uhub? port ?
12941.1Schristosucom*	at uark? portno ?
12951.1Schristos
12961.119Smrgumcs* at uhub? port ?		# Moschip MCS7xxx serial adapter
12971.119Smrgucom*	at umcs? portno ?
12981.1Schristos
12991.1Schristosuhmodem* at uhub?
13001.1Schristosucom*	at uhmodem? portno ?
13011.1Schristos
13021.1Schristos# RIM BlackBerry
13031.1Schristosuberry* at uhub? port ?
13041.1Schristos
13051.1Schristos# Apple iPad
13061.1Schristosuipad* at uhub? port ?
13071.1Schristos
13081.1Schristos# Diamond Multimedia Rio 500
13091.1Schristosurio*	at uhub? port ?
13101.1Schristos
13111.1Schristos# USB Handspring Visor
13121.1Schristosuvisor* at uhub? port ?
13131.1Schristosucom*	at uvisor?
13141.1Schristos
13151.1Schristos# Kyocera AIR-EDGE PHONE
13161.1Schristosukyopon* at uhub? port ?
13171.1Schristosucom*	at ukyopon? portno ?
13181.1Schristos
13191.1Schristos# USB scanners
13201.1Schristosuscanner* at uhub? port ?
13211.1Schristos
13221.1Schristos# USB scanners that use SCSI emulation, e.g., HP5300
13231.1Schristosusscanner* at uhub? port ?
13241.1Schristos
13251.1Schristos# Topfield TF5000PVR range of DVB recorders
13261.1Schristosutoppy* at uhub? port ?
13271.1Schristos
13281.1Schristos# Y@P firmware loader
13291.1Schristosuyap* at uhub? port ?
13301.1Schristos
13311.1Schristos# D-Link DSB-R100 USB radio
13321.1Schristosudsbr*	at uhub? port ?
13331.1Schristosradio*	at udsbr?
13341.1Schristos
13351.1Schristos# USB Generic driver
13361.1Schristosugen*	at uhub? port ?
13371.1Schristos
13381.1Schristos# USB 3G datacards
13391.58Sparaumodeswitch* at uhub? port ?
13401.1Schristosu3g*	at uhub? port ?
13411.1Schristosucom*	at u3g?
13421.1Schristos
13431.1Schristos# USB generic serial port (e.g., data over cellular)
13441.1Schristosugensa* at uhub? port ?
13451.1Schristosucom*	at ugensa?
13461.1Schristos
13471.56Sriastrad# Araneus Alea I/II TRNG
13481.55Sriastradualea* at uhub? port ? configuration ? interface ?
13491.55Sriastrad
13501.1Schristos# IrDA and Consumer Ir devices
13511.1Schristos
13521.1Schristos# Toshiba Oboe
13531.1Schristosoboe*	at pci? dev ? function ?
13541.1Schristosirframe* at oboe?
13551.1Schristos
13561.1Schristos
13571.1Schristos# PCI IEEE1394 controllers
13581.1Schristosfwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
13591.1Schristos
13601.1Schristos# CardBus IEEE1394 controllers
13611.1Schristosfwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
13621.1Schristos
13631.1Schristosieee1394if* at fwohci?
13641.1Schristosfwip*	at ieee1394if?			# IP over IEEE1394
13651.1Schristossbp*	at ieee1394if? euihi ? euilo ?	# SCSI over IEEE1394
13661.1Schristos
13671.1Schristos
13681.1Schristos# SD/MMC/SDIO Controller and Device support
13691.1Schristos
13701.1Schristos# PCI SD/MMC controller
13711.1Schristossdhc*	at pci?				# SD Host Controller
13721.1Schristos
13731.1Schristos# CardBus SD/MMC controller
13741.1Schristossdhc*	at cardbus? function ?		# SD Host Controller
13751.1Schristos
13761.1Schristossdmmc*	at sdhc?			# SD/MMC bus
13771.1Schristosld*	at sdmmc?
13781.1Schristos
13791.1Schristos
13801.1Schristos# Audio Devices
13811.1Schristos
13821.1Schristos# PCI audio devices
13831.1Schristosauacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
13841.1Schristosauich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
13851.1Schristosauixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
13861.1Schristosautri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
13871.1Schristosauvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
13881.1Schristosazalia* at pci? dev ? function ?	# High Definition Audio
13891.1Schristosclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
13901.1Schristosclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
13911.1Schristoscmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
13921.1Schristoseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
13931.1Schristosemuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
13941.1Schristosesa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
13951.1Schristosesm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
13961.1Schristoseso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
13971.1Schristosfms*	at pci? dev ? function ?	# Forte Media FM801
13981.1Schristosgcscaudio* at pci? dev ? function ?	# AMD Geode CS5536 Companion Audio
13991.1Schristosneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
14001.1Schristossv*	at pci? dev ? function ?	# S3 SonicVibes
14011.1Schristosyds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
14021.1Schristos
14031.1Schristos# ISA audio devices
14041.1Schristos# the "aria" probe might give false hits
14051.1Schristosaria0	at isa? port 0x290 irq 10		# Aria
14061.1Schristosess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
14071.1Schristosgus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
14081.1Schristospas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
14091.1Schristossb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
14101.1Schristoswss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
14111.1Schristoscms0	at isa? port 0x220			# Creative Music System
14121.1Schristos
14131.1Schristos# OPL[23] FM synthesizers
14141.1Schristosopl0	at isa? port 0x388	# use only if not attached to sound card
14151.1Schristosopl*	at cmpci? flags 1
14161.1Schristosopl*	at eso?
14171.1Schristosopl*	at ess?
14181.1Schristosopl*	at fms?
14191.1Schristosopl*	at sb?
14201.1Schristosopl*	at sv?
14211.1Schristosopl*	at wss?
14221.1Schristosopl*	at yds?
14231.1Schristosopl*	at ym?
14241.1Schristos
14251.1Schristos# High Definition Audio
14261.1Schristoshdaudio*	at pci? dev ? function ?	# High Definition Audio
14271.1Schristoshdafg*		at hdaudiobus?
14281.1Schristos
14291.1Schristos# Audio support
14301.1Schristosaudio*	at audiobus?
14311.1Schristos
14321.1Schristos# MPU 401 UARTs
14331.1Schristosmpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
14341.1Schristosmpu*	at cmpci?
14351.1Schristosmpu*	at eso?
14361.1Schristosmpu*	at fms?
14371.1Schristosmpu*	at sb?
14381.1Schristosmpu*	at yds?
14391.1Schristosmpu*	at ym?
14401.1Schristos
14411.1Schristos# MIDI support
14421.1Schristosmidi*	at midibus?
14431.1Schristosmidi*	at pcppi?		# MIDI interface to the PC speaker
14441.1Schristos
14451.1Schristos# The spkr driver provides a simple tone interface to the built in speaker.
14461.44Schristosspkr*	at pcppi?		# PC speaker
14471.44Schristosspkr*	at audio?		# PC speaker (synthesized)
14481.60Spgoyettewsbell*	at spkr?		# Bell for wscons display
14491.41Snat
14501.1Schristos
14511.1Schristos# FM-Radio devices
14521.1Schristos# ISA radio devices
14531.1Schristosaz0	at isa? port 0x350	# Aztech/PackardBell FM Radio Card
14541.1Schristosaz1	at isa? port 0x358
14551.1Schristosrt0	at isa? port 0x20c	# AIMS Lab Radiotrack & compatible
14561.1Schristosrt1	at isa? port 0x284
14571.1Schristosrt2	at isa? port 0x30c
14581.1Schristosrt3	at isa? port 0x384
14591.1Schristosrtii0	at isa? port 0x20c	# AIMS Lab Radiotrack II FM Radio Card
14601.1Schristosrtii1	at isa? port 0x30c
14611.1Schristossf2r0	at isa? port 0x384	# SoundForte RadioLink SF16-FMR2 FM Radio Card
14621.1Schristos
14631.1Schristos# PCI radio devices
14641.1Schristosgtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
14651.1Schristos
14661.1Schristos# Radio support
14671.1Schristosradio*	at az?
14681.1Schristosradio*	at gtp?
14691.1Schristosradio*	at rt?
14701.1Schristosradio*	at rtii?
14711.1Schristosradio*	at sf2r?
14721.1Schristos
14731.1Schristos
14741.1Schristos# Video capture devices
14751.1Schristos
14761.57Schristosauvitek* at uhub?			# Auvitek AU0828 USB TV
14771.57Schristoscoram*	at pci? dev ? function ?	# Conexant CX23885 PCI-E TV
14781.57Schristoscxdtv*	at pci? dev ? function ?	# Conexant CX2388[0-3] PCI TV
14791.57Schristosemdtv*	at uhub?			# Empia EM28xx USB TV
14801.57Schristoscir*	at emdtv?
14811.57Schristospseye*	at uhub?			# Sony PLAYSTATION(R) Eye webcam
14821.57Schristosuvideo* at uhub?			# USB Video Class capture devices
14831.57Schristos
14841.1Schristosvideo*	at videobus?
14851.1Schristosdtv*	at dtvbus?
14861.1Schristos
14871.1Schristos
14881.1Schristos# TV cards
14891.1Schristos
14901.1Schristos# Brooktree 848/849/878/879 based TV cards
14911.1Schristosbktr*	at pci? dev ? function ?
14921.1Schristosradio*	at bktr?
14931.1Schristos
14941.1Schristos# Conexant CX2388[0-3]-based DTV cards
14951.1Schristoscxdtv*	at pci? dev ? function ?
14961.1Schristosiic*	at cxdtv?
14971.1Schristos
14981.1Schristos# Conexant CX23885-based TV cards
14991.1Schristoscoram*	at pci? dev ? function ?
15001.1Schristosiic*	at coram?
15011.1Schristos
15021.1Schristosisv*	at isa? port 0x3e0		# IDEC Supervision/16 image capture
15031.1Schristos
15041.1Schristos# Bluetooth Controller and Device support
15051.1Schristos
15061.1Schristos# Bluetooth PCMCIA Controllers
15071.1Schristosbt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
15081.1Schristosbtbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
15091.1Schristos
15101.1Schristos# Bluetooth SDIO Controller
15111.1Schristossbt* at sdmmc?
15121.1Schristos
15131.1Schristos# Bluetooth USB Controllers
15141.1Schristosubt* at uhub? port ?
15151.1Schristosaubtfwl* at uhub? port ?
15161.1Schristos
15171.1Schristos# Bluetooth Device Hub
15181.1Schristosbthub* at bcsp?
15191.1Schristosbthub* at bt3c?
15201.1Schristosbthub* at btbc?
15211.1Schristosbthub* at btuart?
15221.1Schristosbthub* at sbt?
15231.1Schristosbthub* at ubt?
15241.1Schristos
15251.1Schristos# Bluetooth HID support
15261.1Schristosbthidev* at bthub?
15271.1Schristos
15281.1Schristos# Bluetooth Mouse
15291.1Schristosbtms* at bthidev? reportid ?
15301.1Schristoswsmouse* at btms? mux 0
15311.1Schristos
15321.1Schristos# Bluetooth Keyboard
15331.1Schristosbtkbd* at bthidev? reportid ?
15341.1Schristoswskbd* at btkbd? console ? mux 1
15351.1Schristos
15361.1Schristos# Bluetooth Apple Magic Mouse
15371.1Schristosbtmagic* at bthub?
15381.1Schristoswsmouse* at btmagic? mux 0
15391.1Schristos
15401.1Schristos# Bluetooth Audio support
15411.1Schristosbtsco* at bthub?
15421.1Schristos
15431.1Schristos
15441.1Schristos# Mice
15451.1Schristos
15461.1Schristos# Cryptographic Devices
15471.1Schristos
15481.1Schristos# PCI cryptographic devices
15491.1Schristoshifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
15501.1Schristosubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
15511.1Schristos
15521.1Schristos# Trusted Platform Module
15531.49Sryotpm*	at isa? iomem 0xfed40000 irq 7
15541.1Schristos
15551.1Schristos# Joysticks
15561.1Schristos
15571.1Schristos# PCI joysticks
15581.1Schristosjoy*	at pci?				# Game ports (usually on audio cards)
15591.1Schristosjoy*	at eap?				# See CAVEATS in eap(4) before enabling
15601.1Schristosjoy*	at eso?				# ESS Solo-1 on-board joystick
15611.1Schristos
15621.1Schristos# ISA joysticks. Probe is a little strange; add only if you have one.
15631.1Schristosjoy0	at isa? port 0x201
15641.1Schristos
15651.1Schristos# Middle Digital, Inc. PCI-Weasel serial console board control
15661.1Schristos# devices (watchdog timer, etc.)
15671.1Schristosweasel* at pci?
15681.1Schristos
15691.1Schristos# Virtio devices
15701.46Sdhollandvirtio* at pci? dev ? function ?	# Virtio PCI device
15711.1Schristosviomb*	at virtio?			# Virtio memory balloon device
15721.1Schristosld*	at virtio?			# Virtio disk device
15731.1Schristosvioif*	at virtio?			# Virtio network device
15741.57Schristosviornd* at virtio?			# Virtio entropy device
15751.57Schristosvioscsi* at virtio?			# Virtio SCSI device
15761.126Sozakivio9p*	at virtio?			# Virtio 9P device
15771.1Schristos
15781.1Schristos# Flash subsystem
15791.1Schristosflash* at flashbus?
15801.1Schristos
15811.1Schristos# NAND subsystem
15821.1Schristosnand* at nandbus?
15831.1Schristos
15841.1Schristos# Pull in optional local configuration
15851.1Schristos#include 	"arch/amd64/conf/ALL.local"
15861.1Schristos
15871.1Schristos
15881.1Schristos# Pseudo-Devices
15891.1Schristos
15901.49Sryopseudo-device	crypto		# /dev/crypto device
15911.1Schristospseudo-device	swcrypto	# software crypto implementation
15921.1Schristos
15931.1Schristos# disk/mass storage pseudo-devices
15941.1Schristospseudo-device	bio			# RAID control device driver
15951.1Schristospseudo-device	ccd			# concatenated/striped disk devices
15961.1Schristospseudo-device	cgd			# cryptographic disk devices
15971.1Schristospseudo-device	raid			# RAIDframe disk driver
15981.1Schristosoptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
15991.1Schristos# Options to enable various other RAIDframe RAID types.
16001.1Schristosoptions 	RF_INCLUDE_EVENODD=1
16011.1Schristosoptions 	RF_INCLUDE_RAID5_RS=1
16021.1Schristosoptions 	RF_INCLUDE_PARITYLOGGING=1
16031.1Schristosoptions 	RF_INCLUDE_CHAINDECLUSTER=1
16041.1Schristosoptions 	RF_INCLUDE_INTERDECLUSTER=1
16051.1Schristosoptions 	RF_INCLUDE_PARITY_DECLUSTERING=1
16061.1Schristosoptions 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
16071.1Schristospseudo-device	fss			# file system snapshot device
16081.1Schristos
16091.1Schristospseudo-device	md			# memory disk device (ramdisk)
16101.1Schristosoptions 	MEMORY_DISK_HOOKS	# enable root ramdisk
16111.1Schristosoptions 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
16121.1Schristos
16131.1Schristospseudo-device	vnd			# disk-like interface to files
16141.1Schristosoptions 	VND_COMPRESSION		# compressed vnd(4)
16151.1Schristos
16161.49Sryopseudo-device	dm			# device-mapper disk driver
16171.1Schristos
16181.1Schristos# network pseudo-devices
16191.1Schristospseudo-device	bpfilter		# Berkeley packet filter
16201.1Schristospseudo-device	carp			# Common Address Redundancy Protocol
16211.1Schristospseudo-device	ipfilter		# IP filter (firewall) and NAT
16221.38Schristospseudo-device	mpls			# MPLS pseudo-interface
16231.1Schristospseudo-device	loop			# network loopback
16241.1Schristospseudo-device	ppp			# Point-to-Point Protocol
16251.1Schristospseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
16261.1Schristosoptions 	PPPOE_SERVER		# Enable PPPoE server via link0
16271.1Schristospseudo-device	sl			# Serial Line IP
16281.1Schristospseudo-device	strip			# Starmode Radio IP (Metricom)
16291.1Schristospseudo-device	irframetty		# IrDA frame line discipline
16301.1Schristospseudo-device	tap			# virtual Ethernet
16311.1Schristospseudo-device	tun			# network tunneling over tty
16321.1Schristospseudo-device	gre			# generic L3 over IP tunnel
16331.1Schristospseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
16341.77Sknakaharpseudo-device	ipsecif			# tunnel interface for routing based ipsec
16351.1Schristospseudo-device	faith			# IPv[46] tcp relay translation i/f
16361.1Schristospseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
16371.1Schristospseudo-device	vlan			# IEEE 802.1q encapsulation
16381.1Schristospseudo-device	bridge			# simple inter-network bridging
16391.1Schristosoptions 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
16401.1Schristospseudo-device	agr			# IEEE 802.3ad link aggregation
16411.50Sknakaharpseudo-device	l2tp			# L2TPv3 interface
16421.1Schristos#pseudo-device	pf			# PF packet filter
16431.1Schristos#pseudo-device	pflog			# PF log if
16441.1Schristos#pseudo-device	pfsync			# PF sync if
16451.1Schristospseudo-device	npf			# NPF packet filter
16461.1Schristospseudo-device	kttcp
16471.1Schristos# srt is EXPERIMENTAL
16481.1Schristospseudo-device	srt			# source-address-based routing
16491.1Schristos
16501.59Sbouyerpseudo-device	canloop			# CAN loopback interface
16511.59Sbouyer
16521.1Schristos#
16531.1Schristos# accept filters, built as module(7)s by default
16541.1Schristospseudo-device	accf_data		# "dataready" accept filter
16551.1Schristospseudo-device	accf_http		# "httpready" accept filter
16561.1Schristos
16571.1Schristos# miscellaneous pseudo-devices
16581.1Schristospseudo-device	pty			# pseudo-terminals
16591.1Schristospseudo-device	sequencer		# MIDI sequencer
16601.1Schristos# rnd works; RND_COM does not on port amd64 yet.
16611.1Schristosoptions 	RND_COM			# use "com" randomness as well (BROKEN)
16621.1Schristospseudo-device	clockctl		# user control of clock subsystem
16631.1Schristospseudo-device	ksyms			# /dev/ksyms
16641.1Schristospseudo-device	lockstat		# lock profiling
16651.1Schristospseudo-device	bcsp			# BlueCore Serial Protocol
16661.1Schristospseudo-device	btuart			# Bluetooth HCI UART (H4)
16671.1Schristospseudo-device	gpiosim		1	# GPIO simulator
16681.1Schristos
16691.1Schristospseudo-device	filemon			# process monitor for make(1)
16701.1Schristos
16711.1Schristos# a pseudo device needed for Coda	# also needs CODA (above)
16721.1Schristospseudo-device	vcoda			# coda minicache <-> venus comm.
16731.1Schristos
16741.1Schristos# a pseudo device needed for SMBFS
16751.1Schristospseudo-device	nsmb			# experimental - SMB requester
16761.1Schristos
16771.78Schristos# a pseudo device needed for AUTOFS
16781.78Schristospseudo-device	autofs			# experimental - AUTOFS
16791.78Schristos
16801.33Stnn# iSCSI initiator
16811.33Stnnpseudo-device	iscsi
16821.33Stnn
16831.1Schristos# wscons pseudo-devices
16841.1Schristospseudo-device	wsmux			# mouse & keyboard multiplexor
16851.1Schristospseudo-device	wsfont
16861.1Schristos
16871.1Schristos# software watchdog driver - swwdog(4)
16881.1Schristospseudo-device	swwdog
16891.1Schristos
16901.1Schristos#software environmental sensor - swsensor(4)
16911.1Schristospseudo-device	swsensor
16921.1Schristos
16931.1Schristos# pseudo audio device driver
16941.1Schristospseudo-device	pad
16951.1Schristos
16961.1Schristos# userland interface to drivers, including autoconf and properties retrieval
16971.1Schristospseudo-device	drvctl
16981.1Schristos
16991.1Schristos# Pass-to-Userspace Transporter
17001.1Schristospseudo-device	putter
17011.1Schristos
17021.1Schristos# Userspace block/char drivers
17031.1Schristospseudo-device	pud
17041.1Schristos
17051.1Schristos# Hardware-assisted data mover interface
17061.1Schristospseudo-device	dmoverio
17071.1Schristos
17081.1Schristospseudo-device	nandemulator
17091.1Schristos
17101.1Schristos# Veriexec
17111.118Ssevaninclude "dev/veriexec.config"
17121.1Schristos
17131.57Schristosoptions 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
17141.57Schristosoptions 	PAX_MPROTECT=1		# PaX mprotect(2) restrictions
17151.57Schristosoptions 	PAX_MPROTECT_DEBUG=1	# PaX mprotect debug
17161.57Schristosoptions 	PAX_ASLR=1		# PaX Address Space Layout Randomization
17171.57Schristosoptions 	PAX_ASLR_DEBUG=1	# PaX ASLR debug
17181.1Schristos
17191.1Schristosoptions ATHHAL_DEBUG
17201.1Schristosoptions A9PCIC_DEBUG
17211.1Schristosoptions AAC_DEBUG
17221.1Schristosoptions AAU_DEBUG
17231.1Schristosoptions AC97_DEBUG
17241.1Schristosoptions AC97_IO_DEBUG
17251.1Schristosoptions ACPI_APM_DEBUG
17261.1Schristos#
17271.1Schristos# ACPI_DEBUG_ALLOC can not be used with ACPI
17281.1Schristos# kernel modules. It requires also ACPI_DEBUG.
17291.1Schristos# ACPI_DEBUG_MUTEX is only for ACPICA debugging.
17301.1Schristos#
17311.1Schristosoptions ACPI_DEBUG
17321.1Schristosoptions ACPI_DEBUG_ALLOC
17331.1Schristosoptions ACPI_MUTEX_DEBUG
17341.1Schristosoptions ADB_DEBUG
17351.1Schristosoptions ADM1030_DEBUG
17361.1Schristosoptions ADT7467_DEBUG
17371.1Schristosoptions AE_DEBUG
17381.1Schristosoptions AGP_DEBUG
17391.1Schristosoptions AHADEBUG
17401.1Schristosoptions AHBDEBUG
17411.1Schristosoptions AHC_DEBUG=1
17421.1Schristosoptions AHD_DEBUG
17431.1Schristosoptions AHD_DEBUG_OPTS=1
17441.1Schristosoptions AH_DEBUG_ALQ
17451.1Schristosoptions AIC_DEBUG
17461.117Smsaitohoptions AI_DEBUG
17471.1Schristosoptions ALTQ_DEBUG
17481.1Schristosoptions AMD756_DEBUG
17491.1Schristosoptions AMRR_DEBUG
17501.1Schristosoptions AN_DEBUG
17511.1Schristosoptions APMDEBUG
17521.1Schristosoptions APMDEBUG_VALUE=1
17531.1Schristosoptions ARCKBD_DEBUG
17541.1Schristosoptions ARGO_DEBUG
17551.1Schristosoptions ARP_DEBUG
17561.1Schristosoptions ASC_DEBUG
17571.1Schristosoptions ATAPI_DEBUG_PROBE
17581.1Schristosoptions ATA_DEBUG
17591.1Schristosoptions ATA_RAID_DEBUG
17601.1Schristosoptions ATE_DEBUG
17611.117Smsaitohoptions ATHN_DEBUG
17621.1Schristosoptions ATMEL_DEBUG
17631.1Schristosoptions ATPPC_DEBUG
17641.117Smsaitohoptions ATU_DEBUG
17651.1Schristosoptions ATW_BBPDEBUG
17661.1Schristosoptions ATW_DEBUG
17671.1Schristosoptions ATW_SYNDEBUG
17681.1Schristosoptions AUACER_DEBUG
17691.1Schristosoptions AUCCDEBUG
17701.1Schristosoptions AUCONV_DEBUG
17711.1Schristosoptions AUDIO_DEBUG
17721.1Schristosoptions AUE_DEBUG
17731.1Schristosoptions AUICH_DEBUG
17741.1Schristosoptions AUICH_MODEM_DEBUG
17751.1Schristosoptions AURATECONV_DEBUG
17761.1Schristosoptions AUSMBUS_PSC_DEBUG
17771.1Schristosoptions AWACS_DEBUG
17781.1Schristosoptions AWI_DEBUG
17791.1Schristosoptions AXE_DEBUG
17801.117Smsaitohoptions AXEN_DEBUG
17811.1Schristosoptions AZALIA_DEBUG
17821.1Schristosoptions BAH_DEBUG
17831.1Schristosoptions BCACHE_DEBUG
17841.1Schristosoptions BDEBUG
17851.1Schristosoptions BEDEBUG
17861.117Smsaitohoptions BGE_DEBUG
17871.1Schristosoptions BHADEBUG
17881.1Schristosoptions BIOS_MEMORY_DEBUG
17891.1Schristosoptions BIT3DEBUG
17901.1Schristosoptions BKTR_RADIO_DEBUG
17911.1Schristosoptions BLUETOOTH_DEBUG
17921.1Schristosoptions BMAC_DEBUG
17931.1Schristosoptions BMD_DEBUG
17941.117Smsaitohoptions BNX_DEBUG
17951.1Schristosoptions BOOTP_DEBUG
17961.1Schristosoptions BOOTP_DEBUGx
17971.1Schristosoptions BOOTXX_DEBUG
17981.1Schristosoptions BOOT_DEBUG
17991.1Schristosoptions BT463_DEBUG
18001.1Schristosoptions BTDEBUG
18011.1Schristosoptions BTHSET_DEBUG
18021.1Schristosoptions BTLBDEBUG
18031.1Schristosoptions BTNMGRDEBUG
18041.1Schristosoptions BUS_DMA_DEBUG
18051.1Schristosoptions BUS_SPACE_DEBUG
18061.117Smsaitohoptions BWFM_DEBUG
18071.1Schristosoptions CACHE_DEBUG
18081.1Schristosoptions CARDBUS_DEBUG
18091.117Smsaitohoptions CAS_DEBUG
18101.117Smsaitohoptions CBB_DEBUG
18111.1Schristosoptions CD18XXDEBUG
18121.1Schristosoptions CGSIX_DEBUG
18131.1Schristosoptions CHANGER_DEBUG
18141.1Schristosoptions CISS_DEBUG
18151.1Schristosoptions CKSUMDEBUG
18161.1Schristosoptions CLOCKDEBUG
18171.1Schristosoptions CLOCK_DEBUG
18181.117Smsaitohoptions CMALO_DEBUG
18191.1Schristosoptions CNW_DEBUG
18201.1Schristosoptions COMDEBUG
18211.1Schristosoptions COMVRIPDEBUG
18221.1Schristosoptions COM_DEBUG
18231.1Schristosoptions COM_HPCIODEBUG
18241.1Schristosoptions CONSDEBUG
18251.1Schristosoptions CRYPTO_DEBUG
18261.1Schristosoptions CS4280_DEBUG
18271.1Schristosoptions CS_DEBUG
18281.1Schristosoptions CUE_DEBUG
18291.1Schristosoptions CY_DEBUG
18301.1Schristosoptions CZ_DEBUG
18311.1Schristosoptions DAIC_DEBUG
18321.1Schristosoptions DBRI_DEBUG
18331.1Schristosoptions DDB_DEBUG
18341.1Schristosoptions DEBUGBUG
18351.1Schristosoptions DEBUGGER_THREADING
18361.1Schristosoptions DEBUGTERM
18371.1Schristosoptions DEBUGXXX
18381.1Schristosoptions DEBUG_1284
18391.1Schristosoptions DEBUG_1543
18401.1Schristosoptions DEBUG_A4000
18411.1Schristosoptions DEBUG_ALIGN
18421.1Schristosoptions DEBUG_ALLOC
18431.1Schristosoptions DEBUG_AMIGA_IF_ED
18441.1Schristosoptions DEBUG_AOUTM68K
18451.1Schristosoptions DEBUG_BEFOREMMU
18461.1Schristosoptions DEBUG_BIOSCALL
18471.1Schristosoptions DEBUG_CHUNK_DIR
18481.1Schristosoptions DEBUG_CLOCK
18491.1Schristosoptions DEBUG_COFF
18501.1Schristosoptions DEBUG_CP0_ACCESS
18511.1Schristosoptions DEBUG_CURSOR
18521.1Schristosoptions DEBUG_DDB
18531.1Schristosoptions DEBUG_DR
18541.1Schristosoptions DEBUG_EMUL
18551.1Schristosoptions DEBUG_ET4000
18561.1Schristosoptions DEBUG_EXEC
18571.1Schristosoptions DEBUG_EXT2
18581.1Schristosoptions DEBUG_FAULT_CORRECTION
18591.1Schristosoptions DEBUG_FFB
18601.1Schristosoptions DEBUG_FIND_COMPORT
18611.1Schristosoptions DEBUG_FIND_PCIC
18621.1Schristosoptions DEBUG_FIND_PCIC_I82365SL_ONLY
18631.1Schristosoptions DEBUG_FPE
18641.1Schristosoptions DEBUG_GPIO
18651.1Schristosoptions DEBUG_GPIO2
18661.1Schristosoptions DEBUG_IPR_VJ
18671.1Schristosoptions DEBUG_ISAPNP
18681.1Schristosoptions DEBUG_ISSIGNAL
18691.1Schristosoptions DEBUG_KERNADDR_ACCESS
18701.1Schristosoptions DEBUG_KERNEL_START
18711.1Schristosoptions DEBUG_KGDB
18721.1Schristosoptions DEBUG_LED
18731.1Schristosoptions DEBUG_LINUX
18741.1Schristosoptions DEBUG_LINUX_FUTEX
18751.1Schristosoptions DEBUG_MEMLOAD
18761.1Schristosoptions DEBUG_MEMORY_LIST
18771.1Schristosoptions DEBUG_MEMSIZE
18781.1Schristosoptions DEBUG_NEG
18791.1Schristosoptions DEBUG_NFS_BOOT_DHCP
18801.1Schristosoptions DEBUG_P9100
18811.1Schristosoptions DEBUG_PAGE0
18821.1Schristosoptions DEBUG_PCI_MACHDEP
18831.1Schristosoptions DEBUG_PGRP
18841.1Schristosoptions DEBUG_POOL
18851.1Schristosoptions DEBUG_PORTF
18861.1Schristosoptions DEBUG_PROM
18871.1Schristosoptions DEBUG_PTM
18881.1Schristosoptions DEBUG_RAWFS
18891.1Schristosoptions DEBUG_RPC
18901.1Schristosoptions DEBUG_SNAPPER
18911.1Schristosoptions DEBUG_SYNC
18921.1Schristosoptions DEBUG_TERM
18931.1Schristosoptions DEBUG_UL
18941.1Schristosoptions DEBUG_VAL
18951.1Schristosoptions DEBUG_WITH_STDIO
18961.1Schristosoptions DEVSW_DEBUG
18971.1Schristosoptions DEV_DEBUG
18981.1Schristosoptions DISKLABEL_DEBUG
18991.1Schristosoptions DISK_DEBUG
19001.1Schristosoptions DL_DEBUG
19011.1Schristosoptions DMAC_DEBUG
19021.1Schristosoptions DMA_DEBUG
19031.1Schristosoptions DMCDEBUG
19041.1Schristosoptions DRACORAWKEYDEBUG
19051.1Schristosoptions EARLY_DEBUG_EVENT
19061.1Schristosoptions EBUS_DEBUG
19071.1Schristosoptions EDC_DEBUG
19081.1Schristosoptions EDEBUG
19091.1Schristosoptions ED_DEBUG
19101.1Schristosoptions EFINET_DEBUG
19111.1Schristosoptions EGAFONTDEBUG
19121.1Schristosoptions EGDEBUG
19131.1Schristosoptions EHCI_DEBUG
19141.1Schristosoptions EL_DEBUG
19151.1Schristosoptions EMAC3_DEBUG
19161.1Schristosoptions EMUXKI_DEBUG
19171.1Schristosoptions EM_DEBUG
19181.1Schristosoptions EN_DEBUG
19191.1Schristosoptions EN_DEBUG_RANGE
19201.1Schristosoptions EPGPIO_DEBUG
19211.1Schristosoptions EPICMEDIADEBUG
19221.1Schristosoptions EPPCIC_DEBUG
19231.1Schristosoptions ESDEBUG
19241.1Schristosoptions ESP_DEBUG
19251.1Schristosoptions ESP_SBUS_DEBUG
19261.1Schristosoptions ESS_ISA_DEBUG
19271.1Schristosoptions ETHER_DEBUG
19281.1Schristosoptions EWSKBD_DEBUG
19291.1Schristosoptions EXEC_DEBUG
19301.1Schristosoptions EXTENT_DEBUG
19311.1Schristosoptions EXTREME_DEBUG
19321.1Schristosoptions EXTREME_EXTREME_DEBUG
19331.1Schristosoptions FBDEBUG
19341.1Schristosoptions FDDEBUG
19351.1Schristosoptions FD_DEBUG
19361.1Schristosoptions FFBDEBUG
19371.1Schristosoptions FILECORE_DEBUG
19381.1Schristosoptions FILECORE_DEBUG_BR
19391.1Schristosoptions FIRESTARDEBUG
19401.1Schristosoptions FLASH_DEBUG
19411.1Schristosoptions FLP_DEBUG
19421.1Schristosoptions FMV_DEBUG
19431.1Schristosoptions FOO_DEBUG
19441.1Schristosoptions FPU_DEBUG
19451.1Schristosoptions GDROMDEBUG
19461.1Schristosoptions GEM_DEBUG
19471.1Schristosoptions GEM_DEBUG1
19481.1Schristosoptions GEODE_DEBUG
19491.1Schristosoptions GEOM_DEBUG
19501.1Schristosoptions GE_DEBUG
19511.1Schristosoptions GMAC_DEBUG
19521.1Schristosoptions GPIO_DEBUG
19531.1Schristosoptions GRE_DEBUG
19541.1Schristosoptions GSFB_DEBUG_MONITOR
19551.1Schristosoptions GTFDEBUG
19561.1Schristosoptions HD64461PCMCIA_DEBUG
19571.1Schristosoptions HD64461VIDEO_DEBUG
19581.1Schristosoptions HD64465PCMCIA_DEBUG
19591.1Schristosoptions HDAUDIO_DEBUG
19601.1Schristosoptions HDAFG_DEBUG
19611.1Schristosoptions HDLCDEBUG
19621.1Schristosoptions HIFN_DEBUG
19631.1Schristosoptions HMEDEBUG
19641.1Schristosoptions HPCAPMDEBUG
19651.1Schristosoptions HPC_DEBUG_INTERRUPT_MONITOR
19661.1Schristosoptions HPC_DEBUG_LCD
19671.1Schristosoptions HP_DEBUG
19681.1Schristosoptions HSCXADEBUG
19691.1Schristosoptions HSCXBDEBUG
19701.1Schristosoptions I2ODEBUG
19711.1Schristosoptions ICONV_DEBUG
19721.1Schristosoptions ICP_DEBUG
19731.1Schristosoptions IEDEBUG
19741.1Schristosoptions IEEE80211_DEBUG_REFCNT
19751.1Schristosoptions IFAREF_DEBUG
19761.39Sozakioptions IFA_STATS
19771.1Schristosoptions IFMEDIA_DEBUG
19781.1Schristosoptions IHA_DEBUG_STATE
19791.1Schristosoptions INTRDEBUG
19801.1Schristosoptions INTR_DEBUG
19811.1Schristosoptions IPAQ_LCD_DEBUG
19821.1Schristosoptions IPF_DEBUG
19831.1Schristosoptions IPSEC_DEBUG
19841.1Schristosoptions IPW_DEBUG
19851.1Schristosoptions IP_RCMD_PROXY_DEBUG
19861.1Schristosoptions IRFRAMET_DEBUG
19871.1Schristosoptions IRFRAME_DEBUG
19881.1Schristosoptions IRQ_DEBUG
19891.1Schristosoptions ISACDEBUG
19901.1Schristosoptions ISADMA_DEBUG
19911.1Schristosoptions ISO_DEBUG
19921.1Schristosoptions IT8368DEBUG
19931.1Schristosoptions ITE8181DEBUG
19941.1Schristosoptions ITK_PROBE_DEBUG
19951.1Schristosoptions IWI_DEBUG
19961.1Schristosoptions IWM_DEBUG
19971.117Smsaitohoptions IWN_DEBUG
19981.117Smsaitohoptions IX_DEBUG
19991.1Schristosoptions IYDEBUG
20001.1Schristosoptions IYMEMDEBUG
20011.1Schristosoptions J6X0TP_DEBUG
20021.1Schristosoptions J720TP_DEBUG
20031.1Schristosoptions KBD_DEBUG
20041.1Schristosoptions KB_DEBUG
20051.1Schristosoptions KERNEL_DEBUG
20061.1Schristosoptions KLOADER_DEBUG
20071.1Schristosoptions KSTACK_DEBUG
20081.1Schristosoptions KSYMS_DEBUG
20091.1Schristosoptions KUE_DEBUG
20101.1Schristosoptions LANA_DEBUG
20111.1Schristosoptions LCD_DEBUG
20121.1Schristosoptions LEDEBUG
20131.1Schristosoptions LE_DEBUG
20141.1Schristosoptions LIFDEBUG
20151.117Smsaitohoptions LII_DEBUG
20161.1Schristosoptions LINUX_SG_DEBUG
20171.1Schristosoptions LLCDEBUG
20181.1Schristosoptions LLC_DEBUG
20191.1Schristosoptions LOADER_DEBUG
20201.1Schristosoptions LOAD_DEBUG_INFO
20211.1Schristosoptions LOCKF_DEBUG
20221.1Schristosoptions LPT_DEBUG
20231.1Schristosoptions MAGMA_DEBUG
20241.1Schristosoptions MAPLE_DEBUG
20251.1Schristosoptions MB8795_DEBUG
20261.122Sozakioptions MBUFTRACE
20271.1Schristosoptions MCDDEBUG
20281.1Schristosoptions MCDEBUG
20291.1Schristosoptions MCHAIN_DEBUG
20301.1Schristosoptions MEC_DEBUG
20311.1Schristosoptions MEDIABAY_DEBUG
20321.1Schristosoptions MEMORY_MAP_DEBUG
20331.1Schristosoptions MESH_DEBUG
20341.1Schristosoptions MIDI_DEBUG
20351.1Schristosoptions MLYDEBUG
20361.1Schristosoptions MMEYEPCMCIADEBUG
20371.1Schristosoptions MOUSE_DEBUG
20381.1Schristosoptions MPDEBUG
20391.1Schristosoptions MQ200_DEBUG
20401.1Schristosoptions MRT6DEBUG
20411.1Schristosoptions MSDOSFS_DEBUG
20421.1Schristosoptions MSG_DEBUG_OK
20431.117Smsaitohoptions MSK_DEBUG
20441.1Schristosoptions MULAW_DEBUG
20451.1Schristosoptions MYDEV_DEBUG
20461.1Schristosoptions NB_DEBUG
20471.1Schristosoptions NCR5380_DEBUG
20481.1Schristosoptions NCR53C9X_DEBUG
20491.1Schristosoptions ND6_DEBUG
20501.1Schristosoptions NDEBUG
20511.1Schristosoptions ND_DEBUG
20521.1Schristosoptions NETATALKDEBUG
20531.1Schristosoptions NETDOCK_DEBUG_DRIVER
20541.1Schristosoptions NETIF_DEBUG
20551.1Schristosoptions NET_DEBUG
20561.12Sozakioptions NET_MPSAFE
20571.1Schristosoptions NFE_DEBUG
20581.1Schristosoptions NFS_DEBUG
20591.1Schristosoptions NFS_DEBUG_COMMIT
20601.1Schristosoptions NIDEBUG
20611.1Schristosoptions NJSC32_DEBUG
20621.1Schristosoptions NON_DEBUG
20631.1Schristosoptions NOTDEF_DEBUG
20641.1Schristosoptions NOT_DEBUG
20651.1Schristosoptions NSIODEBUG
20661.1Schristosoptions NTFS_DEBUG
20671.1Schristosoptions OBOE_DEBUG
20681.1Schristosoptions OFW_DEBUG
20691.1Schristosoptions OHCI_DEBUG
20701.1Schristosoptions OLD_ELF_DEBUG
20711.1Schristosoptions ONEWIRE_DEBUG
20721.1Schristosoptions ONOE_DEBUG
20731.1Schristosoptions OPTPOINTDEBUG
20741.1Schristosoptions OSIOP_DEBUG
20751.1Schristosoptions OST_DEBUG
20761.117Smsaitohoptions OTUS_DEBUG
20771.1Schristosoptions P1212_DEBUG
20781.1Schristosoptions PARDEBUG
20791.1Schristosoptions PBMS_DEBUG
20801.1Schristosoptions PCIINTR_DEBUG
20811.1Schristosoptions PCI_DEBUG
20821.1Schristosoptions PCKBCDEBUG
20831.1Schristosoptions PCKBPORTDEBUG
20841.1Schristosoptions PCMCIACISDEBUG
20851.1Schristosoptions PCMCIADEBUG
20861.1Schristosoptions PDCDEBUG
20871.1Schristosoptions PDINFO_DEBUG
20881.1Schristosoptions PFCKBD_DEBUG
20891.1Schristosoptions PFDEBUG
20901.1Schristosoptions PFLOGDEBUG
20911.1Schristosoptions PHYSMEMDEBUG
20921.1Schristosoptions PI1PPC_DEBUG
20931.1Schristosoptions PIIXPM_DEBUG
20941.1Schristosoptions PIIX_DEBUG
20951.1Schristosoptions PIOC_DEBUG
20961.1Schristosoptions PLCOM_DEBUG
20971.1Schristosoptions PLD_WDOG_DEBUG
20981.1Schristosoptions PLIP_DEBUG
20991.1Schristosoptions PLUMICUDEBUG
21001.1Schristosoptions PLUMIOBUSDEBUG
21011.1Schristosoptions PLUMPCMCIA_DEBUG
21021.1Schristosoptions PLUMPOWERDEBUG
21031.1Schristosoptions PLUMVIDEODEBUG
21041.1Schristosoptions PMAPDEBUG
21051.1Schristosoptions PMAP_COUNT_DEBUG
21061.1Schristosoptions PMAP_DEBUG
21071.1Schristosoptions PMAP_DEBUG_MODIFIED
21081.1Schristosoptions PMON_DEBUG
21091.1Schristosoptions PMSDEBUG
21101.1Schristosoptions PNPBIOSDEBUG
21111.1Schristosoptions PNPBIOSDEBUG_VALUE=1
21121.1Schristosoptions PNPBIOSEVENTSDEBUG
21131.1Schristosoptions PORT_DEBUG
21141.1Schristosoptions PPBUS_DEBUG
21151.1Schristosoptions PPPOE_DEBUG
21161.1Schristosoptions PROFILER_DEBUG
21171.1Schristosoptions PSH3TP_DEBUG
21181.1Schristosoptions PWCTLDEBUG
21191.1Schristosoptions QEDEBUG
21201.1Schristosoptions QN_DEBUG
21211.1Schristosoptions QN_DEBUG1
21221.1Schristosoptions QTDEBUG
21231.1Schristosoptions RAL_DEBUG
21241.1Schristosoptions RARP_DEBUG
21251.1Schristosoptions RBUS_DEBUG
21261.1Schristosoptions RCONS_DEBUG
21271.1Schristosoptions RDDEBUG
21281.1Schristosoptions REALLYDEBUG
21291.1Schristosoptions RND_DEBUG
21301.1Schristosoptions ROMDEBUG
21311.1Schristosoptions RPC_DEBUG
21321.1Schristosoptions RQDEBUG
21331.1Schristosoptions RTC_DEBUG
21341.1Schristosoptions RTSOCK_DEBUG
21351.1Schristosoptions RTW_DEBUG
21361.117Smsaitohoptions RUM_DEBUG
21371.117Smsaitohoptions RUN_DEBUG
21381.1Schristosoptions SACKBCDEBUG
21391.1Schristosoptions SBC_DEBUG
21401.1Schristosoptions SBJCN_DEBUG
21411.1Schristosoptions SBMACDEBUG
21421.1Schristosoptions SBSCN_DEBUG
21431.1Schristosoptions SCC_DEBUG
21441.1Schristosoptions SCHED_DEBUG
21451.1Schristosoptions SCIF_DEBUG
21461.1Schristosoptions SCI_DEBUG
21471.1Schristosoptions SCR_DEBUG
21481.1Schristosoptions SCSIDEBUG
21491.1Schristosoptions SCSIPI_DEBUG
21501.1Schristosoptions SCSI_DEBUG
21511.47Smayaoptions SCTP_DEBUG
21521.1Schristosoptions SD_DEBUG
21531.1Schristosoptions SEA_DEBUG
21541.1Schristosoptions SEA_DEBUGQUEUE
21551.1Schristosoptions SEDEBUG
21561.1Schristosoptions SED_DEBUG
21571.1Schristosoptions SEEQ8005_DEBUG
21581.1Schristosoptions SEM_DEBUG
21591.1Schristosoptions SEQUENCER_DEBUG
21601.1Schristosoptions SER_DEBUG
21611.1Schristosoptions SFAS_DEBUG
21621.1Schristosoptions SGMAP_DEBUG
21631.1Schristosoptions SHMDEBUG
21641.1Schristosoptions SIF_DEBUG
21651.1Schristosoptions SIOP_DEBUG
21661.1Schristosoptions SIOP_DEBUG_DR
21671.1Schristosoptions SIOP_DEBUG_INTR
21681.1Schristosoptions SIOP_DEBUG_SCHED
21691.1Schristosoptions SK_DEBUG
21701.35Sskrlloptions SLHCI_DEBUG
21711.1Schristosoptions SMAP_DEBUG
21721.1Schristosoptions SMB_IOD_DEBUG
21731.1Schristosoptions SMB_SOCKETDATA_DEBUG
21741.1Schristosoptions SMB_SOCKET_DEBUG
21751.1Schristosoptions SMB_VNODE_DEBUG
21761.1Schristosoptions SNAPPER_DEBUG
21771.1Schristosoptions SNDEBUG
21781.1Schristosoptions SOCKBUF_DEBUG
21791.24Sozakioptions SOFTINT_INTR
21801.1Schristosoptions SONIC_DEBUG
21811.1Schristosoptions SPARC_PCI_DEBUG
21821.1Schristosoptions SPC_DEBUG
21831.1Schristosoptions SPIC_DEBUG
21841.1Schristosoptions SPIFI_DEBUG
21851.1Schristosoptions SPKRDEBUG
21861.1Schristosoptions SPLDEBUG
21871.1Schristosoptions SPPDEBUG
21881.1Schristosoptions SSCOM_DEBUG
21891.1Schristosoptions STIDEBUG
21901.1Schristosoptions STP4020_DEBUG
21911.1Schristosoptions SUNSCPAL_DEBUG
21921.1Schristosoptions SYNAPTICSDEBUG
21931.1Schristosoptions SYSCALL_DEBUG
21941.1Schristosoptions SYSCTL_DEBUG_CREATE
21951.1Schristosoptions SYSCTL_DEBUG_SETUP
21961.1Schristosoptions SYSVBFS_VNOPS_DEBUG
21971.1Schristosoptions TC5165DEBUG
21981.1Schristosoptions TCICDEBUG
21991.1Schristosoptions TCICISADEBUG
22001.1Schristosoptions TCPISS_DEBUG
22011.1Schristosoptions TCTRLDEBUG
22021.1Schristosoptions TIMECOUNTER_DEBUG
22031.1Schristosoptions TIMEKEEPER_DEBUG
22041.1Schristosoptions TLDEBUG
22051.1Schristosoptions TLDEBUG_ADDR
22061.1Schristosoptions TLDEBUG_RX
22071.1Schristosoptions TLDEBUG_TX
22081.1Schristosoptions TLP_DEBUG
22091.1Schristosoptions TP_DEBUG
22101.1Schristosoptions TRACE_DEBUG
22111.1Schristosoptions TRAPDEBUG
22121.1Schristosoptions TRISADEBUG
22131.1Schristosoptions TRM_DEBUG
22141.1Schristosoptions TROPICDEBUG
22151.1Schristosoptions TRTCMISADEBUG
22161.1Schristosoptions TSDEBUG
22171.1Schristosoptions TSLOT_DEBUG
22181.1Schristosoptions TTY_DEBUG
22191.1Schristosoptions TUDEBUG
22201.1Schristosoptions TULIP_DEBUG
22211.1Schristosoptions TWA_DEBUG
22221.1Schristosoptions TWE_DEBUG
22231.1Schristosoptions TX3912VIDEO_DEBUG
22241.1Schristosoptions TX39BIU_DEBUG
22251.1Schristosoptions TX39CLOCK_DEBUG
22261.1Schristosoptions TX39ICU_DEBUG
22271.1Schristosoptions TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT
22281.1Schristosoptions TX39IO_DEBUG
22291.1Schristosoptions TX39IRDEBUG
22301.1Schristosoptions TX39POWER_DEBUG
22311.1Schristosoptions TX39SIBDEBUG
22321.1Schristosoptions TX39UARTDEBUG
22331.1Schristosoptions TX39UART_DEBUG
22341.1Schristosoptions UAUDIO_DEBUG
22351.1Schristosoptions UBSA_DEBUG
22361.1Schristosoptions UBSEC_DEBUG
22371.1Schristosoptions UBT_DEBUG
22381.1Schristosoptions UCB1200_DEBUG
22391.1Schristosoptions UCBIO_DEBUG
22401.1Schristosoptions UCBSNDDEBUG
22411.1Schristosoptions UCBTPDEBUG
22421.1Schristosoptions UCOM_DEBUG
22431.1Schristosoptions UCYCOM_DEBUG
22441.1Schristosoptions UDAV_DEBUG
22451.1Schristosoptions UDSBR_DEBUG
22461.1Schristosoptions UFTDI_DEBUG
22471.1Schristosoptions UGENSA_DEBUG
22481.1Schristosoptions UGEN_DEBUG
22491.1Schristosoptions UHADEBUG
22501.1Schristosoptions UHCI_DEBUG
22511.1Schristosoptions UHIDEV_DEBUG
22521.1Schristosoptions UHID_DEBUG
22531.1Schristosoptions UHUB_DEBUG
22541.1Schristosoptions UIPAQ_DEBUG
22551.1Schristosoptions UIRDA_DEBUG
22561.1Schristosoptions UISDATA_DEBUG
22571.1Schristosoptions UKBD_DEBUG
22581.1Schristosoptions UKYOPON_DEBUG
22591.1Schristosoptions ULPT_DEBUG
22601.1Schristosoptions UL_DEBUG
22611.1Schristosoptions UMASS_DEBUG
22621.117Smsaitohoptions UMB_DEBUG
22631.1Schristosoptions UMCT_DEBUG
22641.1Schristosoptions UMIDIQUIRK_DEBUG
22651.1Schristosoptions UMIDI_DEBUG
22661.1Schristosoptions UMODEM_DEBUG
22671.1Schristosoptions UNIV_DEBUG
22681.117Smsaitohoptions UPGT_DEBUG
22691.1Schristosoptions UPLCOM_DEBUG
22701.1Schristosoptions UPL_DEBUG
22711.117Smsaitohoptions URAL_DEBUG
22721.1Schristosoptions URIO_DEBUG
22731.1Schristosoptions URLPHY_DEBUG
22741.1Schristosoptions URL_DEBUG
22751.117Smsaitohoptions URNDIS_DEBUG
22761.117Smsaitohoptions URTW_DEBUG
22771.117Smsaitohoptions URTWN_DEBUG
22781.1Schristosoptions USB_DEBUG
22791.1Schristosoptions USCANNER_DEBUG
22801.1Schristosoptions USEFULL_DEBUG
22811.1Schristosoptions USSCANNER_DEBUG
22821.1Schristosoptions USTIR_DEBUG
22831.1Schristosoptions UTOPPY_DEBUG
22841.1Schristosoptions UVIDEO_DEBUG
22851.1Schristosoptions UVISOR_DEBUG
22861.1Schristosoptions UVSCOM_DEBUG
22871.1Schristosoptions VCONS_DEBUG
22881.1Schristosoptions VERYLOWDEBUG
22891.1Schristosoptions VGAFONTDEBUG
22901.1Schristosoptions VIA8231_DEBUG
22911.1Schristosoptions VIAENV_DEBUG
22921.1Schristosoptions VIAPCIB_DEBUG
22931.1Schristosoptions VIDCAUDIO_DEBUG
22941.1Schristosoptions VMEDEBUG
22951.1Schristosoptions VOODOOFB_DEBUG
22961.1Schristosoptions VR4181AIU_DEBUG
22971.1Schristosoptions VRAIU_DEBUG
22981.1Schristosoptions VRBCUDEBUG
22991.1Schristosoptions VRC2GPIODEBUG
23001.1Schristosoptions VRC2PWMDEBUG
23011.1Schristosoptions VRC4173BCU_DEBUG
23021.1Schristosoptions VRDCU_DEBUG
23031.1Schristosoptions VRDMAAU_DEBUG
23041.1Schristosoptions VRGIUDEBUG
23051.1Schristosoptions VRIP_DEBUG
23061.1Schristosoptions VRISADEBUG
23071.1Schristosoptions VRKIUDEBUG
23081.1Schristosoptions VRLEDDEBUG
23091.1Schristosoptions VRPIUDEBUG
23101.1Schristosoptions VRPMUDEBUG
23111.1Schristosoptions VRRTCDEBUG
23121.1Schristosoptions VS_DEBUG
23131.1Schristosoptions VT100_DEBUG
23141.1Schristosoptions VTOC_DEBUG
23151.1Schristosoptions WDCNDELAY_DEBUG
23161.1Schristosoptions WDSDEBUG
23171.1Schristosoptions WE_DEBUG
23181.1Schristosoptions WFQ_DEBUG
23191.1Schristosoptions WI_DEBUG
23201.1Schristosoptions WI_RING_DEBUG
23211.1Schristosoptions WM_DEBUG
23221.117Smsaitohoptions WPI_DEBUG
23231.1Schristosoptions WSKBD_DEBUG
23241.1Schristosoptions WSMUX_DEBUG
23251.1Schristosoptions XBD_DEBUG
23261.1Schristosoptions XDC_DEBUG
23271.1Schristosoptions XDDEBUG
23281.1Schristosoptions XDEBUG
23291.1Schristosoptions XENDEBUG
23301.1Schristosoptions XENDEBUG_NET
23311.1Schristosoptions XENDEBUG_VBD
23321.1Schristosoptions XENNET_DEBUG
23331.1Schristosoptions XENNET_DEBUG_DUMP
23341.1Schristosoptions XEN_CLOCK_DEBUG
23351.1Schristosoptions XE_DEBUG
23361.35Sskrlloptions XHCI_DEBUG
23371.1Schristosoptions XYC_DEBUG
23381.1Schristosoptions ZSKBD_DEBUG
23391.1Schristosoptions ZSMACDEBUG
23401.117Smsaitohoptions ZYD_DEBUG
23411.1Schristosoptions xSCSI_DEBUG
23421.1Schristosoptions xSD_DEBUG
2343