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