ALL revision 1.53
1# $NetBSD: ALL,v 1.53 2017/02/26 12:03:14 rin Exp $ 2# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp 3# 4# ALL machine description file 5# 6# This machine description includes all devices and options and it is 7# used to compile-test the source and does not necessarily produce a 8# bootable or useful kernel. 9# 10# For further information on hardware support for this architecture, see 11# the intro(4) man page. For further information about kernel options 12# for this architecture, see the options(4) man page. For an explanation 13# of each device driver in this file see the section 4 man page for the 14# device. 15 16include "arch/amd64/conf/std.amd64" 17 18options INCLUDE_CONFIG_FILE # embed config file in kernel binary 19 20#ident "ALL-$Revision: 1.53 $" 21 22maxusers 64 # estimated number of users 23 24makeoptions USE_SSP=yes 25 26# CPU-related options. 27#options VM86 # virtual 8086 emulation 28#options USER_LDT # user-settable LDT; used by WINE 29options X86EMU # 386 Real Mode emulator 30#options PAE # PAE mode (36 bits physical addressing) 31 32# CPU features 33acpicpu* at cpu? # ACPI CPU (including frequency scaling) 34coretemp* at cpu? # Intel on-die thermal sensor 35est0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI) 36odcm0 at cpu0 # On-demand clock modulation 37#padlock0 at cpu0 # VIA PadLock 38powernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI) 39viac7temp* at cpu? # VIA C7 temperature sensor 40vmt0 at cpu0 # VMware Tools 41 42options PMC # performance-monitoring counters support 43 44options MULTIBOOT # Multiboot support (see multiboot(8)) 45 46# delay between "rebooting ..." message and hardware reset, in milliseconds 47options CPURESET_DELAY=2000 48 49# This option allows you to force a serial console at the specified 50# I/O address. see console(4) for details. 51options CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600 52# you don't want the option below ON iff you are using the 53# serial console option of the new boot strap code. 54options CONS_OVERRIDE # Always use above! independent of boot info 55 56# The following options override the memory sizes passed in from the boot 57# block. Use them *only* if the boot block is unable to determine the correct 58# values. Note that the BIOS may *correctly* report less than 640k of base 59# memory if the extended BIOS data area is located at the top of base memory 60# (as is the case on most recent systems). 61options REALBASEMEM=639 # size of base memory (in KB) 62options REALEXTMEM=15360 # size of extended memory (in KB) 63 64# The following options limit the overall size of physical memory 65# and/or the maximum address used by the system. 66# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map 67# and can deal with holes in the memory layout. 68options PHYSMEM_MAX_SIZE=64 # max size of physical memory (in MB) 69options PHYSMEM_MAX_ADDR=2048 # don't use memory above this (in MB) 70 71# Standard system options 72 73options INSECURE # disable kernel security levels - X needs this 74 75options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 76options NTP # NTP phase/frequency locked loop 77 78options KTRACE # system call tracing via ktrace(1) 79 80options CPU_UCODE # cpu ucode loading support 81 82# Note: SysV IPC parameters could be changed dynamically, see sysctl(8). 83options SYSVMSG # System V-like message queues 84options SYSVSEM # System V-like semaphores 85options SEMMNI=10 # number of semaphore identifiers 86options SEMMNS=60 # number of semaphores in system 87options SEMUME=10 # max number of undo entries per process 88options SEMMNU=30 # number of undo structures in system 89options SYSVSHM # System V-like memory sharing 90 91options MODULAR # new style module(7) framework 92options MODULAR_DEFAULT_AUTOLOAD 93 94options USERCONF # userconf(4) support 95options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 96options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 97 98# Beep when it is safe to power down the system (requires sysbeep) 99options BEEP_ONHALT 100# Some tunable details of the above feature (default values used below) 101options BEEP_ONHALT_COUNT=3 # Times to beep 102options BEEP_ONHALT_PITCH=1500 # Default frequency (in Hz) 103options BEEP_ONHALT_PERIOD=250 # Default duration (in msecs) 104 105# Alternate buffer queue strategies for better responsiveness under high 106# disk I/O load. 107options BUFQ_READPRIO 108options BUFQ_PRIOCSCAN 109 110# Diagnostic/debugging support options 111options DIAGNOSTIC # inexpensive kernel consistency checks 112options DEBUG # expensive debugging checks/support 113options LOCKDEBUG # expensive locking checks/support 114options DDB # in-kernel debugger 115options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic' 116options DDB_HISTORY_SIZE=512 # enable history editing in DDB 117options DDB_VERBOSE_HELP 118options KGDB # remote debugger 119options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 120#options IPKDB # IP Kernel Debugger 121#options IPKDBKEY="\"Pass_phrase_to_debug_over_network\"" 122makeoptions DEBUG="-g" # compile full symbol table 123options SYSCALL_STATS # per syscall counts 124options SYSCALL_TIMES # per syscall times 125options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris) 126options KDTRACE_HOOKS # kernel DTrace hooks 127options UVMHIST # kernhist for uvm subsystem 128options BIOHIST # kernhist for buff I/O 129 130# Compatibility options 131#options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI 132#options COMPAT_09 # NetBSD 0.9, 133#options COMPAT_10 # NetBSD 1.0, 134#options COMPAT_11 # NetBSD 1.1, 135#options COMPAT_12 # NetBSD 1.2 (and 386BSD and BSDI), 136#options COMPAT_13 # NetBSD 1.3 (and 386BSD and BSDI), 137#options COMPAT_14 # NetBSD 1.4, 138#options COMPAT_15 # NetBSD 1.5, 139options COMPAT_16 # NetBSD 1.6, 140options COMPAT_20 # NetBSD 2.0, 141options COMPAT_30 # NetBSD 3.0, 142options COMPAT_40 # NetBSD 4.0, 143options COMPAT_50 # NetBSD 5.0, 144options COMPAT_60 # NetBSD 6.0, and 145options COMPAT_70 # NetBSD 7.0 binary compatibility. 146options COMPAT_43 # 4.3BSD, 386BSD, and BSDI 147options COMPAT_44 # 4.4BSD 148options COMPAT_386BSD_MBRPART # recognize old partition ID 149options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 150 151options COMPAT_NETBSD32 # NetBSD 32-bit 152options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility 153options COMPAT_IBCS2 # binary compatibility with SCO and ISC 154options COMPAT_LINUX # binary compatibility with Linux 155options COMPAT_LINUX32 # binary compatibility with Linux 32-bit 156options COMPAT_FREEBSD # binary compatibility with FreeBSD 157options COMPAT_NDIS # NDIS network driver 158options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 159 160# Wedge support 161options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances 162options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges 163#options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges 164#options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges 165options DKWEDGE_METHOD_APPLE # Support Apple partitions as wedges 166options DKWEDGE_METHOD_RDB # Support RDB partitions as wedges 167 168# File systems 169file-system FFS # UFS 170file-system EXT2FS # second extended file system (linux) 171file-system LFS # log-structured file system 172file-system MFS # memory file system 173file-system NFS # Network File System client 174file-system NTFS # Windows/NT file system (experimental) 175file-system CD9660 # ISO 9660 + Rock Ridge file system 176file-system MSDOSFS # MS-DOS file system 177file-system FDESC # /dev/fd 178file-system KERNFS # /kern 179file-system NULLFS # loopback file system 180file-system OVERLAY # overlay file system 181file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 182file-system PROCFS # /proc 183file-system UMAPFS # NULLFS + uid and gid remapping 184file-system UNION # union file system 185file-system CODA # Coda File System; also needs vcoda (below) 186file-system SMBFS # experimental - CIFS; also needs nsmb (below) 187file-system SYSVBFS # System V boot file system 188file-system PTYFS # /dev/ptm support 189file-system TMPFS # Efficient memory file-system 190file-system UDF # experimental - OSTA UDF CD/DVD file-system 191file-system HFS # experimental - Apple HFS+ file system 192file-system EFS # Silicon Graphics Extent File System 193file-system FILECORE # Acorn filecore file system 194file-system ADOSFS # AmigaDOS file system 195file-system NILFS # experimental - NTT's NiLFS(2) 196file-system V7FS # 7th Edition(V7) File System 197file-system CHFS # Chip File System 198 199# File system options 200options QUOTA # legacy UFS quotas 201options QUOTA2 # new, in-filesystem UFS quotas 202options DISKLABEL_EI # disklabel Endian Independent support 203options FFS_EI # FFS Endian Independent support 204options WAPBL # File system journaling support 205options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 206options UFS_EXTATTR 207options LFS_KERNEL_RFW 208options LFS_EI # LFS endian-independent support - experimental 209options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental 210options LFS_EXTATTR # extended attributes for LFS - experimental 211options LFS_QUOTA # quotas for LFS - experimental 212options LFS_QUOTA2 # new-style quotas for LFS - experimental 213options NFSSERVER # Network File System server 214#options FFS_NO_SNAPSHOT # No FFS snapshot support 215options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 216 # immutable) behave as system flags. 217options V7FS_EI # V7FS Endian Independent support 218 219# Networking options 220options GATEWAY # packet forwarding 221options INET # IP + ICMP + TCP + UDP 222options INET6 # IPv6 223options IPSEC # IP security 224#options IPSEC_DEBUG # debug for IP security 225options MPLS # MultiProtocol Label Switching (needs mpls) 226options MROUTING # IP multicast routing 227options PIM # Protocol Independent Multicast 228options NETATALK # AppleTalk networking protocols 229options DCCP # Datagram Congestion Control Protocol 230options PPP_BSDCOMP # BSD-Compress compression support for PPP 231options PPP_DEFLATE # Deflate compression support for PPP 232options PPP_FILTER # Active filter support for PPP (requires bpf) 233options IPFILTER_LOG # ipmon(8) log support 234options IPFILTER_LOOKUP # ippool(8) support 235options IPFILTER_COMPAT # Compat for IP-Filter 236options IPFILTER_DEFAULT_BLOCK # block all packets by default 237options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 238options TCP_SIGNATURE # RFC 2385 support, used with BGP 239options SCTP # Stream Control Transmission Protocol 240 241options ALTQ # Manipulate network interfaces' output queues 242options ALTQ_BLUE # Stochastic Fair Blue 243options ALTQ_CBQ # Class-Based Queueing 244options ALTQ_CDNR # Diffserv Traffic Conditioner 245options ALTQ_FIFOQ # First-In First-Out Queue 246options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 247options ALTQ_HFSC # Hierarchical Fair Service Curve 248options ALTQ_LOCALQ # Local queueing discipline 249options ALTQ_PRIQ # Priority Queueing 250options ALTQ_RED # Random Early Detection 251options ALTQ_RIO # RED with IN/OUT 252options ALTQ_WFQ # Weighted Fair Queueing 253 254# These options enable verbose messages for several subsystems. 255# Warning, these may compile large string tables into the kernel! 256options ACPIVERBOSE # verbose ACPI device autoconfig messages 257options EISAVERBOSE # verbose EISA device autoconfig messages 258options MIIVERBOSE # verbose PHY autoconfig messages 259options MPVERBOSE # verbose mpbios config messages 260options PCIVERBOSE # verbose PCI device autoconfig messages 261options PCI_CONFIG_DUMP # verbosely dump PCI config space 262options PCMCIAVERBOSE # verbose PCMCIA configuration messages 263options SCSIVERBOSE # human readable SCSI error messages 264options USBVERBOSE # verbose USB device autoconfig messages 265options PNPBIOSVERBOSE # verbose PnP BIOS messages 266#options PNPBIOSDEBUG # more fulsome PnP BIOS debugging messages 267options MCAVERBOSE # verbose MCA device autoconfig messages 268options HDAUDIOVERBOSE # verbose HDAUDIO driver messages 269 270options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 271 272# 273# wscons options 274# 275# builtin terminal emulations 276options WSEMUL_SUN # sun terminal emulation 277options WSEMUL_VT100 # VT100 / VT220 emulation 278# customization of console and kernel output - see dev/wscons/wsdisplayvar.h 279options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8) 280options WS_DEFAULT_FG=WSCOL_WHITE 281options WS_DEFAULT_BG=WSCOL_BLACK 282options WS_DEFAULT_COLATTR="(0)" 283options WS_DEFAULT_MONOATTR="(0)" 284options WS_KERNEL_FG=WSCOL_GREEN 285options WS_KERNEL_BG=WSCOL_BLACK 286options WS_KERNEL_COLATTR="(0)" 287options WS_KERNEL_MONOATTR="(0)" 288# customization of console border color 289options WSDISPLAY_CUSTOM_BORDER # custom border colors via wsconsctl(8) 290options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color 291# compatibility to other console drivers 292options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 293options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 294options WSDISPLAY_COMPAT_USL # wsconscfg VT handling 295options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 296options WSKBD_EVENT_AUTOREPEAT # auto repeat in event mode 297#options WSKBD_USONLY # strip off non-US keymaps 298# don't attach pckbd as the console if no PS/2 keyboard is found 299options PCKBD_CNATTACH_MAY_FAIL 300# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 301options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver 302options UKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for ukbd driver 303# allocate a number of virtual screens at autoconfiguration time 304options WSDISPLAY_DEFAULTSCREENS=4 305# use a large software cursor that doesn't blink 306options PCDISPLAY_SOFTCURSOR 307# modify the screen type of the console; defaults to "80x25" 308options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 309# work around a hardware bug that loaded fonts don't work; found on ATI cards 310options VGA_CONSOLE_ATI_BROKEN_FONTSEL 311# issue VGA BIOS POST on resume 312options VGA_POST 313# console scrolling support. 314options WSDISPLAY_SCROLLSUPPORT 315# enable VGA raster mode capable of displaying multilingual text on console 316#options VGA_RASTERCONSOLE 317# enable splash screen support; requires hw driver support 318#options SPLASHSCREEN 319 320# Keylock support 321options KEYLOCK 322options secmodel_keylock # Requires options KEYLOCK 323 324# Kernel root file system and dump configuration. 325config netbsd root on ? type ? 326#config netbsd root on sd0a type ffs 327#config netbsd root on ? type nfs 328 329# 330# Device configuration 331# 332 333#apm0 at mainbus0 # Advanced power management 334 335# Tuning for power management, see apm(4) for more details. 336#options APM_V10_ONLY # Use only the APM 1.0 calls 337#options APM_NO_POWEROFF # Don't power off on halt(8) 338#options APM_POWER_PRINT # Print stats on the console 339#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 340 341 342# Basic Bus Support 343 344#IPMI support 345ipmi0 at mainbus? 346 347# Advanced Configuration and Power Interface 348 349# This option can be used to retrieve CPU and APIC information. 350# that I/O APICs can be used if ACPI is enabled below. 351options MPBIOS_SCANPCI # find PCI roots using MPBIOS 352options ACPI_SCANPCI # find PCI roots using ACPI 353 354acpi0 at mainbus0 355 356options ACPI_ACTIVATE_DEV # If set, activate inactive devices 357 358# ACPI devices 359apm* at acpi? # ACPI apm emulation 360acpiacad* at acpi? # ACPI AC Adapter 361acpibat* at acpi? # ACPI Battery 362acpibut* at acpi? # ACPI Button 363acpidalb* at acpi? # ACPI Direct Application Launch Button 364acpiec* at acpi? # ACPI Embedded Controller (late) 365acpiecdt* at acpi? # ACPI Embedded Controller (early) 366acpifan* at acpi? # ACPI Fan 367acpilid* at acpi? # ACPI Lid Switch 368acpipmtr* at acpi? # ACPI Power Meter (experimental) 369# XXX Do not enable this in a real kernel unless you also disable any 370# XXX "native" i2c controller. Otherwise you'll have two accessors to 371# XXX the same bus, and bad things (tm) will happen! 372acpismbus* at acpi? # ACPI SMBus CMI (experimental) 373acpitz* at acpi? # ACPI Thermal Zone 374acpivga* at acpi? # ACPI Display Adapter 375acpiout* at acpivga? # ACPI Display Output Device 376acpiwdrt* at acpi? # ACPI Watchdog Resource Table 377acpiwmi* at acpi? # ACPI WMI Mapper 378 379# Mainboard devices 380aibs* at acpi? # ASUSTeK AI Booster hardware monitor 381applesmc* at acpi? # Apple System Management Controller 382asus* at acpi? # ASUS hotkeys 383attimer* at acpi? # AT Timer 384com* at acpi? # Serial communications interface 385fdc* at acpi? # Floppy disk controller 386fujbp* at acpi? # Fujitsu Brightness & Pointer 387fujhk* at acpi? # Fujitsu Hotkeys 388hpacel* at acpi? # HP 3D DriveGuard accelerometer 389hpqlb* at acpi? # HP Quick Launch Buttons 390hpet* at acpihpetbus? # High Precision Event Timer (table) 391hpet* at acpinodebus? # High Precision Event Timer (device) 392joy* at acpi? # Joystick/Game port 393lpt* at acpi? # Parallel port 394mpu* at acpi? # Roland MPU-401 MIDI UART 395pckbc* at acpi? # PC keyboard controller 396pcppi* at acpi? # AT-style speaker sound 397thinkpad* at acpi? # IBM/Lenovo Thinkpad hotkeys 398#tpm* at acpi? # ACPI TPM (Experimental) 399ug* at acpi? # Abit uGuru Hardware monitor 400wb* at acpi? # Winbond W83L518D SD/MMC reader 401sdmmc* at wb? # SD/MMC bus 402wmidell* at acpiwmibus? # Dell WMI mappings 403wmieeepc* at acpiwmibus? # Asus Eee PC WMI mappings 404wmihp* at acpiwmibus? # HP WMI mappings 405wmimsi* at acpiwmibus? # MSI WMI mappings 406wss* at acpi? # NeoMagic 256AV in wss mode 407ym* at acpi? # Yamaha OPL3-SA[23] audio 408 409# Sony Vaio jog dial 410spic* at acpi? # Sony Programmable I/O Controller 411wsmouse* at spic? 412 413# Sony LCD brightness etc. 414sony* at acpi? # Sony Miscellaneous Controller 415 416# Toshiba Libretto devices 417vald* at acpi? 418 419# Apple System Management Controller devices 420applesmcfan* at applesmcbus? 421applesmctemp* at applesmcbus? 422 423# PCI bus support 424pci* at mainbus? bus ? 425pci* at pchb? bus ? 426pci* at ppb? bus ? 427 428# Configure PCI using BIOS information 429options PCIBIOS # PCI BIOS support 430options PCIBIOSVERBOSE # PCI BIOS verbose info 431options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11 432options PCIBIOS_INTR_GUESS # see pcibios(4) 433options PCIBIOS_LIBRETTO_FIXUP # this code makes the Toshiba Libretto 434 # L2/L3 work, but should not be enabled 435 # on anything else. 436options PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20 437 # work, but should not be enabled 438 # on anything else. 439#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup 440 441# PCI fixups, for both PCIBIOS and ACPI 442options PCI_ADDR_FIXUP # fixup PCI I/O addresses 443options PCI_BUS_FIXUP # fixup PCI bus numbering 444options PCI_INTR_FIXUP # fixup PCI interrupt routing 445 446# Temperatures 447amdnb_misc* at pci? # AMD NB Misc Configuration 448amdtemp* at amdnb_misc? # AMD CPU Temperature sensors 449 450# PCI bridges 451amdpcib* at pci? dev ? function ? # AMD 8111 PCI-ISA w/ HPET 452hpet* at amdpcib? 453ichlpcib* at pci? dev ? function ? # Intel ICH PCI-ISA w/ timecounter, 454 # watchdog, gpio, SpeedStep and HPET 455hpet0 at ichlpcib? # High Precision Event Timer 456fwhrng* at ichlpcib? # Intel 82802 FWH Random Number Generator 457tco* at ichlpcib? # TCO watchdog timer 458rdcpcib* at pci? dev ? function ? # RDC Vortex86/PMX-1000 PCI-ISA w/ 459pchb* at pci? dev ? function ? # PCI-Host bridges 460options AGP_X86 461pcib* at pci? dev ? function ? # PCI-ISA bridges 462ppb* at pci? dev ? function ? # PCI-PCI bridges 463# XXX 'puc's aren't really bridges, but there's no better place for them here 464puc* at pci? dev ? function ? # PCI "universal" comm. cards 465 466pwdog* at pci? dev ? function ? # QUANCOM PWDOG1 467 468agp* at pchb? 469 470 471# ISA bus support 472isa0 at amdpcib? 473isa0 at ichlpcib? 474isa0 at rdcpcib? 475isa0 at mainbus? 476isa0 at pcib? 477 478# IBM 4810 BSP cash drawer port 479ibmcd* at pci? dev ? function ? 480gpio* at ibmcd? 481 482# CardBus bridge support 483cbb* at pci? dev ? function ? 484cardslot* at cbb? 485 486# CardBus bus support 487cardbus* at cardslot? 488pcmcia* at cardslot? 489 490# Coprocessor Support 491 492# Console Devices 493 494# wscons 495pckbc0 at isa? # PC keyboard controller 496pckbd* at pckbc? # PC keyboard 497pms* at pckbc? # PS/2 mouse for wsmouse 498options PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads 499options PMS_ELANTECH_TOUCHPAD # Enable support for Elantech Touchpads 500vga0 at isa? 501vga* at pci? dev ? function ? 502pcdisplay0 at isa? # CGA, MDA, EGA, HGA 503wskbd* at pckbd? console ? 504wsmouse* at pms? mux 0 505 506chipsfb* at pci? dev ? function ? 507genfb* at pci? dev ? function ? 508gffb* at pci? dev ? function ? 509igsfb* at pci? dev ? function ? 510machfb* at pci? dev ? function ? 511pm2fb* at pci? dev ? function ? 512r128fb* at pci? dev ? function ? 513radeonfb* at pci? dev ? function ? 514tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics 515unichromefb* at pci? dev ? function ? # VIA Unichrome framebuffer console 516voodoofb* at pci? dev ? function ? 517wcfb* at pci? dev ? function ? 518wsdisplay* at wsemuldisplaydev? 519 520# DRI legacy drivers 521#i915drm* at drm? # Intel i915, i945 DRM driver 522#mach64drm* at drm? # mach64 (3D Rage Pro, Rage) DRM driver 523#mgadrm* at drm? # Matrox G[24]00, G[45]50 DRM driver 524#r128drm* at drm? # ATI Rage 128 DRM driver 525#radeondrm* at drm? # ATI Radeon DRM driver 526#savagedrm* at drm? # S3 Savage DRM driver 527#sisdrm* at drm? # SiS DRM driver 528#tdfxdrm* at drm? # 3dfx (voodoo) DRM driver 529#vboxdrm* at drm? # VirtualBox DRM driver 530#viadrm* at drm? # VIA UniChrome DRM driver 531 532# DRMKMS drivers 533i915drmkms* at pci? dev ? function ? 534intelfb* at intelfbbus? 535 536radeon* at pci? dev ? function ? 537radeondrmkmsfb* at radeonfbbus? 538 539nouveau* at pci? dev ? function ? 540nouveaufb* at nouveaufbbus? 541 542attimer0 at isa? 543pcppi0 at isa? 544sysbeep0 at pcppi? 545 546# Serial Devices 547 548# PCI serial interfaces 549com* at puc? port ? # 16x50s on "universal" comm boards 550cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 551cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 552 553# PCMCIA serial interfaces 554com* at pcmcia? function ? # Modems and serial cards 555 556pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 557com* at pcmcom? slave ? # ...and the slave devices 558 559# CardBus serial interfaces 560com* at cardbus? function ? # Modems and serial cards 561 562# Cardbus bridges 563#ppb* at cardbus? function ? # Cardbus-PCI bridges (www.magma.com) 564 565# ISA serial interfaces 566#options COM_HAYESP # adds Hayes ESP serial board support 567com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 568com1 at isa? port 0x2f8 irq 3 569com2 at isa? port 0x3e8 irq 5 570com3 at isa? port 0x2e8 irq 9 571ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards 572com* at ast? slave ? 573boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards 574boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016) 575boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016 576com* at boca? slave ? 577tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards 578com* at tcom? slave ? 579rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards 580com* at rtfps? slave ? 581cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards 582addcom0 at isa? port 0x108 irq 5 # Addonics FlexPort 8S 583com* at addcom? slave ? 584moxa0 at isa? port 0x100 irq 5 # MOXA C168H serial card (experimental) 585com* at moxa? slave ? 586ioat* at isa? port 0x220 irq 5 # BOCA IOAT66 6-port serial card 587com* at ioat? slave ? 588 589# Parallel Printer Interfaces 590 591# PCI parallel printer interfaces 592lpt* at puc? port ? # || ports on "universal" comm boards 593 594# ISA parallel printer interfaces 595lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 596lpt1 at isa? port 0x278 597lpt2 at isa? port 0x3bc 598 599# Hardware monitors 600 601# AMD 768 and 8111 power/ACPI controllers 602amdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface 603iic* at amdpm? # sensors below are on this bus 604 605# Acer Labs M7101 SMBus controller 606alipm* at pci? dev ? function ? 607iic* at alipm? 608 609# Intel ICH SMBus controller 610ichsmb* at pci? dev ? function ? 611iic* at ichsmb? 612 613# NVIDIA nForce2/3/4 SMBus controller 614nfsmbc* at pci? dev ? function ? 615nfsmb* at nfsmbc? 616iic* at nfsmb? 617 618# Intel PIIX4 power management controllers 619piixpm* at pci? dev ? function ? # PIIX4 compatible PM controller 620iic* at piixpm? # SMBus on PIIX4 621 622# dbCool Thermal monitor and fan controller 623dbcool* at iic? addr 0x2C # Unknown other motherboard(s) 624dbcool* at iic? addr 0x2D # Tyan S2881 625dbcool* at iic? addr 0x2E # Tyan S2882-D 626 627# IBM Hawk Integrated Systems Management Processor 628ibmhawk0 at iic? addr 0x37 629 630# LM7[89] and compatible hardware monitors 631# Use flags to select temp sensor type (see lm(4) man page for details) 632lm0 at iic? addr 0x2e flags 0x0 633 634# SMSC LPC47M192 hardware monitor 635smscmon* at iic? addr 0x2c 636#smscmon* at iic? addr 0x2d # (alternate address) 637 638# IBM Thinkpad Active Protection System 639aps0 at isa? port 0x1600 640 641# Fintek Super I/O with hardware monitor 642finsio0 at isa? port 0x4e 643 644# iTE IT87xxF Super I/O with watchdog and sensors support 645itesio0 at isa? port 0x2e 646 647# Winbond LPC Super I/O 648wbsio* at isa? port 0x2e 649wbsio* at isa? port 0x4e 650 651# LM7[89] and compatible hardware monitors 652lm0 at isa? port 0x290 flags 0x0 # other common: 0x280, 0x310 653lm* at wbsio? 654 655# SMSC LPC47B397 hardware monitor functions 656smsc0 at isa? port 0x02e 657 658# PC87366 hardware monitor 659nsclpcsio* at isa? 660gpio* at nsclpcsio? 661 662# Abit uGuru Hardware system monitor 663ug0 at isa? port 0xe0 664 665# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer 666viaenv* at pci? dev ? function ? 667 668# Serial Presence Detect capable memory modules and optional temp sensors 669spdmem* at iic? addr 0x50 670spdmem* at iic? addr 0x51 671spdmem* at iic? addr 0x52 672spdmem* at iic? addr 0x53 673spdmem* at iic? addr 0x54 674spdmem* at iic? addr 0x55 675spdmem* at iic? addr 0x56 676spdmem* at iic? addr 0x57 677sdtemp* at iic? addr 0x18 678sdtemp* at iic? addr 0x19 679sdtemp* at iic? addr 0x1a 680sdtemp* at iic? addr 0x1b 681sdtemp* at iic? addr 0x1c 682sdtemp* at iic? addr 0x1d 683sdtemp* at iic? addr 0x1e 684sdtemp* at iic? addr 0x1f 685 686# I2O devices 687iop* at pci? dev ? function ? # I/O processor 688iopsp* at iop? tid ? # SCSI/FC-AL ports 689ld* at iop? tid ? # block devices 690dpti* at iop? tid 0 # DPT/Adaptec control interface 691 692# GPIO devices 693gpio* at gpiosim? 694 695# 1-Wire support 696gpioow* at gpio? offset ? mask ? # 1-wire bitbanging via gpio 697gpioow* at gpio? 698onewire* at gpioow? 699 700# 1-Wire devices 701owtemp* at onewire? # Temperature sensors 702 703# I2C support 704gpioiic* at gpio? 705iic* at gpioiic? 706 707# Keylock support 708gpiolock* at gpio? 709 710# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio) 711soekrisgpio0 at isa? port 0x680 712 713# SCSI Controllers and Devices 714 715# PCI SCSI controllers 716adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 717adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 718ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 719ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI 720bha* at pci? dev ? function ? # BusLogic 9xx SCSI 721dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 722iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 723isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 724mfi* at pci? dev ? function ? # LSI MegaRAID SAS 725mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 726mpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 (Fusion-MPT) 727mpii* at pci? dev ? function ? # LSI Logic Fusion-MPT II 728nca* at pci? dev ? function ? # Domex DMX-3191D 729njs* at pci? dev ? function ? # Workbit NinjaSCSI-32 730pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 731siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 732esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 733options SIOP_SYMLED # drive the act. LED in software 734trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 735 736# PCMCIA SCSI controllers 737aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 738esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 739nca* at pcmcia? function ? # NCR53C400 SCSI 740spc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI 741 742# ISA SCSI controllers 743adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] SCSI 744aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 745aha1 at isa? port 0x334 irq ? drq ? 746aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI 747bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI 748bha1 at isa? port 0x334 irq ? drq ? 749# The "nca" and "dpt" probes might give false hits or hang your machine. 750dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID 751esp0 at isa? port 0x230 irq ? # Emulex ESP406 and Qlogic FAS408 SCSI 752nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller 753nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.) 754sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI 755uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI 756uha1 at isa? port 0x340 irq ? drq ? 757wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers 758wds1 at isa? port 0x358 irq 11 drq 5 759 760# CardBus SCSI cards 761adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 762ahc* at cardbus? function ? # Adaptec ADP-1480 763njs* at cardbus? function ? # Workbit NinjaSCSI-32 764 765# SCSI bus support 766scsibus* at scsi? 767 768# SCSI devices 769sd* at scsibus? target ? lun ? # SCSI disk drives 770st* at scsibus? target ? lun ? # SCSI tape drives 771cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 772ch* at scsibus? target ? lun ? # SCSI autochangers 773ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 774ss* at scsibus? target ? lun ? # SCSI scanners 775se* at scsibus? target ? lun ? # SCSI ethernet adapters 776uk* at scsibus? target ? lun ? # SCSI unknown 777 778# SCSI NIC 779se* at scsibus? target ? lun ? 780 781# RAID controllers and devices 782aac* at pci? dev ? function ? # Adaptec AAC family 783amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 784arcmsr* at pci? dev ? function ? # Areca SATA RAID controllers 785cac* at pci? dev ? function ? # Compaq PCI array controllers 786ciss* at pci? dev ? function ? # HP Smart Array controllers 787icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 788mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 789twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers 790twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 791 792ld* at aac? unit ? # logical disk devices 793ld* at amr? unit ? 794ld* at cac? unit ? 795ld* at icp? unit ? 796ld* at twa? unit ? 797ld* at twe? unit ? 798ld* at mlx? unit ? 799 800icpsp* at icp? unit ? # SCSI pass-through 801 802# IDE and related devices 803# PCI IDE controllers - see pciide(4) for supported hardware. 804# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 805# how to set up DMA modes for this chip. This may work, or may cause 806# a machine hang with some controllers. 807pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 808acardide* at pci? dev ? function ? # Acard IDE controllers 809aceride* at pci? dev ? function ? # Acer Lab IDE controllers 810ahcisata* at pci? dev ? function ? # AHCI SATA controllers 811artsata* at pci? dev ? function ? # Intel i31244 SATA controller 812cmdide* at pci? dev ? function ? # CMD tech IDE controllers 813cypide* at pci? dev ? function ? # Cypress IDE controllers 814geodeide* at pci? dev ? function ? # AMD Geode IDE controllers 815hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 816iteide* at pci? dev ? function ? # IT Express IDE controllers 817ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 818jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 819ahcisata* at jmide? 820mvsata* at pci? dev ? function ? # Marvell Hercules-I/II 821optiide* at pci? dev ? function ? # Opti IDE controllers 822piixide* at pci? dev ? function ? # Intel IDE controllers 823pdcide* at pci? dev ? function ? # Promise IDE controllers 824pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 825rccide* at pci? dev ? function ? # ServerWorks IDE controllers 826rdcide* at pci? dev ? function ? # RDC PMX-1000 IDE controllers 827satalink* at pci? dev ? function ? # SiI SATALink controllers 828schide* at pci? dev ? function ? # Intel SCH IDE controllers 829siisata* at pci? dev ? function ? # SiI SteelVine controllers 830siside* at pci? dev ? function ? # SiS IDE controllers 831slide* at pci? dev ? function ? # Symphony Labs IDE controllers 832svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 833stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 834toshide* at pci? dev ? function ? # TOSHIBA PICCOLO controllers 835viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 836 837# PCMCIA IDE controllers 838wdc* at pcmcia? function ? 839 840# CardBus IDE controllers 841njata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32 842siisata* at cardbus? function ? # SiI SteelVine controllers 843 844# ISA ST506, ESDI, and IDE controllers 845# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 846# fall back to 16bits I/O if 32bits I/O are not functional). 847# Some controllers pass the initial 32bit test, but will fail later. 848wdc0 at isa? port 0x1f0 irq 14 flags 0x00 849wdc1 at isa? port 0x170 irq 15 flags 0x00 850 851# ATA (IDE) bus support 852atabus* at ata? 853options ATADEBUG 854 855# IDE drives 856# Flags are used only with controllers that support DMA operations 857# and mode settings (e.g. some pciide controllers) 858# The lowest order four bits (rightmost digit) of the flags define the PIO 859# mode to use, the next set of four bits the DMA mode and the third set the 860# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 861# to use, and the last bit must be 1 for this setting to be used. 862# For DMA and UDMA, 0xf (1111) means 'disable'. 863# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 864# (0xc=1100, 0xa=1010, 0xf=1111) 865# 0x0000 means "use whatever the drive claims to support". 866wd* at atabus? drive ? flags 0x0000 867 868# ATA RAID configuration support, as found on some Promise controllers. 869pseudo-device ataraid 870ld* at ataraid? vendtype ? unit ? 871 872# ATAPI bus support 873atapibus* at atapi? 874 875# ATAPI devices 876# flags have the same meaning as for IDE drives. 877cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 878sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 879st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 880uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 881 882 883# NVM Express controllers and devices 884nvme* at pci? dev ? function ? 885ld* at nvme? nsid ? 886 887 888# Miscellaneous mass storage devices 889 890# ISA floppy 891fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 892#fdc1 at isa? port 0x370 irq ? drq ? 893fd* at fdc? drive ? # the drives themselves 894# some machines need you to do this instead of fd* 895fd0 at fdc0 drive 0 896 897# ISA CD-ROM devices 898mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives 899 900# ISA tape devices 901# note: the wt driver conflicts unpleasantly with SMC boards at the 902# same I/O address. The probe reprograms their EEPROMs. Don't 903# uncomment it unless you are actually using it. 904wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives 905 906# Network Interfaces 907 908# PCI network interfaces 909age* at pci? dev ? function ? # Attansic/Atheros L1 Gigabit Ethernet 910an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 911alc* at pci? dev ? function ? # Attansic/Atheros L1C/L2C Ethernet 912ale* at pci? dev ? function ? # Attansic/Atheros L1E Ethernet 913ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 914athn* at pci? dev ? function ? # Atheros AR9k (802.11a/g/n) 915atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 916bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 917bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 918bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 919bwi* at pci? dev ? function ? # Broadcom BCM43xx wireless 920cas* at pci? dev ? function ? # Sun Cassini/Cassini+ Ethernet 921dge* at pci? dev ? function ? # Intel 82597 10GbE LR 922en* at pci? dev ? function ? # ENI/Adaptec ATM 923ep* at pci? dev ? function ? # 3Com 3c59x 924epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 925esh* at pci? dev ? function ? # Essential HIPPI card 926et* at pci? dev ? function ? # Agere/LSI ET1310/ET1301 Gigabit 927ex* at pci? dev ? function ? # 3Com 3c90x[BC] 928fpa* at pci? dev ? function ? # DEC DEFPA FDDI 929fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 930gem* at pci? dev ? function ? # Apple GMAC and Sun ERI gigabit enet 931gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 932hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 933ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100 934iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG 935iwm* at pci? dev ? function ? # Intel Wireless WiFi Link 7xxx 936iwn* at pci? dev ? function ? # Intel PRO/Wireless 4965AGN 937ixg* at pci? dev ? function ? # Intel 8259x 10 gigabit 938jme* at pci? dev ? function ? # JMicron JMC2[56]0 Ethernet 939le* at pci? dev ? function ? # PCnet-PCI Ethernet 940lii* at pci? dev ? function ? # Atheros L2 Fast-Ethernet 941lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 942malo* at pci? dev ? function ? # Marvell Libertas Wireless 943mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 944msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 945mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 946#ndis* at pci? dev ? function ? # Experimental - NDIS Network Driver 947ne* at pci? dev ? function ? # NE2000-compatible Ethernet 948nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 949ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 950pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 951ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 952re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 953rtk* at pci? dev ? function ? # Realtek 8129/8139 954rtw* at pci? dev ? function ? # Realtek 8180L (802.11) 955sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 956sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 957skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 958sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 959ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 960stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 961ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 962tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 963tlp* at pci? dev ? function ? # DECchip 21x4x and clones 964txp* at pci? dev ? function ? # 3com 3cr990 965vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 966vmx* at pci? dev ? function ? # VMware VMXNET3 967vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 968vte* at pci? dev ? function ? # Vortex86 RDC R6040 Fast Ethernet 969wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 970wm* at pci? dev ? function ? # Intel 8254x gigabit 971wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG 972xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 973 974# PCMCIA network interfaces 975an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 976awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 977cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 978cs* at pcmcia? function ? # CS89xx Ethernet 979ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 980malo* at pcmcia? function ? # Marvell Libertas 981mbe* at pcmcia? function ? # MB8696x based Ethernet 982ne* at pcmcia? function ? # NE2000-compatible Ethernet 983ray* at pcmcia? function ? # Raytheon Raylink (802.11) 984sm* at pcmcia? function ? # Megahertz Ethernet 985# tr at pcmcia has problems with Cardbus bridges 986tr* at pcmcia? function ? # TROPIC based Token-Ring 987wi* at pcmcia? function ? # Lucent/Intersil WaveLAN/IEEE (802.11) 988xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 989com* at xirc? 990xi* at xirc? 991mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 992com* at mhzc? 993sm* at mhzc? 994 995# ISA network interfaces 996ate0 at isa? port 0x2a0 irq ? # AT1700 997cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 998ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 999eg0 at isa? port 0x280 irq 9 # 3c505 Ethernet cards 1000el0 at isa? port 0x300 irq 9 # 3c501 Ethernet cards 1001ep* at isa? port ? irq ? # 3c509 Ethernet cards 1002ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3c507 1003ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN 1004fmv0 at isa? port 0x2a0 irq ? # FMV-181/182 1005ix0 at isa? port 0x300 irq 10 # EtherExpress/16 1006iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 1007lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 1008depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA 1009le* at depca? 1010nele0 at isa? port 0x320 irq 9 drq 7 # NE2100 1011le* at nele? 1012ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial 1013bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan 1014le* at bicc? 1015ne0 at isa? port 0x280 irq 9 # NE[12]000 Ethernet cards 1016ne1 at isa? port 0x300 irq 10 1017sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet 1018tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring 1019tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring 1020tr* at isa? port ? irq ? # 3Com TROPIC based Token-Ring 1021we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 1022we1 at isa? port 0x300 iomem 0xcc000 irq 10 1023 1024# CardBus network cards 1025ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 1026athn* at cardbus? function ? # Atheros AR9k (802.11a/g/n) 1027atw* at cardbus? function ? # ADMtek ADM8211 (802.11) 1028ex* at cardbus? function ? # 3Com 3c575TX 1029fxp* at cardbus? function ? # Intel i8255x 1030ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g 1031re* at cardbus? function ? # Realtek 8139C+/8169/8169S/8110S 1032rtk* at cardbus? function ? # Realtek 8129/8139 1033rtw* at cardbus? function ? # Realtek 8180L (802.11) 1034tlp* at cardbus? function ? # DECchip 21143 1035 1036# MII/PHY support 1037acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 1038amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 1039atphy* at mii? phy ? # Attansic/Atheros PHYs 1040bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 1041brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 1042ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 1043dmphy* at mii? phy ? # Davicom DM9101 PHYs 1044etphy* at mii? phy ? # Agere/LSI ET1011 TruePHY Gig-E PHYs 1045exphy* at mii? phy ? # 3Com internal PHYs 1046gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 1047glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 1048gphyter* at mii? phy ? # NS83861 Gig-E PHY 1049icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 1050igphy* at mii? phy ? # Intel IGP01E1000 1051ihphy* at mii? phy ? # Intel 82577 PHYs 1052ikphy* at mii? phy ? # Intel 82563 PHYs 1053inphy* at mii? phy ? # Intel 82555 PHYs 1054iophy* at mii? phy ? # Intel 82553 PHYs 1055lxtphy* at mii? phy ? # Level One LXT-970 PHYs 1056makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 1057nsphy* at mii? phy ? # NS83840 PHYs 1058nsphyter* at mii? phy ? # NS83843 PHYs 1059pnaphy* at mii? phy ? # generic HomePNA PHYs 1060qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 1061rdcphy* at mii? phy ? # RDC R6040 internal PHY 1062rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 1063rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 1064sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 1065tlphy* at mii? phy ? # ThunderLAN PHYs 1066tqphy* at mii? phy ? # TDK Semiconductor PHYs 1067ukphy* at mii? phy ? # generic unknown PHYs 1068urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 1069 1070 1071# USB Controller and Devices 1072 1073# PCI USB controllers 1074ehci* at pci? dev ? function ? # Enhanced Host Controller 1075ohci* at pci? dev ? function ? # Open Host Controller 1076uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 1077xhci* at pci? dev ? function ? # eXtensible Host Controller 1078 1079# CardBus USB controllers 1080ehci* at cardbus? function ? # Enhanced Host Controller 1081ohci* at cardbus? function ? # Open Host Controller 1082uhci* at cardbus? function ? # Universal Host Controller (Intel) 1083 1084# ISA USB controllers 1085slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 1086 1087# PCMCIA USB controllers 1088slhci* at pcmcia? function ? # ScanLogic SL811HS 1089 1090# USB bus support 1091usb* at ehci? 1092usb* at ohci? 1093usb* at slhci? 1094usb* at uhci? 1095usb* at xhci? 1096 1097# USB Hubs 1098uhub* at usb? 1099uhub* at uhub? port ? 1100 1101# USB HID device 1102uhidev* at uhub? port ? configuration ? interface ? 1103 1104# USB Mice 1105ums* at uhidev? reportid ? 1106wsmouse* at ums? mux 0 1107 1108# USB Touchscreens 1109uts* at uhidev? reportid ? 1110wsmouse* at uts? mux 0 1111 1112# USB eGalax touch-panel 1113uep* at uhub? port ? 1114wsmouse* at uep? mux 0 1115 1116# USB Apple trackpad 1117uatp* at uhidev? reportid ? 1118wsmouse* at uatp? mux 0 1119 1120uyurex* at uhidev? reportid ? 1121 1122# USB Keyboards 1123ukbd* at uhidev? reportid ? 1124wskbd* at ukbd? console ? mux 1 1125 1126# USB TEMPer and TEMPerHUM 1127uthum* at uhidev? reportid ? 1128 1129# USB serial adapter 1130ucycom* at uhidev? reportid ? 1131 1132# USB Generic HID devices 1133uhid* at uhidev? reportid ? 1134 1135# USB LCDs and USB-VGA adaptors 1136udl* at uhub? port ? # DisplayLink DL-1x0/1x5 1137wsdisplay* at udl? 1138 1139# USB Printer 1140ulpt* at uhub? port ? configuration ? interface ? 1141 1142# USB Modem 1143umodem* at uhub? port ? configuration ? 1144ucom* at umodem? 1145 1146# Option N.V. Wireless WAN modems 1147uhso* at uhub? port ? configuration ? 1148 1149# USB Mass Storage 1150umass* at uhub? port ? configuration ? interface ? 1151wd* at umass? 1152 1153# USB audio 1154uaudio* at uhub? port ? configuration ? 1155 1156# USB MIDI 1157umidi* at uhub? port ? configuration ? 1158 1159# USB IrDA 1160# USB-IrDA bridge spec 1161uirda* at uhub? port ? configuration ? interface ? 1162irframe* at uirda? 1163 1164stuirda* at uhub? port ? configuration ? interface ? 1165irframe* at stuirda? 1166 1167# SigmaTel STIr4200 USB/IrDA Bridge 1168ustir* at uhub? port ? 1169irframe* at ustir? 1170 1171# KingSun/DonShine USB/IrDA Bridge 1172udsir* at uhub? port ? 1173irframe* at udsir? 1174 1175# Windows Media Center IR tranceiver 1176irmce* at uhub? port ? 1177cir* at irmce? 1178 1179# USB Ethernet adapters 1180aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 1181axe* at uhub? port ? # ASIX AX88172 based adapters 1182cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 1183cue* at uhub? port ? # CATC USB-EL1201A based adapters 1184kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 1185udav* at uhub? port ? # Davicom DM9601 based adapters 1186url* at uhub? port ? # Realtek RTL8150L based adapters 1187urndis* at uhub? port ? # Microsoft RNDIS specification 1188 1189# USB 802.11 adapters 1190atu* at uhub? port ? # Atmel AT76C50XX based adapters 1191athn* at uhub? port ? # Atheros AR9002U 1192otus* at uhub? port ? # Atheros AR9001U 1193ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g 1194rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 1195run* at uhub? port ? # Ralink Technology RT(2[78]|30)00 802.11a/b/g/n 1196upgt* at uhub? port ? # Intersil PrismGT 1197urtw* at uhub? port ? # Realtek RTL8187/RTL8187B 802.11b/g 1198urtwn* at uhub? port ? # Realtek RTL8188CU/RTL8192CU 802.11b/g/n 1199zyd* at uhub? port ? # Zydas ZD1211 1200 1201# Prolific PL2301/PL2302 host-to-host adapter 1202upl* at uhub? port ? 1203 1204# Serial adapters 1205uark* at uhub? port ? # ArkMicroChips 3116 serial adapter 1206ucom* at uark? portno? 1207 1208ubsa* at uhub? port ? # Belkin serial adapter 1209ucom* at ubsa? portno ? 1210 1211uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter 1212ucom* at uchcom? portno ? 1213 1214uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 1215ucom* at uftdi? portno ? 1216 1217uipaq* at uhub? port ? # iPAQ PDAs 1218ucom* at uipaq? portno ? 1219 1220umct* at uhub? port ? # MCT USB-RS232 serial adapter 1221ucom* at umct? portno ? 1222 1223uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 1224ucom* at uplcom? portno ? 1225 1226uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter 1227ucom* at uslsa? portno ? 1228 1229uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 1230ucom* at uvscom? portno ? 1231 1232uark* at uhub? port ? 1233ucom* at uark? portno ? 1234 1235moscom* at uhub? port ? 1236ucom* at moscom? portno ? 1237 1238uhmodem* at uhub? 1239ucom* at uhmodem? portno ? 1240 1241# RIM BlackBerry 1242uberry* at uhub? port ? 1243 1244# Apple iPad 1245uipad* at uhub? port ? 1246 1247# Diamond Multimedia Rio 500 1248urio* at uhub? port ? 1249 1250# USB Handspring Visor 1251uvisor* at uhub? port ? 1252ucom* at uvisor? 1253 1254# Kyocera AIR-EDGE PHONE 1255ukyopon* at uhub? port ? 1256ucom* at ukyopon? portno ? 1257 1258# USB scanners 1259uscanner* at uhub? port ? 1260 1261# USB scanners that use SCSI emulation, e.g., HP5300 1262usscanner* at uhub? port ? 1263 1264# Topfield TF5000PVR range of DVB recorders 1265utoppy* at uhub? port ? 1266 1267# Y@P firmware loader 1268uyap* at uhub? port ? 1269 1270# D-Link DSB-R100 USB radio 1271udsbr* at uhub? port ? 1272radio* at udsbr? 1273 1274# USB Generic driver 1275ugen* at uhub? port ? 1276 1277# USB 3G datacards 1278u3ginit* at uhub? port ? 1279u3g* at uhub? port ? 1280ucom* at u3g? 1281 1282# USB generic serial port (e.g., data over cellular) 1283ugensa* at uhub? port ? 1284ucom* at ugensa? 1285 1286# IrDA and Consumer Ir devices 1287 1288# Toshiba Oboe 1289oboe* at pci? dev ? function ? 1290irframe* at oboe? 1291 1292 1293# PCI IEEE1394 controllers 1294fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 1295 1296# CardBus IEEE1394 controllers 1297fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 1298 1299ieee1394if* at fwohci? 1300fwip* at ieee1394if? # IP over IEEE1394 1301sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394 1302 1303 1304# SD/MMC/SDIO Controller and Device support 1305 1306# PCI SD/MMC controller 1307sdhc* at pci? # SD Host Controller 1308 1309# CardBus SD/MMC controller 1310sdhc* at cardbus? function ? # SD Host Controller 1311 1312sdmmc* at sdhc? # SD/MMC bus 1313ld* at sdmmc? 1314 1315 1316# Audio Devices 1317 1318# PCI audio devices 1319auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 1320auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 1321auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 1322autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 1323auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 1324azalia* at pci? dev ? function ? # High Definition Audio 1325clcs* at pci? dev ? function ? # Cirrus Logic CS4280 1326clct* at pci? dev ? function ? # Cirrus Logic CS4281 1327cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 1328eap* at pci? dev ? function ? # Ensoniq AudioPCI 1329emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 1330esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 1331esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 1332eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 1333fms* at pci? dev ? function ? # Forte Media FM801 1334gcscaudio* at pci? dev ? function ? # AMD Geode CS5536 Companion Audio 1335neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 1336sv* at pci? dev ? function ? # S3 SonicVibes 1337yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 1338 1339# ISA audio devices 1340# the "aria" probe might give false hits 1341aria0 at isa? port 0x290 irq 10 # Aria 1342ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 1343gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound 1344pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum 1345sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster 1346wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System 1347cms0 at isa? port 0x220 # Creative Music System 1348 1349# OPL[23] FM synthesizers 1350opl0 at isa? port 0x388 # use only if not attached to sound card 1351opl* at cmpci? flags 1 1352opl* at eso? 1353opl* at ess? 1354opl* at fms? 1355opl* at sb? 1356opl* at sv? 1357opl* at wss? 1358opl* at yds? 1359opl* at ym? 1360 1361# High Definition Audio 1362hdaudio* at pci? dev ? function ? # High Definition Audio 1363hdafg* at hdaudiobus? 1364 1365# Audio support 1366audio* at audiobus? 1367 1368# MPU 401 UARTs 1369mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 1370mpu* at cmpci? 1371mpu* at eso? 1372mpu* at fms? 1373mpu* at sb? 1374mpu* at yds? 1375mpu* at ym? 1376 1377# MIDI support 1378midi* at midibus? 1379midi* at pcppi? # MIDI interface to the PC speaker 1380 1381# The spkr driver provides a simple tone interface to the built in speaker. 1382spkr* at pcppi? # PC speaker 1383spkr* at audio? # PC speaker (synthesized) 1384 1385 1386# FM-Radio devices 1387# ISA radio devices 1388az0 at isa? port 0x350 # Aztech/PackardBell FM Radio Card 1389az1 at isa? port 0x358 1390rt0 at isa? port 0x20c # AIMS Lab Radiotrack & compatible 1391rt1 at isa? port 0x284 1392rt2 at isa? port 0x30c 1393rt3 at isa? port 0x384 1394rtii0 at isa? port 0x20c # AIMS Lab Radiotrack II FM Radio Card 1395rtii1 at isa? port 0x30c 1396sf2r0 at isa? port 0x384 # SoundForte RadioLink SF16-FMR2 FM Radio Card 1397 1398# PCI radio devices 1399gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 1400 1401# Radio support 1402radio* at az? 1403radio* at gtp? 1404radio* at rt? 1405radio* at rtii? 1406radio* at sf2r? 1407 1408 1409# Video capture devices 1410 1411pseye* at uhub? # Sony PLAYSTATION(R) Eye webcam 1412uvideo* at uhub? # USB Video Class capture devices 1413auvitek* at uhub? # Auvitek AU0828 video capture devices 1414emdtv* at uhub? # Empia EM28xx video capture devices 1415video* at videobus? 1416dtv* at dtvbus? 1417 1418 1419# TV cards 1420 1421# Brooktree 848/849/878/879 based TV cards 1422bktr* at pci? dev ? function ? 1423radio* at bktr? 1424 1425# Conexant CX2388[0-3]-based DTV cards 1426cxdtv* at pci? dev ? function ? 1427iic* at cxdtv? 1428 1429# Conexant CX23885-based TV cards 1430coram* at pci? dev ? function ? 1431iic* at coram? 1432 1433isv* at isa? port 0x3e0 # IDEC Supervision/16 image capture 1434 1435# Bluetooth Controller and Device support 1436 1437# Bluetooth PCMCIA Controllers 1438bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 1439btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 1440 1441# Bluetooth SDIO Controller 1442sbt* at sdmmc? 1443 1444# Bluetooth USB Controllers 1445ubt* at uhub? port ? 1446aubtfwl* at uhub? port ? 1447 1448# Bluetooth Device Hub 1449bthub* at bcsp? 1450bthub* at bt3c? 1451bthub* at btbc? 1452bthub* at btuart? 1453bthub* at sbt? 1454bthub* at ubt? 1455 1456# Bluetooth HID support 1457bthidev* at bthub? 1458 1459# Bluetooth Mouse 1460btms* at bthidev? reportid ? 1461wsmouse* at btms? mux 0 1462 1463# Bluetooth Keyboard 1464btkbd* at bthidev? reportid ? 1465wskbd* at btkbd? console ? mux 1 1466 1467# Bluetooth Apple Magic Mouse 1468btmagic* at bthub? 1469wsmouse* at btmagic? mux 0 1470 1471# Bluetooth Audio support 1472btsco* at bthub? 1473 1474 1475# Mice 1476 1477# Cryptographic Devices 1478 1479# PCI cryptographic devices 1480hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 1481ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 1482 1483 1484# Trusted Platform Module 1485tpm* at isa? iomem 0xfed40000 irq 7 1486#tpm* at isa? port 0x02e 1487#tpm* at isa? port 0x04e 1488#tpm* at isa? port 0x07e 1489#tpm* at isa? port 0x0ee 1490 1491# Joysticks 1492 1493# PCI joysticks 1494joy* at pci? # Game ports (usually on audio cards) 1495joy* at eap? # See CAVEATS in eap(4) before enabling 1496joy* at eso? # ESS Solo-1 on-board joystick 1497 1498# ISA joysticks. Probe is a little strange; add only if you have one. 1499joy0 at isa? port 0x201 1500 1501 1502# Planetconnect Satellite receiver driver. 1503satlink0 at isa? port 0x300 drq 1 1504 1505# Middle Digital, Inc. PCI-Weasel serial console board control 1506# devices (watchdog timer, etc.) 1507weasel* at pci? 1508 1509# Virtio devices 1510virtio* at pci? dev ? function ? # Virtio PCI device 1511viomb* at virtio? # Virtio memory balloon device 1512ld* at virtio? # Virtio disk device 1513vioif* at virtio? # Virtio network device 1514 1515# Flash subsystem 1516flash* at flashbus? 1517 1518# NAND subsystem 1519nand* at nandbus? 1520 1521# Pull in optional local configuration 1522#include "arch/amd64/conf/ALL.local" 1523 1524 1525# Pseudo-Devices 1526 1527pseudo-device crypto # /dev/crypto device 1528pseudo-device swcrypto # software crypto implementation 1529 1530# disk/mass storage pseudo-devices 1531pseudo-device bio # RAID control device driver 1532pseudo-device ccd # concatenated/striped disk devices 1533pseudo-device cgd # cryptographic disk devices 1534pseudo-device raid # RAIDframe disk driver 1535options RAID_AUTOCONFIG # auto-configuration of RAID components 1536# Options to enable various other RAIDframe RAID types. 1537options RF_INCLUDE_EVENODD=1 1538options RF_INCLUDE_RAID5_RS=1 1539options RF_INCLUDE_PARITYLOGGING=1 1540options RF_INCLUDE_CHAINDECLUSTER=1 1541options RF_INCLUDE_INTERDECLUSTER=1 1542options RF_INCLUDE_PARITY_DECLUSTERING=1 1543options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 1544pseudo-device fss # file system snapshot device 1545 1546pseudo-device md # memory disk device (ramdisk) 1547options MEMORY_DISK_HOOKS # enable root ramdisk 1548options MEMORY_DISK_DYNAMIC # loaded via kernel module(7) 1549 1550pseudo-device vnd # disk-like interface to files 1551options VND_COMPRESSION # compressed vnd(4) 1552 1553pseudo-device dm # device-mapper disk driver 1554 1555# network pseudo-devices 1556pseudo-device bpfilter # Berkeley packet filter 1557pseudo-device carp # Common Address Redundancy Protocol 1558pseudo-device ipfilter # IP filter (firewall) and NAT 1559pseudo-device mpls # MPLS pseudo-interface 1560pseudo-device loop # network loopback 1561pseudo-device ppp # Point-to-Point Protocol 1562pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1563options PPPOE_SERVER # Enable PPPoE server via link0 1564pseudo-device sl # Serial Line IP 1565pseudo-device strip # Starmode Radio IP (Metricom) 1566pseudo-device irframetty # IrDA frame line discipline 1567pseudo-device tap # virtual Ethernet 1568pseudo-device tun # network tunneling over tty 1569pseudo-device gre # generic L3 over IP tunnel 1570pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 1571pseudo-device faith # IPv[46] tcp relay translation i/f 1572pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 1573pseudo-device vlan # IEEE 802.1q encapsulation 1574pseudo-device bridge # simple inter-network bridging 1575options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 1576pseudo-device agr # IEEE 802.3ad link aggregation 1577pseudo-device l2tp # L2TPv3 interface 1578#pseudo-device pf # PF packet filter 1579#pseudo-device pflog # PF log if 1580#pseudo-device pfsync # PF sync if 1581pseudo-device npf # NPF packet filter 1582pseudo-device kttcp 1583pseudo-device etherip # EtherIP 1584# srt is EXPERIMENTAL 1585pseudo-device srt # source-address-based routing 1586 1587# 1588# accept filters, built as module(7)s by default 1589pseudo-device accf_data # "dataready" accept filter 1590pseudo-device accf_http # "httpready" accept filter 1591 1592# miscellaneous pseudo-devices 1593pseudo-device pty # pseudo-terminals 1594pseudo-device sequencer # MIDI sequencer 1595# rnd works; RND_COM does not on port amd64 yet. 1596options RND_COM # use "com" randomness as well (BROKEN) 1597pseudo-device clockctl # user control of clock subsystem 1598pseudo-device ksyms # /dev/ksyms 1599pseudo-device lockstat # lock profiling 1600pseudo-device bcsp # BlueCore Serial Protocol 1601pseudo-device btuart # Bluetooth HCI UART (H4) 1602pseudo-device gpiosim 1 # GPIO simulator 1603 1604pseudo-device filemon # process monitor for make(1) 1605 1606# a pseudo device needed for Coda # also needs CODA (above) 1607pseudo-device vcoda # coda minicache <-> venus comm. 1608 1609# a pseudo device needed for SMBFS 1610pseudo-device nsmb # experimental - SMB requester 1611 1612# iSCSI initiator 1613pseudo-device iscsi 1614 1615# wscons pseudo-devices 1616pseudo-device wsmux # mouse & keyboard multiplexor 1617pseudo-device wsfont 1618 1619# software watchdog driver - swwdog(4) 1620pseudo-device swwdog 1621 1622#software environmental sensor - swsensor(4) 1623pseudo-device swsensor 1624 1625# pseudo audio device driver 1626pseudo-device pad 1627 1628# userland interface to drivers, including autoconf and properties retrieval 1629pseudo-device drvctl 1630 1631# Pass-to-Userspace Transporter 1632pseudo-device putter 1633 1634# Userspace block/char drivers 1635pseudo-device pud 1636 1637# Hardware-assisted data mover interface 1638pseudo-device dmoverio 1639 1640pseudo-device nandemulator 1641 1642options FILEASSOC # fileassoc(9) - required for Veriexec 1643 # and PAX_SEGVGUARD 1644 1645# Veriexec 1646pseudo-device veriexec 1647# 1648# Uncomment the fingerprint methods below that are desired. Note that 1649# removing fingerprint methods will have almost no impact on the kernel 1650# code size. 1651# 1652options VERIFIED_EXEC_FP_RMD160 1653options VERIFIED_EXEC_FP_SHA256 1654options VERIFIED_EXEC_FP_SHA384 1655options VERIFIED_EXEC_FP_SHA512 1656options VERIFIED_EXEC_FP_SHA1 1657options VERIFIED_EXEC_FP_MD5 1658 1659options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 1660options PAX_ASLR=0 # PaX Address Space Layout Randomization 1661#options PAX_SEGVGUARD=0 # PaX Segmentation fault guard 1662 1663# 1664# NetBSD: GENERIC_ISDN,v 1.16 2010/01/03 03:53:34 dholland Exp 1665# 1666 1667#--------------------------------------------------------------------- 1668# Various ISDN board drivers: 1669#--------------------------------------------------------------------- 1670# Legacy ISA cards (no P&P support): 1671# 1672# Teles S0/8 or Niccy 1008 1673options ISICISA_TEL_S0_8 1674#isic0 at isa? iomem 0xd0000 irq 2 1675# Teles S0/16 or Creatix ISDN-S0 or Niccy 1016 1676options ISICISA_TEL_S0_16 1677#isic0 at isa? port 0xd80 iomem 0xd0000 irq 9 1678# Teles S0/16.3 1679options ISICISA_TEL_S0_16_3 1680#isic0 at isa? port 0xd80 irq 12 1681# AVM A1 or AVM Fritz!Card 1682options ISICISA_AVM_A1 1683isic0 at isa? port 0x340 irq 10 1684# USRobotics Sportster ISDN TA intern 1685options ISICISA_USR_STI 1686#isic0 at isa? port 0x268 irq 10 1687# ITK ix1 micro 1688options ISICISA_ITKIX1 1689#isic0 at isa? port 0x398 irq 10 1690# 1691# XXX not ready yet: 1692# Active EICON/Diehl Cards: S, SX, SXn, SCOM or QUADRO 1693#daic0 at isa? iomem 0xd8000 irq 10 1694# 1695# 1696#--------------------------------------------------------------------- 1697# Supported PCI cards: 1698# 1699isic* at pci? 1700 1701# Winbond W6692 1702iwic* at pci? 1703 1704# AVM Fritz!PCI card 1705ifpci* at pci? 1706 1707# AVM Fritz!PCI V2 card 1708ifritz* at pci? 1709 1710# AVM B1/T1 PCI card 1711iavc* at pci? 1712 1713# 1714#--------------------------------------------------------------------- 1715# Supported PCMCIA cards: 1716# 1717options ISICPCMCIA_AVM_A1 # Fritz!Card PCMCIA Version 1718options ISICPCMCIA_ELSA_ISDNMC # ELSA MicroLink ISDN/MC 1719options ISICPCMCIA_ELSA_MCALL # ELSA MicroLink MC/all 1720options ISICPCMCIA_SBSPEEDSTAR2 # Sedlbauer speed star II 1721isic* at pcmcia? function ? 1722# 1723 1724#--------------------------------------------------------------------- 1725# ISDN user land devices, drivers and pseudo-devices. 1726#--------------------------------------------------------------------- 1727# 1728pseudo-device isdn # communication with userland daemon 1729pseudo-device isdntrc 2 # userland driver to do ISDN tracing 1730pseudo-device isdnctl # userland driver to control the whole thing 1731pseudo-device isdnbchan 4 # userland driver for access to raw B channel 1732pseudo-device isdntel 2 # userland driver for telephony 1733options IRIP_VJ # compile support for VJ compression 1734pseudo-device irip 2 # network driver for IP over raw HDLC ISDN 1735pseudo-device ippp 2 # synchronous PPP over ISDN 1736#--------------------------------------------------------------------- 1737 1738options ATHHAL_DEBUG 1739options A9PCIC_DEBUG 1740options AAC_DEBUG 1741options AAU_DEBUG 1742options AC97_DEBUG 1743options AC97_IO_DEBUG 1744options ACPI_APM_DEBUG 1745# 1746# ACPI_DEBUG_ALLOC can not be used with ACPI 1747# kernel modules. It requires also ACPI_DEBUG. 1748# ACPI_DEBUG_MUTEX is only for ACPICA debugging. 1749# 1750options ACPI_DEBUG 1751options ACPI_DEBUG_ALLOC 1752options ACPI_MUTEX_DEBUG 1753options ADB_DEBUG 1754options ADM1030_DEBUG 1755options ADT7467_DEBUG 1756options AE_DEBUG 1757options AGP_DEBUG 1758options AHADEBUG 1759options AHBDEBUG 1760options AHC_DEBUG=1 1761options AHD_DEBUG 1762options AHD_DEBUG_OPTS=1 1763options AH_DEBUG_ALQ 1764options AIC_DEBUG 1765options ALTQ_DEBUG 1766options AMD756_DEBUG 1767options AMRR_DEBUG 1768options AN_DEBUG 1769options APMDEBUG 1770options APMDEBUG_VALUE=1 1771options ARCKBD_DEBUG 1772options ARGO_DEBUG 1773options ARP_DEBUG 1774options ASC_DEBUG 1775options ATAPI_DEBUG_PROBE 1776options ATA_DEBUG 1777options ATA_RAID_DEBUG 1778options ATE_DEBUG 1779options ATMEL_DEBUG 1780options ATPPC_DEBUG 1781options ATW_BBPDEBUG 1782options ATW_DEBUG 1783options ATW_SYNDEBUG 1784options AUACER_DEBUG 1785options AUCCDEBUG 1786options AUCONV_DEBUG 1787options AUDIO_DEBUG 1788options AUE_DEBUG 1789options AUICH_DEBUG 1790options AUICH_MODEM_DEBUG 1791options AURATECONV_DEBUG 1792options AUSMBUS_PSC_DEBUG 1793options AWACS_DEBUG 1794options AWI_DEBUG 1795options AXE_DEBUG 1796options AZALIA_DEBUG 1797options BAH_DEBUG 1798options BCACHE_DEBUG 1799options BDEBUG 1800options BEDEBUG 1801options BHADEBUG 1802options BIOS_MEMORY_DEBUG 1803options BIT3DEBUG 1804options BKTR_RADIO_DEBUG 1805options BLUETOOTH_DEBUG 1806options BMAC_DEBUG 1807options BMD_DEBUG 1808options BOOTP_DEBUG 1809options BOOTP_DEBUGx 1810options BOOTXX_DEBUG 1811options BOOT_DEBUG 1812options BT463_DEBUG 1813options BTDEBUG 1814options BTHSET_DEBUG 1815options BTLBDEBUG 1816options BTNMGRDEBUG 1817options BUS_DMA_DEBUG 1818options BUS_SPACE_DEBUG 1819options CACHE_DEBUG 1820options CARDBUS_DEBUG 1821options CD18XXDEBUG 1822options CGSIX_DEBUG 1823options CHANGER_DEBUG 1824options CISS_DEBUG 1825options CKSUMDEBUG 1826options CLOCKDEBUG 1827options CLOCK_DEBUG 1828options CNW_DEBUG 1829options COMDEBUG 1830options COMVRIPDEBUG 1831options COM_DEBUG 1832options COM_HPCIODEBUG 1833options CONSDEBUG 1834options CRYPTO_DEBUG 1835options CS4280_DEBUG 1836options CS_DEBUG 1837options CUE_DEBUG 1838options CY_DEBUG 1839options CZ_DEBUG 1840options DAIC_DEBUG 1841options DBRI_DEBUG 1842options DDB_DEBUG 1843options DEBUGBUG 1844options DEBUGGER_THREADING 1845options DEBUGTERM 1846options DEBUGXXX 1847options DEBUG_1284 1848options DEBUG_1543 1849options DEBUG_A4000 1850options DEBUG_ALIGN 1851options DEBUG_ALLOC 1852options DEBUG_AMIGA_IF_ED 1853options DEBUG_AOUTM68K 1854options DEBUG_BEFOREMMU 1855options DEBUG_BIOSCALL 1856options DEBUG_CHUNK_DIR 1857options DEBUG_CLOCK 1858options DEBUG_COFF 1859options DEBUG_CP0_ACCESS 1860options DEBUG_CURSOR 1861options DEBUG_DDB 1862options DEBUG_DR 1863options DEBUG_EMUL 1864options DEBUG_ET4000 1865options DEBUG_EXEC 1866options DEBUG_EXT2 1867options DEBUG_FAULT_CORRECTION 1868options DEBUG_FFB 1869options DEBUG_FIND_COMPORT 1870options DEBUG_FIND_PCIC 1871options DEBUG_FIND_PCIC_I82365SL_ONLY 1872options DEBUG_FPE 1873options DEBUG_GPIO 1874options DEBUG_GPIO2 1875options DEBUG_HPUX 1876options DEBUG_IBCS2 1877options DEBUG_IPR_VJ 1878options DEBUG_ISAPNP 1879options DEBUG_ISSIGNAL 1880options DEBUG_KERNADDR_ACCESS 1881options DEBUG_KERNEL_START 1882options DEBUG_KGDB 1883options DEBUG_LED 1884options DEBUG_LINUX 1885options DEBUG_LINUX_FUTEX 1886options DEBUG_MEMLOAD 1887options DEBUG_MEMORY_LIST 1888options DEBUG_MEMSIZE 1889options DEBUG_NEG 1890options DEBUG_NFS_BOOT_DHCP 1891options DEBUG_P9100 1892options DEBUG_PAGE0 1893options DEBUG_PCI_MACHDEP 1894options DEBUG_PGRP 1895options DEBUG_POOL 1896options DEBUG_PORTF 1897options DEBUG_PROM 1898options DEBUG_PTM 1899options DEBUG_RAWFS 1900options DEBUG_RPC 1901options DEBUG_SNAPPER 1902options DEBUG_SVR4 1903options DEBUG_SYNC 1904options DEBUG_TERM 1905options DEBUG_UL 1906options DEBUG_VAL 1907options DEBUG_WITH_STDIO 1908options DEVSW_DEBUG 1909options DEV_DEBUG 1910options DISKLABEL_DEBUG 1911options DISK_DEBUG 1912options DL_DEBUG 1913options DMAC_DEBUG 1914options DMA_DEBUG 1915options DMCDEBUG 1916options DO_I4B_MAXDEBUG 1917options DRACORAWKEYDEBUG 1918options EARLY_DEBUG_EVENT 1919options EBUS_DEBUG 1920options EDC_DEBUG 1921options EDEBUG 1922options ED_DEBUG 1923options EFINET_DEBUG 1924options EGAFONTDEBUG 1925options EGDEBUG 1926options EHCI_DEBUG 1927options EL_DEBUG 1928options EMAC3_DEBUG 1929options EMUXKI_DEBUG 1930options EM_DEBUG 1931options EN_DEBUG 1932options EN_DEBUG_RANGE 1933options EPGPIO_DEBUG 1934options EPICMEDIADEBUG 1935options EPPCIC_DEBUG 1936options ESDEBUG 1937options ESP_DEBUG 1938options ESP_SBUS_DEBUG 1939options ESS_ISA_DEBUG 1940options ETHER_DEBUG 1941options EWSKBD_DEBUG 1942options EXEC_DEBUG 1943options EXTENT_DEBUG 1944options EXTREME_DEBUG 1945options EXTREME_EXTREME_DEBUG 1946options FBDEBUG 1947options FDDEBUG 1948options FD_DEBUG 1949options FFBDEBUG 1950options FILECORE_DEBUG 1951options FILECORE_DEBUG_BR 1952options FIRESTARDEBUG 1953options FLASH_DEBUG 1954options FLP_DEBUG 1955options FMV_DEBUG 1956options FOO_DEBUG 1957options FPU_DEBUG 1958options GDROMDEBUG 1959options GEM_DEBUG 1960options GEM_DEBUG1 1961options GEODE_DEBUG 1962options GEOM_DEBUG 1963options GE_DEBUG 1964options GMAC_DEBUG 1965options GPIO_DEBUG 1966options GRE_DEBUG 1967options GSFB_DEBUG_MONITOR 1968options GTFDEBUG 1969options HD64461PCMCIA_DEBUG 1970options HD64461VIDEO_DEBUG 1971options HD64465PCMCIA_DEBUG 1972options HDAUDIO_DEBUG 1973options HDAFG_DEBUG 1974options HDLCDEBUG 1975options HIFN_DEBUG 1976options HMEDEBUG 1977options HPCAPMDEBUG 1978options HPC_DEBUG_INTERRUPT_MONITOR 1979options HPC_DEBUG_LCD 1980options HP_DEBUG 1981options HSCXADEBUG 1982options HSCXBDEBUG 1983options I2ODEBUG 1984options I4BISPPPDEBUG 1985options I4B_MBUF_DEBUG 1986options I4B_MBUF_TYPE_DEBUG 1987options IBCS2_DEBUG 1988options ICONV_DEBUG 1989options ICP_DEBUG 1990options IEDEBUG 1991options IEEE80211_DEBUG_REFCNT 1992options IFAREF_DEBUG 1993options IFA_STATS 1994options IFMEDIA_DEBUG 1995options IHA_DEBUG_STATE 1996options INTRDEBUG 1997options INTR_DEBUG 1998options IPAQ_LCD_DEBUG 1999options IPF_DEBUG 2000options IPSEC_DEBUG 2001options IPW_DEBUG 2002options IP_RCMD_PROXY_DEBUG 2003options IRFRAMET_DEBUG 2004options IRFRAME_DEBUG 2005options IRQ_DEBUG 2006options ISACDEBUG 2007options ISADMA_DEBUG 2008options ISO_DEBUG 2009options IT8368DEBUG 2010options ITE8181DEBUG 2011options ITK_PROBE_DEBUG 2012options IWI_DEBUG 2013options IWM_DEBUG 2014options IYDEBUG 2015options IYMEMDEBUG 2016options J6X0TP_DEBUG 2017options J720TP_DEBUG 2018options KBD_DEBUG 2019options KB_DEBUG 2020options KERNEL_DEBUG 2021options KLOADER_DEBUG 2022options KSTACK_DEBUG 2023options KSYMS_DEBUG 2024options KUE_DEBUG 2025options LANA_DEBUG 2026options LCD_DEBUG 2027options LDT_DEBUG 2028options LEDEBUG 2029options LE_DEBUG 2030options LIFDEBUG 2031options LINUX_SG_DEBUG 2032options LLCDEBUG 2033options LLC_DEBUG 2034options LOADER_DEBUG 2035options LOAD_DEBUG_INFO 2036options LOCKF_DEBUG 2037options LPT_DEBUG 2038options MAGMA_DEBUG 2039options MAPLE_DEBUG 2040options MB8795_DEBUG 2041options MCDDEBUG 2042options MCDEBUG 2043options MCHAIN_DEBUG 2044options MEC_DEBUG 2045options MEDIABAY_DEBUG 2046options MEMORY_MAP_DEBUG 2047options MESH_DEBUG 2048options MIDI_DEBUG 2049options MLYDEBUG 2050options MMEYEPCMCIADEBUG 2051options MOUSE_DEBUG 2052options MPDEBUG 2053options MQ200_DEBUG 2054options MRT6DEBUG 2055options MSDOSFS_DEBUG 2056options MSG_DEBUG_OK 2057options MULAW_DEBUG 2058options MYDEV_DEBUG 2059options NB_DEBUG 2060options NCR5380_DEBUG 2061options NCR53C9X_DEBUG 2062options ND6_DEBUG 2063options NDEBUG 2064options ND_DEBUG 2065options NETATALKDEBUG 2066options NETDOCK_DEBUG_DRIVER 2067options NETIF_DEBUG 2068options NET_DEBUG 2069options NET_MPSAFE 2070options NFE_DEBUG 2071options NFS_DEBUG 2072options NFS_DEBUG_COMMIT 2073options NIDEBUG 2074options NJSC32_DEBUG 2075options NON_DEBUG 2076options NOTDEF_DEBUG 2077options NOT_DEBUG 2078options NSIODEBUG 2079options NTFS_DEBUG 2080options OBOE_DEBUG 2081options OFW_DEBUG 2082options OHCI_DEBUG 2083options OLD_ELF_DEBUG 2084options ONEWIRE_DEBUG 2085options ONOE_DEBUG 2086options OPTPOINTDEBUG 2087options OSIOP_DEBUG 2088options OST_DEBUG 2089options P1212_DEBUG 2090options PARDEBUG 2091options PBMS_DEBUG 2092options PCIINTR_DEBUG 2093options PCI_DEBUG 2094options PCKBCDEBUG 2095options PCKBPORTDEBUG 2096options PCMCIACISDEBUG 2097options PCMCIADEBUG 2098options PDCDEBUG 2099options PDINFO_DEBUG 2100options PFCKBD_DEBUG 2101options PFDEBUG 2102options PFLOGDEBUG 2103options PHYSMEMDEBUG 2104options PI1PPC_DEBUG 2105options PIIXPM_DEBUG 2106options PIIX_DEBUG 2107options PIOC_DEBUG 2108options PLCOM_DEBUG 2109options PLD_WDOG_DEBUG 2110options PLIP_DEBUG 2111options PLUMICUDEBUG 2112options PLUMIOBUSDEBUG 2113options PLUMPCMCIA_DEBUG 2114options PLUMPOWERDEBUG 2115options PLUMVIDEODEBUG 2116options PMAPDEBUG 2117options PMAP_COUNT_DEBUG 2118options PMAP_DEBUG 2119options PMAP_DEBUG_MODIFIED 2120options PMON_DEBUG 2121options PMSDEBUG 2122options PNPBIOSDEBUG 2123options PNPBIOSDEBUG_VALUE=1 2124options PNPBIOSEVENTSDEBUG 2125options PORT_DEBUG 2126options PPBUS_DEBUG 2127options PPPOE_DEBUG 2128options PROFILER_DEBUG 2129options PSH3TP_DEBUG 2130options PWCTLDEBUG 2131options QEDEBUG 2132options QN_DEBUG 2133options QN_DEBUG1 2134options QTDEBUG 2135options RAL_DEBUG 2136options RARP_DEBUG 2137options RBUS_DEBUG 2138options RCONS_DEBUG 2139options RDDEBUG 2140options REALLYDEBUG 2141options RND_DEBUG 2142options ROMDEBUG 2143options RPC_DEBUG 2144options RQDEBUG 2145options RTC_DEBUG 2146options RTSOCK_DEBUG 2147options RTW_DEBUG 2148options SACKBCDEBUG 2149options SBC_DEBUG 2150options SBJCN_DEBUG 2151options SBMACDEBUG 2152options SBSCN_DEBUG 2153options SCC_DEBUG 2154options SCHED_DEBUG 2155options SCIF_DEBUG 2156options SCI_DEBUG 2157options SCR_DEBUG 2158options SCSIDEBUG 2159options SCSIPI_DEBUG 2160options SCSI_DEBUG 2161options SCTP_DEBUG 2162options SD_DEBUG 2163options SEA_DEBUG 2164options SEA_DEBUGQUEUE 2165options SEDEBUG 2166options SED_DEBUG 2167options SEEQ8005_DEBUG 2168options SEM_DEBUG 2169options SEQUENCER_DEBUG 2170options SER_DEBUG 2171options SFAS_DEBUG 2172options SGMAP_DEBUG 2173options SHMDEBUG 2174options SIF_DEBUG 2175options SIOP_DEBUG 2176options SIOP_DEBUG_DR 2177options SIOP_DEBUG_INTR 2178options SIOP_DEBUG_SCHED 2179options SK_DEBUG 2180options SLHCI_DEBUG 2181options SMAP_DEBUG 2182options SMB_IOD_DEBUG 2183options SMB_SOCKETDATA_DEBUG 2184options SMB_SOCKET_DEBUG 2185options SMB_VNODE_DEBUG 2186options SNAPPER_DEBUG 2187options SNDEBUG 2188options SOCKBUF_DEBUG 2189options SOFTINT_INTR 2190options SONIC_DEBUG 2191options SPARC_PCI_DEBUG 2192options SPC_DEBUG 2193options SPIC_DEBUG 2194options SPIFI_DEBUG 2195options SPKRDEBUG 2196options SPLDEBUG 2197options SPPDEBUG 2198options SSCOM_DEBUG 2199options STIDEBUG 2200options STP4020_DEBUG 2201options SUNSCPAL_DEBUG 2202options SYNAPTICSDEBUG 2203options SYSCALL_DEBUG 2204options SYSCTL_DEBUG_CREATE 2205options SYSCTL_DEBUG_SETUP 2206options SYSVBFS_VNOPS_DEBUG 2207options TC5165DEBUG 2208options TCICDEBUG 2209options TCICISADEBUG 2210options TCPISS_DEBUG 2211options TCPREASS_DEBUG 2212options TCTRLDEBUG 2213options TIMECOUNTER_DEBUG 2214options TIMEKEEPER_DEBUG 2215options TLDEBUG 2216options TLDEBUG_ADDR 2217options TLDEBUG_RX 2218options TLDEBUG_TX 2219options TLP_DEBUG 2220options TP_DEBUG 2221options TRACE_DEBUG 2222options TRAPDEBUG 2223options TRAP_SIGDEBUG 2224options TRISADEBUG 2225options TRM_DEBUG 2226options TROPICDEBUG 2227options TRTCMISADEBUG 2228options TSDEBUG 2229options TSLOT_DEBUG 2230options TTY_DEBUG 2231options TUDEBUG 2232options TULIP_DEBUG 2233options TWA_DEBUG 2234options TWE_DEBUG 2235options TX3912VIDEO_DEBUG 2236options TX39BIU_DEBUG 2237options TX39CLOCK_DEBUG 2238options TX39ICU_DEBUG 2239options TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT 2240options TX39IO_DEBUG 2241options TX39IRDEBUG 2242options TX39POWER_DEBUG 2243options TX39SIBDEBUG 2244options TX39UARTDEBUG 2245options TX39UART_DEBUG 2246options UAUDIO_DEBUG 2247options UBSA_DEBUG 2248options UBSEC_DEBUG 2249options UBT_DEBUG 2250options UCB1200_DEBUG 2251options UCBIO_DEBUG 2252options UCBSNDDEBUG 2253options UCBTPDEBUG 2254options UCOM_DEBUG 2255options UCYCOM_DEBUG 2256options UDAV_DEBUG 2257options UDSBR_DEBUG 2258options UFTDI_DEBUG 2259options UGENSA_DEBUG 2260options UGEN_DEBUG 2261options UHADEBUG 2262options UHCI_DEBUG 2263options UHIDEV_DEBUG 2264options UHID_DEBUG 2265options UHUB_DEBUG 2266options UIPAQ_DEBUG 2267options UIRDA_DEBUG 2268options UISDATA_DEBUG 2269options UKBD_DEBUG 2270options UKYOPON_DEBUG 2271options ULPT_DEBUG 2272options UL_DEBUG 2273options UMASS_DEBUG 2274options UMCT_DEBUG 2275options UMIDIQUIRK_DEBUG 2276options UMIDI_DEBUG 2277options UMODEM_DEBUG 2278options UNIV_DEBUG 2279options UPLCOM_DEBUG 2280options UPL_DEBUG 2281options URIO_DEBUG 2282options URLPHY_DEBUG 2283options URL_DEBUG 2284options USB_DEBUG 2285options USCANNER_DEBUG 2286options USEFULL_DEBUG 2287options USSCANNER_DEBUG 2288options USTIR_DEBUG 2289options UTOPPY_DEBUG 2290options UVIDEO_DEBUG 2291options UVISOR_DEBUG 2292options UVSCOM_DEBUG 2293options VCONS_DEBUG 2294options VERYLOWDEBUG 2295options VGAFONTDEBUG 2296options VIA8231_DEBUG 2297options VIAENV_DEBUG 2298options VIAPCIB_DEBUG 2299options VIDCAUDIO_DEBUG 2300options VMEDEBUG 2301options VOODOOFB_DEBUG 2302options VR4181AIU_DEBUG 2303options VRAIU_DEBUG 2304options VRBCUDEBUG 2305options VRC2GPIODEBUG 2306options VRC2PWMDEBUG 2307options VRC4173BCU_DEBUG 2308options VRDCU_DEBUG 2309options VRDMAAU_DEBUG 2310options VRGIUDEBUG 2311options VRIP_DEBUG 2312options VRISADEBUG 2313options VRKIUDEBUG 2314options VRLEDDEBUG 2315options VRPIUDEBUG 2316options VRPMUDEBUG 2317options VRRTCDEBUG 2318options VS_DEBUG 2319options VT100_DEBUG 2320options VTOC_DEBUG 2321options WDCNDELAY_DEBUG 2322options WDSDEBUG 2323options WE_DEBUG 2324options WFQ_DEBUG 2325options WI_DEBUG 2326options WI_RING_DEBUG 2327options WM_DEBUG 2328options WSKBD_DEBUG 2329options WSMUX_DEBUG 2330options XBD_DEBUG 2331options XDC_DEBUG 2332options XDDEBUG 2333options XDEBUG 2334options XENDEBUG 2335options XENDEBUG_LOW 2336options XENDEBUG_NET 2337options XENDEBUG_SYNC 2338options XENDEBUG_VBD 2339options XENNET_DEBUG 2340options XENNET_DEBUG_DUMP 2341options XEN_CLOCK_DEBUG 2342options XE_DEBUG 2343options XHCI_DEBUG 2344options XXXXENDEBUG_LOW 2345options XYC_DEBUG 2346options ZSKBD_DEBUG 2347options ZSMACDEBUG 2348options xSCSI_DEBUG 2349options xSD_DEBUG 2350