GENERIC revision 1.103
1# $NetBSD: GENERIC,v 1.103 2018/10/23 19:58:52 jdolecek 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.103 $" 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#lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 397#mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 398#msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 399#mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 400#ne* at pci? dev ? function ? # NE2000-compatible Ethernet 401#nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 402#ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 403#pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 404#ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 405#re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 406rtk* at pci? dev ? function ? # Realtek 8129/8139 407#rtw* at pci? dev ? function ? # Realtek 8180L (802.11) 408#sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 409#sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 410#skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 411#sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 412#ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 413#stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 414#ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 415#tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 416#tlp* at pci? dev ? function ? # DECchip 21x4x and clones 417#txp* at pci? dev ? function ? # 3com 3cr990 418#vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 419#vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 420#wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 421wm* at pci? dev ? function ? # Intel 8254x gigabit 422#wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG 423#xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 424 425# PCMCIA network interfaces 426#an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 427#awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 428#cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 429#cs* at pcmcia? function ? # CS89xx Ethernet 430#ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 431#mbe* at pcmcia? function ? # MB8696x based Ethernet 432#ne* at pcmcia? function ? # NE2000-compatible Ethernet 433#ray* at pcmcia? function ? # Raytheon Raylink (802.11) 434#sm* at pcmcia? function ? # Megahertz Ethernet 435## tr at pcmcia has problems with Cardbus bridges 436##tr* at pcmcia? function ? # TROPIC based Token-Ring 437#wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 438#xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 439#com* at xirc? 440#xi* at xirc? 441#mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 442#com* at mhzc? 443#sm* at mhzc? 444 445# CardBus network cards 446#ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 447#atw* at cardbus? function ? # ADMtek ADM8211 (802.11) 448#ex* at cardbus? function ? # 3Com 3C575TX 449#fxp* at cardbus? function ? # Intel i8255x 450#ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g 451#rtk* at cardbus? function ? # Realtek 8129/8139 452#rtw* at cardbus? function ? # Realtek 8180L (802.11) 453#tlp* at cardbus? function ? # DECchip 21143 454 455# MII/PHY support 456acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 457amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 458bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 459brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 460#ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 461dmphy* at mii? phy ? # Davicom DM9101 PHYs 462exphy* at mii? phy ? # 3Com internal PHYs 463gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 464glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 465gphyter* at mii? phy ? # NS83861 Gig-E PHY 466icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 467igphy* at mii? phy ? # Intel IGP01E1000 468#ikphy* at mii? phy ? # Intel 82563 PHYs 469inphy* at mii? phy ? # Intel 82555 PHYs 470iophy* at mii? phy ? # Intel 82553 PHYs 471lxtphy* at mii? phy ? # Level One LXT-970 PHYs 472makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 473nsphy* at mii? phy ? # NS83840 PHYs 474nsphyter* at mii? phy ? # NS83843 PHYs 475pnaphy* at mii? phy ? # generic HomePNA PHYs 476qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 477#rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 478#rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 479sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 480tlphy* at mii? phy ? # ThunderLAN PHYs 481tqphy* at mii? phy ? # TDK Semiconductor PHYs 482ukphy* at mii? phy ? # generic unknown PHYs 483urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 484 485 486# USB Controller and Devices 487 488# PCI USB controllers 489#ehci* at pci? dev ? function ? # Enhanced Host Controller 490ohci* at pci? dev ? function ? # Open Host Controller 491uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 492 493# CardBus USB controllers 494#ehci* at cardbus? function ? # Enhanced Host Controller 495#ohci* at cardbus? function ? # Open Host Controller 496#uhci* at cardbus? function ? # Universal Host Controller (Intel) 497 498# ISA USB controllers 499#slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 500 501# PCMCIA USB controllers 502#slhci* at pcmcia? function ? # ScanLogic SL811HS 503 504# USB bus support 505#usb* at ehci? 506usb* at ohci? 507usb* at uhci? 508#usb* at slhci? 509 510# USB Hubs 511uhub* at usb? 512uhub* at uhub? port ? 513 514# USB HID device 515uhidev* at uhub? port ? configuration ? interface ? 516 517# USB Mice 518ums* at uhidev? reportid ? 519wsmouse* at ums? mux 0 520 521# USB eGalax touch-panel 522#uep* at uhub? port ? 523#wsmouse* at uep? mux 0 524 525# USB Keyboards 526ukbd* at uhidev? reportid ? 527wskbd* at ukbd? console ? mux 1 528 529# USB serial adapter 530ucycom* at uhidev? reportid ? 531 532# USB Generic HID devices 533uhid* at uhidev? reportid ? 534 535# USB Printer 536ulpt* at uhub? port ? configuration ? interface ? 537 538# USB Modem 539umodem* at uhub? port ? configuration ? 540ucom* at umodem? 541 542# Option N.V. Wireless WAN modems 543uhso* at uhub? port ? configuration ? 544 545# USB Mass Storage 546umass* at uhub? port ? configuration ? interface ? 547 548# USB audio 549uaudio* at uhub? port ? configuration ? 550 551# USB MIDI 552#umidi* at uhub? port ? configuration ? 553 554# USB IrDA 555# USB-IrDA bridge spec 556#uirda* at uhub? port ? configuration ? interface ? 557#irframe* at uirda? 558 559# SigmaTel STIr4200 USB/IrDA Bridge 560#ustir* at uhub? port ? 561#irframe* at ustir? 562 563# USB Ethernet adapters 564#aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 565#axe* at uhub? port ? # ASIX AX88172 based adapters 566#cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 567#cue* at uhub? port ? # CATC USB-EL1201A based adapters 568#kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 569#mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters 570#udav* at uhub? port ? # Davicom DM9601 based adapters 571#url* at uhub? port ? # Realtek RTL8150L based adapters 572 573# USB 802.11 adapters 574#atu* at uhub? port ? # Atmel AT76C50XX based adapters 575#ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g 576#rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 577#zyd* at uhub? port ? # Zydas ZD1211 578 579# Prolific PL2301/PL2302 host-to-host adapter 580upl* at uhub? port ? 581 582# Serial adapters 583ubsa* at uhub? port ? # Belkin serial adapter 584ucom* at ubsa? portno ? 585 586uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 587ucom* at uftdi? portno ? 588 589uipaq* at uhub? port ? # iPAQ PDAs 590ucom* at uipaq? 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 602#urio* at uhub? port ? 603 604# USB Handspring Visor 605#uvisor* at uhub? port ? 606#ucom* at uvisor? 607 608# Kyocera AIR-EDGE PHONE 609#ukyopon* at uhub? port ? 610#ucom* at ukyopon? portno ? 611 612# USB scanners 613#uscanner* at uhub? port ? 614 615# USB scanners that use SCSI emulation, e.g., HP5300 616#usscanner* at uhub? port ? 617 618# Topfield TF5000PVR range of DVB recorders 619#utoppy* at uhub? port ? 620 621# Y@P firmware loader 622#uyap* at uhub? port ? 623 624# D-Link DSB-R100 USB radio 625#udsbr* at uhub? port ? 626#radio* at udsbr? 627 628# USB Generic driver 629#ugen* at uhub? port ? 630 631 632# IrDA and Consumer Ir devices 633 634# Toshiba Oboe 635#oboe* at pci? dev ? function ? 636#irframe* at oboe? 637 638 639# PCI IEEE1394 controllers 640#fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 641 642# CardBus IEEE1394 controllers 643#fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 644 645#ieee1394if* at fwohci? 646#fwip* at ieee1394if? # IP over IEEE1394 647#sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394 648 649 650# Audio Devices 651 652# PCI audio devices 653#auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 654auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 655#auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 656autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 657auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 658#azalia* at pci? dev ? function ? # High Definition Audio 659clcs* at pci? dev ? function ? # Cirrus Logic CS4280 660clct* at pci? dev ? function ? # Cirrus Logic CS4281 661cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 662eap* at pci? dev ? function ? # Ensoniq AudioPCI 663emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 664esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 665esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 666eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 667fms* at pci? dev ? function ? # Forte Media FM801 668neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 669sv* at pci? dev ? function ? # S3 SonicVibes 670yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 671 672# OPL[23] FM synthesizers 673opl* at cmpci? flags 1 674opl* at eso? 675opl* at fms? 676opl* at sv? 677opl* at yds? 678 679# Audio support 680audio* at audiobus? 681 682spkr* at audio? # PC speaker (synthesized) 683 684# MPU 401 UARTs 685mpu* at cmpci? 686mpu* at eso? 687mpu* at fms? 688mpu* at yds? 689 690# MIDI support 691midi* at midibus? 692 693# PCI radio devices 694#gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 695 696# Radio support 697#radio* at gtp? 698 699# TV cards 700 701# Brooktree 848/849/878/879 based TV cards 702#bktr* at pci? dev ? function ? 703#radio* at bktr? 704 705 706# Bluetooth Controller and Device support 707 708# Bluetooth PCMCIA Controllers 709#bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 710#btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 711 712# Bluetooth USB Controllers 713#ubt* at uhub? port ? 714#aubtfwl* at uhub? port ? 715 716# Bluetooth Device Hub 717#bthub* at bcsp? 718#bthub* at bt3c? 719#bthub* at btbc? 720#bthub* at btuart? 721#bthub* at ubt? 722 723# Bluetooth HID support 724#bthidev* at bthub? 725 726# Bluetooth Mouse 727#btms* at bthidev? reportid ? 728#wsmouse* at btms? mux 0 729 730# Bluetooth Keyboard 731#btkbd* at bthidev? reportid ? 732#wskbd* at btkbd? console ? mux 1 733 734# Bluetooth Apple Magic Mouse 735#btmagic* at bthub? 736#wsmouse* at btmagic? mux 0 737 738# Bluetooth Audio support 739#btsco* at bthub? 740 741# Cryptographic Devices 742 743# PCI cryptographic devices 744#hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 745#ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 746 747# On-board device support 748 749obio* at mainbus? 750#com1 at obio? addr 0x900003e8 xint 1 # on-board UART 751com0 at obio? addr 0x900002f8 xint 1 # on-board UART 752#com* at obio? addr 0x900003e8 xint 1 # on-board UART 753#com* at obio? addr 0x900003f8 xint 1 # on-board UART 754 755# Pseudo-Devices 756 757#pseudo-device crypto # /dev/crypto device 758#pseudo-device swcrypto # software crypto implementation 759 760# disk/mass storage pseudo-devices 761 762#pseudo-device bio # RAID control device driver 763#pseudo-device ccd # concatenated/striped disk devices 764#pseudo-device cgd # cryptographic disk devices 765#pseudo-device raid # RAIDframe disk driver 766#options RAID_AUTOCONFIG # auto-configuration of RAID components 767# Options to enable various other RAIDframe RAID types. 768#options RF_INCLUDE_EVENODD=1 769#options RF_INCLUDE_RAID5_RS=1 770#options RF_INCLUDE_PARITYLOGGING=1 771#options RF_INCLUDE_CHAINDECLUSTER=1 772#options RF_INCLUDE_INTERDECLUSTER=1 773#options RF_INCLUDE_PARITY_DECLUSTERING=1 774#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 775pseudo-device fss # file system snapshot device 776 777pseudo-device md # memory disk device (ramdisk) 778#pseudo-device vnd # disk-like interface to files 779#options VND_COMPRESSION # compressed vnd(4) 780 781# network pseudo-devices 782pseudo-device bpfilter # Berkeley packet filter 783#pseudo-device carp # Common Address Redundancy Protocol 784#pseudo-device npf # NPF packet filter 785pseudo-device loop # network loopback 786#pseudo-device ppp # Point-to-Point Protocol 787#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 788#pseudo-device sl # Serial Line IP 789#pseudo-device strip # Starmode Radio IP (Metricom) 790#pseudo-device irframetty # IrDA frame line discipline 791#pseudo-device tap # virtual Ethernet 792#pseudo-device tun # network tunneling over tty 793#pseudo-device gre # generic L3 over IP tunnel 794#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 795#pseudo-device faith # IPv[46] tcp relay translation i/f# 796#pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 797#pseudo-device vlan # IEEE 802.1q encapsulation 798#pseudo-device bridge # simple inter-network bridging 799#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 800#pseudo-device agr # IEEE 802.3ad link aggregation 801# srt is EXPERIMENTAL 802#pseudo-device srt # source-address-based routing 803 804# 805# accept filters 806pseudo-device accf_data # "dataready" accept filter 807pseudo-device accf_http # "httpready" accept filter 808 809# miscellaneous pseudo-devices 810pseudo-device pty # pseudo-terminals 811#pseudo-device sequencer # MIDI sequencer 812#options RND_COM # use "com" randomness as well (BROKEN) 813pseudo-device clockctl # user control of clock subsystem 814pseudo-device ksyms # /dev/ksyms 815#pseudo-device lockstat # lock profiling 816#pseudo-device bcsp # BlueCore Serial Protocol 817#pseudo-device btuart # Bluetooth HCI UART (H4) 818 819# a pseudo device needed for Coda # also needs CODA (above) 820#pseudo-device vcoda # coda minicache <-> venus comm. 821 822# a pseudo device needed for SMBFS 823#pseudo-device nsmb # experimental - SMB requester 824 825# wscons pseudo-devices 826pseudo-device wsmux # mouse & keyboard multiplexor 827pseudo-device wsfont 828 829#options FILEASSOC # fileassoc(9) - required for Veriexec 830 # and PAX_SEGVGUARD 831 832# Veriexec 833#pseudo-device veriexec 834# 835# Uncomment the fingerprint methods below that are desired. Note that 836# removing fingerprint methods will have almost no impact on the kernel 837# code size. 838# 839#options VERIFIED_EXEC_FP_SHA256 840#options VERIFIED_EXEC_FP_SHA384 841#options VERIFIED_EXEC_FP_SHA512 842 843#options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 844