GENERIC revision 1.336
11.336Sjmcneill# $NetBSD: GENERIC,v 1.336 2011/08/30 12:13:25 jmcneill Exp $
21.1Sfvdl#
31.1Sfvdl# GENERIC machine description file
41.189Skiyohara#
51.1Sfvdl# This machine description file is used to generate the default NetBSD
61.1Sfvdl# kernel.  The generic kernel does not include all options, subsystems
71.1Sfvdl# and device drivers, but should be useful for most applications.
81.1Sfvdl#
91.1Sfvdl# The machine description file can be customised for your specific
101.1Sfvdl# machine to reduce the kernel size and improve its performance.
111.1Sfvdl#
121.1Sfvdl# For further information on compiling NetBSD kernels, see the config(8)
131.1Sfvdl# man page.
141.1Sfvdl#
151.1Sfvdl# For further information on hardware support for this architecture, see
161.1Sfvdl# the intro(4) man page.  For further information about kernel options
171.1Sfvdl# for this architecture, see the options(4) man page.  For an explanation
181.1Sfvdl# of each device driver in this file see the section 4 man page for the
191.1Sfvdl# device.
201.1Sfvdl
211.1Sfvdlinclude	"arch/amd64/conf/std.amd64"
221.1Sfvdl
231.215Sagcoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.1Sfvdl
251.336Sjmcneill#ident 		"GENERIC-$Revision: 1.336 $"
261.1Sfvdl
271.199Sadmaxusers	64		# estimated number of users
281.1Sfvdl
291.1Sfvdl# delay between "rebooting ..." message and hardware reset, in milliseconds
301.1Sfvdl#options 	CPURESET_DELAY=2000
311.1Sfvdl
321.1Sfvdl# This option allows you to force a serial console at the specified
331.1Sfvdl# I/O address.   see console(4) for details.
341.1Sfvdl#options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
351.1Sfvdl#	you don't want the option below ON iff you are using the
361.1Sfvdl#	serial console option of the new boot strap code.
371.1Sfvdl#options 	CONS_OVERRIDE	# Always use above! independent of boot info
381.1Sfvdl
391.1Sfvdl# The following options override the memory sizes passed in from the boot
401.1Sfvdl# block.  Use them *only* if the boot block is unable to determine the correct
411.1Sfvdl# values.  Note that the BIOS may *correctly* report less than 640k of base
421.1Sfvdl# memory if the extended BIOS data area is located at the top of base memory
431.1Sfvdl# (as is the case on most recent systems).
441.1Sfvdl#options 	REALBASEMEM=639		# size of base memory (in KB)
451.1Sfvdl#options 	REALEXTMEM=15360	# size of extended memory (in KB)
461.1Sfvdl
471.190Sjoerg# The following options limit the overall size of physical memory
481.190Sjoerg# and/or the maximum address used by the system.
491.190Sjoerg# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map
501.190Sjoerg# and can deal with holes in the memory layout.
511.198Smartti#options 	PHYSMEM_MAX_SIZE=64	# max size of physical memory (in MB)
521.190Sjoerg#options 	PHYSMEM_MAX_ADDR=2048	# don't use memory above this (in MB)
531.190Sjoerg
541.1Sfvdl# Standard system options
551.1Sfvdl
561.1Sfvdloptions 	INSECURE	# disable kernel security levels - X needs this
571.1Sfvdl
581.1Sfvdloptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
591.1Sfvdloptions 	NTP		# NTP phase/frequency locked loop
601.1Sfvdl
611.1Sfvdloptions 	KTRACE		# system call tracing via ktrace(1)
621.1Sfvdl
631.228Srmind# Note: SysV IPC parameters could be changed dynamically, see sysctl(8).
641.1Sfvdloptions 	SYSVMSG		# System V-like message queues
651.1Sfvdloptions 	SYSVSEM		# System V-like semaphores
661.1Sfvdloptions 	SYSVSHM		# System V-like memory sharing
671.330Sjakllschoptions 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
681.1Sfvdl
691.295Stsutsuioptions 	MODULAR		# new style module(7) framework
701.1Sfvdloptions 	USERCONF	# userconf(4) support
711.1Sfvdl#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
721.28Satatatoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
731.1Sfvdl
741.313Sjruoho# CPU features
751.318Sjruohoacpicpu*	at cpu?		# ACPI CPU (including frequency scaling)
761.313Sjruohocoretemp*	at cpu?		# Intel on-die thermal sensor
771.313Sjruohoest0		at cpu0		# Intel Enhanced SpeedStep (non-ACPI)
781.316Sjruoho#odcm0		at cpu0		# On-demand clock modulation
791.314Sjruohopowernow0	at cpu0		# AMD PowerNow! and Cool'n'Quiet (non-ACPI)
801.310Sjruoho
811.237Sad# Alternate buffer queue strategies for better responsiveness under high
821.237Sad# disk I/O load.
831.134Sxtraeme#options 	BUFQ_READPRIO
841.237Sadoptions 	BUFQ_PRIOCSCAN
851.1Sfvdl
861.1Sfvdl# Diagnostic/debugging support options
871.322Sbouyeroptions 	DIAGNOSTIC	# expensive kernel consistency checks
881.322Sbouyer				# XXX to be commented out on release branch
891.1Sfvdl#options 	DEBUG		# expensive debugging checks/support
901.240Sperry#options 	LOCKDEBUG	# expensive locking checks/support
911.131Sbouyer#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
921.1Sfvdl
931.1Sfvdl#
941.1Sfvdl# Because gcc omits the frame pointer for any -O level, the line below
951.1Sfvdl# is needed to make backtraces in DDB work.
961.1Sfvdl#
971.319Sryomakeoptions	COPTS="-O2 -fno-omit-frame-pointer"
981.168Sjoergoptions 	DDB		# in-kernel debugger
991.202Snjoly#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
1001.168Sjoergoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
1011.1Sfvdl#options 	KGDB		# remote debugger
1021.1Sfvdl#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
1031.319Sryo#makeoptions	DEBUG="-g"	# compile full symbol table
1041.169Sdsl#options 	SYSCALL_STATS	# per syscall counts
1051.169Sdsl#options 	SYSCALL_TIMES	# per syscall times
1061.169Sdsl#options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
1071.1Sfvdl
1081.1Sfvdl# Compatibility options
1091.42Ssimonboptions 	COMPAT_15	# compatibility with NetBSD 1.5,
1101.42Ssimonboptions 	COMPAT_16	# NetBSD 1.6,
1111.42Ssimonboptions 	COMPAT_20	# NetBSD 2.0,
1121.145Schristosoptions 	COMPAT_30	# NetBSD 3.0,
1131.280Sdhollandoptions 	COMPAT_40	# NetBSD 4.0,
1141.280Sdhollandoptions 	COMPAT_50	# NetBSD 5.0 compatibility,
1151.1Sfvdloptions 	COMPAT_43	# and 4.3BSD
1161.125Stls#options 	COMPAT_386BSD_MBRPART # recognize old partition ID
1171.1Sfvdl
1181.167Snjolyoptions 	COMPAT_OSSAUDIO
1191.1Sfvdloptions 	COMPAT_NETBSD32
1201.329Sjakllschoptions 	COMPAT_LINUX
1211.329Sjakllschoptions 	COMPAT_LINUX32	# req. COMPAT_LINUX and COMPAT_NETBSD32
1221.329Sjakllschoptions 	EXEC_ELF32
1231.168Sjoergoptions 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
1241.1Sfvdl
1251.193Sjoerg# Wedge support
1261.193Sjoergoptions 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
1271.193Sjoergoptions 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
1281.193Sjoerg# The following two options can break /etc/fstab, so handle with care
1291.193Sjoerg#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
1301.193Sjoerg#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
1311.193Sjoerg
1321.1Sfvdlfile-system 	FFS		# UFS
1331.307Sjymfile-system	MFS		# memory file system
1341.1Sfvdlfile-system 	NFS		# Network File System client
1351.305Sjymfile-system	TMPFS		# Efficient memory file-system
1361.329Sjakllschfile-system	EXT2FS		# second extended file system (linux)
1371.329Sjakllschfile-system	LFS		# log-structured file system
1381.329Sjakllschfile-system	NTFS		# Windows/NT file system (experimental)
1391.329Sjakllschfile-system	CD9660		# ISO 9660 + Rock Ridge file system
1401.329Sjakllschfile-system	MSDOSFS		# MS-DOS file system
1411.329Sjakllschfile-system	FDESC		# /dev/fd
1421.329Sjakllschfile-system	KERNFS		# /kern
1431.329Sjakllschfile-system	NULLFS		# loopback file system
1441.329Sjakllschfile-system	OVERLAY		# overlay file system
1451.329Sjakllschfile-system	PROCFS		# /proc
1461.329Sjakllschfile-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
1471.329Sjakllschfile-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
1481.329Sjakllschfile-system	UMAPFS		# NULLFS + uid and gid remapping
1491.329Sjakllschfile-system	UNION		# union file system
1501.329Sjakllschfile-system	CODA		# Coda File System; also needs vcoda (below)
1511.329Sjakllschfile-system	PTYFS		# /dev/ptm support
1521.305Sjym#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
1531.305Sjym#file-system	HFS		# experimental - Apple HFS+ (read-only)
1541.305Sjym#file-system	NILFS		# experimental - NTT's NiLFS(2)
1551.1Sfvdl
1561.1Sfvdl# File system options
1571.317Sbouyeroptions 	QUOTA		# legacy UFS quotas
1581.317Sbouyeroptions 	QUOTA2		# new, in-filesystem UFS quotas
1591.1Sfvdl#options 	FFS_EI		# FFS Endian Independent support
1601.217Ssimonboptions 	WAPBL		# File system journaling support - Experimental
1611.114Sperry# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
1621.114Sperry# It is not recommended for general use.
1631.198Smartti#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
1641.1Sfvdloptions 	NFSSERVER	# Network File System server
1651.1Sfvdl#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1661.1Sfvdl				# immutable) behave as system flags.
1671.76Stsutsui#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1681.1Sfvdl
1691.1Sfvdl# Networking options
1701.1Sfvdl#options 	GATEWAY		# packet forwarding
1711.1Sfvdloptions 	INET		# IP + ICMP + TCP + UDP
1721.1Sfvdloptions 	INET6		# IPV6
1731.134Sxtraeme#options 	IPSEC		# IP security
1741.134Sxtraeme#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1751.134Sxtraeme#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
1761.1Sfvdl#options 	IPSEC_DEBUG	# debug for IP security
1771.319Sryo#options 	MPLS		# MultiProtocol Label Switching (needs ifmpls)
1781.134Sxtraeme#options 	MROUTING	# IP multicast routing
1791.134Sxtraeme#options 	PIM		# Protocol Independent Multicast
1801.154Sadrianp#options 	ISO,TPIP	# OSI
1811.1Sfvdl#options 	EON		# OSI tunneling over IP
1821.1Sfvdloptions 	NETATALK	# AppleTalk networking protocols
1831.1Sfvdloptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1841.1Sfvdloptions 	PPP_DEFLATE	# Deflate compression support for PPP
1851.1Sfvdloptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1861.1Sfvdloptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1871.1Sfvdloptions 	IPFILTER_LOG	# ipmon(8) log support
1881.106Schristosoptions 	IPFILTER_LOOKUP	# ippool(8) support
1891.278Smrgoptions 	IPFILTER_COMPAT # Compat for IP-Filter
1901.1Sfvdl#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1911.1Sfvdl#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1921.1Sfvdl
1931.27Sabs#options 	ALTQ		# Manipulate network interfaces' output queues
1941.27Sabs#options 	ALTQ_BLUE	# Stochastic Fair Blue
1951.27Sabs#options 	ALTQ_CBQ	# Class-Based Queueing
1961.27Sabs#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
1971.27Sabs#options 	ALTQ_FIFOQ	# First-In First-Out Queue
1981.27Sabs#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
1991.27Sabs#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
2001.27Sabs#options 	ALTQ_LOCALQ	# Local queueing discipline
2011.27Sabs#options 	ALTQ_PRIQ	# Priority Queueing
2021.27Sabs#options 	ALTQ_RED	# Random Early Detection
2031.27Sabs#options 	ALTQ_RIO	# RED with IN/OUT
2041.27Sabs#options 	ALTQ_WFQ	# Weighted Fair Queueing
2051.27Sabs
2061.1Sfvdl# These options enable verbose messages for several subsystems.
2071.1Sfvdl# Warning, these may compile large string tables into the kernel!
2081.210Sad#options 	ACPIVERBOSE	# verbose ACPI configuration messages
2091.210Sad#options 	MIIVERBOSE	# verbose PHY autoconfig messages
2101.210Sad#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
2111.1Sfvdl#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
2121.1Sfvdl#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
2131.1Sfvdloptions 	SCSIVERBOSE	# human readable SCSI error messages
2141.210Sad#options 	USBVERBOSE	# verbose USB device autoconfig messages
2151.1Sfvdl
2161.1Sfvdloptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
2171.1Sfvdl
2181.1Sfvdl#
2191.1Sfvdl# wscons options
2201.1Sfvdl#
2211.1Sfvdl# builtin terminal emulations
2221.1Sfvdl#options 	WSEMUL_SUN		# sun terminal emulation
2231.1Sfvdloptions 	WSEMUL_VT100		# VT100 / VT220 emulation
2241.1Sfvdl# different kernel output - see dev/wscons/wsdisplayvar.h
2251.1Sfvdloptions 	WS_KERNEL_FG=WSCOL_GREEN
2261.1Sfvdl#options 	WS_KERNEL_BG=WSCOL_BLACK
2271.1Sfvdl# compatibility to other console drivers
2281.1Sfvdloptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2291.1Sfvdloptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2301.1Sfvdloptions 	WSDISPLAY_COMPAT_USL		# VT handling
2311.1Sfvdloptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2321.328Sjmcneill# don't attach pckbd as the console if no PS/2 keyboard is found
2331.328Sjmcneilloptions 	PCKBD_CNATTACH_MAY_FAIL
2341.93Sdrochner# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
2351.1Sfvdl#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
2361.1Sfvdl# allocate a number of virtual screens at autoconfiguration time
2371.1Sfvdl#options 	WSDISPLAY_DEFAULTSCREENS=4
2381.1Sfvdl# use a large software cursor that doesn't blink
2391.1Sfvdloptions 	PCDISPLAY_SOFTCURSOR
2401.1Sfvdl# modify the screen type of the console; defaults to "80x25"
2411.1Sfvdl#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
2421.1Sfvdl# work around a hardware bug that loaded fonts don't work; found on ATI cards
2431.1Sfvdl#options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
2441.68Srpaulo# console scrolling support.
2451.68Srpaulooptions 	WSDISPLAY_SCROLLSUPPORT
2461.1Sfvdl# enable VGA raster mode capable of displaying multilingual text on console
2471.1Sfvdl#options 	VGA_RASTERCONSOLE
2481.268Sahoka# enable splash screen support; requires genfb or radeonfb
2491.319Sryo#options 	SPLASHSCREEN
2501.1Sfvdl
2511.1Sfvdl# Kernel root file system and dump configuration.
2521.1Sfvdlconfig		netbsd	root on ? type ?
2531.1Sfvdl#config		netbsd	root on sd0a type ffs
2541.1Sfvdl#config		netbsd	root on ? type nfs
2551.1Sfvdl
2561.1Sfvdl#
2571.1Sfvdl# Device configuration
2581.1Sfvdl#
2591.1Sfvdl
2601.151Sbriggs#IPMI support
2611.222Sbouyeripmi0		at mainbus?
2621.151Sbriggs
2631.130Sbouyer# ACPI will be used if present. If not it will fall back to MPBIOS
2641.319Sryoacpi0		at mainbus0
2651.130Sbouyeroptions 	ACPI_SCANPCI		# find PCI roots using ACPI
2661.189Skiyoharaoptions 	MPBIOS			# configure CPUs and APICs using MPBIOS
2671.72Srpaulooptions 	MPBIOS_SCANPCI		# MPBIOS configures PCI roots
2681.50Ssekiya#options 	PCI_INTR_FIXUP		# PCI interrupt routing via ACPI
2691.290Sdholland#options 	PCI_BUS_FIXUP		# fixup PCI bus numbering
2701.290Sdholland#options 	PCI_ADDR_FIXUP		# fixup PCI I/O addresses
2711.6Skochi#options 	ACPI_ACTIVATE_DEV	# If set, activate inactive devices
2721.218Sjoergoptions 	VGA_POST		# in-kernel support for VGA POST
2731.4Schristos
2741.4Schristos# ACPI devices
2751.319Sryoacpiacad*	at acpi?		# ACPI AC Adapter
2761.319Sryoacpibat*	at acpi?		# ACPI Battery
2771.319Sryoacpibut*	at acpi?		# ACPI Button
2781.213Sceggeracpidalb*	at acpi?		# Direct Application Launch Button
2791.296Sjruohoacpiec* 	at acpi?		# ACPI Embedded Controller (late)
2801.319Sryoacpiecdt*	at acpi?		# ACPI Embedded Controller (early)
2811.319Sryoacpifan*	at acpi?		# ACPI Fan
2821.319Sryoacpilid*	at acpi?		# ACPI Lid Switch
2831.296Sjruoho#acpipmtr*	at acpi?		# ACPI Power Meter (experimental)
2841.264Spgoyette#acpismbus*	at acpi?		# ACPI SMBus CMI (experimental)
2851.168Sjoergacpitz* 	at acpi?		# ACPI Thermal Zone
2861.286Sgsutreacpivga*	at acpi?		# ACPI Display Adapter
2871.286Sgsutreacpiout*	at acpivga?		# ACPI Display Output Device
2881.299Sjmcneillacpiwdrt*	at acpi?		# ACPI Watchdog Resource Table
2891.257Sjmcneillacpiwmi*	at acpi?		# ACPI WMI Mapper
2901.4Schristos
2911.4Schristos# Mainboard devices
2921.266Scnstaibs*		at acpi?		# ASUSTeK AI Booster hardware monitor
2931.203Sjmcneillasus*		at acpi?		# ASUS hotkeys
2941.168Sjoergattimer*	at acpi?		# AT Timer
2951.319Sryo#com*		at acpi?		# Serial communications interface
2961.319Sryo#fdc*		at acpi?		# Floppy disk controller
2971.289Sgsutrefujbp*		at acpi?		# Fujitsu Brightness & Pointer
2981.289Sgsutrefujhk*		at acpi?		# Fujitsu Hotkeys
2991.323Sjruoho#hpacel*	at acpi?		# HP 3D DriveGuard accelerometer
3001.321Sjruoho#hpqlb*		at acpi?		# HP Quick Launch Buttons
3011.320Sjruohohpet*		at acpihpetbus?		# High Precision Event Timer (table)
3021.320Sjruohohpet*		at acpinodebus?		# High Precision Event Timer (device)
3031.168Sjoergjoy*		at acpi?		# Joystick/Game port
3041.319Sryo#lpt*		at acpi?		# Parallel port
3051.168Sjoergmpu*		at acpi?		# Roland MPU-401 MIDI UART
3061.319Sryopckbc*		at acpi?		# PC keyboard controller
3071.319Sryopcppi*		at acpi?		# AT-style speaker sound
3081.188Sjmcneillsony*		at acpi?		# Sony Notebook Controller
3091.319Sryospic*		at acpi?		# Sony Programmable I/O Controller
3101.319Sryowsmouse*	at spic?		# mouse
3111.186Sjmcneillthinkpad*	at acpi?		# IBM/Lenovo Thinkpad hotkeys
3121.319Sryoug*		at acpi?		# Abit uGuru Hardware monitor
3131.254Sjmcneillwb*		at acpi?		# Winbond W83L518D SD/MMC reader
3141.256Sjmcneillsdmmc*		at wb?			# SD/MMC bus
3151.273Sjruohowmidell*	at acpiwmibus?		# Dell WMI mappings
3161.326Sjakllschwmieeepc*	at acpiwmibus?		# Asus Eee PC WMI mappings
3171.321Sjruohowmihp*		at acpiwmibus?		# HP WMI mappings
3181.319Sryowmimsi* 	at acpiwmibus?		# MSI WMI mappings
3191.1Sfvdl
3201.1Sfvdl# Basic Bus Support
3211.1Sfvdl
3221.1Sfvdl# PCI bus support
3231.1Sfvdlpci*	at mainbus? bus ?
3241.1Sfvdlpci*	at pchb? bus ?
3251.1Sfvdlpci*	at ppb? bus ?
3261.1Sfvdl
3271.1Sfvdl# PCI bridges
3281.1Sfvdlpchb*	at pci? dev ? function ?	# PCI-Host bridges
3291.1Sfvdlpcib*	at pci? dev ? function ?	# PCI-ISA bridges
3301.1Sfvdlppb*	at pci? dev ? function ?	# PCI-PCI bridges
3311.1Sfvdl# XXX 'puc's aren't really bridges, but there's no better place for them here
3321.1Sfvdlpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
3331.1Sfvdl
3341.134Sxtraeme#amdpcib* at pci? dev ? function ?	# AMD 8111 PCI-ISA w/ HPET
3351.319Sryo#hpet*	at amdpcib?
3361.132Snjoly
3371.333Smbalmer#pwdog*	at pci? dev ? function ?	# QUANCOM PWDOG1
3381.333Smbalmer
3391.283Sjakllschichlpcib* at pci? dev ? function ?	# Intel ICH PCI-LPC w/ timecounter,
3401.283Sjakllsch					# watchdog and Speedstep and HPET
3411.283Sjakllschfwhrng* at ichlpcib?		# Intel 82802 FWH Random Number Generator
3421.319Sryo#hpet*	at ichlpcib?
3431.160Sxtraeme
3441.319Sryoaapic*	at pci? dev ? function ?	# AMD 8131 IO apic
3451.1Sfvdl
3461.319Sryoagp*	at pchb?
3471.1Sfvdl
3481.1Sfvdl# ISA bus support
3491.1Sfvdlisa0	at mainbus?
3501.1Sfvdlisa0	at pcib?
3511.319Sryo#isa0	at amdpcib?
3521.319Sryoisa0	at ichlpcib?
3531.1Sfvdl
3541.1Sfvdl# CardBus bridge support
3551.168Sjoergcbb*		at pci? dev ? function ?
3561.168Sjoergcardslot*	at cbb?
3571.1Sfvdl
3581.1Sfvdl# CardBus bus support
3591.168Sjoergcardbus*	at cardslot?
3601.168Sjoergpcmcia* 	at cardslot?
3611.1Sfvdl
3621.1Sfvdl# Console Devices
3631.1Sfvdl
3641.1Sfvdl# wscons
3651.1Sfvdlpckbc0		at isa?			# pc keyboard controller
3661.1Sfvdlpckbd*		at pckbc?		# PC keyboard
3671.1Sfvdlpms*		at pckbc?		# PS/2 mouse for wsmouse
3681.1Sfvdl#options 	PMS_DISABLE_POWERHOOK	# Disable PS/2 reset on resume
3691.168Sjoergoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
3701.235Sjmcneilloptions 	PMS_ELANTECH_TOUCHPAD	# Enable support for Elantech Touchpads
3711.1Sfvdlvga*		at pci? dev ? function ?
3721.238Sjmcneillgenfb*		at pci? dev ? function ?
3731.309Sjmcneilloptions 	VCONS_DRAW_INTR
3741.1Sfvdlwsdisplay*	at vga? console ?
3751.238Sjmcneillwsdisplay*	at wsemuldisplaydev?
3761.1Sfvdlwskbd*		at pckbd? console ?
3771.1Sfvdlwsmouse*	at pms? mux 0
3781.1Sfvdl
3791.45Scubeattimer0	at isa?
3801.1Sfvdlpcppi0		at isa?
3811.1Sfvdlsysbeep0	at pcppi?
3821.1Sfvdl
3831.249Schristos# DRI driver
3841.302Sjmcneilli915drm*	at drm?		# Intel i915, i945 DRM driver
3851.302Sjmcneillmach64drm*	at drm?		# mach64 (3D Rage Pro, Rage) DRM driver
3861.319Sryomgadrm* 	at drm?		# Matrox G[24]00, G[45]50 DRM driver
3871.302Sjmcneillr128drm*	at drm?		# ATI Rage 128 DRM driver
3881.302Sjmcneillradeondrm*	at drm?		# ATI Radeon DRM driver
3891.302Sjmcneillsavagedrm*	at drm?		# S3 Savage DRM driver
3901.319Sryosisdrm* 	at drm?		# SiS DRM driver
3911.302Sjmcneilltdfxdrm*	at drm?		# 3dfx (voodoo) DRM driver
3921.249Schristos
3931.21Sjonathan# Cryptographic Devices
3941.21Sjonathan
3951.21Sjonathan# PCI cryptographic devices
3961.21Sjonathanhifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
3971.21Sjonathanubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
3981.21Sjonathan
3991.1Sfvdl# Serial Devices
4001.1Sfvdl
4011.1Sfvdl# PCI serial interfaces
4021.1Sfvdlcom*	at puc? port ?			# 16x50s on "universal" comm boards
4031.1Sfvdlcy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
4041.1Sfvdlcz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
4051.1Sfvdl
4061.1Sfvdl# PCMCIA serial interfaces
4071.168Sjoergcom*	at pcmcia? function ?		# Modems and serial cards
4081.1Sfvdl
4091.181Sjmcneillpcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
4101.168Sjoergcom*	at pcmcom? slave ?		# ...and the slave devices
4111.1Sfvdl
4121.1Sfvdl# CardBus serial interfaces
4131.168Sjoergcom*	at cardbus? function ?	# Modems and serial cards
4141.1Sfvdl
4151.1Sfvdl# ISA serial interfaces
4161.1Sfvdl#options 	COM_HAYESP		# adds Hayes ESP serial board support
4171.1Sfvdlcom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
4181.1Sfvdlcom1	at isa? port 0x2f8 irq 3
4191.1Sfvdl
4201.1Sfvdl# Parallel Printer Interfaces
4211.1Sfvdl
4221.1Sfvdl# PCI parallel printer interfaces
4231.1Sfvdllpt*	at puc? port ?			# || ports on "universal" comm boards
4241.1Sfvdl
4251.1Sfvdl# ISA parallel printer interfaces
4261.1Sfvdllpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
4271.1Sfvdllpt1	at isa? port 0x278
4281.1Sfvdl
4291.1Sfvdl# Hardware monitors
4301.1Sfvdl
4311.334Sjakllschamdtemp* at pchb?			# AMD CPU Temperature sensors
4321.205Scegger
4331.267Scnst# Winbond LPC Super I/O
4341.267Scnst#wbsio*	at isa? port 0x2e
4351.267Scnst#wbsio*	at isa? port 0x4e
4361.267Scnst
4371.304Shannken# IBM Hawk Integrated Systems Management Processor
4381.304Shannken#ibmhawk0	at iic? addr 0x37
4391.304Shannken
4401.1Sfvdl# LM7[89] and compatible hardware monitors
4411.265Spgoyette# Use flags to select temp sensor type (see lm(4) man page for details)
4421.265Spgoyette#lm0	at isa?	port 0x290 flags 0x0	# other common ports: 0x280, 0x310
4431.267Scnst#lm*	at wbsio?
4441.1Sfvdl
4451.146Sblymn# SMSC LPC47B397 hardware monitor functions
4461.319Sryo#smsc0	at isa? port 0x02e
4471.146Sblymn
4481.269Spgoyette# SMSC LPC47M192 hardware monitor
4491.269Spgoyette#smscmon*	at iic? addr 0x2c
4501.269Spgoyette#smscmon*	at iic? addr 0x2d	# (alternate address)
4511.269Spgoyette
4521.87Stls# AMD 768 and 8111 power/ACPI controllers
4531.87Stlsamdpm*	at pci? dev ? function ?	# RNG and SMBus 1.0 interface
4541.134Sxtraeme#iic*	at amdpm?			# sensors below are on this bus
4551.153Skiyohara
4561.153Skiyohara# NVIDIA nForce2/3/4 SMBus controller
4571.319Sryonfsmbc* at pci? dev ? function ?
4581.153Skiyoharanfsmb*	at nfsmbc?
4591.153Skiyoharaiic*	at nfsmb?
4601.153Skiyohara
4611.195Sjmmv# Intel PIIX4 power management controllers
4621.195Sjmmvpiixpm* at pci? dev ? function ?	# PIIX4 compatible PM controller
4631.195Sjmmviic*	at piixpm?			# SMBus on PIIX4
4641.195Sjmmv
4651.165Schristos# Intel ICH SMBus controller
4661.319Sryoichsmb* at pci? dev ? function ?
4671.165Schristosiic*	at ichsmb?
4681.165Schristos
4691.229Spgoyette# Thermal monitor and fan controller
4701.229Spgoyette#dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
4711.229Spgoyette#dbcool* at iic? addr 0x2D		# Tyan S2881
4721.229Spgoyette#dbcool* at iic? addr 0x2E		# Tyan S2882-D
4731.87Stls
4741.306Sjruoho# IBM Thinkpad Active Protection System
4751.319Sryo#aps0	at isa? port 0x1600
4761.306Sjruoho
4771.204Sxtraeme# Fintek Super I/O with hardware monitor
4781.204Sxtraeme#finsio0 	at isa? port 0x4e
4791.204Sxtraeme
4801.192Sxtraeme# iTE IT87xxF Super I/O with watchdog and sensors support
4811.175Sxtraeme#itesio0 	at isa? port 0x2e
4821.96Sxtraeme
4831.124Sxtraeme# Abit uGuru Hardware system monitor
4841.134Sxtraeme#ug0	at isa? port 0xe0
4851.124Sxtraeme
4861.155Stnn# Serial Presence Detect capable memory modules
4871.155Stnn#spdmem* at iic? addr 0x50
4881.155Stnn#spdmem* at iic? addr 0x51
4891.155Stnn#spdmem* at iic? addr 0x52
4901.155Stnn#spdmem* at iic? addr 0x53
4911.284Schs#spdmem* at iic? addr 0x54
4921.284Schs#spdmem* at iic? addr 0x55
4931.284Schs#spdmem* at iic? addr 0x56
4941.284Schs#spdmem* at iic? addr 0x57
4951.155Stnn
4961.1Sfvdl# I2O devices
4971.1Sfvdliop*	at pci? dev ? function ?	# I/O processor
4981.1Sfvdliopsp*	at iop? tid ?			# SCSI/FC-AL ports
4991.1Sfvdlld*	at iop? tid ?			# block devices
5001.1Sfvdl# XXX dpti.c wants a processor type that is not assigned for x86-64
5011.1Sfvdl#dpti*	at iop? tid 0			# DPT/Adaptec control interface
5021.1Sfvdl
5031.1Sfvdl
5041.1Sfvdl# SCSI Controllers and Devices
5051.1Sfvdl
5061.1Sfvdl# PCI SCSI controllers
5071.1Sfvdladv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
5081.1Sfvdladw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
5091.1Sfvdlahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
5101.15Sfvdlahd*	at pci? dev ? function ?	# Adaptec aic790x SCSI
5111.1Sfvdlbha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
5121.1Sfvdldpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
5131.1Sfvdliha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
5141.1Sfvdlisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
5151.122Sbouyermfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
5161.1Sfvdlmly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
5171.1Sfvdlmpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030
5181.1Sfvdlpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
5191.1Sfvdlsiop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
5201.7Sbouyeresiop*	at pci? dev ? function ?	# Symbios 53c875 and newer SCSI
5211.1Sfvdl#options 	SIOP_SYMLED		# drive the act. LED in software
5221.1Sfvdltrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
5231.1Sfvdl
5241.1Sfvdl# PCMCIA SCSI controllers
5251.168Sjoergaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
5261.168Sjoergesp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
5271.168Sjoergspc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
5281.1Sfvdl
5291.1Sfvdl# CardBus SCSI cards
5301.168Sjoergadv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
5311.168Sjoergahc*	at cardbus? function ?	# Adaptec ADP-1480
5321.1Sfvdl
5331.1Sfvdl# SCSI bus support
5341.1Sfvdlscsibus* at scsi?
5351.1Sfvdl
5361.1Sfvdl# SCSI devices
5371.1Sfvdlsd*	at scsibus? target ? lun ?	# SCSI disk drives
5381.1Sfvdlst*	at scsibus? target ? lun ?	# SCSI tape drives
5391.1Sfvdlcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
5401.1Sfvdlch*	at scsibus? target ? lun ?	# SCSI autochangers
5411.1Sfvdlses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
5421.1Sfvdlss*	at scsibus? target ? lun ?	# SCSI scanners
5431.1Sfvdluk*	at scsibus? target ? lun ?	# SCSI unknown
5441.1Sfvdl
5451.1Sfvdl
5461.1Sfvdl# RAID controllers and devices
5471.144Sbriggsaac*	at pci? dev ? function ?	# Adaptec AAC family
5481.54Smarttiamr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
5491.319Sryoarcmsr* at pci? dev ? function ?	# Areca SATA RAID controllers
5501.1Sfvdlcac*	at pci? dev ? function ?	# Compaq PCI array controllers
5511.91Smartticiss*	at pci? dev ? function ?	# HP Smart Array controllers
5521.1Sfvdlicp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
5531.1Sfvdlmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
5541.1Sfvdltwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
5551.100Sbouyertwa*	at pci? dev ? function ?	# 3ware Escalade 9xxx RAID controllers
5561.1Sfvdl
5571.144Sbriggsld*	at aac? unit ?
5581.54Smarttild*	at amr? unit ?
5591.1Sfvdlld*	at cac? unit ?
5601.1Sfvdlld*	at icp? unit ?
5611.1Sfvdlld*	at twe? unit ?
5621.100Sbouyerld*	at twa? unit ?
5631.1Sfvdlld*	at mlx? unit ?
5641.1Sfvdl
5651.1Sfvdlicpsp*	at icp? unit ?			# SCSI pass-through
5661.1Sfvdl
5671.1Sfvdl# IDE and related devices
5681.1Sfvdl# PCI IDE controllers - see pciide(4) for supported hardware.
5691.1Sfvdl# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
5701.1Sfvdl# how to set up DMA modes for this chip. This may work, or may cause
5711.1Sfvdl# a machine hang with some controllers.
5721.12Sbouyerpciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
5731.12Sbouyeracardide* at pci? dev ? function ?	# Acard IDE controllers
5741.12Sbouyeraceride* at pci? dev ? function ?	# Acer Lab IDE controllers
5751.120Sbouyerahcisata* at pci? dev ? function ?	# AHCI SATA controllers
5761.20Sthorpejartsata* at pci? dev ? function ?	# Intel i31244 SATA controller
5771.12Sbouyercmdide* at pci? dev ? function ?	# CMD tech IDE controllers
5781.12Sbouyercypide* at pci? dev ? function ?	# Cypress IDE controllers
5791.12Sbouyerhptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
5801.114Sperryiteide* at pci? dev ? function ?	# IT Express IDE controllers
5811.52Saugustssixpide* at pci? dev ? function ?	# ATI IXP IDE controllers
5821.319Sryojmide*	at pci? dev ? function ?	# JMicron PCI-e PATA/SATA controllers
5831.143Sbouyerahcisata* at jmide?
5841.246Skiyoharamvsata* at pci? dev ? function ?	# Marvell Hercules-I/II
5851.12Sbouyeroptiide* at pci? dev ? function ?	# Opti IDE controllers
5861.12Sbouyerpiixide* at pci? dev ? function ?	# Intel IDE controllers
5871.12Sbouyerpdcide* at pci? dev ? function ?	# Promise IDE controllers
5881.32Sbouyerpdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
5891.19Sthorpejsatalink* at pci? dev ? function ?	# SiI SATALink controllers
5901.319Sryosiisata* at pci? dev ? function ?	# SiI SteelVine controllers
5911.12Sbouyersiside* at pci? dev ? function ?	# SiS IDE controllers
5921.319Sryoslide*	at pci? dev ? function ?	# Symphony Labs IDE controllers
5931.94Sjonathansvwsata* at pci? dev ? function ?	# ServerWorks SATA controllers
5941.253Schristostoshide* at pci? dev ? function ?	# TOSHIBA PICCOLO controllers
5951.12Sbouyerviaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
5961.1Sfvdl
5971.1Sfvdl# PCMCIA IDE controllers
5981.168Sjoergwdc*	at pcmcia? function ?
5991.168Sjoerg
6001.181Sjmcneill# CardBus IDE controllers
6011.181Sjmcneillnjata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
6021.245Skiyoharasiisata* at cardbus? function ?		# SiI SteelVine controllers
6031.181Sjmcneill
6041.1Sfvdl# ISA ST506, ESDI, and IDE controllers
6051.1Sfvdl# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
6061.1Sfvdl# fall back to 16bits I/O if 32bits I/O are not functional).
6071.1Sfvdl# Some controllers pass the initial 32bit test, but will fail later.
6081.1Sfvdlwdc0	at isa? port 0x1f0 irq 14 flags 0x00
6091.1Sfvdlwdc1	at isa? port 0x170 irq 15 flags 0x00
6101.1Sfvdl
6111.13Slukem# ATA (IDE) bus support
6121.13Slukematabus* at ata?
6131.290Sdhollandoptions 	ATADEBUG
6141.11Sbouyer
6151.1Sfvdl# IDE drives
6161.1Sfvdl# Flags are used only with controllers that support DMA operations
6171.1Sfvdl# and mode settings (e.g. some pciide controllers)
6181.1Sfvdl# The lowest order four bits (rightmost digit) of the flags define the PIO
6191.1Sfvdl# mode to use, the next set of four bits the DMA mode and the third set the
6201.1Sfvdl# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
6211.1Sfvdl# to use, and the last bit must be 1 for this setting to be used.
6221.1Sfvdl# For DMA and UDMA, 0xf (1111) means 'disable'.
6231.1Sfvdl# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
6241.1Sfvdl# (0xc=1100, 0xa=1010, 0xf=1111)
6251.1Sfvdl# 0x0000 means "use whatever the drive claims to support".
6261.11Sbouyerwd*	at atabus? drive ? flags 0x0000
6271.1Sfvdl
6281.1Sfvdl# ATAPI bus support
6291.1Sfvdlatapibus* at atapi?
6301.1Sfvdl
6311.168Sjoerg
6321.189Skiyohara# ATA RAID configuration support, as found on some Promise controllers.
6331.189Skiyoharapseudo-device ataraid
6341.319Sryold*	at ataraid? vendtype ? unit ?
6351.15Sfvdl
6361.1Sfvdl# ATAPI devices
6371.1Sfvdl# flags have the same meaning as for IDE drives.
6381.1Sfvdlcd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
6391.1Sfvdlsd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
6401.1Sfvdlst*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
6411.1Sfvdluk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
6421.1Sfvdl
6431.1Sfvdl
6441.1Sfvdl# Miscellaneous mass storage devices
6451.1Sfvdl
6461.1Sfvdl# ISA floppy
6471.1Sfvdlfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
6481.1Sfvdl#fdc1	at isa? port 0x370 irq ? drq ?
6491.1Sfvdlfd*	at fdc? drive ?			# the drives themselves
6501.1Sfvdl# some machines need you to do this instead of fd*
6511.1Sfvdl#fd0	at fdc0 drive 0
6521.1Sfvdl
6531.1Sfvdl# Network Interfaces
6541.1Sfvdl
6551.1Sfvdl# PCI network interfaces
6561.239Sceggerage*	at pci? dev ? function ?	# Attansic/Atheros L1 Gigabit Ethernet
6571.312Sjmcneillalc*	at pci? dev ? function ?	# Attansic/Atheros L1C/L2C Ethernet
6581.272Sdhollandale*	at pci? dev ? function ?	# Attansic/Atheros L1E Ethernet
6591.1Sfvdlan*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
6601.58Ssekiyaath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
6611.168Sjoergatw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
6621.319Sryobce*	at pci? dev ? function ?	# Broadcom 440x 10/100 Ethernet
6631.319Sryobge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
6641.319Sryobnx*	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
6651.300Spookabwi*	at pci? dev ? function ?	# Broadcom BCM43xx wireless
6661.71Strondge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
6671.1Sfvdlen*	at pci? dev ? function ?	# ENI/Adaptec ATM
6681.1Sfvdlep*	at pci? dev ? function ?	# 3Com 3c59x
6691.1Sfvdlepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
6701.1Sfvdlesh*	at pci? dev ? function ?	# Essential HIPPI card
6711.291Sjnemethet*	at pci? dev ? function ?	# Agere/LSI ET1310/ET1301 Gigabit
6721.1Sfvdlex*	at pci? dev ? function ?	# 3Com 90x[BC]
6731.1Sfvdlfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
6741.1Sfvdlfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
6751.1Sfvdlgsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
6761.168Sjoergipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
6771.168Sjoergiwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
6781.290Sdhollandiwn*	at pci? dev ? function ?	# Intel PRO/Wireless 4965AGN
6791.230Sbouyerjme*	at pci? dev ? function ?	# JMicron JMC2[56]0 ethernet
6801.168Sjoerghme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
6811.1Sfvdlle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
6821.201Scubelii*	at pci? dev ? function ?	# Atheros L2 Fast-Ethernet
6831.1Sfvdllmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
6841.107Srizmskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
6851.107Srizmsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
6861.1Sfvdlmtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
6871.1Sfvdlne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
6881.88Schsnfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
6891.1Sfvdlntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
6901.1Sfvdlpcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
6911.81Sxtraemeral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
6921.26Stoshiire*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
6931.1Sfvdlrtk*	at pci? dev ? function ?	# Realtek 8129/8139
6941.168Sjoergrtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
6951.43Scgdsf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
6961.43Scgdsip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
6971.319Sryoskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
6981.319Sryosk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
6991.1Sfvdlste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
7001.1Sfvdlstge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
7011.1Sfvdlti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
7021.1Sfvdltl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
7031.1Sfvdltlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
7041.168Sjoergtxp*	at pci? dev ? function ?	# 3com 3cr990
7051.41Sjdolecekvge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
7061.1Sfvdlvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
7071.1Sfvdlwi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
7081.1Sfvdlwm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
7091.319Sryowpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
7101.71Stronxge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
7111.1Sfvdl
7121.1Sfvdl# PCMCIA network interfaces
7131.168Sjoergan*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
7141.168Sjoergawi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
7151.168Sjoergcnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
7161.181Sjmcneillcs*	at pcmcia? function ?		# CS89xx Ethernet
7171.168Sjoergep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
7181.168Sjoergmbe*	at pcmcia? function ?		# MB8696x based Ethernet
7191.168Sjoergne*	at pcmcia? function ?		# NE2000-compatible Ethernet
7201.168Sjoergray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
7211.168Sjoergsm*	at pcmcia? function ?		# Megahertz Ethernet
7221.1Sfvdl# tr at pcmcia has problems with Cardbus bridges
7231.1Sfvdl#tr*	at pcmcia? function ?		# TROPIC based Token-Ring
7241.168Sjoergwi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
7251.168Sjoergxirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
7261.168Sjoergcom*	at xirc?
7271.168Sjoergxi*	at xirc?
7281.168Sjoerg
7291.168Sjoergmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
7301.168Sjoergcom*	at mhzc?
7311.168Sjoergsm*	at mhzc?
7321.1Sfvdl
7331.1Sfvdl# CardBus network cards
7341.168Sjoergath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
7351.181Sjmcneillatw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
7361.168Sjoergex*	at cardbus? function ?	# 3Com 3C575TX
7371.168Sjoergfxp*	at cardbus? function ?	# Intel i8255x
7381.181Sjmcneillral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
7391.181Sjmcneillre*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S
7401.168Sjoergrtk*	at cardbus? function ?	# Realtek 8129/8139
7411.168Sjoergrtw*	at cardbus? function ?	# Realtek 8180L (802.11)
7421.168Sjoergtlp*	at cardbus? function ?	# DECchip 21143
7431.1Sfvdl
7441.1Sfvdl# MII/PHY support
7451.1Sfvdlacphy*	at mii? phy ?			# DAltima AC101 and AMD Am79c874 PHYs
7461.319Sryoamhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
7471.239Sceggeratphy*	at mii?	phy ?			# Attansic/Atheros PHYs
7481.319Sryobmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
7491.319Sryobrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
7501.41Sjdolecekciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
7511.1Sfvdldmphy*	at mii? phy ?			# Davicom DM9101 PHYs
7521.291Sjnemethetphy*	at mii? phy ?			# Agere/LSI ET1011 TruePHY Gig-E PHYs
7531.1Sfvdlexphy*	at mii? phy ?			# 3Com internal PHYs
7541.168Sjoerggentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
7551.1Sfvdlglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
7561.1Sfvdlgphyter* at mii? phy ?			# NS83861 Gig-E PHY
7571.168Sjoergicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
7581.319Sryoigphy*	at mii? phy ?			# Intel IGP01E1000
7591.293Schristosihphy*	at mii? phy ?			# Intel 82577 PHYs
7601.112Sbouyerikphy*	at mii? phy ?			# Intel 82563 PHYs
7611.1Sfvdlinphy*	at mii? phy ?			# Intel 82555 PHYs
7621.1Sfvdliophy*	at mii? phy ?			# Intel 82553 PHYs
7631.319Sryolxtphy* at mii? phy ?			# Level One LXT-970 PHYs
7641.319Sryomakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
7651.1Sfvdlnsphy*	at mii? phy ?			# NS83840 PHYs
7661.1Sfvdlnsphyter* at mii? phy ?			# NS83843 PHYs
7671.319Sryopnaphy* at mii? phy ?			# generic HomePNA PHYs
7681.1Sfvdlqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
7691.319Sryorgephy* at mii? phy ?			# Realtek 8169S/8110 internal PHYs
7701.79Sxtraemerlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
7711.1Sfvdlsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
7721.1Sfvdltlphy*	at mii? phy ?			# ThunderLAN PHYs
7731.1Sfvdltqphy*	at mii? phy ?			# TDK Semiconductor PHYs
7741.1Sfvdlukphy*	at mii? phy ?			# generic unknown PHYs
7751.1Sfvdlurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
7761.1Sfvdl
7771.1Sfvdl
7781.1Sfvdl# USB Controller and Devices
7791.1Sfvdl
7801.1Sfvdl# PCI USB controllers
7811.53Saugustssehci*	at pci?	dev ? function ?	# Enhanced Host Controller
7821.1Sfvdlohci*	at pci?	dev ? function ?	# Open Host Controller
7831.1Sfvdluhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
7841.1Sfvdl
7851.1Sfvdl# CardBus USB controllers
7861.168Sjoergehci*	at cardbus? function ?	# Enhanced Host Controller
7871.168Sjoergohci*	at cardbus? function ?	# Open Host Controller
7881.181Sjmcneilluhci*	at cardbus? function ?		# Universal Host Controller (Intel)
7891.1Sfvdl
7901.1Sfvdl# ISA USB controllers
7911.1Sfvdl#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
7921.1Sfvdl
7931.157Skiyohara# PCMCIA USB controllers
7941.181Sjmcneillslhci*	at pcmcia? function ?		# ScanLogic SL811HS
7951.157Skiyohara
7961.1Sfvdl# USB bus support
7971.53Saugustssusb*	at ehci?
7981.1Sfvdlusb*	at ohci?
7991.1Sfvdlusb*	at uhci?
8001.181Sjmcneillusb*	at slhci?
8011.1Sfvdl
8021.1Sfvdl# USB Hubs
8031.1Sfvdluhub*	at usb?
8041.136Sdrochneruhub*	at uhub? port ?
8051.1Sfvdl
8061.1Sfvdl# USB HID device
8071.319Sryouhidev* at uhub? port ? configuration ? interface ?
8081.1Sfvdl
8091.1Sfvdl# USB Mice
8101.1Sfvdlums*	at uhidev? reportid ?
8111.1Sfvdlwsmouse* at ums? mux 0
8121.1Sfvdl
8131.168Sjoerg# USB eGalax touch-panel
8141.168Sjoerguep*	at uhub? port ?
8151.168Sjoergwsmouse* at uep? mux 0
8161.168Sjoerg
8171.1Sfvdl# USB Keyboards
8181.1Sfvdlukbd*	at uhidev? reportid ?
8191.1Sfvdlwskbd*	at ukbd? console ? mux 1
8201.1Sfvdl
8211.104Sskrll# USB serial adapter
8221.319Sryoucycom* at uhidev? reportid ?
8231.64Sskrll
8241.1Sfvdl# USB Generic HID devices
8251.1Sfvdluhid*	at uhidev? reportid ?
8261.1Sfvdl
8271.258Ssborrill# USB LCDs and USB-VGA adaptors
8281.258Ssborrilludl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
8291.258Ssborrillwsdisplay* at udl?
8301.258Ssborrill
8311.1Sfvdl# USB Printer
8321.1Sfvdlulpt*	at uhub? port ? configuration ? interface ?
8331.1Sfvdl
8341.1Sfvdl# USB Modem
8351.319Sryoumodem* at uhub? port ? configuration ?
8361.1Sfvdlucom*	at umodem?
8371.1Sfvdl
8381.271Splunky# Option N.V. Wireless WAN modems
8391.271Splunkyuhso*	at uhub? port ? configuration ?
8401.271Splunky
8411.1Sfvdl# USB Mass Storage
8421.1Sfvdlumass*	at uhub? port ? configuration ? interface ?
8431.244Schristoswd* at umass?
8441.1Sfvdl
8451.1Sfvdl# USB audio
8461.319Sryouaudio* at uhub? port ? configuration ?
8471.319Sryouaudio* at usbifif?
8481.1Sfvdl
8491.1Sfvdl# USB MIDI
8501.319Sryoumidi*	at uhub? port ? configuration ?
8511.1Sfvdl
8521.1Sfvdl# USB IrDA
8531.1Sfvdl# USB-IrDA bridge spec
8541.319Sryouirda*	at uhub? port ? configuration ? interface ?
8551.1Sfvdlirframe* at uirda?
8561.1Sfvdl
8571.168Sjoergstuirda* at uhub? port ? configuration ? interface ?
8581.168Sjoergirframe* at stuirda?
8591.168Sjoerg
8601.1Sfvdl# SigmaTel STIr4200 USB/IrDA Bridge
8611.319Sryoustir*	at uhub? port ?
8621.1Sfvdlirframe* at ustir?
8631.1Sfvdl
8641.1Sfvdl# USB Ethernet adapters
8651.1Sfvdlaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
8661.30Saugustssaxe*	at uhub? port ?		# ASIX AX88172 based adapters
8671.319Sryocdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
8681.1Sfvdlcue*	at uhub? port ?		# CATC USB-EL1201A based adapters
8691.1Sfvdlkue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
8701.324Sjakllschudav*	at uhub? port ?		# Davicom DM9601 based adapters
8711.1Sfvdlurl*	at uhub? port ?		# Realtek RTL8150L based adapters
8721.324Sjakllschurndis*	at uhub? port ?		# Microsoft RNDIS specification
8731.1Sfvdl
8741.1Sfvdl# Prolific PL2301/PL2302 host-to-host adapter
8751.1Sfvdlupl*	at uhub? port ?
8761.1Sfvdl
8771.1Sfvdl# Serial adapters
8781.1Sfvdlubsa*	at uhub? port ?		# Belkin serial adapter
8791.1Sfvdlucom*	at ubsa? portno ?
8801.1Sfvdl
8811.162Sxtraemeuchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
8821.319Sryoucom*	at uchcom? portno ?
8831.1Sfvdl
8841.319Sryouftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
8851.319Sryoucom*	at uftdi? portno ?
8861.1Sfvdl
8871.319Sryouipaq*	at uhub? port ?		# iPAQ PDAs
8881.319Sryoucom*	at uipaq? portno ?
8891.162Sxtraeme
8901.319Sryoumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
8911.319Sryoucom*	at umct? portno ?
8921.162Sxtraeme
8931.319Sryouplcom* at uhub? port ?		# I/O DATA USB-RSAQ2 serial adapter
8941.319Sryoucom*	at uplcom? portno ?
8951.162Sxtraeme
8961.319Sryouslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
8971.319Sryoucom*	at uslsa? portno ?
8981.1Sfvdl
8991.319Sryouvscom* at uhub? port ?		# SUNTAC Slipper U VS-10U serial adapter
9001.1Sfvdlucom*	at uvscom? portno ?
9011.1Sfvdl
9021.216Sjmcneill# RIM BlackBerry
9031.216Sjmcneilluberry* at uhub? port ?
9041.216Sjmcneill
9051.1Sfvdl# Diamond Multimedia Rio 500
9061.1Sfvdlurio*	at uhub? port ?
9071.1Sfvdl
9081.1Sfvdl# USB Handspring Visor
9091.319Sryouvisor* at uhub? port ?
9101.1Sfvdlucom*	at uvisor?
9111.1Sfvdl
9121.46Sitohy# Kyocera AIR-EDGE PHONE
9131.46Sitohyukyopon* at uhub? port ?
9141.46Sitohyucom*	at ukyopon? portno ?
9151.46Sitohy
9161.1Sfvdl# USB scanners
9171.1Sfvdluscanner* at uhub? port ?
9181.1Sfvdl
9191.81Sxtraeme# USB 802.11 adapters
9201.81Sxtraemeatu*	at uhub? port ?		# Atmel at76c50x 802.11b
9211.288Schristosotus*	at uhub? port ?		# Atheros AR9001U
9221.81Sxtraemeral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
9231.319Sryorum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
9241.149Skiyoharazyd*	at uhub? port ?		# Zydas ZD1211
9251.81Sxtraeme
9261.1Sfvdl# USB scanners that use SCSI emulation, e.g., HP5300
9271.1Sfvdlusscanner* at uhub? port ?
9281.1Sfvdl
9291.168Sjoerg# Topfield TF5000PVR range of DVB recorders
9301.319Sryoutoppy* at uhub? port ?
9311.168Sjoerg
9321.1Sfvdl# Y@P firmware loader
9331.319Sryouyap*	at uhub? port ?
9341.1Sfvdl
9351.1Sfvdl# D-Link DSB-R100 USB radio
9361.1Sfvdludsbr*	at uhub? port ?
9371.1Sfvdlradio*	at udsbr?
9381.1Sfvdl
9391.1Sfvdl# USB Generic driver
9401.1Sfvdlugen*	at uhub? port ?
9411.1Sfvdl
9421.231Sjoerg# USB 3G datacards
9431.261Smartinu3ginit* at uhub? port ?
9441.231Sjoergu3g*	at uhub? port ?
9451.231Sjoergucom*	at u3g?
9461.231Sjoerg
9471.168Sjoerg# USB generic serial port (e.g., data over cellular)
9481.319Sryougensa* at uhub? port ?
9491.168Sjoergucom*	at ugensa?
9501.1Sfvdl
9511.1Sfvdl# IrDA and Consumer Ir devices
9521.1Sfvdl
9531.1Sfvdl# Toshiba Oboe
9541.319Sryo#oboe*	at pci? dev ? function ?	# broken -- vtophys
9551.1Sfvdl#irframe* at oboe?
9561.1Sfvdl
9571.57Skiyohara# PCI IEEE1394 controllers
9581.319Sryofwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
9591.189Skiyohara
9601.189Skiyohara# CardBus IEEE1394 controllers
9611.319Sryofwohci* at cardbus? function ?		# IEEE1394 Open Host Controller
9621.57Skiyohara
9631.57Skiyoharaieee1394if* at fwohci?
9641.57Skiyoharafwip*	at ieee1394if?			# IP over IEEE1394
9651.57Skiyoharasbp*	at ieee1394if? euihi ? euilo ?
9661.1Sfvdl
9671.1Sfvdl# Audio Devices
9681.1Sfvdl
9691.1Sfvdl# PCI audio devices
9701.223Sceggerauacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
9711.14Sfvdlauich*	at pci? dev ? function ?	# Intel/AMD/nVidia AC'97 Audio
9721.55Saugustssauixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
9731.1Sfvdlautri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
9741.14Sfvdlauvia*	at pci? dev ? function ?	# VIA AC'97 audio
9751.319Sryo#azalia* at pci? dev ? function ?	# High Definition Audio
9761.1Sfvdlclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
9771.1Sfvdlclct*	at pci? dev ? function ?	# Cirrus Logic CS4281
9781.1Sfvdlcmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
9791.1Sfvdleap*	at pci? dev ? function ?	# Ensoniq AudioPCI
9801.319Sryoemuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
9811.1Sfvdlesa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
9821.1Sfvdlesm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
9831.1Sfvdleso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
9841.1Sfvdlfms*	at pci? dev ? function ?	# Forte Media FM801
9851.1Sfvdlneo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
9861.1Sfvdlsv*	at pci? dev ? function ?	# S3 SonicVibes
9871.1Sfvdlyds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
9881.1Sfvdl
9891.1Sfvdl# OPL[23] FM synthesizers
9901.1Sfvdl#opl0	at isa? port 0x388	# use only if not attached to sound card
9911.1Sfvdlopl*	at cmpci? flags 1
9921.1Sfvdlopl*	at eso?
9931.1Sfvdlopl*	at fms?
9941.1Sfvdlopl*	at sv?
9951.1Sfvdl
9961.251Sjmcneill# High Definition Audio
9971.252Sjmcneillhdaudio*	at pci? dev ? function ?	# High Definition Audio
9981.252Sjmcneillhdafg*		at hdaudiobus?
9991.250Ssborrill
10001.1Sfvdl# Audio support
10011.1Sfvdlaudio*	at audiobus?
10021.1Sfvdl
10031.1Sfvdl# MPU 401 UARTs
10041.1Sfvdl#mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
10051.1Sfvdlmpu*	at cmpci?
10061.1Sfvdlmpu*	at eso?
10071.1Sfvdlmpu*	at yds?
10081.1Sfvdl
10091.1Sfvdl# MIDI support
10101.1Sfvdlmidi*	at midibus?
10111.1Sfvdlmidi*	at pcppi?		# MIDI interface to the PC speaker
10121.1Sfvdl
10131.1Sfvdl# The spkr driver provides a simple tone interface to the built in speaker.
10141.1Sfvdl#spkr0	at pcppi?		# PC speaker
10151.1Sfvdl
10161.1Sfvdl
10171.1Sfvdl# FM-Radio devices
10181.1Sfvdl# PCI radio devices
10191.1Sfvdl#gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
10201.1Sfvdl
10211.1Sfvdl# Radio support
10221.1Sfvdl#radio*	at gtp?
10231.1Sfvdl
10241.1Sfvdl
10251.224Sjmcneill# Video capture devices
10261.224Sjmcneill
10271.224Sjmcneillpseye* at uhub?		# Sony PLAYSTATION(R) Eye webcam
10281.225Sjmcneilluvideo* at uhub?	# USB Video Class capture devices
10291.224Sjmcneillvideo* at videobus?
10301.224Sjmcneill
10311.224Sjmcneill
10321.1Sfvdl# TV cards
10331.1Sfvdl
10341.1Sfvdl# Brooktree 848/849/878/879 based TV cards
10351.336Sjmcneillbktr* at pci? dev ? function ?
10361.336Sjmcneillradio* at bktr?
10371.1Sfvdl
10381.324Sjakllsch# Conexant CX2388[0-3]-based DTV cards
10391.331Sjmcneill#cxdtv* at pci? dev ? function ?
10401.324Sjakllsch#iic* at cxdtv?
10411.324Sjakllsch
10421.1Sfvdl
10431.108Splunky# Bluetooth Controller and Device support
10441.108Splunky
10451.108Splunky# Bluetooth PCMCIA Controllers
10461.168Sjoergbt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
10471.168Sjoergbtbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
10481.108Splunky
10491.242Snonaka# Bluetooth SDIO Controllers
10501.242Snonakasbt* at sdmmc?
10511.242Snonaka
10521.108Splunky# Bluetooth USB Controllers
10531.136Sdrochnerubt* at uhub? port ?
10541.327Sjakllschaubtfwl* at uhub? port ?
10551.108Splunky
10561.108Splunky# Bluetooth Device Hub
10571.177Skiyoharabthub* at bcsp?
10581.168Sjoergbthub* at bt3c?
10591.168Sjoergbthub* at btbc?
10601.168Sjoergbthub* at btuart?
10611.242Snonakabthub* at sbt?
10621.108Splunkybthub* at ubt?
10631.108Splunky
10641.108Splunky# Bluetooth HID support
10651.108Splunkybthidev* at bthub?
10661.108Splunky
10671.108Splunky# Bluetooth Mouse
10681.108Splunkybtms* at bthidev? reportid ?
10691.108Splunkywsmouse* at btms? mux 0
10701.108Splunky
10711.108Splunky# Bluetooth Keyboard
10721.108Splunkybtkbd* at bthidev? reportid ?
10731.108Splunkywskbd* at btkbd? console ? mux 1
10741.108Splunky
10751.279Splunky# Bluetooth Apple Magic Mouse
10761.279Splunkybtmagic* at bthub?
10771.279Splunkywsmouse* at btmagic? mux 0
10781.279Splunky
10791.108Splunky# Bluetooth Audio support
10801.108Splunkybtsco* at bthub?
10811.108Splunky
10821.108Splunky
10831.242Snonaka# SD/MMC/SDIO Controller and Device support
10841.242Snonaka
10851.242Snonaka# SD/MMC controller
10861.319Sryosdhc*	at pci?		# SD Host Controller
10871.319Sryosdmmc*	at sdhc?	# SD/MMC bus
10881.242Snonaka
10891.319Sryold*	at sdmmc?
10901.242Snonaka
10911.242Snonaka
10921.1Sfvdl# Middle Digital, Inc. PCI-Weasel serial console board control
10931.1Sfvdl# devices (watchdog timer, etc.)
10941.1Sfvdlweasel* at pci?
10951.1Sfvdl
10961.1Sfvdl# Pull in optional local configuration
10971.200Sjmmvcinclude "arch/amd64/conf/GENERIC.local"
10981.1Sfvdl
10991.1Sfvdl# Pseudo-Devices
11001.1Sfvdl
11011.74Sthorpejpseudo-device 	crypto			# /dev/crypto device
11021.75Sthorpejpseudo-device	swcrypto		# software crypto implementation
11031.21Sjonathan
11041.1Sfvdl# disk/mass storage pseudo-devices
11051.139Sbouyerpseudo-device	bio			# RAID control device driver
11061.1Sfvdlpseudo-device	ccd		4	# concatenated/striped disk devices
11071.163Sjoergpseudo-device	cgd		4	# cryptographic disk devices
11081.1Sfvdlpseudo-device	raid		8	# RAIDframe disk driver
11091.1Sfvdloptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
11101.1Sfvdl#Options to enable various other RAIDframe RAID types.
11111.1Sfvdl#options 	RF_INCLUDE_EVENODD=1
11121.1Sfvdl#options 	RF_INCLUDE_RAID5_RS=1
11131.1Sfvdl#options 	RF_INCLUDE_PARITYLOGGING=1
11141.1Sfvdl#options 	RF_INCLUDE_CHAINDECLUSTER=1
11151.1Sfvdl#options 	RF_INCLUDE_INTERDECLUSTER=1
11161.1Sfvdl#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
11171.1Sfvdl#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
11181.277Spookapseudo-device	fss			# file system snapshot device
11191.259Spookapseudo-device	putter			# for puffs and pud
11201.1Sfvdl
11211.292Shannkenpseudo-device	md			# memory disk device (ramdisk)
11221.290Sdhollandoptions 	MEMORY_DISK_HOOKS	# enable root ramdisk
11231.295Stsutsuioptions 	MEMORY_DISK_DYNAMIC	# loaded via kernel module(7)
11241.209Sad
11251.84Scubepseudo-device	vnd			# disk-like interface to files
11261.134Sxtraeme#options 	VND_COMPRESSION		# compressed vnd(4)
11271.1Sfvdl
11281.285Srmind# NPF
11291.285Srmind#pseudo-device	npf
11301.285Srmind
11311.1Sfvdl# network pseudo-devices
11321.83Srpaulopseudo-device	bpfilter		# Berkeley packet filter
11331.134Sxtraeme#pseudo-device	carp			# Common Address Redundancy Protocol
11341.1Sfvdlpseudo-device	ipfilter		# IP filter (firewall) and NAT
11351.1Sfvdlpseudo-device	loop			# network loopback
11361.319Sryo#pseudo-device	ifmpls			# MPLS pseudo-interface
11371.84Scubepseudo-device	ppp			# Point-to-Point Protocol
11381.1Sfvdlpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
11391.84Scubepseudo-device	sl			# Serial Line IP
11401.84Scubepseudo-device	strip			# Starmode Radio IP (Metricom)
11411.1Sfvdlpseudo-device	irframetty		# IrDA frame line discipline
11421.84Scubepseudo-device	tun			# network tunneling over tty
11431.35Scubepseudo-device	tap			# virtual Ethernet
11441.84Scubepseudo-device	gre			# generic L3 over IP tunnel
11451.84Scubepseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
11461.134Sxtraeme#pseudo-device	faith			# IPv[46] tcp relay translation i/f
11471.90Spavelpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
11481.1Sfvdlpseudo-device	vlan			# IEEE 802.1q encapsulation
11491.1Sfvdlpseudo-device	bridge			# simple inter-network bridging
11501.198Smartti#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
11511.148Smartinpseudo-device	agr			# IEEE 802.3ad link aggregation
11521.1Sfvdl
11531.220Stls#
11541.329Sjakllsch# accept filters
11551.329Sjakllschpseudo-device   accf_data		# "dataready" accept filter
11561.329Sjakllschpseudo-device   accf_http		# "httpready" accept filter
11571.220Stls
11581.1Sfvdl# miscellaneous pseudo-devices
11591.1Sfvdlpseudo-device	pty			# pseudo-terminals
11601.1Sfvdlpseudo-device	sequencer	1	# MIDI sequencer
11611.1Sfvdl# rnd works; RND_COM does not on port i386 yet.
11621.1Sfvdlpseudo-device	rnd			# /dev/random and in-kernel generator
11631.1Sfvdl#options 	RND_COM			# use "com" randomness as well (BROKEN)
11641.1Sfvdlpseudo-device	clockctl		# user control of clock subsystem
11651.1Sfvdlpseudo-device	ksyms			# /dev/ksyms
11661.134Sxtraeme#pseudo-device	pf			# PF packet filter
11671.134Sxtraeme#pseudo-device	pflog			# PF log if
11681.126Sadpseudo-device	lockstat		# lock profiling
11691.177Skiyoharapseudo-device	bcsp			# BlueCore Serial Protocol
11701.168Sjoergpseudo-device	btuart			# Bluetooth HCI UART (H4)
11711.1Sfvdl
11721.1Sfvdl# a pseudo device needed for Coda	# also needs CODA (above)
11731.329Sjakllschpseudo-device	vcoda		4	# coda minicache <-> venus comm.
11741.1Sfvdl
11751.133Sxtraeme# a pseudo device needed for SMBFS
11761.133Sxtraemepseudo-device	nsmb			# experimental - SMB requester
11771.133Sxtraeme
11781.1Sfvdl# wscons pseudo-devices
11791.1Sfvdlpseudo-device	wsmux			# mouse & keyboard multiplexor
11801.1Sfvdlpseudo-device	wsfont
11811.77Selad
11821.276Sahoka# pseudo audio device driver
11831.276Sahokapseudo-device	pad
11841.276Sahoka
11851.184Sriz# userland interface to drivers, including autoconf and properties retrieval
11861.184Srizpseudo-device	drvctl
11871.184Sriz
11881.114Sperryoptions 	FILEASSOC		# fileassoc(9) - required for Veriexec
11891.98Selad
11901.77Selad# Veriexec
11911.77Selad#
11921.77Selad# a pseudo device needed for veriexec
11931.113Seladpseudo-device	veriexec		1
11941.77Selad#
11951.77Selad# Uncomment the fingerprint methods below that are desired. Note that
11961.77Selad# removing fingerprint methods will have almost no impact on the kernel
11971.77Selad# code size.
11981.77Selad#
11991.113Seladoptions VERIFIED_EXEC_FP_RMD160
12001.113Seladoptions VERIFIED_EXEC_FP_SHA256
12011.113Seladoptions VERIFIED_EXEC_FP_SHA384
12021.113Seladoptions VERIFIED_EXEC_FP_SHA512
12031.113Seladoptions VERIFIED_EXEC_FP_SHA1
12041.113Seladoptions VERIFIED_EXEC_FP_MD5
12051.110Selad
12061.191Seladoptions 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
12071.191Seladoptions 	PAX_ASLR=0		# PaX Address Space Layout Randomization
1208