XEN3_DOM0 revision 1.35
1# $NetBSD: XEN3_DOM0,v 1.35 2008/11/24 11:41:07 ad Exp $ 2 3include "arch/amd64/conf/std.xen" 4 5options INCLUDE_CONFIG_FILE # embed config file in kernel binary 6 7#options UVMHIST 8#options UVMHIST_PRINT 9#options SYSCALL_DEBUG 10 11maxusers 32 # estimated number of users 12 13# 14options DOM0OPS 15# boot messages with MPBIOS, acpi and ioapic can be quite large 16options MSGBUFSIZE=24576 17 18#options VM86 # virtual 8086 emulation 19#options USER_LDT # user-settable LDT; used by WINE 20 21#options MTRR # memory-type range register syscall support 22 23#options CONSDEVNAME="\"xencons\"" 24#options CONS_OVERRIDE 25 26options INSECURE # disable kernel security levels - X needs this 27 28options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 29options NTP # NTP phase/frequency locked loop 30 31options KTRACE # system call tracing via ktrace(1) 32 33options SYSVMSG # System V-like message queues 34options SYSVSEM # System V-like semaphores 35options SYSVSHM # System V-like memory sharing 36options P1003_1B_SEMAPHORE # p1003.1b semaphore support 37 38 39options USERCONF # userconf(4) support 40options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 41 42# Diagnostic/debugging support options 43options DIAGNOSTIC # expensive kernel consistency checks 44options DEBUG # expensive debugging checks/support 45options KMEMSTATS # kernel memory statistics (vmstat -m) 46options DDB # in-kernel debugger 47options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 48options DDB_HISTORY_SIZE=512 # enable history editing in DDB 49#options KGDB # remote debugger 50#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600 51makeoptions DEBUG="-g" # compile full symbol table 52makeoptions COPTS="-O2 -fno-omit-frame-pointer" 53options DDB_COMMANDONENTER="trace;show registers" 54 55# Compatibility options 56options COMPAT_15 # compatibility with NetBSD 1.5, 57options COMPAT_16 # NetBSD 1.6, 58options COMPAT_20 # NetBSD 2.0, 59options COMPAT_30 # NetBSD 3.0, 60options COMPAT_40 # NetBSD 4.0 compatibility. 61options COMPAT_43 # and 4.3BSD 62#options COMPAT_386BSD_MBRPART # recognize old partition ID 63 64options COMPAT_OSSAUDIO 65options COMPAT_NETBSD32 66options COMPAT_LINUX 67options COMPAT_LINUX32 # req. COMPAT_LINUX and COMPAT_NETBSD32 68options EXEC_ELF32 69options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 70 71# File systems 72file-system FFS # UFS 73file-system EXT2FS # second extended file system (linux) 74file-system LFS # log-structured file system 75file-system MFS # memory file system 76file-system NFS # Network File System client 77file-system NTFS # Windows/NT file system (experimental) 78file-system CD9660 # ISO 9660 + Rock Ridge file system 79file-system MSDOSFS # MS-DOS file system 80file-system FDESC # /dev/fd 81file-system KERNFS # /kern 82file-system NULLFS # loopback file system 83file-system OVERLAY # overlay file system 84file-system PORTAL # portal filesystem (still experimental) 85file-system PROCFS # /proc 86file-system UMAPFS # NULLFS + uid and gid remapping 87file-system UNION # union file system 88file-system CODA # Coda File System; also needs vcoda (below) 89file-system SMBFS # experimental - CIFS; also needs nsmb (below) 90file-system PTYFS # /dev/pts/N support 91file-system TMPFS # Efficient memory file-system 92 93# File system options 94options QUOTA # UFS quotas 95#options FFS_EI # FFS Endian Independent support 96options WAPBL # File system journaling support - Experimental 97#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 98options NFSSERVER # Network File System server 99#options FFS_NO_SNAPSHOT # No FFS snapshot support 100#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 101 # immutable) behave as system flags. 102 103# Networking options 104#options GATEWAY # packet forwarding 105options INET # IP + ICMP + TCP + UDP 106options INET6 # IPV6 107#options IPSEC # IP security 108#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 109#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 110#options IPSEC_DEBUG # debug for IP security 111#options MROUTING # IP multicast routing 112#options PIM # Protocol Independent Multicast 113#options ISO,TPIP # OSI 114#options EON # OSI tunneling over IP 115options NETATALK # AppleTalk networking protocols 116options PPP_BSDCOMP # BSD-Compress compression support for PPP 117options PPP_DEFLATE # Deflate compression support for PPP 118options PPP_FILTER # Active filter support for PPP (requires bpf) 119options PFIL_HOOKS # pfil(9) packet filter hooks 120options IPFILTER_LOG # ipmon(8) log support 121options IPFILTER_LOOKUP # ippool(8) support 122#options IPFILTER_DEFAULT_BLOCK # block all packets by default 123#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 124 125#options ALTQ # Manipulate network interfaces' output queues 126#options ALTQ_BLUE # Stochastic Fair Blue 127#options ALTQ_CBQ # Class-Based Queueing 128#options ALTQ_CDNR # Diffserv Traffic Conditioner 129#options ALTQ_FIFOQ # First-In First-Out Queue 130#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 131#options ALTQ_HFSC # Hierarchical Fair Service Curve 132#options ALTQ_LOCALQ # Local queueing discipline 133#options ALTQ_PRIQ # Priority Queueing 134#options ALTQ_RED # Random Early Detection 135#options ALTQ_RIO # RED with IN/OUT 136#options ALTQ_WFQ # Weighted Fair Queueing 137 138options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM,NFS_BOOT_BOOTSTATIC 139#options NFS_BOOTSTATIC_MYIP="\"169.254.1.2\"" 140#options NFS_BOOTSTATIC_GWIP="\"169.254.1.1\"" 141#options NFS_BOOTSTATIC_MASK="\"255.255.255.0\"" 142#options NFS_BOOTSTATIC_SERVADDR="\"169.254.1.1\"" 143#options NFS_BOOTSTATIC_SERVER="\"server:/path/to/root\"" 144 145# 146# wscons options 147# 148# builtin terminal emulations 149#options WSEMUL_SUN # sun terminal emulation 150options WSEMUL_VT100 # VT100 / VT220 emulation 151# different kernel output - see dev/wscons/wsdisplayvar.h 152options WS_KERNEL_FG=WSCOL_GREEN 153#options WS_KERNEL_BG=WSCOL_BLACK 154# compatibility to other console drivers 155options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 156options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 157options WSDISPLAY_COMPAT_USL # VT handling 158options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 159# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 160#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 161# allocate a number of virtual screens at autoconfiguration time 162#options WSDISPLAY_DEFAULTSCREENS=4 163# use a large software cursor that doesn't blink 164options PCDISPLAY_SOFTCURSOR 165# modify the screen type of the console; defaults to "80x25" 166#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 167# work around a hardware bug that loaded fonts don't work; found on ATI cards 168#options VGA_CONSOLE_ATI_BROKEN_FONTSEL 169# console scrolling support. 170options WSDISPLAY_SCROLLSUPPORT 171# enable VGA raster mode capable of displaying multilingual text on console 172#options VGA_RASTERCONSOLE 173config netbsd root on ? type ? 174#config netbsd root on wd0a type ffs 175#config netbsd root on xennet0 type nfs 176 177mainbus0 at root 178 179cpu* at mainbus? 180 181# IPMI support 182ipmi0 at mainbus? 183 184hypervisor* at mainbus? # Xen hypervisor 185 186vcpu* at hypervisor? # Xen virtual CPUs 187 188xenbus* at hypervisor? # Xen virtual bus 189 190xencons* at hypervisor? # Xen virtual console 191 192acpi0 at hypervisor? 193#options ACPI_ACTIVATE_DEV # If set, activate inactive devices 194options ACPI_SCANPCI # find PCI roots using ACPI 195#options ACPICA_PEDANTIC # force strict conformance to the Spec. 196options ACPIVERBOSE # verbose ACPI configuration messages 197#options MIIVERBOSE # verbose PHY autoconfig messages 198options MPBIOS # configure CPUs and APICs using MPBIOS 199options MPDEBUG # MPBIOS configures PCI roots 200options MPVERBOSE # verbose MPBIOS autoconfig messages 201options MPBIOS_SCANPCI # MPBIOS configures PCI roots 202#options PCI_ADDR_FIXUP # fixup PCI I/O addresses 203#options PCI_BUS_FIXUP # fixup PCI bus numbering 204#options PCI_INTR_FIXUP # fixup PCI interrupt routing 205#options PCIVERBOSE # verbose PCI device autoconfig messages 206#options USBVERBOSE # verbose USB device autoconfig messages 207 208ioapic* at mainbus? apid ? 209 210# ACPI devices 211acpiacad* at acpi? # ACPI AC Adapter 212acpibat* at acpi? # ACPI Battery 213acpibut* at acpi? # ACPI Button 214acpidalb* at acpi? # ACPI Direct Application Launch Button 215acpiec* at acpi? # ACPI Embedded Controller 216acpilid* at acpi? # ACPI Lid Switch 217acpitz* at acpi? # ACPI Thermal Zone 218aiboost* at acpi? # ASUS AI Booster Hardware monitor 219hpqlb* at acpi? # HP Quick Launch Buttons 220pckbc* at acpi? # PC keyboard controller 221pcppi* at acpi? # AT-style speaker sound 222 223# PCI bus support 224pci* at hypervisor? bus ? 225pci* at pchb? bus ? 226ppb* at pci? dev ? function ? # PCI-PCI bridges 227pci* at ppb? bus ? 228 229# PCI bridges 230ichlpcib* at pci? dev ? function ? # Intel ICH PCI-ISA w/ timecounter, 231 # watchdog and SpeedStep support 232pcib* at pci? dev ? function ? # PCI-ISA bridges 233pchb* at pci? dev ? function ? # PCI-Host bridges 234ppb* at pci? dev ? function ? # PCI-PCI bridges 235# XXX 'puc's aren't really bridges, but there's no better place for them here 236puc* at pci? dev ? function ? # PCI "universal" comm. cards 237 238agp* at pchb? 239 240# ISA bus support 241isa0 at ichlpcib? 242isa0 at pcib? 243isa0 at hypervisor? 244 245# Serial Devices 246 247# PCI serial interfaces 248com* at puc? port ? # 16x50s on "universal" comm boards 249cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 250cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 251 252# ISA serial interfaces 253#options COM_HAYESP # adds Hayes ESP serial board support 254# If a com port is used as Xen console it can't be used by the domain0 kernel 255# and there's no easy way to detect this yet. Leave com0 out as it's the 256# port usually used for serial console 257#com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 258com1 at isa? port 0x2f8 irq 3 259#com2 at isa? port 0x3e8 irq 5 260#com3 at isa? port 0x2e8 irq 9 261 262# Parallel Printer Interfaces 263 264# PCI parallel printer interfaces 265lpt* at puc? port ? # || ports on "universal" comm boards 266 267# ISA parallel printer interfaces 268lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 269 270# Hardware monitors 271 272amdtemp* at pci? dev ? function ? # AMD CPU Temperature sensors 273 274# AMD 768 and 8111 power/ACPI controllers 275amdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface 276#iic* at amdpm? # sensors below are on this bus 277 278# Thermal monitor and fan controller 279#dbcool* at iic? addr 0x2C # Unknown other motherboard(s) 280#dbcool* at iic? addr 0x2D # Tyan S2881 281#dbcool* at iic? addr 0x2E # Tyan S2882-D 282 283# LM7[89] and compatible hardware monitors 284#lm0 at isa? port 0x290 # other common: 0x280, 0x310, 0xc00 285 286# VIA VT82C686A/VT8231 Hardware Monitor and Power Management TImer 287#viaenv* at pci? dev ? function ? 288 289 290# PCI network interfaces 291an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 292ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 293atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 294bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 295bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 296bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 297dge* at pci? dev ? function ? # Intel 82597 10GbE LR 298en* at pci? dev ? function ? # ENI/Adaptec ATM 299ep* at pci? dev ? function ? # 3Com 3c59x 300epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 301esh* at pci? dev ? function ? # Essential HIPPI card 302ex* at pci? dev ? function ? # 3Com 90x[BC] 303fpa* at pci? dev ? function ? # DEC DEFPA FDDI 304fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 305gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 306hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 307ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100 308iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG 309iwn* at pci? dev ? function ? # Intel PRO/Wireless 4965AGN 310jme* at pci? dev ? function ? # JMicron JMC2[56]0 ethernet 311le* at pci? dev ? function ? # PCnet-PCI Ethernet 312lii* at pci? dev ? function ? # Atheros L2 Fast-Ethernet 313lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 314mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 315msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 316mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 317ne* at pci? dev ? function ? # NE2000-compatible Ethernet 318nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 319ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 320pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 321ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 322re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 323rtk* at pci? dev ? function ? # Realtek 8129/8139 324sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 325sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 326skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 327sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 328ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 329stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 330ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 331tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 332tlp* at pci? dev ? function ? # DECchip 21x4x and clones 333txp* at pci? dev ? function ? # 3com 3cr990 334vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 335vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 336wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 337wm* at pci? dev ? function ? # Intel 8254x gigabit 338xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 339 340# MII/PHY support 341acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 342amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 343bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 344brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 345ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 346dmphy* at mii? phy ? # Davicom DM9101 PHYs 347exphy* at mii? phy ? # 3Com internal PHYs 348gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 349glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 350gphyter* at mii? phy ? # NS83861 Gig-E PHY 351icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 352igphy* at mii? phy ? # Intel IGP01E1000 353ikphy* at mii? phy ? # Intel 82563 PHYs 354inphy* at mii? phy ? # Intel 82555 PHYs 355iophy* at mii? phy ? # Intel 82553 PHYs 356lxtphy* at mii? phy ? # Level One LXT-970 PHYs 357makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 358nsphy* at mii? phy ? # NS83840 PHYs 359nsphyter* at mii? phy ? # NS83843 PHYs 360pnaphy* at mii? phy ? # generic HomePNA PHYs 361qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 362rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 363rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 364sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 365tlphy* at mii? phy ? # ThunderLAN PHYs 366tqphy* at mii? phy ? # TDK Semiconductor PHYs 367ukphy* at mii? phy ? # generic unknown PHYs 368urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 369 370# I2O devices 371iop* at pci? dev ? function ? # I/O processor 372iopsp* at iop? tid ? # SCSI/FC-AL ports 373ld* at iop? tid ? # block devices 374# XXX dpti.c wants a processor type that is not assigned for x86-64 375#dpti* at iop? tid 0 # DPT/Adaptec control interface 376 377# IDE and related devices 378# PCI IDE controllers - see pciide(4) for supported hardware. 379# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 380# how to set up DMA modes for this chip. This may work, or may cause 381# a machine hang with some controllers. 382pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 383acardide* at pci? dev ? function ? # Acard IDE controllers 384aceride* at pci? dev ? function ? # Acer Lab IDE controllers 385ahcisata* at pci? dev ? function ? # AHCI SATA controllers 386artsata* at pci? dev ? function ? # Intel i31244 SATA controller 387cmdide* at pci? dev ? function ? # CMD tech IDE controllers 388cypide* at pci? dev ? function ? # Cypress IDE controllers 389geodeide* at pci? dev ? function ? # AMD Geode IDE controllers 390hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 391iteide* at pci? dev ? function ? # IT Express IDE controllers 392ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 393jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 394ahcisata* at jmide? 395optiide* at pci? dev ? function ? # Opti IDE controllers 396piixide* at pci? dev ? function ? # Intel IDE controllers 397pdcide* at pci? dev ? function ? # Promise IDE controllers 398pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 399rccide* at pci? dev ? function ? # ServerWorks IDE controllers 400satalink* at pci? dev ? function ? # SiI SATALink controllers 401siside* at pci? dev ? function ? # SiS IDE controllers 402slide* at pci? dev ? function ? # Symphony Labs IDE controllers 403svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 404stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 405viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 406 407# ATA (IDE) bus support 408atabus* at ata? 409 410# IDE drives 411# Flags are used only with controllers that support DMA operations 412# and mode settings (e.g. some pciide controllers) 413# The lowest order four bits (rightmost digit) of the flags define the PIO 414# mode to use, the next set of four bits the DMA mode and the third set the 415# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 416# to use, and the last bit must be 1 for this setting to be used. 417# For DMA and UDMA, 0xf (1111) means 'disable'. 418# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 419# (0xc=1100, 0xa=1010, 0xf=1111) 420# 0x0000 means "use whatever the drive claims to support". 421wd* at atabus? drive ? flags 0x0000 422 423# ATA RAID configuration support, as found on some Promise controllers. 424pseudo-device ataraid 425ld* at ataraid? vendtype ? unit ? 426 427# ATAPI bus support 428atapibus* at atapi? 429 430# ATAPI devices 431# flags have the same meaning as for IDE drives. 432cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 433sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 434st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 435uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 436 437# SCSI Controllers and Devices 438 439# PCI SCSI controllers 440adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 441adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 442ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 443ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI 444bha* at pci? dev ? function ? # BusLogic 9xx SCSI 445dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 446iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 447isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 448mfi* at pci? dev ? function ? # LSI MegaRAID SAS 449mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 450mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC 451njs* at pci? dev ? function ? # Workbit NinjaSCSI-32 452pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 453siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 454esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 455#options SIOP_SYMLED # drive the act. LED in software 456trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 457# SCSI bus support 458scsibus* at scsi? 459 460# SCSI devices 461sd* at scsibus? target ? lun ? # SCSI disk drives 462st* at scsibus? target ? lun ? # SCSI tape drives 463cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 464ch* at scsibus? target ? lun ? # SCSI autochangers 465ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 466ss* at scsibus? target ? lun ? # SCSI scanners 467uk* at scsibus? target ? lun ? # SCSI unknown 468 469# RAID controllers and devices 470aac* at pci? dev ? function ? # Adaptec AAC family 471amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 472arcmsr* at pci? dev ? function ? # Areca SATA RAID controllers 473cac* at pci? dev ? function ? # Compaq PCI array controllers 474ciss* at pci? dev ? function ? # HP Smart Array controllers 475icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 476mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 477twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 478twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers 479 480ld* at aac? unit ? # logical disk devices 481ld* at amr? unit ? 482ld* at cac? unit ? 483ld* at icp? unit ? 484ld* at twe? unit ? 485ld* at twa? unit ? 486ld* at mlx? unit ? 487 488icpsp* at icp? unit ? # SCSI pass-through 489 490# wscons 491pckbc0 at isa? # pc keyboard controller 492pckbd* at pckbc? # PC keyboard 493pms* at pckbc? # PS/2 mouse for wsmouse 494#options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume 495#vga0 at isa? 496vga* at pci? dev ? function ? 497#pcdisplay0 at isa? # CGA, MDA, EGA, HGA 498#machfb* at pci? dev ? function ? # ATI Mach64 framebuffer driver 499wsdisplay* at vga? console ? 500#wsdisplay* at pcdisplay? console ? 501#wsdisplay* at machfb? console ? 502wskbd* at pckbd? console ? 503wsmouse* at pms? mux 0 504 505# USB Controller and Devices 506 507# PCI USB controllers 508ehci* at pci? dev ? function ? # Enhanced Host Controller 509ohci* at pci? dev ? function ? # Open Host Controller 510uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 511 512# USB bus support 513usb* at ehci? 514usb* at ohci? 515usb* at uhci? 516 517# USB Hubs 518uhub* at usb? 519uhub* at uhub? port ? 520 521# USB HID device 522uhidev* at uhub? port ? configuration ? interface ? 523 524# USB Mice 525ums* at uhidev? reportid ? 526wsmouse* at ums? mux 0 527 528# USB eGalax touch-panel 529uep* at uhub? port ? 530wsmouse* at uep? mux 0 531 532# USB Keyboards 533ukbd* at uhidev? reportid ? 534wskbd* at ukbd? console ? mux 1 535 536# USB serial adapter 537ucycom* at uhidev? reportid ? 538 539# USB Generic HID devices 540uhid* at uhidev? reportid ? 541 542# USB Printer 543ulpt* at uhub? port ? configuration ? interface ? 544 545# USB Modem 546umodem* at uhub? port ? configuration ? 547ucom* at umodem? 548 549# USB Mass Storage 550umass* at uhub? port ? configuration ? interface ? 551wd* at umass? 552 553# USB audio 554uaudio* at uhub? port ? configuration ? 555 556# USB MIDI 557umidi* at uhub? port ? configuration ? 558 559# USB IrDA 560# USB-IrDA bridge spec 561uirda* at uhub? port ? configuration ? interface ? 562irframe* at uirda? 563 564# SigmaTel STIr4200 USB/IrDA Bridge 565ustir* at uhub? port ? 566irframe* at ustir? 567 568# USB Ethernet adapters 569aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 570axe* at uhub? port ? # ASIX AX88172 based adapters 571cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 572cue* at uhub? port ? # CATC USB-EL1201A based adapters 573kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 574udav* at uhub? port ? # Davicom DM9601 based adapters 575url* at uhub? port ? # Realtek RTL8150L based adapters 576 577# USB 802.11 adapters 578atu* at uhub? port ? # Atmel AT76C50XX based adapters 579ral* at uhub? port ? # Ralink Technology RT25x0 802.11a/b/g 580rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 581 582# Prolific PL2301/PL2302 host-to-host adapter 583upl* at uhub? port ? 584 585# Serial adapters 586ubsa* at uhub? port ? # Belkin serial adapter 587ucom* at ubsa? portno ? 588 589uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 590ucom* at uftdi? portno ? 591 592umct* at uhub? port ? # MCT USB-RS232 serial adapter 593ucom* at umct? portno ? 594 595uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 596ucom* at uplcom? portno ? 597 598uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 599ucom* at uvscom? portno ? 600 601# Diamond Multimedia Rio 500 602urio* at uhub? port ? 603 604# USB Handspring Visor 605uvisor* at uhub? port ? 606ucom* at uvisor? 607 608# Kyocera AIR-EDGE PHONE 609ukyopon* at uhub? port ? 610ucom* at ukyopon? portno ? 611 612# USB scanners 613uscanner* at uhub? port ? 614 615# USB scanners that use SCSI emulation, e.g., HP5300 616usscanner* at uhub? port ? 617 618# Y@P firmware loader 619uyap* at uhub? port ? 620 621# D-Link DSB-R100 USB radio 622udsbr* at uhub? port ? 623radio* at udsbr? 624 625# USB Generic driver 626ugen* at uhub? port ? 627 628# PCI IEEE1394 controllers 629fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 630 631# CardBus IEEE1394 controllers 632#fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 633 634ieee1394if* at fwohci? 635fwip* at ieee1394if? # IP over IEEE1394 636sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394 637 638# PCI audio devices 639auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 640auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 641auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 642autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 643auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 644azalia* at pci? dev ? function ? # High Definition Audio 645clcs* at pci? dev ? function ? # Cirrus Logic CS4280 646clct* at pci? dev ? function ? # Cirrus Logic CS4281 647cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 648eap* at pci? dev ? function ? # Ensoniq AudioPCI 649emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 650esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 651esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 652eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 653fms* at pci? dev ? function ? # Forte Media FM801 654neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 655sv* at pci? dev ? function ? # S3 SonicVibes 656yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 657 658# OPL[23] FM synthesizers 659#opl0 at isa? port 0x388 # use only if not attached to sound card 660opl* at cmpci? flags 1 661opl* at eso? 662opl* at fms? 663opl* at sv? 664opl* at yds? 665 666# Audio support 667audio* at audiobus? 668 669# MPU 401 UARTs 670#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 671mpu* at cmpci? 672mpu* at eso? 673mpu* at fms? 674mpu* at yds? 675 676# MIDI support 677midi* at midibus? 678 679# Bluetooth Controller and Device support 680 681# Bluetooth PCMCIA Controllers 682#bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 683#btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 684 685# Bluetooth USB Controllers 686ubt* at uhub? port ? 687 688# Bluetooth Device Hub 689#bthub* at bt3c? 690#bthub* at btbh? 691bthub* at ubt? 692 693# Bluetooth HID support 694bthidev* at bthub? 695 696# Bluetooth Mouse 697btms* at bthidev? reportid ? 698wsmouse* at btms? mux 0 699 700# Bluetooth Keyboard 701btkbd* at bthidev? reportid ? 702wskbd* at btkbd? console ? mux 1 703 704# Bluetooth Audio support 705btsco* at bthub? 706 707# Cryptographic Devices 708 709# PCI cryptographic devices 710hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 711ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 712 713cinclude "arch/amd64/conf/GENERIC.local" 714 715# Pseudo-Devices 716 717# 718# accept filters 719pseudo-device accf_data # "dataready" accept filter 720pseudo-device accf_http # "httpready" accept filter 721 722pseudo-device crypto # /dev/crypto device 723pseudo-device swcrypto # software crypto implementation 724 725# disk/mass storage pseudo-devices 726pseudo-device bio # RAID control device driver 727pseudo-device ccd 4 # concatenated/striped disk devices 728#pseudo-device cgd 4 # cryptographic disk devices 729pseudo-device raid 8 # RAIDframe disk driver 730options RAID_AUTOCONFIG # auto-configuration of RAID components 731# Options to enable various other RAIDframe RAID types. 732#options RF_INCLUDE_EVENODD=1 733#options RF_INCLUDE_RAID5_RS=1 734#options RF_INCLUDE_PARITYLOGGING=1 735#options RF_INCLUDE_CHAINDECLUSTER=1 736#options RF_INCLUDE_INTERDECLUSTER=1 737#options RF_INCLUDE_PARITY_DECLUSTERING=1 738#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 739pseudo-device fss 4 # file system snapshot device 740 741pseudo-device md 1 # memory disk device (ramdisk) 742pseudo-device vnd # disk-like interface to files 743 744# network pseudo-devices 745pseudo-device bpfilter # Berkeley packet filter 746pseudo-device ipfilter # IP filter (firewall) and NAT 747pseudo-device loop # network loopback 748pseudo-device ppp # Point-to-Point Protocol 749pseudo-device pppoe # PPP over Ethernet (RFC 2516) 750pseudo-device sl # Serial Line IP 751pseudo-device tap # virtual Ethernet 752pseudo-device tun # network tunneling over tty 753pseudo-device gre # generic L3 over IP tunnel 754pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 755#pseudo-device faith # IPv[46] tcp relay translation i/f 756pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 757pseudo-device vlan # IEEE 802.1q encapsulation 758pseudo-device bridge # simple inter-network bridging 759#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 760#pseudo-device pf # PF packet filter 761#pseudo-device pflog # PF log if 762 763# miscellaneous pseudo-devices 764pseudo-device pty # pseudo-terminals 765pseudo-device rnd # /dev/random and in-kernel generator 766pseudo-device clockctl # user control of clock subsystem 767pseudo-device ksyms # /dev/ksyms 768 769# a pseudo device needed for Coda # also needs CODA (above) 770pseudo-device vcoda 4 # coda minicache <-> venus comm. 771 772# a pseudo device needed for SMBFS 773pseudo-device nsmb # experimental - SMB requester 774 775# wscons pseudo-devices 776pseudo-device wsmux # mouse & keyboard multiplexor 777pseudo-device wsfont 778 779# userland interface to drivers, including autoconf and properties retrieval 780pseudo-device drvctl 781 782# xen pseudo-devices 783pseudo-device xenevt 784pseudo-device xvif 785pseudo-device xbdback 786