GENERIC revision 1.104
1# $NetBSD: GENERIC,v 1.104 2018/12/12 06:29:37 maxv 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/iyonix/conf/std.iyonix" 22 23options INCLUDE_CONFIG_FILE # embed config file in kernel binary 24 25#ident "GENERIC-$Revision: 1.104 $" 26 27maxusers 32 # estimated number of users 28 29options MSGBUFSIZE=65536 30 31# CPU options 32 33# For XScale systems 34options CPU_XSCALE_80321 # Support the XScale core 35makeoptions CPUFLAGS="-mcpu=xscale" 36 37# Architecture options 38options XSCALE_CACHE_READ_WRITE_ALLOCATE 39#options HZ=512 40 41# Standard system options 42 43options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 44#options NTP # NTP phase/frequency locked loop 45 46#options KTRACE # system call tracing via ktrace(1) 47 48 49#options SYSVMSG # System V-like message queues 50#options SYSVSEM # System V-like semaphores 51#options SYSVSHM # System V-like memory sharing 52 53# Device options 54 55# Console options. The default console is speed is 115200 baud. 56#options CONSPEED=9600 # Console speed 57 58# Miscellaneous kernel options 59options KTRACE # system call tracing, a la ktrace(1) 60options IRQSTATS # manage IRQ statistics 61#options SCSIVERBOSE # Verbose SCSI errors 62options PCIVERBOSE # Verbose PCI descriptions 63options MIIVERBOSE # Verbose MII autoconfuration messages 64#options PCI_CONFIG_DUMP # verbosely dump PCI config space 65 66options USERCONF # userconf(4) support 67#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 68#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 69 70# Development and Debugging options 71 72# Alternate buffer queue strategies for better responsiveness under high 73# disk I/O load. 74#options BUFQ_READPRIO 75#options BUFQ_PRIOCSCAN 76 77# Diagnostic/debugging support options 78#options DIAGNOSTIC # expensive kernel consistency checks 79#options DEBUG # expensive debugging checks/support 80options DDB # in-kernel debugger 81#options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic' 82options DDB_HISTORY_SIZE=512 # enable history editing in DDB 83#options DDB_KEYCODE=0x40 84#options KGDB # remote debugger 85#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 86makeoptions DEBUG="-g" # compile full symbol table 87makeoptions COPY_SYMTAB=1 88#options PMAP_DEBUG # Enable pmap_debug_level code 89#options VERBOSE_INIT_ARM # verbose bootstraping messages 90 91#options PMAP_INCLUDE_PTE_SYNC 92#options LOCKDEBUG 93 94 95# Compatibility options 96 97include "conf/compat_netbsd50.config" 98options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries 99 100# File systems 101file-system FFS # UFS 102#file-system EXT2FS # second extended file system (linux) 103#file-system LFS # log-structured file system 104#file-system MFS # memory file system 105file-system NFS # Network File System client 106#file-system NTFS # Windows/NT file system (experimental) 107file-system CD9660 # ISO 9660 + Rock Ridge file system 108file-system MSDOSFS # MS-DOS file system 109#file-system FDESC # /dev/fd 110#file-system KERNFS # /kern 111#file-system NULLFS # loopback file system 112#file-system OVERLAY # overlay file system 113#file-system PROCFS # /proc 114#file-system UMAPFS # NULLFS + uid and gid remapping 115#file-system UNION # union file system 116#file-system CODA # Coda File System; also needs vcoda (below) 117#file-system SMBFS # experimental - CIFS; also needs nsmb (below) 118#file-system PTYFS # /dev/ptm support 119#file-system TMPFS # Efficient memory file-system 120#file-system UDF # experimental - OSTA UDF CD/DVD file-system 121#file-system HFS # experimental - Apple HFS+ (read-only) 122file-system FILECORE # Acorn filecore file system 123 124# File system options 125#options QUOTA # legacy UFS quotas 126#options QUOTA2 # new, in-filesystem UFS quotas 127#options FFS_EI # FFS Endian Independent support 128options WAPBL # File system journaling support 129# Note that UFS_DIRHASH is suspected of causing kernel memory corruption. 130# It is not recommended for general use. 131#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 132#options NFSSERVER # Network File System server 133options FFS_NO_SNAPSHOT # No FFS snapshot support 134#options UFS_EXTATTR # Extended attribute support for UFS1 135#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 136 # immutable) behave as system flags. 137 138# Networking options 139#options GATEWAY # packet forwarding 140options INET # IP + ICMP + TCP + UDP 141#options INET6 # IPV6 142#options IPSEC # IP security 143#options IPSEC_DEBUG # debug for IP security 144#options MROUTING # IP multicast routing 145#options PIM # Protocol Independent Multicast 146#options NETATALK # AppleTalk networking protocols 147#options PPP_BSDCOMP # BSD-Compress compression support for PPP 148#options PPP_DEFLATE # Deflate compression support for PPP 149#options PPP_FILTER # Active filter support for PPP (requires bpf) 150#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 151 152#options ALTQ # Manipulate network interfaces' output queues 153#options ALTQ_BLUE # Stochastic Fair Blue 154#options ALTQ_CBQ # Class-Based Queueing 155#options ALTQ_CDNR # Diffserv Traffic Conditioner 156#options ALTQ_FIFOQ # First-In First-Out Queue 157#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 158#options ALTQ_HFSC # Hierarchical Fair Service Curve 159#options ALTQ_LOCALQ # Local queueing discipline 160#options ALTQ_PRIQ # Priority Queueing 161#options ALTQ_RED # Random Early Detection 162#options ALTQ_RIO # RED with IN/OUT 163#options ALTQ_WFQ # Weighted Fair Queueing 164 165 166options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 167 168# Kernel root file system and dump configuration. 169config netbsd root on ? type ? 170#config netbsd root on sd0a type ffs 171#config netbsd root on ? type nfs 172 173# 174# Device configuration 175# 176 177mainbus0 at root 178 179cpu0 at mainbus? 180 181# i80321 I/O Processor peripheral support 182iopxs* at mainbus? 183 184iopaau* at iopxs? # Application Accelerator Unit 185iopiic* at iopxs? # I2C Controller Unit(s) 186iic0 at iopiic? 187iic1 at iopiic? 188iopwdog* at iopxs? # Watchdog timer 189pci0 at iopxs? bus ? # PCI/PCI-X support 190 191# The curious can see their RAM timings. 192spdmem* at iic1 addr 0x56 193 194# PCI bridges 195ppb* at pci? dev ? function ? # PCI-PCI bridges 196pci* at ppb? bus ? 197# XXX 'puc's aren't really bridges, but there's no better place for them here 198#puc* at pci? dev ? function ? # PCI "universal" comm. cards 199 200#options COMCONSOLE 201 202# VGA 203#vga* at pci? dev ? function ? 204genfb* at pci? dev ? function ? 205 206# Display 207wsdisplay0 at wsemuldisplaydev? console 1 208wsdisplay* at wsemuldisplaydev? 209 210options WSEMUL_VT100 # VT100 / VT220 emulation 211options WSDISPLAY_COMPAT_USL # wsconscfg VT handling 212 213# CardBus bridge support 214#cbb* at pci? dev ? function ? 215#cardslot* at cbb? 216 217# CardBus bus support 218#cardbus* at cardslot? 219#pcmcia* at cardslot? 220 221# Serial Devices 222 223# PCI serial interfaces 224#com* at puc? port ? # 16x50s on "universal" comm boards 225#cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 226#cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 227 228# PCMCIA serial interfaces 229#com* at pcmcia? function ? # Modems and serial cards 230 231#pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 232#com* at pcmcom? slave ? # ...and the slave devices 233 234# CardBus serial interfaces 235#com* at cardbus? function ? # Modems and serial cards 236 237# I2O devices 238#iop* at pci? dev ? function ? # I/O processor 239#iopsp* at iop? tid ? # SCSI/FC-AL ports 240#ld* at iop? tid ? # block devices 241#dpti* at iop? tid 0 # DPT/Adaptec control interface 242 243# SCSI Controllers and Devices 244 245# PCI SCSI controllers 246#adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 247#adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 248#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 249#ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI 250#bha* at pci? dev ? function ? # BusLogic 9xx SCSI 251#dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 252#iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 253#isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 254#mfi* at pci? dev ? function ? # LSI MegaRAID SAS 255#mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 256#mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC 257#njs* at pci? dev ? function ? # Workbit NinjaSCSI-32 258#pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 259#siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 260#esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 261##options SIOP_SYMLED # drive the act. LED in software 262#trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 263 264# PCMCIA SCSI controllers 265#aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 266#esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 267#spc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI 268 269# CardBus SCSI cards 270#adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 271#ahc* at cardbus? function ? # Adaptec ADP-1480 272#njs* at cardbus? function ? # Workbit NinjaSCSI-32 273 274# SCSI bus support 275#scsibus* at scsi? 276 277# SCSI devices 278#sd* at scsibus? target ? lun ? # SCSI disk drives 279#st* at scsibus? target ? lun ? # SCSI tape drives 280#cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 281#ch* at scsibus? target ? lun ? # SCSI autochangers 282#ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 283#ss* at scsibus? target ? lun ? # SCSI scanners 284#uk* at scsibus? target ? lun ? # SCSI unknown 285 286 287# RAID controllers and devices 288#aac* at pci? dev ? function ? # Adaptec AAC family 289#amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 290#cac* at pci? dev ? function ? # Compaq PCI array controllers 291#ciss* at pci? dev ? function ? # HP Smart Array controllers 292#icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 293#mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 294#mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family 295#twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers 296#twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 297 298#ld* at aac? unit ? # logical disk devices 299#ld* at amr? unit ? 300#ld* at cac? unit ? 301#ld* at icp? unit ? 302#ld* at twa? unit ? 303#ld* at twe? unit ? 304#ld* at mlx? unit ? 305 306#icpsp* at icp? unit ? # SCSI pass-through 307 308# IDE and related devices 309# PCI IDE controllers - see pciide(4) for supported hardware. 310# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 311# how to set up DMA modes for this chip. This may work, or may cause 312# a machine hang with some controllers. 313pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 314acardide* at pci? dev ? function ? # Acard IDE controllers 315aceride* at pci? dev ? function ? # Acer Lab IDE controllers 316#ahcisata* at pci? dev ? function ? # AHCI SATA controllers 317artsata* at pci? dev ? function ? # Intel i31244 SATA controller 318cmdide* at pci? dev ? function ? # CMD tech IDE controllers 319cypide* at pci? dev ? function ? # Cypress IDE controllers 320#geodeide* at pci? dev ? function ? # AMD Geode IDE controllers 321hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 322#iteide* at pci? dev ? function ? # IT Express IDE controllers 323#ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 324optiide* at pci? dev ? function ? # Opti IDE controllers 325#piixide* at pci? dev ? function ? # Intel IDE controllers 326pdcide* at pci? dev ? function ? # Promise IDE controllers 327pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 328rccide* at pci? dev ? function ? # ServerWorks IDE controllers 329satalink* at pci? dev ? function ? # SiI SATALink controllers 330siside* at pci? dev ? function ? # SiS IDE controllers 331slide* at pci? dev ? function ? # Symphony Labs IDE controllers 332#svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 333stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 334viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 335 336# PCMCIA IDE controllers 337#wdc* at pcmcia? function ? 338 339# CardBus IDE controllers 340#njata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32 341 342# ATA (IDE) bus support 343atabus* at ata? 344#options ATADEBUG 345 346# IDE drives 347# Flags are used only with controllers that support DMA operations 348# and mode settings (e.g. some pciide controllers) 349# The lowest order four bits (rightmost digit) of the flags define the PIO 350# mode to use, the next set of four bits the DMA mode and the third set the 351# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 352# to use, and the last bit must be 1 for this setting to be used. 353# For DMA and UDMA, 0xf (1111) means 'disable'. 354# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 355# (0xc=1100, 0xa=1010, 0xf=1111) 356# 0x0000 means "use whatever the drive claims to support". 357wd* at atabus? drive ? flags 0x0000 358 359# ATA RAID configuration support, as found on some Promise controllers. 360pseudo-device ataraid 361ld* at ataraid? vendtype ? unit ? 362 363# ATAPI bus support 364atapibus* at atapi? 365 366# ATAPI devices 367# flags have the same meaning as for IDE drives. 368# XXX No DMA on IDE devices for now 369cd* at atapibus? drive ? flags 0x0ff0 # ATAPI CD-ROM drives 370sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 371st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 372uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 373 374 375# Network Interfaces 376 377# PCI network interfaces 378#an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 379#ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 380#atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 381#bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 382#bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 383#bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 384#dge* at pci? dev ? function ? # Intel 82597 10GbE LR 385#ep* at pci? dev ? function ? # 3Com 3c59x 386#epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 387#esh* at pci? dev ? function ? # Essential HIPPI card 388#ex* at pci? dev ? function ? # 3Com 90x[BC] 389#fpa* at pci? dev ? function ? # DEC DEFPA FDDI 390#fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 391#gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 392#hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 393#ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100 394#iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG 395#le* at pci? dev ? function ? # PCnet-PCI Ethernet 396#mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 397#msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 398#mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 399#ne* at pci? dev ? function ? # NE2000-compatible Ethernet 400#nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 401#ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 402#pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 403#ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 404#re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 405rtk* at pci? dev ? function ? # Realtek 8129/8139 406#rtw* at pci? dev ? function ? # Realtek 8180L (802.11) 407#sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 408#sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 409#skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 410#sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 411#ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 412#stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 413#ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 414#tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 415#tlp* at pci? dev ? function ? # DECchip 21x4x and clones 416#txp* at pci? dev ? function ? # 3com 3cr990 417#vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 418#vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 419#wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 420wm* at pci? dev ? function ? # Intel 8254x gigabit 421#wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG 422#xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 423 424# PCMCIA network interfaces 425#an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 426#awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 427#cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 428#cs* at pcmcia? function ? # CS89xx Ethernet 429#ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 430#mbe* at pcmcia? function ? # MB8696x based Ethernet 431#ne* at pcmcia? function ? # NE2000-compatible Ethernet 432#ray* at pcmcia? function ? # Raytheon Raylink (802.11) 433#sm* at pcmcia? function ? # Megahertz Ethernet 434## tr at pcmcia has problems with Cardbus bridges 435##tr* at pcmcia? function ? # TROPIC based Token-Ring 436#wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 437#xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 438#com* at xirc? 439#xi* at xirc? 440#mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 441#com* at mhzc? 442#sm* at mhzc? 443 444# CardBus network cards 445#ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 446#atw* at cardbus? function ? # ADMtek ADM8211 (802.11) 447#ex* at cardbus? function ? # 3Com 3C575TX 448#fxp* at cardbus? function ? # Intel i8255x 449#ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g 450#rtk* at cardbus? function ? # Realtek 8129/8139 451#rtw* at cardbus? function ? # Realtek 8180L (802.11) 452#tlp* at cardbus? function ? # DECchip 21143 453 454# MII/PHY support 455acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 456amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 457bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 458brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 459#ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 460dmphy* at mii? phy ? # Davicom DM9101 PHYs 461exphy* at mii? phy ? # 3Com internal PHYs 462gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 463glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 464gphyter* at mii? phy ? # NS83861 Gig-E PHY 465icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 466igphy* at mii? phy ? # Intel IGP01E1000 467#ikphy* at mii? phy ? # Intel 82563 PHYs 468inphy* at mii? phy ? # Intel 82555 PHYs 469iophy* at mii? phy ? # Intel 82553 PHYs 470lxtphy* at mii? phy ? # Level One LXT-970 PHYs 471makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 472nsphy* at mii? phy ? # NS83840 PHYs 473nsphyter* at mii? phy ? # NS83843 PHYs 474pnaphy* at mii? phy ? # generic HomePNA PHYs 475qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 476#rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 477#rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 478sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 479tlphy* at mii? phy ? # ThunderLAN PHYs 480tqphy* at mii? phy ? # TDK Semiconductor PHYs 481ukphy* at mii? phy ? # generic unknown PHYs 482urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 483 484 485# USB Controller and Devices 486 487# PCI USB controllers 488#ehci* at pci? dev ? function ? # Enhanced Host Controller 489ohci* at pci? dev ? function ? # Open Host Controller 490uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 491 492# CardBus USB controllers 493#ehci* at cardbus? function ? # Enhanced Host Controller 494#ohci* at cardbus? function ? # Open Host Controller 495#uhci* at cardbus? function ? # Universal Host Controller (Intel) 496 497# ISA USB controllers 498#slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 499 500# PCMCIA USB controllers 501#slhci* at pcmcia? function ? # ScanLogic SL811HS 502 503# USB bus support 504#usb* at ehci? 505usb* at ohci? 506usb* at uhci? 507#usb* at slhci? 508 509# USB Hubs 510uhub* at usb? 511uhub* at uhub? port ? 512 513# USB HID device 514uhidev* at uhub? port ? configuration ? interface ? 515 516# USB Mice 517ums* at uhidev? reportid ? 518wsmouse* at ums? mux 0 519 520# USB eGalax touch-panel 521#uep* at uhub? port ? 522#wsmouse* at uep? mux 0 523 524# USB Keyboards 525ukbd* at uhidev? reportid ? 526wskbd* at ukbd? console ? mux 1 527 528# USB serial adapter 529ucycom* at uhidev? reportid ? 530 531# USB Generic HID devices 532uhid* at uhidev? reportid ? 533 534# USB Printer 535ulpt* at uhub? port ? configuration ? interface ? 536 537# USB Modem 538umodem* at uhub? port ? configuration ? 539ucom* at umodem? 540 541# Option N.V. Wireless WAN modems 542uhso* at uhub? port ? configuration ? 543 544# USB Mass Storage 545umass* at uhub? port ? configuration ? interface ? 546 547# USB audio 548uaudio* at uhub? port ? configuration ? 549 550# USB MIDI 551#umidi* at uhub? port ? configuration ? 552 553# USB IrDA 554# USB-IrDA bridge spec 555#uirda* at uhub? port ? configuration ? interface ? 556#irframe* at uirda? 557 558# SigmaTel STIr4200 USB/IrDA Bridge 559#ustir* at uhub? port ? 560#irframe* at ustir? 561 562# USB Ethernet adapters 563#aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 564#axe* at uhub? port ? # ASIX AX88172 based adapters 565#cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 566#cue* at uhub? port ? # CATC USB-EL1201A based adapters 567#kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 568#mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters 569#udav* at uhub? port ? # Davicom DM9601 based adapters 570#url* at uhub? port ? # Realtek RTL8150L based adapters 571 572# USB 802.11 adapters 573#atu* at uhub? port ? # Atmel AT76C50XX based adapters 574#ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g 575#rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 576#zyd* at uhub? port ? # Zydas ZD1211 577 578# Prolific PL2301/PL2302 host-to-host adapter 579upl* at uhub? port ? 580 581# Serial adapters 582ubsa* at uhub? port ? # Belkin serial adapter 583ucom* at ubsa? portno ? 584 585uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 586ucom* at uftdi? portno ? 587 588uipaq* at uhub? port ? # iPAQ PDAs 589ucom* at uipaq? portno ? 590 591umct* at uhub? port ? # MCT USB-RS232 serial adapter 592ucom* at umct? portno ? 593 594uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 595ucom* at uplcom? portno ? 596 597uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 598ucom* at uvscom? portno ? 599 600# Diamond Multimedia Rio 500 601#urio* at uhub? port ? 602 603# USB Handspring Visor 604#uvisor* at uhub? port ? 605#ucom* at uvisor? 606 607# Kyocera AIR-EDGE PHONE 608#ukyopon* at uhub? port ? 609#ucom* at ukyopon? portno ? 610 611# USB scanners 612#uscanner* at uhub? port ? 613 614# USB scanners that use SCSI emulation, e.g., HP5300 615#usscanner* at uhub? port ? 616 617# Topfield TF5000PVR range of DVB recorders 618#utoppy* at uhub? port ? 619 620# Y@P firmware loader 621#uyap* at uhub? port ? 622 623# D-Link DSB-R100 USB radio 624#udsbr* at uhub? port ? 625#radio* at udsbr? 626 627# USB Generic driver 628#ugen* at uhub? port ? 629 630 631# IrDA and Consumer Ir devices 632 633# Toshiba Oboe 634#oboe* at pci? dev ? function ? 635#irframe* at oboe? 636 637 638# PCI IEEE1394 controllers 639#fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 640 641# CardBus IEEE1394 controllers 642#fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 643 644#ieee1394if* at fwohci? 645#fwip* at ieee1394if? # IP over IEEE1394 646#sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394 647 648 649# Audio Devices 650 651# PCI audio devices 652#auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 653auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 654#auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 655autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 656auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 657#azalia* at pci? dev ? function ? # High Definition Audio 658clcs* at pci? dev ? function ? # Cirrus Logic CS4280 659clct* at pci? dev ? function ? # Cirrus Logic CS4281 660cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 661eap* at pci? dev ? function ? # Ensoniq AudioPCI 662emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 663esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 664esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 665eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 666fms* at pci? dev ? function ? # Forte Media FM801 667neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 668sv* at pci? dev ? function ? # S3 SonicVibes 669yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 670 671# OPL[23] FM synthesizers 672opl* at cmpci? flags 1 673opl* at eso? 674opl* at fms? 675opl* at sv? 676opl* at yds? 677 678# Audio support 679audio* at audiobus? 680 681spkr* at audio? # PC speaker (synthesized) 682 683# MPU 401 UARTs 684mpu* at cmpci? 685mpu* at eso? 686mpu* at fms? 687mpu* at yds? 688 689# MIDI support 690midi* at midibus? 691 692# PCI radio devices 693#gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 694 695# Radio support 696#radio* at gtp? 697 698# TV cards 699 700# Brooktree 848/849/878/879 based TV cards 701#bktr* at pci? dev ? function ? 702#radio* at bktr? 703 704 705# Bluetooth Controller and Device support 706 707# Bluetooth PCMCIA Controllers 708#bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 709#btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 710 711# Bluetooth USB Controllers 712#ubt* at uhub? port ? 713#aubtfwl* at uhub? port ? 714 715# Bluetooth Device Hub 716#bthub* at bcsp? 717#bthub* at bt3c? 718#bthub* at btbc? 719#bthub* at btuart? 720#bthub* at ubt? 721 722# Bluetooth HID support 723#bthidev* at bthub? 724 725# Bluetooth Mouse 726#btms* at bthidev? reportid ? 727#wsmouse* at btms? mux 0 728 729# Bluetooth Keyboard 730#btkbd* at bthidev? reportid ? 731#wskbd* at btkbd? console ? mux 1 732 733# Bluetooth Apple Magic Mouse 734#btmagic* at bthub? 735#wsmouse* at btmagic? mux 0 736 737# Bluetooth Audio support 738#btsco* at bthub? 739 740# Cryptographic Devices 741 742# PCI cryptographic devices 743#hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 744#ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 745 746# On-board device support 747 748obio* at mainbus? 749#com1 at obio? addr 0x900003e8 xint 1 # on-board UART 750com0 at obio? addr 0x900002f8 xint 1 # on-board UART 751#com* at obio? addr 0x900003e8 xint 1 # on-board UART 752#com* at obio? addr 0x900003f8 xint 1 # on-board UART 753 754# Pseudo-Devices 755 756#pseudo-device crypto # /dev/crypto device 757#pseudo-device swcrypto # software crypto implementation 758 759# disk/mass storage pseudo-devices 760 761#pseudo-device bio # RAID control device driver 762#pseudo-device ccd # concatenated/striped disk devices 763#pseudo-device cgd # cryptographic disk devices 764#pseudo-device raid # RAIDframe disk driver 765#options RAID_AUTOCONFIG # auto-configuration of RAID components 766# Options to enable various other RAIDframe RAID types. 767#options RF_INCLUDE_EVENODD=1 768#options RF_INCLUDE_RAID5_RS=1 769#options RF_INCLUDE_PARITYLOGGING=1 770#options RF_INCLUDE_CHAINDECLUSTER=1 771#options RF_INCLUDE_INTERDECLUSTER=1 772#options RF_INCLUDE_PARITY_DECLUSTERING=1 773#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 774pseudo-device fss # file system snapshot device 775 776pseudo-device md # memory disk device (ramdisk) 777#pseudo-device vnd # disk-like interface to files 778#options VND_COMPRESSION # compressed vnd(4) 779 780# network pseudo-devices 781pseudo-device bpfilter # Berkeley packet filter 782#pseudo-device carp # Common Address Redundancy Protocol 783#pseudo-device npf # NPF packet filter 784pseudo-device loop # network loopback 785#pseudo-device ppp # Point-to-Point Protocol 786#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 787#pseudo-device sl # Serial Line IP 788#pseudo-device strip # Starmode Radio IP (Metricom) 789#pseudo-device irframetty # IrDA frame line discipline 790#pseudo-device tap # virtual Ethernet 791#pseudo-device tun # network tunneling over tty 792#pseudo-device gre # generic L3 over IP tunnel 793#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 794#pseudo-device faith # IPv[46] tcp relay translation i/f# 795#pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 796#pseudo-device vlan # IEEE 802.1q encapsulation 797#pseudo-device bridge # simple inter-network bridging 798#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 799#pseudo-device agr # IEEE 802.3ad link aggregation 800# srt is EXPERIMENTAL 801#pseudo-device srt # source-address-based routing 802 803# 804# accept filters 805pseudo-device accf_data # "dataready" accept filter 806pseudo-device accf_http # "httpready" accept filter 807 808# miscellaneous pseudo-devices 809pseudo-device pty # pseudo-terminals 810#pseudo-device sequencer # MIDI sequencer 811#options RND_COM # use "com" randomness as well (BROKEN) 812pseudo-device clockctl # user control of clock subsystem 813pseudo-device ksyms # /dev/ksyms 814#pseudo-device lockstat # lock profiling 815#pseudo-device bcsp # BlueCore Serial Protocol 816#pseudo-device btuart # Bluetooth HCI UART (H4) 817 818# a pseudo device needed for Coda # also needs CODA (above) 819#pseudo-device vcoda # coda minicache <-> venus comm. 820 821# a pseudo device needed for SMBFS 822#pseudo-device nsmb # experimental - SMB requester 823 824# wscons pseudo-devices 825pseudo-device wsmux # mouse & keyboard multiplexor 826pseudo-device wsfont 827 828#options FILEASSOC # fileassoc(9) - required for Veriexec 829 # and PAX_SEGVGUARD 830 831# Veriexec 832#pseudo-device veriexec 833# 834# Uncomment the fingerprint methods below that are desired. Note that 835# removing fingerprint methods will have almost no impact on the kernel 836# code size. 837# 838#options VERIFIED_EXEC_FP_SHA256 839#options VERIFIED_EXEC_FP_SHA384 840#options VERIFIED_EXEC_FP_SHA512 841 842#options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 843