GENERIC revision 1.457
11.53.4.2Sjym# $NetBSD: GENERIC,v 1.457 2017/04/18 19:09:12 riastradh Exp $ 21.1Sfvdl# 31.1Sfvdl# GENERIC machine description file 41.1Sfvdl# 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.1Sfvdloptions INCLUDE_CONFIG_FILE # embed config file in kernel binary 241.1Sfvdl 251.1Sfvdl#ident "GENERIC-$Revision: 1.457 $" 261.1Sfvdl 271.1Sfvdlmaxusers 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.7Sagc# The following options limit the overall size of physical memory 481.1Sfvdl# and/or the maximum address used by the system. 491.1Sfvdl# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map 501.1Sfvdl# and can deal with holes in the memory layout. 511.1Sfvdl#options PHYSMEM_MAX_SIZE=64 # max size of physical memory (in MB) 521.1Sfvdl#options PHYSMEM_MAX_ADDR=2048 # don't use memory above this (in MB) 531.1Sfvdl 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.1Sfvdloptions CPU_UCODE # cpu ucode loading support 641.1Sfvdl 651.1Sfvdl# Note: SysV IPC parameters could be changed dynamically, see sysctl(8). 661.1Sfvdloptions SYSVMSG # System V-like message queues 671.1Sfvdloptions SYSVSEM # System V-like semaphores 681.1Sfvdloptions SYSVSHM # System V-like memory sharing 691.6Slukem 701.6Slukemoptions MODULAR # new style module(7) framework 711.53.4.2Sjymoptions MODULAR_DEFAULT_AUTOLOAD 721.1Sfvdloptions USERCONF # userconf(4) support 731.1Sfvdl#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 741.1Sfvdloptions SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 751.42Syamt 761.1Sfvdl# CPU features 771.1Sfvdlacpicpu* at cpu? # ACPI CPU (including frequency scaling) 781.1Sfvdlcoretemp* at cpu? # Intel on-die thermal sensor 791.1Sfvdlest0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI) 801.1Sfvdl#odcm0 at cpu0 # On-demand clock modulation 811.1Sfvdlpowernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI) 821.25Seladvmt0 at cpu0 # VMware Tools 831.1Sfvdl 841.1Sfvdl#options PMC # performance-monitoring counters support 851.1Sfvdl 861.1Sfvdl# Alternate buffer queue strategies for better responsiveness under high 871.1Sfvdl# disk I/O load. 881.1Sfvdl#options BUFQ_READPRIO 891.48Sadoptions BUFQ_PRIOCSCAN 901.52Swrstuden 911.52Swrstuden# Diagnostic/debugging support options 921.1Sfvdloptions DIAGNOSTIC # inexpensive kernel consistency checks 931.1Sfvdl # XXX to be commented out on release branch 941.1Sfvdl#options DEBUG # expensive debugging checks/support 951.1Sfvdl#options LOCKDEBUG # expensive locking checks/support 961.1Sfvdl 971.1Sfvdl# 981.1Sfvdl# Because gcc omits the frame pointer for any -O level, the line below 991.1Sfvdl# is needed to make backtraces in DDB work. 1001.1Sfvdl# 1011.1Sfvdlmakeoptions COPTS="-O2 -fno-omit-frame-pointer" 1021.1Sfvdloptions DDB # in-kernel debugger 1031.1Sfvdl#options DDB_COMMANDONENTER="bt" # execute command when ddb is entered 1041.1Sfvdl#options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic' 1051.53.4.1Sjymoptions DDB_HISTORY_SIZE=512 # enable history editing in DDB 1061.53.4.1Sjym#options KGDB # remote debugger 1071.37Sbouyer#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 1081.1Sfvdlmakeoptions DEBUG="-g" # compile full symbol table for CTF 1091.37Sbouyer#options SYSCALL_STATS # per syscall counts 1101.1Sfvdl#options SYSCALL_TIMES # per syscall times 1111.1Sfvdl#options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris) 1121.1Sfvdloptions KDTRACE_HOOKS # kernel DTrace hooks 1131.1Sfvdl 1141.1Sfvdl# Compatibility options 1151.32Sxtraeme# (note that really old compat (< 1.6) is only useful for 32-bit binaries) 1161.1Sfvdl#options EXEC_AOUT # required by binaries from before 1.5 1171.1Sfvdl#options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI 1181.1Sfvdl#options COMPAT_09 # NetBSD 0.9, 1191.1Sfvdl#options COMPAT_10 # NetBSD 1.0, 1201.1Sfvdl#options COMPAT_11 # NetBSD 1.1, 1211.1Sfvdl#options COMPAT_12 # NetBSD 1.2 (and 386BSD and BSDI), 1221.1Sfvdl#options COMPAT_13 # NetBSD 1.3 (and 386BSD and BSDI), 1231.1Sfvdl#options COMPAT_14 # NetBSD 1.4, 1241.1Sfvdloptions COMPAT_15 # NetBSD 1.5, 1251.1Sfvdloptions COMPAT_16 # NetBSD 1.6, 1261.1Sfvdloptions COMPAT_20 # NetBSD 2.0, 1271.1Sfvdloptions COMPAT_30 # NetBSD 3.0, 1281.1Sfvdloptions COMPAT_40 # NetBSD 4.0, 1291.1Sfvdloptions COMPAT_50 # NetBSD 5.0, 1301.1Sfvdloptions COMPAT_60 # NetBSD 6.0, and 1311.1Sfvdloptions COMPAT_70 # NetBSD 7.0 binary compatibility. 1321.1Sfvdloptions COMPAT_43 # and 4.3BSD 1331.1Sfvdl#options COMPAT_386BSD_MBRPART # recognize old partition ID 1341.1Sfvdl 1351.1Sfvdloptions COMPAT_OSSAUDIO 1361.1Sfvdloptions COMPAT_NETBSD32 1371.1Sfvdloptions COMPAT_LINUX 1381.1Sfvdloptions COMPAT_LINUX32 # req. COMPAT_LINUX and COMPAT_NETBSD32 1391.1Sfvdloptions EXEC_ELF32 1401.1Sfvdloptions COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 1411.1Sfvdl 1421.1Sfvdl# Wedge support 1431.1Sfvdloptions DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances 1441.1Sfvdloptions DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges 1451.1Sfvdl#options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges 1461.1Sfvdl#options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges 1471.1Sfvdloptions DKWEDGE_METHOD_APPLE # Support Apple partitions as wedges 1481.20Sfvdl#options DKWEDGE_METHOD_RDB # Support RDB partitions as wedges 1491.20Sfvdl 1501.2Sfvdl# File systems 1511.1Sfvdlfile-system FFS # UFS 1521.1Sfvdlfile-system MFS # memory file system 1531.1Sfvdlfile-system NFS # Network File System client 1541.53.4.1Sjymfile-system TMPFS # Efficient memory file-system 1551.53.4.1Sjymfile-system EXT2FS # second extended file system (linux) 1561.53.4.1Sjymfile-system LFS # log-structured file system 1571.53.4.1Sjymfile-system NTFS # Windows/NT file system (experimental) 1581.53.4.1Sjymfile-system CD9660 # ISO 9660 + Rock Ridge file system 1591.53.4.1Sjymfile-system MSDOSFS # MS-DOS file system 1601.53.4.1Sjymfile-system FDESC # /dev/fd 1611.53.4.1Sjymfile-system KERNFS # /kern 1621.53.4.1Sjymfile-system NULLFS # loopback file system 1631.53.4.1Sjymfile-system OVERLAY # overlay file system 1641.53.4.1Sjymfile-system PROCFS # /proc 1651.53.4.1Sjymfile-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 1661.53.4.1Sjymfile-system SMBFS # experimental - CIFS; also needs nsmb (below) 1671.53.4.1Sjymfile-system UMAPFS # NULLFS + uid and gid remapping 1681.53.4.1Sjymfile-system UNION # union file system 1691.53.4.1Sjymfile-system CODA # Coda File System; also needs vcoda (below) 1701.53.4.1Sjymfile-system PTYFS # /dev/ptm support 1711.53.4.1Sjym#file-system UDF # experimental - OSTA UDF CD/DVD file-system 1721.53.4.1Sjym#file-system HFS # experimental - Apple HFS+ (read-only) 1731.53.4.1Sjym#file-system NILFS # experimental - NTT's NiLFS(2) 1741.53.4.1Sjym 1751.53.4.1Sjym# File system options 1761.53.4.1Sjymoptions QUOTA # legacy UFS quotas 1771.53.4.1Sjymoptions QUOTA2 # new, in-filesystem UFS quotas 1781.53.4.1Sjymoptions FFS_EI # FFS Endian Independent support 1791.1Sfvdloptions WAPBL # File system journaling support 1801.1Sfvdl# Note that UFS_DIRHASH is suspected of causing kernel memory corruption. 1811.1Sfvdl# It is not recommended for general use. 1821.1Sfvdl#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 1831.1Sfvdloptions NFSSERVER # Network File System server 1841.1Sfvdl#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 1851.1Sfvdl # immutable) behave as system flags. 1861.1Sfvdl#options FFS_NO_SNAPSHOT # No FFS snapshot support 1871.1Sfvdloptions UFS_EXTATTR # Extended attribute support for UFS1 1881.1Sfvdl 1891.32Sxtraeme# Networking options 1901.1Sfvdl#options GATEWAY # packet forwarding 1911.1Sfvdloptions INET # IP + ICMP + TCP + UDP 1921.31Syamtoptions INET6 # IPV6 1931.8Sfvdloptions IPSEC # IP security 1941.1Sfvdl#options IPSEC_DEBUG # debug for IP security 1951.34Syamt#options MPLS # MultiProtocol Label Switching (needs mpls) 1961.18Sdrochner#options MROUTING # IP multicast routing 1971.18Sdrochner#options PIM # Protocol Independent Multicast 1981.1Sfvdloptions NETATALK # AppleTalk networking protocols 1991.1Sfvdloptions PPP_BSDCOMP # BSD-Compress compression support for PPP 2001.1Sfvdloptions PPP_DEFLATE # Deflate compression support for PPP 2011.1Sfvdloptions PPP_FILTER # Active filter support for PPP (requires bpf) 2021.1Sfvdloptions IPFILTER_LOG # ipmon(8) log support 2031.30Schristosoptions IPFILTER_LOOKUP # ippool(8) support 2041.1Sfvdloptions IPFILTER_COMPAT # Compat for IP-Filter 2051.1Sfvdl#options IPFILTER_DEFAULT_BLOCK # block all packets by default 2061.11Sfvdl#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 2071.46Sad#options TCP_SIGNATURE # Enable RFC-2385 TCP md5 signatures 2081.1Sfvdl 2091.31Syamt#options ALTQ # Manipulate network interfaces' output queues 2101.31Syamt#options ALTQ_BLUE # Stochastic Fair Blue 2111.31Syamt#options ALTQ_CBQ # Class-Based Queueing 2121.31Syamt#options ALTQ_CDNR # Diffserv Traffic Conditioner 2131.31Syamt#options ALTQ_FIFOQ # First-In First-Out Queue 2141.31Syamt#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 2151.31Syamt#options ALTQ_HFSC # Hierarchical Fair Service Curve 2161.31Syamt#options ALTQ_LOCALQ # Local queueing discipline 2171.31Syamt#options ALTQ_PRIQ # Priority Queueing 2181.31Syamt#options ALTQ_RED # Random Early Detection 2191.1Sfvdl#options ALTQ_RIO # RED with IN/OUT 2201.1Sfvdl#options ALTQ_WFQ # Weighted Fair Queueing 2211.1Sfvdl 2221.1Sfvdl# These options enable verbose messages for several subsystems. 2231.8Sfvdl# Warning, these may compile large string tables into the kernel! 2241.8Sfvdl#options ACPIVERBOSE # verbose ACPI configuration messages 2251.1Sfvdl#options MIIVERBOSE # verbose PHY autoconfig messages 2261.1Sfvdl#options PCIVERBOSE # verbose PCI device autoconfig messages 2271.1Sfvdl#options PCI_CONFIG_DUMP # verbosely dump PCI config space 2281.1Sfvdl#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 2291.1Sfvdloptions SCSIVERBOSE # human readable SCSI error messages 2301.1Sfvdl#options USBVERBOSE # verbose USB device autoconfig messages 2311.41Syamt#options HDAUDIOVERBOSE # verbose HDAUDIO driver messages 2321.1Sfvdl 2331.8Sfvdloptions NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 2341.26Sad 2351.1Sfvdl# 2361.1Sfvdl# wscons options 2371.1Sfvdl# 2381.1Sfvdl# builtin terminal emulations 2391.1Sfvdl#options WSEMUL_SUN # sun terminal emulation 2401.1Sfvdloptions WSEMUL_VT100 # VT100 / VT220 emulation 2411.49Sad# different kernel output - see dev/wscons/wsdisplayvar.h 2421.49Sadoptions WS_KERNEL_FG=WSCOL_GREEN 2431.49Sad#options WS_KERNEL_BG=WSCOL_BLACK 2441.49Sad# compatibility to other console drivers 2451.49Sadoptions WSDISPLAY_COMPAT_PCVT # emulate some ioctls 2461.49Sadoptions WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 2471.49Sadoptions WSDISPLAY_COMPAT_USL # wsconscfg VT handling 2481.49Sadoptions WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 2491.49Sad# don't attach pckbd as the console if no PS/2 keyboard is found 2501.1Sfvdloptions PCKBD_CNATTACH_MAY_FAIL 2511.8Sfvdl# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 2521.1Sfvdl#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 2531.1Sfvdl# allocate a number of virtual screens at autoconfiguration time 2541.1Sfvdl#options WSDISPLAY_DEFAULTSCREENS=4 2551.1Sfvdl# use a large software cursor that doesn't blink 2561.1Sfvdloptions PCDISPLAY_SOFTCURSOR 2571.1Sfvdl# modify the screen type of the console; defaults to "80x25" 2581.1Sfvdl#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 2591.1Sfvdl# work around a hardware bug that loaded fonts don't work; found on ATI cards 2601.1Sfvdl#options VGA_CONSOLE_ATI_BROKEN_FONTSEL 2611.1Sfvdl# console scrolling support. 2621.1Sfvdloptions WSDISPLAY_SCROLLSUPPORT 2631.1Sfvdl# enable VGA raster mode capable of displaying multilingual text on console 2641.1Sfvdl#options VGA_RASTERCONSOLE 2651.8Sfvdl# enable splash screen support; requires genfb or radeonfb 2661.1Sfvdl#options SPLASHSCREEN 2671.1Sfvdl 2681.22Schs# Kernel root file system and dump configuration. 2691.1Sfvdlconfig netbsd root on ? type ? 2701.1Sfvdl#config netbsd root on sd0a type ffs 2711.1Sfvdl#config netbsd root on ? type nfs 2721.1Sfvdl 2731.1Sfvdl# 2741.1Sfvdl# Device configuration 2751.1Sfvdl# 2761.1Sfvdl 2771.1Sfvdl#IPMI support 2781.53.4.1Sjymipmi0 at mainbus? 2791.53.4.1Sjym 2801.1Sfvdl# ACPI will be used if present. If not it will fall back to MPBIOS 2811.1Sfvdlacpi0 at mainbus0 2821.1Sfvdloptions ACPI_SCANPCI # find PCI roots using ACPI 2831.53.4.1Sjymoptions MPBIOS # configure CPUs and APICs using MPBIOS 2841.8Sfvdloptions MPBIOS_SCANPCI # MPBIOS configures PCI roots 2851.1Sfvdl#options PCI_INTR_FIXUP # PCI interrupt routing via ACPI 2861.1Sfvdl#options PCI_BUS_FIXUP # fixup PCI bus numbering 2871.1Sfvdl#options PCI_ADDR_FIXUP # fixup PCI I/O addresses 2881.1Sfvdl#options ACPI_ACTIVATE_DEV # If set, activate inactive devices 2891.1Sfvdloptions VGA_POST # in-kernel support for VGA POST 2901.1Sfvdl 2911.1Sfvdl# ACPI devices 2921.1Sfvdlacpiacad* at acpi? # ACPI AC Adapter 2931.1Sfvdlacpibat* at acpi? # ACPI Battery 2941.1Sfvdlacpibut* at acpi? # ACPI Button 2951.1Sfvdlacpidalb* at acpi? # Direct Application Launch Button 2961.1Sfvdlacpiec* at acpi? # ACPI Embedded Controller (late) 2971.1Sfvdlacpiecdt* at acpi? # ACPI Embedded Controller (early) 2981.1Sfvdlacpifan* at acpi? # ACPI Fan 2991.1Sfvdlacpilid* at acpi? # ACPI Lid Switch 3001.1Sfvdl#acpipmtr* at acpi? # ACPI Power Meter (experimental) 3011.1Sfvdl#acpismbus* at acpi? # ACPI SMBus CMI (experimental) 3021.1Sfvdlacpitz* at acpi? # ACPI Thermal Zone 3031.1Sfvdlacpivga* at acpi? # ACPI Display Adapter 3041.1Sfvdlacpiout* at acpivga? # ACPI Display Output Device 3051.8Sfvdlacpiwdrt* at acpi? # ACPI Watchdog Resource Table 3061.1Sfvdlacpiwmi* at acpi? # ACPI WMI Mapper 3071.45Scegger 3081.1Sfvdl# Mainboard devices 3091.1Sfvdlaibs* at acpi? # ASUSTeK AI Booster hardware monitor 3101.1Sfvdlasus* at acpi? # ASUS hotkeys 3111.1Sfvdlattimer* at acpi? # AT Timer 3121.1Sfvdl#com* at acpi? # Serial communications interface 3131.1Sfvdl#fdc* at acpi? # Floppy disk controller 3141.1Sfvdlfujbp* at acpi? # Fujitsu Brightness & Pointer 3151.1Sfvdlfujhk* at acpi? # Fujitsu Hotkeys 3161.1Sfvdl#hpacel* at acpi? # HP 3D DriveGuard accelerometer 3171.1Sfvdl#hpqlb* at acpi? # HP Quick Launch Buttons 3181.45Sceggerhpet* at acpihpetbus? # High Precision Event Timer (table) 3191.1Sfvdlhpet* at acpinodebus? # High Precision Event Timer (device) 3201.1Sfvdljoy* at acpi? # Joystick/Game port 3211.1Sfvdl#lpt* at acpi? # Parallel port 3221.45Sceggermpu* at acpi? # Roland MPU-401 MIDI UART 3231.1Sfvdlpckbc* at acpi? # PC keyboard controller 3241.1Sfvdlpcppi* at acpi? # AT-style speaker sound 3251.1Sfvdlsdhc* at acpi? # SD Host Controller 3261.1Sfvdlsony* at acpi? # Sony Notebook Controller 3271.1Sfvdlspic* at acpi? # Sony Programmable I/O Controller 3281.1Sfvdlwsmouse* at spic? # mouse 3291.1Sfvdlthinkpad* at acpi? # IBM/Lenovo Thinkpad hotkeys 3301.1Sfvdl#tpm* at acpi? # ACPI TPM (Experimental) 3311.1Sfvdlug* at acpi? # Abit uGuru Hardware monitor 3321.45Sceggervalz* at acpi? # Toshiba Dynabook hotkeys 3331.1Sfvdlwb* at acpi? # Winbond W83L518D SD/MMC reader 3341.1Sfvdlsdmmc* at wb? # SD/MMC bus 3351.1Sfvdlwmidell* at acpiwmibus? # Dell WMI mappings 3361.1Sfvdlwmieeepc* at acpiwmibus? # Asus Eee PC WMI mappings 3371.1Sfvdlwmihp* at acpiwmibus? # HP WMI mappings 3381.1Sfvdlwmimsi* at acpiwmibus? # MSI WMI mappings 3391.1Sfvdl 3401.2Sfvdl# Basic Bus Support 3411.53.4.2Sjym 3421.18Sdrochner# PCI bus support 3431.10Schristospci* at mainbus? bus ? 3441.1Sfvdlpci* at pchb? bus ? 3451.12Sfvdlpci* at ppb? bus ? 3461.11Sfvdl 3471.11Sfvdl# PCI bridges 3481.11Sfvdlpchb* at pci? dev ? function ? # PCI-Host bridges 3491.11Sfvdloptions AGP_X86 3501.11Sfvdlpcib* at pci? dev ? function ? # PCI-ISA bridges 3511.53.4.2Sjymppb* at pci? dev ? function ? # PCI-PCI bridges 3521.11Sfvdl# XXX 'puc's aren't really bridges, but there's no better place for them here 3531.11Sfvdlpuc* at pci? dev ? function ? # PCI "universal" comm. cards 3541.11Sfvdl 3551.53.4.2Sjym#amdpcib* at pci? dev ? function ? # AMD 8111 PCI-ISA w/ HPET 3561.11Sfvdl#hpet* at amdpcib? 3571.11Sfvdl 3581.11Sfvdlpwdog* at pci? dev ? function ? # QUANCOM PWDOG1 3591.53.4.2Sjym 3601.11Sfvdlichlpcib* at pci? dev ? function ? # Intel ICH PCI-LPC w/ timecounter, 3611.11Sfvdl # watchdog, gpio, Speedstep and HPET 3621.53.4.2Sjymfwhrng* at ichlpcib? # Intel 82802 FWH Random Number Generator 3631.53.4.2Sjym#hpet* at ichlpcib? 3641.53.4.2Sjymtco* at ichlpcib? # TCO watch dog timer 3651.53.4.2Sjym 3661.11Sfvdlaapic* at pci? dev ? function ? # AMD 8131 IO apic 3671.53.4.2Sjym 3681.53.4.2Sjymagp* at pchb? 3691.53.4.2Sjym 3701.11Sfvdl# ISA bus support 3711.11Sfvdlisa0 at mainbus? 3721.11Sfvdlisa0 at pcib? 3731.1Sfvdl#isa0 at amdpcib? 3741.1Sfvdlisa0 at ichlpcib? 3751.1Sfvdl 3761.2Sfvdl# CardBus bridge support 3771.1Sfvdlcbb* at pci? dev ? function ? 3781.8Sfvdlcardslot* at cbb? 3791.10Schristos 3801.1Sfvdl# CardBus bus support 3811.12Sfvdlcardbus* at cardslot? 3821.11Sfvdlpcmcia* at cardslot? 3831.11Sfvdl 3841.11Sfvdl# Console Devices 3851.11Sfvdl 3861.11Sfvdl# wscons 3871.11Sfvdlpckbc0 at isa? # pc keyboard controller 3881.11Sfvdlpckbd* at pckbc? # PC keyboard 3891.11Sfvdlpms* at pckbc? # PS/2 mouse for wsmouse 3901.11Sfvdl#options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume 3911.11Sfvdloptions PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads 3921.11Sfvdloptions PMS_ELANTECH_TOUCHPAD # Enable support for Elantech Touchpads 3931.53.4.2Sjymvga* at pci? dev ? function ? 3941.53.4.2Sjymgenfb* at pci? dev ? function ? 3951.53.4.2Sjymoptions VCONS_DRAW_INTR 3961.11Sfvdlwsdisplay* at vga? console ? 3971.11Sfvdlwsdisplay* at wsemuldisplaydev? 3981.11Sfvdlwskbd* at pckbd? console ? 3991.1Sfvdlwsmouse* at pms? mux 0 4001.50Sad 4011.50Sadattimer0 at isa? 4021.50Sadpcppi0 at isa? 4031.1Sfvdlsysbeep0 at pcppi? 4041.1Sfvdl 4051.28Sad# DRI legacy drivers 4061.28Sad#i915drm* at drm? # Intel i915, i945 DRM driver 4071.28Sad#mach64drm* at drm? # mach64 (3D Rage Pro, Rage) DRM driver 4081.1Sfvdl#mgadrm* at drm? # Matrox G[24]00, G[45]50 DRM driver 4091.1Sfvdl#r128drm* at drm? # ATI Rage 128 DRM driver 4101.39Sad#radeondrm* at drm? # ATI Radeon DRM driver 4111.28Sad#savagedrm* at drm? # S3 Savage DRM driver 4121.1Sfvdl#sisdrm* at drm? # SiS DRM driver 4131.1Sfvdl#tdfxdrm* at drm? # 3dfx (voodoo) DRM driver 4141.24Sdrochner#viadrm* at drm? # VIA DRM driver 4151.1Sfvdl 4161.1Sfvdl# DRMKMS drivers 4171.1Sfvdli915drmkms* at pci? dev ? function ? 4181.12Sfvdlintelfb* at intelfbbus? 4191.11Sfvdl 4201.11Sfvdlradeon* at pci? dev ? function ? 4211.11Sfvdlradeondrmkmsfb* at radeonfbbus? 4221.11Sfvdl 4231.1Sfvdlnouveau* at pci? dev ? function ? 4241.24Sdrochnernouveaufb* at nouveaufbbus? 4251.1Sfvdl 4261.1Sfvdl# Cryptographic Devices 4271.1Sfvdl 4281.1Sfvdl# PCI cryptographic devices 4291.12Sfvdlhifn* at pci? dev ? function ? # Hifn 7755/7811/795x 4301.11Sfvdlubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 4311.11Sfvdl 4321.11Sfvdl# Trusted Platform Module 4331.11Sfvdltpm* at isa? iomem 0xfed40000 irq 7 4341.11Sfvdl#tpm* at isa? port 0x02e 4351.11Sfvdl#tpm* at isa? port 0x04e 4361.11Sfvdl#tpm* at isa? port 0x07e 4371.11Sfvdl#tpm* at isa? port 0x0ee 4381.11Sfvdl 4391.11Sfvdl# Serial Devices 4401.11Sfvdl 4411.11Sfvdl# PCI serial interfaces 4421.53.4.2Sjymcom* at puc? port ? # 16x50s on "universal" comm boards 4431.53.4.2Sjymcy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 4441.53.4.2Sjymcz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 4451.11Sfvdl 4461.11Sfvdl# PCMCIA serial interfaces 4471.11Sfvdlcom* at pcmcia? function ? # Modems and serial cards 4481.1Sfvdl 4491.1Sfvdlpcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 4501.1Sfvdlcom* at pcmcom? slave ? # ...and the slave devices 4511.1Sfvdl 4521.1Sfvdl# CardBus serial interfaces 4531.1Sfvdlcom* at cardbus? function ? # Modems and serial cards 4541.1Sfvdl 4551.1Sfvdl# ISA serial interfaces 4561.53.4.1Sjym#options COM_HAYESP # adds Hayes ESP serial board support 4571.53.4.1Sjymcom0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 4581.1Sfvdlcom1 at isa? port 0x2f8 irq 3 4591.48Sad 4601.48Sad# Parallel Printer Interfaces 4611.48Sad 4621.48Sad# PCI parallel printer interfaces 4631.3Syamtlpt* at puc? port ? # || ports on "universal" comm boards 4641.1Sfvdl 4651.1Sfvdl# ISA parallel printer interfaces 4661.1Sfvdllpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 4671.1Sfvdllpt1 at isa? port 0x278 4681.1Sfvdl 4691.1Sfvdl# Hardware monitors 4701.1Sfvdl 4711.1Sfvdlamdnb_misc* at pci? # AMD NB Misc Configuration 4721.1Sfvdlamdtemp* at amdnb_misc? # AMD CPU Temperature sensors 4731.1Sfvdl 4741.1Sfvdl# Winbond LPC Super I/O 4751.20Sfvdl#wbsio* at isa? port 0x2e 4761.20Sfvdl#wbsio* at isa? port 0x4e 4771.20Sfvdl 4781.52Swrstuden# IBM Hawk Integrated Systems Management Processor 4791.52Swrstuden#ibmhawk0 at iic? addr 0x37 4801.52Swrstuden 4811.52Swrstuden# LM7[89] and compatible hardware monitors 4821.1Sfvdl# Use flags to select temp sensor type (see lm(4) man page for details) 4831.1Sfvdl#lm0 at isa? port 0x290 flags 0x0 # other common ports: 0x280, 0x310 4841.1Sfvdl#lm* at wbsio? 4851.1Sfvdl 4861.38Schristos# SMSC LPC47B397 hardware monitor functions 4871.1Sfvdl#smsc0 at isa? port 0x02e 4881.1Sfvdl 4891.1Sfvdl# SMSC LPC47M192 hardware monitor 4901.1Sfvdl#smscmon* at iic? addr 0x2c 4911.1Sfvdl#smscmon* at iic? addr 0x2d # (alternate address) 4921.1Sfvdl 4931.1Sfvdl# AMD 768 and 8111 power/ACPI controllers 4941.1Sfvdlamdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface 4951.1Sfvdl#iic* at amdpm? # sensors below are on this bus 4961.1Sfvdl 4971.1Sfvdl# NVIDIA nForce2/3/4 SMBus controller 4981.1Sfvdlnfsmbc* at pci? dev ? function ? 4991.1Sfvdlnfsmb* at nfsmbc? 5001.8Sfvdliic* at nfsmb? 5011.1Sfvdl 5021.16Sdrochner# Intel PIIX4 power management controllers 5031.16Sdrochnerpiixpm* at pci? dev ? function ? # PIIX4 compatible PM controller 5041.1Sfvdliic* at piixpm? # SMBus on PIIX4 5051.1Sfvdl 5061.1Sfvdl# Intel ICH SMBus controller 5071.1Sfvdlichsmb* at pci? dev ? function ? 5081.1Sfvdliic* at ichsmb? 5091.1Sfvdl 5101.1Sfvdl# Intel S1200,C2000 (non-pch) SMBus controller 5111.1Sfvdlismt* at pci? dev ? function ? 5121.1Sfvdliic* at ismt? 5131.1Sfvdl 5141.1Sfvdl# Thermal monitor and fan controller 5151.1Sfvdl#dbcool* at iic? addr 0x2C # Unknown other motherboard(s) 5161.1Sfvdl#dbcool* at iic? addr 0x2D # Tyan S2881 5171.23Sdrochner#dbcool* at iic? addr 0x2E # Tyan S2882-D 5181.1Sfvdl 5191.1Sfvdl# IBM Thinkpad Active Protection System 5201.30Schristos#aps0 at isa? port 0x1600 5211.19Sjdolecek 5221.1Sfvdl# Fintek Super I/O with hardware monitor 5231.46Sad#finsio0 at isa? port 0x4e 5241.46Sad 5251.34Syamt# iTE IT87xxF Super I/O with watchdog and sensors support 5261.34Syamt#itesio0 at isa? port 0x2e 5271.34Syamt 5281.34Syamt# Abit uGuru Hardware system monitor 5291.34Syamt#ug0 at isa? port 0xe0 5301.34Syamt 5311.46Sad# Serial Presence Detect capable memory modules 5321.46Sad#spdmem* at iic? addr 0x50 5331.46Sad#spdmem* at iic? addr 0x51 5341.53.4.1Sjym#spdmem* at iic? addr 0x52 5351.46Sad#spdmem* at iic? addr 0x53 5361.46Sad#spdmem* at iic? addr 0x54 5371.46Sad#spdmem* at iic? addr 0x55 5381.46Sad#spdmem* at iic? addr 0x56 5391.46Sad#spdmem* at iic? addr 0x57 5401.46Sad#sdtemp* at iic? addr 0x18 5411.46Sad#sdtemp* at iic? addr 0x19 5421.46Sad#sdtemp* at iic? addr 0x1a 5431.46Sad#sdtemp* at iic? addr 0x1b 5441.46Sad#sdtemp* at iic? addr 0x1c 5451.46Sad#sdtemp* at iic? addr 0x1d 5461.46Sad#sdtemp* at iic? addr 0x1e 5471.46Sad#sdtemp* at iic? addr 0x1f 5481.46Sad 5491.46Sad# I2O devices 5501.46Sadiop* at pci? dev ? function ? # I/O processor 5511.34Syamtiopsp* at iop? tid ? # SCSI/FC-AL ports 5521.46Sadld* at iop? tid ? # block devices 5531.46Sad# XXX dpti.c wants a processor type that is not assigned for x86-64 5541.46Sad#dpti* at iop? tid 0 # DPT/Adaptec control interface 5551.46Sad 5561.46Sad# GPIO devices 5571.46Sadgpio* at gpiobus? 5581.46Sad 5591.46Sad# 1- Wire support 5601.46Sad#gpioow* at gpio? offset ? mask ? # 1-wire bitbanging via gpio 5611.46Sadgpioow* at gpio? 5621.46Sadonewire* at gpioow? 5631.46Sad 5641.46Sad# I2C support 5651.46Sad#gpioiic* at gpio? 5661.46Sad#iic* at gpioiic? 5671.46Sad 5681.46Sad# Keylock support 5691.1Sfvdl#gpiolock* at gpio? 5701.52Swrstuden 5711.1Sfvdl# Pulsing GPIO pins in software 5721.1Sfvdl#gpiopwm* at gpio? 5731.12Sfvdl 5741.11Sfvdl# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio) 5751.11Sfvdl#soekrisgpio0 at isa? port 0x680 5761.1Sfvdl 5771.11Sfvdl# SCSI Controllers and Devices 5781.1Sfvdl 5791.11Sfvdl# PCI SCSI controllers 5801.11Sfvdladv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 5811.1Sfvdladw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 5821.1Sfvdlahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 5831.53.4.1Sjymahd* at pci? dev ? function ? # Adaptec aic790x SCSI 5841.53.4.1Sjymbha* at pci? dev ? function ? # BusLogic 9xx SCSI 5851.1Sfvdldpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 5861.23Sdrochneriha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 5871.1Sfvdlisp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 5881.1Sfvdlmfi* at pci? dev ? function ? # LSI MegaRAID SAS 5891.1Sfvdlmly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 5901.1Sfvdlmpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 (Fusion-MPT) 5911.11Sfvdlmpii* at pci? dev ? function ? # LSI Logic Fusion-MPT II 5921.1Sfvdlpcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 5931.1Sfvdlsiop* at pci? dev ? function ? # Symbios 53c8xx SCSI 5941.27Sadesiop* at pci? dev ? function ? # Symbios 53c875 and newer SCSI 5951.27Sad#options SIOP_SYMLED # drive the act. LED in software 5961.1Sfvdltrm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 5971.2Sfvdl 5981.1Sfvdl# PCMCIA SCSI controllers 5991.8Sfvdlaic* at pcmcia? function ? # Adaptec APA-1460 SCSI 6001.10Schristosesp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 6011.1Sfvdlspc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI 6021.11Sfvdl 6031.1Sfvdl# CardBus SCSI cards 6041.11Sfvdladv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 6051.52Swrstudenahc* at cardbus? function ? # Adaptec ADP-1480 6061.1Sfvdl 6071.1Sfvdl# SCSI bus support 6081.1Sfvdlscsibus* at scsi? 6091.1Sfvdl 6101.1Sfvdl# SCSI devices 6111.8Sfvdlsd* at scsibus? target ? lun ? # SCSI disk drives 6121.1Sfvdlst* at scsibus? target ? lun ? # SCSI tape drives 6131.8Sfvdlcd* at scsibus? target ? lun ? # SCSI CD-ROM drives 6141.8Sfvdlch* at scsibus? target ? lun ? # SCSI autochangers 6151.1Sfvdlses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 6161.1Sfvdlss* at scsibus? target ? lun ? # SCSI scanners 6171.1Sfvdluk* at scsibus? target ? lun ? # SCSI unknown 6181.1Sfvdl 6191.1Sfvdl 6201.1Sfvdl# RAID controllers and devices 6211.35Sadaac* at pci? dev ? function ? # Adaptec AAC family 6221.30Schristosamr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 6231.12Sfvdlarcmsr* at pci? dev ? function ? # Areca SATA RAID controllers 6241.11Sfvdlcac* at pci? dev ? function ? # Compaq PCI array controllers 6251.11Sfvdlciss* at pci? dev ? function ? # HP Smart Array controllers 6261.11Sfvdlicp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 6271.11Sfvdlmlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 6281.11Sfvdltwe* at pci? dev ? function ? # 3ware Escalade RAID controllers 6291.11Sfvdltwa* at pci? dev ? function ? # 3ware Escalade 9xxx RAID controllers 6301.11Sfvdl 6311.1Sfvdlld* at aac? unit ? 6321.1Sfvdlld* at amr? unit ? 6331.1Sfvdlld* at cac? unit ? 6341.42Syamtld* at icp? unit ? 6351.53.4.1Sjymld* at twe? unit ? 6361.53.4.1Sjymld* at twa? unit ? 6371.42Syamtld* at mlx? unit ? 6381.53.4.1Sjym 6391.1Sfvdlicpsp* at icp? unit ? # SCSI pass-through 6401.1Sfvdl 6411.1Sfvdl# IDE and related devices 6421.1Sfvdl# PCI IDE controllers - see pciide(4) for supported hardware. 6431.1Sfvdl# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 6441.1Sfvdl# how to set up DMA modes for this chip. This may work, or may cause 6451.10Schristos# a machine hang with some controllers. 6461.1Sfvdlpciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 6471.1Sfvdlacardide* at pci? dev ? function ? # Acard IDE controllers 6481.1Sfvdlaceride* at pci? dev ? function ? # Acer Lab IDE controllers 6491.10Schristosahcisata* at pci? dev ? function ? # AHCI SATA controllers 6501.1Sfvdlartsata* at pci? dev ? function ? # Intel i31244 SATA controller 6511.1Sfvdlcmdide* at pci? dev ? function ? # CMD tech IDE controllers 6521.1Sfvdlcypide* at pci? dev ? function ? # Cypress IDE controllers 6531.1Sfvdlhptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 6541.1Sfvdliteide* at pci? dev ? function ? # IT Express IDE controllers 6551.1Sfvdlixpide* at pci? dev ? function ? # ATI IXP IDE controllers 6561.1Sfvdljmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 6571.1Sfvdlahcisata* at jmide? 6581.1Sfvdlmvsata* at pci? dev ? function ? # Marvell Hercules-I/II 6591.1Sfvdloptiide* at pci? dev ? function ? # Opti IDE controllers 6601.42Syamtpiixide* at pci? dev ? function ? # Intel IDE controllers 6611.1Sfvdlpdcide* at pci? dev ? function ? # Promise IDE controllers 6621.1Sfvdlpdcsata* at pci? dev ? function ? # Promise SATA150 controllers 6631.1Sfvdlsatalink* at pci? dev ? function ? # SiI SATALink controllers 6641.1Sfvdlsiisata* at pci? dev ? function ? # SiI SteelVine controllers 6651.1Sfvdlsiside* at pci? dev ? function ? # SiS IDE controllers 6661.11Sfvdlslide* at pci? dev ? function ? # Symphony Labs IDE controllers 6671.11Sfvdlsvwsata* at pci? dev ? function ? # ServerWorks SATA controllers 6681.11Sfvdltoshide* at pci? dev ? function ? # TOSHIBA PICCOLO controllers 6691.11Sfvdlviaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 6701.1Sfvdl 6711.1Sfvdl# PCMCIA IDE controllers 6721.1Sfvdlwdc* at pcmcia? function ? 6731.1Sfvdl 6741.1Sfvdl# CardBus IDE controllers 6751.1Sfvdlnjata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32 6761.1Sfvdlsiisata* at cardbus? function ? # SiI SteelVine controllers 6771.1Sfvdl 6781.1Sfvdl# ISA ST506, ESDI, and IDE controllers 6791.1Sfvdl# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 6801.1Sfvdl# fall back to 16bits I/O if 32bits I/O are not functional). 6811.1Sfvdl# Some controllers pass the initial 32bit test, but will fail later. 6821.1Sfvdlwdc0 at isa? port 0x1f0 irq 14 flags 0x00 6831.1Sfvdlwdc1 at isa? port 0x170 irq 15 flags 0x00 6841.1Sfvdl 6851.52Swrstuden# ATA (IDE) bus support 6861.52Swrstudenatabus* at ata? 6871.52Swrstudenoptions ATADEBUG 6881.52Swrstuden 6891.52Swrstuden# IDE drives 6901.52Swrstuden# Flags are used only with controllers that support DMA operations 6911.52Swrstuden# and mode settings (e.g. some pciide controllers) 6921.52Swrstuden# The lowest order four bits (rightmost digit) of the flags define the PIO 6931.2Sfvdl# mode to use, the next set of four bits the DMA mode and the third set the 6941.1Sfvdl# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 6951.1Sfvdl# to use, and the last bit must be 1 for this setting to be used. 6961.1Sfvdl# For DMA and UDMA, 0xf (1111) means 'disable'. 6971.37Sbouyer# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 6981.37Sbouyer# (0xc=1100, 0xa=1010, 0xf=1111) 6991.37Sbouyer# 0x0000 means "use whatever the drive claims to support". 7001.1Sfvdlwd* at atabus? drive ? flags 0x0000 7011.1Sfvdl 7021.1Sfvdl# ATAPI bus support 7031.1Sfvdlatapibus* at atapi? 7041.1Sfvdl 7051.1Sfvdl 7061.1Sfvdl# ATA RAID configuration support, as found on some Promise controllers. 7071.1Sfvdlpseudo-device ataraid 7081.1Sfvdlld* at ataraid? vendtype ? unit ? 7091.1Sfvdl 7101.1Sfvdl# ATAPI devices 7111.1Sfvdl# flags have the same meaning as for IDE drives. 7121.37Sbouyercd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 7131.37Sbouyersd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 7141.37Sbouyerst* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 7151.37Sbouyeruk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 7161.37Sbouyer 7171.37Sbouyer 7181.37Sbouyer# NVM Express controllers and devices 7191.37Sbouyernvme* at pci? dev ? function ? 7201.37Sbouyerld* at nvme? nsid ? 7211.1Sfvdl 7221.1Sfvdl 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# Araneus Alea I/II TRNG 1064#ualea* at uhub? port ? configuration ? interface ? 1065 1066# IrDA and Consumer Ir devices 1067 1068# Toshiba Oboe 1069#oboe* at pci? dev ? function ? # broken -- vtophys 1070#irframe* at oboe? 1071 1072# PCI IEEE1394 controllers 1073fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 1074 1075# CardBus IEEE1394 controllers 1076fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 1077 1078ieee1394if* at fwohci? 1079fwip* at ieee1394if? # IP over IEEE1394 1080sbp* at ieee1394if? euihi ? euilo ? 1081 1082# Audio Devices 1083 1084# PCI audio devices 1085auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 1086auich* at pci? dev ? function ? # Intel/AMD/nVidia AC'97 Audio 1087auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 1088autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 1089auvia* at pci? dev ? function ? # VIA AC'97 audio 1090#azalia* at pci? dev ? function ? # High Definition Audio 1091clcs* at pci? dev ? function ? # Cirrus Logic CS4280 1092clct* at pci? dev ? function ? # Cirrus Logic CS4281 1093cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 1094eap* at pci? dev ? function ? # Ensoniq AudioPCI 1095emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 1096esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 1097esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 1098eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 1099fms* at pci? dev ? function ? # Forte Media FM801 1100neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 1101sv* at pci? dev ? function ? # S3 SonicVibes 1102yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 1103 1104# OPL[23] FM synthesizers 1105#opl0 at isa? port 0x388 # use only if not attached to sound card 1106opl* at cmpci? flags 1 1107opl* at eso? 1108opl* at fms? 1109opl* at sv? 1110 1111# High Definition Audio 1112hdaudio* at pci? dev ? function ? # High Definition Audio 1113hdafg* at hdaudiobus? 1114 1115# Audio support 1116audio* at audiobus? 1117 1118# The spkr driver provides a simple tone interface to the built in speaker. 1119spkr* at pcppi? # PC speaker 1120spkr* at audio? # PC speaker (synthesized) 1121 1122# MPU 401 UARTs 1123#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 1124mpu* at cmpci? 1125mpu* at eso? 1126mpu* at yds? 1127 1128# MIDI support 1129midi* at midibus? 1130midi* at pcppi? # MIDI interface to the PC speaker 1131 1132# FM-Radio devices 1133# PCI radio devices 1134#gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 1135 1136# Radio support 1137#radio* at gtp? 1138 1139 1140# Video capture devices 1141 1142auvitek* at uhub? # Auvitek AU0828 USB TV 1143coram* at pci? dev ? function ? # Conexant CX23885 PCI-E TV 1144cxdtv* at pci? dev ? function ? # Conexant CX2388[0-3] PCI TV 1145emdtv* at uhub? # Empia EM28xx USB TV 1146cir* at emdtv? 1147pseye* at uhub? # Sony PLAYSTATION(R) Eye webcam 1148uvideo* at uhub? # USB Video Class capture devices 1149 1150video* at videobus? # Analog capture interface 1151dtv* at dtvbus? # Digital capture interface 1152 1153 1154# TV cards 1155 1156# Brooktree 848/849/878/879 based TV cards 1157bktr* at pci? dev ? function ? 1158radio* at bktr? 1159 1160 1161# Bluetooth Controller and Device support 1162 1163# Bluetooth PCMCIA Controllers 1164bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 1165btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 1166 1167# Bluetooth SDIO Controllers 1168sbt* at sdmmc? 1169 1170# Bluetooth USB Controllers 1171ubt* at uhub? port ? 1172aubtfwl* at uhub? port ? 1173 1174# Bluetooth Device Hub 1175bthub* at bcsp? 1176bthub* at bt3c? 1177bthub* at btbc? 1178bthub* at btuart? 1179bthub* at sbt? 1180bthub* at ubt? 1181 1182# Bluetooth HID support 1183bthidev* at bthub? 1184 1185# Bluetooth Mouse 1186btms* at bthidev? reportid ? 1187wsmouse* at btms? mux 0 1188 1189# Bluetooth Keyboard 1190btkbd* at bthidev? reportid ? 1191wskbd* at btkbd? console ? mux 1 1192 1193# Bluetooth Apple Magic Mouse 1194btmagic* at bthub? 1195wsmouse* at btmagic? mux 0 1196 1197# Bluetooth Audio support 1198btsco* at bthub? 1199 1200 1201# SD/MMC/SDIO Controller and Device support 1202 1203# SD/MMC controller 1204sdhc* at pci? # SD Host Controller 1205rtsx* at pci? # Realtek RTS5209/RTS5229 Card Reader 1206sdhc* at cardbus? # SD Host Controller 1207sdmmc* at sdhc? # SD/MMC bus 1208sdmmc* at rtsx? # SD/MMC bus 1209 1210ld* at sdmmc? 1211 1212 1213# Middle Digital, Inc. PCI-Weasel serial console board control 1214# devices (watchdog timer, etc.) 1215weasel* at pci? 1216 1217# Virtio devices 1218virtio* at pci? dev ? function ? # Virtio PCI device 1219viomb* at virtio? # Virtio memory balloon device 1220ld* at virtio? # Virtio disk device 1221vioif* at virtio? # Virtio network device 1222viornd* at virtio? # Virtio entropy device 1223vioscsi* at virtio? # Virtio SCSI device 1224 1225# Pull in optional local configuration 1226cinclude "arch/amd64/conf/GENERIC.local" 1227 1228 1229# Pseudo-Devices 1230 1231pseudo-device crypto # /dev/crypto device 1232pseudo-device swcrypto # software crypto implementation 1233 1234# disk/mass storage pseudo-devices 1235pseudo-device bio # RAID control device driver 1236pseudo-device ccd # concatenated/striped disk devices 1237pseudo-device cgd # cryptographic disk devices 1238pseudo-device raid # RAIDframe disk driver 1239options RAID_AUTOCONFIG # auto-configuration of RAID components 1240#Options to enable various other RAIDframe RAID types. 1241#options RF_INCLUDE_EVENODD=1 1242#options RF_INCLUDE_RAID5_RS=1 1243#options RF_INCLUDE_PARITYLOGGING=1 1244#options RF_INCLUDE_CHAINDECLUSTER=1 1245#options RF_INCLUDE_INTERDECLUSTER=1 1246#options RF_INCLUDE_PARITY_DECLUSTERING=1 1247#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 1248pseudo-device fss # file system snapshot device 1249pseudo-device putter # for puffs and pud 1250 1251pseudo-device md # memory disk device (ramdisk) 1252options MEMORY_DISK_HOOKS # enable root ramdisk 1253options MEMORY_DISK_DYNAMIC # loaded via kernel module(7) 1254 1255pseudo-device vnd # disk-like interface to files 1256options VND_COMPRESSION # compressed vnd(4) 1257 1258 1259# network pseudo-devices 1260pseudo-device bpfilter # Berkeley packet filter 1261#pseudo-device carp # Common Address Redundancy Protocol 1262pseudo-device ipfilter # IP filter (firewall) and NAT 1263pseudo-device loop # network loopback 1264#pseudo-device mpls # MPLS pseudo-interface 1265pseudo-device ppp # Point-to-Point Protocol 1266pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1267pseudo-device sl # Serial Line IP 1268pseudo-device strip # Starmode Radio IP (Metricom) 1269pseudo-device irframetty # IrDA frame line discipline 1270pseudo-device tun # network tunneling over tty 1271pseudo-device tap # virtual Ethernet 1272pseudo-device gre # generic L3 over IP tunnel 1273pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 1274#pseudo-device faith # IPv[46] tcp relay translation i/f 1275pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 1276pseudo-device vlan # IEEE 802.1q encapsulation 1277pseudo-device bridge # simple inter-network bridging 1278#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 1279pseudo-device agr # IEEE 802.3ad link aggregation 1280pseudo-device l2tp # L2TPv3 interface 1281#pseudo-device pf # PF packet filter 1282#pseudo-device pflog # PF log if 1283#pseudo-device pfsync # PF sync if 1284#pseudo-device npf # NPF packet filter 1285 1286# 1287# accept filters 1288pseudo-device accf_data # "dataready" accept filter 1289pseudo-device accf_http # "httpready" accept filter 1290 1291# miscellaneous pseudo-devices 1292pseudo-device pty # pseudo-terminals 1293pseudo-device sequencer # MIDI sequencer 1294# rnd works; RND_COM does not on port i386 yet. 1295#options RND_COM # use "com" randomness as well (BROKEN) 1296pseudo-device clockctl # user control of clock subsystem 1297pseudo-device ksyms # /dev/ksyms 1298pseudo-device lockstat # lock profiling 1299pseudo-device bcsp # BlueCore Serial Protocol 1300pseudo-device btuart # Bluetooth HCI UART (H4) 1301 1302# a pseudo device needed for Coda # also needs CODA (above) 1303pseudo-device vcoda # coda minicache <-> venus comm. 1304 1305# a pseudo device needed for SMBFS 1306pseudo-device nsmb # experimental - SMB requester 1307 1308# wscons pseudo-devices 1309pseudo-device wsmux # mouse & keyboard multiplexor 1310pseudo-device wsfont 1311 1312# pseudo audio device driver 1313pseudo-device pad 1314 1315# userland interface to drivers, including autoconf and properties retrieval 1316pseudo-device drvctl 1317 1318options FILEASSOC # fileassoc(9) - needed by Veriexec 1319 # and PAX_SEGVGUARD 1320 1321# Veriexec 1322# 1323# a pseudo device needed for veriexec 1324pseudo-device veriexec 1325# 1326# Uncomment the fingerprint methods below that are desired. Note that 1327# removing fingerprint methods will have almost no impact on the kernel 1328# code size. 1329# 1330options VERIFIED_EXEC_FP_RMD160 1331options VERIFIED_EXEC_FP_SHA256 1332options VERIFIED_EXEC_FP_SHA384 1333options VERIFIED_EXEC_FP_SHA512 1334options VERIFIED_EXEC_FP_SHA1 1335options VERIFIED_EXEC_FP_MD5 1336 1337options PAX_SEGVGUARD=0 # PaX Segmentation fault guard 1338options PAX_MPROTECT=1 # PaX mprotect(2) restrictions 1339options PAX_MPROTECT_DEBUG=1 # PaX mprotect debug 1340options PAX_ASLR=1 # PaX Address Space Layout Randomization 1341options PAX_ASLR_DEBUG=1 # PaX ASLR debug 1342