CARDBUS revision 1.51
1# $NetBSD: CARDBUS,v 1.51 2002/01/28 01:23:33 augustss Exp $ 2# 3# CARDBUS: GENERIC + CardBus support. Additionally, some 4# things typically not found on laptops have been commented out. 5 6# from: GENERIC,v 1.432 2001/10/17 18:41:20 jdolecek Exp $ 7# 8 9include "arch/i386/conf/std.i386" 10 11#ident "CARDBUS-$Revision: 1.51 $" 12 13maxusers 32 # estimated number of users 14 15# CPU support. At least one is REQUIRED. 16options I386_CPU 17options I486_CPU 18options I586_CPU 19options I686_CPU 20 21# CPU-related options. 22options MATH_EMULATE # floating point emulation 23options VM86 # virtual 8086 emulation 24options USER_LDT # user-settable LDT; used by WINE 25# eliminate delay no-ops in I/O; recommended on all but very old machines 26#options DUMMY_NOPS 27 28options MTRR # memory-type range register syscall support 29 30# delay between "rebooting ..." message and hardware reset, in milliseconds 31#options CPURESET_DELAY=2000 32 33# This option allows you to force a serial console at the specified 34# I/O address. see console(4) for details. 35#options CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600 36# you don't want the option below ON iff you are using the 37# serial console option of the new boot strap code. 38#options CONS_OVERRIDE # Always use above! independent of boot info 39 40# The following options override the memory sizes passed in from the boot 41# block. Use them *only* if the boot block is unable to determine the correct 42# values. Note that the BIOS may *correctly* report less than 640k of base 43# memory if the extended BIOS data area is located at the top of base memory 44# (as is the case on most recent systems). 45#options REALBASEMEM=639 # size of base memory (in KB) 46#options REALEXTMEM=15360 # size of extended memory (in KB) 47 48# following makes ARMADA M700's happy 49#options RBUS_MIN_START=0x20000000 50#options RBUS_IO_BASE=0x600 51#options RBUS_IO_SIZE=0x100 52 53# Standard system options 54 55options UCONSOLE # users can use TIOCCONS (for xconsole) 56options INSECURE # disable kernel security levels 57 58options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 59options NTP # NTP phase/frequency locked loop 60 61options KTRACE # system call tracing via ktrace(1) 62 63options SYSVMSG # System V-like message queues 64options SYSVSEM # System V-like semaphores 65#options SEMMNI=10 # number of semaphore identifiers 66#options SEMMNS=60 # number of semaphores in system 67#options SEMUME=10 # max number of undo entries per process 68#options SEMMNU=30 # number of undo structures in system 69options SYSVSHM # System V-like memory sharing 70#options SHMMAXPGS=1024 # 1024 pages is the default 71 72options LKM # loadable kernel modules 73 74#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 75 76# Diagnostic/debugging support options 77#options DIAGNOSTIC # expensive kernel consistency checks 78#options DEBUG # expensive debugging checks/support 79#options KMEMSTATS # kernel memory statistics (vmstat -m) 80options DDB # in-kernel debugger 81options DDB_HISTORY_SIZE=512 # enable history editing in DDB 82#options KGDB # remote debugger 83#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 84#makeoptions DEBUG="-g" # compile full symbol table 85 86# Compatibility options 87options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8, 88options COMPAT_09 # NetBSD 0.9, 89options COMPAT_10 # NetBSD 1.0, 90options COMPAT_11 # NetBSD 1.1, 91options COMPAT_12 # NetBSD 1.2, 92options COMPAT_13 # NetBSD 1.3, 93options COMPAT_14 # NetBSD 1.4, 94options COMPAT_15 # NetBSD 1.5, 95options COMPAT_43 # and 4.3BSD 96options COMPAT_386BSD_MBRPART # recognize old partition ID 97#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 98 99options COMPAT_SVR4 # binary compatibility with SVR4 100options COMPAT_IBCS2 # binary compatibility with SCO and ISC 101options COMPAT_LINUX # binary compatibility with Linux 102options COMPAT_FREEBSD # binary compatibility with FreeBSD 103#options COMPAT_MACH # binary compatibility with Mach binaries 104#options EXEC_MACHO # exec MACH-O binaries 105#options COMPAT_PECOFF # kernel support to run Win32 apps 106 107# File systems 108file-system FFS # UFS 109file-system EXT2FS # second extended file system (linux) 110file-system LFS # log-structured file system 111file-system MFS # memory file system 112file-system NFS # Network File System client 113file-system NTFS # Windows/NT file system (experimental) 114file-system CD9660 # ISO 9660 + Rock Ridge file system 115file-system MSDOSFS # MS-DOS file system 116file-system FDESC # /dev/fd 117file-system KERNFS # /kern 118file-system NULLFS # loopback file system 119file-system OVERLAY # overlay file system 120file-system PORTAL # portal filesystem (still experimental) 121file-system PROCFS # /proc 122file-system UMAPFS # NULLFS + uid and gid remapping 123file-system UNION # union file system 124file-system CODA # Coda File System; also needs vcoda (below) 125 126# File system options 127options QUOTA # UFS quotas 128#options FFS_EI # FFS Endian Independent support 129options SOFTDEP # FFS soft updates support. 130options NFSSERVER # Network File System server 131#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 132 # immutable) behave as system flags. 133 134# Networking options 135#options GATEWAY # packet forwarding 136options INET # IP + ICMP + TCP + UDP 137options INET6 # IPV6 138#options IPSEC # IP security 139#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 140#options IPSEC_DEBUG # debug for IP security 141#options MROUTING # IP multicast routing 142options NS # XNS 143#options NSIP # XNS tunneling over IP 144options ISO,TPIP # OSI 145#options EON # OSI tunneling over IP 146options CCITT,LLC,HDLC # X.25 147options NETATALK # AppleTalk networking protocols 148options PPP_BSDCOMP # BSD-Compress compression support for PPP 149options PPP_DEFLATE # Deflate compression support for PPP 150options PPP_FILTER # Active filter support for PPP (requires bpf) 151options PFIL_HOOKS # pfil(9) packet filter hooks 152options IPFILTER_LOG # ipmon(8) log support 153#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 154 155# These options enable verbose messages for several subsystems. 156# Warning, these may compile large string tables into the kernel! 157#options EISAVERBOSE # verbose EISA device autoconfig messages 158options MIIVERBOSE # verbose PHY autoconfig messages 159options PCIVERBOSE # verbose PCI device autoconfig messages 160#options PCI_CONFIG_DUMP # verbosely dump PCI config space 161#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 162options SCSIVERBOSE # human readable SCSI error messages 163options USBVERBOSE # verbose USB device autoconfig messages 164#options PNPBIOSVERBOSE # verbose PnP BIOS messages 165#options PNPBIOSDEBUG # more fulsome PnP BIOS debugging messages 166#options I2OVERBOSE # verbose I2O driver messages 167#options MCAVERBOSE # verbose MCA device autoconfig messages 168 169options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 170 171# 172# wscons options 173# 174# builtin terminal emulations 175#options WSEMUL_SUN # sun terminal emulation 176options WSEMUL_VT100 # VT100 / VT220 emulation 177# different kernel output - see dev/wscons/wsdisplayvar.h 178options WS_KERNEL_FG=WSCOL_GREEN 179#options WS_KERNEL_BG=WSCOL_BLACK 180# compatibility to other console drivers 181options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 182options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 183options WSDISPLAY_COMPAT_USL # VT handling 184options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 185# see dev/pckbc/wskbdmap_mfii.c for implemented layouts 186#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 187# allocate a number of virtual screens at autoconfiguration time 188#options WSDISPLAY_DEFAULTSCREENS=4 189# use a large software cursor that doesn't blink 190options PCDISPLAY_SOFTCURSOR 191# modify the screen type of the console; defaults to "80x25" 192#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 193 194# Kernel root file system and dump configuration. 195config netbsd root on ? type ? 196#config netbsd root on sd0a type ffs 197#config netbsd root on ? type nfs 198 199# 200# Device configuration 201# 202 203mainbus0 at root 204 205#apm0 at mainbus0 # Advanced power management 206 207# Tuning for power management, see apm(4) for more details. 208#options APM_NO_IDLE # Don't call BIOS CPU idle function 209#options APM_V10_ONLY # Use only the APM 1.0 calls 210#options APM_NO_POWEROFF # Don't power off on halt(8) 211#options APM_POWER_PRINT # Print stats on the console 212#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 213 214 215# Basic Bus Support 216 217# Plug-and-Play BIOS and attached devices 218 219#pnpbios* at mainbus? 220 221# mainboard audio chips 222#ess* at pnpbios? index ? # ESS AudioDrive 223#sb* at pnpbios? index ? # NeoMagic 256AV in sb mode 224#wss* at pnpbios? index ? # NeoMagic 256AV in wss mode 225#ym* at pnpbios? index ? # OPL3-SA3 226 227# com port 228# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial 229# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there 230# will be no com0. A side effect is pcmcia (and other) com? previously 231# starting at com3 may attach as com1 or com2. 232#com* at pnpbios? index ? # serial ports 233 234# parallel port 235# The above "com*" comments apply, cf. "lpt0" under "ISA parallel 236# "printer interfaces". 237#lpt* at pnpbios? index ? # parallel ports 238 239#pckbc* at pnpbios? index ? # PC keyboard/mouse controller 240#fdc* at pnpbios? index ? # floppy controller 241 242# IDE controller on Toshiba Portege 3000 series (crippled PCI device) 243#pciide* at pnpbios? index ? 244 245# PCI bus support 246pci* at mainbus? bus ? 247pci* at pchb? bus ? 248pci* at ppb? bus ? 249 250# Configure PCI using BIOS information 251options PCIBIOS # PCI BIOS support 252#options PCIBIOSVERBOSE # PCI BIOS verbose info 253options PCIBIOS_ADDR_FIXUP # fixup PCI I/O addresses 254options PCIBIOS_BUS_FIXUP # fixup PCI bus numbering 255options PCIBIOS_INTR_FIXUP # fixup PCI interrupt routing 256#options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11 257options PCIBIOS_INTR_GUESS # see pcibios(4) 258#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup 259 260# PCI bridges 261pchb* at pci? dev ? function ? # PCI-Host bridges 262#pceb* at pci? dev ? function ? # PCI-EISA bridges 263pcib* at pci? dev ? function ? # PCI-ISA bridges 264#pcmb* at pci? dev ? function ? # PCI-MCA bridges 265ppb* at pci? dev ? function ? # PCI-PCI bridges 266ppb* at cardbus? dev ? function ? # Cardbus-PCI bridges (www.magma.com) 267# XXX 'puc's aren't really bridges, but there's no better place for them here 268puc* at pci? dev ? function ? # PCI "universal" comm. cards 269 270# EISA bus support 271#eisa* at mainbus? 272#eisa* at pceb? 273 274# ISA bus support 275isa0 at mainbus? 276#isa0 at pceb? 277isa0 at pcib? 278 279# PCMCIA bus support 280#pcmcia* at pcic? controller ? socket ? 281#pcmcia* at tcic? controller ? socket ? 282 283# MCA bus support 284#mca0 at mainbus? 285 286# ISA PCMCIA controllers 287#pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000 288#pcic1 at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000 289#tcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x10000 290 291# PCI PCMCIA controllers 292#pcic0 at pci? dev? function ? 293 294# ISA Plug-and-Play bus support 295#isapnp0 at isa? 296 297# ISA Plug-and-Play PCMCIA controllers 298#pcic* at isapnp? 299 300# CardBus bridge support 301cbb* at pci? dev ? function ? 302cardslot* at cbb? 303 304# CardBus bus support 305cardbus* at cardslot? 306pcmcia* at cardslot? 307 308# Coprocessor Support 309 310# Math Coprocessor support 311npx0 at isa? port 0xf0 irq 13 # x86 math coprocessor 312 313 314# Console Devices 315 316# ISA console 317#pc0 at isa? port 0x60 irq 1 # pccons generic PC console driver 318# Keyboard layout configuration for pccons 319#options FRENCH_KBD 320#options FINNISH_KBD 321#options GERMAN_KBD 322#options NORWEGIAN_KBD 323# pccons-specific options: 324#options XSERVER_DDB # PF12 gets you into DDB when X is running 325#options XSERVER # X server support 326 327 328# wscons 329pckbc0 at isa? # pc keyboard controller 330pckbd* at pckbc? # PC keyboard 331# "opms" should not be enabled together with "pms" or "pmsi" 332pms* at pckbc? # PS/2 mouse for wsmouse 333pmsi* at pckbc? # PS/2 "Intelli"mouse for wsmouse 334#opms* at pckbc? # backwards compatible PS/2 mouse 335vga0 at isa? 336vga* at pci? dev ? function ? 337pcdisplay0 at isa? # CGA, MDA, EGA, HGA 338wsdisplay* at vga? console ? 339wsdisplay* at pcdisplay? console ? 340wskbd* at pckbd? console ? 341wsmouse* at pms? mux 0 342wsmouse* at pmsi? mux 0 343 344pcppi0 at isa? 345sysbeep0 at pcppi? 346 347# Serial Devices 348 349# PCI serial interfaces 350#com* at puc? port ? # 16x50s on "universal" comm boards 351#cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 352#cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 353 354# ISA Plug-and-Play serial interfaces 355#com* at isapnp? # Modems and serial boards 356 357# PCMCIA serial interfaces 358com* at pcmcia? function ? # Modems and serial cards 359 360pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 361com* at pcmcom? slave ? # ...and the slave devices 362 363# CardBus serial interfaces 364com* at cardbus? dev ? function ? # Modems and serial cards 365 366# ISA serial interfaces 367#options COM_HAYESP # adds Hayes ESP serial board support 368com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 369com1 at isa? port 0x2f8 irq 3 370com2 at isa? port 0x3e8 irq 5 371#com3 at isa? port 0x2e8 irq 9 372#ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards 373#com* at ast? slave ? 374#boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards 375#boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016) 376#boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016 377#com* at boca? slave ? 378#tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards 379#com* at tcom? slave ? 380#rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards 381#com* at rtfps? slave ? 382#cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards 383#addcom0 at isa? port 0x108 irq 5 # Addonics FlexPort 8S 384#com* at addcom? slave ? 385#moxa0 at isa? port 0x100 irq 5 # MOXA C168H serial card (experimental) 386#com* at moxa? slave ? 387 388# MCA serial interfaces 389#com* at mca? slot ? # 16x50s on comm boards 390 391# Parallel Printer Interfaces 392 393# PCI parallel printer interfaces 394#lpt* at puc? port ? # || ports on "universal" comm boards 395 396# ISA parallel printer interfaces 397lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 398lpt1 at isa? port 0x278 399lpt2 at isa? port 0x3bc 400 401# Hardware monitors 402 403# LM7[89] and compatible hardware monitors 404#lm0 at isa? port 0x290 # other common ports: 0x280, 0x310 405 406# VIA VT82C686A hardware monitor 407#viapm* at pci? dev ? function ? 408#viaenv* at viapm? 409 410 411# I2O devices 412#iop* at pci? dev ? function ? # I/O processor 413#iopsp* at iop? tid ? # SCSI/FC-AL ports 414#ld* at iop? tid ? # block devices 415 416 417# SCSI Controllers and Devices 418 419# PCI SCSI controllers 420#adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 421#adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 422#ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 423#bha* at pci? dev ? function ? # BusLogic 9xx SCSI 424#dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 425#isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 426#siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 427#pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 428 429# EISA SCSI controllers 430#ahb* at eisa? slot ? # Adaptec 174[02] SCSI 431#ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI 432#bha* at eisa? slot ? # BusLogic 7xx SCSI 433#dpt* at eisa? slot ? # DPT EATA SCSI 434#uha* at eisa? slot ? # UltraStor 24f SCSI 435 436# PCMCIA SCSI controllers 437aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 438esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 439 440# ISA Plug-and-Play SCSI controllers 441#aha* at isapnp? # Adaptec AHA-154[02 442#aic* at isapnp? # Adaptec AHA-1520B 443 444# ISA SCSI controllers 445#adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] 446#aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 447#aha1 at isa? port 0x334 irq ? drq ? 448#ahc0 at isa? port ? irq ? # Adaptec 284x SCSI 449#aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI 450#bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI 451#bha1 at isa? port 0x334 irq ? drq ? 452# The "nca" and "dpt" probes might give false hits or hang your machine. 453#dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID 454#nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller 455#nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.) 456#sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI 457#uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI 458#uha1 at isa? port 0x340 irq ? drq ? 459#wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers 460#wds1 at isa? port 0x358 irq 11 drq 5 461 462# CardBus SCSI cards 463adv* at cardbus? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 464ahc* at cardbus? dev ? function ? # Adaptec ADP-1480 465 466# MCA SCSI cards 467#aha* at mca? slot ? # Adaptec AHA-1640 468 469# SCSI bus support 470#scsibus* at adv? 471#scsibus* at adw? 472#scsibus* at aha? 473#scsibus* at ahb? 474scsibus* at ahc? 475scsibus* at aic? 476#scsibus* at bha? 477#scsibus* at dpt? 478scsibus* at esp? 479#scsibus* at iopsp? 480#scsibus* at isp? 481#scsibus* at nca? 482#scsibus* at pcscp? 483#scsibus* at sea? 484#scsibus* at siop? 485#scsibus* at uha? 486#scsibus* at wds? 487 488# SCSI devices 489sd* at scsibus? target ? lun ? # SCSI disk drives 490st* at scsibus? target ? lun ? # SCSI tape drives 491cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 492ch* at scsibus? target ? lun ? # SCSI autochangers 493ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 494ss* at scsibus? target ? lun ? # SCSI scanners 495uk* at scsibus? target ? lun ? # SCSI unknown 496 497 498# RAID controllers and devices 499#cac* at eisa? # Compaq EISA array controllers 500#cac* at pci? dev ? function ? # Compaq PCI array controllers 501#mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 502#twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 503 504#ld* at cac? unit ? # logical disk devices 505#ld* at twe? unit ? 506#ld* at mlx? unit ? 507 508 509# IDE and related devices 510# PCI IDE controllers - see pciide(4) for supported hardware. 511# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 512# how to set up DMA modes for this chip. This may work, or may cause 513# a machine hang with some controllers. 514pciide* at pci? dev ? function ? flags 0x0000 515 516# ISA Plug-and-Play IDE controllers 517#wdc* at isapnp? 518 519# PCMCIA IDE controllers 520wdc* at pcmcia? function ? 521 522# ISA ST506, ESDI, and IDE controllers 523# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 524# fall back to 16bits I/O if 32bits I/O are not functional). 525# Some controllers pass the initial 32bit test, but will fail later. 526wdc0 at isa? port 0x1f0 irq 14 flags 0x00 527wdc1 at isa? port 0x170 irq 15 flags 0x00 528 529# IDE drives 530# Flags are used only with controllers that support DMA operations 531# and mode settings (e.g. some pciide controllers) 532# The lowest order four bits (rightmost digit) of the flags define the PIO 533# mode to use, the next set of four bits the DMA mode and the third set the 534# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 535# to use, and the last bit must be 1 for this setting to be used. 536# For DMA and UDMA, 0xf (1111) means 'disable'. 537# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 538# (0xc=1100, 0xa=1010, 0xf=1111) 539# 0x0000 means "use whatever the drive claims to support". 540wd* at wdc? channel ? drive ? flags 0x0000 541wd* at pciide? channel ? drive ? flags 0x0000 542 543# ATAPI bus support 544atapibus* at wdc? channel ? 545atapibus* at pciide? channel ? 546 547# ATAPI devices 548# flags have the same meaning as for IDE drives. 549cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 550sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 551uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 552 553 554# Miscellaneous mass storage devices 555 556# ISA floppy 557fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 558#fdc1 at isa? port 0x370 irq ? drq ? 559fd* at fdc? drive ? # the drives themselves 560# some machines need you to do this instead of fd* 561#fd0 at fdc0 drive 0 562 563# ISA CD-ROM devices 564#mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives 565 566# ISA tape devices 567# note: the wt driver conflicts unpleasantly with SMC boards at the 568# same I/O address. The probe reprograms their EEPROMs. Don't 569# uncomment it unless you are actually using it. 570#wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives 571 572# MCA ESDI devices 573#edc* at mca? slot ? # IBM ESDI Disk Controllers 574#ed* at edc? 575 576 577# Network Interfaces 578 579# PCI network interfaces 580#an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 581#de* at pci? dev ? function ? # DEC 21x4x-based Ethernet 582#en* at pci? dev ? function ? # ENI/Adaptec ATM 583#ep* at pci? dev ? function ? # 3Com 3c59x 584ex* at pci? dev ? function ? # 3Com 90x[BC] 585#epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 586#esh* at pci? dev ? function ? # Essential HIPPI card 587#fpa* at pci? dev ? function ? # DEC DEFPA FDDI 588fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 589#le* at pci? dev ? function ? # PCnet-PCI Ethernet 590#lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 591#ne* at pci? dev ? function ? # NE2000-compatible Ethernet 592#ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 593#rtk* at pci? dev ? function ? # Realtek 8129/8139 594#sip* at pci? dev ? function ? # SiS 900 Ethernet 595#ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 596#tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 597#tlp* at pci? dev ? function ? # DECchip 21x4x (and clones) Ethernet 598#options TLP_MATCH_21040 599#options TLP_MATCH_21041 600#options TLP_MATCH_21140 601#options TLP_MATCH_21142 602#vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 603 604# EISA network interfaces 605#ep* at eisa? slot ? # 3Com 3c579 Ethernet 606#fea* at eisa? slot ? # DEC DEFEA FDDI 607#tlp* at eisa? slot ? # DEC DE-425 Ethernet 608 609# ISA Plug-and-Play network interfaces 610#an* at isapnp? # Aironet 802.11 611#ep* at isapnp? # 3Com 3c509 Ethernet 612#ne* at isapnp? # NE2000-compatible Ethernet 613#tr* at isapnp? # IBM/3COM TROPIC Token-Ring 614 615# PCMCIA network interfaces 616an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 617awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 618cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 619ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 620mbe* at pcmcia? function ? # MB8696x based Ethernet 621ne* at pcmcia? function ? # NE2000-compatible Ethernet 622ray* at pcmcia? function ? # Raytheon Raylink (802.11) 623sm* at pcmcia? function ? # Megahertz Ethernet 624wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11) 625xi* at pcmcia? function ? # Xircom CreditCard Ethernet 626 627mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 628com* at mhzc? 629sm* at mhzc? 630 631# ISA network interfaces 632#ate0 at isa? port 0x2a0 irq ? # AT1700 633#cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 634#ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 635#eg0 at isa? port 0x280 irq 9 # 3C505 ethernet cards 636#el0 at isa? port 0x300 irq 9 # 3C501 ethernet cards 637#ep* at isa? port ? irq ? # 3C509 ethernet cards 638#ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3C507 639#ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN 640#fmv0 at isa? port 0x2a0 irq ? # FMV-180 series 641#ix0 at isa? port 0x300 irq 10 # EtherExpress/16 642#iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 643#lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 644#depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA 645#le* at depca? 646#nele0 at isa? port 0x320 irq 9 drq 7 # NE2100 647#le* at nele? 648#ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial 649#bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan 650#le* at bicc? 651#ne0 at isa? port 0x280 irq 9 # NE[12]000 ethernet cards 652#ne1 at isa? port 0x300 irq 10 653sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet 654#tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring 655#tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring 656#tr* at isa? port ? irq ? # 3COM TROPIC based Token-Ring 657#we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 658#we1 at isa? port 0x300 iomem 0xcc000 irq 10 659 660# CardBus network cards 661ex* at cardbus? dev ? function ? # 3Com 3C575TX 662fxp* at cardbus? dev ? function ? # Intel i8255x 663rtk* at cardbus? dev ? function ? # Realtek 8129/8139 664tlp* at cardbus? dev ? function ? # DECchip 21143 665 666# MCA network cards 667#elmc* at mca? slot ? # 3Com EtherLink/MC (3c523) 668#ep* at mca? slot ? # 3Com EtherLink III (3c529) 669#we* at mca? slot ? # WD/SMC Ethernet 670#ate* at mca? slot ? # Allied Telesis AT1720 671#ne* at mca? slot ? # Novell NE/2 and clones 672#tr* at mca? slot ? # IBM Token Ring adapter 673#le* at mca? slot ? # SKNET Personal/MC2+ 674 675# MII/PHY support 676dmphy* at mii? phy ? # Davicom DM9101 PHYs 677exphy* at mii? phy ? # 3Com internal PHYs 678icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890 679inphy* at mii? phy ? # Intel 82555 PHYs 680iophy* at mii? phy ? # Intel 82553 PHYs 681lxtphy* at mii? phy ? # Level One LXT-970 PHYs 682nsphy* at mii? phy ? # NS83840 PHYs 683nsphyter* at mii? phy ? # NS83843 PHYs 684qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 685sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 686tlphy* at mii? phy ? # ThunderLAN PHYs 687tqphy* at mii? phy ? # TDK Semiconductor PHYs 688ukphy* at mii? phy ? # generic unknown PHYs 689 690 691# USB Controller and Devices 692 693# PCI USB controllers 694ohci* at pci? dev ? function ? # Open Host Controller 695uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 696 697# CardBus USB controllers 698ohci* at cardbus? dev ? function ? # Open Host Controller 699 700# USB bus support 701usb* at ohci? 702usb* at uhci? 703 704# USB Hubs 705uhub* at usb? 706uhub* at uhub? port ? configuration ? interface ? 707 708# USB HID device 709uhidev* at uhub? port ? configuration ? interface ? 710 711# USB Mice 712ums* at uhidev? reportid ? 713wsmouse* at ums? mux 0 714 715# USB Keyboards 716ukbd* at uhidev? reportid ? 717wskbd* at ukbd? console ? mux 1 718 719# USB Generic HID devices 720uhid* at uhidev? reportid ? 721 722# USB Printer 723ulpt* at uhub? port ? configuration ? interface ? 724 725# USB Modem 726umodem* at uhub? port ? configuration ? 727ucom* at umodem? 728 729# USB Mass Storage 730umass* at uhub? port ? configuration ? interface ? 731atapibus* at umass? channel ? 732scsibus* at umass? channel ? 733 734# USB audio 735uaudio* at uhub? port ? configuration ? 736 737# USB MIDI 738umidi* at uhub? port ? configuration ? 739 740# USB Ethernet adapters 741aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 742cue* at uhub? port ? # CATC USB-EL1201A based adapters 743kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 744 745# Prolofic PL2301/PL2302 host-to-host adapter 746upl* at uhub? port ? 747 748# Serial adapters 749# FTDI FT8U100AX serial adapter 750uftdi* at uhub? port ? 751ucom* at uftdi? portno ? 752 753uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 754ucom* at uplcom? portno ? 755 756umct* at uhub? port ? # MCT USB-RS232 serial adapter 757ucom* at umct? portno ? 758 759# Diamond Multimedia Rio 500 760urio* at uhub? port ? 761 762# USB Handspring Visor 763uvisor* at uhub? port ? 764ucom* at uvisor? 765 766# USB scanners 767uscanner* at uhub? port ? 768 769# USB scanners that use SCSI emulation, e.g., HP5300 770usscanner* at uhub? port ? 771scsibus* at usscanner? channel ? 772 773# Y@P firmware loader 774uyap* at uhub? port ? 775 776# USB Generic driver 777ugen* at uhub? port ? 778 779 780# Audio Devices 781 782# PCI audio devices 783auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 784auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 785clcs* at pci? dev ? function ? # Cirrus Logic CS4280 786clct* at pci? dev ? function ? # Cirrus Logic CS4281 787cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 788eap* at pci? dev ? function ? # Ensoniq AudioPCI 789emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 790esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 791esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 792eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 793fms* at pci? dev ? function ? # Forte Media FM801 794neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 795sv* at pci? dev ? function ? # S3 SonicVibes 796yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 797 798# ISA Plug-and-Play audio devices 799#ess* at isapnp? # ESS Tech ES1887, ES1888, ES888 audio 800#guspnp* at isapnp? # Gravis Ultra Sound PnP audio 801#sb* at isapnp? # SoundBlaster-compatible audio 802#wss* at isapnp? # Windows Sound System 803#ym* at isapnp? # Yamaha OPL3-SA3 audio 804 805# ISA audio devices 806# the "aria" probe might give false hits 807#aria0 at isa? port 0x290 irq 10 # Aria 808#ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 809#gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound 810#pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum 811#pss0 at isa? port 0x220 irq 7 drq 6 # Personal Sound System 812#sp0 at pss0 port 0x530 irq 10 drq 0 # sound port driver 813sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster 814wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System 815 816# PCMCIA audio devices 817esl* at pcmcia? function ? # ESS 1688 AudioDrive 818 819#cms0 at isa? port 0x220 # Creative Music System 820 821# OPL[23] FM synthesizers 822#opl0 at isa? port 0x388 # use only if not attached to sound card 823opl* at cmpci? flags 1 824opl* at esl? 825opl* at eso? 826#opl* at ess? 827opl* at fms? 828opl* at sb? 829opl* at sv? 830opl* at wss? 831opl* at yds? 832#opl* at ym? 833 834# Audio support 835#audio* at aria? 836audio* at auich? 837audio* at auvia? 838audio* at clcs? 839audio* at clct? 840audio* at cmpci? 841audio* at eap? 842audio* at emuxki? 843audio* at esa? 844audio* at esl? 845audio* at esm? 846audio* at eso? 847#audio* at ess? 848audio* at fms? 849#audio* at gus? 850#audio* at guspnp? 851audio* at neo? 852#audio* at pas? 853audio* at sb? 854#audio* at sp? 855audio* at sv? 856audio* at uaudio? 857audio* at wss? 858audio* at yds? 859#audio* at ym? 860 861# MPU 401 UARTs 862#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 863mpu* at cmpci? 864mpu* at eso? 865mpu* at fms? 866mpu* at sb? 867mpu* at yds? 868#mpu* at ym? 869 870# MIDI support 871midi* at clcs? # Cirrus Logic CS4280 MIDI port 872#midi* at clct? # Cirrus Logic CS4281 MIDI port 873#midi* at cms? # Creative Music System 874midi* at eap? # 137[01] MIDI port 875midi* at mpu? # MPU 401 876midi* at opl? # OPL FM synth 877midi* at pcppi? # MIDI interface to the PC speaker 878midi* at sb? # SB1 MIDI port 879midi* at umidi? # USB MIDI 880 881# The spkr driver provides a simple tone interface to the built in speaker. 882#spkr0 at pcppi? # PC speaker 883 884 885# TV cards 886 887# Brooktree 848/849/878/879 based TV cards 888#bktr* at pci? dev ? function ? 889 890 891# Mice 892 893# ISA busmice 894#lms0 at isa? port 0x23c irq 5 # Logitech bus mouse 895#lms1 at isa? port 0x238 irq 5 896#mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse 897#mms1 at isa? port 0x238 irq 5 898#wsmouse* at lms? mux 0 899#wsmouse* at mms? mux 0 900# backwards compatible versions 901#olms0 at isa? port 0x23c irq 5 # Logitech bus mouse 902#olms1 at isa? port 0x238 irq 5 903#omms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse 904#omms1 at isa? port 0x238 irq 5 905#opms0 at pc? irq 12 # PS/2 auxiliary port mouse 906 907 908# Joysticks 909 910#joy* at pnpbios? index ? # Game port 911 912# ISA Plug-and-Play joysticks 913#joy* at isapnp? # Game ports (usually on audio cards) 914 915# PCI joysticks 916#joy* at pci? # Game ports (usually on audio cards) 917 918# ISA joysticks. Probe is a little strange; add only if you have one. 919#joy0 at isa? port 0x201 920 921 922# Miscellaneous Devices 923 924# Planetconnect Satellite receiver driver. 925#satlink0 at isa? port 0x300 drq 1 926 927 928# Pull in optional local configuration 929include "arch/i386/conf/GENERIC.local" 930 931 932# Pseudo-Devices 933 934# disk/mass storage pseudo-devices 935pseudo-device ccd 4 # concatenated/striped disk devices 936#pseudo-device raid 4 # RAIDframe disk driver 937#options RAID_AUTOCONFIG # auto-configuration of RAID components 938pseudo-device md 1 # memory disk device (ramdisk) 939pseudo-device vnd 4 # disk-like interface to files 940 941# network pseudo-devices 942pseudo-device bpfilter 8 # Berkeley packet filter 943pseudo-device ipfilter # IP filter (firewall) and NAT 944pseudo-device loop # network loopback 945pseudo-device ppp 2 # Point-to-Point Protocol 946pseudo-device sl 2 # Serial Line IP 947pseudo-device strip 2 # Starmode Radio IP (Metricom) 948pseudo-device tun 2 # network tunneling over tty 949pseudo-device gre 2 # generic L3 over IP tunnel 950pseudo-device ipip 2 # IP Encapsulation within IP (RFC 2003) 951pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 952#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 953#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 954pseudo-device vlan # IEEE 802.1q encapsulation 955pseudo-device bridge # simple inter-network bridging 956 957# miscellaneous pseudo-devices 958pseudo-device pty # pseudo-terminals 959pseudo-device tb 1 # tablet line discipline 960pseudo-device sequencer 1 # MIDI sequencer 961# rnd works; RND_COM does not on port i386 yet. 962pseudo-device rnd # /dev/random and in-kernel generator 963#options RND_COM # use "com" randomness as well (BROKEN) 964 965# a pseudo device needed for Coda # also needs CODA (above) 966pseudo-device vcoda 4 # coda minicache <-> venus comm. 967 968# mouse & keyboard multiplexor pseudo-devices 969pseudo-device wsmux 970