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