GENERIC revision 1.190
1# $NetBSD: GENERIC,v 1.190 2007/12/26 16:28:17 joerg Exp $ 2# 3# GENERIC machine description file 4# 5# This machine description file is used to generate the default NetBSD 6# kernel. The generic kernel does not include all options, subsystems 7# and device drivers, but should be useful for most applications. 8# 9# The machine description file can be customised for your specific 10# machine to reduce the kernel size and improve its performance. 11# 12# For further information on compiling NetBSD kernels, see the config(8) 13# man page. 14# 15# For further information on hardware support for this architecture, see 16# the intro(4) man page. For further information about kernel options 17# for this architecture, see the options(4) man page. For an explanation 18# of each device driver in this file see the section 4 man page for the 19# device. 20 21include "arch/amd64/conf/std.amd64" 22 23options INCLUDE_CONFIG_FILE # embed config file in kernel binary 24 25#ident "GENERIC-$Revision: 1.190 $" 26 27maxusers 32 # estimated number of users 28 29# delay between "rebooting ..." message and hardware reset, in milliseconds 30#options CPURESET_DELAY=2000 31 32# This option allows you to force a serial console at the specified 33# I/O address. see console(4) for details. 34#options CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600 35# you don't want the option below ON iff you are using the 36# serial console option of the new boot strap code. 37#options CONS_OVERRIDE # Always use above! independent of boot info 38 39# The following options override the memory sizes passed in from the boot 40# block. Use them *only* if the boot block is unable to determine the correct 41# values. Note that the BIOS may *correctly* report less than 640k of base 42# memory if the extended BIOS data area is located at the top of base memory 43# (as is the case on most recent systems). 44#options REALBASEMEM=639 # size of base memory (in KB) 45#options REALEXTMEM=15360 # size of extended memory (in KB) 46 47# The following options limit the overall size of physical memory 48# and/or the maximum address used by the system. 49# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map 50# and can deal with holes in the memory layout. 51#options PHYSMEM_MAX_SIZE=64 # max size of physical memory (in MB) 52#options PHYSMEM_MAX_ADDR=2048 # don't use memory above this (in MB) 53 54# Standard system options 55 56options INSECURE # disable kernel security levels - X needs this 57 58options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 59options NTP # NTP phase/frequency locked loop 60 61options KTRACE # system call tracing via ktrace(1) 62#options SYSTRACE # system call vetting via systrace(1) 63 64options SYSVMSG # System V-like message queues 65options SYSVSEM # System V-like semaphores 66options SYSVSHM # System V-like memory sharing 67options P1003_1B_SEMAPHORE # p1003.1b semaphore support 68 69options LKM # loadable kernel modules 70options MULTIPROCESSOR # SMP 71options USERCONF # userconf(4) support 72#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 73options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 74 75# Intel Enhanced Speedstep for EM64T CPUs 76options ENHANCED_SPEEDSTEP 77#options EST_FREQ_USERWRITE # any user can set frequency 78 79# AMD PowerNow! and Cool`n'Quiet technology 80options POWERNOW_K8 81 82# Intel(R) On Demand Clock Modulation (aka ODCM) 83# options INTEL_ONDEMAND_CLOCKMOD 84 85# Enable experimental buffer queue strategy for better responsiveness under 86# high disk I/O load. Use it with caution - it's not proven to be stable yet. 87#options BUFQ_READPRIO 88#options BUFQ_PRIOCSCAN 89 90# Diagnostic/debugging support options 91#options DIAGNOSTIC # expensive kernel consistency checks 92#options DEBUG # expensive debugging checks/support 93#options KMEMSTATS # kernel memory statistics (vmstat -m) 94 95# 96# Because gcc omits the frame pointer for any -O level, the line below 97# is needed to make backtraces in DDB work. 98# 99makeoptions COPTS="-O2 -fno-omit-frame-pointer" 100options DDB # in-kernel debugger 101#options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 102options DDB_HISTORY_SIZE=512 # enable history editing in DDB 103#options KGDB # remote debugger 104#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 105#makeoptions DEBUG="-g" # compile full symbol table 106#options SYSCALL_STATS # per syscall counts 107#options SYSCALL_TIMES # per syscall times 108#options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris) 109 110# Compatibility options 111options COMPAT_15 # compatibility with NetBSD 1.5, 112options COMPAT_16 # NetBSD 1.6, 113options COMPAT_20 # NetBSD 2.0, 114options COMPAT_30 # NetBSD 3.0, 115options COMPAT_40 # NetBSD 4.0 compatibility. 116options COMPAT_43 # and 4.3BSD 117#options COMPAT_386BSD_MBRPART # recognize old partition ID 118 119options COMPAT_OSSAUDIO 120options COMPAT_NETBSD32 121options COMPAT_LINUX 122options COMPAT_LINUX32 # req. COMPAT_LINUX and COMPAT_NETBSD32 123options EXEC_ELF32 124options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 125 126# File systems 127file-system FFS # UFS 128file-system EXT2FS # second extended file system (linux) 129file-system LFS # log-structured file system 130file-system MFS # memory file system 131file-system NFS # Network File System client 132file-system NTFS # Windows/NT file system (experimental) 133file-system CD9660 # ISO 9660 + Rock Ridge file system 134file-system MSDOSFS # MS-DOS file system 135file-system FDESC # /dev/fd 136file-system KERNFS # /kern 137file-system NULLFS # loopback file system 138file-system OVERLAY # overlay file system 139file-system PORTAL # portal filesystem (still experimental) 140file-system PROCFS # /proc 141file-system SMBFS # experimental - SMB/CIFS file-system 142file-system UMAPFS # NULLFS + uid and gid remapping 143file-system UNION # union file system 144file-system CODA # Coda File System; also needs vcoda (below) 145file-system PTYFS # /dev/pts/N support 146file-system TMPFS # Efficient memory file-system 147#file-system UDF # experimental - OSTA UDF CD/DVD file-system 148#file-system HFS # experimental - Apple HFS+ (read-only) 149 150# File system options 151options QUOTA # UFS quotas 152#options FFS_EI # FFS Endian Independent support 153options SOFTDEP # FFS soft updates support. 154# Note that UFS_DIRHASH is suspected of causing kernel memory corruption. 155# It is not recommended for general use. 156#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 157options NFSSERVER # Network File System server 158#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 159 # immutable) behave as system flags. 160#options FFS_NO_SNAPSHOT # No FFS snapshot support 161 162# Networking options 163#options GATEWAY # packet forwarding 164options INET # IP + ICMP + TCP + UDP 165options INET6 # IPV6 166#options IPSEC # IP security 167#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 168#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 169#options IPSEC_DEBUG # debug for IP security 170#options MROUTING # IP multicast routing 171#options PIM # Protocol Independent Multicast 172#options ISO,TPIP # OSI 173#options EON # OSI tunneling over IP 174options NETATALK # AppleTalk networking protocols 175options PPP_BSDCOMP # BSD-Compress compression support for PPP 176options PPP_DEFLATE # Deflate compression support for PPP 177options PPP_FILTER # Active filter support for PPP (requires bpf) 178options PFIL_HOOKS # pfil(9) packet filter hooks 179options IPFILTER_LOG # ipmon(8) log support 180options IPFILTER_LOOKUP # ippool(8) support 181#options IPFILTER_DEFAULT_BLOCK # block all packets by default 182#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 183 184#options ALTQ # Manipulate network interfaces' output queues 185#options ALTQ_BLUE # Stochastic Fair Blue 186#options ALTQ_CBQ # Class-Based Queueing 187#options ALTQ_CDNR # Diffserv Traffic Conditioner 188#options ALTQ_FIFOQ # First-In First-Out Queue 189#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 190#options ALTQ_HFSC # Hierarchical Fair Service Curve 191#options ALTQ_LOCALQ # Local queueing discipline 192#options ALTQ_PRIQ # Priority Queueing 193#options ALTQ_RED # Random Early Detection 194#options ALTQ_RIO # RED with IN/OUT 195#options ALTQ_WFQ # Weighted Fair Queueing 196 197# These options enable verbose messages for several subsystems. 198# Warning, these may compile large string tables into the kernel! 199options ACPIVERBOSE # verbose ACPI configuration messages 200options MIIVERBOSE # verbose PHY autoconfig messages 201options PCIVERBOSE # verbose PCI device autoconfig messages 202#options PCI_CONFIG_DUMP # verbosely dump PCI config space 203#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 204options SCSIVERBOSE # human readable SCSI error messages 205options USBVERBOSE # verbose USB device autoconfig messages 206 207options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 208 209# 210# wscons options 211# 212# builtin terminal emulations 213#options WSEMUL_SUN # sun terminal emulation 214options WSEMUL_VT100 # VT100 / VT220 emulation 215# different kernel output - see dev/wscons/wsdisplayvar.h 216options WS_KERNEL_FG=WSCOL_GREEN 217#options WS_KERNEL_BG=WSCOL_BLACK 218# compatibility to other console drivers 219options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 220options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 221options WSDISPLAY_COMPAT_USL # VT handling 222options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 223# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 224#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 225# allocate a number of virtual screens at autoconfiguration time 226#options WSDISPLAY_DEFAULTSCREENS=4 227# use a large software cursor that doesn't blink 228options PCDISPLAY_SOFTCURSOR 229# modify the screen type of the console; defaults to "80x25" 230#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 231# work around a hardware bug that loaded fonts don't work; found on ATI cards 232#options VGA_CONSOLE_ATI_BROKEN_FONTSEL 233# console scrolling support. 234options WSDISPLAY_SCROLLSUPPORT 235# enable VGA raster mode capable of displaying multilingual text on console 236#options VGA_RASTERCONSOLE 237 238# Kernel root file system and dump configuration. 239config netbsd root on ? type ? 240#config netbsd root on sd0a type ffs 241#config netbsd root on ? type nfs 242 243# 244# Device configuration 245# 246 247mainbus0 at root 248 249#IPMI support 250#ipmi0 at mainbus? 251 252# ACPI will be used if present. If not it will fall back to MPBIOS 253acpi0 at mainbus0 254options ACPI_SCANPCI # find PCI roots using ACPI 255options MPBIOS # configure CPUs and APICs using MPBIOS 256options MPBIOS_SCANPCI # MPBIOS configures PCI roots 257#options PCI_INTR_FIXUP # PCI interrupt routing via ACPI 258#options ACPI_ACTIVATE_DEV # If set, activate inactive devices 259#options ACPICA_PEDANTIC # force strict conformance to the Spec. 260 261# ACPI devices 262acpiacad* at acpi? # ACPI AC Adapter 263acpibat* at acpi? # ACPI Battery 264acpibut* at acpi? # ACPI Button 265# The ACPI Embedded Controller is generally configured via the special ECDT. 266# This is required as parts of the DSDT can reference the EC before the normal 267# attach phase. 268acpiec* at acpi? # ACPI Embedded Controller (late binding) 269acpiecdt* at acpi? # ACPI Embedded Controller (early binding) 270acpilid* at acpi? # ACPI Lid Switch 271acpitz* at acpi? # ACPI Thermal Zone 272 273# Mainboard devices 274aiboost* at acpi? # ASUS AI Booster Hardware monitor 275attimer* at acpi? # AT Timer 276#com* at acpi? # Serial communications interface 277#fdc* at acpi? # Floppy disk controller 278hpet* at acpi? # High Precision Event Timer 279joy* at acpi? # Joystick/Game port 280#lpt* at acpi? # Parallel port 281mpu* at acpi? # Roland MPU-401 MIDI UART 282pckbc* at acpi? # PC keyboard controller 283pcppi* at acpi? # AT-style speaker sound 284sony* at acpi? # Sony Notebook Controller 285thinkpad* at acpi? # IBM/Lenovo Thinkpad hotkeys 286ug* at acpi? # Abit uGuru Hardware monitor 287wss* at acpi? # NeoMagic 256AV in wss mode 288 289cpu* at mainbus? 290ioapic* at mainbus? apid ? 291 292#apm0 at mainbus0 # Advanced power management 293 294# Tuning for power management, see apm(4) for more details. 295#options APM_NO_IDLE # Don't call BIOS CPU idle function 296#options APM_V10_ONLY # Use only the APM 1.0 calls 297#options APM_NO_POWEROFF # Don't power off on halt(8) 298#options APM_POWER_PRINT # Print stats on the console 299#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 300 301 302# Basic Bus Support 303 304# PCI bus support 305pci* at mainbus? bus ? 306pci* at pchb? bus ? 307pci* at ppb? bus ? 308 309# PCI bridges 310pchb* at pci? dev ? function ? # PCI-Host bridges 311pcib* at pci? dev ? function ? # PCI-ISA bridges 312ppb* at pci? dev ? function ? # PCI-PCI bridges 313# XXX 'puc's aren't really bridges, but there's no better place for them here 314puc* at pci? dev ? function ? # PCI "universal" comm. cards 315 316#amdpcib* at pci? dev ? function ? # AMD 8111 PCI-ISA w/ HPET 317#hpet* at amdpcib? 318 319#ichlpcib* at pci? dev ? function ? # Intel ICH PCI-ISA w/ timecounter, 320 # watchdog and Speedstep support. 321 322aapic* at pci? dev ? function ? # AMD 8131 IO apic 323 324agp* at pchb? 325 326# ISA bus support 327isa0 at mainbus? 328isa0 at pcib? 329#isa0 at amdpcib? 330#isa0 at ichlpcib? 331 332# CardBus bridge support 333cbb* at pci? dev ? function ? 334cardslot* at cbb? 335 336# CardBus bus support 337cardbus* at cardslot? 338pcmcia* at cardslot? 339 340# Console Devices 341 342# wscons 343pckbc0 at isa? # pc keyboard controller 344pckbd* at pckbc? # PC keyboard 345pms* at pckbc? # PS/2 mouse for wsmouse 346#options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume 347options PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads 348vga* at pci? dev ? function ? 349wsdisplay* at vga? console ? 350wskbd* at pckbd? console ? 351wsmouse* at pms? mux 0 352 353attimer0 at isa? 354pcppi0 at isa? 355sysbeep0 at pcppi? 356 357# Cryptographic Devices 358 359# PCI cryptographic devices 360hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 361ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 362 363# Serial Devices 364 365# PCI serial interfaces 366com* at puc? port ? # 16x50s on "universal" comm boards 367cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 368cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 369 370# PCMCIA serial interfaces 371com* at pcmcia? function ? # Modems and serial cards 372 373pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 374com* at pcmcom? slave ? # ...and the slave devices 375 376# CardBus serial interfaces 377com* at cardbus? function ? # Modems and serial cards 378 379# ISA serial interfaces 380#options COM_HAYESP # adds Hayes ESP serial board support 381com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 382com1 at isa? port 0x2f8 irq 3 383 384# Parallel Printer Interfaces 385 386# PCI parallel printer interfaces 387lpt* at puc? port ? # || ports on "universal" comm boards 388 389# ISA parallel printer interfaces 390lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 391lpt1 at isa? port 0x278 392 393# Hardware monitors 394 395# LM7[89] and compatible hardware monitors 396#lm0 at isa? port 0x290 # other common ports: 0x280, 0x310 397 398# SMSC LPC47B397 hardware monitor functions 399#smsc0 at isa? port 0x02e 400 401# AMD 768 and 8111 power/ACPI controllers 402amdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface 403#iic* at amdpm? # sensors below are on this bus 404 405# NVIDIA nForce2/3/4 SMBus controller 406nfsmbc* at pci? dev ? function ? 407nfsmb* at nfsmbc? 408iic* at nfsmb? 409 410# Intel Core's on-die Thermal sensor 411options INTEL_CORETEMP 412 413# Intel ICH SMBus controller 414ichsmb* at pci? dev ? function ? 415iic* at ichsmb? 416 417#adt7463c* at iic? addr 0x2C # Unknown other motherboard(s) 418#adt7463c* at iic? addr 0x2D # Tyan S2881 419#adt7463c* at iic? addr 0x2E # Tyan S2882-D 420 421# iTE IT87xxF and compatible hardware monitors 422#itesio0 at isa? port 0x2e 423 424# Abit uGuru Hardware system monitor 425#ug0 at isa? port 0xe0 426 427# Serial Presence Detect capable memory modules 428#spdmem* at iic? addr 0x50 429#spdmem* at iic? addr 0x51 430#spdmem* at iic? addr 0x52 431#spdmem* at iic? addr 0x53 432 433# I2O devices 434iop* at pci? dev ? function ? # I/O processor 435iopsp* at iop? tid ? # SCSI/FC-AL ports 436ld* at iop? tid ? # block devices 437# XXX dpti.c wants a processor type that is not assigned for x86-64 438#dpti* at iop? tid 0 # DPT/Adaptec control interface 439 440 441# SCSI Controllers and Devices 442 443# PCI SCSI controllers 444adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 445adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 446ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 447ahd* at pci? dev ? function ? # Adaptec aic790x SCSI 448bha* at pci? dev ? function ? # BusLogic 9xx SCSI 449dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 450iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 451isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 452mfi* at pci? dev ? function ? # LSI MegaRAID SAS 453mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 454mpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 455pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 456siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 457esiop* at pci? dev ? function ? # Symbios 53c875 and newer SCSI 458#options SIOP_SYMLED # drive the act. LED in software 459trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 460 461# PCMCIA SCSI controllers 462aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 463esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 464spc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI 465 466# CardBus SCSI cards 467adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 468ahc* at cardbus? function ? # Adaptec ADP-1480 469 470# SCSI bus support 471scsibus* at scsi? 472 473# SCSI devices 474sd* at scsibus? target ? lun ? # SCSI disk drives 475st* at scsibus? target ? lun ? # SCSI tape drives 476cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 477ch* at scsibus? target ? lun ? # SCSI autochangers 478ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 479ss* at scsibus? target ? lun ? # SCSI scanners 480uk* at scsibus? target ? lun ? # SCSI unknown 481 482 483# RAID controllers and devices 484aac* at pci? dev ? function ? # Adaptec AAC family 485amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 486arcmsr* at pci? dev ? function ? # Areca SATA RAID controllers 487cac* at pci? dev ? function ? # Compaq PCI array controllers 488ciss* at pci? dev ? function ? # HP Smart Array controllers 489icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 490mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 491twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 492twa* at pci? dev ? function ? # 3ware Escalade 9xxx RAID controllers 493 494ld* at aac? unit ? 495ld* at amr? unit ? 496ld* at cac? unit ? 497ld* at icp? unit ? 498ld* at twe? unit ? 499ld* at twa? unit ? 500ld* at mlx? unit ? 501 502icpsp* at icp? unit ? # SCSI pass-through 503 504# IDE and related devices 505# PCI IDE controllers - see pciide(4) for supported hardware. 506# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 507# how to set up DMA modes for this chip. This may work, or may cause 508# a machine hang with some controllers. 509pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 510acardide* at pci? dev ? function ? # Acard IDE controllers 511aceride* at pci? dev ? function ? # Acer Lab IDE controllers 512ahcisata* at pci? dev ? function ? # AHCI SATA controllers 513artsata* at pci? dev ? function ? # Intel i31244 SATA controller 514cmdide* at pci? dev ? function ? # CMD tech IDE controllers 515cypide* at pci? dev ? function ? # Cypress IDE controllers 516hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 517iteide* at pci? dev ? function ? # IT Express IDE controllers 518ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 519jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 520ahcisata* at jmide? 521optiide* at pci? dev ? function ? # Opti IDE controllers 522piixide* at pci? dev ? function ? # Intel IDE controllers 523pdcide* at pci? dev ? function ? # Promise IDE controllers 524pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 525satalink* at pci? dev ? function ? # SiI SATALink controllers 526siside* at pci? dev ? function ? # SiS IDE controllers 527slide* at pci? dev ? function ? # Symphony Labs IDE controllers 528svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 529viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 530 531# PCMCIA IDE controllers 532wdc* at pcmcia? function ? 533 534# CardBus IDE controllers 535njata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32 536 537# ISA ST506, ESDI, and IDE controllers 538# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 539# fall back to 16bits I/O if 32bits I/O are not functional). 540# Some controllers pass the initial 32bit test, but will fail later. 541wdc0 at isa? port 0x1f0 irq 14 flags 0x00 542wdc1 at isa? port 0x170 irq 15 flags 0x00 543 544# ATA (IDE) bus support 545atabus* at ata? 546options ATADEBUG 547 548# IDE drives 549# Flags are used only with controllers that support DMA operations 550# and mode settings (e.g. some pciide controllers) 551# The lowest order four bits (rightmost digit) of the flags define the PIO 552# mode to use, the next set of four bits the DMA mode and the third set the 553# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 554# to use, and the last bit must be 1 for this setting to be used. 555# For DMA and UDMA, 0xf (1111) means 'disable'. 556# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 557# (0xc=1100, 0xa=1010, 0xf=1111) 558# 0x0000 means "use whatever the drive claims to support". 559wd* at atabus? drive ? flags 0x0000 560 561# ATAPI bus support 562atapibus* at atapi? 563 564 565# ATA RAID configuration support, as found on some Promise controllers. 566pseudo-device ataraid 567ld* at ataraid? vendtype ? unit ? 568 569# ATAPI devices 570# flags have the same meaning as for IDE drives. 571cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 572sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 573st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 574uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 575 576 577# Miscellaneous mass storage devices 578 579# ISA floppy 580fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 581#fdc1 at isa? port 0x370 irq ? drq ? 582fd* at fdc? drive ? # the drives themselves 583# some machines need you to do this instead of fd* 584#fd0 at fdc0 drive 0 585 586# Network Interfaces 587 588# PCI network interfaces 589an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 590ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 591atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 592bce* at pci? dev ? function ? # Broadcom 440x 10/100 Ethernet 593bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 594bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 595dge* at pci? dev ? function ? # Intel 82597 10GbE LR 596en* at pci? dev ? function ? # ENI/Adaptec ATM 597ep* at pci? dev ? function ? # 3Com 3c59x 598epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 599esh* at pci? dev ? function ? # Essential HIPPI card 600ex* at pci? dev ? function ? # 3Com 90x[BC] 601fpa* at pci? dev ? function ? # DEC DEFPA FDDI 602fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 603gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 604ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100 605iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG 606hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 607le* at pci? dev ? function ? # PCnet-PCI Ethernet 608lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 609mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 610msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 611mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 612ne* at pci? dev ? function ? # NE2000-compatible Ethernet 613nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 614ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 615pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 616ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 617re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 618rtk* at pci? dev ? function ? # Realtek 8129/8139 619rtw* at pci? dev ? function ? # Realtek 8180L (802.11) 620sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 621sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 622skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 623sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 624ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 625stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 626ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 627tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 628tlp* at pci? dev ? function ? # DECchip 21x4x and clones 629txp* at pci? dev ? function ? # 3com 3cr990 630vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 631vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 632wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 633wm* at pci? dev ? function ? # Intel 82543/82544 gigabit 634wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG 635xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 636 637# PCMCIA network interfaces 638an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 639awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 640cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 641cs* at pcmcia? function ? # CS89xx Ethernet 642ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 643mbe* at pcmcia? function ? # MB8696x based Ethernet 644ne* at pcmcia? function ? # NE2000-compatible Ethernet 645ray* at pcmcia? function ? # Raytheon Raylink (802.11) 646sm* at pcmcia? function ? # Megahertz Ethernet 647# tr at pcmcia has problems with Cardbus bridges 648#tr* at pcmcia? function ? # TROPIC based Token-Ring 649wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 650xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 651com* at xirc? 652xi* at xirc? 653 654mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 655com* at mhzc? 656sm* at mhzc? 657 658# CardBus network cards 659ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 660atw* at cardbus? function ? # ADMtek ADM8211 (802.11) 661ex* at cardbus? function ? # 3Com 3C575TX 662fxp* at cardbus? function ? # Intel i8255x 663ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g 664re* at cardbus? function ? # Realtek 8139C+/8169/8169S/8110S 665rtk* at cardbus? function ? # Realtek 8129/8139 666rtw* at cardbus? function ? # Realtek 8180L (802.11) 667tlp* at cardbus? function ? # DECchip 21143 668 669# MII/PHY support 670acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs 671amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 672bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 673brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 674ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 675dmphy* at mii? phy ? # Davicom DM9101 PHYs 676exphy* at mii? phy ? # 3Com internal PHYs 677gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 678glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 679gphyter* at mii? phy ? # NS83861 Gig-E PHY 680icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 681igphy* at mii? phy ? # Intel IGP01E1000 682ikphy* at mii? phy ? # Intel 82563 PHYs 683inphy* at mii? phy ? # Intel 82555 PHYs 684iophy* at mii? phy ? # Intel 82553 PHYs 685lxtphy* at mii? phy ? # Level One LXT-970 PHYs 686makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 687nsphy* at mii? phy ? # NS83840 PHYs 688nsphyter* at mii? phy ? # NS83843 PHYs 689pnaphy* at mii? phy ? # generic HomePNA PHYs 690qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 691rgephy* at mii? phy ? # Realtek 8169S/8110 internal PHYs 692rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 693sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 694tlphy* at mii? phy ? # ThunderLAN PHYs 695tqphy* at mii? phy ? # TDK Semiconductor PHYs 696ukphy* at mii? phy ? # generic unknown PHYs 697urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 698 699 700# USB Controller and Devices 701 702# PCI USB controllers 703ehci* at pci? dev ? function ? # Enhanced Host Controller 704ohci* at pci? dev ? function ? # Open Host Controller 705uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 706 707# CardBus USB controllers 708ehci* at cardbus? function ? # Enhanced Host Controller 709ohci* at cardbus? function ? # Open Host Controller 710uhci* at cardbus? function ? # Universal Host Controller (Intel) 711 712# ISA USB controllers 713#slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 714 715# PCMCIA USB controllers 716slhci* at pcmcia? function ? # ScanLogic SL811HS 717 718# USB bus support 719usb* at ehci? 720usb* at ohci? 721usb* at uhci? 722usb* at slhci? 723 724# USB Hubs 725uhub* at usb? 726uhub* at uhub? port ? 727 728# USB HID device 729uhidev* at uhub? port ? configuration ? interface ? 730 731# USB Mice 732ums* at uhidev? reportid ? 733wsmouse* at ums? mux 0 734 735# USB eGalax touch-panel 736uep* at uhub? port ? 737wsmouse* at uep? mux 0 738 739# USB Keyboards 740ukbd* at uhidev? reportid ? 741wskbd* at ukbd? console ? mux 1 742 743# USB serial adapter 744ucycom* at uhidev? reportid ? 745 746# USB Generic HID devices 747uhid* at uhidev? reportid ? 748 749# USB Printer 750ulpt* at uhub? port ? configuration ? interface ? 751 752# USB Modem 753umodem* at uhub? port ? configuration ? 754ucom* at umodem? 755 756# USB Mass Storage 757umass* at uhub? port ? configuration ? interface ? 758#wd* at umass? 759 760# USB audio 761uaudio* at uhub? port ? configuration ? 762 763# USB MIDI 764umidi* at uhub? port ? configuration ? 765 766# USB IrDA 767# USB-IrDA bridge spec 768uirda* at uhub? port ? configuration ? interface ? 769irframe* at uirda? 770 771stuirda* at uhub? port ? configuration ? interface ? 772irframe* at stuirda? 773 774# SigmaTel STIr4200 USB/IrDA Bridge 775ustir* at uhub? port ? 776irframe* at ustir? 777 778# USB Ethernet adapters 779aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 780axe* at uhub? port ? # ASIX AX88172 based adapters 781cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 782cue* at uhub? port ? # CATC USB-EL1201A based adapters 783kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 784url* at uhub? port ? # Realtek RTL8150L based adapters 785udav* at uhub? port ? # Davicom DM9601 based adapters 786 787# Prolific PL2301/PL2302 host-to-host adapter 788upl* at uhub? port ? 789 790# Serial adapters 791ubsa* at uhub? port ? # Belkin serial adapter 792ucom* at ubsa? portno ? 793 794uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter 795ucom* at uchcom? portno ? 796 797uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 798ucom* at uftdi? portno ? 799 800uipaq* at uhub? port ? # iPAQ PDAs 801ucom* at uipaq? portno ? 802 803umct* at uhub? port ? # MCT USB-RS232 serial adapter 804ucom* at umct? portno ? 805 806uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 807ucom* at uplcom? portno ? 808 809uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter 810ucom* at uslsa? portno ? 811 812uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 813ucom* at uvscom? portno ? 814 815# Diamond Multimedia Rio 500 816urio* at uhub? port ? 817 818# USB Handspring Visor 819uvisor* at uhub? port ? 820ucom* at uvisor? 821 822# Kyocera AIR-EDGE PHONE 823ukyopon* at uhub? port ? 824ucom* at ukyopon? portno ? 825 826# USB scanners 827uscanner* at uhub? port ? 828 829# USB 802.11 adapters 830atu* at uhub? port ? # Atmel at76c50x 802.11b 831ral* at uhub? port ? # Ralink Technology RT25x0 802.11a/b/g 832rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 833zyd* at uhub? port ? # Zydas ZD1211 834 835# USB scanners that use SCSI emulation, e.g., HP5300 836usscanner* at uhub? port ? 837 838# Topfield TF5000PVR range of DVB recorders 839utoppy* at uhub? port ? 840 841# Y@P firmware loader 842uyap* at uhub? port ? 843 844# D-Link DSB-R100 USB radio 845udsbr* at uhub? port ? 846radio* at udsbr? 847 848# USB Generic driver 849ugen* at uhub? port ? 850# On ugen bulk endpoints, perform read-ahead and write-behind. 851options UGEN_BULK_RA_WB 852 853# USB generic serial port (e.g., data over cellular) 854ugensa* at uhub? port ? 855ucom* at ugensa? 856 857# IrDA and Consumer Ir devices 858 859# Toshiba Oboe 860#oboe* at pci? dev ? function ? # broken -- vtophys 861#irframe* at oboe? 862 863# PCI IEEE1394 controllers 864fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 865 866# CardBus IEEE1394 controllers 867fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 868 869ieee1394if* at fwohci? 870fwip* at ieee1394if? # IP over IEEE1394 871sbp* at ieee1394if? euihi ? euilo ? 872 873# Audio Devices 874 875# PCI audio devices 876auich* at pci? dev ? function ? # Intel/AMD/nVidia AC'97 Audio 877auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 878autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 879auvia* at pci? dev ? function ? # VIA AC'97 audio 880azalia* at pci? dev ? function ? # High Definition Audio 881clcs* at pci? dev ? function ? # Cirrus Logic CS4280 882clct* at pci? dev ? function ? # Cirrus Logic CS4281 883cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 884eap* at pci? dev ? function ? # Ensoniq AudioPCI 885emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 886esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 887esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 888eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 889fms* at pci? dev ? function ? # Forte Media FM801 890neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 891sv* at pci? dev ? function ? # S3 SonicVibes 892yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 893 894# PCMCIA audio devices 895#esl* at pcmcia? function ? # ESS 1688 AudioDrive 896 897# OPL[23] FM synthesizers 898#opl0 at isa? port 0x388 # use only if not attached to sound card 899opl* at cmpci? flags 1 900#opl* at esl? 901opl* at eso? 902opl* at fms? 903opl* at sv? 904 905# Audio support 906audio* at audiobus? 907 908# MPU 401 UARTs 909#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 910mpu* at cmpci? 911mpu* at eso? 912mpu* at yds? 913 914# MIDI support 915midi* at midibus? 916midi* at pcppi? # MIDI interface to the PC speaker 917 918# The spkr driver provides a simple tone interface to the built in speaker. 919#spkr0 at pcppi? # PC speaker 920 921 922# FM-Radio devices 923# PCI radio devices 924#gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 925 926# Radio support 927#radio* at gtp? 928 929 930# TV cards 931 932# Brooktree 848/849/878/879 based TV cards 933bktr* at pci? dev ? function ? 934radio* at bktr? 935 936 937# Bluetooth Controller and Device support 938 939# Bluetooth PCMCIA Controllers 940bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 941btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 942 943# Bluetooth USB Controllers 944ubt* at uhub? port ? 945 946# Bluetooth Device Hub 947bthub* at bcsp? 948bthub* at bt3c? 949bthub* at btbc? 950bthub* at btuart? 951bthub* at ubt? 952 953# Bluetooth HID support 954bthidev* at bthub? 955 956# Bluetooth Mouse 957btms* at bthidev? reportid ? 958wsmouse* at btms? mux 0 959 960# Bluetooth Keyboard 961btkbd* at bthidev? reportid ? 962wskbd* at btkbd? console ? mux 1 963 964# Bluetooth Audio support 965btsco* at bthub? 966 967 968# Mice 969 970# Middle Digital, Inc. PCI-Weasel serial console board control 971# devices (watchdog timer, etc.) 972weasel* at pci? 973 974# Pull in optional local configuration 975include "arch/amd64/conf/GENERIC.local" 976 977# Pseudo-Devices 978 979pseudo-device crypto # /dev/crypto device 980pseudo-device swcrypto # software crypto implementation 981 982# disk/mass storage pseudo-devices 983pseudo-device bio # RAID control device driver 984pseudo-device ccd 4 # concatenated/striped disk devices 985pseudo-device cgd 4 # cryptographic disk devices 986pseudo-device raid 8 # RAIDframe disk driver 987options RAID_AUTOCONFIG # auto-configuration of RAID components 988#Options to enable various other RAIDframe RAID types. 989#options RF_INCLUDE_EVENODD=1 990#options RF_INCLUDE_RAID5_RS=1 991#options RF_INCLUDE_PARITYLOGGING=1 992#options RF_INCLUDE_CHAINDECLUSTER=1 993#options RF_INCLUDE_INTERDECLUSTER=1 994#options RF_INCLUDE_PARITY_DECLUSTERING=1 995#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 996pseudo-device fss 4 # file system snapshot device 997 998pseudo-device md 1 # memory disk device (ramdisk) 999pseudo-device vnd # disk-like interface to files 1000#options VND_COMPRESSION # compressed vnd(4) 1001 1002# network pseudo-devices 1003pseudo-device bpfilter # Berkeley packet filter 1004#pseudo-device carp # Common Address Redundancy Protocol 1005pseudo-device ipfilter # IP filter (firewall) and NAT 1006pseudo-device loop # network loopback 1007pseudo-device ppp # Point-to-Point Protocol 1008pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1009pseudo-device sl # Serial Line IP 1010pseudo-device strip # Starmode Radio IP (Metricom) 1011pseudo-device irframetty # IrDA frame line discipline 1012pseudo-device tun # network tunneling over tty 1013pseudo-device tap # virtual Ethernet 1014pseudo-device gre # generic L3 over IP tunnel 1015pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 1016#pseudo-device faith # IPv[46] tcp relay translation i/f 1017pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 1018pseudo-device vlan # IEEE 802.1q encapsulation 1019pseudo-device bridge # simple inter-network bridging 1020#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 1021pseudo-device agr # IEEE 802.3ad link aggregation 1022 1023# miscellaneous pseudo-devices 1024pseudo-device pty # pseudo-terminals 1025pseudo-device sequencer 1 # MIDI sequencer 1026# rnd works; RND_COM does not on port i386 yet. 1027pseudo-device rnd # /dev/random and in-kernel generator 1028#options RND_COM # use "com" randomness as well (BROKEN) 1029pseudo-device clockctl # user control of clock subsystem 1030pseudo-device ksyms # /dev/ksyms 1031#pseudo-device pf # PF packet filter 1032#pseudo-device pflog # PF log if 1033pseudo-device lockstat # lock profiling 1034pseudo-device bcsp # BlueCore Serial Protocol 1035pseudo-device btuart # Bluetooth HCI UART (H4) 1036 1037# a pseudo device needed for Coda # also needs CODA (above) 1038pseudo-device vcoda 4 # coda minicache <-> venus comm. 1039 1040# a pseudo device needed for SMBFS 1041pseudo-device nsmb # experimental - SMB requester 1042 1043# wscons pseudo-devices 1044pseudo-device wsmux # mouse & keyboard multiplexor 1045pseudo-device wsfont 1046 1047# pseudo audio device driver 1048pseudo-device pad 1049 1050# userland interface to drivers, including autoconf and properties retrieval 1051pseudo-device drvctl 1052 1053options FILEASSOC # fileassoc(9) - required for Veriexec 1054 1055# Veriexec 1056# 1057# a pseudo device needed for veriexec 1058pseudo-device veriexec 1 1059# 1060# Uncomment the fingerprint methods below that are desired. Note that 1061# removing fingerprint methods will have almost no impact on the kernel 1062# code size. 1063# 1064options VERIFIED_EXEC_FP_RMD160 1065options VERIFIED_EXEC_FP_SHA256 1066options VERIFIED_EXEC_FP_SHA384 1067options VERIFIED_EXEC_FP_SHA512 1068options VERIFIED_EXEC_FP_SHA1 1069options VERIFIED_EXEC_FP_MD5 1070 1071options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 1072