GENERIC revision 1.476
1# $NetBSD: GENERIC,v 1.476 2017/12/31 03:38:06 christos 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.476 $"
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
78
79# CPU features
80acpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
81coretemp*	at cpu?		# Intel on-die thermal sensor
82est0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
83#odcm0		at cpu0		# On-demand clock modulation
84powernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
85vmt0		at cpu0		# VMware Tools
86
87options 	PMC		# performance-monitoring counters support
88
89# Alternate buffer queue strategies for better responsiveness under high
90# disk I/O load.
91#options 	BUFQ_READPRIO
92options 	BUFQ_PRIOCSCAN
93
94# Diagnostic/debugging support options
95options 	DIAGNOSTIC	# inexpensive kernel consistency checks
96				# XXX to be commented out on release branch
97#options 	DEBUG		# expensive debugging checks/support
98#options 	LOCKDEBUG	# expensive locking checks/support
99
100#
101# Because gcc omits the frame pointer for any -O level, the line below
102# is needed to make backtraces in DDB work.
103#
104makeoptions	COPTS="-O2 -fno-omit-frame-pointer"
105options 	DDB		# in-kernel debugger
106#options 	DDB_COMMANDONENTER="bt"	# execute command when ddb is entered
107#options 	DDB_ONPANIC=1	# see also sysctl(7): `ddb.onpanic'
108options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
109#options 	KGDB		# remote debugger
110#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
111makeoptions	DEBUG="-g"	# compile full symbol table for CTF
112#options 	SYSCALL_STATS	# per syscall counts
113#options 	SYSCALL_TIMES	# per syscall times
114#options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
115options 	KDTRACE_HOOKS	# kernel DTrace hooks
116
117# Compatibility options
118# x86_64 never shipped with a.out binaries; the two options below are
119# only relevant to 32-bit i386 binaries
120#options 	EXEC_AOUT	# required by binaries from before 1.5
121#options	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
122
123# NetBSD backward compatibility. Support goes from COMPAT_15 up until
124# the latest release. Note that really old compat (< COMPAT_16) is only
125# useful for 32-bit i386 binaries.
126include 	"conf/compat_netbsd15.config"
127
128#options 	COMPAT_386BSD_MBRPART # recognize old partition ID
129
130options 	COMPAT_OSSAUDIO
131options 	COMPAT_NETBSD32
132options 	COMPAT_LINUX
133options 	COMPAT_LINUX32	# req. COMPAT_LINUX and COMPAT_NETBSD32
134options 	EXEC_ELF32
135
136# Wedge support
137options 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
138options 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
139#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
140#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
141options 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
142#options 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
143
144# File systems
145file-system	FFS		# UFS
146file-system	MFS		# memory file system
147file-system	NFS		# Network File System client
148file-system	TMPFS		# Efficient memory file-system
149file-system	EXT2FS		# second extended file system (linux)
150file-system	LFS		# log-structured file system
151file-system	NTFS		# Windows/NT file system (experimental)
152file-system	CD9660		# ISO 9660 + Rock Ridge file system
153file-system	MSDOSFS		# MS-DOS file system
154file-system	FDESC		# /dev/fd
155file-system	KERNFS		# /kern
156file-system	NULLFS		# loopback file system
157file-system	OVERLAY		# overlay file system
158file-system	PROCFS		# /proc
159file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
160file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
161file-system	UMAPFS		# NULLFS + uid and gid remapping
162file-system	UNION		# union file system
163file-system	CODA		# Coda File System; also needs vcoda (below)
164file-system	PTYFS		# /dev/ptm support
165#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
166#file-system	HFS		# experimental - Apple HFS+ (read-only)
167#file-system	NILFS		# experimental - NTT's NiLFS(2)
168
169# File system options
170# ffs
171options 	QUOTA		# legacy UFS quotas
172options 	QUOTA2		# new, in-filesystem UFS quotas
173options 	FFS_EI		# FFS Endian Independent support
174options 	WAPBL		# File system journaling support
175# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
176# It is not recommended for general use.
177#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
178#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
179options 	UFS_EXTATTR	# Extended attribute support for UFS1
180# ext2fs
181#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
182				# immutable) behave as system flags.
183# other
184#options 	DISKLABEL_EI	# disklabel Endian Independent support
185options 	NFSSERVER	# Network File System server
186
187# Networking options
188#options 	GATEWAY		# packet forwarding
189options 	INET		# IP + ICMP + TCP + UDP
190options 	INET6		# IPV6
191options 	IPSEC		# IP security
192#options 	IPSEC_DEBUG	# debug for IP security
193#options 	MPLS		# MultiProtocol Label Switching (needs mpls)
194#options 	MROUTING	# IP multicast routing
195#options 	PIM		# Protocol Independent Multicast
196options 	NETATALK	# AppleTalk networking protocols
197#options 	CAN		# Controller Area Network protocol
198options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
199options 	PPP_DEFLATE	# Deflate compression support for PPP
200options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
201options 	IPFILTER_LOG	# ipmon(8) log support
202options 	IPFILTER_LOOKUP	# ippool(8) support
203options 	IPFILTER_COMPAT # Compat for IP-Filter
204#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
205#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
206#options 	TCP_SIGNATURE	# Enable RFC-2385 TCP md5 signatures
207
208#options 	ALTQ		# Manipulate network interfaces' output queues
209#options 	ALTQ_BLUE	# Stochastic Fair Blue
210#options 	ALTQ_CBQ	# Class-Based Queueing
211#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
212#options 	ALTQ_FIFOQ	# First-In First-Out Queue
213#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
214#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
215#options 	ALTQ_LOCALQ	# Local queueing discipline
216#options 	ALTQ_PRIQ	# Priority Queueing
217#options 	ALTQ_RED	# Random Early Detection
218#options 	ALTQ_RIO	# RED with IN/OUT
219#options 	ALTQ_WFQ	# Weighted Fair Queueing
220
221# These options enable verbose messages for several subsystems.
222# Warning, these may compile large string tables into the kernel!
223#options 	ACPIVERBOSE	# verbose ACPI configuration messages
224#options 	MIIVERBOSE	# verbose PHY autoconfig messages
225#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
226#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
227#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
228options 	SCSIVERBOSE	# human readable SCSI error messages
229#options 	USBVERBOSE	# verbose USB device autoconfig messages
230#options 	HDAUDIOVERBOSE	# verbose HDAUDIO driver messages
231
232options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
233
234#
235# wscons options
236#
237# builtin terminal emulations
238#options 	WSEMUL_SUN		# sun terminal emulation
239options 	WSEMUL_VT100		# VT100 / VT220 emulation
240# different kernel output - see dev/wscons/wsdisplayvar.h
241options 	WS_KERNEL_FG=WSCOL_GREEN
242#options 	WS_KERNEL_BG=WSCOL_BLACK
243# compatibility to other console drivers
244options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
245options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
246options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
247options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
248# don't attach pckbd as the console if no PS/2 keyboard is found
249options 	PCKBD_CNATTACH_MAY_FAIL
250# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
251#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
252# allocate a number of virtual screens at autoconfiguration time
253#options 	WSDISPLAY_DEFAULTSCREENS=4
254# use a large software cursor that doesn't blink
255options 	PCDISPLAY_SOFTCURSOR
256# modify the screen type of the console; defaults to "80x25"
257#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
258# work around a hardware bug that loaded fonts don't work; found on ATI cards
259#options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
260# console scrolling support.
261options 	WSDISPLAY_SCROLLSUPPORT
262# enable VGA raster mode capable of displaying multilingual text on console
263#options 	VGA_RASTERCONSOLE
264# enable splash screen support; requires genfb or radeonfb
265#options 	SPLASHSCREEN
266
267# Kernel root file system and dump configuration.
268config		netbsd	root on ? type ?
269#config		netbsd	root on sd0a type ffs
270#config		netbsd	root on ? type nfs
271
272#
273# Device configuration
274#
275
276#IPMI support
277ipmi0		at mainbus?
278
279# ACPI will be used if present. If not it will fall back to MPBIOS
280acpi0		at mainbus0
281options 	ACPI_SCANPCI		# find PCI roots using ACPI
282options 	MPBIOS			# configure CPUs and APICs using MPBIOS
283options 	MPBIOS_SCANPCI		# MPBIOS configures PCI roots
284#options 	PCI_INTR_FIXUP		# PCI interrupt routing via ACPI
285#options 	PCI_BUS_FIXUP		# fixup PCI bus numbering
286#options 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
287#options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
288options 	VGA_POST		# in-kernel support for VGA POST
289
290# ACPI devices
291acpiacad*	at acpi?		# ACPI AC Adapter
292acpibat*	at acpi?		# ACPI Battery
293acpibut*	at acpi?		# ACPI Button
294acpidalb*	at acpi?		# Direct Application Launch Button
295acpiec* 	at acpi?		# ACPI Embedded Controller (late)
296acpiecdt*	at acpi?		# ACPI Embedded Controller (early)
297acpifan*	at acpi?		# ACPI Fan
298acpilid*	at acpi?		# ACPI Lid Switch
299#acpipmtr*	at acpi?		# ACPI Power Meter (experimental)
300#acpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
301acpitz* 	at acpi?		# ACPI Thermal Zone
302acpivga*	at acpi?		# ACPI Display Adapter
303acpiout*	at acpivga?		# ACPI Display Output Device
304acpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
305acpiwmi*	at acpi?		# ACPI WMI Mapper
306
307# Mainboard devices
308aibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
309asus*		at acpi?		# ASUS hotkeys
310attimer*	at acpi?		# AT Timer
311#com*		at acpi?		# Serial communications interface
312#fdc*		at acpi?		# Floppy disk controller
313fujbp*		at acpi?		# Fujitsu Brightness & Pointer
314fujhk*		at acpi?		# Fujitsu Hotkeys
315#hpacel* 	at acpi?		# HP 3D DriveGuard accelerometer
316#hpqlb*		at acpi?		# HP Quick Launch Buttons
317hpet*		at acpihpetbus?		# High Precision Event Timer (table)
318hpet*		at acpinodebus?		# High Precision Event Timer (device)
319joy*		at acpi?		# Joystick/Game port
320#lpt*		at acpi?		# Parallel port
321mpu*		at acpi?		# Roland MPU-401 MIDI UART
322pckbc*		at acpi?		# PC keyboard controller
323pcppi*		at acpi?		# AT-style speaker sound
324qemufwcfg*	at acpi?		# QEMU Firmware Configuration device
325sdhc*		at acpi?		# SD Host Controller
326sony*		at acpi?		# Sony Notebook Controller
327spic*		at acpi?		# Sony Programmable I/O Controller
328wsmouse*	at spic?		# mouse
329thinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
330#tpm*		at acpi?		# ACPI TPM (Experimental)
331ug*		at acpi?		# Abit uGuru Hardware monitor
332valz*		at acpi?		# Toshiba Dynabook hotkeys
333wb*		at acpi?		# Winbond W83L518D SD/MMC reader
334sdmmc*		at wb?			# SD/MMC bus
335wmidell*	at acpiwmibus?		# Dell WMI mappings
336wmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
337wmihp*		at acpiwmibus?		# HP WMI mappings
338wmimsi* 	at acpiwmibus?		# MSI WMI mappings
339
340# Basic Bus Support
341
342# PCI bus support
343pci*	at mainbus? bus ?
344pci*	at pchb? bus ?
345pci*	at ppb? bus ?
346
347# PCI bridges
348pchb*	at pci? dev ? function ?	# PCI-Host bridges
349options 	AGP_X86
350pcib*	at pci? dev ? function ?	# PCI-ISA bridges
351ppb*	at pci? dev ? function ?	# PCI-PCI bridges
352# XXX 'puc's aren't really bridges, but there's no better place for them here
353puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
354
355#amdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
356#hpet*	at amdpcib?
357
358pwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
359
360ichlpcib* at pci? dev ? function ?	# Intel ICH PCI-LPC w/ timecounter,
361					# watchdog, gpio, Speedstep and HPET
362fwhrng* at ichlpcib?		# Intel 82802 FWH Random Number Generator
363#hpet*	at ichlpcib?
364tco*	at ichlpcib?		# TCO watch dog timer
365
366aapic*	at pci? dev ? function ?	# AMD 8131 IO apic
367
368agp*	at pchb?
369
370# ISA bus support
371isa0	at mainbus?
372isa0	at pcib?
373#isa0	at amdpcib?
374isa0	at ichlpcib?
375
376# CardBus bridge support
377cbb*		at pci? dev ? function ?
378cardslot*	at cbb?
379
380# CardBus bus support
381cardbus*	at cardslot?
382pcmcia* 	at cardslot?
383
384# Console Devices
385
386# wscons
387pckbc0		at isa?			# pc keyboard controller
388pckbd*		at pckbc?		# PC keyboard
389pms*		at pckbc?		# PS/2 mouse for wsmouse
390#options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
391options 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
392options 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
393options 	PMS_ALPS_TOUCHPAD	# Enable support for Alps Touchpads
394vga*		at pci? dev ? function ?
395genfb*		at pci? dev ? function ?
396options 	VCONS_DRAW_INTR
397wsdisplay*	at vga? console ?
398wsdisplay*	at wsemuldisplaydev?
399wskbd*		at pckbd? console ?
400wsmouse*	at pms? mux 0
401wsmouse*	at wsmousedev?
402
403attimer0	at isa?
404pcppi0		at isa?
405sysbeep0	at pcppi?
406
407# DRI legacy drivers
408#i915drm*	at drm?		# Intel i915, i945 DRM driver
409#mach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
410#mgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
411#r128drm*	at drm?		# ATI Rage 128 DRM driver
412#radeondrm*	at drm?		# ATI Radeon DRM driver
413#savagedrm*	at drm?		# S3 Savage DRM driver
414#sisdrm* 	at drm?		# SiS DRM driver
415#tdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
416#viadrm* 	at drm?		# VIA DRM driver
417
418# DRMKMS drivers
419i915drmkms*	at pci? dev ? function ?
420intelfb*	at intelfbbus?
421
422radeon* 	at pci? dev ? function ?
423radeondrmkmsfb* at radeonfbbus?
424
425nouveau*	at pci? dev ? function ?
426nouveaufb*	at nouveaufbbus?
427
428# Cryptographic Devices
429
430# PCI cryptographic devices
431hifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
432ubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
433
434# Trusted Platform Module
435tpm*	at isa? iomem 0xfed40000 irq 7
436#tpm*	at isa? port 0x02e
437#tpm*	at isa? port 0x04e
438#tpm*	at isa? port 0x07e
439#tpm*	at isa? port 0x0ee
440
441# Serial Devices
442
443# PCI serial interfaces
444com*	at puc? port ?			# 16x50s on "universal" comm boards
445cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
446cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
447
448# PCMCIA serial interfaces
449com*	at pcmcia? function ?		# Modems and serial cards
450
451pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
452com*	at pcmcom? slave ?		# ...and the slave devices
453
454# CardBus serial interfaces
455com*	at cardbus? function ?	# Modems and serial cards
456
457# ISA serial interfaces
458#options 	COM_HAYESP		# adds Hayes ESP serial board support
459com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
460com1	at isa? port 0x2f8 irq 3
461
462# Parallel Printer Interfaces
463
464# PCI parallel printer interfaces
465lpt*	at puc? port ?			# || ports on "universal" comm boards
466
467# ISA parallel printer interfaces
468lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
469lpt1	at isa? port 0x278
470
471# Hardware monitors
472
473amdnb_misc* at pci?			# AMD NB Misc Configuration
474amdtemp* at amdnb_misc?  		# AMD CPU Temperature sensors
475
476# Winbond LPC Super I/O
477#wbsio*	at isa? port 0x2e
478#wbsio*	at isa? port 0x4e
479
480# IBM Hawk Integrated Systems Management Processor
481#ibmhawk0	at iic? addr 0x37
482
483# LM7[89] and compatible hardware monitors
484# Use flags to select temp sensor type (see lm(4) man page for details)
485#lm0	at isa?	port 0x290 flags 0x0	# other common ports: 0x280, 0x310
486#lm*	at wbsio?
487
488# SMSC LPC47B397 hardware monitor functions
489#smsc0	at isa? port 0x02e
490
491# SMSC LPC47M192 hardware monitor
492#smscmon*	at iic? addr 0x2c
493#smscmon*	at iic? addr 0x2d	# (alternate address)
494
495# AMD 768 and 8111 power/ACPI controllers
496amdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
497#iic*	at amdpm?			# sensors below are on this bus
498
499# NVIDIA nForce2/3/4 SMBus controller
500nfsmbc* at pci? dev ? function ?
501nfsmb*	at nfsmbc?
502iic*	at nfsmb?
503
504# Intel PIIX4 power management controllers
505piixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
506iic*	at piixpm?			# SMBus on PIIX4
507
508# Intel ICH SMBus controller
509ichsmb* at pci? dev ? function ?
510iic*	at ichsmb?
511
512# Intel S1200,C2000 (non-pch) SMBus controller
513ismt* at pci? dev ? function ?
514iic*	at ismt?
515
516# I2C controller as found in some Intel PCH devices.
517dwiic*		at pci?			# I2C controller
518iic*		at dwiic?
519
520# Thermal monitor and fan controller
521#dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
522#dbcool* at iic? addr 0x2D		# Tyan S2881
523#dbcool* at iic? addr 0x2E		# Tyan S2882-D
524
525# IBM Thinkpad Active Protection System
526#aps0	at isa? port 0x1600
527
528# Fintek Super I/O with hardware monitor
529#finsio0 	at isa? port 0x4e
530
531# iTE IT87xxF Super I/O with watchdog and sensors support
532#itesio0 	at isa? port 0x2e
533
534# Abit uGuru Hardware system monitor
535#ug0	at isa? port 0xe0
536
537# Serial Presence Detect capable memory modules
538#spdmem* at iic? addr 0x50
539#spdmem* at iic? addr 0x51
540#spdmem* at iic? addr 0x52
541#spdmem* at iic? addr 0x53
542#spdmem* at iic? addr 0x54
543#spdmem* at iic? addr 0x55
544#spdmem* at iic? addr 0x56
545#spdmem* at iic? addr 0x57
546#sdtemp* at iic? addr 0x18
547#sdtemp* at iic? addr 0x19
548#sdtemp* at iic? addr 0x1a
549#sdtemp* at iic? addr 0x1b
550#sdtemp* at iic? addr 0x1c
551#sdtemp* at iic? addr 0x1d
552#sdtemp* at iic? addr 0x1e
553#sdtemp* at iic? addr 0x1f
554
555# I2C HID devices
556ihidev* at iic?
557
558# I2C Mice
559ims*	at ihidev? reportid ?
560wsmouse* at ims? mux 0
561
562# I2O devices
563iop*	at pci? dev ? function ?	# I/O processor
564iopsp*	at iop? tid ?			# SCSI/FC-AL ports
565ld*	at iop? tid ?			# block devices
566# XXX dpti.c wants a processor type that is not assigned for x86-64
567#dpti*	at iop? tid 0			# DPT/Adaptec control interface
568
569# GPIO devices
570gpio*		at gpiobus?
571
572# 1- Wire support
573#gpioow* 	at gpio? offset ? mask ?	# 1-wire bitbanging via gpio
574gpioow* 	at gpio?
575onewire*	at gpioow?
576
577# I2C support
578#gpioiic*	at gpio?
579#iic*		at gpioiic?
580
581# Keylock support
582#gpiolock*	at gpio?
583
584# Pulsing GPIO pins in software
585#gpiopwm*	at gpio?
586
587# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio)
588#soekrisgpio0	at isa? port 0x680
589
590# SCSI Controllers and Devices
591
592# PCI SCSI controllers
593adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
594adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
595ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
596ahd*	at pci? dev ? function ?	# Adaptec aic790x SCSI
597bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
598dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
599iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
600isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
601mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
602mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
603mpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030 (Fusion-MPT)
604mpii*	at pci? dev ? function ?	# LSI Logic Fusion-MPT II
605pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
606siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
607esiop*	at pci? dev ? function ?	# Symbios 53c875 and newer SCSI
608#options 	SIOP_SYMLED		# drive the act. LED in software
609trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
610
611# PCMCIA SCSI controllers
612aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
613esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
614spc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
615
616# CardBus SCSI cards
617adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
618ahc*	at cardbus? function ?	# Adaptec ADP-1480
619
620# SCSI bus support
621scsibus* at scsi?
622
623# SCSI devices
624sd*	at scsibus? target ? lun ?	# SCSI disk drives
625st*	at scsibus? target ? lun ?	# SCSI tape drives
626cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
627ch*	at scsibus? target ? lun ?	# SCSI autochangers
628ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
629ss*	at scsibus? target ? lun ?	# SCSI scanners
630uk*	at scsibus? target ? lun ?	# SCSI unknown
631
632
633# RAID controllers and devices
634aac*	at pci? dev ? function ?	# Adaptec AAC family
635amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
636arcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
637cac*	at pci? dev ? function ?	# Compaq PCI array controllers
638ciss*	at pci? dev ? function ?	# HP Smart Array controllers
639icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
640mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
641twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
642twa*	at pci? dev ? function ?	# 3ware Escalade 9xxx RAID controllers
643
644ld*	at aac? unit ?
645ld*	at amr? unit ?
646ld*	at cac? unit ?
647ld*	at icp? unit ?
648ld*	at twe? unit ?
649ld*	at twa? unit ?
650ld*	at mlx? unit ?
651
652icpsp*	at icp? unit ?			# SCSI pass-through
653
654# IDE and related devices
655# PCI IDE controllers - see pciide(4) for supported hardware.
656# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
657# how to set up DMA modes for this chip. This may work, or may cause
658# a machine hang with some controllers.
659pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
660acardide* at pci? dev ? function ?	# Acard IDE controllers
661aceride* at pci? dev ? function ?	# Acer Lab IDE controllers
662ahcisata* at pci? dev ? function ?	# AHCI SATA controllers
663artsata* at pci? dev ? function ?	# Intel i31244 SATA controller
664cmdide* at pci? dev ? function ?	# CMD tech IDE controllers
665cypide* at pci? dev ? function ?	# Cypress IDE controllers
666hptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
667iteide* at pci? dev ? function ?	# IT Express IDE controllers
668ixpide* at pci? dev ? function ?	# ATI IXP IDE controllers
669jmide*	at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
670ahcisata* at jmide?
671mvsata* at pci? dev ? function ?	# Marvell Hercules-I/II
672optiide* at pci? dev ? function ?	# Opti IDE controllers
673piixide* at pci? dev ? function ?	# Intel IDE controllers
674pdcide* at pci? dev ? function ?	# Promise IDE controllers
675pdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
676satalink* at pci? dev ? function ?	# SiI SATALink controllers
677siisata* at pci? dev ? function ?	# SiI SteelVine controllers
678siside* at pci? dev ? function ?	# SiS IDE controllers
679slide*	at pci? dev ? function ?	# Symphony Labs IDE controllers
680svwsata* at pci? dev ? function ?	# ServerWorks SATA controllers
681toshide* at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
682viaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
683
684# PCMCIA IDE controllers
685wdc*	at pcmcia? function ?
686
687# CardBus IDE controllers
688njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
689siisata* at cardbus? function ? 	# SiI SteelVine controllers
690
691# ISA ST506, ESDI, and IDE controllers
692# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
693# fall back to 16bits I/O if 32bits I/O are not functional).
694# Some controllers pass the initial 32bit test, but will fail later.
695wdc0	at isa? port 0x1f0 irq 14 flags 0x00
696wdc1	at isa? port 0x170 irq 15 flags 0x00
697
698# ATA (IDE) bus support
699atabus* at ata?
700options 	ATADEBUG
701
702# IDE drives
703# Flags are used only with controllers that support DMA operations
704# and mode settings (e.g. some pciide controllers)
705# The lowest order four bits (rightmost digit) of the flags define the PIO
706# mode to use, the next set of four bits the DMA mode and the third set the
707# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
708# to use, and the last bit must be 1 for this setting to be used.
709# For DMA and UDMA, 0xf (1111) means 'disable'.
710# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
711# (0xc=1100, 0xa=1010, 0xf=1111)
712# 0x0000 means "use whatever the drive claims to support".
713wd*	at atabus? drive ? flags 0x0000
714
715# ATAPI bus support
716atapibus* at atapi?
717
718
719# ATA RAID configuration support, as found on some Promise controllers.
720pseudo-device ataraid
721ld*	at ataraid? vendtype ? unit ?
722
723# ATAPI devices
724# flags have the same meaning as for IDE drives.
725cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
726sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
727st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
728uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
729
730
731# NVM Express controllers and devices
732nvme*	at pci? dev ? function ?
733ld*	at nvme? nsid ?
734
735
736# Miscellaneous mass storage devices
737
738# ISA floppy
739fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
740#fdc1	at isa? port 0x370 irq ? drq ?
741fd*	at fdc? drive ?			# the drives themselves
742# some machines need you to do this instead of fd*
743#fd0	at fdc0 drive 0
744
745# Network Interfaces
746
747# PCI network interfaces
748age*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
749alc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
750ale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
751an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
752ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
753athn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
754atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
755bce*	at pci? dev ? function ?	# Broadcom 440x 10/100 Ethernet
756bge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
757bnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
758bwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
759dge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
760en*	at pci? dev ? function ?	# ENI/Adaptec ATM
761ep*	at pci? dev ? function ?	# 3Com 3c59x
762epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
763esh*	at pci? dev ? function ?	# Essential HIPPI card
764et*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
765ex*	at pci? dev ? function ?	# 3Com 90x[BC]
766fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
767fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
768gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
769ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
770iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
771iwm*	at pci? dev ? function ?	# Intel Centrino 7260
772iwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
773ixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
774ixv*	at pci? dev ? function ?	# Intel 8259x 10G virtual function
775jme*	at pci? dev ? function ?	# JMicron JMC2[56]0 ethernet
776hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
777le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
778lii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
779lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
780malo*	at pci? dev ? function ?	# Marvell Libertas Wireless
781mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
782msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
783mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
784ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
785nfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
786ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
787pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
788ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
789re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
790rtk*	at pci? dev ? function ?	# Realtek 8129/8139
791rtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
792rtwn*	at pci? dev ? function ?	# Realtek 8188CE/8192CE 802.11b/g/n
793sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
794sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
795skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
796sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
797ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
798stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
799ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
800tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
801tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
802txp*	at pci? dev ? function ?	# 3com 3cr990
803vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
804vmx*	at pci? dev ? function ?	# VMware VMXNET3
805vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
806wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
807wm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
808wpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
809xge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
810
811# PCMCIA network interfaces
812an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
813awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
814cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
815cs*	at pcmcia? function ?		# CS89xx Ethernet
816ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
817malo*	at pcmcia? function ?		# Marvell Libertas
818mbe*	at pcmcia? function ?		# MB8696x based Ethernet
819ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
820ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
821sm*	at pcmcia? function ?		# Megahertz Ethernet
822# tr at pcmcia has problems with Cardbus bridges
823#tr*	at pcmcia? function ?		# TROPIC based Token-Ring
824wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
825xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
826com*	at xirc?
827xi*	at xirc?
828
829mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
830com*	at mhzc?
831sm*	at mhzc?
832
833# CardBus network cards
834ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
835athn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n) - UNTESTED
836atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
837ex*	at cardbus? function ?	# 3Com 3C575TX
838fxp*	at cardbus? function ?	# Intel i8255x
839ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
840re*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
841rtk*	at cardbus? function ?	# Realtek 8129/8139
842rtw*	at cardbus? function ?	# Realtek 8180L (802.11)
843tlp*	at cardbus? function ?	# DECchip 21143
844
845# MII/PHY support
846acphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
847amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
848atphy*	at mii?	phy ?			# Attansic/Atheros PHYs
849bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
850brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
851ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
852dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
853etphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
854exphy*	at mii? phy ?			# 3Com internal PHYs
855gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
856glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
857gphyter* at mii? phy ?			# NS83861 Gig-E PHY
858icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
859igphy*	at mii? phy ?			# Intel IGP01E1000
860ihphy*	at mii? phy ?			# Intel 82577 PHYs
861ikphy*	at mii? phy ?			# Intel 82563 PHYs
862inphy*	at mii? phy ?			# Intel 82555 PHYs
863iophy*	at mii? phy ?			# Intel 82553 PHYs
864lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
865makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
866nsphy*	at mii? phy ?			# NS83840 PHYs
867nsphyter* at mii? phy ? 		# NS83843 PHYs
868pnaphy* at mii? phy ?			# generic HomePNA PHYs
869qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
870rgephy* at mii? phy ?			# Realtek 8169S/8110 internal PHYs
871rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
872sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
873tlphy*	at mii? phy ?			# ThunderLAN PHYs
874tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
875ukphy*	at mii? phy ?			# generic unknown PHYs
876urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
877
878
879# USB Controller and Devices
880
881# PCI USB controllers
882xhci*	at pci?	dev ? function ?	# eXtensible Host Controller
883					# xhci is at best experimental
884ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
885ohci*	at pci?	dev ? function ?	# Open Host Controller
886uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
887
888# CardBus USB controllers
889ehci*	at cardbus? function ?	# Enhanced Host Controller
890ohci*	at cardbus? function ?	# Open Host Controller
891uhci*	at cardbus? function ?		# Universal Host Controller (Intel)
892
893# ISA USB controllers
894#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
895
896# PCMCIA USB controllers
897slhci*	at pcmcia? function ?		# ScanLogic SL811HS
898
899# USB bus support
900usb*	at xhci?
901usb*	at ehci?
902usb*	at ohci?
903usb*	at uhci?
904usb*	at slhci?
905
906# USB Hubs
907uhub*	at usb?
908uhub*	at uhub? port ?
909
910# USB HID device
911uhidev* at uhub? port ? configuration ? interface ?
912
913# USB Mice
914ums*	at uhidev? reportid ?
915wsmouse* at ums? mux 0
916
917# USB Touchscreens
918uts*	at uhidev? reportid ?
919wsmouse* at uts? mux 0
920
921# USB eGalax touch-panel
922uep*	at uhub? port ?
923wsmouse* at uep? mux 0
924
925# USB Keyboards
926ukbd*	at uhidev? reportid ?
927wskbd*	at ukbd? console ? mux 1
928
929# USB serial adapter
930ucycom* at uhidev? reportid ?
931
932# USB Generic HID devices
933uhid*	at uhidev? reportid ?
934
935# USB LCDs and USB-VGA adaptors
936udl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
937wsdisplay* at udl?
938
939# USB Printer
940ulpt*	at uhub? port ? configuration ? interface ?
941
942# USB Modem
943umodem* at uhub? port ? configuration ?
944ucom*	at umodem?
945
946# Option N.V. Wireless WAN modems
947uhso*	at uhub? port ? configuration ?
948
949# USB Mass Storage
950umass*	at uhub? port ? configuration ? interface ?
951wd* at umass?
952
953# USB audio
954uaudio* at uhub? port ? configuration ?
955uaudio* at usbifif?
956
957# USB MIDI
958umidi*	at uhub? port ? configuration ?
959
960# USB IrDA
961# USB-IrDA bridge spec
962uirda*	at uhub? port ? configuration ? interface ?
963irframe* at uirda?
964
965stuirda* at uhub? port ? configuration ? interface ?
966irframe* at stuirda?
967
968# SigmaTel STIr4200 USB/IrDA Bridge
969ustir*	at uhub? port ?
970irframe* at ustir?
971
972# KingSun/DonShine USB/IrDA Bridge
973udsir*	at uhub? port ?
974irframe* at udsir?
975
976# Windows Media Center IR transceiver
977irmce*	at uhub? port ?
978cir*	at irmce?
979
980# USB Ethernet adapters
981aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
982axe*	at uhub? port ?		# ASIX AX88172 based adapters
983axen*	at uhub? port ?		# ASIX AX88178a/AX88179 based adapters
984cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
985cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
986kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
987#mos*	at uhub? port ?		# Moschip MCS7730/MCS7830/MCS7832 based adapters
988udav*	at uhub? port ?		# Davicom DM9601 based adapters
989url*	at uhub? port ?		# Realtek RTL8150L based adapters
990urndis* at uhub? port ? 	# Microsoft RNDIS specification
991
992# Prolific PL2301/PL2302 host-to-host adapter
993upl*	at uhub? port ?
994
995# Serial adapters
996ubsa*	at uhub? port ?		# Belkin serial adapter
997ucom*	at ubsa? portno ?
998
999uchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
1000ucom*	at uchcom? portno ?
1001
1002uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
1003ucom*	at uftdi? portno ?
1004
1005uipaq*	at uhub? port ?		# iPAQ PDAs
1006ucom*	at uipaq? portno ?
1007
1008umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
1009ucom*	at umct? portno ?
1010
1011uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
1012ucom*	at uplcom? portno ?
1013
1014uslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
1015ucom*	at uslsa? portno ?
1016
1017uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
1018ucom*	at uvscom? portno ?
1019
1020# RIM BlackBerry
1021uberry* at uhub? port ?
1022
1023# Apple iPad
1024uipad* at uhub? port ?
1025
1026# Diamond Multimedia Rio 500
1027urio*	at uhub? port ?
1028
1029# USB Handspring Visor
1030uvisor* at uhub? port ?
1031ucom*	at uvisor?
1032
1033# Kyocera AIR-EDGE PHONE
1034ukyopon* at uhub? port ?
1035ucom*	at ukyopon? portno ?
1036
1037# USB scanners
1038#uscanner* at uhub? port ?
1039
1040# USB 802.11 adapters
1041athn*	at uhub? port ?		# Atheros AR9002U
1042atu*	at uhub? port ?		# Atmel at76c50x 802.11b
1043otus*	at uhub? port ?		# Atheros AR9001U
1044ural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
1045rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
1046run*	at uhub? port ?		# Ralink Technology RT(2[78]|30)00 802.11a/b/g/n
1047urtw*	at uhub? port ?		# Realtek RTL8187/RTL8187B 802.11b/g
1048urtwn*	at uhub? port ?		# Realtek RTL8188CU/RTL8192CU 802.11b/g/n
1049zyd*	at uhub? port ?		# Zydas ZD1211
1050bwfm*	at uhub? port ?		# Broadcom FullMAC
1051
1052# USB scanners that use SCSI emulation, e.g., HP5300
1053usscanner* at uhub? port ?
1054
1055# Topfield TF5000PVR range of DVB recorders
1056utoppy* at uhub? port ?
1057
1058# Y@P firmware loader
1059uyap*	at uhub? port ?
1060
1061# D-Link DSB-R100 USB radio
1062udsbr*	at uhub? port ?
1063radio*	at udsbr?
1064
1065# USB Generic driver
1066ugen*	at uhub? port ?
1067
1068# USB 3G datacards
1069umodeswitch* at uhub? port ?
1070u3g*	at uhub? port ?
1071ucom*	at u3g?
1072
1073# USB generic serial port (e.g., data over cellular)
1074ugensa* at uhub? port ?
1075ucom*	at ugensa?
1076
1077# Araneus Alea I/II TRNG
1078#ualea* at uhub? port ? configuration ? interface ?
1079
1080# IrDA and Consumer Ir devices
1081
1082# Toshiba Oboe
1083#oboe*	at pci? dev ? function ?	# broken -- vtophys
1084#irframe* at oboe?
1085
1086# PCI IEEE1394 controllers
1087fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
1088
1089# CardBus IEEE1394 controllers
1090fwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
1091
1092ieee1394if* at fwohci?
1093fwip*	at ieee1394if?			# IP over IEEE1394
1094sbp*	at ieee1394if? euihi ? euilo ?
1095
1096# Audio Devices
1097
1098# PCI audio devices
1099auacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
1100auich*	at pci? dev ? function ?	# Intel/AMD/nVidia AC'97 Audio
1101auixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
1102autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
1103auvia*	at pci? dev ? function ?	# VIA AC'97 audio
1104#azalia* at pci? dev ? function ?	# High Definition Audio
1105clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
1106clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
1107cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
1108eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
1109emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
1110esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
1111esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
1112eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
1113fms*	at pci? dev ? function ?	# Forte Media FM801
1114neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
1115sv*	at pci? dev ? function ?	# S3 SonicVibes
1116yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
1117
1118# OPL[23] FM synthesizers
1119#opl0	at isa? port 0x388	# use only if not attached to sound card
1120opl*	at cmpci? flags 1
1121opl*	at eso?
1122opl*	at fms?
1123opl*	at sv?
1124
1125# High Definition Audio
1126hdaudio*	at pci? dev ? function ?	# High Definition Audio
1127hdafg*		at hdaudiobus?
1128
1129# Audio support
1130audio*	at audiobus?
1131
1132# The spkr driver provides a simple tone interface to the built in speaker.
1133spkr*	at pcppi?		# PC speaker
1134spkr*	at audio?		# PC speaker (synthesized)
1135#wsbell* at spkr?		# Bell for wscons display (module by default)
1136
1137# MPU 401 UARTs
1138#mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
1139mpu*	at cmpci?
1140mpu*	at eso?
1141mpu*	at yds?
1142
1143# MIDI support
1144midi*	at midibus?
1145midi*	at pcppi?		# MIDI interface to the PC speaker
1146
1147# FM-Radio devices
1148# PCI radio devices
1149#gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
1150
1151# Radio support
1152#radio*	at gtp?
1153
1154
1155# Video capture devices
1156
1157auvitek* at uhub?			# Auvitek AU0828 USB TV
1158coram*	at pci? dev ? function ?	# Conexant CX23885 PCI-E TV
1159cxdtv*	at pci? dev ? function ?	# Conexant CX2388[0-3] PCI TV
1160emdtv*	at uhub?			# Empia EM28xx USB TV
1161cir*	at emdtv?
1162pseye*	at uhub?			# Sony PLAYSTATION(R) Eye webcam
1163uvideo* at uhub?			# USB Video Class capture devices
1164
1165video*	at videobus?			# Analog capture interface
1166dtv*	at dtvbus?			# Digital capture interface
1167
1168
1169# TV cards
1170
1171# Brooktree 848/849/878/879 based TV cards
1172bktr* at pci? dev ? function ?
1173radio* at bktr?
1174
1175
1176# Bluetooth Controller and Device support
1177
1178# Bluetooth PCMCIA Controllers
1179bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
1180btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
1181
1182# Bluetooth SDIO Controllers
1183sbt* at sdmmc?
1184
1185# Bluetooth USB Controllers
1186ubt* at uhub? port ?
1187aubtfwl* at uhub? port ?
1188
1189# Bluetooth Device Hub
1190bthub* at bcsp?
1191bthub* at bt3c?
1192bthub* at btbc?
1193bthub* at btuart?
1194bthub* at sbt?
1195bthub* at ubt?
1196
1197# Bluetooth HID support
1198bthidev* at bthub?
1199
1200# Bluetooth Mouse
1201btms* at bthidev? reportid ?
1202wsmouse* at btms? mux 0
1203
1204# Bluetooth Keyboard
1205btkbd* at bthidev? reportid ?
1206wskbd* at btkbd? console ? mux 1
1207
1208# Bluetooth Apple Magic Mouse
1209btmagic* at bthub?
1210wsmouse* at btmagic? mux 0
1211
1212# Bluetooth Audio support
1213btsco* at bthub?
1214
1215
1216# SD/MMC/SDIO Controller and Device support
1217
1218# SD/MMC controller
1219sdhc*	at pci?		# SD Host Controller
1220rtsx*	at pci?		# Realtek RTS5209/RTS5229 Card Reader
1221sdhc*	at cardbus?	# SD Host Controller
1222sdmmc*	at sdhc?	# SD/MMC bus
1223sdmmc*	at rtsx?	# SD/MMC bus
1224
1225ld*	at sdmmc?
1226
1227
1228# Middle Digital, Inc. PCI-Weasel serial console board control
1229# devices (watchdog timer, etc.)
1230weasel* at pci?
1231
1232# Virtio devices
1233virtio* at pci? dev ? function ?	# Virtio PCI device
1234viomb*	at virtio?			# Virtio memory balloon device
1235ld*	at virtio?			# Virtio disk device
1236vioif*	at virtio?			# Virtio network device
1237viornd* at virtio?			# Virtio entropy device
1238vioscsi* at virtio?			# Virtio SCSI device
1239
1240# Pull in optional local configuration
1241cinclude "arch/amd64/conf/GENERIC.local"
1242
1243
1244# Pseudo-Devices
1245
1246pseudo-device	crypto			# /dev/crypto device
1247pseudo-device	swcrypto		# software crypto implementation
1248
1249# disk/mass storage pseudo-devices
1250pseudo-device	bio			# RAID control device driver
1251pseudo-device	ccd			# concatenated/striped disk devices
1252pseudo-device	cgd			# cryptographic disk devices
1253pseudo-device	raid			# RAIDframe disk driver
1254options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
1255#Options to enable various other RAIDframe RAID types.
1256#options 	RF_INCLUDE_EVENODD=1
1257#options 	RF_INCLUDE_RAID5_RS=1
1258#options 	RF_INCLUDE_PARITYLOGGING=1
1259#options 	RF_INCLUDE_CHAINDECLUSTER=1
1260#options 	RF_INCLUDE_INTERDECLUSTER=1
1261#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
1262#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
1263pseudo-device	fss			# file system snapshot device
1264pseudo-device	putter			# for puffs and pud
1265
1266pseudo-device	md			# memory disk device (ramdisk)
1267options 	MEMORY_DISK_HOOKS	# enable root ramdisk
1268options 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
1269
1270pseudo-device	vnd			# disk-like interface to files
1271options 	VND_COMPRESSION		# compressed vnd(4)
1272
1273
1274# network pseudo-devices
1275pseudo-device	bpfilter		# Berkeley packet filter
1276#pseudo-device	carp			# Common Address Redundancy Protocol
1277pseudo-device	ipfilter		# IP filter (firewall) and NAT
1278pseudo-device	loop			# network loopback
1279#pseudo-device	mpls			# MPLS pseudo-interface
1280pseudo-device	ppp			# Point-to-Point Protocol
1281pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
1282pseudo-device	sl			# Serial Line IP
1283pseudo-device	strip			# Starmode Radio IP (Metricom)
1284pseudo-device	irframetty		# IrDA frame line discipline
1285pseudo-device	tun			# network tunneling over tty
1286pseudo-device	tap			# virtual Ethernet
1287pseudo-device	gre			# generic L3 over IP tunnel
1288pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
1289#pseudo-device	faith			# IPv[46] tcp relay translation i/f
1290pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
1291pseudo-device	vlan			# IEEE 802.1q encapsulation
1292pseudo-device	bridge			# simple inter-network bridging
1293#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
1294pseudo-device	agr			# IEEE 802.3ad link aggregation
1295pseudo-device	l2tp			# L2TPv3 interface
1296#pseudo-device	pf			# PF packet filter
1297#pseudo-device	pflog			# PF log if
1298#pseudo-device	pfsync			# PF sync if
1299#pseudo-device	npf			# NPF packet filter
1300
1301#pseudo-device	canloop			# CAN loopback interface
1302
1303#
1304# accept filters
1305pseudo-device	accf_data		# "dataready" accept filter
1306pseudo-device	accf_http		# "httpready" accept filter
1307
1308# miscellaneous pseudo-devices
1309pseudo-device	pty			# pseudo-terminals
1310pseudo-device	sequencer		# MIDI sequencer
1311# rnd works; RND_COM does not on port i386 yet.
1312#options 	RND_COM			# use "com" randomness as well (BROKEN)
1313pseudo-device	clockctl		# user control of clock subsystem
1314pseudo-device	ksyms			# /dev/ksyms
1315pseudo-device	lockstat		# lock profiling
1316pseudo-device	bcsp			# BlueCore Serial Protocol
1317pseudo-device	btuart			# Bluetooth HCI UART (H4)
1318
1319# a pseudo device needed for Coda	# also needs CODA (above)
1320pseudo-device	vcoda			# coda minicache <-> venus comm.
1321
1322# a pseudo device needed for SMBFS
1323pseudo-device	nsmb			# experimental - SMB requester
1324
1325# wscons pseudo-devices
1326pseudo-device	wsmux			# mouse & keyboard multiplexor
1327pseudo-device	wsfont
1328
1329# pseudo audio device driver
1330pseudo-device	pad
1331
1332# userland interface to drivers, including autoconf and properties retrieval
1333pseudo-device	drvctl
1334
1335options 	FILEASSOC		# fileassoc(9) - needed by Veriexec
1336					# and PAX_SEGVGUARD
1337
1338# Veriexec
1339#
1340# a pseudo device needed for veriexec
1341pseudo-device	veriexec
1342#
1343# Uncomment the fingerprint methods below that are desired. Note that
1344# removing fingerprint methods will have almost no impact on the kernel
1345# code size.
1346#
1347options VERIFIED_EXEC_FP_SHA256
1348options VERIFIED_EXEC_FP_SHA384
1349options VERIFIED_EXEC_FP_SHA512
1350
1351options 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
1352options 	PAX_MPROTECT=1		# PaX mprotect(2) restrictions
1353options 	PAX_MPROTECT_DEBUG=1	# PaX mprotect debug
1354options 	PAX_ASLR=1		# PaX Address Space Layout Randomization
1355options 	PAX_ASLR_DEBUG=1	# PaX ASLR debug
1356