XEN3_DOM0 revision 1.198
11.198Sabs# $NetBSD: XEN3_DOM0,v 1.198 2023/02/09 14:09:48 abs Exp $
21.187Sgdt
31.187Sgdt# XEN3_DOM0 machine description file
41.187Sgdt#
51.187Sgdt# This machine description file is used to generate a kernel to be
61.187Sgdt# used as a PV dom0 under Xen.  It is similar to GENERIC in that it is
71.187Sgdt# intended to be useful for most applications.  Generally, besides
81.187Sgdt# changes that are specifically required for Xen (e.g., XENPV), it
91.187Sgdt# should be similar to GENERIC.  Some differences are currently
101.187Sgdt# necessary, such as drivers that fail under Xen but work in GENERIC,
111.187Sgdt# for reasons that do not follow from Xen architecture.
121.2Sbouyer
131.2Sbouyerinclude 	"arch/amd64/conf/std.xen"
141.2Sbouyer
151.190Sgdtoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
161.190Sgdt
171.198Sabs#ident		"XEN3_DOM0-$Revision: 1.198 $"
181.126Scherry
191.190Sgdtmaxusers	32		# estimated number of users
201.2Sbouyer
211.190Sgdt# delay between "rebooting ..." message and hardware reset, in milliseconds
221.190Sgdt#options 	CPURESET_DELAY=2000
231.2Sbouyer
241.190Sgdt# This option allows you to force a serial console at the specified
251.190Sgdt# I/O address.   see console(4) for details.
261.190Sgdt#options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
271.190Sgdt#	you don't want the option below ON iff you are using the
281.190Sgdt#	serial console option of the new boot strap code.
291.190Sgdt#options 	CONS_OVERRIDE	# Always use above! independent of boot info
301.190Sgdt
311.190Sgdt# The following options override the memory sizes passed in from the boot
321.190Sgdt# block.  Use them *only* if the boot block is unable to determine the correct
331.190Sgdt# values.  Note that the BIOS may *correctly* report less than 640k of base
341.190Sgdt# memory if the extended BIOS data area is located at the top of base memory
351.190Sgdt# (as is the case on most recent systems).
361.190Sgdt#options 	REALBASEMEM=639		# size of base memory (in KB)
371.190Sgdt#options 	REALEXTMEM=15360	# size of extended memory (in KB)
381.190Sgdt
391.190Sgdt# The following options limit the overall size of physical memory
401.190Sgdt# and/or the maximum address used by the system.
411.190Sgdt# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map
421.190Sgdt# and can deal with holes in the memory layout.
431.190Sgdt#options 	PHYSMEM_MAX_SIZE=64	# max size of physical memory (in MB)
441.190Sgdt#options 	PHYSMEM_MAX_ADDR=2048	# don't use memory above this (in MB)
451.140Spgoyette
461.192Sgdt## Replace std.amd64 content
471.192Sgdt
481.192Sgdtmainbus0 at root
491.192Sgdtcpu* at mainbus?
501.192Sgdtioapic* at mainbus? apid ?
511.192Sgdt
521.192Sgdt# Atheros HAL options
531.192Sgdtinclude "external/isc/atheros_hal/conf/std.ath_hal"
541.192Sgdt
551.192Sgdt## end std.amd64
561.192Sgdt
571.190Sgdt## Xen-specific options
581.2Sbouyer
591.192Sgdtoptions 	XENPV		# PV dom0 support
601.2Sbouyeroptions 	DOM0OPS
611.190Sgdtoptions 	MULTIPROCESSOR
621.190Sgdt#options 	NO_PREEMPTION	# needed if MULTIPROCESSOR is disabled
631.190Sgdt
641.190Sgdt#options 	CONSDEVNAME="\"xencons\""
651.190Sgdt#options 	CONS_OVERRIDE
661.190Sgdt
671.190Sgdt## end Xen-specific options
681.56Scherry
691.2Sbouyer# boot messages with MPBIOS, acpi and ioapic can be quite large
701.7Smarttioptions 	MSGBUFSIZE=24576
711.2Sbouyer
721.190Sgdt# Standard system options
731.2Sbouyer
741.2Sbouyeroptions 	INSECURE	# disable kernel security levels - X needs this
751.2Sbouyer
761.2Sbouyeroptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
771.2Sbouyeroptions 	NTP		# NTP phase/frequency locked loop
781.2Sbouyer
791.2Sbouyeroptions 	KTRACE		# system call tracing via ktrace(1)
801.2Sbouyer
811.125Sdhollandoptions 	CPU_UCODE	# cpu ucode loading support
821.77Scegger
831.190Sgdt# Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
841.2Sbouyeroptions 	SYSVMSG		# System V-like message queues
851.2Sbouyeroptions 	SYSVSEM		# System V-like semaphores
861.2Sbouyeroptions 	SYSVSHM		# System V-like memory sharing
871.2Sbouyer
881.124Smaxvoptions 	MODULAR		# new style module(7) framework
891.194Smanuoptions 	MODULAR_DEFAULT_AUTOLOAD
901.2Sbouyeroptions 	USERCONF	# userconf(4) support
911.191Sgdt#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
921.2Sbouyeroptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
931.2Sbouyer
941.192Sgdt# CPU features
951.192Sgdt#acpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
961.194Smanu				# needs x86_cpu_idle_halt in cpu.c (!xenpv)
971.194Smanucoretemp*	at cpu?		# Intel on-die thermal sensor
981.192Sgdtest0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
991.192Sgdt#hyperv0 	at cpu0		# Microsoft Hyper-V
1001.192Sgdt#odcm0		at cpu0		# On-demand clock modulation
1011.192Sgdtpowernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
1021.192Sgdt#vmt0		at cpu0		# VMware Tools
1031.192Sgdt
1041.145Ssevan# Alternate buffer queue strategies for better responsiveness under high
1051.145Ssevan# disk I/O load.
1061.74Sjakllsch#options 	BUFQ_READPRIO
1071.74Sjakllschoptions 	BUFQ_PRIOCSCAN
1081.74Sjakllsch
1091.2Sbouyer# Diagnostic/debugging support options
1101.103Sdhollandoptions 	DIAGNOSTIC	# inexpensive kernel consistency checks
1111.190Sgdt				# XXX to be commented out on release branch
1121.78Sbouyer#options 	DEBUG		# expensive debugging checks/support
1131.190Sgdt#options 	LOCKDEBUG	# expensive locking checks/support
1141.190Sgdt
1151.190Sgdt#
1161.190Sgdt# Because gcc omits the frame pointer for any -O level, the line below
1171.190Sgdt# is needed to make backtraces in DDB work.
1181.190Sgdt#
1191.190Sgdtmakeoptions	COPTS="-O2 -fno-omit-frame-pointer"
1201.2Sbouyeroptions 	DDB		# in-kernel debugger
1211.194Smanu#options 	DDB_COMMANDONENTER="bt"	# execute command when ddb is entered
1221.194Smanu#options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
1231.2Sbouyeroptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
1241.2Sbouyer#options 	KGDB		# remote debugger
1251.2Sbouyer#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
1261.194Smanumakeoptions	DEBUG="-g"	# compile full symbol table for CTF
1271.194Smanuoptions DDB_COMMANDONENTER="trace;show registers"
1281.190Sgdt#options 	SYSCALL_STATS	# per syscall counts
1291.190Sgdt#options 	SYSCALL_TIMES	# per syscall times
1301.190Sgdt#options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
1311.194Smanuoptions 	KDTRACE_HOOKS	# kernel DTrace hooks
1321.191Sgdt
1331.191Sgdt# Kernel Undefined Behavior Sanitizer (kUBSan).
1341.191Sgdt#options 	KUBSAN			# mandatory
1351.191Sgdt#options 	UBSAN_ALWAYS_FATAL	# optional: panic on all kUBSan reports
1361.191Sgdt
1371.191Sgdt# Kernel Address Sanitizer (kASan). You need to disable SVS to use it.
1381.191Sgdt# The quarantine is optional and can help KASAN find more use-after-frees.
1391.191Sgdt# Use KASAN_PANIC if you want panics instead of warnings.
1401.191Sgdt#makeoptions 	KASAN=1		# mandatory
1411.191Sgdt#options 	KASAN		# mandatory
1421.191Sgdt#no options	SVS		# mandatory
1431.191Sgdt#options 	POOL_QUARANTINE	# optional
1441.191Sgdt#options 	KASAN_PANIC	# optional
1451.191Sgdt
1461.191Sgdt# Kernel Concurrency Sanitizer (kCSan).
1471.191Sgdt#makeoptions 	KCSAN=1		# mandatory
1481.191Sgdt#options 	KCSAN		# mandatory
1491.191Sgdt#options 	KCSAN_PANIC	# optional
1501.191Sgdt
1511.191Sgdt# Kernel Memory Sanitizer (kMSan). You need to disable SVS and kernel modules
1521.191Sgdt# to use it. POOL_NOCACHE is optional and can help KMSAN find uninitialized
1531.191Sgdt# memory in pool caches. Note that KMSAN requires at least 4GB of RAM.
1541.191Sgdt#makeoptions 	KMSAN=1		# mandatory
1551.191Sgdt#options 	KMSAN		# mandatory
1561.191Sgdt#no options	SVS		# mandatory
1571.191Sgdt#no options 	MODULAR		# mandatory
1581.191Sgdt#no options 	MODULAR_DEFAULT_AUTOLOAD	# mandatory
1591.191Sgdt#options 	POOL_NOCACHE	# optional
1601.191Sgdt#options 	KMSAN_PANIC	# optional
1611.191Sgdt
1621.191Sgdt# Kernel Code Coverage Driver.
1631.191Sgdt#makeoptions	KCOV=1
1641.191Sgdt#options 	KCOV
1651.191Sgdt
1661.191Sgdt# Fault Injection Driver.
1671.191Sgdt#options 	FAULT
1681.2Sbouyer
1691.2Sbouyer# Compatibility options
1701.191Sgdt# x86_64 never shipped with a.out binaries; the two options below are
1711.191Sgdt# only relevant to 32-bit i386 binaries
1721.191Sgdt#options 	EXEC_AOUT	# required by binaries from before 1.5
1731.191Sgdt#options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
1741.191Sgdt
1751.191Sgdt# NetBSD backward compatibility. Support goes from COMPAT_15 up until
1761.191Sgdt# the latest release. Note that really old compat (< COMPAT_16) is only
1771.191Sgdt# useful for 32-bit i386 binaries.
1781.139Smrginclude 	"conf/compat_netbsd15.config"
1791.191Sgdt
1801.23Sjoerg#options 	COMPAT_386BSD_MBRPART # recognize old partition ID
1811.23Sjoerg
1821.2Sbouyeroptions 	COMPAT_NETBSD32
1831.2Sbouyeroptions 	EXEC_ELF32
1841.2Sbouyer
1851.55Sbouyer# Wedge support
1861.55Sbouyeroptions 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
1871.55Sbouyeroptions 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
1881.107Schristos#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
1891.107Schristos#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
1901.127Sryooptions 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
1911.132Srin#options 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
1921.55Sbouyer
1931.2Sbouyer# File systems
1941.167Ssevaninclude "conf/filesystems.config"
1951.2Sbouyer
1961.2Sbouyer# File system options
1971.191Sgdt# ffs
1981.197Ssimonboptions 	FFS_EI		# FFS Endian Independent support
1991.197Ssimonb#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
2001.65Sbouyeroptions 	QUOTA		# legacy UFS quotas
2011.65Sbouyeroptions 	QUOTA2		# new, in-filesystem UFS quotas
2021.194Smanuoptions		UFS_ACL		# UFS Access Control Lists
2031.197Ssimonboptions 	UFS_DIRHASH	# UFS Large Directory Hashing
2041.111Smanuoptions 	UFS_EXTATTR	# Extended attribute support for UFS1
2051.197Ssimonboptions 	WAPBL		# File system journaling support
2061.197Ssimonb# lfs
2071.197Ssimonboptions 	LFS_DIRHASH	# LFS version of UFS_DIRHASH
2081.191Sgdt# ext2fs
2091.2Sbouyer#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
2101.2Sbouyer				# immutable) behave as system flags.
2111.191Sgdt# other
2121.194Smanuoptions 	DISKLABEL_EI	# disklabel Endian Independent support
2131.191Sgdtoptions 	NFSSERVER	# Network File System server
2141.2Sbouyer
2151.2Sbouyer# Networking options
2161.2Sbouyer#options 	GATEWAY		# packet forwarding
2171.2Sbouyeroptions 	INET		# IP + ICMP + TCP + UDP
2181.2Sbouyeroptions 	INET6		# IPV6
2191.114Sbouyeroptions 	IPSEC		# IP security
2201.2Sbouyer#options 	IPSEC_DEBUG	# debug for IP security
2211.191Sgdt#options 	MPLS		# MultiProtocol Label Switching (needs mpls)
2221.2Sbouyer#options 	MROUTING	# IP multicast routing
2231.2Sbouyer#options 	PIM		# Protocol Independent Multicast
2241.2Sbouyeroptions 	NETATALK	# AppleTalk networking protocols
2251.191Sgdt#options 	CAN		# Controller Area Network protocol
2261.2Sbouyeroptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
2271.2Sbouyeroptions 	PPP_DEFLATE	# Deflate compression support for PPP
2281.2Sbouyeroptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
2291.2Sbouyer#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
2301.191Sgdt#options 	TCP_SIGNATURE	# Enable RFC-2385 TCP md5 signatures
2311.2Sbouyer
2321.2Sbouyer#options 	ALTQ		# Manipulate network interfaces' output queues
2331.2Sbouyer#options 	ALTQ_BLUE	# Stochastic Fair Blue
2341.2Sbouyer#options 	ALTQ_CBQ	# Class-Based Queueing
2351.2Sbouyer#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
2361.2Sbouyer#options 	ALTQ_FIFOQ	# First-In First-Out Queue
2371.2Sbouyer#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
2381.2Sbouyer#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
2391.2Sbouyer#options 	ALTQ_LOCALQ	# Local queueing discipline
2401.2Sbouyer#options 	ALTQ_PRIQ	# Priority Queueing
2411.2Sbouyer#options 	ALTQ_RED	# Random Early Detection
2421.2Sbouyer#options 	ALTQ_RIO	# RED with IN/OUT
2431.2Sbouyer#options 	ALTQ_WFQ	# Weighted Fair Queueing
2441.2Sbouyer
2451.188Sgdt# These options enable verbose messages for several subsystems.
2461.188Sgdt# Warning, these may compile large string tables into the kernel!
2471.188Sgdt#options 	ACPIVERBOSE	# verbose ACPI configuration messages
2481.188Sgdt#options 	MIIVERBOSE	# verbose PHY autoconfig messages
2491.188Sgdtoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
2501.188Sgdt#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
2511.188Sgdt#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
2521.188Sgdtoptions 	SCSIVERBOSE	# human readable SCSI error messages
2531.188Sgdt#options 	USBVERBOSE	# verbose USB device autoconfig messages
2541.188Sgdt#options 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
2551.188Sgdt
2561.36Snisimuraoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
2571.2Sbouyer
2581.11Sbouyer#
2591.11Sbouyer# wscons options
2601.11Sbouyer#
2611.11Sbouyer# builtin terminal emulations
2621.191Sgdtoptions 	WSEMUL_VT100		# VT100 / VT220 emulation
2631.11Sbouyer#options 	WSEMUL_SUN		# sun terminal emulation
2641.191Sgdt#options 	WSEMUL_DEFAULT="\"vt100\""  # NB: default is "sun" if enabled
2651.11Sbouyer# different kernel output - see dev/wscons/wsdisplayvar.h
2661.11Sbouyeroptions 	WS_KERNEL_FG=WSCOL_GREEN
2671.11Sbouyer#options 	WS_KERNEL_BG=WSCOL_BLACK
2681.11Sbouyer# compatibility to other console drivers
2691.11Sbouyeroptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2701.11Sbouyeroptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2711.84Sabsoptions 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
2721.11Sbouyeroptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2731.189Sgdt# don't attach pckbd as the console if no PS/2 keyboard is found
2741.189Sgdtoptions 	PCKBD_CNATTACH_MAY_FAIL
2751.11Sbouyer# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
2761.11Sbouyer#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
2771.11Sbouyer# allocate a number of virtual screens at autoconfiguration time
2781.11Sbouyer#options 	WSDISPLAY_DEFAULTSCREENS=4
2791.11Sbouyer# use a large software cursor that doesn't blink
2801.11Sbouyeroptions 	PCDISPLAY_SOFTCURSOR
2811.11Sbouyer# modify the screen type of the console; defaults to "80x25"
2821.11Sbouyer#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
2831.11Sbouyer# work around a hardware bug that loaded fonts don't work; found on ATI cards
2841.11Sbouyer#options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
2851.11Sbouyer# console scrolling support.
2861.11Sbouyeroptions 	WSDISPLAY_SCROLLSUPPORT
2871.11Sbouyer# enable VGA raster mode capable of displaying multilingual text on console
2881.11Sbouyer#options 	VGA_RASTERCONSOLE
2891.191Sgdt# enable splash screen support; requires genfb or radeonfb
2901.191Sgdt#options 	SPLASHSCREEN
2911.191Sgdt
2921.191Sgdt# Kernel root file system and dump configuration.
2931.2Sbouyerconfig		netbsd	root on ? type ?
2941.2Sbouyer#config		netbsd	root on wd0a type ffs
2951.2Sbouyer#config		netbsd	root on xennet0 type nfs
2961.2Sbouyer
2971.191Sgdt#
2981.191Sgdt# Device configuration
2991.191Sgdt#
3001.191Sgdt
3011.191Sgdt## Xen-specific options
3021.2Sbouyerhypervisor*	at mainbus?		# Xen hypervisor
3031.2Sbouyer
3041.2Sbouyervcpu*		at hypervisor?		# Xen virtual CPUs
3051.2Sbouyer
3061.68Sryoxenbus* 	at hypervisor?		# Xen virtual bus
3071.2Sbouyer
3081.2Sbouyerxencons*	at hypervisor?		# Xen virtual console
3091.67Sjymballoon*	at xenbus?		# Xen balloon device
3101.191Sgdt## end Xen-specific options
3111.191Sgdt
3121.191Sgdt# IPMI support
3131.191Sgdtipmi0		at mainbus?
3141.191Sgdtipmi_acpi*	at acpi?
3151.191Sgdtipmi0		at ipmi_acpi?
3161.2Sbouyer
3171.191Sgdt# ACPI will be used if present. If not it will fall back to MPBIOS
3181.192Sgdtacpi0		at mainbus?		# ACPI access in PVH(VM) mode
3191.161Scherryacpi0		at hypervisor?		# ACPI access in PV mode
3201.161Scherry
3211.191Sgdtoptions 	ACPI_SCANPCI		# find PCI roots using ACPI
3221.191Sgdtoptions 	MPBIOS			# configure CPUs and APICs using MPBIOS
3231.191Sgdtoptions 	MPBIOS_SCANPCI		# MPBIOS configures PCI roots
3241.191Sgdt#options 	PCI_INTR_FIXUP		# fixup PCI interrupt routing via ACPI
3251.191Sgdt#options 	PCI_BUS_FIXUP		# fixup PCI bus numbering
3261.191Sgdt#options 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
3271.33Scegger#options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
3281.194Smanuoptions 	VGA_POST		# in-kernel support for VGA POST
3291.2Sbouyer
3301.2Sbouyer# ACPI devices
3311.68Sryoacpiacad*	at acpi?		# ACPI AC Adapter
3321.68Sryoacpibat*	at acpi?		# ACPI Battery
3331.68Sryoacpibut*	at acpi?		# ACPI Button
3341.17Sceggeracpidalb*	at acpi?		# ACPI Direct Application Launch Button
3351.153Sjakllschacpiec* 	at acpi?		# ACPI Embedded Controller (late)
3361.153Sjakllschacpiecdt*	at acpi?		# ACPI Embedded Controller (early)
3371.194Smanuacpifan*	at acpi?		# ACPI Fan
3381.68Sryoacpilid*	at acpi?		# ACPI Lid Switch
3391.191Sgdt#acpipmtr*	at acpi?		# ACPI Power Meter (experimental)
3401.191Sgdt#acpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
3411.68Sryoacpitz* 	at acpi?		# ACPI Thermal Zone
3421.194Smanuacpivga*	at acpi?		# ACPI Display Adapter
3431.194Smanuacpiout*	at acpivga?		# ACPI Display Output Device
3441.194Smanuacpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
3451.194Smanuacpiwmi*	at acpi?		# ACPI WMI Mapper
3461.191Sgdt
3471.191Sgdt# Mainboard devices
3481.49Scnstaibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
3491.194Smanuasus*		at acpi?		# ASUS hotkeys
3501.194Smanuattimer*	at acpi?		# AT Timer
3511.191Sgdt#com*		at acpi?		# Serial communications interface
3521.191Sgdt#fdc*		at acpi?		# Floppy disk controller
3531.194Smanufujbp*		at acpi?		# Fujitsu Brightness & Pointer
3541.194Smanufujhk*		at acpi?		# Fujitsu Hotkeys
3551.191Sgdt#hpacel* 	at acpi?		# HP 3D DriveGuard accelerometer
3561.194Smanu#hpqlb*		at acpi?		# HP Quick Launch Buttons
3571.194Smanuhpet*		at acpihpetbus?		# High Precision Event Timer (table)
3581.194Smanuhpet*		at acpinodebus?		# High Precision Event Timer (device)
3591.194Smanujoy*		at acpi?		# Joystick/Game port
3601.191Sgdt#lpt*		at acpi?		# Parallel port
3611.194Smanumpu*		at acpi?		# Roland MPU-401 MIDI UART
3621.20Sceggerpckbc*		at acpi?		# PC keyboard controller
3631.20Sceggerpcppi*		at acpi?		# AT-style speaker sound
3641.194Smanuqemufwcfg*	at acpi?		# QEMU Firmware Configuration device
3651.194Smanusdhc*		at acpi?		# SD Host Controller
3661.194Smanusony*		at acpi?		# Sony Notebook Controller
3671.194Smanuspic*		at acpi?		# Sony Programmable I/O Controller
3681.194Smanuwsmouse*	at spic?		# mouse
3691.194Smanuthinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
3701.194Smanutpm*		at acpi?		# ACPI TPM (Experimental)
3711.194Smanuug*		at acpi?		# Abit uGuru Hardware monitor
3721.194Smanuvalz*		at acpi?		# Toshiba Dynabook hotkeys
3731.194Smanuwb*		at acpi?		# Winbond W83L518D SD/MMC reader
3741.194Smanusdmmc*		at wb?			# SD/MMC bus
3751.194Smanuwmidell*	at acpiwmibus?		# Dell WMI mappings
3761.194Smanuwmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
3771.194Smanuwmihp*		at acpiwmibus?		# HP WMI mappings
3781.194Smanuwmimsi* 	at acpiwmibus?		# MSI WMI mappings
3791.15Scegger
3801.191Sgdt# Basic Bus Support
3811.191Sgdt
3821.2Sbouyer# PCI bus support
3831.192Sgdtpci*	at hypervisor? bus ?
3841.192Sgdtpci*	at pchb? bus ?
3851.192Sgdtpci*	at ppb? bus ?
3861.37Sbouyer
3871.2Sbouyer# PCI bridges
3881.190Sgdtpchb*	at pci? dev ? function ?	# PCI-Host bridges
3891.190Sgdt#options 	AGP_X86			# INTENTIONAL OMISSION - crashes reported with agp
3901.2Sbouyerpcib*	at pci? dev ? function ?	# PCI-ISA bridges
3911.2Sbouyerppb*	at pci? dev ? function ?	# PCI-PCI bridges
3921.2Sbouyer# XXX 'puc's aren't really bridges, but there's no better place for them here
3931.2Sbouyerpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
3941.2Sbouyer
3951.194Smanuamdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
3961.194Smanuhpet*	at amdpcib?
3971.192Sgdt
3981.194Smanupwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
3991.192Sgdt
4001.192Sgdtichlpcib* at pci? dev ? function ?	# Intel ICH PCI-LPC w/ timecounter,
4011.192Sgdt					# watchdog, gpio, Speedstep and HPET
4021.194Smanufwhrng* at ichlpcib?		# Intel 82802 FWH Random Number Generator
4031.192Sgdt#hpet*	at ichlpcib?
4041.194Smanutco*	at ichlpcib?		# TCO watch dog timer
4051.190Sgdt
4061.190Sgdt#agp*	at pchb?			# INTENTIONAL OMISSION - crashes reported with agp
4071.194Smanuaapic*	at pci? dev ? function ?	# AMD 8131 IO apic
4081.190Sgdt
4091.192Sgdt# pci backend devices, used for PCI pass-through. To export a PCI device
4101.192Sgdt# to a domU, the device has to be attached to the pciback driver in the dom0.
4111.192Sgdt# you can force a device to attach to the pciback driver in dom0 passing
4121.192Sgdt# pciback.hide=(bus:dev.fun)(bus:dev.func) to the dom0 kernel boot parameters.
4131.192Sgdt# bus and dev are 2-digits hex number, func is a single-digit number:
4141.192Sgdt# pciback.hide=(00:1a.0)(00:1a.1)(00:1a.7)
4151.192Sgdtpciback* at pci?			# pci backend device
4161.192Sgdt
4171.2Sbouyer# ISA bus support
4181.192Sgdtisa0	at hypervisor?
4191.192Sgdtisa0	at pcib?
4201.192Sgdt#isa0	at amdpcib?
4211.32Sjoergisa0	at ichlpcib?
4221.192Sgdt
4231.192Sgdt# CardBus bridge support
4241.194Smanucbb*		at pci? dev ? function ?
4251.194Smanucardslot*	at cbb?
4261.192Sgdt
4271.192Sgdt# CardBus bus support
4281.194Smanucardbus*	at cardslot?
4291.194Smanupcmcia* 	at cardslot?
4301.192Sgdt
4311.192Sgdt# Console Devices
4321.192Sgdt
4331.192Sgdt# wscons
4341.192Sgdtpckbc0		at isa?			# pc keyboard controller
4351.192Sgdtpckbd*		at pckbc?		# PC keyboard
4361.192Sgdtpms*		at pckbc?		# PS/2 mouse for wsmouse
4371.192Sgdt#options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
4381.192Sgdtoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
4391.194Smanuoptions 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
4401.194Smanuoptions 	PMS_ALPS_TOUCHPAD	# Enable support for Alps Touchpads
4411.196Sbouyervga*		at pci? dev ? function ?
4421.194Smanu#genfb*		at pci? dev ? function ?# Needs acpi_md_vesa_modenum
4431.194Smanu					# in acpi_wakeup.c (!xenpv)
4441.192Sgdt#options 	VCONS_DRAW_INTR
4451.194Smanu#wsdisplay*	at vga? console ?
4461.194Smanuwsdisplay*	at wsemuldisplaydev?
4471.192Sgdtwskbd*		at pckbd? console ?
4481.192Sgdtwsmouse*	at pms? mux 0
4491.194Smanuwsmouse*	at wsmousedev?
4501.192Sgdt
4511.194Smanuattimer0	at isa?
4521.194Smanupcppi0		at isa?
4531.194Smanu#sysbeep0	at pcppi?	# Needs sysbeep_ca (from where?)
4541.192Sgdt
4551.192Sgdt# DRI legacy drivers
4561.192Sgdt#i915drm*	at drm?		# Intel i915, i945 DRM driver
4571.192Sgdt#mach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
4581.192Sgdt#mgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
4591.192Sgdt#r128drm*	at drm?		# ATI Rage 128 DRM driver
4601.192Sgdt#radeondrm*	at drm?		# ATI Radeon DRM driver
4611.192Sgdt#savagedrm*	at drm?		# S3 Savage DRM driver
4621.192Sgdt#sisdrm* 	at drm?		# SiS DRM driver
4631.192Sgdt#tdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
4641.192Sgdt
4651.192Sgdt# DRMKMS drivers
4661.194Smanu# all disabled: drm uses acpi_md_vesa_modenum in acpi_wakeup.c (!xenpv)
4671.194Smanu#i915drmkms*	at pci? dev ? function ?	# also require disabled agp
4681.192Sgdt#intelfb*	at intelfbbus?
4691.192Sgdt
4701.192Sgdt#radeon* 	at pci? dev ? function ?
4711.192Sgdt#radeondrmkmsfb* at radeonfbbus?
4721.192Sgdt
4731.192Sgdt#amdgpu*	at pci? dev ? function ?
4741.192Sgdt#amdgpufb*	at amdgpufbbus?
4751.192Sgdt
4761.192Sgdt#nouveau*	at pci? dev ? function ?
4771.192Sgdt#nouveaufb*	at nouveaufbbus?
4781.192Sgdt
4791.192Sgdt# DRMUMS drivers
4801.192Sgdt#viadrmums*	at drm?
4811.192Sgdt
4821.194Smanu#options 	DRM_MAX_RESOLUTION_HORIZONTAL=1920	# Limit DRM size in horizontal dimension
4831.194Smanu#options 	DRM_MAX_RESOLUTION_VERTICAL=1080	# Limit DRM size in vertical dimension
4841.194Smanu
4851.192Sgdt# Cryptographic Devices
4861.192Sgdt
4871.192Sgdt# PCI cryptographic devices
4881.194Smanuamdccp*	at pci? dev ? function ?	# AMD Cryptographic Coprocessor
4891.192Sgdthifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
4901.192Sgdt#qat*	at pci? dev ? function ?	# Intel QuickAssist
4911.192Sgdtubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
4921.192Sgdt
4931.192Sgdt# Trusted Platform Module
4941.194Smanutpm*	at isa? iomem 0xfed40000 irq 7
4951.2Sbouyer
4961.2Sbouyer# Serial Devices
4971.2Sbouyer
4981.2Sbouyer# PCI serial interfaces
4991.2Sbouyercom*	at puc? port ?			# 16x50s on "universal" comm boards
5001.2Sbouyercy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
5011.2Sbouyercz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
5021.2Sbouyer
5031.192Sgdt# PCMCIA serial interfaces
5041.194Smanucom*	at pcmcia? function ?		# Modems and serial cards
5051.192Sgdt
5061.194Smanupcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
5071.194Smanucom*	at pcmcom? slave ?		# ...and the slave devices
5081.192Sgdt
5091.192Sgdt# CardBus serial interfaces
5101.194Smanucom*	at cardbus? function ?	# Modems and serial cards
5111.192Sgdt
5121.2Sbouyer# ISA serial interfaces
5131.2Sbouyer#options 	COM_HAYESP		# adds Hayes ESP serial board support
5141.2Sbouyer# If a com port is used as Xen console it can't be used by the domain0 kernel
5151.2Sbouyer# and there's no easy way to detect this yet. Leave com0 out as it's the
5161.2Sbouyer# port usually used for serial console
5171.2Sbouyer#com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
5181.2Sbouyercom1	at isa? port 0x2f8 irq 3
5191.2Sbouyer
5201.2Sbouyer# Parallel Printer Interfaces
5211.2Sbouyer
5221.2Sbouyer# PCI parallel printer interfaces
5231.2Sbouyerlpt*	at puc? port ?			# || ports on "universal" comm boards
5241.2Sbouyer
5251.2Sbouyer# ISA parallel printer interfaces
5261.2Sbouyerlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
5271.194Smanulpt1	at isa? port 0x278
5281.2Sbouyer
5291.2Sbouyer# Hardware monitors
5301.2Sbouyer
5311.82Sceggeramdnb_misc* at pci?			# AMD NB Misc Configuration
5321.192Sgdtamdtemp* at amdnb_misc?  		# AMD CPU Temperature sensors
5331.28Scegger
5341.146Schristosamdsmn* at pci?				# AMD SMN Configuration
5351.147Spgoyetteamdzentemp* at amdsmnbus?		# AMD Ryzen Family 17h CPU temp sensors
5361.146Schristos
5371.192Sgdt# Winbond LPC Super I/O
5381.192Sgdt#wbsio*	at isa? port 0x2e
5391.192Sgdt#wbsio*	at isa? port 0x4e
5401.192Sgdt
5411.192Sgdt# IBM Hawk Integrated Systems Management Processor
5421.192Sgdt#ibmhawk0	at iic? addr 0x37
5431.192Sgdt
5441.192Sgdt# LM7[89] and compatible hardware monitors
5451.192Sgdt# Use flags to select temp sensor type (see lm(4) man page for details)
5461.192Sgdt#lm0	at isa?	port 0x290 flags 0x0	# other common ports: 0x280, 0x310
5471.192Sgdt#lm*	at wbsio?
5481.192Sgdt
5491.192Sgdt# SMSC LPC47B397 hardware monitor functions
5501.192Sgdt#smsc0	at isa? port 0x02e
5511.192Sgdt
5521.192Sgdt# SMSC LPC47M192 hardware monitor
5531.192Sgdt#smscmon*	at iic? addr 0x2c
5541.192Sgdt#smscmon*	at iic? addr 0x2d	# (alternate address)
5551.192Sgdt
5561.2Sbouyer# AMD 768 and 8111 power/ACPI controllers
5571.2Sbouyeramdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
5581.73Sjmcneill#iic*	at amdpm?			# sensors below are on this bus
5591.30Spgoyette
5601.192Sgdt# NVIDIA nForce2/3/4 SMBus controller
5611.194Smanunfsmbc* at pci? dev ? function ?
5621.194Smanunfsmb*	at nfsmbc?
5631.194Smanuiic*	at nfsmb?
5641.192Sgdt
5651.192Sgdt# Intel PIIX4 power management controllers
5661.194Smanupiixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
5671.194Smanuiic*	at piixpm?			# SMBus on PIIX4
5681.192Sgdt
5691.120Smsaitoh# Intel ICH SMBus controller
5701.120Smsaitohichsmb* at pci? dev ? function ?
5711.120Smsaitohiic*	at ichsmb?
5721.120Smsaitoh
5731.192Sgdt# Intel S1200,C2000 (non-pch) SMBus controller
5741.194Smanuismt* at pci? dev ? function ?
5751.194Smanuiic*	at ismt?
5761.192Sgdt
5771.192Sgdt# DesignWare I2C controller as found in some Intel PCH and AMD FCH devices.
5781.194Smanudwiic*		at acpi?		# DesignWare I2C controller
5791.192Sgdtdwiic*		at pci?			# DesignWare I2C controller
5801.142Sbouyeriic*		at dwiic?
5811.142Sbouyer
5821.30Spgoyette# Thermal monitor and fan controller
5831.151Sthorpej#dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
5841.151Sthorpej#dbcool* at iic? addr 0x2D		# Tyan S2881
5851.151Sthorpej#dbcool* at iic? addr 0x2E		# Tyan S2882-D
5861.2Sbouyer
5871.192Sgdt# IBM Thinkpad Active Protection System
5881.192Sgdt#aps0	at isa? port 0x1600
5891.192Sgdt
5901.192Sgdt# Fintek Super I/O with hardware monitor
5911.192Sgdt#finsio0 	at isa? port 0x4e
5921.192Sgdt
5931.192Sgdt# iTE IT87xxF Super I/O with watchdog and sensors support
5941.192Sgdt#itesio0 	at isa? port 0x2e
5951.192Sgdt
5961.192Sgdt# Abit uGuru Hardware system monitor
5971.192Sgdt#ug0	at isa? port 0xe0
5981.192Sgdt
5991.120Smsaitoh# Serial Presence Detect capable memory modules
6001.151Sthorpej#spdmem* at iic? addr 0x50
6011.151Sthorpej#spdmem* at iic? addr 0x51
6021.151Sthorpej#spdmem* at iic? addr 0x52
6031.151Sthorpej#spdmem* at iic? addr 0x53
6041.151Sthorpej#spdmem* at iic? addr 0x54
6051.151Sthorpej#spdmem* at iic? addr 0x55
6061.151Sthorpej#spdmem* at iic? addr 0x56
6071.151Sthorpej#spdmem* at iic? addr 0x57
6081.151Sthorpej#sdtemp* at iic? addr 0x18
6091.151Sthorpej#sdtemp* at iic? addr 0x19
6101.151Sthorpej#sdtemp* at iic? addr 0x1a
6111.151Sthorpej#sdtemp* at iic? addr 0x1b
6121.151Sthorpej#sdtemp* at iic? addr 0x1c
6131.151Sthorpej#sdtemp* at iic? addr 0x1d
6141.151Sthorpej#sdtemp* at iic? addr 0x1e
6151.151Sthorpej#sdtemp* at iic? addr 0x1f
6161.120Smsaitoh
6171.192Sgdt# I2C HID devices
6181.192Sgdtihidev* at iic?
6191.192Sgdt
6201.192Sgdt# I2C Mice
6211.192Sgdtims*	at ihidev? reportid ?
6221.192Sgdtwsmouse* at ims? mux 0
6231.192Sgdt
6241.192Sgdt# I2O devices
6251.192Sgdtiop*	at pci? dev ? function ?	# I/O processor
6261.192Sgdtiopsp*	at iop? tid ?			# SCSI/FC-AL ports
6271.192Sgdtld*	at iop? tid ?			# block devices
6281.192Sgdt# XXX dpti.c wants a processor type that is not assigned for x86-64
6291.192Sgdt#dpti*	at iop? tid 0			# DPT/Adaptec control interface
6301.192Sgdt
6311.192Sgdt# GPIO devices
6321.194Smanugpio*		at gpiobus?
6331.192Sgdt
6341.192Sgdt# 1- Wire support
6351.192Sgdt#gpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
6361.194Smanugpioow* 	at gpio?
6371.194Smanuonewire*	at gpioow?
6381.192Sgdt
6391.192Sgdt# 1-Wire devices
6401.194Smanuowtemp* 	at onewire?			# Temperature sensors
6411.192Sgdt
6421.192Sgdt# I2C support
6431.192Sgdt#gpioiic*	at gpio?
6441.192Sgdt#iic*		at gpioiic?
6451.192Sgdt
6461.192Sgdt# Keylock support
6471.192Sgdt#gpiolock*	at gpio?
6481.192Sgdt
6491.192Sgdt# Pulsing GPIO pins in software
6501.192Sgdt#gpiopwm*	at gpio?
6511.192Sgdt
6521.192Sgdt# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio)
6531.192Sgdt#soekrisgpio0	at isa? port 0x680
6541.192Sgdt
6551.192Sgdt# Nuvoton NCT5104D SuperIO providing GPIO
6561.194Smanunct0		at isa? port ?
6571.192Sgdt
6581.192Sgdt# SCSI Controllers and Devices
6591.192Sgdt
6601.192Sgdt# PCI SCSI controllers
6611.192Sgdtadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
6621.192Sgdtadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
6631.192Sgdtahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
6641.194Smanuahd*	at pci? dev ? function ?	# Adaptec aic790x SCSI
6651.192Sgdtbha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
6661.192Sgdtdpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
6671.192Sgdtiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
6681.192Sgdtisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
6691.192Sgdtmfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
6701.192Sgdtmfii*	at pci? dev ? function ?	# LSI MegaRAID SAS (Fusion and newer)
6711.192Sgdtmly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
6721.192Sgdtmpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030 (Fusion-MPT)
6731.192Sgdtmpii*	at pci? dev ? function ?	# LSI Logic Fusion-MPT II
6741.192Sgdtnjs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
6751.192Sgdtpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
6761.192Sgdtsiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
6771.194Smanuesiop*	at pci? dev ? function ?	# Symbios 53c875 and newer SCSI
6781.192Sgdt#options 	SIOP_SYMLED		# drive the act. LED in software
6791.192Sgdttrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
6801.192Sgdt
6811.192Sgdt# PCMCIA SCSI controllers
6821.194Smanuaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
6831.194Smanuesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
6841.194Smanuspc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
6851.192Sgdt
6861.192Sgdt# CardBus SCSI cards
6871.194Smanuadv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
6881.194Smanuahc*	at cardbus? function ?	# Adaptec ADP-1480
6891.194Smanunjs*	at cardbus? function ?	# Workbit NinjaSCSI-32
6901.192Sgdt
6911.192Sgdt# SCSI bus support
6921.192Sgdtscsibus* at scsi?
6931.192Sgdt
6941.192Sgdt# SCSI devices
6951.192Sgdtsd*	at scsibus? target ? lun ?	# SCSI disk drives
6961.192Sgdtst*	at scsibus? target ? lun ?	# SCSI tape drives
6971.192Sgdtcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
6981.192Sgdtch*	at scsibus? target ? lun ?	# SCSI autochangers
6991.192Sgdtses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
7001.192Sgdtss*	at scsibus? target ? lun ?	# SCSI scanners
7011.192Sgdtuk*	at scsibus? target ? lun ?	# SCSI unknown
7021.192Sgdt
7031.194Smanu
7041.192Sgdt# RAID controllers and devices
7051.192Sgdtaac*	at pci? dev ? function ?	# Adaptec AAC family
7061.192Sgdtamr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
7071.192Sgdtarcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
7081.192Sgdtcac*	at pci? dev ? function ?	# Compaq PCI array controllers
7091.192Sgdtciss*	at pci? dev ? function ?	# HP Smart Array controllers
7101.192Sgdticp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
7111.192Sgdtmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
7121.192Sgdttwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
7131.194Smanutwa*	at pci? dev ? function ?	# 3ware Escalade 9xxx RAID controllers
7141.192Sgdt
7151.194Smanuld*	at aac? unit ?
7161.192Sgdtld*	at amr? unit ?
7171.192Sgdtld*	at cac? unit ?
7181.192Sgdtld*	at icp? unit ?
7191.192Sgdtld*	at twe? unit ?
7201.192Sgdtld*	at twa? unit ?
7211.192Sgdtld*	at mlx? unit ?
7221.192Sgdt
7231.192Sgdticpsp*	at icp? unit ?			# SCSI pass-through
7241.192Sgdt
7251.192Sgdt# IDE and related devices
7261.192Sgdt# PCI IDE controllers - see pciide(4) for supported hardware.
7271.192Sgdt# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
7281.192Sgdt# how to set up DMA modes for this chip. This may work, or may cause
7291.192Sgdt# a machine hang with some controllers.
7301.194Smanupciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
7311.194Smanuacardide* at pci? dev ? function ?	# Acard IDE controllers
7321.194Smanuaceride* at pci? dev ? function ?	# Acer Lab IDE controllers
7331.194Smanuahcisata* at pci? dev ? function ?	# AHCI SATA controllers
7341.194Smanuartsata* at pci? dev ? function ?	# Intel i31244 SATA controller
7351.194Smanucmdide* at pci? dev ? function ?	# CMD tech IDE controllers
7361.194Smanucypide* at pci? dev ? function ?	# Cypress IDE controllers
7371.194Smanuhptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
7381.194Smanuiteide* at pci? dev ? function ?	# IT Express IDE controllers
7391.194Smanuixpide* at pci? dev ? function ?	# ATI IXP IDE controllers
7401.194Smanujmide*	at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
7411.194Smanuahcisata* at jmide?
7421.194Smanumvsata* at pci? dev ? function ?	# Marvell Hercules-I/II
7431.194Smanuoptiide* at pci? dev ? function ?	# Opti IDE controllers
7441.194Smanupiixide* at pci? dev ? function ?	# Intel IDE controllers
7451.194Smanupdcide* at pci? dev ? function ?	# Promise IDE controllers
7461.194Smanupdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
7471.194Smanusatalink* at pci? dev ? function ?	# SiI SATALink controllers
7481.194Smanusiisata* at pci? dev ? function ?	# SiI SteelVine controllers
7491.194Smanusiside* at pci? dev ? function ?	# SiS IDE controllers
7501.194Smanuslide*	at pci? dev ? function ?	# Symphony Labs IDE controllers
7511.194Smanusvwsata* at pci? dev ? function ?	# ServerWorks SATA controllers
7521.194Smanutoshide* at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
7531.194Smanuviaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
7541.194Smanu
7551.194Smanu# PCMCIA IDE controllers
7561.194Smanuwdc*	at pcmcia? function ?
7571.194Smanu
7581.194Smanu# CardBus IDE controllers
7591.194Smanunjata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
7601.194Smanusiisata* at cardbus? function ? 	# SiI SteelVine controllers
7611.194Smanu
7621.194Smanu# ISA ST506, ESDI, and IDE controllers
7631.194Smanu# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
7641.194Smanu# fall back to 16bits I/O if 32bits I/O are not functional).
7651.194Smanu# Some controllers pass the initial 32bit test, but will fail later.
7661.194Smanuwdc0	at isa? port 0x1f0 irq 14 flags 0x00
7671.194Smanuwdc1	at isa? port 0x170 irq 15 flags 0x00
7681.192Sgdt
7691.192Sgdt# ATA (IDE) bus support
7701.192Sgdtatabus* at ata?
7711.194Smanuoptions 	ATADEBUG
7721.192Sgdt
7731.192Sgdt# IDE drives
7741.192Sgdt# Flags are used only with controllers that support DMA operations
7751.192Sgdt# and mode settings (e.g. some pciide controllers)
7761.192Sgdt# The lowest order four bits (rightmost digit) of the flags define the PIO
7771.192Sgdt# mode to use, the next set of four bits the DMA mode and the third set the
7781.192Sgdt# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
7791.192Sgdt# to use, and the last bit must be 1 for this setting to be used.
7801.192Sgdt# For DMA and UDMA, 0xf (1111) means 'disable'.
7811.192Sgdt# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
7821.192Sgdt# (0xc=1100, 0xa=1010, 0xf=1111)
7831.192Sgdt# 0x0000 means "use whatever the drive claims to support".
7841.192Sgdtwd*	at atabus? drive ? flags 0x0000
7851.192Sgdt
7861.192Sgdt# ATAPI bus support
7871.192Sgdtatapibus* at atapi?
7881.192Sgdt
7891.192Sgdt
7901.192Sgdt# ATA RAID configuration support, as found on some Promise controllers.
7911.192Sgdtpseudo-device ataraid
7921.192Sgdtld*	at ataraid? vendtype ? unit ?
7931.192Sgdt
7941.192Sgdt# ATAPI devices
7951.192Sgdt# flags have the same meaning as for IDE drives.
7961.192Sgdtcd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
7971.192Sgdtsd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
7981.192Sgdtst*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
7991.192Sgdtuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
8001.192Sgdt
8011.192Sgdt
8021.192Sgdt# NVM Express controllers and devices
8031.192Sgdtnvme*	at pci? dev ? function ?
8041.192Sgdtld*	at nvme? nsid ?
8051.192Sgdt
8061.50Scnst
8071.192Sgdt# Miscellaneous mass storage devices
8081.2Sbouyer
8091.192Sgdt# ISA floppy
8101.194Smanufdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
8111.192Sgdt#fdc1	at isa? port 0x370 irq ? drq ?
8121.194Smanufd*	at fdc? drive ?			# the drives themselves
8131.192Sgdt# some machines need you to do this instead of fd*
8141.192Sgdt#fd0	at fdc0 drive 0
8151.2Sbouyer
8161.192Sgdt# Network Interfaces
8171.2Sbouyer
8181.2Sbouyer# PCI network interfaces
8191.42Sceggerage*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
8201.91Srizalc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
8211.91Srizale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
8221.2Sbouyeran*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
8231.170Sryoaq*	at pci? dev ? function ?	# Aquantia AQC 10 gigabit
8241.2Sbouyerath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
8251.194Smanuathn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
8261.2Sbouyeratw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
8271.194Smanubce*	at pci? dev ? function ?	# Broadcom 440x 10/100 Ethernet
8281.68Sryobge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
8291.68Sryobnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
8301.194Smanubwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
8311.194Smanubwfm*	at pci? dev ? function ?	# Broadcom FullMAC
8321.194Smanucas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
8331.2Sbouyerdge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
8341.194Smanuena*	at pci? dev ? function ?	# Amazon.com Elastic Network Adapter
8351.2Sbouyerep*	at pci? dev ? function ?	# 3Com 3c59x
8361.2Sbouyerepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
8371.59Sjnemethet*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
8381.2Sbouyerex*	at pci? dev ? function ?	# 3Com 90x[BC]
8391.2Sbouyerfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
8401.194Smanugem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
8411.2Sbouyergsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
8421.2Sbouyerhme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
8431.194Smanuiavf*	at pci? dev ? function ?	# Intel Adaptive Virtual Function
8441.2Sbouyeripw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
8451.2Sbouyeriwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
8461.194Smanuiwm*	at pci? dev ? function ?	# Intel Centrino 7260
8471.68Sryoiwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
8481.164Scherryixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
8491.194Smanuixl*	at pci? dev ? function ?	# Intel Ethernet 700 Series
8501.194Smanuixv*	at pci? dev ? function ?	# Intel 8259x 10G virtual function
8511.31Sbouyerjme*	at pci? dev ? function ?	# JMicron JMC2[56]0 ethernet
8521.194Smanukse*	at pci? dev ? function ?	# Micrel KSZ8841/8842 ethernet
8531.14Scubelii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
8541.194Smanumalo*	at pci? dev ? function ?	# Marvell Libertas Wireless
8551.194Smanumcx*	at pci? dev ? function ?	# Mellanox 5th generation Ethernet
8561.2Sbouyermskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
8571.2Sbouyermsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
8581.2Sbouyermtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
8591.2Sbouyerne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
8601.2Sbouyernfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
8611.2Sbouyerntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
8621.2Sbouyerpcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
8631.2Sbouyerral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
8641.2Sbouyerre*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
8651.194Smanurge*	at pci? dev ? function ?	# Realtek 8125
8661.2Sbouyerrtk*	at pci? dev ? function ?	# Realtek 8129/8139
8671.194Smanurtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
8681.194Smanurtwn*	at pci? dev ? function ?	# Realtek 8188CE/8192CE 802.11b/g/n
8691.2Sbouyersf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
8701.2Sbouyersip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
8711.2Sbouyerskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
8721.2Sbouyersk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
8731.2Sbouyerste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
8741.2Sbouyerstge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
8751.2Sbouyerti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
8761.2Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
8771.2Sbouyertlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
8781.2Sbouyertxp*	at pci? dev ? function ?	# 3com 3cr990
8791.2Sbouyervge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
8801.194Smanuvmx*	at pci? dev ? function ?	# VMware VMXNET3
8811.2Sbouyervr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
8821.2Sbouyerwi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
8831.194Smanuwm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
8841.92Skhorbenwpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
8851.2Sbouyerxge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
8861.2Sbouyer
8871.192Sgdt# PCMCIA network interfaces
8881.194Smanuan*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
8891.194Smanuawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
8901.194Smanucnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
8911.194Smanucs*	at pcmcia? function ?		# CS89xx Ethernet
8921.194Smanuep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
8931.194Smanumalo*	at pcmcia? function ?		# Marvell Libertas
8941.194Smanumbe*	at pcmcia? function ?		# MB8696x based Ethernet
8951.194Smanune*	at pcmcia? function ?		# NE2000-compatible Ethernet
8961.194Smanuray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
8971.194Smanusm*	at pcmcia? function ?		# Megahertz Ethernet
8981.194Smanuwi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
8991.194Smanuxirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
9001.194Smanucom*	at xirc?
9011.194Smanuxi*	at xirc?
9021.194Smanu
9031.194Smanumhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
9041.194Smanucom*	at mhzc?
9051.194Smanusm*	at mhzc?
9061.192Sgdt
9071.192Sgdt# CardBus network cards
9081.194Smanuath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
9091.194Smanuathn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n) - UNTESTED
9101.194Smanuatw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
9111.194Smanuex*	at cardbus? function ?	# 3Com 3C575TX
9121.194Smanufxp*	at cardbus? function ?	# Intel i8255x
9131.194Smanumalo*	at cardbus? function ?	# Marvell Libertas Wireless
9141.194Smanural*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
9151.194Smanure*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
9161.194Smanurtk*	at cardbus? function ?	# Realtek 8129/8139
9171.194Smanurtw*	at cardbus? function ?	# Realtek 8180L (802.11)
9181.194Smanutlp*	at cardbus? function ?	# DECchip 21143
9191.192Sgdt
9201.2Sbouyer# MII/PHY support
9211.192Sgdtacphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
9221.2Sbouyeramhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
9231.192Sgdtatphy*	at mii?	phy ?			# Attansic/Atheros PHYs
9241.2Sbouyerbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
9251.2Sbouyerbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
9261.2Sbouyerciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
9271.2Sbouyerdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
9281.59Sjnemethetphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
9291.2Sbouyerexphy*	at mii? phy ?			# 3Com internal PHYs
9301.2Sbouyergentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
9311.2Sbouyerglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
9321.2Sbouyergphyter* at mii? phy ?			# NS83861 Gig-E PHY
9331.2Sbouyericsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
9341.2Sbouyerigphy*	at mii? phy ?			# Intel IGP01E1000
9351.61Schristosihphy*	at mii? phy ?			# Intel 82577 PHYs
9361.2Sbouyerikphy*	at mii? phy ?			# Intel 82563 PHYs
9371.2Sbouyerinphy*	at mii? phy ?			# Intel 82555 PHYs
9381.2Sbouyeriophy*	at mii? phy ?			# Intel 82553 PHYs
9391.194Smanuipgphy* at mii? phy ?			# IC PLUS IP1000A/IP1001 PHYs
9401.194Smanujmphy*	at mii? phy ?			# Jmicron JMP202/211 PHYs
9411.2Sbouyerlxtphy* at mii? phy ?			# Level One LXT-970 PHYs
9421.2Sbouyermakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
9431.194Smanumicphy* at mii? phy ?			# Micrel KSZ[89]xxx PHYs
9441.2Sbouyernsphy*	at mii? phy ?			# NS83840 PHYs
9451.2Sbouyernsphyter* at mii? phy ? 		# NS83843 PHYs
9461.2Sbouyerpnaphy* at mii? phy ?			# generic HomePNA PHYs
9471.2Sbouyerqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
9481.192Sgdtrgephy* at mii? phy ?			# Realtek 8169S/8110 internal PHYs
9491.2Sbouyerrlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
9501.194Smanusmscphy* at mii? phy ?			# SMSC LAN87xx PHYs
9511.2Sbouyersqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
9521.2Sbouyertlphy*	at mii? phy ?			# ThunderLAN PHYs
9531.2Sbouyertqphy*	at mii? phy ?			# TDK Semiconductor PHYs
9541.2Sbouyerukphy*	at mii? phy ?			# generic unknown PHYs
9551.2Sbouyerurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
9561.2Sbouyer
9571.142Sbouyer
9581.192Sgdt# USB Controller and Devices
9591.142Sbouyer
9601.192Sgdt# Virtual USB controller
9611.192Sgdt#pseudo-device	vhci
9621.2Sbouyer
9631.192Sgdt# PCI USB controllers
9641.192Sgdtxhci*	at pci?	dev ? function ?	# eXtensible Host Controller
9651.192Sgdtehci*	at pci?	dev ? function ?	# Enhanced Host Controller
9661.192Sgdtohci*	at pci?	dev ? function ?	# Open Host Controller
9671.192Sgdtuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
9681.192Sgdt
9691.192Sgdt# CardBus USB controllers
9701.194Smanuehci*	at cardbus? function ?	# Enhanced Host Controller
9711.194Smanuohci*	at cardbus? function ?	# Open Host Controller
9721.194Smanuuhci*	at cardbus? function ?		# Universal Host Controller (Intel)
9731.2Sbouyer
9741.192Sgdt# ISA USB controllers
9751.192Sgdt#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
9761.2Sbouyer
9771.192Sgdt# PCMCIA USB controllers
9781.194Smanuslhci*	at pcmcia? function ?		# ScanLogic SL811HS
9791.2Sbouyer
9801.2Sbouyer# USB bus support
9811.192Sgdt#usb*	at vhci?
9821.148Sbouyerusb*	at xhci?
9831.68Sryousb*	at ehci?
9841.68Sryousb*	at ohci?
9851.68Sryousb*	at uhci?
9861.194Smanuusb*	at slhci?
9871.2Sbouyer
9881.194Smanuinclude "dev/usb/usbdevices.config"
9891.192Sgdt
9901.2Sbouyer# PCI IEEE1394 controllers
9911.68Sryofwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
9921.2Sbouyer
9931.2Sbouyer# CardBus IEEE1394 controllers
9941.194Smanufwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
9951.2Sbouyer
9961.2Sbouyerieee1394if* at fwohci?
9971.2Sbouyerfwip*	at ieee1394if?			# IP over IEEE1394
9981.192Sgdtsbp*	at ieee1394if? euihi ? euilo ?
9991.192Sgdt
10001.192Sgdt# Audio Devices
10011.2Sbouyer
10021.2Sbouyer# PCI audio devices
10031.2Sbouyerauacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
10041.192Sgdtauich*	at pci? dev ? function ?	# Intel/AMD/nVidia AC'97 Audio
10051.2Sbouyerauixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
10061.2Sbouyerautri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
10071.192Sgdtauvia*	at pci? dev ? function ?	# VIA AC'97 audio
10081.2Sbouyerclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
10091.2Sbouyerclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
10101.2Sbouyercmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
10111.2Sbouyereap*	at pci? dev ? function ?	# Ensoniq AudioPCI
10121.2Sbouyeremuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
10131.2Sbouyeresa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
10141.2Sbouyeresm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
10151.2Sbouyereso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
10161.2Sbouyerfms*	at pci? dev ? function ?	# Forte Media FM801
10171.2Sbouyerneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
10181.2Sbouyersv*	at pci? dev ? function ?	# S3 SonicVibes
10191.2Sbouyeryds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
10201.2Sbouyer
10211.2Sbouyer# OPL[23] FM synthesizers
10221.2Sbouyer#opl0	at isa? port 0x388	# use only if not attached to sound card
10231.2Sbouyeropl*	at cmpci? flags 1
10241.2Sbouyeropl*	at eso?
10251.2Sbouyeropl*	at fms?
10261.2Sbouyeropl*	at sv?
10271.2Sbouyer
10281.45Sjmcneill# High Definition Audio
10291.46Sjmcneillhdaudio*	at pci? dev ? function ?	# High Definition Audio
10301.46Sjmcneillhdafg*		at hdaudiobus?
10311.44Ssborrill
10321.2Sbouyer# Audio support
10331.2Sbouyeraudio*	at audiobus?
10341.2Sbouyer
10351.192Sgdt# The spkr driver provides a simple tone interface to the built in speaker.
10361.194Smanuspkr*	at pcppi?		# PC speaker
10371.123Schristosspkr*	at audio?		# PC speaker (synthesized)
10381.192Sgdt#wsbell* at spkr?		# Bell for wscons display (module by default)
10391.121Snat
10401.2Sbouyer# MPU 401 UARTs
10411.2Sbouyer#mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
10421.2Sbouyermpu*	at cmpci?
10431.2Sbouyermpu*	at eso?
10441.2Sbouyermpu*	at yds?
10451.2Sbouyer
10461.2Sbouyer# MIDI support
10471.2Sbouyermidi*	at midibus?
10481.194Smanumidi*	at pcppi?		# MIDI interface to the PC speaker
10491.192Sgdt
10501.192Sgdt# FM-Radio devices
10511.192Sgdt# PCI radio devices
10521.192Sgdt#gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
10531.192Sgdt
10541.192Sgdt# Radio support
10551.192Sgdt#radio*	at gtp?
10561.192Sgdt
10571.192Sgdt
10581.192Sgdt# Video capture devices
10591.192Sgdt
10601.194Smanucoram*	at pci? dev ? function ?	# Conexant CX23885 PCI-E TV
10611.194Smanucxdtv*	at pci? dev ? function ?	# Conexant CX2388[0-3] PCI TV
10621.192Sgdt
10631.194Smanuvideo*	at videobus?			# Analog capture interface
10641.194Smanudtv*	at dtvbus?			# Digital capture interface
10651.192Sgdt
10661.192Sgdt
10671.192Sgdt# TV cards
10681.192Sgdt
10691.192Sgdt# Brooktree 848/849/878/879 based TV cards
10701.194Smanubktr* at pci? dev ? function ?
10711.194Smanuradio* at bktr?
10721.192Sgdt
10731.2Sbouyer
10741.2Sbouyer# Bluetooth Controller and Device support
10751.2Sbouyer
10761.2Sbouyer# Bluetooth PCMCIA Controllers
10771.194Smanubt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
10781.194Smanubtbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
10791.2Sbouyer
10801.192Sgdt# Bluetooth SDIO Controllers
10811.194Smanusbt* at sdmmc?
10821.192Sgdt
10831.2Sbouyer# Bluetooth USB Controllers
10841.2Sbouyerubt* at uhub? port ?
10851.70Sjakllschaubtfwl* at uhub? port ?
10861.2Sbouyer
10871.2Sbouyer# Bluetooth Device Hub
10881.194Smanubthub* at bcsp?
10891.194Smanubthub* at bt3c?
10901.194Smanubthub* at btbc?
10911.194Smanubthub* at btuart?
10921.194Smanubthub* at sbt?
10931.2Sbouyerbthub* at ubt?
10941.2Sbouyer
10951.2Sbouyer# Bluetooth HID support
10961.2Sbouyerbthidev* at bthub?
10971.2Sbouyer
10981.2Sbouyer# Bluetooth Mouse
10991.2Sbouyerbtms* at bthidev? reportid ?
11001.2Sbouyerwsmouse* at btms? mux 0
11011.2Sbouyer
11021.2Sbouyer# Bluetooth Keyboard
11031.2Sbouyerbtkbd* at bthidev? reportid ?
11041.2Sbouyerwskbd* at btkbd? console ? mux 1
11051.2Sbouyer
11061.54Splunky# Bluetooth Apple Magic Mouse
11071.54Splunkybtmagic* at bthub?
11081.54Splunkywsmouse* at btmagic? mux 0
11091.54Splunky
11101.2Sbouyer# Bluetooth Audio support
11111.2Sbouyerbtsco* at bthub?
11121.2Sbouyer
11131.136Skhorben
11141.136Skhorben# SD/MMC/SDIO Controller and Device support
11151.136Skhorben
11161.136Skhorben# SD/MMC controller
11171.136Skhorbensdhc*	at pci?		# SD Host Controller
11181.136Skhorbenrtsx*	at pci?		# Realtek RTS5209/RTS5229 Card Reader
11191.194Smanusdhc*	at cardbus?	# SD Host Controller
11201.136Skhorbensdmmc*	at sdhc?	# SD/MMC bus
11211.136Skhorbensdmmc*	at rtsx?	# SD/MMC bus
11221.136Skhorben
11231.136Skhorbenld*	at sdmmc?
11241.136Skhorben
11251.136Skhorben
11261.192Sgdt# Middle Digital, Inc. PCI-Weasel serial console board control
11271.192Sgdt# devices (watchdog timer, etc.)
11281.194Smanuweasel* at pci?
11291.2Sbouyer
11301.2Sbouyer# Pseudo-Devices
11311.2Sbouyer
11321.192Sgdtpseudo-device	crypto			# /dev/crypto device
11331.192Sgdtpseudo-device	swcrypto		# software crypto implementation
11341.2Sbouyer
11351.2Sbouyer# disk/mass storage pseudo-devices
11361.2Sbouyerpseudo-device	bio			# RAID control device driver
11371.95Schristospseudo-device	ccd			# concatenated/striped disk devices
11381.95Schristospseudo-device	cgd			# cryptographic disk devices
11391.96Schristospseudo-device	raid			# RAIDframe disk driver
11401.2Sbouyeroptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
11411.2Sbouyer# Options to enable various other RAIDframe RAID types.
11421.2Sbouyer#options 	RF_INCLUDE_EVENODD=1
11431.2Sbouyer#options 	RF_INCLUDE_RAID5_RS=1
11441.2Sbouyer#options 	RF_INCLUDE_PARITYLOGGING=1
11451.2Sbouyer#options 	RF_INCLUDE_CHAINDECLUSTER=1
11461.2Sbouyer#options 	RF_INCLUDE_INTERDECLUSTER=1
11471.2Sbouyer#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
11481.2Sbouyer#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
11491.53Spookapseudo-device	fss			# file system snapshot device
11501.2Sbouyer
11511.60Shannkenpseudo-device	md			# memory disk device (ramdisk)
11521.194Smanuoptions		MEMORY_DISK_HOOKS	# enable md specific hooks
11531.194Smanuoptions 	MEMORY_DISK_DYNAMIC	# enable dynamic resizing
11541.192Sgdt
11551.2Sbouyerpseudo-device	vnd			# disk-like interface to files
11561.194Smanuoptions 	VND_COMPRESSION		# compressed vnd(4)
11571.2Sbouyer
11581.192Sgdt
11591.2Sbouyer# network pseudo-devices
11601.2Sbouyerpseudo-device	bpfilter		# Berkeley packet filter
11611.194Smanupseudo-device	carp			# Common Address Redundancy Protocol
11621.2Sbouyerpseudo-device	loop			# network loopback
11631.192Sgdt#pseudo-device	mpls			# MPLS pseudo-interface
11641.2Sbouyerpseudo-device	ppp			# Point-to-Point Protocol
11651.2Sbouyerpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
11661.2Sbouyerpseudo-device	sl			# Serial Line IP
11671.194Smanupseudo-device	irframetty		# IrDA frame line discipline
11681.192Sgdtpseudo-device	tun			# network tunneling over tty
11691.2Sbouyerpseudo-device	tap			# virtual Ethernet
11701.2Sbouyerpseudo-device	gre			# generic L3 over IP tunnel
11711.2Sbouyerpseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
11721.194Smanupseudo-device	ipsecif			# tunnel interface for routing based ipsec
11731.2Sbouyer#pseudo-device	faith			# IPv[46] tcp relay translation i/f
11741.2Sbouyerpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
11751.2Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
11761.2Sbouyerpseudo-device	bridge			# simple inter-network bridging
11771.185Sroypseudo-device	vether			# Virtual Ethernet for bridge
11781.194Smanupseudo-device	agr			# IEEE 802.3ad link aggregation
11791.155Smaxvpseudo-device	l2tp			# L2TPv3 interface
11801.194Smanupseudo-device	lagg			# Link aggregation interface
11811.154Smaxvpseudo-device	npf			# NPF packet filter
11821.2Sbouyer
11831.192Sgdt#pseudo-device	canloop			# CAN loopback interface
11841.192Sgdt
11851.192Sgdt#
11861.192Sgdt# accept filters
11871.192Sgdtpseudo-device	accf_data		# "dataready" accept filter
11881.192Sgdtpseudo-device	accf_http		# "httpready" accept filter
11891.192Sgdt
11901.2Sbouyer# miscellaneous pseudo-devices
11911.2Sbouyerpseudo-device	pty			# pseudo-terminals
11921.194Smanupseudo-device	sequencer		# MIDI sequencer
11931.192Sgdt# rnd works; RND_COM does not on port i386 yet.
11941.192Sgdt#options 	RND_COM			# use "com" randomness as well (BROKEN)
11951.2Sbouyerpseudo-device	clockctl		# user control of clock subsystem
11961.2Sbouyerpseudo-device	ksyms			# /dev/ksyms
11971.194Smanupseudo-device	lockstat		# lock profiling
11981.194Smanupseudo-device	bcsp			# BlueCore Serial Protocol
11991.194Smanupseudo-device	btuart			# Bluetooth HCI UART (H4)
12001.194Smanu#pseudo-device	nvmm			# NetBSD Virtual Machine Monitor
12011.116Stnn
12021.2Sbouyer# wscons pseudo-devices
12031.2Sbouyerpseudo-device	wsmux			# mouse & keyboard multiplexor
12041.2Sbouyerpseudo-device	wsfont
12051.192Sgdt# Give us a choice of fonts based on monitor size
12061.194Smanuoptions 	FONT_BOLD8x16
12071.194Smanuoptions 	FONT_BOLD16x32
12081.192Sgdt
12091.192Sgdt# pseudo audio device driver
12101.194Smanupseudo-device	pad
12111.2Sbouyer
12121.5Sriz# userland interface to drivers, including autoconf and properties retrieval
12131.68Sryopseudo-device	drvctl
12141.5Sriz
12151.194Smanuinclude "dev/veriexec.config"
12161.192Sgdt
12171.194Smanuoptions 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
12181.192Sgdtoptions 	PAX_MPROTECT=1		# PaX mprotect(2) restrictions
12191.194Smanuoptions 	PAX_MPROTECT_DEBUG=1	# PaX mprotect debug
12201.192Sgdtoptions 	PAX_ASLR=1		# PaX Address Space Layout Randomization
12211.194Smanuoptions 	PAX_ASLR_DEBUG=1	# PaX ASLR debug
12221.192Sgdt
12231.194Smanu# xen pseudo-devices
12241.194Smanupseudo-device  xenevt
12251.194Smanupseudo-device  xvif
12261.194Smanupseudo-device  xbdback
12271.192Sgdt
12281.198Sabs# Pull in optional local configuration - always at end
12291.198Sabscinclude	"arch/amd64/conf/GENERIC.local"
1230