Home | History | Annotate | Line # | Download | only in conf
XEN3_DOM0 revision 1.196
      1  1.196    bouyer # $NetBSD: XEN3_DOM0,v 1.196 2022/05/24 17:06:08 bouyer Exp $
      2  1.187       gdt 
      3  1.187       gdt # XEN3_DOM0 machine description file
      4  1.187       gdt #
      5  1.187       gdt # This machine description file is used to generate a kernel to be
      6  1.187       gdt # used as a PV dom0 under Xen.  It is similar to GENERIC in that it is
      7  1.187       gdt # intended to be useful for most applications.  Generally, besides
      8  1.187       gdt # changes that are specifically required for Xen (e.g., XENPV), it
      9  1.187       gdt # should be similar to GENERIC.  Some differences are currently
     10  1.187       gdt # necessary, such as drivers that fail under Xen but work in GENERIC,
     11  1.187       gdt # for reasons that do not follow from Xen architecture.
     12    1.2    bouyer 
     13    1.2    bouyer include 	"arch/amd64/conf/std.xen"
     14    1.2    bouyer 
     15  1.190       gdt options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     16  1.190       gdt 
     17  1.196    bouyer #ident		"XEN3_DOM0-$Revision: 1.196 $"
     18  1.126    cherry 
     19  1.190       gdt maxusers	32		# estimated number of users
     20    1.2    bouyer 
     21  1.190       gdt # delay between "rebooting ..." message and hardware reset, in milliseconds
     22  1.190       gdt #options 	CPURESET_DELAY=2000
     23    1.2    bouyer 
     24  1.190       gdt # This option allows you to force a serial console at the specified
     25  1.190       gdt # I/O address.   see console(4) for details.
     26  1.190       gdt #options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
     27  1.190       gdt #	you don't want the option below ON iff you are using the
     28  1.190       gdt #	serial console option of the new boot strap code.
     29  1.190       gdt #options 	CONS_OVERRIDE	# Always use above! independent of boot info
     30  1.190       gdt 
     31  1.190       gdt # The following options override the memory sizes passed in from the boot
     32  1.190       gdt # block.  Use them *only* if the boot block is unable to determine the correct
     33  1.190       gdt # values.  Note that the BIOS may *correctly* report less than 640k of base
     34  1.190       gdt # memory if the extended BIOS data area is located at the top of base memory
     35  1.190       gdt # (as is the case on most recent systems).
     36  1.190       gdt #options 	REALBASEMEM=639		# size of base memory (in KB)
     37  1.190       gdt #options 	REALEXTMEM=15360	# size of extended memory (in KB)
     38  1.190       gdt 
     39  1.190       gdt # The following options limit the overall size of physical memory
     40  1.190       gdt # and/or the maximum address used by the system.
     41  1.190       gdt # Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map
     42  1.190       gdt # and can deal with holes in the memory layout.
     43  1.190       gdt #options 	PHYSMEM_MAX_SIZE=64	# max size of physical memory (in MB)
     44  1.190       gdt #options 	PHYSMEM_MAX_ADDR=2048	# don't use memory above this (in MB)
     45  1.140  pgoyette 
     46  1.192       gdt ## Replace std.amd64 content
     47  1.192       gdt 
     48  1.192       gdt mainbus0 at root
     49  1.192       gdt cpu* at mainbus?
     50  1.192       gdt ioapic* at mainbus? apid ?
     51  1.192       gdt 
     52  1.192       gdt # Atheros HAL options
     53  1.192       gdt include "external/isc/atheros_hal/conf/std.ath_hal"
     54  1.192       gdt 
     55  1.192       gdt ## end std.amd64
     56  1.192       gdt 
     57  1.190       gdt ## Xen-specific options
     58    1.2    bouyer 
     59  1.192       gdt options 	XENPV		# PV dom0 support
     60    1.2    bouyer options 	DOM0OPS
     61  1.190       gdt options 	MULTIPROCESSOR
     62  1.190       gdt #options 	NO_PREEMPTION	# needed if MULTIPROCESSOR is disabled
     63  1.190       gdt 
     64  1.190       gdt #options 	CONSDEVNAME="\"xencons\""
     65  1.190       gdt #options 	CONS_OVERRIDE
     66  1.190       gdt 
     67  1.190       gdt ## end Xen-specific options
     68   1.56    cherry 
     69    1.2    bouyer # boot messages with MPBIOS, acpi and ioapic can be quite large
     70    1.7    martti options 	MSGBUFSIZE=24576
     71    1.2    bouyer 
     72  1.190       gdt # Standard system options
     73    1.2    bouyer 
     74    1.2    bouyer options 	INSECURE	# disable kernel security levels - X needs this
     75    1.2    bouyer 
     76    1.2    bouyer options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     77    1.2    bouyer options 	NTP		# NTP phase/frequency locked loop
     78    1.2    bouyer 
     79    1.2    bouyer options 	KTRACE		# system call tracing via ktrace(1)
     80    1.2    bouyer 
     81  1.125  dholland options 	CPU_UCODE	# cpu ucode loading support
     82   1.77    cegger 
     83  1.190       gdt # Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
     84    1.2    bouyer options 	SYSVMSG		# System V-like message queues
     85    1.2    bouyer options 	SYSVSEM		# System V-like semaphores
     86    1.2    bouyer options 	SYSVSHM		# System V-like memory sharing
     87    1.2    bouyer 
     88  1.124      maxv options 	MODULAR		# new style module(7) framework
     89  1.194      manu options 	MODULAR_DEFAULT_AUTOLOAD
     90    1.2    bouyer options 	USERCONF	# userconf(4) support
     91  1.191       gdt #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     92    1.2    bouyer options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     93    1.2    bouyer 
     94  1.192       gdt # CPU features
     95  1.192       gdt #acpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
     96  1.194      manu 				# needs x86_cpu_idle_halt in cpu.c (!xenpv)
     97  1.194      manu coretemp*	at cpu?		# Intel on-die thermal sensor
     98  1.192       gdt est0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
     99  1.192       gdt #hyperv0 	at cpu0		# Microsoft Hyper-V
    100  1.192       gdt #odcm0		at cpu0		# On-demand clock modulation
    101  1.192       gdt powernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
    102  1.192       gdt #vmt0		at cpu0		# VMware Tools
    103  1.192       gdt 
    104  1.145     sevan # Alternate buffer queue strategies for better responsiveness under high
    105  1.145     sevan # disk I/O load.
    106   1.74  jakllsch #options 	BUFQ_READPRIO
    107   1.74  jakllsch options 	BUFQ_PRIOCSCAN
    108   1.74  jakllsch 
    109    1.2    bouyer # Diagnostic/debugging support options
    110  1.103  dholland options 	DIAGNOSTIC	# inexpensive kernel consistency checks
    111  1.190       gdt 				# XXX to be commented out on release branch
    112   1.78    bouyer #options 	DEBUG		# expensive debugging checks/support
    113  1.190       gdt #options 	LOCKDEBUG	# expensive locking checks/support
    114  1.190       gdt 
    115  1.190       gdt #
    116  1.190       gdt # Because gcc omits the frame pointer for any -O level, the line below
    117  1.190       gdt # is needed to make backtraces in DDB work.
    118  1.190       gdt #
    119  1.190       gdt makeoptions	COPTS="-O2 -fno-omit-frame-pointer"
    120    1.2    bouyer options 	DDB		# in-kernel debugger
    121  1.194      manu #options 	DDB_COMMANDONENTER="bt"	# execute command when ddb is entered
    122  1.194      manu #options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
    123    1.2    bouyer options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
    124    1.2    bouyer #options 	KGDB		# remote debugger
    125    1.2    bouyer #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
    126  1.194      manu makeoptions	DEBUG="-g"	# compile full symbol table for CTF
    127  1.194      manu options DDB_COMMANDONENTER="trace;show registers"
    128  1.190       gdt #options 	SYSCALL_STATS	# per syscall counts
    129  1.190       gdt #options 	SYSCALL_TIMES	# per syscall times
    130  1.190       gdt #options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
    131  1.194      manu options 	KDTRACE_HOOKS	# kernel DTrace hooks
    132  1.191       gdt 
    133  1.191       gdt # Kernel Undefined Behavior Sanitizer (kUBSan).
    134  1.191       gdt #options 	KUBSAN			# mandatory
    135  1.191       gdt #options 	UBSAN_ALWAYS_FATAL	# optional: panic on all kUBSan reports
    136  1.191       gdt 
    137  1.191       gdt # Kernel Address Sanitizer (kASan). You need to disable SVS to use it.
    138  1.191       gdt # The quarantine is optional and can help KASAN find more use-after-frees.
    139  1.191       gdt # Use KASAN_PANIC if you want panics instead of warnings.
    140  1.191       gdt #makeoptions 	KASAN=1		# mandatory
    141  1.191       gdt #options 	KASAN		# mandatory
    142  1.191       gdt #no options	SVS		# mandatory
    143  1.191       gdt #options 	POOL_QUARANTINE	# optional
    144  1.191       gdt #options 	KASAN_PANIC	# optional
    145  1.191       gdt 
    146  1.191       gdt # Kernel Concurrency Sanitizer (kCSan).
    147  1.191       gdt #makeoptions 	KCSAN=1		# mandatory
    148  1.191       gdt #options 	KCSAN		# mandatory
    149  1.191       gdt #options 	KCSAN_PANIC	# optional
    150  1.191       gdt 
    151  1.191       gdt # Kernel Memory Sanitizer (kMSan). You need to disable SVS and kernel modules
    152  1.191       gdt # to use it. POOL_NOCACHE is optional and can help KMSAN find uninitialized
    153  1.191       gdt # memory in pool caches. Note that KMSAN requires at least 4GB of RAM.
    154  1.191       gdt #makeoptions 	KMSAN=1		# mandatory
    155  1.191       gdt #options 	KMSAN		# mandatory
    156  1.191       gdt #no options	SVS		# mandatory
    157  1.191       gdt #no options 	MODULAR		# mandatory
    158  1.191       gdt #no options 	MODULAR_DEFAULT_AUTOLOAD	# mandatory
    159  1.191       gdt #options 	POOL_NOCACHE	# optional
    160  1.191       gdt #options 	KMSAN_PANIC	# optional
    161  1.191       gdt 
    162  1.191       gdt # Kernel Code Coverage Driver.
    163  1.191       gdt #makeoptions	KCOV=1
    164  1.191       gdt #options 	KCOV
    165  1.191       gdt 
    166  1.191       gdt # Fault Injection Driver.
    167  1.191       gdt #options 	FAULT
    168    1.2    bouyer 
    169    1.2    bouyer # Compatibility options
    170  1.191       gdt # x86_64 never shipped with a.out binaries; the two options below are
    171  1.191       gdt # only relevant to 32-bit i386 binaries
    172  1.191       gdt #options 	EXEC_AOUT	# required by binaries from before 1.5
    173  1.191       gdt #options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
    174  1.191       gdt 
    175  1.191       gdt # NetBSD backward compatibility. Support goes from COMPAT_15 up until
    176  1.191       gdt # the latest release. Note that really old compat (< COMPAT_16) is only
    177  1.191       gdt # useful for 32-bit i386 binaries.
    178  1.139       mrg include 	"conf/compat_netbsd15.config"
    179  1.191       gdt 
    180   1.23     joerg #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
    181   1.23     joerg 
    182    1.2    bouyer options 	COMPAT_NETBSD32
    183    1.2    bouyer options 	EXEC_ELF32
    184    1.2    bouyer 
    185   1.55    bouyer # Wedge support
    186   1.55    bouyer options 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
    187   1.55    bouyer options 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
    188  1.107  christos #options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
    189  1.107  christos #options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
    190  1.127       ryo options 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
    191  1.132       rin #options 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
    192   1.55    bouyer 
    193    1.2    bouyer # File systems
    194  1.167     sevan include "conf/filesystems.config"
    195    1.2    bouyer 
    196    1.2    bouyer # File system options
    197  1.191       gdt # ffs
    198   1.65    bouyer options 	QUOTA		# legacy UFS quotas
    199   1.65    bouyer options 	QUOTA2		# new, in-filesystem UFS quotas
    200  1.194      manu options 	FFS_EI		# FFS Endian Independent support
    201   1.76  dholland options 	WAPBL		# File system journaling support
    202  1.191       gdt # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
    203  1.191       gdt # It is not recommended for general use.
    204    1.2    bouyer #options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    205  1.194      manu options		UFS_ACL		# UFS Access Control Lists
    206    1.2    bouyer #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    207  1.111      manu options 	UFS_EXTATTR	# Extended attribute support for UFS1
    208  1.191       gdt # ext2fs
    209    1.2    bouyer #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    210    1.2    bouyer 				# immutable) behave as system flags.
    211  1.191       gdt # other
    212  1.194      manu options 	DISKLABEL_EI	# disklabel Endian Independent support
    213  1.191       gdt options 	NFSSERVER	# Network File System server
    214    1.2    bouyer 
    215    1.2    bouyer # Networking options
    216    1.2    bouyer #options 	GATEWAY		# packet forwarding
    217    1.2    bouyer options 	INET		# IP + ICMP + TCP + UDP
    218    1.2    bouyer options 	INET6		# IPV6
    219  1.114    bouyer options 	IPSEC		# IP security
    220    1.2    bouyer #options 	IPSEC_DEBUG	# debug for IP security
    221  1.191       gdt #options 	MPLS		# MultiProtocol Label Switching (needs mpls)
    222    1.2    bouyer #options 	MROUTING	# IP multicast routing
    223    1.2    bouyer #options 	PIM		# Protocol Independent Multicast
    224    1.2    bouyer options 	NETATALK	# AppleTalk networking protocols
    225  1.191       gdt #options 	CAN		# Controller Area Network protocol
    226    1.2    bouyer options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    227    1.2    bouyer options 	PPP_DEFLATE	# Deflate compression support for PPP
    228    1.2    bouyer options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    229    1.2    bouyer #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    230  1.191       gdt #options 	TCP_SIGNATURE	# Enable RFC-2385 TCP md5 signatures
    231    1.2    bouyer 
    232    1.2    bouyer #options 	ALTQ		# Manipulate network interfaces' output queues
    233    1.2    bouyer #options 	ALTQ_BLUE	# Stochastic Fair Blue
    234    1.2    bouyer #options 	ALTQ_CBQ	# Class-Based Queueing
    235    1.2    bouyer #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    236    1.2    bouyer #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    237    1.2    bouyer #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    238    1.2    bouyer #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    239    1.2    bouyer #options 	ALTQ_LOCALQ	# Local queueing discipline
    240    1.2    bouyer #options 	ALTQ_PRIQ	# Priority Queueing
    241    1.2    bouyer #options 	ALTQ_RED	# Random Early Detection
    242    1.2    bouyer #options 	ALTQ_RIO	# RED with IN/OUT
    243    1.2    bouyer #options 	ALTQ_WFQ	# Weighted Fair Queueing
    244    1.2    bouyer 
    245  1.188       gdt # These options enable verbose messages for several subsystems.
    246  1.188       gdt # Warning, these may compile large string tables into the kernel!
    247  1.188       gdt #options 	ACPIVERBOSE	# verbose ACPI configuration messages
    248  1.188       gdt #options 	MIIVERBOSE	# verbose PHY autoconfig messages
    249  1.188       gdt options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    250  1.188       gdt #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    251  1.188       gdt #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    252  1.188       gdt options 	SCSIVERBOSE	# human readable SCSI error messages
    253  1.188       gdt #options 	USBVERBOSE	# verbose USB device autoconfig messages
    254  1.188       gdt #options 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
    255  1.188       gdt 
    256   1.36  nisimura options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    257    1.2    bouyer 
    258   1.11    bouyer #
    259   1.11    bouyer # wscons options
    260   1.11    bouyer #
    261   1.11    bouyer # builtin terminal emulations
    262  1.191       gdt options 	WSEMUL_VT100		# VT100 / VT220 emulation
    263   1.11    bouyer #options 	WSEMUL_SUN		# sun terminal emulation
    264  1.191       gdt #options 	WSEMUL_DEFAULT="\"vt100\""  # NB: default is "sun" if enabled
    265   1.11    bouyer # different kernel output - see dev/wscons/wsdisplayvar.h
    266   1.11    bouyer options 	WS_KERNEL_FG=WSCOL_GREEN
    267   1.11    bouyer #options 	WS_KERNEL_BG=WSCOL_BLACK
    268   1.11    bouyer # compatibility to other console drivers
    269   1.11    bouyer options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    270   1.11    bouyer options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    271   1.84       abs options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    272   1.11    bouyer options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    273  1.189       gdt # don't attach pckbd as the console if no PS/2 keyboard is found
    274  1.189       gdt options 	PCKBD_CNATTACH_MAY_FAIL
    275   1.11    bouyer # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    276   1.11    bouyer #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    277   1.11    bouyer # allocate a number of virtual screens at autoconfiguration time
    278   1.11    bouyer #options 	WSDISPLAY_DEFAULTSCREENS=4
    279   1.11    bouyer # use a large software cursor that doesn't blink
    280   1.11    bouyer options 	PCDISPLAY_SOFTCURSOR
    281   1.11    bouyer # modify the screen type of the console; defaults to "80x25"
    282   1.11    bouyer #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    283   1.11    bouyer # work around a hardware bug that loaded fonts don't work; found on ATI cards
    284   1.11    bouyer #options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
    285   1.11    bouyer # console scrolling support.
    286   1.11    bouyer options 	WSDISPLAY_SCROLLSUPPORT
    287   1.11    bouyer # enable VGA raster mode capable of displaying multilingual text on console
    288   1.11    bouyer #options 	VGA_RASTERCONSOLE
    289  1.191       gdt # enable splash screen support; requires genfb or radeonfb
    290  1.191       gdt #options 	SPLASHSCREEN
    291  1.191       gdt 
    292  1.191       gdt # Kernel root file system and dump configuration.
    293    1.2    bouyer config		netbsd	root on ? type ?
    294    1.2    bouyer #config		netbsd	root on wd0a type ffs
    295    1.2    bouyer #config		netbsd	root on xennet0 type nfs
    296    1.2    bouyer 
    297  1.191       gdt #
    298  1.191       gdt # Device configuration
    299  1.191       gdt #
    300  1.191       gdt 
    301  1.191       gdt ## Xen-specific options
    302    1.2    bouyer hypervisor*	at mainbus?		# Xen hypervisor
    303    1.2    bouyer 
    304    1.2    bouyer vcpu*		at hypervisor?		# Xen virtual CPUs
    305    1.2    bouyer 
    306   1.68       ryo xenbus* 	at hypervisor?		# Xen virtual bus
    307    1.2    bouyer 
    308    1.2    bouyer xencons*	at hypervisor?		# Xen virtual console
    309   1.67       jym balloon*	at xenbus?		# Xen balloon device
    310  1.191       gdt ## end Xen-specific options
    311  1.191       gdt 
    312  1.191       gdt # IPMI support
    313  1.191       gdt ipmi0		at mainbus?
    314  1.191       gdt ipmi_acpi*	at acpi?
    315  1.191       gdt ipmi0		at ipmi_acpi?
    316    1.2    bouyer 
    317  1.191       gdt # ACPI will be used if present. If not it will fall back to MPBIOS
    318  1.192       gdt acpi0		at mainbus?		# ACPI access in PVH(VM) mode
    319  1.161    cherry acpi0		at hypervisor?		# ACPI access in PV mode
    320  1.161    cherry 
    321  1.191       gdt options 	ACPI_SCANPCI		# find PCI roots using ACPI
    322  1.191       gdt options 	MPBIOS			# configure CPUs and APICs using MPBIOS
    323  1.191       gdt options 	MPBIOS_SCANPCI		# MPBIOS configures PCI roots
    324  1.191       gdt #options 	PCI_INTR_FIXUP		# fixup PCI interrupt routing via ACPI
    325  1.191       gdt #options 	PCI_BUS_FIXUP		# fixup PCI bus numbering
    326  1.191       gdt #options 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
    327   1.33    cegger #options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
    328  1.194      manu options 	VGA_POST		# in-kernel support for VGA POST
    329    1.2    bouyer 
    330    1.2    bouyer # ACPI devices
    331   1.68       ryo acpiacad*	at acpi?		# ACPI AC Adapter
    332   1.68       ryo acpibat*	at acpi?		# ACPI Battery
    333   1.68       ryo acpibut*	at acpi?		# ACPI Button
    334   1.17    cegger acpidalb*	at acpi?		# ACPI Direct Application Launch Button
    335  1.153  jakllsch acpiec* 	at acpi?		# ACPI Embedded Controller (late)
    336  1.153  jakllsch acpiecdt*	at acpi?		# ACPI Embedded Controller (early)
    337  1.194      manu acpifan*	at acpi?		# ACPI Fan
    338   1.68       ryo acpilid*	at acpi?		# ACPI Lid Switch
    339  1.191       gdt #acpipmtr*	at acpi?		# ACPI Power Meter (experimental)
    340  1.191       gdt #acpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
    341   1.68       ryo acpitz* 	at acpi?		# ACPI Thermal Zone
    342  1.194      manu acpivga*	at acpi?		# ACPI Display Adapter
    343  1.194      manu acpiout*	at acpivga?		# ACPI Display Output Device
    344  1.194      manu acpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
    345  1.194      manu acpiwmi*	at acpi?		# ACPI WMI Mapper
    346  1.191       gdt 
    347  1.191       gdt # Mainboard devices
    348   1.49      cnst aibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
    349  1.194      manu asus*		at acpi?		# ASUS hotkeys
    350  1.194      manu attimer*	at acpi?		# AT Timer
    351  1.191       gdt #com*		at acpi?		# Serial communications interface
    352  1.191       gdt #fdc*		at acpi?		# Floppy disk controller
    353  1.194      manu fujbp*		at acpi?		# Fujitsu Brightness & Pointer
    354  1.194      manu fujhk*		at acpi?		# Fujitsu Hotkeys
    355  1.191       gdt #hpacel* 	at acpi?		# HP 3D DriveGuard accelerometer
    356  1.194      manu #hpqlb*		at acpi?		# HP Quick Launch Buttons
    357  1.194      manu hpet*		at acpihpetbus?		# High Precision Event Timer (table)
    358  1.194      manu hpet*		at acpinodebus?		# High Precision Event Timer (device)
    359  1.194      manu joy*		at acpi?		# Joystick/Game port
    360  1.191       gdt #lpt*		at acpi?		# Parallel port
    361  1.194      manu mpu*		at acpi?		# Roland MPU-401 MIDI UART
    362   1.20    cegger pckbc*		at acpi?		# PC keyboard controller
    363   1.20    cegger pcppi*		at acpi?		# AT-style speaker sound
    364  1.194      manu qemufwcfg*	at acpi?		# QEMU Firmware Configuration device
    365  1.194      manu sdhc*		at acpi?		# SD Host Controller
    366  1.194      manu sony*		at acpi?		# Sony Notebook Controller
    367  1.194      manu spic*		at acpi?		# Sony Programmable I/O Controller
    368  1.194      manu wsmouse*	at spic?		# mouse
    369  1.194      manu thinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
    370  1.194      manu tpm*		at acpi?		# ACPI TPM (Experimental)
    371  1.194      manu ug*		at acpi?		# Abit uGuru Hardware monitor
    372  1.194      manu valz*		at acpi?		# Toshiba Dynabook hotkeys
    373  1.194      manu wb*		at acpi?		# Winbond W83L518D SD/MMC reader
    374  1.194      manu sdmmc*		at wb?			# SD/MMC bus
    375  1.194      manu wmidell*	at acpiwmibus?		# Dell WMI mappings
    376  1.194      manu wmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
    377  1.194      manu wmihp*		at acpiwmibus?		# HP WMI mappings
    378  1.194      manu wmimsi* 	at acpiwmibus?		# MSI WMI mappings
    379   1.15    cegger 
    380  1.191       gdt # Basic Bus Support
    381  1.191       gdt 
    382    1.2    bouyer # PCI bus support
    383  1.192       gdt pci*	at hypervisor? bus ?
    384  1.192       gdt pci*	at pchb? bus ?
    385  1.192       gdt pci*	at ppb? bus ?
    386   1.37    bouyer 
    387    1.2    bouyer # PCI bridges
    388  1.190       gdt pchb*	at pci? dev ? function ?	# PCI-Host bridges
    389  1.190       gdt #options 	AGP_X86			# INTENTIONAL OMISSION - crashes reported with agp
    390    1.2    bouyer pcib*	at pci? dev ? function ?	# PCI-ISA bridges
    391    1.2    bouyer ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    392    1.2    bouyer # XXX 'puc's aren't really bridges, but there's no better place for them here
    393    1.2    bouyer puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    394    1.2    bouyer 
    395  1.194      manu amdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
    396  1.194      manu hpet*	at amdpcib?
    397  1.192       gdt 
    398  1.194      manu pwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
    399  1.192       gdt 
    400  1.192       gdt ichlpcib* at pci? dev ? function ?	# Intel ICH PCI-LPC w/ timecounter,
    401  1.192       gdt 					# watchdog, gpio, Speedstep and HPET
    402  1.194      manu fwhrng* at ichlpcib?		# Intel 82802 FWH Random Number Generator
    403  1.192       gdt #hpet*	at ichlpcib?
    404  1.194      manu tco*	at ichlpcib?		# TCO watch dog timer
    405  1.190       gdt 
    406  1.190       gdt #agp*	at pchb?			# INTENTIONAL OMISSION - crashes reported with agp
    407  1.194      manu aapic*	at pci? dev ? function ?	# AMD 8131 IO apic
    408  1.190       gdt 
    409  1.192       gdt # pci backend devices, used for PCI pass-through. To export a PCI device
    410  1.192       gdt # to a domU, the device has to be attached to the pciback driver in the dom0.
    411  1.192       gdt # you can force a device to attach to the pciback driver in dom0 passing
    412  1.192       gdt # pciback.hide=(bus:dev.fun)(bus:dev.func) to the dom0 kernel boot parameters.
    413  1.192       gdt # bus and dev are 2-digits hex number, func is a single-digit number:
    414  1.192       gdt # pciback.hide=(00:1a.0)(00:1a.1)(00:1a.7)
    415  1.192       gdt pciback* at pci?			# pci backend device
    416  1.192       gdt 
    417    1.2    bouyer # ISA bus support
    418  1.192       gdt isa0	at hypervisor?
    419  1.192       gdt isa0	at pcib?
    420  1.192       gdt #isa0	at amdpcib?
    421   1.32     joerg isa0	at ichlpcib?
    422  1.192       gdt 
    423  1.192       gdt # CardBus bridge support
    424  1.194      manu cbb*		at pci? dev ? function ?
    425  1.194      manu cardslot*	at cbb?
    426  1.192       gdt 
    427  1.192       gdt # CardBus bus support
    428  1.194      manu cardbus*	at cardslot?
    429  1.194      manu pcmcia* 	at cardslot?
    430  1.192       gdt 
    431  1.192       gdt # Console Devices
    432  1.192       gdt 
    433  1.192       gdt # wscons
    434  1.192       gdt pckbc0		at isa?			# pc keyboard controller
    435  1.192       gdt pckbd*		at pckbc?		# PC keyboard
    436  1.192       gdt pms*		at pckbc?		# PS/2 mouse for wsmouse
    437  1.192       gdt #options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
    438  1.192       gdt options 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
    439  1.194      manu options 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
    440  1.194      manu options 	PMS_ALPS_TOUCHPAD	# Enable support for Alps Touchpads
    441  1.196    bouyer vga*		at pci? dev ? function ?
    442  1.194      manu #genfb*		at pci? dev ? function ?# Needs acpi_md_vesa_modenum
    443  1.194      manu 					# in acpi_wakeup.c (!xenpv)
    444  1.192       gdt #options 	VCONS_DRAW_INTR
    445  1.194      manu #wsdisplay*	at vga? console ?
    446  1.194      manu wsdisplay*	at wsemuldisplaydev?
    447  1.192       gdt wskbd*		at pckbd? console ?
    448  1.192       gdt wsmouse*	at pms? mux 0
    449  1.194      manu wsmouse*	at wsmousedev?
    450  1.192       gdt 
    451  1.194      manu attimer0	at isa?
    452  1.194      manu pcppi0		at isa?
    453  1.194      manu #sysbeep0	at pcppi?	# Needs sysbeep_ca (from where?)
    454  1.192       gdt 
    455  1.192       gdt # DRI legacy drivers
    456  1.192       gdt #i915drm*	at drm?		# Intel i915, i945 DRM driver
    457  1.192       gdt #mach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
    458  1.192       gdt #mgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
    459  1.192       gdt #r128drm*	at drm?		# ATI Rage 128 DRM driver
    460  1.192       gdt #radeondrm*	at drm?		# ATI Radeon DRM driver
    461  1.192       gdt #savagedrm*	at drm?		# S3 Savage DRM driver
    462  1.192       gdt #sisdrm* 	at drm?		# SiS DRM driver
    463  1.192       gdt #tdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
    464  1.192       gdt 
    465  1.192       gdt # DRMKMS drivers
    466  1.194      manu # all disabled: drm uses acpi_md_vesa_modenum in acpi_wakeup.c (!xenpv)
    467  1.194      manu #i915drmkms*	at pci? dev ? function ?	# also require disabled agp
    468  1.192       gdt #intelfb*	at intelfbbus?
    469  1.192       gdt 
    470  1.192       gdt #radeon* 	at pci? dev ? function ?
    471  1.192       gdt #radeondrmkmsfb* at radeonfbbus?
    472  1.192       gdt 
    473  1.192       gdt #amdgpu*	at pci? dev ? function ?
    474  1.192       gdt #amdgpufb*	at amdgpufbbus?
    475  1.192       gdt 
    476  1.192       gdt #nouveau*	at pci? dev ? function ?
    477  1.192       gdt #nouveaufb*	at nouveaufbbus?
    478  1.192       gdt 
    479  1.192       gdt # DRMUMS drivers
    480  1.192       gdt #viadrmums*	at drm?
    481  1.192       gdt 
    482  1.194      manu #options 	DRM_MAX_RESOLUTION_HORIZONTAL=1920	# Limit DRM size in horizontal dimension
    483  1.194      manu #options 	DRM_MAX_RESOLUTION_VERTICAL=1080	# Limit DRM size in vertical dimension
    484  1.194      manu 
    485  1.192       gdt # Cryptographic Devices
    486  1.192       gdt 
    487  1.192       gdt # PCI cryptographic devices
    488  1.194      manu amdccp*	at pci? dev ? function ?	# AMD Cryptographic Coprocessor
    489  1.192       gdt hifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
    490  1.192       gdt #qat*	at pci? dev ? function ?	# Intel QuickAssist
    491  1.192       gdt ubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
    492  1.192       gdt 
    493  1.192       gdt # Trusted Platform Module
    494  1.194      manu tpm*	at isa? iomem 0xfed40000 irq 7
    495    1.2    bouyer 
    496    1.2    bouyer # Serial Devices
    497    1.2    bouyer 
    498    1.2    bouyer # PCI serial interfaces
    499    1.2    bouyer com*	at puc? port ?			# 16x50s on "universal" comm boards
    500    1.2    bouyer cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    501    1.2    bouyer cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
    502    1.2    bouyer 
    503  1.192       gdt # PCMCIA serial interfaces
    504  1.194      manu com*	at pcmcia? function ?		# Modems and serial cards
    505  1.192       gdt 
    506  1.194      manu pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
    507  1.194      manu com*	at pcmcom? slave ?		# ...and the slave devices
    508  1.192       gdt 
    509  1.192       gdt # CardBus serial interfaces
    510  1.194      manu com*	at cardbus? function ?	# Modems and serial cards
    511  1.192       gdt 
    512    1.2    bouyer # ISA serial interfaces
    513    1.2    bouyer #options 	COM_HAYESP		# adds Hayes ESP serial board support
    514    1.2    bouyer # If a com port is used as Xen console it can't be used by the domain0 kernel
    515    1.2    bouyer # and there's no easy way to detect this yet. Leave com0 out as it's the
    516    1.2    bouyer # port usually used for serial console
    517    1.2    bouyer #com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
    518    1.2    bouyer com1	at isa? port 0x2f8 irq 3
    519    1.2    bouyer 
    520    1.2    bouyer # Parallel Printer Interfaces
    521    1.2    bouyer 
    522    1.2    bouyer # PCI parallel printer interfaces
    523    1.2    bouyer lpt*	at puc? port ?			# || ports on "universal" comm boards
    524    1.2    bouyer 
    525    1.2    bouyer # ISA parallel printer interfaces
    526    1.2    bouyer lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
    527  1.194      manu lpt1	at isa? port 0x278
    528    1.2    bouyer 
    529    1.2    bouyer # Hardware monitors
    530    1.2    bouyer 
    531   1.82    cegger amdnb_misc* at pci?			# AMD NB Misc Configuration
    532  1.192       gdt amdtemp* at amdnb_misc?  		# AMD CPU Temperature sensors
    533   1.28    cegger 
    534  1.146  christos amdsmn* at pci?				# AMD SMN Configuration
    535  1.147  pgoyette amdzentemp* at amdsmnbus?		# AMD Ryzen Family 17h CPU temp sensors
    536  1.146  christos 
    537  1.192       gdt # Winbond LPC Super I/O
    538  1.192       gdt #wbsio*	at isa? port 0x2e
    539  1.192       gdt #wbsio*	at isa? port 0x4e
    540  1.192       gdt 
    541  1.192       gdt # IBM Hawk Integrated Systems Management Processor
    542  1.192       gdt #ibmhawk0	at iic? addr 0x37
    543  1.192       gdt 
    544  1.192       gdt # LM7[89] and compatible hardware monitors
    545  1.192       gdt # Use flags to select temp sensor type (see lm(4) man page for details)
    546  1.192       gdt #lm0	at isa?	port 0x290 flags 0x0	# other common ports: 0x280, 0x310
    547  1.192       gdt #lm*	at wbsio?
    548  1.192       gdt 
    549  1.192       gdt # SMSC LPC47B397 hardware monitor functions
    550  1.192       gdt #smsc0	at isa? port 0x02e
    551  1.192       gdt 
    552  1.192       gdt # SMSC LPC47M192 hardware monitor
    553  1.192       gdt #smscmon*	at iic? addr 0x2c
    554  1.192       gdt #smscmon*	at iic? addr 0x2d	# (alternate address)
    555  1.192       gdt 
    556    1.2    bouyer # AMD 768 and 8111 power/ACPI controllers
    557    1.2    bouyer amdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
    558   1.73  jmcneill #iic*	at amdpm?			# sensors below are on this bus
    559   1.30  pgoyette 
    560  1.192       gdt # NVIDIA nForce2/3/4 SMBus controller
    561  1.194      manu nfsmbc* at pci? dev ? function ?
    562  1.194      manu nfsmb*	at nfsmbc?
    563  1.194      manu iic*	at nfsmb?
    564  1.192       gdt 
    565  1.192       gdt # Intel PIIX4 power management controllers
    566  1.194      manu piixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
    567  1.194      manu iic*	at piixpm?			# SMBus on PIIX4
    568  1.192       gdt 
    569  1.120   msaitoh # Intel ICH SMBus controller
    570  1.120   msaitoh ichsmb* at pci? dev ? function ?
    571  1.120   msaitoh iic*	at ichsmb?
    572  1.120   msaitoh 
    573  1.192       gdt # Intel S1200,C2000 (non-pch) SMBus controller
    574  1.194      manu ismt* at pci? dev ? function ?
    575  1.194      manu iic*	at ismt?
    576  1.192       gdt 
    577  1.192       gdt # DesignWare I2C controller as found in some Intel PCH and AMD FCH devices.
    578  1.194      manu dwiic*		at acpi?		# DesignWare I2C controller
    579  1.192       gdt dwiic*		at pci?			# DesignWare I2C controller
    580  1.142    bouyer iic*		at dwiic?
    581  1.142    bouyer 
    582   1.30  pgoyette # Thermal monitor and fan controller
    583  1.151   thorpej #dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
    584  1.151   thorpej #dbcool* at iic? addr 0x2D		# Tyan S2881
    585  1.151   thorpej #dbcool* at iic? addr 0x2E		# Tyan S2882-D
    586    1.2    bouyer 
    587  1.192       gdt # IBM Thinkpad Active Protection System
    588  1.192       gdt #aps0	at isa? port 0x1600
    589  1.192       gdt 
    590  1.192       gdt # Fintek Super I/O with hardware monitor
    591  1.192       gdt #finsio0 	at isa? port 0x4e
    592  1.192       gdt 
    593  1.192       gdt # iTE IT87xxF Super I/O with watchdog and sensors support
    594  1.192       gdt #itesio0 	at isa? port 0x2e
    595  1.192       gdt 
    596  1.192       gdt # Abit uGuru Hardware system monitor
    597  1.192       gdt #ug0	at isa? port 0xe0
    598  1.192       gdt 
    599  1.120   msaitoh # Serial Presence Detect capable memory modules
    600  1.151   thorpej #spdmem* at iic? addr 0x50
    601  1.151   thorpej #spdmem* at iic? addr 0x51
    602  1.151   thorpej #spdmem* at iic? addr 0x52
    603  1.151   thorpej #spdmem* at iic? addr 0x53
    604  1.151   thorpej #spdmem* at iic? addr 0x54
    605  1.151   thorpej #spdmem* at iic? addr 0x55
    606  1.151   thorpej #spdmem* at iic? addr 0x56
    607  1.151   thorpej #spdmem* at iic? addr 0x57
    608  1.151   thorpej #sdtemp* at iic? addr 0x18
    609  1.151   thorpej #sdtemp* at iic? addr 0x19
    610  1.151   thorpej #sdtemp* at iic? addr 0x1a
    611  1.151   thorpej #sdtemp* at iic? addr 0x1b
    612  1.151   thorpej #sdtemp* at iic? addr 0x1c
    613  1.151   thorpej #sdtemp* at iic? addr 0x1d
    614  1.151   thorpej #sdtemp* at iic? addr 0x1e
    615  1.151   thorpej #sdtemp* at iic? addr 0x1f
    616  1.120   msaitoh 
    617  1.192       gdt # I2C HID devices
    618  1.192       gdt ihidev* at iic?
    619  1.192       gdt 
    620  1.192       gdt # I2C Mice
    621  1.192       gdt ims*	at ihidev? reportid ?
    622  1.192       gdt wsmouse* at ims? mux 0
    623  1.192       gdt 
    624  1.192       gdt # I2O devices
    625  1.192       gdt iop*	at pci? dev ? function ?	# I/O processor
    626  1.192       gdt iopsp*	at iop? tid ?			# SCSI/FC-AL ports
    627  1.192       gdt ld*	at iop? tid ?			# block devices
    628  1.192       gdt # XXX dpti.c wants a processor type that is not assigned for x86-64
    629  1.192       gdt #dpti*	at iop? tid 0			# DPT/Adaptec control interface
    630  1.192       gdt 
    631  1.192       gdt # GPIO devices
    632  1.194      manu gpio*		at gpiobus?
    633  1.192       gdt 
    634  1.192       gdt # 1- Wire support
    635  1.192       gdt #gpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
    636  1.194      manu gpioow* 	at gpio?
    637  1.194      manu onewire*	at gpioow?
    638  1.192       gdt 
    639  1.192       gdt # 1-Wire devices
    640  1.194      manu owtemp* 	at onewire?			# Temperature sensors
    641  1.192       gdt 
    642  1.192       gdt # I2C support
    643  1.192       gdt #gpioiic*	at gpio?
    644  1.192       gdt #iic*		at gpioiic?
    645  1.192       gdt 
    646  1.192       gdt # Keylock support
    647  1.192       gdt #gpiolock*	at gpio?
    648  1.192       gdt 
    649  1.192       gdt # Pulsing GPIO pins in software
    650  1.192       gdt #gpiopwm*	at gpio?
    651  1.192       gdt 
    652  1.192       gdt # Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio)
    653  1.192       gdt #soekrisgpio0	at isa? port 0x680
    654  1.192       gdt 
    655  1.192       gdt # Nuvoton NCT5104D SuperIO providing GPIO
    656  1.194      manu nct0		at isa? port ?
    657  1.192       gdt 
    658  1.192       gdt # SCSI Controllers and Devices
    659  1.192       gdt 
    660  1.192       gdt # PCI SCSI controllers
    661  1.192       gdt adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    662  1.192       gdt adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
    663  1.192       gdt ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    664  1.194      manu ahd*	at pci? dev ? function ?	# Adaptec aic790x SCSI
    665  1.192       gdt bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    666  1.192       gdt dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    667  1.192       gdt iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
    668  1.192       gdt isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    669  1.192       gdt mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
    670  1.192       gdt mfii*	at pci? dev ? function ?	# LSI MegaRAID SAS (Fusion and newer)
    671  1.192       gdt mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
    672  1.192       gdt mpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030 (Fusion-MPT)
    673  1.192       gdt mpii*	at pci? dev ? function ?	# LSI Logic Fusion-MPT II
    674  1.192       gdt njs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
    675  1.192       gdt pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    676  1.192       gdt siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
    677  1.194      manu esiop*	at pci? dev ? function ?	# Symbios 53c875 and newer SCSI
    678  1.192       gdt #options 	SIOP_SYMLED		# drive the act. LED in software
    679  1.192       gdt trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
    680  1.192       gdt 
    681  1.192       gdt # PCMCIA SCSI controllers
    682  1.194      manu aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    683  1.194      manu esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
    684  1.194      manu spc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
    685  1.192       gdt 
    686  1.192       gdt # CardBus SCSI cards
    687  1.194      manu adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    688  1.194      manu ahc*	at cardbus? function ?	# Adaptec ADP-1480
    689  1.194      manu njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
    690  1.192       gdt 
    691  1.192       gdt # SCSI bus support
    692  1.192       gdt scsibus* at scsi?
    693  1.192       gdt 
    694  1.192       gdt # SCSI devices
    695  1.192       gdt sd*	at scsibus? target ? lun ?	# SCSI disk drives
    696  1.192       gdt st*	at scsibus? target ? lun ?	# SCSI tape drives
    697  1.192       gdt cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    698  1.192       gdt ch*	at scsibus? target ? lun ?	# SCSI autochangers
    699  1.192       gdt ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    700  1.192       gdt ss*	at scsibus? target ? lun ?	# SCSI scanners
    701  1.192       gdt uk*	at scsibus? target ? lun ?	# SCSI unknown
    702  1.192       gdt 
    703  1.194      manu 
    704  1.192       gdt # RAID controllers and devices
    705  1.192       gdt aac*	at pci? dev ? function ?	# Adaptec AAC family
    706  1.192       gdt amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
    707  1.192       gdt arcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
    708  1.192       gdt cac*	at pci? dev ? function ?	# Compaq PCI array controllers
    709  1.192       gdt ciss*	at pci? dev ? function ?	# HP Smart Array controllers
    710  1.192       gdt icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
    711  1.192       gdt mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
    712  1.192       gdt twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
    713  1.194      manu twa*	at pci? dev ? function ?	# 3ware Escalade 9xxx RAID controllers
    714  1.192       gdt 
    715  1.194      manu ld*	at aac? unit ?
    716  1.192       gdt ld*	at amr? unit ?
    717  1.192       gdt ld*	at cac? unit ?
    718  1.192       gdt ld*	at icp? unit ?
    719  1.192       gdt ld*	at twe? unit ?
    720  1.192       gdt ld*	at twa? unit ?
    721  1.192       gdt ld*	at mlx? unit ?
    722  1.192       gdt 
    723  1.192       gdt icpsp*	at icp? unit ?			# SCSI pass-through
    724  1.192       gdt 
    725  1.192       gdt # IDE and related devices
    726  1.192       gdt # PCI IDE controllers - see pciide(4) for supported hardware.
    727  1.192       gdt # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    728  1.192       gdt # how to set up DMA modes for this chip. This may work, or may cause
    729  1.192       gdt # a machine hang with some controllers.
    730  1.194      manu pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    731  1.194      manu acardide* at pci? dev ? function ?	# Acard IDE controllers
    732  1.194      manu aceride* at pci? dev ? function ?	# Acer Lab IDE controllers
    733  1.194      manu ahcisata* at pci? dev ? function ?	# AHCI SATA controllers
    734  1.194      manu artsata* at pci? dev ? function ?	# Intel i31244 SATA controller
    735  1.194      manu cmdide* at pci? dev ? function ?	# CMD tech IDE controllers
    736  1.194      manu cypide* at pci? dev ? function ?	# Cypress IDE controllers
    737  1.194      manu hptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    738  1.194      manu iteide* at pci? dev ? function ?	# IT Express IDE controllers
    739  1.194      manu ixpide* at pci? dev ? function ?	# ATI IXP IDE controllers
    740  1.194      manu jmide*	at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
    741  1.194      manu ahcisata* at jmide?
    742  1.194      manu mvsata* at pci? dev ? function ?	# Marvell Hercules-I/II
    743  1.194      manu optiide* at pci? dev ? function ?	# Opti IDE controllers
    744  1.194      manu piixide* at pci? dev ? function ?	# Intel IDE controllers
    745  1.194      manu pdcide* at pci? dev ? function ?	# Promise IDE controllers
    746  1.194      manu pdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
    747  1.194      manu satalink* at pci? dev ? function ?	# SiI SATALink controllers
    748  1.194      manu siisata* at pci? dev ? function ?	# SiI SteelVine controllers
    749  1.194      manu siside* at pci? dev ? function ?	# SiS IDE controllers
    750  1.194      manu slide*	at pci? dev ? function ?	# Symphony Labs IDE controllers
    751  1.194      manu svwsata* at pci? dev ? function ?	# ServerWorks SATA controllers
    752  1.194      manu toshide* at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
    753  1.194      manu viaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    754  1.194      manu 
    755  1.194      manu # PCMCIA IDE controllers
    756  1.194      manu wdc*	at pcmcia? function ?
    757  1.194      manu 
    758  1.194      manu # CardBus IDE controllers
    759  1.194      manu njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
    760  1.194      manu siisata* at cardbus? function ? 	# SiI SteelVine controllers
    761  1.194      manu 
    762  1.194      manu # ISA ST506, ESDI, and IDE controllers
    763  1.194      manu # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
    764  1.194      manu # fall back to 16bits I/O if 32bits I/O are not functional).
    765  1.194      manu # Some controllers pass the initial 32bit test, but will fail later.
    766  1.194      manu wdc0	at isa? port 0x1f0 irq 14 flags 0x00
    767  1.194      manu wdc1	at isa? port 0x170 irq 15 flags 0x00
    768  1.192       gdt 
    769  1.192       gdt # ATA (IDE) bus support
    770  1.192       gdt atabus* at ata?
    771  1.194      manu options 	ATADEBUG
    772  1.192       gdt 
    773  1.192       gdt # IDE drives
    774  1.192       gdt # Flags are used only with controllers that support DMA operations
    775  1.192       gdt # and mode settings (e.g. some pciide controllers)
    776  1.192       gdt # The lowest order four bits (rightmost digit) of the flags define the PIO
    777  1.192       gdt # mode to use, the next set of four bits the DMA mode and the third set the
    778  1.192       gdt # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    779  1.192       gdt # to use, and the last bit must be 1 for this setting to be used.
    780  1.192       gdt # For DMA and UDMA, 0xf (1111) means 'disable'.
    781  1.192       gdt # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    782  1.192       gdt # (0xc=1100, 0xa=1010, 0xf=1111)
    783  1.192       gdt # 0x0000 means "use whatever the drive claims to support".
    784  1.192       gdt wd*	at atabus? drive ? flags 0x0000
    785  1.192       gdt 
    786  1.192       gdt # ATAPI bus support
    787  1.192       gdt atapibus* at atapi?
    788  1.192       gdt 
    789  1.192       gdt 
    790  1.192       gdt # ATA RAID configuration support, as found on some Promise controllers.
    791  1.192       gdt pseudo-device ataraid
    792  1.192       gdt ld*	at ataraid? vendtype ? unit ?
    793  1.192       gdt 
    794  1.192       gdt # ATAPI devices
    795  1.192       gdt # flags have the same meaning as for IDE drives.
    796  1.192       gdt cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    797  1.192       gdt sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    798  1.192       gdt st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    799  1.192       gdt uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    800  1.192       gdt 
    801  1.192       gdt 
    802  1.192       gdt # NVM Express controllers and devices
    803  1.192       gdt nvme*	at pci? dev ? function ?
    804  1.192       gdt ld*	at nvme? nsid ?
    805  1.192       gdt 
    806   1.50      cnst 
    807  1.192       gdt # Miscellaneous mass storage devices
    808    1.2    bouyer 
    809  1.192       gdt # ISA floppy
    810  1.194      manu fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
    811  1.192       gdt #fdc1	at isa? port 0x370 irq ? drq ?
    812  1.194      manu fd*	at fdc? drive ?			# the drives themselves
    813  1.192       gdt # some machines need you to do this instead of fd*
    814  1.192       gdt #fd0	at fdc0 drive 0
    815    1.2    bouyer 
    816  1.192       gdt # Network Interfaces
    817    1.2    bouyer 
    818    1.2    bouyer # PCI network interfaces
    819   1.42    cegger age*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
    820   1.91       riz alc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
    821   1.91       riz ale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
    822    1.2    bouyer an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    823  1.170       ryo aq*	at pci? dev ? function ?	# Aquantia AQC 10 gigabit
    824    1.2    bouyer ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
    825  1.194      manu athn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
    826    1.2    bouyer atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
    827  1.194      manu bce*	at pci? dev ? function ?	# Broadcom 440x 10/100 Ethernet
    828   1.68       ryo bge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    829   1.68       ryo bnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
    830  1.194      manu bwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
    831  1.194      manu bwfm*	at pci? dev ? function ?	# Broadcom FullMAC
    832  1.194      manu cas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
    833    1.2    bouyer dge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
    834  1.194      manu ena*	at pci? dev ? function ?	# Amazon.com Elastic Network Adapter
    835    1.2    bouyer ep*	at pci? dev ? function ?	# 3Com 3c59x
    836    1.2    bouyer epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    837   1.59   jnemeth et*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
    838    1.2    bouyer ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    839    1.2    bouyer fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    840  1.194      manu gem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
    841    1.2    bouyer gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    842    1.2    bouyer hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
    843  1.194      manu iavf*	at pci? dev ? function ?	# Intel Adaptive Virtual Function
    844    1.2    bouyer ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
    845    1.2    bouyer iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
    846  1.194      manu iwm*	at pci? dev ? function ?	# Intel Centrino 7260
    847   1.68       ryo iwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
    848  1.164    cherry ixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
    849  1.194      manu ixl*	at pci? dev ? function ?	# Intel Ethernet 700 Series
    850  1.194      manu ixv*	at pci? dev ? function ?	# Intel 8259x 10G virtual function
    851   1.31    bouyer jme*	at pci? dev ? function ?	# JMicron JMC2[56]0 ethernet
    852  1.194      manu kse*	at pci? dev ? function ?	# Micrel KSZ8841/8842 ethernet
    853   1.14      cube lii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
    854  1.194      manu malo*	at pci? dev ? function ?	# Marvell Libertas Wireless
    855  1.194      manu mcx*	at pci? dev ? function ?	# Mellanox 5th generation Ethernet
    856    1.2    bouyer mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
    857    1.2    bouyer msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
    858    1.2    bouyer mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    859    1.2    bouyer ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    860    1.2    bouyer nfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
    861    1.2    bouyer ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    862    1.2    bouyer pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    863    1.2    bouyer ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
    864    1.2    bouyer re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    865  1.194      manu rge*	at pci? dev ? function ?	# Realtek 8125
    866    1.2    bouyer rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    867  1.194      manu rtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
    868  1.194      manu rtwn*	at pci? dev ? function ?	# Realtek 8188CE/8192CE 802.11b/g/n
    869    1.2    bouyer sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    870    1.2    bouyer sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    871    1.2    bouyer skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
    872    1.2    bouyer sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
    873    1.2    bouyer ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    874    1.2    bouyer stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    875    1.2    bouyer ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    876    1.2    bouyer tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    877    1.2    bouyer tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    878    1.2    bouyer txp*	at pci? dev ? function ?	# 3com 3cr990
    879    1.2    bouyer vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
    880  1.194      manu vmx*	at pci? dev ? function ?	# VMware VMXNET3
    881    1.2    bouyer vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    882    1.2    bouyer wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    883  1.194      manu wm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
    884   1.92   khorben wpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
    885    1.2    bouyer xge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
    886    1.2    bouyer 
    887  1.192       gdt # PCMCIA network interfaces
    888  1.194      manu an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    889  1.194      manu awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
    890  1.194      manu cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    891  1.194      manu cs*	at pcmcia? function ?		# CS89xx Ethernet
    892  1.194      manu ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    893  1.194      manu malo*	at pcmcia? function ?		# Marvell Libertas
    894  1.194      manu mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    895  1.194      manu ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    896  1.194      manu ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
    897  1.194      manu sm*	at pcmcia? function ?		# Megahertz Ethernet
    898  1.194      manu wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
    899  1.194      manu xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    900  1.194      manu com*	at xirc?
    901  1.194      manu xi*	at xirc?
    902  1.194      manu 
    903  1.194      manu mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    904  1.194      manu com*	at mhzc?
    905  1.194      manu sm*	at mhzc?
    906  1.192       gdt 
    907  1.192       gdt # CardBus network cards
    908  1.194      manu ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
    909  1.194      manu athn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n) - UNTESTED
    910  1.194      manu atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
    911  1.194      manu ex*	at cardbus? function ?	# 3Com 3C575TX
    912  1.194      manu fxp*	at cardbus? function ?	# Intel i8255x
    913  1.194      manu malo*	at cardbus? function ?	# Marvell Libertas Wireless
    914  1.194      manu ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
    915  1.194      manu re*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
    916  1.194      manu rtk*	at cardbus? function ?	# Realtek 8129/8139
    917  1.194      manu rtw*	at cardbus? function ?	# Realtek 8180L (802.11)
    918  1.194      manu tlp*	at cardbus? function ?	# DECchip 21143
    919  1.192       gdt 
    920    1.2    bouyer # MII/PHY support
    921  1.192       gdt acphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
    922    1.2    bouyer amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    923  1.192       gdt atphy*	at mii?	phy ?			# Attansic/Atheros PHYs
    924    1.2    bouyer bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    925    1.2    bouyer brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    926    1.2    bouyer ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
    927    1.2    bouyer dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    928   1.59   jnemeth etphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
    929    1.2    bouyer exphy*	at mii? phy ?			# 3Com internal PHYs
    930    1.2    bouyer gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    931    1.2    bouyer glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    932    1.2    bouyer gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    933    1.2    bouyer icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    934    1.2    bouyer igphy*	at mii? phy ?			# Intel IGP01E1000
    935   1.61  christos ihphy*	at mii? phy ?			# Intel 82577 PHYs
    936    1.2    bouyer ikphy*	at mii? phy ?			# Intel 82563 PHYs
    937    1.2    bouyer inphy*	at mii? phy ?			# Intel 82555 PHYs
    938    1.2    bouyer iophy*	at mii? phy ?			# Intel 82553 PHYs
    939  1.194      manu ipgphy* at mii? phy ?			# IC PLUS IP1000A/IP1001 PHYs
    940  1.194      manu jmphy*	at mii? phy ?			# Jmicron JMP202/211 PHYs
    941    1.2    bouyer lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    942    1.2    bouyer makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    943  1.194      manu micphy* at mii? phy ?			# Micrel KSZ[89]xxx PHYs
    944    1.2    bouyer nsphy*	at mii? phy ?			# NS83840 PHYs
    945    1.2    bouyer nsphyter* at mii? phy ? 		# NS83843 PHYs
    946    1.2    bouyer pnaphy* at mii? phy ?			# generic HomePNA PHYs
    947    1.2    bouyer qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    948  1.192       gdt rgephy* at mii? phy ?			# Realtek 8169S/8110 internal PHYs
    949    1.2    bouyer rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
    950  1.194      manu smscphy* at mii? phy ?			# SMSC LAN87xx PHYs
    951    1.2    bouyer sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    952    1.2    bouyer tlphy*	at mii? phy ?			# ThunderLAN PHYs
    953    1.2    bouyer tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    954    1.2    bouyer ukphy*	at mii? phy ?			# generic unknown PHYs
    955    1.2    bouyer urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    956    1.2    bouyer 
    957  1.142    bouyer 
    958  1.192       gdt # USB Controller and Devices
    959  1.142    bouyer 
    960  1.192       gdt # Virtual USB controller
    961  1.192       gdt #pseudo-device	vhci
    962    1.2    bouyer 
    963  1.192       gdt # PCI USB controllers
    964  1.192       gdt xhci*	at pci?	dev ? function ?	# eXtensible Host Controller
    965  1.192       gdt ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    966  1.192       gdt ohci*	at pci?	dev ? function ?	# Open Host Controller
    967  1.192       gdt uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    968  1.192       gdt 
    969  1.192       gdt # CardBus USB controllers
    970  1.194      manu ehci*	at cardbus? function ?	# Enhanced Host Controller
    971  1.194      manu ohci*	at cardbus? function ?	# Open Host Controller
    972  1.194      manu uhci*	at cardbus? function ?		# Universal Host Controller (Intel)
    973    1.2    bouyer 
    974  1.192       gdt # ISA USB controllers
    975  1.192       gdt #slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
    976    1.2    bouyer 
    977  1.192       gdt # PCMCIA USB controllers
    978  1.194      manu slhci*	at pcmcia? function ?		# ScanLogic SL811HS
    979    1.2    bouyer 
    980    1.2    bouyer # USB bus support
    981  1.192       gdt #usb*	at vhci?
    982  1.148    bouyer usb*	at xhci?
    983   1.68       ryo usb*	at ehci?
    984   1.68       ryo usb*	at ohci?
    985   1.68       ryo usb*	at uhci?
    986  1.194      manu usb*	at slhci?
    987    1.2    bouyer 
    988  1.194      manu include "dev/usb/usbdevices.config"
    989  1.192       gdt 
    990    1.2    bouyer # PCI IEEE1394 controllers
    991   1.68       ryo fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
    992    1.2    bouyer 
    993    1.2    bouyer # CardBus IEEE1394 controllers
    994  1.194      manu fwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
    995    1.2    bouyer 
    996    1.2    bouyer ieee1394if* at fwohci?
    997    1.2    bouyer fwip*	at ieee1394if?			# IP over IEEE1394
    998  1.192       gdt sbp*	at ieee1394if? euihi ? euilo ?
    999  1.192       gdt 
   1000  1.192       gdt # Audio Devices
   1001    1.2    bouyer 
   1002    1.2    bouyer # PCI audio devices
   1003    1.2    bouyer auacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
   1004  1.192       gdt auich*	at pci? dev ? function ?	# Intel/AMD/nVidia AC'97 Audio
   1005    1.2    bouyer auixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
   1006    1.2    bouyer autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
   1007  1.192       gdt auvia*	at pci? dev ? function ?	# VIA AC'97 audio
   1008    1.2    bouyer clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
   1009    1.2    bouyer clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
   1010    1.2    bouyer cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
   1011    1.2    bouyer eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
   1012    1.2    bouyer emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
   1013    1.2    bouyer esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
   1014    1.2    bouyer esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
   1015    1.2    bouyer eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
   1016    1.2    bouyer fms*	at pci? dev ? function ?	# Forte Media FM801
   1017    1.2    bouyer neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
   1018    1.2    bouyer sv*	at pci? dev ? function ?	# S3 SonicVibes
   1019    1.2    bouyer yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
   1020    1.2    bouyer 
   1021    1.2    bouyer # OPL[23] FM synthesizers
   1022    1.2    bouyer #opl0	at isa? port 0x388	# use only if not attached to sound card
   1023    1.2    bouyer opl*	at cmpci? flags 1
   1024    1.2    bouyer opl*	at eso?
   1025    1.2    bouyer opl*	at fms?
   1026    1.2    bouyer opl*	at sv?
   1027    1.2    bouyer 
   1028   1.45  jmcneill # High Definition Audio
   1029   1.46  jmcneill hdaudio*	at pci? dev ? function ?	# High Definition Audio
   1030   1.46  jmcneill hdafg*		at hdaudiobus?
   1031   1.44  sborrill 
   1032    1.2    bouyer # Audio support
   1033    1.2    bouyer audio*	at audiobus?
   1034    1.2    bouyer 
   1035  1.192       gdt # The spkr driver provides a simple tone interface to the built in speaker.
   1036  1.194      manu spkr*	at pcppi?		# PC speaker
   1037  1.123  christos spkr*	at audio?		# PC speaker (synthesized)
   1038  1.192       gdt #wsbell* at spkr?		# Bell for wscons display (module by default)
   1039  1.121       nat 
   1040    1.2    bouyer # MPU 401 UARTs
   1041    1.2    bouyer #mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
   1042    1.2    bouyer mpu*	at cmpci?
   1043    1.2    bouyer mpu*	at eso?
   1044    1.2    bouyer mpu*	at yds?
   1045    1.2    bouyer 
   1046    1.2    bouyer # MIDI support
   1047    1.2    bouyer midi*	at midibus?
   1048  1.194      manu midi*	at pcppi?		# MIDI interface to the PC speaker
   1049  1.192       gdt 
   1050  1.192       gdt # FM-Radio devices
   1051  1.192       gdt # PCI radio devices
   1052  1.192       gdt #gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
   1053  1.192       gdt 
   1054  1.192       gdt # Radio support
   1055  1.192       gdt #radio*	at gtp?
   1056  1.192       gdt 
   1057  1.192       gdt 
   1058  1.192       gdt # Video capture devices
   1059  1.192       gdt 
   1060  1.194      manu coram*	at pci? dev ? function ?	# Conexant CX23885 PCI-E TV
   1061  1.194      manu cxdtv*	at pci? dev ? function ?	# Conexant CX2388[0-3] PCI TV
   1062  1.192       gdt 
   1063  1.194      manu video*	at videobus?			# Analog capture interface
   1064  1.194      manu dtv*	at dtvbus?			# Digital capture interface
   1065  1.192       gdt 
   1066  1.192       gdt 
   1067  1.192       gdt # TV cards
   1068  1.192       gdt 
   1069  1.192       gdt # Brooktree 848/849/878/879 based TV cards
   1070  1.194      manu bktr* at pci? dev ? function ?
   1071  1.194      manu radio* at bktr?
   1072  1.192       gdt 
   1073    1.2    bouyer 
   1074    1.2    bouyer # Bluetooth Controller and Device support
   1075    1.2    bouyer 
   1076    1.2    bouyer # Bluetooth PCMCIA Controllers
   1077  1.194      manu bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
   1078  1.194      manu btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
   1079    1.2    bouyer 
   1080  1.192       gdt # Bluetooth SDIO Controllers
   1081  1.194      manu sbt* at sdmmc?
   1082  1.192       gdt 
   1083    1.2    bouyer # Bluetooth USB Controllers
   1084    1.2    bouyer ubt* at uhub? port ?
   1085   1.70  jakllsch aubtfwl* at uhub? port ?
   1086    1.2    bouyer 
   1087    1.2    bouyer # Bluetooth Device Hub
   1088  1.194      manu bthub* at bcsp?
   1089  1.194      manu bthub* at bt3c?
   1090  1.194      manu bthub* at btbc?
   1091  1.194      manu bthub* at btuart?
   1092  1.194      manu bthub* at sbt?
   1093    1.2    bouyer bthub* at ubt?
   1094    1.2    bouyer 
   1095    1.2    bouyer # Bluetooth HID support
   1096    1.2    bouyer bthidev* at bthub?
   1097    1.2    bouyer 
   1098    1.2    bouyer # Bluetooth Mouse
   1099    1.2    bouyer btms* at bthidev? reportid ?
   1100    1.2    bouyer wsmouse* at btms? mux 0
   1101    1.2    bouyer 
   1102    1.2    bouyer # Bluetooth Keyboard
   1103    1.2    bouyer btkbd* at bthidev? reportid ?
   1104    1.2    bouyer wskbd* at btkbd? console ? mux 1
   1105    1.2    bouyer 
   1106   1.54    plunky # Bluetooth Apple Magic Mouse
   1107   1.54    plunky btmagic* at bthub?
   1108   1.54    plunky wsmouse* at btmagic? mux 0
   1109   1.54    plunky 
   1110    1.2    bouyer # Bluetooth Audio support
   1111    1.2    bouyer btsco* at bthub?
   1112    1.2    bouyer 
   1113  1.136   khorben 
   1114  1.136   khorben # SD/MMC/SDIO Controller and Device support
   1115  1.136   khorben 
   1116  1.136   khorben # SD/MMC controller
   1117  1.136   khorben sdhc*	at pci?		# SD Host Controller
   1118  1.136   khorben rtsx*	at pci?		# Realtek RTS5209/RTS5229 Card Reader
   1119  1.194      manu sdhc*	at cardbus?	# SD Host Controller
   1120  1.136   khorben sdmmc*	at sdhc?	# SD/MMC bus
   1121  1.136   khorben sdmmc*	at rtsx?	# SD/MMC bus
   1122  1.136   khorben 
   1123  1.136   khorben ld*	at sdmmc?
   1124  1.136   khorben 
   1125  1.136   khorben 
   1126  1.192       gdt # Middle Digital, Inc. PCI-Weasel serial console board control
   1127  1.192       gdt # devices (watchdog timer, etc.)
   1128  1.194      manu weasel* at pci?
   1129    1.2    bouyer 
   1130  1.192       gdt # Pull in optional local configuration
   1131   1.10      jmmv cinclude "arch/amd64/conf/GENERIC.local"
   1132    1.2    bouyer 
   1133  1.192       gdt 
   1134    1.2    bouyer # Pseudo-Devices
   1135    1.2    bouyer 
   1136  1.192       gdt pseudo-device	crypto			# /dev/crypto device
   1137  1.192       gdt pseudo-device	swcrypto		# software crypto implementation
   1138    1.2    bouyer 
   1139    1.2    bouyer # disk/mass storage pseudo-devices
   1140    1.2    bouyer pseudo-device	bio			# RAID control device driver
   1141   1.95  christos pseudo-device	ccd			# concatenated/striped disk devices
   1142   1.95  christos pseudo-device	cgd			# cryptographic disk devices
   1143   1.96  christos pseudo-device	raid			# RAIDframe disk driver
   1144    1.2    bouyer options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
   1145    1.2    bouyer # Options to enable various other RAIDframe RAID types.
   1146    1.2    bouyer #options 	RF_INCLUDE_EVENODD=1
   1147    1.2    bouyer #options 	RF_INCLUDE_RAID5_RS=1
   1148    1.2    bouyer #options 	RF_INCLUDE_PARITYLOGGING=1
   1149    1.2    bouyer #options 	RF_INCLUDE_CHAINDECLUSTER=1
   1150    1.2    bouyer #options 	RF_INCLUDE_INTERDECLUSTER=1
   1151    1.2    bouyer #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
   1152    1.2    bouyer #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
   1153   1.53     pooka pseudo-device	fss			# file system snapshot device
   1154    1.2    bouyer 
   1155   1.60   hannken pseudo-device	md			# memory disk device (ramdisk)
   1156  1.194      manu options		MEMORY_DISK_HOOKS	# enable md specific hooks
   1157  1.194      manu options 	MEMORY_DISK_DYNAMIC	# enable dynamic resizing
   1158  1.192       gdt 
   1159    1.2    bouyer pseudo-device	vnd			# disk-like interface to files
   1160  1.194      manu options 	VND_COMPRESSION		# compressed vnd(4)
   1161    1.2    bouyer 
   1162  1.192       gdt 
   1163    1.2    bouyer # network pseudo-devices
   1164    1.2    bouyer pseudo-device	bpfilter		# Berkeley packet filter
   1165  1.194      manu pseudo-device	carp			# Common Address Redundancy Protocol
   1166    1.2    bouyer pseudo-device	loop			# network loopback
   1167  1.192       gdt #pseudo-device	mpls			# MPLS pseudo-interface
   1168    1.2    bouyer pseudo-device	ppp			# Point-to-Point Protocol
   1169    1.2    bouyer pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
   1170    1.2    bouyer pseudo-device	sl			# Serial Line IP
   1171  1.194      manu pseudo-device	irframetty		# IrDA frame line discipline
   1172  1.192       gdt pseudo-device	tun			# network tunneling over tty
   1173    1.2    bouyer pseudo-device	tap			# virtual Ethernet
   1174    1.2    bouyer pseudo-device	gre			# generic L3 over IP tunnel
   1175    1.2    bouyer pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
   1176  1.194      manu pseudo-device	ipsecif			# tunnel interface for routing based ipsec
   1177    1.2    bouyer #pseudo-device	faith			# IPv[46] tcp relay translation i/f
   1178    1.2    bouyer pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
   1179    1.2    bouyer pseudo-device	vlan			# IEEE 802.1q encapsulation
   1180    1.2    bouyer pseudo-device	bridge			# simple inter-network bridging
   1181  1.185       roy pseudo-device	vether			# Virtual Ethernet for bridge
   1182  1.194      manu pseudo-device	agr			# IEEE 802.3ad link aggregation
   1183  1.155      maxv pseudo-device	l2tp			# L2TPv3 interface
   1184  1.194      manu pseudo-device	lagg			# Link aggregation interface
   1185  1.154      maxv pseudo-device	npf			# NPF packet filter
   1186    1.2    bouyer 
   1187  1.192       gdt #pseudo-device	canloop			# CAN loopback interface
   1188  1.192       gdt 
   1189  1.192       gdt #
   1190  1.192       gdt # accept filters
   1191  1.192       gdt pseudo-device	accf_data		# "dataready" accept filter
   1192  1.192       gdt pseudo-device	accf_http		# "httpready" accept filter
   1193  1.192       gdt 
   1194    1.2    bouyer # miscellaneous pseudo-devices
   1195    1.2    bouyer pseudo-device	pty			# pseudo-terminals
   1196  1.194      manu pseudo-device	sequencer		# MIDI sequencer
   1197  1.192       gdt # rnd works; RND_COM does not on port i386 yet.
   1198  1.192       gdt #options 	RND_COM			# use "com" randomness as well (BROKEN)
   1199    1.2    bouyer pseudo-device	clockctl		# user control of clock subsystem
   1200    1.2    bouyer pseudo-device	ksyms			# /dev/ksyms
   1201  1.194      manu pseudo-device	lockstat		# lock profiling
   1202  1.194      manu pseudo-device	bcsp			# BlueCore Serial Protocol
   1203  1.194      manu pseudo-device	btuart			# Bluetooth HCI UART (H4)
   1204  1.194      manu #pseudo-device	nvmm			# NetBSD Virtual Machine Monitor
   1205  1.116       tnn 
   1206    1.2    bouyer # wscons pseudo-devices
   1207    1.2    bouyer pseudo-device	wsmux			# mouse & keyboard multiplexor
   1208    1.2    bouyer pseudo-device	wsfont
   1209  1.192       gdt # Give us a choice of fonts based on monitor size
   1210  1.194      manu options 	FONT_BOLD8x16
   1211  1.194      manu options 	FONT_BOLD16x32
   1212  1.192       gdt 
   1213  1.192       gdt # pseudo audio device driver
   1214  1.194      manu pseudo-device	pad
   1215    1.2    bouyer 
   1216    1.5       riz # userland interface to drivers, including autoconf and properties retrieval
   1217   1.68       ryo pseudo-device	drvctl
   1218    1.5       riz 
   1219  1.194      manu include "dev/veriexec.config"
   1220  1.192       gdt 
   1221  1.194      manu options 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
   1222  1.192       gdt options 	PAX_MPROTECT=1		# PaX mprotect(2) restrictions
   1223  1.194      manu options 	PAX_MPROTECT_DEBUG=1	# PaX mprotect debug
   1224  1.192       gdt options 	PAX_ASLR=1		# PaX Address Space Layout Randomization
   1225  1.194      manu options 	PAX_ASLR_DEBUG=1	# PaX ASLR debug
   1226  1.192       gdt 
   1227  1.194      manu # xen pseudo-devices
   1228  1.194      manu pseudo-device  xenevt
   1229  1.194      manu pseudo-device  xvif
   1230  1.194      manu pseudo-device  xbdback
   1231  1.192       gdt 
   1232