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