ALL revision 1.510
1# $NetBSD: ALL,v 1.510 2023/07/16 10:20:07 riastradh Exp $
2# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
3#
4# ALL machine description file
5#
6# This machine description includes all devices and options and it is
7# used to compile-test the source and does not necessarily produce a
8# bootable or useful kernel.
9#
10# For further information on hardware support for this architecture, see
11# the intro(4) man page.  For further information about kernel options
12# for this architecture, see the options(4) man page.  For an explanation
13# of each device driver in this file see the section 4 man page for the
14# device.
15
16include 	"arch/i386/conf/std.i386"
17
18options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
19
20#ident		"ALL-$Revision: 1.510 $"
21
22maxusers	64		# estimated number of users
23
24makeoptions	USE_SSP=yes
25
26# CPU-related options.
27options 	USER_LDT	# user-settable LDT; used by WINE
28options 	X86EMU		# 386 Real Mode emulator
29options 	PAE		# PAE mode (36 bits physical addressing)
30makeoptions	SPECTRE_V2_GCC_MITIGATION=1	# GCC Spectre variant 2
31						# migitation
32options 	PCPU_IDT	# Per CPU IDT
33
34# CPU features
35acpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
36coretemp*	at cpu?		# Intel on-die thermal sensor
37est0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
38odcm0		at cpu0		# On-demand clock modulation
39padlock0	at cpu0		# VIA PadLock
40powernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
41viac7temp*	at cpu?		# VIA C7 temperature sensor
42vmt0		at cpu0		# VMware Tools
43
44options 	MTRR		# memory-type range register syscall support
45
46options 	MULTIBOOT	# Multiboot support (see multiboot(8))
47
48# delay between "rebooting ..." message and hardware reset, in milliseconds
49options 	CPURESET_DELAY=2000
50
51# This option allows you to force a serial console at the specified
52# I/O address.   see console(4) for details.
53options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
54#	you don't want the option below ON iff you are using the
55#	serial console option of the new boot strap code.
56options 	CONS_OVERRIDE	# Always use above! independent of boot info
57
58# The following options override the memory sizes passed in from the boot
59# block.  Use them *only* if the boot block is unable to determine the correct
60# values.  Note that the BIOS may *correctly* report less than 640k of base
61# memory if the extended BIOS data area is located at the top of base memory
62# (as is the case on most recent systems).
63options 	REALBASEMEM=639		# size of base memory (in KB)
64options 	REALEXTMEM=15360	# size of extended memory (in KB)
65
66# The following options limit the overall size of physical memory
67# and/or the maximum address used by the system.
68# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map
69# and can deal with holes in the memory layout.
70options 	PHYSMEM_MAX_SIZE=64	# max size of physical memory (in MB)
71options 	PHYSMEM_MAX_ADDR=2048	# don't use memory above this (in MB)
72
73# Standard system options
74
75options 	INSECURE	# disable kernel security levels - X needs this
76
77options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
78options 	NTP		# NTP phase/frequency locked loop
79
80options 	KTRACE		# system call tracing via ktrace(1)
81
82options 	CPU_UCODE	# cpu ucode loading support
83
84# Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
85options 	SYSVMSG		# System V-like message queues
86options 	SYSVSEM		# System V-like semaphores
87options 	SEMMNI=10	# number of semaphore identifiers
88options 	SEMMNS=60	# number of semaphores in system
89options 	SEMUME=10	# max number of undo entries per process
90options 	SEMMNU=30	# number of undo structures in system
91options 	SYSVSHM		# System V-like memory sharing
92
93options 	MODULAR		# new style module(7) framework
94
95options 	USERCONF	# userconf(4) support
96options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
97options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
98
99# Beep when it is safe to power down the system (requires sysbeep)
100options 	BEEP_ONHALT
101# Some tunable details of the above feature (default values used below)
102options 	BEEP_ONHALT_COUNT=3	# Times to beep
103options 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
104options 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
105
106# Alternate buffer queue strategies for better responsiveness under high
107# disk I/O load.
108options 	BUFQ_READPRIO
109options 	BUFQ_PRIOCSCAN
110
111# Diagnostic/debugging support options
112options 	DIAGNOSTIC	# inexpensive kernel consistency checks
113options 	DEBUG		# expensive debugging checks/support
114options 	LOCKDEBUG	# expensive locking checks/support
115options 	DDB		# in-kernel debugger
116options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
117options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
118options 	DDB_VERBOSE_HELP
119options 	KGDB		# remote debugger
120options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
121makeoptions	DEBUG="-g"	# compile full symbol table
122options		KUBSAN		# Kernel Undefined Behavior Sanitizer (kUBSan)
123options 	SYSCALL_STATS	# per syscall counts
124options 	SYSCALL_TIMES	# per syscall times
125options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
126options 	KDTRACE_HOOKS	# kernel DTrace hooks
127options 	UVMHIST		# kernhist for uvm subsystem
128options 	BIOHIST		# kernhist for buff I/O
129
130# Kernel Code Coverage Driver.
131makeoptions	KCOV=1
132options		KCOV
133
134# Heartbeat checks
135options 	HEARTBEAT
136options 	HEARTBEAT_MAX_PERIOD_DEFAULT=15
137
138# Compatibility options
139include 	"conf/compat_netbsd09.config"
140options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
141options 	COMPAT_386BSD_MBRPART # recognize old partition ID
142
143options 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
144options 	COMPAT_LINUX	# binary compatibility with Linux
145options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
146
147# Wedge support
148options 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
149options 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
150#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
151#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
152options 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
153options 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
154
155# File systems
156file-system	FFS		# UFS
157file-system	EXT2FS		# second extended file system (linux)
158file-system	LFS		# log-structured file system
159file-system	MFS		# memory file system
160file-system	NFS		# Network File System client
161file-system	NTFS		# Windows/NT file system (experimental)
162file-system	CD9660		# ISO 9660 + Rock Ridge file system
163file-system	MSDOSFS		# MS-DOS file system
164file-system	FDESC		# /dev/fd
165file-system	KERNFS		# /kern
166file-system	NULLFS		# loopback file system
167file-system	OVERLAY		# overlay file system
168file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
169file-system	PROCFS		# /proc
170file-system	UMAPFS		# NULLFS + uid and gid remapping
171file-system	UNION		# union file system
172file-system	CODA		# Coda File System; also needs vcoda (below)
173file-system	SYSVBFS		# System V boot file system
174file-system	PTYFS		# /dev/ptm support
175file-system	TMPFS		# Efficient memory file-system
176file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
177file-system	HFS		# experimental - Apple HFS+ file system
178file-system	EFS		# Silicon Graphics Extent File System
179file-system	FILECORE	# Acorn filecore file system
180file-system	ADOSFS		# AmigaDOS file system
181file-system	NILFS		# experimental - NTT's NiLFS(2)
182file-system	V7FS		# 7th Edition(V7) File System
183file-system	CHFS		# Chip File System
184
185# File system options
186# ffs
187options 	FFS_EI		# FFS Endian Independent support
188#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
189options 	QUOTA		# legacy UFS quotas
190options 	QUOTA2		# new, in-filesystem UFS quotas
191options 	UFS_ACL		# UFS Access Control Lists
192options 	UFS_DIRHASH	# UFS Large Directory Hashing
193options 	UFS_EXTATTR	# Extended attribute support for UFS1
194options 	WAPBL		# File system journaling support
195# lfs
196options 	LFS_KERNEL_RFW
197options 	LFS_EI		# LFS endian-independent support - experimental
198options 	LFS_EXTATTR	# extended attributes for LFS - experimental
199options 	LFS_DIRHASH	# LFS version of UFS_DIRHASH
200options 	LFS_QUOTA	# quotas for LFS - experimental
201options 	LFS_QUOTA2	# new-style quotas for LFS - experimental
202# ext2fs
203options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
204				# immutable) behave as system flags.
205# other
206options 	DISKLABEL_EI	# disklabel Endian Independent support
207options 	NFSSERVER	# Network File System server
208options 	V7FS_EI		# V7FS Endian Independent support
209
210# Networking options
211options 	GATEWAY		# packet forwarding
212options 	INET		# IP + ICMP + TCP + UDP
213options 	INET6		# IPv6
214options 	IPSEC		# IP security
215#options 	IPSEC_DEBUG	# debug for IP security
216options 	MPLS		# MultiProtocol Label Switching (needs mpls)
217options 	MROUTING	# IP multicast routing
218options 	PIM		# Protocol Independent Multicast
219options 	NETATALK	# AppleTalk networking protocols
220options 	CAN		# Controller Area Network protocol
221options 	DCCP		# Datagram Congestion Control Protocol
222options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
223options 	PPP_DEFLATE	# Deflate compression support for PPP
224options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
225options 	IPFILTER_LOG	# ipmon(8) log support
226options 	IPFILTER_LOOKUP	# ippool(8) support
227options 	IPFILTER_COMPAT # Compat for IP-Filter
228options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
229options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
230options 	TCP_SIGNATURE	# RFC 2385 support, used with BGP
231options 	SCTP		# Stream Control Transmission Protocol
232
233options 	ALTQ		# Manipulate network interfaces' output queues
234options 	ALTQ_BLUE	# Stochastic Fair Blue
235options 	ALTQ_CBQ	# Class-Based Queueing
236options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
237options 	ALTQ_FIFOQ	# First-In First-Out Queue
238options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
239options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
240options 	ALTQ_LOCALQ	# Local queueing discipline
241options 	ALTQ_PRIQ	# Priority Queueing
242options 	ALTQ_RED	# Random Early Detection
243options 	ALTQ_RIO	# RED with IN/OUT
244options 	ALTQ_WFQ	# Weighted Fair Queueing
245
246# These options enable verbose messages for several subsystems.
247# Warning, these may compile large string tables into the kernel!
248options 	ACPIVERBOSE	# verbose ACPI device autoconfig messages
249options 	EISAVERBOSE	# verbose EISA device autoconfig messages
250options 	MIIVERBOSE	# verbose PHY autoconfig messages
251options 	MPVERBOSE=1	# verbose mpbios config messages
252options 	PCIVERBOSE	# verbose PCI device autoconfig messages
253options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
254options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
255options 	SCSIVERBOSE	# human readable SCSI error messages
256options 	USBVERBOSE	# verbose USB device autoconfig messages
257options 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
258#options 	PNPBIOSDEBUG	# more fulsome PnP BIOS debugging messages
259options 	MCAVERBOSE	# verbose MCA device autoconfig messages
260options 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
261
262options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
263
264#
265# wscons options
266#
267# builtin terminal emulations
268options 	WSEMUL_SUN		# sun terminal emulation
269options 	WSEMUL_VT100		# VT100 / VT220 emulation
270# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
271options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
272options 	WS_DEFAULT_FG=WSCOL_WHITE
273options 	WS_DEFAULT_BG=WSCOL_BLACK
274options 	WS_DEFAULT_COLATTR="(0)"
275options 	WS_DEFAULT_MONOATTR="(0)"
276options 	WS_KERNEL_FG=WSCOL_GREEN
277options 	WS_KERNEL_BG=WSCOL_BLACK
278options 	WS_KERNEL_COLATTR="(0)"
279options 	WS_KERNEL_MONOATTR="(0)"
280# customization of console border color
281options 	WSDISPLAY_CUSTOM_BORDER	# custom border colors via wsconsctl(8)
282options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
283# compatibility to other console drivers
284options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
285options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
286options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
287options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
288options 	WSKBD_EVENT_AUTOREPEAT		# auto repeat in event mode
289#options 	WSKBD_USONLY			# strip off non-US keymaps
290# don't attach pckbd as the console if no PS/2 keyboard is found
291options 	PCKBD_CNATTACH_MAY_FAIL
292# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
293options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
294options 	UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver
295# allocate a number of virtual screens at autoconfiguration time
296options 	WSDISPLAY_DEFAULTSCREENS=4
297# use a large software cursor that doesn't blink
298options 	PCDISPLAY_SOFTCURSOR
299# modify the screen type of the console; defaults to "80x25"
300options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
301# work around a hardware bug that loaded fonts don't work; found on ATI cards
302options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
303# issue VGA BIOS POST on resume
304options 	VGA_POST
305# console scrolling support.
306options 	WSDISPLAY_SCROLLSUPPORT
307# enable VGA raster mode capable of displaying multilingual text on console
308#options 	VGA_RASTERCONSOLE
309# enable splash screen support; requires hw driver support
310#options 	SPLASHSCREEN
311
312# Keylock support
313options 	KEYLOCK
314options 	secmodel_keylock	# Requires options KEYLOCK
315
316# Kernel root file system and dump configuration.
317config		netbsd	root on ? type ?
318#config		netbsd	root on sd0a type ffs
319#config		netbsd	root on ? type nfs
320
321#
322# Device configuration
323#
324
325# Doesn't do anything yet.
326p64h2apic* at pci? dev? function?	# P64H2 IOxAPIC
327
328#apm0	at mainbus0			# Advanced power management
329
330# Tuning for power management, see apm(4) for more details.
331#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
332#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
333#options 	APM_POWER_PRINT		# Print stats on the console
334
335
336# Basic Bus Support
337
338#IPMI support
339ipmi0		at mainbus?
340
341# Advanced Configuration and Power Interface
342
343# This option can be used to retrieve CPU and APIC information.
344# that I/O APICs can be used if ACPI is enabled below.
345options 	MPBIOS_SCANPCI	# find PCI roots using MPBIOS
346options 	ACPI_SCANPCI	# find PCI roots using ACPI
347
348acpi0		at mainbus0
349
350options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
351
352# ACPI devices
353apm*		at acpi?		# ACPI apm emulation
354acpiacad*	at acpi?		# ACPI AC Adapter
355acpibat*	at acpi?		# ACPI Battery
356acpibut*	at acpi?		# ACPI Button
357acpidalb*	at acpi?		# ACPI Direct Application Launch Button
358acpiec* 	at acpi?		# ACPI Embedded Controller (late)
359acpiecdt*	at acpi?		# ACPI Embedded Controller (early)
360acpifan*	at acpi?		# ACPI Fan
361acpilid*	at acpi?		# ACPI Lid Switch
362acpipmtr*	at acpi?		# ACPI Power Meter (experimental)
363# XXX Do not enable this in a real kernel unless you also disable any
364# XXX "native" i2c controller.  Otherwise you'll have two accessors to
365# XXX the same bus, and bad things (tm) will happen!
366acpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
367acpitz* 	at acpi?		# ACPI Thermal Zone
368acpivga*	at acpi?		# ACPI Display Adapter
369acpiout*	at acpivga?		# ACPI Display Output Device
370acpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
371acpiwmi*	at acpi?		# ACPI WMI Mapper
372
373# Mainboard devices
374aibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
375applesmc*	at acpi?		# Apple System Management Controller
376asus*		at acpi?		# ASUS hotkeys
377attimer*	at acpi?		# AT Timer
378com*		at acpi?		# Serial communications interface
379fdc*		at acpi?		# Floppy disk controller
380fujbp*		at acpi?		# Fujitsu Brightness & Pointer
381fujhk*		at acpi?		# Fujitsu Hotkeys
382hpacel* 	at acpi?		# HP 3D DriveGuard accelerometer
383hpqlb*		at acpi?		# HP Quick Launch Buttons
384hpet*		at acpihpetbus?		# High Precision Event Timer (table)
385hpet*		at acpinodebus?		# High Precision Event Timer (device)
386joy*		at acpi?		# Joystick/Game port
387lpt*		at acpi?		# Parallel port
388mpu*		at acpi?		# Roland MPU-401 MIDI UART
389pckbc*		at acpi?		# PC keyboard controller
390pcppi*		at acpi?		# AT-style speaker sound
391qemufwcfg*	at acpi?		# QEMU Firmware Configuration device
392thinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
393#tpm*		at acpi?		# ACPI TPM (Experimental)
394ug*		at acpi?		# Abit uGuru Hardware monitor
395wb*		at acpi?		# Winbond W83L518D SD/MMC reader
396sdmmc*		at wb?			# SD/MMC bus
397wmidell*	at acpiwmibus?		# Dell WMI mappings
398wmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
399wmihp*		at acpiwmibus?		# HP WMI mappings
400wmimsi* 	at acpiwmibus?		# MSI WMI mappings
401wss*		at acpi?		# NeoMagic 256AV in wss mode
402ym*		at acpi?		# Yamaha OPL3-SA[23] audio
403
404# Sony Vaio jog dial
405spic*		at acpi?		# Sony Programmable I/O Controller
406wsmouse*	at spic?
407
408# Sony LCD brightness etc.
409sony*		at acpi?		# Sony Miscellaneous Controller
410
411# Toshiba Libretto devices
412vald* at acpi?
413
414# Apple System Management Controller devices
415applesmcfan*	at applesmcbus?
416applesmctemp*	at applesmcbus?
417
418# Plug-and-Play BIOS and attached devices
419
420pnpbios*	at mainbus?
421
422# mainboard audio chips
423ess*		at pnpbios? index ?	# ESS AudioDrive
424sb*		at pnpbios? index ?	# NeoMagic 256AV in sb mode
425wss*		at pnpbios? index ?	# NeoMagic 256AV in wss mode
426ym*		at pnpbios? index ?	# Yamaha OPL3-SA[23] audio
427
428# com port
429# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
430# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
431# will be no com0.  A side effect is pcmcia (and other) com? previously
432# starting at com3 may attach as com1 or com2.
433com*		at pnpbios? index ?	# serial ports
434
435# parallel port
436# The above "com*" comments apply, cf. "lpt0" under "ISA parallel
437# "printer interfaces".
438lpt*		at pnpbios? index ?	# parallel ports
439
440pckbc*		at pnpbios? index ?	# PC keyboard/mouse controller
441fdc*		at pnpbios? index ?	# floppy controller
442
443# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
444pciide* 	at pnpbios? index ?
445
446# PCI bus support
447pci*	at mainbus? bus ?
448pci*	at pchb? bus ?
449pci*	at ppb? bus ?
450pci*	at elansc? bus ?
451
452# Configure PCI using BIOS information
453options 	PCIBIOS			# PCI BIOS support
454options 	PCIBIOSVERBOSE		# PCI BIOS verbose info
455options 	PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
456options 	PCIBIOS_INTR_GUESS	# see pcibios(4)
457options 	PCIBIOS_LIBRETTO_FIXUP	# this code makes the Toshiba Libretto
458					# L2/L3 work, but should not be enabled
459					# on anything else.
460options 	PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20
461					# work, but should not be enabled
462					# on anything else.
463#options 	PCIINTR_DEBUG		# super-verbose PCI interrupt fixup
464
465# PCI fixups, for both PCIBIOS and ACPI
466options 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
467options 	PCI_BUS_FIXUP		# fixup PCI bus numbering
468options 	PCI_INTR_FIXUP		# fixup PCI interrupt routing
469
470# System Controllers
471elansc* at mainbus? bus ?		# AMD Elan SC520 System Controller
472gpio*	at elansc?
473elanpar*	at elansc?
474elanpex*	at elansc?
475
476# Intel Integrated Memory Controller SMBus (experimental)
477imc* at pci? dev ? function ?		# Intel Integrated Memory Controller,
478imcsmb* at imc?				# the associated SMBus controller,
479iic* at imcsmb?				# and the SMBus itself
480
481# Temperatures
482amdnb_misc* at pci?			# AMD NB Misc Configuration
483amdtemp* at amdnb_misc?			# AMD CPU Temperature sensors
484
485# PCI bridges
486amdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
487hpet*	at amdpcib?
488ichlpcib* at pci? dev ? function ?	# Intel ICH PCI-ISA w/ timecounter,
489					# watchdog, gpio, SpeedStep and HPET
490hpet0	at ichlpcib?			# High Precision Event Timer
491fwhrng* at ichlpcib?			# Intel 82802 FWH Random Number Generator
492tco*	at ichlpcib?			# TCO watchdog timer
493tcpcib* at pci? dev ? function ?	# Intel Atom E6xx PCI-LPC
494hpet* at tcpcib?
495gcscpcib* at pci? dev ? function ?	# AMD CS5535/CS5536 PCI-ISA w/
496gpio*	at gcscpcib?			# timecounter, watchdog and GPIO
497piixpcib* at pci? dev ? function ?	# Intel PIIX4 PCI-ISA w/ SpeedStep
498gscpcib* at pci? dev ? function ?	# NS Geode PCI-ISA w/ GPIO support
499viapcib* at pci? dev ? function ?	# VIA VT8235 PCI-ISA w/ SMBus support
500iic*	at viapcib?
501rdcpcib* at pci? dev ? function ?	# RDC Vortex86/PMX-1000 PCI-ISA w/
502pchb*	at pci? dev ? function ?	# PCI-Host bridges
503options 	AGP_X86
504pceb*	at pci? dev ? function ?	# PCI-EISA bridges
505pcib*	at pci? dev ? function ?	# PCI-ISA bridges
506pcmb*	at pci? dev ? function ?	# PCI-MCA bridges
507ppb*	at pci? dev ? function ?	# PCI-PCI bridges
508# XXX 'puc's aren't really bridges, but there's no better place for them here
509puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
510
511pwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
512
513agp*	at pchb?
514
515
516# EISA bus support
517eisa0	at mainbus?
518eisa0	at pceb?
519
520# ISA bus support
521isa0	at amdpcib?
522isa0	at gcscpcib?
523isa0	at ichlpcib?
524isa0	at piixpcib?
525isa0	at gscpcib?
526isa0	at viapcib?
527isa0	at rdcpcib?
528isa0	at mainbus?
529isa0	at pceb?
530isa0	at pcib?
531
532# Protech PS3100 cash drawer port
533ptcd0	at isa?
534gpio*	at ptcd?
535
536# IBM 4810 BSP cash drawer port
537ibmcd*	at pci? dev ? function ?
538gpio*	at ibmcd?
539
540# PCMCIA bus support
541pcmcia* at pcic? controller ? socket ?
542pcmcia* at tcic? controller ? socket ?
543
544# MCA bus support
545mca0	at mainbus?
546
547# ISA PCMCIA controllers
548pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
549pcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
550pcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
551tcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
552
553# PCI PCMCIA controllers
554pcic0	at pci? dev? function ?
555
556# ISA Plug-and-Play bus support
557isapnp0 at isa?
558
559# ISA Plug-and-Play PCMCIA controllers
560pcic*	at isapnp?
561
562# CardBus bridge support
563cbb*		at pci? dev ? function ?
564cardslot*	at cbb?
565
566# CardBus bus support
567cardbus*	at cardslot?
568pcmcia* 	at cardslot?
569
570# Console Devices
571
572# wscons
573pckbc0		at isa?			# PC keyboard controller
574pckbd*		at pckbc?		# PC keyboard
575pms*		at pckbc?		# PS/2 mouse for wsmouse
576options 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
577options 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
578options 	PMS_ALPS_TOUCHPAD	# Enable support for Alps Touchpads
579vga0		at isa?
580vga*		at pci? dev ? function ?
581pcdisplay0	at isa?			# CGA, MDA, EGA, HGA
582wskbd*		at pckbd? console ?
583wsmouse*	at pms? mux 0
584
585chipsfb*	at pci? dev ? function ?
586genfb*		at pci? dev ? function ?
587gffb*		at pci? dev ? function ?
588igsfb*		at pci? dev ? function ?
589machfb* 	at pci? dev ? function ?
590pm2fb*		at pci? dev ? function ?
591r128fb* 	at pci? dev ? function ?
592radeonfb*	at pci? dev ? function ?
593tga*		at pci? dev ? function ?	# DEC ZLXp-E[123] Graphics
594unichromefb*	at pci? dev ? function ?	# VIA Unichrome framebuffer console
595voodoofb*	at pci? dev ? function ?
596wcfb*	at pci? dev ? function ?
597wsdisplay*	at wsemuldisplaydev?
598
599# DRI legacy drivers
600#i915drm*	at drm?		# Intel i915, i945 DRM driver
601#mach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
602#mgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
603#r128drm*	at drm?		# ATI Rage 128 DRM driver
604#radeondrm*	at drm?		# ATI Radeon DRM driver
605#savagedrm*	at drm?		# S3 Savage DRM driver
606#sisdrm* 	at drm?		# SiS DRM driver
607#tdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
608#vboxdrm*	at drm?		# VirtualBox DRM driver
609
610# DRMKMS drivers
611i915drmkms*	at pci? dev ? function ?
612intelfb*	at intelfbbus?
613
614radeon* 	at pci? dev ? function ?
615radeondrmkmsfb* at radeonfbbus?
616
617# XXX disable amdgpu as it uses floating point arithmetics.
618#amdgpu* 	at pci? dev ? function ?
619#amdgpufb* 	at amdgpufbbus?
620
621nouveau*	at pci? dev ? function ?
622nouveaufb*	at nouveaufbbus?
623
624# DRMUMS drivers
625viadrmums*	at drm?
626
627attimer0	at isa?
628pcppi0		at isa?
629sysbeep0	at pcppi?
630
631# Serial Devices
632
633# PCI serial interfaces
634com*	at puc? port ?			# 16x50s on "universal" comm boards
635cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
636cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
637
638# ISA Plug-and-Play serial interfaces
639com*	at isapnp?			# Modems and serial boards
640
641# PCMCIA serial interfaces
642com*	at pcmcia? function ?		# Modems and serial cards
643
644pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
645com*	at pcmcom? slave ?		# ...and the slave devices
646
647# CardBus serial interfaces
648com*	at cardbus? function ?	# Modems and serial cards
649
650# Cardbus bridges
651#ppb*	at cardbus? function ?	# Cardbus-PCI bridges (www.magma.com)
652
653# ISA serial interfaces
654#options 	COM_HAYESP		# adds Hayes ESP serial board support
655com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
656com1	at isa? port 0x2f8 irq 3
657com2	at isa? port 0x3e8 irq 5
658com3	at isa? port 0x2e8 irq 9
659ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
660com*	at ast? slave ?
661boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
662boca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
663boca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
664com*	at boca? slave ?
665tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
666com*	at tcom? slave ?
667rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
668com*	at rtfps? slave ?
669cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
670addcom0 at isa? port 0x108 irq 5	# Addonics FlexPort 8S
671com*	at addcom? slave ?
672moxa0	at isa?	port 0x100 irq 5	# MOXA C168H serial card (experimental)
673com*	at moxa? slave ?
674ioat*	at isa? port 0x220 irq 5	# BOCA IOAT66 6-port serial card
675com*	at ioat? slave ?
676
677# MCA serial interfaces
678com*	at mca? slot ?			# 16x50s on comm boards
679
680# Parallel Printer Interfaces
681
682# PCI parallel printer interfaces
683lpt*	at puc? port ?			# || ports on "universal" comm boards
684
685# ISA parallel printer interfaces
686lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
687lpt1	at isa? port 0x278
688lpt2	at isa? port 0x3bc
689
690# ISA IEEE488 GPIB interfaces
691cec0	at isa? port 0x2b8 irq 5 drq 1
692gpib*	at cec?
693
694# IEEE488 GPIB support
695ppi*	at gpib?
696cs80bus* at gpib?
697ct*	at cs80bus? slave ? punit ?
698mt*	at cs80bus? slave ? punit ?
699rd*	at cs80bus? slave ? punit ?
700
701# Hardware monitors
702
703# AMD 768 and 8111 power/ACPI controllers
704amdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
705iic*	at amdpm?			# sensors below are on this bus
706
707# Acer Labs M7101 SMBus controller
708alipm*	at pci? dev ? function ?
709iic*	at alipm?
710
711# Intel ICH SMBus controller
712ichsmb* at pci? dev ? function ?
713iic*	at ichsmb?
714
715# NVIDIA nForce2/3/4 SMBus controller
716nfsmbc* at pci? dev ? function ?
717nfsmb*	at nfsmbc?
718iic*	at nfsmb?
719
720# Intel PIIX4 power management controllers
721piixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
722iic*	at piixpm?			# SMBus on PIIX4
723
724# I2C controller as found in some Intel PCH devices.
725dwiic*		at pci?			# I2C controller
726iic*		at dwiic?
727
728# dbCool Thermal monitor and fan controller
729dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
730dbcool* at iic? addr 0x2D		# Tyan S2881
731dbcool* at iic? addr 0x2E		# Tyan S2882-D
732
733# IBM Hawk Integrated Systems Management Processor
734ibmhawk0	at iic?	addr 0x37
735
736# LM7[89] and compatible hardware monitors
737# Use flags to select temp sensor type (see lm(4) man page for details)
738lm0	at iic?	addr 0x2e flags 0x0
739
740# SMSC LPC47M192 hardware monitor
741smscmon*	at iic? addr 0x2c
742#smscmon*	at iic? addr 0x2d	# (alternate address)
743
744# IBM Thinkpad Active Protection System
745aps0	at isa? port 0x1600
746
747# Fintek Super I/O with hardware monitor
748finsio0 	at isa? port 0x4e
749
750# iTE IT87xxF Super I/O with watchdog and sensors support
751itesio0 	at isa? port 0x2e
752
753# Winbond LPC Super I/O
754wbsio*	at isa? port 0x2e
755wbsio*	at isa? port 0x4e
756
757# LM7[89] and compatible hardware monitors
758lm0	at isa?	port 0x290 flags 0x0	# other common: 0x280, 0x310
759lm*	at wbsio?
760
761# SMSC LPC47B397 hardware monitor functions
762smsc0	at isa? port 0x02e
763
764# PC87366 hardware monitor
765nsclpcsio*	at isa?
766gpio*		at nsclpcsio?
767
768# Abit uGuru Hardware system monitor
769ug0	at isa? port 0xe0
770
771# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer
772viaenv* 	at pci? dev ? function ?
773
774# Serial Presence Detect capable memory modules and optional temp sensors
775spdmem* at iic? addr 0x50
776spdmem* at iic? addr 0x51
777spdmem* at iic? addr 0x52
778spdmem* at iic? addr 0x53
779spdmem* at iic? addr 0x54
780spdmem* at iic? addr 0x55
781spdmem* at iic? addr 0x56
782spdmem* at iic? addr 0x57
783sdtemp* at iic? addr 0x18
784sdtemp* at iic? addr 0x19
785sdtemp* at iic? addr 0x1a
786sdtemp* at iic? addr 0x1b
787sdtemp* at iic? addr 0x1c
788sdtemp* at iic? addr 0x1d
789sdtemp* at iic? addr 0x1e
790sdtemp* at iic? addr 0x1f
791
792# I2C HID devices
793ihidev* at iic?
794
795# I2C Mice
796ims*	at ihidev? reportid ?
797wsmouse* at ims? mux 0
798
799# I2C Displays
800ssdfb*	at iic?
801
802# I2O devices
803iop*	at pci? dev ? function ?	# I/O processor
804iopsp*	at iop? tid ?			# SCSI/FC-AL ports
805ld*	at iop? tid ?			# block devices
806dpti*	at iop? tid 0			# DPT/Adaptec control interface
807
808# GPIO devices
809gpio*	at gscpcib?
810gpio*	at gpiosim?
811
812# 1-Wire support
813gpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
814gpioow* 	at gpio?
815onewire*	at gpioow?
816
817# 1-Wire devices
818owtemp* 	at onewire?			# Temperature sensors
819
820# i2c support
821gpioiic*	at gpio? offset ? mask ? flag 0x00	# flag 0x01 reverses
822							# SCA and SCL signals
823iic*		at gpioiic?
824
825# Keylock support
826gpiolock*	at gpio?
827
828# Software pulsing GPIO pins
829gpiopwm*	at gpio?
830
831# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio)
832soekrisgpio0	at isa? port 0x680
833
834# SCSI Controllers and Devices
835
836# PCI SCSI controllers
837adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
838adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
839ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
840ahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
841bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
842dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
843iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
844isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
845mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
846mfii*	at pci? dev ? function ?	# LSI MegaRAID SAS (Fusion and newer)
847mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
848mpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030 (Fusion-MPT)
849mpii*	at pci? dev ? function ?	# LSI Logic Fusion-MPT II
850nca*	at pci? dev ? function ?	# Domex DMX-3191D
851njs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
852pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
853siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
854esiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
855options 	SIOP_SYMLED		# drive the act. LED in software
856trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
857
858# EISA SCSI controllers
859ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
860ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
861bha*	at eisa? slot ?			# BusLogic 7xx SCSI
862dpt*	at eisa? slot ?			# DPT EATA SCSI
863uha*	at eisa? slot ?			# UltraStor 24f SCSI
864
865# PCMCIA SCSI controllers
866aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
867esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
868nca*	at pcmcia? function ?		# NCR53C400 SCSI
869spc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
870
871# ISA Plug-and-Play SCSI controllers
872aha*	at isapnp?			# Adaptec AHA-154[02
873aic*	at isapnp?			# Adaptec AHA-1520B
874
875# ISA SCSI controllers
876adv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02] SCSI
877aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
878aha1	at isa? port 0x334 irq ? drq ?
879ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
880aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
881bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
882bha1	at isa? port 0x334 irq ? drq ?
883# The "nca" and "dpt" probes might give false hits or hang your machine.
884dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
885esp0	at isa? port 0x230 irq ?	# Emulex ESP406 and Qlogic FAS408 SCSI
886nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
887nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
888sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
889uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
890uha1	at isa? port 0x340 irq ? drq ?
891wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
892wds1	at isa? port 0x358 irq 11 drq 5
893
894# CardBus SCSI cards
895adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
896ahc*	at cardbus? function ?	# Adaptec ADP-1480
897njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
898
899# MCA SCSI cards
900aha*	at mca? slot ?			# Adaptec AHA-1640
901esp*	at mca? slot ?			# NCR 53C90 SCSI Adapter
902
903# SCSI bus support
904scsibus* at scsi?
905
906# SCSI devices
907sd*	at scsibus? target ? lun ?	# SCSI disk drives
908st*	at scsibus? target ? lun ?	# SCSI tape drives
909cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
910ch*	at scsibus? target ? lun ?	# SCSI autochangers
911ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
912ss*	at scsibus? target ? lun ?	# SCSI scanners
913dse*	at scsibus? target ? lun ?	# SCSI ethernet (Dayna)
914se*	at scsibus? target ? lun ?	# SCSI ethernet adapters
915uk*	at scsibus? target ? lun ?	# SCSI unknown
916
917# SCSI NIC
918se* at scsibus? target ? lun ?
919
920# RAID controllers and devices
921aac*	at pci? dev ? function ?	# Adaptec AAC family
922amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
923arcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
924cac*	at eisa? slot ?			# Compaq EISA array controllers
925cac*	at pci? dev ? function ?	# Compaq PCI array controllers
926ciss*	at pci? dev ? function ?	# HP Smart Array controllers
927icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
928mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
929mlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
930twa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
931twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
932
933ld*	at aac? unit ?			# logical disk devices
934ld*	at amr? unit ?
935ld*	at cac? unit ?
936ld*	at icp? unit ?
937ld*	at twa? unit ?
938ld*	at twe? unit ?
939ld*	at mlx? unit ?
940
941icpsp*	at icp? unit ?			# SCSI pass-through
942
943# IDE and related devices
944# PCI IDE controllers - see pciide(4) for supported hardware.
945# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
946# how to set up DMA modes for this chip. This may work, or may cause
947# a machine hang with some controllers.
948pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
949acardide*	at pci? dev ? function ?	# Acard IDE controllers
950aceride*	at pci? dev ? function ?	# Acer Lab IDE controllers
951ahcisata*	at pci? dev ? function ?	# AHCI SATA controllers
952artsata*	at pci? dev ? function ?	# Intel i31244 SATA controller
953cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
954cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
955gcscide*	at pci? dev ? function ?	# AMD CS5535 Companion IDE controllers
956geodeide*	at pci? dev ? function ?	# AMD Geode IDE controllers
957hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
958iteide* 	at pci? dev ? function ?	# IT Express IDE controllers
959ixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
960jmide*		at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
961ahcisata*	at jmide?
962mvsata* 	at pci? dev ? function ?	# Marvell Hercules-I/II
963optiide*	at pci? dev ? function ?	# Opti IDE controllers
964piixide*	at pci? dev ? function ?	# Intel IDE controllers
965pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
966pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
967rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
968rdcide* 	at pci? dev ? function ?	# RDC PMX-1000 IDE controllers
969satalink*	at pci? dev ? function ?	# SiI SATALink controllers
970schide* 	at pci? dev ? function ?	# Intel SCH IDE controllers
971siisata*	at pci? dev ? function ?	# SiI SteelVine controllers
972siside* 	at pci? dev ? function ?	# SiS IDE controllers
973slide*		at pci? dev ? function ?	# Symphony Labs IDE controllers
974svwsata*	at pci? dev ? function ?	# ServerWorks SATA controllers
975stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
976toshide*	at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
977viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
978
979# ISA Plug-and-Play IDE controllers
980wdc*	at isapnp?
981
982# PCMCIA IDE controllers
983wdc*	at pcmcia? function ?
984
985# CardBus IDE controllers
986njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
987siisata* at cardbus? function ? 		# SiI SteelVine controllers
988
989# ISA ST506, ESDI, and IDE controllers
990# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
991# fall back to 16bits I/O if 32bits I/O are not functional).
992# Some controllers pass the initial 32bit test, but will fail later.
993wdc0	at isa? port 0x1f0 irq 14 flags 0x00
994wdc1	at isa? port 0x170 irq 15 flags 0x00
995
996# ATA (IDE) bus support
997atabus* at ata?
998options 	ATADEBUG
999
1000# IDE drives
1001# Flags are used only with controllers that support DMA operations
1002# and mode settings (e.g. some pciide controllers)
1003# The lowest order four bits (rightmost digit) of the flags define the PIO
1004# mode to use, the next set of four bits the DMA mode and the third set the
1005# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
1006# to use, and the last bit must be 1 for this setting to be used.
1007# For DMA and UDMA, 0xf (1111) means 'disable'.
1008# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
1009# (0xc=1100, 0xa=1010, 0xf=1111)
1010# 0x0000 means "use whatever the drive claims to support".
1011wd*	at atabus? drive ? flags 0x0000
1012
1013# ATA RAID configuration support, as found on some Promise controllers.
1014pseudo-device	ataraid
1015ld*	at ataraid? vendtype ? unit ?
1016
1017# ATAPI bus support
1018atapibus* at atapi?
1019
1020# ATAPI devices
1021# flags have the same meaning as for IDE drives.
1022cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
1023sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
1024st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
1025uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
1026
1027
1028# Miscellaneous mass storage devices
1029
1030# ISA floppy
1031fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
1032#fdc1	at isa? port 0x370 irq ? drq ?
1033fd*	at fdc? drive ?			# the drives themselves
1034# some machines need you to do this instead of fd*
1035fd0	at fdc0 drive 0
1036
1037# ISA CD-ROM devices
1038mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
1039
1040# ISA tape devices
1041# note: the wt driver conflicts unpleasantly with SMC boards at the
1042# same I/O address. The probe reprograms their EEPROMs. Don't
1043# uncomment it unless you are actually using it.
1044wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
1045
1046# MCA ESDI devices
1047edc*	at mca? slot ?			# IBM ESDI Disk Controllers
1048ed*	at edc?
1049
1050
1051# Network Interfaces
1052
1053# PCI network interfaces
1054age*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
1055an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
1056alc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
1057ale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
1058aq*	at pci? dev ? function ?	# Aquantia AQC 10 gigabit
1059ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
1060athn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
1061atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
1062bce*	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
1063bge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
1064bnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
1065bwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
1066cas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
1067dge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
1068ep*	at pci? dev ? function ?	# 3Com 3c59x
1069epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
1070et*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
1071ex*	at pci? dev ? function ?	# 3Com 3c90x[BC]
1072fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
1073gem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
1074gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
1075hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
1076iavf*	at pci? dev ? function ?	# Intel Adaptive Virtual Function
1077ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
1078iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
1079iwm*	at pci? dev ? function ?	# Intel Wireless WiFi Link 7xxx
1080iwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
1081ixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
1082ixl*	at pci? dev ? function ?	# Intel Ethernet 700 Series
1083jme*	at pci? dev ? function ?	# JMicron JMC2[56]0 Ethernet
1084lii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
1085malo*	at pci? dev ? function ?	# Marvell Libertas Wireless
1086mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
1087msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
1088mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
1089ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
1090nfe*	at pci? dev ? function ?	# NVIDIA nForce Ethernet
1091ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
1092pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
1093ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
1094re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
1095rge*	at pci? dev ? function ?	# Realtek 8125
1096rtk*	at pci? dev ? function ?	# Realtek 8129/8139
1097rtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
1098sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
1099sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
1100skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
1101sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
1102ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
1103stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
1104ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
1105tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
1106tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
1107txp*	at pci? dev ? function ?	# 3com 3cr990
1108vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
1109vmx*	at pci? dev ? function ?	# VMware VMXNET3
1110vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
1111vte*	at pci? dev ? function ?	# Vortex86 RDC R6040 Fast Ethernet
1112wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
1113wm*	at pci? dev ? function ?	# Intel 8254x gigabit
1114wpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
1115xge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
1116
1117# EISA network interfaces
1118ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
1119tlp*	at eisa? slot ?			# DEC DE-425 Ethernet
1120
1121# ISA Plug-and-Play network interfaces
1122an*	at isapnp?			# Aironet 802.11
1123cs*	at isapnp?			# CS8900 Ethernet
1124ep*	at isapnp?			# 3Com 3c509 Ethernet
1125fmv*	at isapnp?			# Fujitsu FMV-183
1126le*	at isapnp?			# AMD PCnet-ISA Ethernet
1127ne*	at isapnp?			# NE2000-compatible Ethernet
1128
1129# PCMCIA network interfaces
1130an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
1131awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
1132cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
1133cs*	at pcmcia? function ?		# CS89xx Ethernet
1134ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
1135malo*	at pcmcia? function ?		# Marvell Libertas
1136mbe*	at pcmcia? function ?		# MB8696x based Ethernet
1137ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
1138ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
1139sm*	at pcmcia? function ?		# Megahertz Ethernet
1140wi*	at pcmcia? function ?		# Lucent/Intersil WaveLAN/IEEE (802.11)
1141xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
1142com*	at xirc?
1143xi*	at xirc?
1144mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
1145com*	at mhzc?
1146sm*	at mhzc?
1147
1148# ISA network interfaces
1149ate0	at isa? port 0x2a0 irq ?		# AT1700
1150cs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
1151ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
1152eg0	at isa? port 0x280 irq 9		# 3c505 Ethernet cards
1153el0	at isa? port 0x300 irq 9		# 3c501 Ethernet cards
1154ep*	at isa? port ? irq ?			# 3c509 Ethernet cards
1155ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3c507
1156ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
1157fmv0	at isa? port 0x2a0 irq ?		# FMV-181/182
1158ix0	at isa? port 0x300 irq 10		# EtherExpress/16
1159iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
1160lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
1161depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
1162le*	at depca?
1163nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
1164le*	at nele?
1165ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
1166bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
1167le*	at bicc?
1168ne0	at isa? port 0x280 irq 9		# NE[12]000 Ethernet cards
1169ne1	at isa? port 0x300 irq 10
1170sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
1171we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
1172we1	at isa? port 0x300 iomem 0xcc000 irq 10
1173
1174# CardBus network cards
1175ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
1176athn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n)
1177atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
1178bwi*	at cardbus? function ?	# Broadcom BCM43xx wireless
1179ex*	at cardbus? function ?	# 3Com 3c575TX
1180fxp*	at cardbus? function ?	# Intel i8255x
1181malo*	at cardbus? function ?	# Marvell Libertas Wireless
1182ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
1183re*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
1184rtk*	at cardbus? function ?	# Realtek 8129/8139
1185rtw*	at cardbus? function ?	# Realtek 8180L (802.11)
1186tlp*	at cardbus? function ?	# DECchip 21143
1187
1188# MCA network cards
1189elmc*	at mca? slot ?			# 3Com EtherLink/MC (3c523)
1190ep*	at mca? slot ?			# 3Com EtherLink III (3c529)
1191we*	at mca? slot ?			# WD/SMC Ethernet
1192ate*	at mca? slot ?			# Allied Telesis AT1720
1193ne*	at mca? slot ?			# Novell NE/2 and clones
1194tra*	at mca? slot ?			# Tiara LANCard/E and clones
1195le*	at mca? slot ?			# SKNET Personal/MC2+
1196
1197# MII/PHY support
1198acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
1199amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
1200atphy*	at mii? phy ?			# Attansic/Atheros PHYs
1201bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
1202brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
1203ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
1204dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
1205etphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
1206exphy*	at mii? phy ?			# 3Com internal PHYs
1207gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
1208glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
1209gphyter* at mii? phy ?			# NS83861 Gig-E PHY
1210icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
1211igphy*	at mii? phy ?			# Intel IGP01E1000
1212ihphy*	at mii? phy ?			# Intel 82577 PHYs
1213ikphy*	at mii? phy ?			# Intel 82563 PHYs
1214inphy*	at mii? phy ?			# Intel 82555 PHYs
1215iophy*	at mii? phy ?			# Intel 82553 PHYs
1216ipgphy* at mii? phy ?			# IC PLUS IP1000A/IP1001 PHYs
1217jmphy*	at mii? phy ?			# Jmicron JMP202/211 PHYs
1218lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
1219makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
1220nsphy*	at mii? phy ?			# NS83840 PHYs
1221nsphyter* at mii? phy ? 		# NS83843 PHYs
1222pnaphy* at mii? phy ?			# generic HomePNA PHYs
1223qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
1224rdcphy* at mii? phy ?			# RDC R6040 internal PHY
1225rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
1226rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
1227smscphy* at mii? phy ?			# SMSC LAN87xx PHYs
1228sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
1229tlphy*	at mii? phy ?			# ThunderLAN PHYs
1230tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
1231ukphy*	at mii? phy ?			# generic unknown PHYs
1232urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
1233
1234
1235# USB Controller and Devices
1236
1237# Virtual USB controller
1238pseudo-device	vhci
1239
1240# PCI USB controllers
1241ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
1242gcscehci* at pci? dev ? function ?	# Enhanced Host Controller (Geode CSC)
1243ohci*	at pci?	dev ? function ?	# Open Host Controller
1244uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
1245xhci*	at pci?	dev ? function ?	# eXtensible Host Controller
1246
1247# CardBus USB controllers
1248ehci*	at cardbus? function ?		# Enhanced Host Controller
1249ohci*	at cardbus? function ?		# Open Host Controller
1250uhci*	at cardbus? function ?		# Universal Host Controller (Intel)
1251
1252# ISA USB controllers
1253slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
1254
1255# PCMCIA USB controllers
1256slhci*	at pcmcia? function ?		# ScanLogic SL811HS
1257
1258# USB bus support
1259usb*	at ehci?
1260usb*	at gcscehci?
1261usb*	at ohci?
1262usb*	at slhci?
1263usb*	at uhci?
1264usb*	at vhci?
1265usb*	at xhci?
1266
1267# USB Hubs
1268uhub*	at usb?
1269uhub*	at uhub? port ?
1270
1271# USB HID device
1272uhidev* at uhub? port ? configuration ? interface ?
1273
1274# USB Mice
1275ums*	at uhidev? reportid ?
1276wsmouse* at ums? mux 0
1277
1278# USB Touchscreens
1279uts*	at uhidev? reportid ?
1280wsmouse* at uts? mux 0
1281
1282# USB eGalax touch-panel
1283uep*	at uhub? port ?
1284wsmouse* at uep? mux 0
1285
1286# USB Apple trackpad
1287uatp*	at uhidev? reportid ?
1288wsmouse* at uatp? mux 0
1289
1290# USB Keyboards
1291ukbd*	at uhidev? reportid ?
1292wskbd*	at ukbd? console ? mux 1
1293
1294# USB TEMPer and TEMPerHUM
1295uthum*	at uhidev? reportid ?
1296
1297# USB serial adapter
1298ucycom* at uhidev? reportid ?
1299
1300# USB Generic HID devices
1301uhid*	at uhidev? reportid ?
1302
1303# USB LCDs and USB-VGA adaptors
1304udl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
1305wsdisplay* at udl?
1306
1307# USB Printer
1308ulpt*	at uhub? port ? configuration ? interface ?
1309
1310# USB Modem
1311umodem* at uhub? port ? configuration ?
1312ucom*	at umodem?
1313
1314# Option N.V. Wireless WAN modems
1315uhso*	at uhub? port ? configuration ?
1316
1317# USB Mass Storage
1318umass*	at uhub? port ? configuration ? interface ?
1319
1320# USB audio
1321uaudio* at uhub? port ? configuration ?
1322
1323# USB MIDI
1324umidi* at uhub? port ? configuration ?
1325
1326# USB IrDA
1327# USB-IrDA bridge spec
1328uirda* at uhub? port ? configuration ? interface ?
1329irframe* at uirda?
1330
1331stuirda* at uhub? port ? configuration ? interface ?
1332irframe* at stuirda?
1333
1334# SigmaTel STIr4200 USB/IrDA Bridge
1335ustir* at uhub? port ?
1336irframe* at ustir?
1337
1338# KingSun/DonShine USB/IrDA Bridge
1339udsir*	at uhub? port ?
1340irframe* at udsir?
1341
1342# Windows Media Center IR tranceiver
1343irmce*	at uhub? port ?
1344cir*	at irmce?
1345
1346# USB Ethernet adapters
1347aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
1348axe*	at uhub? port ?		# ASIX AX88172 based adapters
1349axen*	at uhub? port ?		# ASIX AX88178a/AX88179 based adapters
1350cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
1351cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
1352kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
1353mue*	at uhub? port ?		# Microchip LAN75xx/LAN78xx based adapters
1354udav*	at uhub? port ?		# Davicom DM9601 based adapters
1355umb*	at uhub? port ?		# Mobile Broadband Interface Model (EXPERIMENTAL)
1356ure*	at uhub? port ?		# Realtek RTL8152/RTL8153 based adapters
1357url*	at uhub? port ?		# Realtek RTL8150L based adapters
1358urndis* at uhub? port ?		# Microsoft RNDIS specification
1359
1360# USB 802.11 adapters
1361atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
1362athn*	at uhub? port ?		# Atheros AR9002U
1363otus*	at uhub? port ?		# Atheros AR9001U
1364ural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
1365rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
1366run*	at uhub? port ?		# Ralink Technology RT(2[78]|30)00 802.11a/b/g/n
1367upgt*	at uhub? port ?		# Intersil PrismGT
1368urtw*	at uhub? port ?		# Realtek RTL8187/RTL8187B 802.11b/g
1369urtwn*	at uhub? port ?		# Realtek RTL8188CU/RTL8192CU 802.11b/g/n
1370zyd*	at uhub? port ?		# Zydas ZD1211
1371
1372# Prolific PL2301/PL2302 host-to-host adapter
1373upl*	at uhub? port ?
1374
1375# Serial adapters
1376uark*	at uhub? port ?		# ArkMicroChips 3116 serial adapter
1377ucom*	at uark? portno?
1378
1379ubsa*	at uhub? port ?		# Belkin serial adapter
1380ucom*	at ubsa? portno ?
1381
1382uchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
1383ucom*	at uchcom? portno ?
1384
1385uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
1386ucom*	at uftdi? portno ?
1387
1388uipaq*	at uhub? port ?		# iPAQ PDAs
1389ucom*	at uipaq? portno ?
1390
1391umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
1392ucom*	at umct? portno ?
1393
1394uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
1395ucom*	at uplcom? portno ?
1396
1397uslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
1398ucom*	at uslsa? portno ?
1399
1400uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
1401ucom*	at uvscom? portno ?
1402
1403uark* at uhub? port ?
1404ucom*	at uark? portno ?
1405
1406umcs* at uhub? port ?		# Moschip MCS7xxx serial adapter
1407ucom*	at umcs? portno ?
1408
1409uhmodem* at uhub?
1410ucom*	at uhmodem? portno ?
1411
1412# RIM BlackBerry
1413uberry* at uhub? port ?
1414
1415# Apple iPad
1416uipad* at uhub? port ?
1417
1418# USB Handspring Visor
1419uvisor* at uhub? port ?
1420ucom*	at uvisor?
1421
1422# Kyocera AIR-EDGE PHONE
1423ukyopon* at uhub? port ?
1424ucom*	at ukyopon? portno ?
1425
1426# USB scanners that use SCSI emulation, e.g., HP5300
1427usscanner* at uhub? port ?
1428
1429# Topfield TF5000PVR range of DVB recorders
1430utoppy* at uhub? port ?
1431
1432# D-Link DSB-R100 USB radio
1433udsbr*	at uhub? port ?
1434radio*	at udsbr?
1435
1436# USB Generic driver
1437ugen*	at uhub? port ?
1438
1439# USB 3G datacards
1440umodeswitch* at uhub? port ?
1441u3g*	at uhub? port ?
1442ucom*	at u3g?
1443
1444# USB generic serial port (e.g., data over cellular)
1445ugensa* at uhub? port ?
1446ucom*	at ugensa?
1447
1448# Araneus Alea I/II TRNG
1449ualea* at uhub? port ? configuration ? interface ?
1450
1451# IrDA and Consumer Ir devices
1452
1453# Toshiba Oboe
1454oboe*	at pci? dev ? function ?
1455irframe* at oboe?
1456
1457
1458# PCI IEEE1394 controllers
1459fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
1460
1461# CardBus IEEE1394 controllers
1462fwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
1463
1464ieee1394if* at fwohci?
1465fwip*	at ieee1394if?			# IP over IEEE1394
1466sbp*	at ieee1394if? euihi ? euilo ?	# SCSI over IEEE1394
1467
1468
1469# SD/MMC/SDIO Controller and Device support
1470
1471# PCI SD/MMC controller
1472sdhc*	at pci?				# SD Host Controller
1473rtsx*	at pci?				# Realtek RTS5209/RTS5229 Card Reader
1474
1475# CardBus SD/MMC controller
1476sdhc*	at cardbus? function ?		# SD Host Controller
1477
1478sdmmc*	at sdhc?			# SD/MMC bus
1479sdmmc*	at rtsx?			# SD/MMC bus
1480ld*	at sdmmc?
1481
1482
1483# Audio Devices
1484
1485# PCI audio devices
1486auacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
1487auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
1488auixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
1489autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
1490auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
1491clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
1492clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
1493cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
1494eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
1495emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
1496esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
1497esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
1498eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
1499fms*	at pci? dev ? function ?	# Forte Media FM801
1500gcscaudio* at pci? dev ? function ?	# AMD Geode CS5536 Companion Audio
1501neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
1502sv*	at pci? dev ? function ?	# S3 SonicVibes
1503yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
1504
1505# ISA Plug-and-Play audio devices
1506ess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
1507guspnp* at isapnp?			# Gravis Ultra Sound PnP audio
1508sb*	at isapnp?			# SoundBlaster-compatible audio
1509wss*	at isapnp?			# Windows Sound System
1510ym*	at isapnp?			# Yamaha OPL3-SA[23] audio
1511
1512# ISA audio devices
1513# the "aria" probe might give false hits
1514aria0	at isa? port 0x290 irq 10		# Aria
1515ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
1516gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
1517pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
1518sb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
1519wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
1520cms0	at isa? port 0x220			# Creative Music System
1521
1522# OPL[23] FM synthesizers
1523opl0	at isa? port 0x388	# use only if not attached to sound card
1524opl*	at cmpci? flags 1
1525opl*	at eso?
1526opl*	at ess?
1527opl*	at fms?
1528opl*	at sb?
1529opl*	at sv?
1530opl*	at wss?
1531opl*	at yds?
1532opl*	at ym?
1533
1534# High Definition Audio
1535hdaudio*	at pci? dev ? function ?	# High Definition Audio
1536hdafg*		at hdaudiobus?
1537
1538# Audio support
1539audio*	at audiobus?
1540
1541# MPU 401 UARTs
1542mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
1543mpu*	at isapnp?
1544mpu*	at cmpci?
1545mpu*	at eso?
1546mpu*	at fms?
1547mpu*	at sb?
1548mpu*	at yds?
1549mpu*	at ym?
1550
1551# MIDI support
1552midi*	at midibus?
1553midi*	at pcppi?		# MIDI interface to the PC speaker
1554
1555# The spkr driver provides a simple tone interface to the built in speaker.
1556spkr*	at pcppi?		# PC speaker
1557spkr*	at audio?		# PC speaker (synthesized)
1558wsbell*	at spkr?		# Bell for wscons display 
1559
1560# FM-Radio devices
1561# ISA radio devices
1562az0	at isa? port 0x350	# Aztech/PackardBell FM Radio Card
1563az1	at isa? port 0x358
1564rt0	at isa? port 0x20c	# AIMS Lab Radiotrack & compatible
1565rt1	at isa? port 0x284
1566rt2	at isa? port 0x30c
1567rt3	at isa? port 0x384
1568rtii0	at isa? port 0x20c	# AIMS Lab Radiotrack II FM Radio Card
1569rtii1	at isa? port 0x30c
1570sf2r0	at isa? port 0x384	# SoundForte RadioLink SF16-FMR2 FM Radio Card
1571
1572# PCI radio devices
1573gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
1574
1575# Radio support
1576radio*	at az?
1577radio*	at gtp?
1578radio*	at rt?
1579radio*	at rtii?
1580radio*	at sf2r?
1581
1582
1583# Video capture devices
1584
1585pseye*	at uhub?		# Sony PLAYSTATION(R) Eye webcam
1586uvideo* at uhub?		# USB Video Class capture devices
1587auvitek* at uhub?		# Auvitek AU0828 video capture devices
1588emdtv*	at uhub?		# Empia EM28xx video capture devices
1589video*	at videobus?
1590dtv*	at dtvbus?
1591
1592
1593# TV cards
1594
1595# Brooktree 848/849/878/879 based TV cards
1596bktr*	at pci? dev ? function ?
1597radio*	at bktr?
1598
1599# Conexant CX2388[0-3]-based DTV cards
1600cxdtv*	at pci? dev ? function ?
1601iic*	at cxdtv?
1602
1603# Conexant CX23885-based TV cards
1604coram*	at pci? dev ? function ?
1605iic*	at coram?
1606
1607isv*	at isa? port 0x3e0		# IDEC Supervision/16 image capture
1608
1609# Bluetooth Controller and Device support
1610
1611# Bluetooth PCMCIA Controllers
1612bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
1613btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
1614
1615# Bluetooth SDIO Controller
1616sbt* at sdmmc?
1617
1618# Bluetooth USB Controllers
1619ubt* at uhub? port ?
1620aubtfwl* at uhub? port ?
1621
1622# Bluetooth Device Hub
1623bthub* at bcsp?
1624bthub* at bt3c?
1625bthub* at btbc?
1626bthub* at btuart?
1627bthub* at sbt?
1628bthub* at ubt?
1629
1630# Bluetooth HID support
1631bthidev* at bthub?
1632
1633# Bluetooth Mouse
1634btms* at bthidev? reportid ?
1635wsmouse* at btms? mux 0
1636
1637# Bluetooth Keyboard
1638btkbd* at bthidev? reportid ?
1639wskbd* at btkbd? console ? mux 1
1640
1641# Bluetooth Apple Magic Mouse
1642btmagic* at bthub?
1643wsmouse* at btmagic? mux 0
1644
1645# Bluetooth Audio support
1646btsco* at bthub?
1647
1648
1649# Mice
1650
1651# ISA busmice
1652lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
1653lms1	at isa? port 0x238 irq 5
1654mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
1655mms1	at isa? port 0x238 irq 5
1656wsmouse*	at lms? mux 0
1657wsmouse*	at mms? mux 0
1658
1659
1660# Cryptographic Devices
1661
1662# PCI cryptographic devices
1663glxsb*	at pci? dev ? function ?	# AMD Geode LX Security Block
1664hifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
1665ubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
1666
1667# Trusted Platform Module
1668tpm*	at isa? iomem 0xfed40000 irq 7
1669
1670# Joysticks
1671
1672joy*	at pnpbios? index ?		# Game port
1673
1674# ISA Plug-and-Play joysticks
1675joy*	at isapnp?			# Game ports (usually on audio cards)
1676
1677# PCI joysticks
1678joy*	at pci?				# Game ports (usually on audio cards)
1679joy*	at eap?				# See CAVEATS in eap(4) before enabling
1680joy*	at eso?				# ESS Solo-1 on-board joystick
1681
1682# ISA joysticks. Probe is a little strange; add only if you have one.
1683joy0	at isa? port 0x201
1684
1685
1686# Miscellaneous Devices
1687geodegcb*  at pci? dev ? function ?	# Geode GCB area
1688geodewdog* at geodegcb? 		# AMD Geode SC1100 watchdog timer
1689geodecntr* at geodegcb? 		# AMD Geode SC1100 high res. counter
1690
1691# Middle Digital, Inc. PCI-Weasel serial console board control
1692# devices (watchdog timer, etc.)
1693weasel* at pci?
1694
1695# Virtio devices
1696virtio*	at pci? dev ? function ?	# Virtio PCI device
1697viomb*	at virtio?			# Virtio memory balloon device
1698ld*	at virtio?			# Virtio disk device
1699vioif*	at virtio?			# Virtio network device
1700viornd* at virtio?			# Virtio entropy device
1701vioscsi* at virtio?			# Virtio SCSI device
1702vio9p*	at virtio?			# Virtio 9P device
1703viocon* at virtio?			# Virtio console device
1704
1705# Flash subsystem
1706flash* at flashbus?
1707
1708# NAND subsystem
1709nand* at nandbus?
1710
1711# Pull in optional local configuration - always at end
1712#include 	"arch/i386/conf/ALL.local"
1713
1714
1715# Pseudo-Devices
1716
1717pseudo-device	crypto		# /dev/crypto device
1718pseudo-device	swcrypto	# software crypto implementation
1719
1720# disk/mass storage pseudo-devices
1721pseudo-device	bio			# RAID control device driver
1722pseudo-device	ccd			# concatenated/striped disk devices
1723pseudo-device	cgd			# cryptographic disk devices
1724pseudo-device	raid			# RAIDframe disk driver
1725options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
1726options 	RAID_DIAGNOSTIC		# Additional raidframe diagnostic info
1727# Options to enable various other RAIDframe RAID types.
1728options 	RF_INCLUDE_EVENODD=1
1729options 	RF_INCLUDE_RAID5_RS=1
1730options 	RF_INCLUDE_PARITYLOGGING=1
1731options 	RF_INCLUDE_CHAINDECLUSTER=1
1732options 	RF_INCLUDE_INTERDECLUSTER=1
1733options 	RF_INCLUDE_PARITY_DECLUSTERING=1
1734options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
1735pseudo-device	fss			# file system snapshot device
1736
1737pseudo-device	md			# memory disk device (ramdisk)
1738options 	MEMORY_DISK_HOOKS	# enable root ramdisk
1739options 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
1740
1741pseudo-device	vnd			# disk-like interface to files
1742options 	VND_COMPRESSION		# compressed vnd(4)
1743
1744pseudo-device	dm			# device-mapper disk driver
1745
1746# network pseudo-devices
1747pseudo-device	bpfilter		# Berkeley packet filter
1748pseudo-device	carp			# Common Address Redundancy Protocol
1749pseudo-device	ipfilter		# IP filter (firewall) and NAT
1750pseudo-device	mpls			# MPLS pseudo-interface
1751pseudo-device	loop			# network loopback
1752pseudo-device	ppp			# Point-to-Point Protocol
1753pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
1754options 	PPPOE_SERVER		# Enable PPPoE server via link0
1755pseudo-device	sl			# Serial Line IP
1756pseudo-device	irframetty		# IrDA frame line discipline
1757pseudo-device	tap			# virtual Ethernet
1758pseudo-device	tun			# network tunneling over tty
1759pseudo-device	gre			# generic L3 over IP tunnel
1760pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
1761pseudo-device	faith			# IPv[46] tcp relay translation i/f
1762pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
1763pseudo-device	vlan			# IEEE 802.1q encapsulation
1764pseudo-device	bridge			# simple inter-network bridging
1765pseudo-device	vether			# Virtual Ethernet for bridge
1766pseudo-device	agr			# IEEE 802.3ad link aggregation
1767pseudo-device	pf			# PF packet filter
1768pseudo-device	pflog			# PF log if
1769pseudo-device	pfsync			# PF sync if
1770#pseudo-device	npf			# NPF packet filter
1771pseudo-device	kttcp
1772pseudo-device	l2tp			# L2TPv3 interface
1773# srt is EXPERIMENTAL
1774pseudo-device	srt			# source-address-based routing
1775
1776pseudo-device	canloop			# CAN loopback interface
1777
1778#
1779# accept filters, built as module(7)s by default
1780pseudo-device	accf_data		# "dataready" accept filter
1781pseudo-device	accf_http		# "httpready" accept filter
1782
1783# miscellaneous pseudo-devices
1784pseudo-device	pty			# pseudo-terminals
1785pseudo-device	sequencer		# MIDI sequencer
1786# rnd works; RND_COM does not on port i386 yet.
1787options 	RND_COM			# use "com" randomness as well (BROKEN)
1788pseudo-device	clockctl		# user control of clock subsystem
1789pseudo-device	ksyms			# /dev/ksyms
1790pseudo-device	lockstat		# lock profiling
1791pseudo-device	bcsp			# BlueCore Serial Protocol
1792pseudo-device	btuart			# Bluetooth HCI UART (H4)
1793pseudo-device	gpiosim		1	# GPIO simulator
1794
1795# a pseudo device needed for Coda	# also needs CODA (above)
1796pseudo-device	vcoda			# coda minicache <-> venus comm.
1797
1798# wscons pseudo-devices
1799pseudo-device	wsmux			# mouse & keyboard multiplexor
1800pseudo-device	wsfont
1801
1802# software watchdog driver - swwdog(4)
1803pseudo-device	swwdog
1804
1805#software environmental sensor - swsensor(4)
1806pseudo-device	swsensor
1807
1808# cmos(4) pseudo-device
1809pseudo-device	cmos
1810
1811# pseudo audio device driver
1812pseudo-device	pad
1813
1814# userland interface to drivers, including autoconf and properties retrieval
1815pseudo-device	drvctl
1816
1817# EFI runtime support
1818options 	EFI_RUNTIME
1819pseudo-device 	efi			# /dev/efi
1820
1821# Pass-to-Userspace Transporter
1822pseudo-device	putter
1823
1824# Userspace block/char drivers
1825pseudo-device	pud
1826
1827# Hardware-assisted data mover interface
1828pseudo-device	dmoverio
1829
1830pseudo-device	nandemulator
1831
1832# Veriexec
1833include "dev/veriexec.config"
1834
1835options 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
1836options 	PAX_ASLR=0		# PaX Address Space Layout Randomization
1837#options 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
1838
1839options ATHHAL_DEBUG
1840options A9PCIC_DEBUG
1841options AAC_DEBUG
1842options AAU_DEBUG
1843options AC97_DEBUG
1844options AC97_IO_DEBUG
1845options ACPI_APM_DEBUG
1846#
1847# ACPI_DEBUG_ALLOC can not be used with ACPI
1848# kernel modules. It requires also ACPI_DEBUG.
1849# ACPI_DEBUG_MUTEX is only for ACPICA debugging.
1850#
1851options ACPI_DEBUG
1852options ACPI_DEBUG_ALLOC
1853options ACPI_MUTEX_DEBUG
1854options ADB_DEBUG
1855options ADM1030_DEBUG
1856options ADT7467_DEBUG
1857options AE_DEBUG
1858options AGP_DEBUG
1859options AHADEBUG
1860options AHBDEBUG
1861options AHC_DEBUG=1
1862options AHD_DEBUG
1863options AHD_DEBUG_OPTS=1
1864options AH_DEBUG_ALQ
1865options AIC_DEBUG
1866options AI_DEBUG
1867options ALTQ_DEBUG
1868options AMD756_DEBUG
1869options AMRR_DEBUG
1870options AN_DEBUG
1871options APMDEBUG
1872options APMDEBUG_VALUE=1
1873options ARCKBD_DEBUG
1874options ARGO_DEBUG
1875options ARP_DEBUG
1876options ASC_DEBUG
1877options ATAPI_DEBUG_PROBE
1878options ATA_DEBUG
1879options ATA_RAID_DEBUG
1880options ATE_DEBUG
1881options ATHN_DEBUG
1882options ATMEL_DEBUG
1883options ATPPC_DEBUG
1884options ATU_DEBUG
1885options ATW_BBPDEBUG
1886options ATW_DEBUG
1887options ATW_SYNDEBUG
1888options AUACER_DEBUG
1889options AUCCDEBUG
1890options AUCONV_DEBUG
1891options AUDIO_DEBUG
1892options AUE_DEBUG
1893options AUICH_DEBUG
1894options AUICH_MODEM_DEBUG
1895options AURATECONV_DEBUG
1896options AUSMBUS_PSC_DEBUG
1897options AWACS_DEBUG
1898options AWI_DEBUG
1899options AXE_DEBUG
1900options AXEN_DEBUG
1901options AZALIA_DEBUG
1902options BAH_DEBUG
1903options BCACHE_DEBUG
1904options BDEBUG
1905options BEDEBUG
1906options BGE_DEBUG
1907options BHADEBUG
1908options BIOS_MEMORY_DEBUG
1909options BIT3DEBUG
1910options BKTR_RADIO_DEBUG
1911options BLUETOOTH_DEBUG
1912options BMAC_DEBUG
1913options BMD_DEBUG
1914options BNX_DEBUG
1915options BOOTP_DEBUG
1916options BOOTP_DEBUGx
1917options BOOTXX_DEBUG
1918options BOOT_DEBUG
1919options BT463_DEBUG
1920options BTDEBUG
1921options BTHSET_DEBUG
1922options BTLBDEBUG
1923options BTNMGRDEBUG
1924options BUS_DMA_DEBUG
1925options BUS_SPACE_DEBUG
1926options BWFM_DEBUG
1927options CACHE_DEBUG
1928options CARDBUS_DEBUG
1929options CAS_DEBUG
1930options CD18XXDEBUG
1931options CGSIX_DEBUG
1932options CHANGER_DEBUG
1933options CISS_DEBUG
1934options CKSUMDEBUG
1935options CLOCKDEBUG
1936options CLOCK_DEBUG
1937options CMALO_DEBUG
1938options CNW_DEBUG
1939options COMDEBUG
1940options COMVRIPDEBUG
1941options COM_DEBUG
1942options COM_HPCIODEBUG
1943options CONSDEBUG
1944options CRYPTO_DEBUG
1945options CS4280_DEBUG
1946options CS_DEBUG
1947options CUE_DEBUG
1948options CY_DEBUG
1949options CZ_DEBUG
1950options DAIC_DEBUG
1951options DBRI_DEBUG
1952options DDB_DEBUG
1953options DEBUGBUG
1954options DEBUGGER_THREADING
1955options DEBUGTERM
1956options DEBUGXXX
1957options DEBUG_1284
1958options DEBUG_1543
1959options DEBUG_A4000
1960options DEBUG_ALIGN
1961options DEBUG_ALLOC
1962options DEBUG_AMIGA_IF_ED
1963options DEBUG_AOUTM68K
1964options DEBUG_BEFOREMMU
1965options DEBUG_BIOSCALL
1966options DEBUG_CHUNK_DIR
1967options DEBUG_CLOCK
1968options DEBUG_COFF
1969options DEBUG_CP0_ACCESS
1970options DEBUG_CURSOR
1971options DEBUG_DDB
1972options DEBUG_DR
1973options DEBUG_EMUL
1974options DEBUG_ET4000
1975options DEBUG_EXEC
1976options DEBUG_EXT2
1977options DEBUG_FAULT_CORRECTION
1978options DEBUG_FFB
1979options DEBUG_FIND_COMPORT
1980options DEBUG_FIND_PCIC
1981options DEBUG_FIND_PCIC_I82365SL_ONLY
1982options DEBUG_FPE
1983options DEBUG_GPIO
1984options DEBUG_GPIO2
1985options DEBUG_IPR_VJ
1986options DEBUG_ISAPNP
1987options DEBUG_ISSIGNAL
1988options DEBUG_KERNADDR_ACCESS
1989options DEBUG_KERNEL_START
1990options DEBUG_KGDB
1991options DEBUG_LED
1992options DEBUG_LINUX
1993options DEBUG_LINUX_FUTEX
1994options DEBUG_MEMLOAD
1995options DEBUG_MEMORY_LIST
1996options DEBUG_MEMSIZE
1997options DEBUG_NEG
1998options DEBUG_NFS_BOOT_DHCP
1999options DEBUG_P9100
2000options DEBUG_PAGE0
2001options DEBUG_PCI_MACHDEP
2002options DEBUG_PGRP
2003options DEBUG_POOL
2004options DEBUG_PORTF
2005options DEBUG_PROM
2006options DEBUG_PTM
2007options DEBUG_RAWFS
2008options DEBUG_RPC
2009options DEBUG_SNAPPER
2010options DEBUG_SYNC
2011options DEBUG_TERM
2012options DEBUG_UL
2013options DEBUG_VAL
2014options DEBUG_WITH_STDIO
2015options DEVSW_DEBUG
2016options DEV_DEBUG
2017options DISKLABEL_DEBUG
2018options DISK_DEBUG
2019options DL_DEBUG
2020options DMAC_DEBUG
2021options DMA_DEBUG
2022options DMCDEBUG
2023options DRACORAWKEYDEBUG
2024options EARLY_DEBUG_EVENT
2025options EBUS_DEBUG
2026options EDC_DEBUG
2027options EDEBUG
2028options ED_DEBUG
2029options EFINET_DEBUG
2030options EF_DEBUG
2031options EGAFONTDEBUG
2032options EGDEBUG
2033options EHCI_DEBUG
2034options EL_DEBUG
2035options EMAC3_DEBUG
2036options EMUXKI_DEBUG
2037options EM_DEBUG
2038options EN_DEBUG
2039options EN_DEBUG_RANGE
2040options EPGPIO_DEBUG
2041options EPICMEDIADEBUG
2042options EPPCIC_DEBUG
2043options ESDEBUG
2044options ESP_DEBUG
2045options ESP_SBUS_DEBUG
2046options ESS_ISA_DEBUG
2047options ETHER_DEBUG
2048options EWSKBD_DEBUG
2049options EXEC_DEBUG
2050options EXTENT_DEBUG
2051options EXTREME_DEBUG
2052options EXTREME_EXTREME_DEBUG
2053options FBDEBUG
2054options FDDEBUG
2055options FD_DEBUG
2056options FFBDEBUG
2057options FILECORE_DEBUG
2058options FILECORE_DEBUG_BR
2059options FIRESTARDEBUG
2060options FLASH_DEBUG
2061options FLP_DEBUG
2062options FMV_DEBUG
2063options FOO_DEBUG
2064options FPU_DEBUG
2065options GDROMDEBUG
2066options GEM_DEBUG
2067options GEM_DEBUG1
2068options GEODE_DEBUG
2069options GEOM_DEBUG
2070options GE_DEBUG
2071options GMAC_DEBUG
2072options GPIO_DEBUG
2073options GRE_DEBUG
2074options GSFB_DEBUG_MONITOR
2075options GTFDEBUG
2076options HD64461PCMCIA_DEBUG
2077options HD64461VIDEO_DEBUG
2078options HD64465PCMCIA_DEBUG
2079options HDAUDIO_DEBUG
2080options HDAFG_DEBUG
2081options HDLCDEBUG
2082options HIFN_DEBUG
2083options HMEDEBUG
2084options HPCAPMDEBUG
2085options HPC_DEBUG_INTERRUPT_MONITOR
2086options HPC_DEBUG_LCD
2087options HP_DEBUG
2088options HSCXADEBUG
2089options HSCXBDEBUG
2090options I2ODEBUG
2091options ICONV_DEBUG
2092options ICP_DEBUG
2093options IEDEBUG
2094options IEEE80211_DEBUG_REFCNT
2095options IFAREF_DEBUG
2096options IFA_STATS
2097options IFMEDIA_DEBUG
2098options IHA_DEBUG_STATE
2099options INTRDEBUG
2100options INTR_DEBUG
2101options IPAQ_LCD_DEBUG
2102options IPF_DEBUG
2103options IPSEC_DEBUG
2104options IPW_DEBUG
2105options IP_RCMD_PROXY_DEBUG
2106options IRFRAMET_DEBUG
2107options IRFRAME_DEBUG
2108options IRQ_DEBUG
2109options ISACDEBUG
2110options ISADMA_DEBUG
2111options ISO_DEBUG
2112options IT8368DEBUG
2113options ITE8181DEBUG
2114options ITK_PROBE_DEBUG
2115options IWI_DEBUG
2116options IWM_DEBUG
2117options IWN_DEBUG
2118options IX_DEBUG
2119options IYDEBUG
2120options IYMEMDEBUG
2121options J6X0TP_DEBUG
2122options J720TP_DEBUG
2123options KBD_DEBUG
2124options KB_DEBUG
2125options KERNEL_DEBUG
2126options KLOADER_DEBUG
2127options KSTACK_DEBUG
2128options KSYMS_DEBUG
2129options KUE_DEBUG
2130options LANA_DEBUG
2131options LCD_DEBUG
2132options LEDEBUG
2133options LE_DEBUG
2134options LIFDEBUG
2135options LII_DEBUG
2136options LINUX_SG_DEBUG
2137options LLCDEBUG
2138options LLC_DEBUG
2139options LOADER_DEBUG
2140options LOAD_DEBUG_INFO
2141options LOCKF_DEBUG
2142options LPT_DEBUG
2143options MAGMA_DEBUG
2144options MAPLE_DEBUG
2145options MB8795_DEBUG
2146options MBUFTRACE
2147options MCDDEBUG
2148options MCDEBUG
2149options MCHAIN_DEBUG
2150options MEC_DEBUG
2151options MEDIABAY_DEBUG
2152options MEMORY_MAP_DEBUG
2153options MESH_DEBUG
2154options MFI_DEBUG
2155options MFII_DEBUG
2156options MIDI_DEBUG
2157options MLYDEBUG
2158options MMEYEPCMCIADEBUG
2159options MOUSE_DEBUG
2160options MPDEBUG
2161options MQ200_DEBUG
2162options MRT6DEBUG
2163options MSDOSFS_DEBUG
2164options MSG_DEBUG_OK
2165options MSK_DEBUG
2166options MULAW_DEBUG
2167options MYDEV_DEBUG
2168options NB_DEBUG
2169options NCR5380_DEBUG
2170options NCR53C9X_DEBUG
2171options ND6_DEBUG
2172options NDEBUG
2173options ND_DEBUG
2174options NETATALKDEBUG
2175options NETDOCK_DEBUG_DRIVER
2176options NETIF_DEBUG
2177options NET_DEBUG
2178options NET_MPSAFE
2179options NFE_DEBUG
2180options NFS_DEBUG
2181options NFS_DEBUG_COMMIT
2182options NIDEBUG
2183options NJSC32_DEBUG
2184options NON_DEBUG
2185options NOTDEF_DEBUG
2186options NOT_DEBUG
2187options NSIODEBUG
2188options NTFS_DEBUG
2189options OBOE_DEBUG
2190options OFW_DEBUG
2191options OHCI_DEBUG
2192options OLD_ELF_DEBUG
2193options ONEWIRE_DEBUG
2194options ONOE_DEBUG
2195options OPTPOINTDEBUG
2196options OSIOP_DEBUG
2197options OST_DEBUG
2198options OTUS_DEBUG
2199options P1212_DEBUG
2200options PARDEBUG
2201options PBMS_DEBUG
2202options PCIINTR_DEBUG
2203options PCI_DEBUG
2204options PCKBCDEBUG
2205options PCKBPORTDEBUG
2206options PCMCIACISDEBUG
2207options PCMCIADEBUG
2208options PDCDEBUG
2209options PDINFO_DEBUG
2210options PFCKBD_DEBUG
2211options PFDEBUG
2212options PFLOGDEBUG
2213options PHYSMEMDEBUG
2214options PI1PPC_DEBUG
2215options PIIXPM_DEBUG
2216options PIIX_DEBUG
2217options PIOC_DEBUG
2218options PLCOM_DEBUG
2219options PLD_WDOG_DEBUG
2220options PLIP_DEBUG
2221options PLUMICUDEBUG
2222options PLUMIOBUSDEBUG
2223options PLUMPCMCIA_DEBUG
2224options PLUMPOWERDEBUG
2225options PLUMVIDEODEBUG
2226options PMAPDEBUG
2227options PMAP_COUNT_DEBUG
2228options PMAP_DEBUG
2229options PMAP_DEBUG_MODIFIED
2230options PMON_DEBUG
2231options PMSDEBUG
2232options PNPBIOSDEBUG
2233options PNPBIOSDEBUG_VALUE=1
2234options PNPBIOSEVENTSDEBUG
2235options PORT_DEBUG
2236options PPBUS_DEBUG
2237options PPPOE_DEBUG
2238options PROFILER_DEBUG
2239options PSH3TP_DEBUG
2240options PWCTLDEBUG
2241options QEDEBUG
2242options QN_DEBUG
2243options QN_DEBUG1
2244options QTDEBUG
2245options RAL_DEBUG
2246options RARP_DEBUG
2247options RBUS_DEBUG
2248options RCONS_DEBUG
2249options RDDEBUG
2250options REALLYDEBUG
2251options RND_DEBUG
2252options ROMDEBUG
2253options RPC_DEBUG
2254options RQDEBUG
2255options RTC_DEBUG
2256options RTSOCK_DEBUG
2257options RTW_DEBUG
2258options RUM_DEBUG
2259options RUN_DEBUG
2260options SACKBCDEBUG
2261options SBC_DEBUG
2262options SBJCN_DEBUG
2263options SBMACDEBUG
2264options SBSCN_DEBUG
2265options SCC_DEBUG
2266options SCHED_DEBUG
2267options SCIF_DEBUG
2268options SCI_DEBUG
2269options SCR_DEBUG
2270options SCSIDEBUG
2271options SCSIPI_DEBUG
2272options SCSI_DEBUG
2273options SCTP_DEBUG
2274options SD_DEBUG
2275options SEA_DEBUG
2276options SEA_DEBUGQUEUE
2277options SEDEBUG
2278options SED_DEBUG
2279options SEEQ8005_DEBUG
2280options SEM_DEBUG
2281options SEQUENCER_DEBUG
2282options SER_DEBUG
2283options SFAS_DEBUG
2284options SGMAP_DEBUG
2285options SHMDEBUG
2286options SIF_DEBUG
2287options SIOP_DEBUG
2288options SIOP_DEBUG_DR
2289options SIOP_DEBUG_INTR
2290options SIOP_DEBUG_SCHED
2291options SK_DEBUG
2292options SMAP_DEBUG
2293options SMB_IOD_DEBUG
2294options SMB_SOCKETDATA_DEBUG
2295options SMB_SOCKET_DEBUG
2296options SMB_VNODE_DEBUG
2297options SNAPPER_DEBUG
2298options SNDEBUG
2299options SOCKBUF_DEBUG
2300options SONIC_DEBUG
2301options SPARC_PCI_DEBUG
2302options SPC_DEBUG
2303options SPIC_DEBUG
2304options SPIFI_DEBUG
2305options SPKRDEBUG
2306options SPLDEBUG
2307options SPPDEBUG
2308options SSCOM_DEBUG
2309options STIDEBUG
2310options STP4020_DEBUG
2311options SUNSCPAL_DEBUG
2312options SYNAPTICSDEBUG
2313options SYSCALL_DEBUG
2314options SYSCTL_DEBUG_CREATE
2315options SYSCTL_DEBUG_SETUP
2316options SYSVBFS_VNOPS_DEBUG
2317options TC5165DEBUG
2318options TCICDEBUG
2319options TCICISADEBUG
2320options TCPISS_DEBUG
2321options TCTRLDEBUG
2322options TIMECOUNTER_DEBUG
2323options TIMEKEEPER_DEBUG
2324options TLDEBUG
2325options TLDEBUG_ADDR
2326options TLDEBUG_RX
2327options TLDEBUG_TX
2328options TLP_DEBUG
2329options TP_DEBUG
2330options TRACE_DEBUG
2331options TRAPDEBUG
2332options TRAP_SIGDEBUG
2333options TRISADEBUG
2334options TRM_DEBUG
2335options TROPICDEBUG
2336options TRTCMISADEBUG
2337options TSDEBUG
2338options TSLOT_DEBUG
2339options TTY_DEBUG
2340options TUDEBUG
2341options TULIP_DEBUG
2342options TWA_DEBUG
2343options TWE_DEBUG
2344options TX3912VIDEO_DEBUG
2345options TX39BIU_DEBUG
2346options TX39CLOCK_DEBUG
2347options TX39ICU_DEBUG
2348options TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT
2349options TX39IO_DEBUG
2350options TX39IRDEBUG
2351options TX39POWER_DEBUG
2352options TX39SIBDEBUG
2353options TX39UARTDEBUG
2354options TX39UART_DEBUG
2355options UAUDIO_DEBUG
2356options UBSA_DEBUG
2357options UBSEC_DEBUG
2358options UBT_DEBUG
2359options UCB1200_DEBUG
2360options UCBIO_DEBUG
2361options UCBSNDDEBUG
2362options UCBTPDEBUG
2363options UCOM_DEBUG
2364options UCYCOM_DEBUG
2365options UDAV_DEBUG
2366options UDSBR_DEBUG
2367options UFTDI_DEBUG
2368options UGENSA_DEBUG
2369options UGEN_DEBUG
2370options UHADEBUG
2371options UHCI_DEBUG
2372options UHIDEV_DEBUG
2373options UHID_DEBUG
2374options UHUB_DEBUG
2375options UIPAQ_DEBUG
2376options UIRDA_DEBUG
2377options UISDATA_DEBUG
2378options UKBD_DEBUG
2379options UKYOPON_DEBUG
2380options ULPT_DEBUG
2381options UL_DEBUG
2382options UMASS_DEBUG
2383options UMB_DEBUG
2384options UMCT_DEBUG
2385options UMIDIQUIRK_DEBUG
2386options UMIDI_DEBUG
2387options UMODEM_DEBUG
2388options UNIV_DEBUG
2389options UPGT_DEBUG
2390options UPLCOM_DEBUG
2391options UPL_DEBUG
2392options URAL_DEBUG
2393options URLPHY_DEBUG
2394options URL_DEBUG
2395options URNDIS_DEBUG
2396options URTW_DEBUG
2397options URTWN_DEBUG
2398options USB_DEBUG
2399options USCANNER_DEBUG
2400options USEFULL_DEBUG
2401options USSCANNER_DEBUG
2402options USTIR_DEBUG
2403options UTOPPY_DEBUG
2404options UVIDEO_DEBUG
2405options UVISOR_DEBUG
2406options UVSCOM_DEBUG
2407options VCONS_DEBUG
2408options VERYLOWDEBUG
2409options VGAFONTDEBUG
2410options VIA8231_DEBUG
2411options VIAENV_DEBUG
2412options VIAPCIB_DEBUG
2413options VIDCAUDIO_DEBUG
2414options VMEDEBUG
2415options VOODOOFB_DEBUG
2416options VR4181AIU_DEBUG
2417options VRAIU_DEBUG
2418options VRBCUDEBUG
2419options VRC2GPIODEBUG
2420options VRC2PWMDEBUG
2421options VRC4173BCU_DEBUG
2422options VRDCU_DEBUG
2423options VRDMAAU_DEBUG
2424options VRGIUDEBUG
2425options VRIP_DEBUG
2426options VRISADEBUG
2427options VRKIUDEBUG
2428options VRLEDDEBUG
2429options VRPIUDEBUG
2430options VRPMUDEBUG
2431options VRRTCDEBUG
2432options VS_DEBUG
2433options VT100_DEBUG
2434options VTOC_DEBUG
2435options WDCNDELAY_DEBUG
2436options WDSDEBUG
2437options WE_DEBUG
2438options WFQ_DEBUG
2439options WI_DEBUG
2440options WI_RING_DEBUG
2441options WM_DEBUG
2442options WPI_DEBUG
2443options WSKBD_DEBUG
2444options WSMUX_DEBUG
2445options XBD_DEBUG
2446options XDC_DEBUG
2447options XDDEBUG
2448options XDEBUG
2449options XENDEBUG
2450options XENDEBUG_NET
2451options XENDEBUG_VBD
2452options XENNET_DEBUG
2453options XENNET_DEBUG_DUMP
2454options XEN_CLOCK_DEBUG
2455options XE_DEBUG
2456options XHCI_DEBUG
2457options XYC_DEBUG
2458options ZSKBD_DEBUG
2459options ZSMACDEBUG
2460options ZYD_DEBUG
2461options xSCSI_DEBUG
2462options xSD_DEBUG
2463