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