GENERIC revision 1.605
1ee3138f1Smrg# $NetBSD: GENERIC,v 1.605 2004/05/22 03:16:26 grant Exp $ 2ee3138f1Smrg# 3ee3138f1Smrg# GENERIC machine description file 4ee3138f1Smrg# 5ee3138f1Smrg# This machine description file is used to generate the default NetBSD 6ee3138f1Smrg# kernel. The generic kernel does not include all options, subsystems 7ee3138f1Smrg# and device drivers, but should be useful for most applications. 8ee3138f1Smrg# 9ee3138f1Smrg# The machine description file can be customised for your specific 10ee3138f1Smrg# machine to reduce the kernel size and improve its performance. 11ee3138f1Smrg# 12ee3138f1Smrg# For further information on compiling NetBSD kernels, see the config(8) 13ee3138f1Smrg# man page. 14ee3138f1Smrg# 15632d17a8Smrg# For further information on hardware support for this architecture, see 16ee3138f1Smrg# the intro(4) man page. For further information about kernel options 17ee3138f1Smrg# for this architecture, see the options(4) man page. For an explanation 18ee3138f1Smrg# of each device driver in this file see the section 4 man page for the 19ee3138f1Smrg# device. 20ee3138f1Smrg 21ee3138f1Smrginclude "arch/i386/conf/std.i386" 22ee3138f1Smrg 23ee3138f1Smrgoptions INCLUDE_CONFIG_FILE # embed config file in kernel binary 24ee3138f1Smrg 25ee3138f1Smrg#ident "GENERIC-$Revision: 1.605 $" 26ee3138f1Smrg 27ee3138f1Smrgmaxusers 32 # estimated number of users 287baae195Smrg 29ee3138f1Smrg# CPU support. At least one is REQUIRED. 30ee3138f1Smrgoptions I386_CPU 31ee3138f1Smrgoptions I486_CPU 32ee3138f1Smrgoptions I586_CPU 33ee3138f1Smrgoptions I686_CPU 34ee3138f1Smrg 35ee3138f1Smrg# CPU-related options. 36ee3138f1Smrgoptions MATH_EMULATE # floating point emulation 37ee3138f1Smrgoptions VM86 # virtual 8086 emulation 38ee3138f1Smrgoptions USER_LDT # user-settable LDT; used by WINE 39ee3138f1Smrg# insert delay no-ops in interrupts; recommended on very old machines 40ee3138f1Smrg#options PIC_DELAY 41ee3138f1Smrg 42aa8e367bSmrg# Enhanced SpeedStep Technology in the Pentium M 43aa8e367bSmrgoptions ENHANCED_SPEEDSTEP 44aa8e367bSmrg 45aa8e367bSmrgoptions MTRR # memory-type range register syscall support 46aa8e367bSmrg# doesn't work with MP just yet.. 47aa8e367bSmrg#options PERFCTRS # performance-monitoring counters support 48aa8e367bSmrg 49aa8e367bSmrg# delay between "rebooting ..." message and hardware reset, in milliseconds 50aa8e367bSmrg#options CPURESET_DELAY=2000 51aa8e367bSmrg 52aa8e367bSmrg# This option allows you to force a serial console at the specified 53aa8e367bSmrg# I/O address. see console(4) for details. 54aa8e367bSmrg#options CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600 55aa8e367bSmrg# you don't want the option below ON iff you are using the 56aa8e367bSmrg# serial console option of the new boot strap code. 57ee3138f1Smrg#options CONS_OVERRIDE # Always use above! independent of boot info 58ee3138f1Smrg 59ee3138f1Smrg# The following options override the memory sizes passed in from the boot 60ee3138f1Smrg# block. Use them *only* if the boot block is unable to determine the correct 61ee3138f1Smrg# values. Note that the BIOS may *correctly* report less than 640k of base 62ee3138f1Smrg# memory if the extended BIOS data area is located at the top of base memory 63ee3138f1Smrg# (as is the case on most recent systems). 64ee3138f1Smrg#options REALBASEMEM=639 # size of base memory (in KB) 65ee3138f1Smrg#options REALEXTMEM=15360 # size of extended memory (in KB) 66ee3138f1Smrg 67ee3138f1Smrg# Standard system options 68ee3138f1Smrg 69ee3138f1Smrgoptions INSECURE # disable kernel security levels - X needs this 70ee3138f1Smrg 71ee3138f1Smrgoptions RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 72aa8e367bSmrgoptions NTP # NTP phase/frequency locked loop 73ee3138f1Smrg#options NO_TSC_TIME # Don't use TSC microtime, even if available. 74ee3138f1Smrg # Improves time behavior under VMware. 75ee3138f1Smrg 76ee3138f1Smrgoptions KTRACE # system call tracing via ktrace(1) 77ee3138f1Smrgoptions SYSTRACE # system call vetting via systrace(1) 78ee3138f1Smrg 79ee3138f1Smrgoptions SYSVMSG # System V-like message queues 80ee3138f1Smrgoptions SYSVSEM # System V-like semaphores 81ee3138f1Smrg#options SEMMNI=10 # number of semaphore identifiers 82ee3138f1Smrg#options SEMMNS=60 # number of semaphores in system 83ee3138f1Smrg#options SEMUME=10 # max number of undo entries per process 84ee3138f1Smrg#options SEMMNU=30 # number of undo structures in system 85ee3138f1Smrgoptions SYSVSHM # System V-like memory sharing 86ee3138f1Smrg#options SHMMAXPGS=2048 # 2048 pages is the default 87ee3138f1Smrgoptions P1003_1B_SEMAPHORE # p1003.1b semaphore support 88ee3138f1Smrg 89ee3138f1Smrgoptions LKM # loadable kernel modules 90ee3138f1Smrg 91ee3138f1Smrgoptions USERCONF # userconf(4) support 92ee3138f1Smrg#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 93ee3138f1Smrg 94ee3138f1Smrg# Beep when it is safe to power down the system (requires sysbeep) 95ee3138f1Smrg#options BEEP_ONHALT 96ee3138f1Smrg# Some tunable details of the above feature (default values used below) 97ee3138f1Smrg#options BEEP_ONHALT_COUNT=3 # Times to beep 98ee3138f1Smrg#options BEEP_ONHALT_PITCH=1500 # Default frequency (in Hz) 99ee3138f1Smrg#options BEEP_ONHALT_PERIOD=250 # Default duration (in msecs) 100632d17a8Smrg 101ee3138f1Smrg# Enable experimental buffer queue strategy for better responsiveness under 102ee3138f1Smrg# high disk I/O load. Likely stable but not yet the default. 103632d17a8Smrg#options NEW_BUFQ_STRATEGY 104ee3138f1Smrg 105ee3138f1Smrg# Diagnostic/debugging support options 106ee3138f1Smrg#options DIAGNOSTIC # expensive kernel consistency checks 107ee3138f1Smrg#options DEBUG # expensive debugging checks/support 108ee3138f1Smrg#options KMEMSTATS # kernel memory statistics (vmstat -m) 109ee3138f1Smrgoptions DDB # in-kernel debugger 110ee3138f1Smrg#options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 111ee3138f1Smrgoptions DDB_HISTORY_SIZE=512 # enable history editing in DDB 112ee3138f1Smrg#options KGDB # remote debugger 113ee3138f1Smrg#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 114ee3138f1Smrg#makeoptions DEBUG="-g" # compile full symbol table 115ee3138f1Smrg 116ee3138f1Smrg# Compatibility options 117ee3138f1Smrgoptions COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI 118ee3138f1Smrgoptions COMPAT_09 # NetBSD 0.9 119ee3138f1Smrgoptions COMPAT_10 # NetBSD 1.0 120ee3138f1Smrgoptions COMPAT_11 # NetBSD 1.1 121ee3138f1Smrgoptions COMPAT_12 # NetBSD 1.2, 386BSD, and BSDI 122ee3138f1Smrgoptions COMPAT_13 # NetBSD 1.3, 386BSD, and BSDI 123ee3138f1Smrgoptions COMPAT_14 # NetBSD 1.4 124ee3138f1Smrgoptions COMPAT_15 # NetBSD 1.5 125632d17a8Smrgoptions COMPAT_16 # NetBSD 1.6 126632d17a8Smrgoptions COMPAT_20 # NetBSD 2.0 127ee3138f1Smrgoptions COMPAT_43 # 4.3BSD, 386BSD, and BSDI 128ee3138f1Smrgoptions COMPAT_386BSD_MBRPART # recognize old partition ID 129632d17a8Smrg#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 130ee3138f1Smrg 131ee3138f1Smrgoptions COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility 132ee3138f1Smrgoptions COMPAT_SVR4 # binary compatibility with SVR4 133ee3138f1Smrgoptions COMPAT_IBCS2 # binary compatibility with SCO and ISC 134ee3138f1Smrgoptions COMPAT_LINUX # binary compatibility with Linux 135ee3138f1Smrgoptions COMPAT_FREEBSD # binary compatibility with FreeBSD 136ee3138f1Smrg#options COMPAT_MACH # binary compatibility with Mach binaries 137ee3138f1Smrg#options COMPAT_DARWIN # binary compatibility with Darwin binaries 138ee3138f1Smrg#options EXEC_MACHO # exec MACH-O binaries 139ee3138f1Smrg#options COMPAT_PECOFF # kernel support to run Win32 apps 140ee3138f1Smrg 141ee3138f1Smrg# File systems 142ee3138f1Smrgfile-system FFS # UFS 143ee3138f1Smrgfile-system EXT2FS # second extended file system (linux) 144ee3138f1Smrgfile-system LFS # log-structured file system 145ee3138f1Smrgfile-system MFS # memory file system 146ee3138f1Smrgfile-system NFS # Network File System client 147ee3138f1Smrgfile-system NTFS # Windows/NT file system (experimental) 148ee3138f1Smrgfile-system CD9660 # ISO 9660 + Rock Ridge file system 149ee3138f1Smrgfile-system MSDOSFS # MS-DOS file system 150ee3138f1Smrgfile-system FDESC # /dev/fd 151ee3138f1Smrgfile-system KERNFS # /kern 152ee3138f1Smrgfile-system NULLFS # loopback file system 153ee3138f1Smrgfile-system OVERLAY # overlay file system 154ee3138f1Smrgfile-system PORTAL # portal filesystem (still experimental) 155ee3138f1Smrgfile-system PROCFS # /proc 156ee3138f1Smrgfile-system UMAPFS # NULLFS + uid and gid remapping 157ee3138f1Smrgfile-system UNION # union file system 158ee3138f1Smrgfile-system CODA # Coda File System; also needs vcoda (below) 159ee3138f1Smrgfile-system SMBFS # experimental - CIFS; also needs nsmb (below) 160ee3138f1Smrg 161ee3138f1Smrg# File system options 162ee3138f1Smrgoptions QUOTA # UFS quotas 163ee3138f1Smrg#options FFS_EI # FFS Endian Independent support 164ee3138f1Smrgoptions SOFTDEP # FFS soft updates support. 165ee3138f1Smrgoptions NFSSERVER # Network File System server 166ee3138f1Smrg#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 167ee3138f1Smrg # immutable) behave as system flags. 168ee3138f1Smrg 169ee3138f1Smrg# Networking options 170ee3138f1Smrg#options GATEWAY # packet forwarding 171ee3138f1Smrgoptions INET # IP + ICMP + TCP + UDP 172ee3138f1Smrgoptions INET6 # IPV6 173ee3138f1Smrg#options IPSEC # IP security 174ee3138f1Smrg#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 175ee3138f1Smrg#options IPSEC_DEBUG # debug for IP security 176ee3138f1Smrg#options MROUTING # IP multicast routing 177ee3138f1Smrgoptions NS # XNS 178ee3138f1Smrg#options NSIP # XNS tunneling over IP 179ee3138f1Smrgoptions ISO,TPIP # OSI 180ee3138f1Smrg#options EON # OSI tunneling over IP 181ee3138f1Smrgoptions CCITT,LLC,HDLC # X.25 182ee3138f1Smrgoptions NETATALK # AppleTalk networking protocols 183ee3138f1Smrgoptions PPP_BSDCOMP # BSD-Compress compression support for PPP 184ee3138f1Smrgoptions PPP_DEFLATE # Deflate compression support for PPP 185ee3138f1Smrgoptions PPP_FILTER # Active filter support for PPP (requires bpf) 186ee3138f1Smrgoptions PFIL_HOOKS # pfil(9) packet filter hooks 187ee3138f1Smrgoptions IPFILTER_LOG # ipmon(8) log support 188ee3138f1Smrg#options IPFILTER_DEFAULT_BLOCK # block all packets by default 189ee3138f1Smrg#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 190ee3138f1Smrg 191aa8e367bSmrg# These options enable verbose messages for several subsystems. 192aa8e367bSmrg# Warning, these may compile large string tables into the kernel! 193ee3138f1Smrg#options ACPIVERBOSE # verbose ACPI device autoconfig messages 194ee3138f1Smrgoptions EISAVERBOSE # verbose EISA device autoconfig messages 195ee3138f1Smrgoptions MIIVERBOSE # verbose PHY autoconfig messages 196ee3138f1Smrgoptions PCIVERBOSE # verbose PCI device autoconfig messages 197ee3138f1Smrg#options PCI_CONFIG_DUMP # verbosely dump PCI config space 198ee3138f1Smrg#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 199ee3138f1Smrgoptions SCSIVERBOSE # human readable SCSI error messages 200ee3138f1Smrgoptions USBVERBOSE # verbose USB device autoconfig messages 201ee3138f1Smrg#options PNPBIOSVERBOSE # verbose PnP BIOS messages 202ee3138f1Smrg#options PNPBIOSDEBUG # more fulsome PnP BIOS debugging messages 203ee3138f1Smrgoptions I2OVERBOSE # verbose I2O driver messages 204ee3138f1Smrgoptions MCAVERBOSE # verbose MCA device autoconfig messages 205ee3138f1Smrg 206ee3138f1Smrgoptions NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 207ee3138f1Smrg 208ee3138f1Smrg# 209ee3138f1Smrg# wscons options 210ee3138f1Smrg# 211ee3138f1Smrg# builtin terminal emulations 212ee3138f1Smrg#options WSEMUL_SUN # sun terminal emulation 213ee3138f1Smrgoptions WSEMUL_VT100 # VT100 / VT220 emulation 214ee3138f1Smrg# different kernel output - see dev/wscons/wsdisplayvar.h 215ee3138f1Smrgoptions WS_KERNEL_FG=WSCOL_GREEN 216ee3138f1Smrg#options WS_KERNEL_BG=WSCOL_BLACK 217ee3138f1Smrg# compatibility to other console drivers 218ee3138f1Smrgoptions WSDISPLAY_COMPAT_PCVT # emulate some ioctls 2197a5a6f8eSrtroptions WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 2207a5a6f8eSrtroptions WSDISPLAY_COMPAT_USL # VT handling 221ee3138f1Smrgoptions WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 2228ab4536dSmacallan# see dev/pckbc/wskbdmap_mfii.c for implemented layouts 2238ab4536dSmacallan#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 2248ab4536dSmacallan# allocate a number of virtual screens at autoconfiguration time 2258ab4536dSmacallan#options WSDISPLAY_DEFAULTSCREENS=4 226aa8e367bSmrg# use a large software cursor that doesn't blink 227aa8e367bSmrgoptions PCDISPLAY_SOFTCURSOR 228aa8e367bSmrg# modify the screen type of the console; defaults to "80x25" 229aa8e367bSmrg#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 230aa8e367bSmrg# work around a hardware bug that loaded fonts don't work; found on ATI cards 231aa8e367bSmrg#options VGA_CONSOLE_ATI_BROKEN_FONTSEL 232aa8e367bSmrg# the following enables some functions to get mouse console support. 233aa8e367bSmrg# if you want a really secure system, it may be better not to enable them, 234aa8e367bSmrg# see wsmoused(8), section SECURITY CONSIDERATIONS for more info. 235aa8e367bSmrg#options WSDISPLAY_CHARFUNCS # mouse console support 236aa8e367bSmrg# enable VGA raster mode capable of displaying multilingual text on console 2378ab4536dSmacallan#options VGA_RASTERCONSOLE 2388ab4536dSmacallan 239ee3138f1Smrg# Kernel root file system and dump configuration. 240ee3138f1Smrgconfig netbsd root on ? type ? 241ee3138f1Smrg#config netbsd root on sd0a type ffs 242ee3138f1Smrg#config netbsd root on ? type nfs 243ee3138f1Smrg 244ee3138f1Smrg# 245ee3138f1Smrg# Device configuration 246ee3138f1Smrg# 247ee3138f1Smrg 248ee3138f1Smrgmainbus0 at root 249ee3138f1Smrg 250ee3138f1Smrgcpu* at mainbus? 251ee3138f1Smrg#ioapic* at mainbus? 252ee3138f1Smrg 253ee3138f1Smrg# Doesn't do anything yet. 254ee3138f1Smrg#p64h2apic* at pci? dev? function? # P64H2 IOxAPIC 255ee3138f1Smrg 256ee3138f1Smrg#apm0 at mainbus0 # Advanced power management 257ee3138f1Smrg 258ee3138f1Smrg# Tuning for power management, see apm(4) for more details. 259ee3138f1Smrg#options APM_NO_IDLE # Don't call BIOS CPU idle function 260ee3138f1Smrg#options APM_V10_ONLY # Use only the APM 1.0 calls 261ee3138f1Smrg#options APM_NO_POWEROFF # Don't power off on halt(8) 262ee3138f1Smrg#options APM_POWER_PRINT # Print stats on the console 263ee3138f1Smrg#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 264ee3138f1Smrg 265ee3138f1Smrg 266ee3138f1Smrg# Basic Bus Support 267ee3138f1Smrg 268ee3138f1Smrg# Advanced Control and Power Interface 269ee3138f1Smrg 270ee3138f1Smrg# This option can be used to retrieve CPU and APIC information. 271ee3138f1Smrg# that I/O APICs can be used if ACPI is enabled below. 272ee3138f1Smrg# To use the I/O APIC(s), enable the ioapic line above. 2738ab4536dSmacallan#options MPBIOS # configure CPUs and APICs using MPBIOS 2748ab4536dSmacallan#options MPBIOS_SCANPCI # find PCI roots using MPBIOS 2758ab4536dSmacallan#options MPACPI # configure CPUs and APICs using ACPI 2768ab4536dSmacallan # (acpi at mainbus must also be enabled) 2778ab4536dSmacallan#options MPACPI_SCANPCI # find PCI roots using MPACPI 278aa8e367bSmrg 279aa8e367bSmrg#acpi0 at mainbus0 280aa8e367bSmrg#options ACPI_PCI_FIXUP # PCI interrupt routing via ACPI 281aa8e367bSmrg#options ACPI_ACTIVATE_DEV # If set, activate inactive devices 2828ab4536dSmacallan#options ACPICA_PEDANTIC # force strict conformance to the Spec. 2838ab4536dSmacallan 2848ab4536dSmacallan# ACPI devices 2858ab4536dSmacallan#acpiacad* at acpi? # ACPI AC Adapter 286aa8e367bSmrg#acpibat* at acpi? # ACPI Battery 287ee3138f1Smrg#acpibut* at acpi? # ACPI Button 288ee3138f1Smrg#acpiec* at acpi? # ACPI Embedded Controller 289ee3138f1Smrg#acpilid* at acpi? # ACPI Lid Switch 290ee3138f1Smrg#acpitz* at acpi? # ACPI Thermal Zone 291ee3138f1Smrg 292ee3138f1Smrg# Mainboard devices 293ee3138f1Smrg#com* at acpi? # Serial communications interface 294ee3138f1Smrg#fdc* at acpi? # Floppy disk controller 295ee3138f1Smrg#lpt* at acpi? # Parallel port 296ee3138f1Smrg#npx* at acpi? # Math coprocessor 297ee3138f1Smrg#pckbc* at acpi? # PC keyboard controller 298ee3138f1Smrg#wss* at acpi? # NeoMagic 256AV in wss mode 299aa8e367bSmrg 300ee3138f1Smrg# Sony Vaio jog dial 301ee3138f1Smrg#spic* at acpi? # Sony Programmable I/O Controller 302ee3138f1Smrg#wsmouse* at spic? 303ee3138f1Smrg 304ee3138f1Smrg# Toshiba Libretto devices 305ee3138f1Smrg#vald* at acpi? 306ee3138f1Smrg 307ee3138f1Smrg# Plug-and-Play BIOS and attached devices 308ee3138f1Smrg 309ee3138f1Smrg#pnpbios* at mainbus? 310ee3138f1Smrg 311ee3138f1Smrg# mainboard audio chips 312ee3138f1Smrg#ess* at pnpbios? index ? # ESS AudioDrive 313ee3138f1Smrg#sb* at pnpbios? index ? # NeoMagic 256AV in sb mode 314ee3138f1Smrg#wss* at pnpbios? index ? # NeoMagic 256AV in wss mode 315ee3138f1Smrg#ym* at pnpbios? index ? # OPL3-SA3 316ee3138f1Smrg 317ee3138f1Smrg# com port 318ee3138f1Smrg# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial 319ee3138f1Smrg# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there 320ee3138f1Smrg# will be no com0. A side effect is pcmcia (and other) com? previously 321ee3138f1Smrg# starting at com3 may attach as com1 or com2. 322ee3138f1Smrg#com* at pnpbios? index ? # serial ports 323ee3138f1Smrg 324ee3138f1Smrg# parallel port 325ee3138f1Smrg# The above "com*" comments apply, cf. "lpt0" under "ISA parallel 326ee3138f1Smrg# "printer interfaces". 327ee3138f1Smrg#lpt* at pnpbios? index ? # parallel ports 328ee3138f1Smrg 329ee3138f1Smrg#pckbc* at pnpbios? index ? # PC keyboard/mouse controller 330ee3138f1Smrg#fdc* at pnpbios? index ? # floppy controller 331ee3138f1Smrg 332ee3138f1Smrg# IDE controller on Toshiba Portege 3000 series (crippled PCI device) 333ee3138f1Smrg#pciide* at pnpbios? index ? 334ee3138f1Smrg 335ee3138f1Smrg# PCI bus support 336ee3138f1Smrgpci* at mainbus? bus ? 337ee3138f1Smrgpci* at pchb? bus ? 338ee3138f1Smrgpci* at ppb? bus ? 339ee3138f1Smrg 340ee3138f1Smrg# Configure PCI using BIOS information 341ee3138f1Smrg#options PCIBIOS # PCI BIOS support 342ee3138f1Smrg#options PCIBIOSVERBOSE # PCI BIOS verbose info 343ee3138f1Smrg#options PCIBIOS_ADDR_FIXUP # fixup PCI I/O addresses 344ee3138f1Smrg#options PCIBIOS_BUS_FIXUP # fixup PCI bus numbering 345ee3138f1Smrg#options PCIBIOS_INTR_FIXUP # fixup PCI interrupt routing 346ee3138f1Smrg#options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11 347ee3138f1Smrg#options PCIBIOS_INTR_GUESS # see pcibios(4) 348ee3138f1Smrg#options PCIBIOS_LIBRETTO_FIXUP # this code makes the Toshiba Libretto 349ee3138f1Smrg # L2/L3 work, but should not be enabled 350ee3138f1Smrg # on anything else. 351ee3138f1Smrg#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup 352ee3138f1Smrg 353ee3138f1Smrg# System Controllers 354ee3138f1Smrgelansc* at pci? dev ? function ? # AMD Elan SC520 System Controller 355ee3138f1Smrg 356ee3138f1Smrg# PCI bridges 357ee3138f1Smrg#ichlpcib* at pci? dev ? function ? # Intel ICH PCI-ISA w/ watchdog support 358ee3138f1Smrgpchb* at pci? dev ? function ? # PCI-Host bridges 359ee3138f1Smrgpceb* at pci? dev ? function ? # PCI-EISA bridges 360ee3138f1Smrgpcib* at pci? dev ? function ? # PCI-ISA bridges 361ee3138f1Smrgpcmb* at pci? dev ? function ? # PCI-MCA bridges 362ee3138f1Smrgppb* at pci? dev ? function ? # PCI-PCI bridges 363ee3138f1Smrg# XXX 'puc's aren't really bridges, but there's no better place for them here 364ee3138f1Smrgpuc* at pci? dev ? function ? # PCI "universal" comm. cards 365ee3138f1Smrg 366ee3138f1Smrgagp* at pchb? 367ee3138f1Smrg 368ee3138f1Smrg 369aa8e367bSmrg# EISA bus support 370ee3138f1Smrgeisa0 at mainbus? 371aa8e367bSmrgeisa0 at pceb? 372ee3138f1Smrg 373ee3138f1Smrg# ISA bus support 374ee3138f1Smrg#isa0 at ichlpcib? 375ee3138f1Smrgisa0 at mainbus? 376ee3138f1Smrgisa0 at pceb? 377ee3138f1Smrgisa0 at pcib? 378ee3138f1Smrg 379ee3138f1Smrg# PCMCIA bus support 380ee3138f1Smrgpcmcia* at pcic? controller ? socket ? 381ee3138f1Smrgpcmcia* at tcic? controller ? socket ? 382ee3138f1Smrg 383ee3138f1Smrg# MCA bus support 384ee3138f1Smrgmca0 at mainbus? 385ee3138f1Smrg 386ee3138f1Smrg# ISA PCMCIA controllers 387ee3138f1Smrgpcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000 388ee3138f1Smrgpcic1 at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000 389ee3138f1Smrgpcic2 at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000 390ee3138f1Smrgtcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x10000 391ee3138f1Smrg 392aa8e367bSmrg# PCI PCMCIA controllers 393ee3138f1Smrgpcic0 at pci? dev? function ? 394ee3138f1Smrg 395ee3138f1Smrg# ISA Plug-and-Play bus support 396ee3138f1Smrgisapnp0 at isa? 397ee3138f1Smrg 398ee3138f1Smrg# ISA Plug-and-Play PCMCIA controllers 399ee3138f1Smrgpcic* at isapnp? 400ee3138f1Smrg 401ee3138f1Smrg# CardBus bridge support 4027baae195Smrgcbb* at pci? dev ? function ? 403ee3138f1Smrgcardslot* at cbb? 404ee3138f1Smrg 4057baae195Smrg# CardBus bus support 406ee3138f1Smrgcardbus* at cardslot? 407aa8e367bSmrgpcmcia* at cardslot? 408255532b3Smacallan 409aa8e367bSmrg# Coprocessor Support 410255532b3Smacallan 411255532b3Smacallan# Math Coprocessor support 412ee3138f1Smrgnpx0 at isa? port 0xf0 irq 13 # x86 math coprocessor 413255532b3Smacallan 414255532b3Smacallan 415255532b3Smacallan# Console Devices 4168ab4536dSmacallan 417ee3138f1Smrg# ISA console 418ee3138f1Smrg#pc0 at isa? port 0x60 irq 1 # pccons generic PC console driver 419255532b3Smacallan# Keyboard layout configuration for pccons 420ee3138f1Smrg#options FRENCH_KBD 4217baae195Smrg#options FINNISH_KBD 422ee3138f1Smrg#options GERMAN_KBD 423ee3138f1Smrg#options NORWEGIAN_KBD 424ee3138f1Smrg# pccons-specific options: 4258ab4536dSmacallan#options XSERVER_DDB # PF12 gets you into DDB when X is running 426ee3138f1Smrg#options XSERVER # X server support 4277baae195Smrg 428ee3138f1Smrg 429ee3138f1Smrg# wscons 430ee3138f1Smrgpckbc0 at isa? # pc keyboard controller 431ee3138f1Smrgpckbd* at pckbc? # PC keyboard 432ee3138f1Smrgpms* at pckbc? # PS/2 mouse for wsmouse 433aa8e367bSmrg#options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume 434aa8e367bSmrgvga0 at isa? 435ee3138f1Smrgvga* at pci? dev ? function ? 436ee3138f1Smrgpcdisplay0 at isa? # CGA, MDA, EGA, HGA 437ee3138f1Smrg#machfb* at pci? dev ? function ? # ATI Mach64 framebuffer driver 438ee3138f1Smrgwsdisplay* at vga? console ? 439ee3138f1Smrgwsdisplay* at pcdisplay? console ? 440ee3138f1Smrg#wsdisplay* at machfb? console ? 441ee3138f1Smrgwskbd* at pckbd? console ? 442ee3138f1Smrgwsmouse* at pms? mux 0 443ee3138f1Smrg 444ee3138f1Smrgpcppi0 at isa? 445ee3138f1Smrgsysbeep0 at pcppi? 446ee3138f1Smrg 447ee3138f1Smrg# Serial Devices 448d49df8baStsutsui 449aa8e367bSmrg# PCI serial interfaces 450aa8e367bSmrgcom* at puc? port ? # 16x50s on "universal" comm boards 451aa8e367bSmrgcy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 452aa8e367bSmrgcz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 453aa8e367bSmrg 454aa8e367bSmrg# ISA Plug-and-Play serial interfaces 455d49df8baStsutsuicom* at isapnp? # Modems and serial boards 456ee3138f1Smrg 457ee3138f1Smrg# PCMCIA serial interfaces 458ee3138f1Smrgcom* at pcmcia? function ? # Modems and serial cards 459ee3138f1Smrg 460ee3138f1Smrgpcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 461ee3138f1Smrgcom* at pcmcom? slave ? # ...and the slave devices 462ee3138f1Smrg 463ee3138f1Smrg# CardBus serial interfaces 4640eaa3919Sphx#com* at cardbus? dev ? function ? # Modems and serial cards 4650eaa3919Sphx 4660eaa3919Sphx# ISA serial interfaces 4670eaa3919Sphx#options COM_HAYESP # adds Hayes ESP serial board support 4680eaa3919Sphxcom0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 469836253ffSabscom1 at isa? port 0x2f8 irq 3 470836253ffSabscom2 at isa? port 0x3e8 irq 5 471836253ffSabs#com3 at isa? port 0x2e8 irq 9 472836253ffSabs#ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards 473836253ffSabs#com* at ast? slave ? 4744ddc96cfShans#boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards 4754ddc96cfShans#boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016) 4764ddc96cfShans#boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016 4774ddc96cfShans#com* at boca? slave ? 4784ddc96cfShans#tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards 47950679589Stsutsui#com* at tcom? slave ? 48050679589Stsutsui#rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards 48150679589Stsutsui#com* at rtfps? slave ? 48250679589Stsutsui#cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards 48350679589Stsutsui#addcom0 at isa? port 0x108 irq 5 # Addonics FlexPort 8S 484ee3138f1Smrg#com* at addcom? slave ? 485ee3138f1Smrg#moxa0 at isa? port 0x100 irq 5 # MOXA C168H serial card (experimental) 486ee3138f1Smrg#com* at moxa? slave ? 487ee3138f1Smrg#ioat* at isa? port 0x220 irq 5 # BOCA IOAT66 6-port serial card 488ee3138f1Smrg#com* at ioat? slave ? 489ee3138f1Smrg 4907baae195Smrg# MCA serial interfaces 4917ffe8806Smartincom* at mca? slot ? # 16x50s on comm boards 4927ffe8806Smartin 493d49df8baStsutsui# Parallel Printer Interfaces 494d49df8baStsutsui 495d49df8baStsutsui# PCI parallel printer interfaces 496ee3138f1Smrglpt* at puc? port ? # || ports on "universal" comm boards 497ee3138f1Smrg 49852dc1b6aStsutsui# ISA parallel printer interfaces 49952dc1b6aStsutsuilpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 50052dc1b6aStsutsuilpt1 at isa? port 0x278 50152dc1b6aStsutsuilpt2 at isa? port 0x3bc 502ee3138f1Smrg 503ee3138f1Smrg# Hardware monitors 504ee3138f1Smrg 505ee3138f1Smrg# LM7[89] and compatible hardware monitors 506ee3138f1Smrg#lm0 at isa? port 0x290 # other common ports: 0x280, 0x310 507ee3138f1Smrg 508ee3138f1Smrg# PC87366 hardware monitor 509ee3138f1Smrg#nsclpcsio* at isa? 510ee3138f1Smrg 511ee3138f1Smrg# VIA VT82C686A hardware monitor 512ee3138f1Smrg#viapm* at pci? dev ? function ? 513ee3138f1Smrg#viaenv* at viapm? 514ee3138f1Smrg 515ee3138f1Smrg 516ee3138f1Smrg# I2O devices 517ee3138f1Smrgiop* at pci? dev ? function ? # I/O processor 518ee3138f1Smrgiopsp* at iop? tid ? # SCSI/FC-AL ports 519d49df8baStsutsuild* at iop? tid ? # block devices 520d49df8baStsutsuidpti* at iop? tid 0 # DPT/Adaptec control interface 521d49df8baStsutsui 522ee3138f1Smrg 523d49df8baStsutsui# SCSI Controllers and Devices 524ee3138f1Smrg 525ee3138f1Smrg# PCI SCSI controllers 526ee3138f1Smrgadv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 527ee3138f1Smrgadw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 5287baae195Smrgahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 5297baae195Smrgahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI 530ee3138f1Smrgbha* at pci? dev ? function ? # BusLogic 9xx SCSI 531ee3138f1Smrgdpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 532ee3138f1Smrgiha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 533ee3138f1Smrgisp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 534ee3138f1Smrgmly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 535ee3138f1Smrgmpt* at pci? dev ? function ? # LSI Fusion SCSI/FC 536pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 537siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 538esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 539#options SIOP_SYMLED # drive the act. LED in software 540trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 541 542# EISA SCSI controllers 543ahb* at eisa? slot ? # Adaptec 174[02] SCSI 544ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI 545bha* at eisa? slot ? # BusLogic 7xx SCSI 546dpt* at eisa? slot ? # DPT EATA SCSI 547uha* at eisa? slot ? # UltraStor 24f SCSI 548 549# PCMCIA SCSI controllers 550aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 551esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 552 553# ISA Plug-and-Play SCSI controllers 554aha* at isapnp? # Adaptec AHA-154[02 555aic* at isapnp? # Adaptec AHA-1520B 556 557# ISA SCSI controllers 558adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] SCSI 559aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 560aha1 at isa? port 0x334 irq ? drq ? 561ahc0 at isa? port ? irq ? # Adaptec 284x SCSI 562aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI 563bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI 564bha1 at isa? port 0x334 irq ? drq ? 565# The "nca" and "dpt" probes might give false hits or hang your machine. 566#dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID 567#nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller 568#nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.) 569sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI 570uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI 571uha1 at isa? port 0x340 irq ? drq ? 572wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers 573wds1 at isa? port 0x358 irq 11 drq 5 574 575# CardBus SCSI cards 576#adv* at cardbus? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 577#ahc* at cardbus? dev ? function ? # Adaptec ADP-1480 578 579# MCA SCSI cards 580aha* at mca? slot ? # Adaptec AHA-1640 581 582# SCSI bus support 583scsibus* at scsi? 584 585# SCSI devices 586sd* at scsibus? target ? lun ? # SCSI disk drives 587st* at scsibus? target ? lun ? # SCSI tape drives 588cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 589ch* at scsibus? target ? lun ? # SCSI autochangers 590ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 591ss* at scsibus? target ? lun ? # SCSI scanners 592uk* at scsibus? target ? lun ? # SCSI unknown 593 594 595# RAID controllers and devices 596aac* at pci? dev ? function ? # Adaptec AAC family 597amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 598cac* at eisa? slot ? # Compaq EISA array controllers 599cac* at pci? dev ? function ? # Compaq PCI array controllers 600icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 601mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 602mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family 603twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 604 605ld* at aac? unit ? # logical disk devices 606ld* at amr? unit ? 607ld* at cac? unit ? 608ld* at icp? unit ? 609ld* at twe? unit ? 610ld* at mlx? unit ? 611 612icpsp* at icp? unit ? # SCSI pass-through 613 614# IDE and related devices 615# PCI IDE controllers - see pciide(4) for supported hardware. 616# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 617# how to set up DMA modes for this chip. This may work, or may cause 618# a machine hang with some controllers. 619pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 620acardide* at pci? dev ? function ? # Acard IDE controllers 621aceride* at pci? dev ? function ? # Acer Lab IDE controllers 622artsata* at pci? dev ? function ? # Intel i31244 SATA controller 623cmdide* at pci? dev ? function ? # CMD tech IDE controllers 624cypide* at pci? dev ? function ? # Cypress IDE controllers 625hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 626optiide* at pci? dev ? function ? # Opti IDE controllers 627piixide* at pci? dev ? function ? # Intel IDE controllers 628pdcide* at pci? dev ? function ? # Promise IDE controllers 629rccide* at pci? dev ? function ? # ServerWorks IDE controllers 630satalink* at pci? dev ? function ? # SiI SATALink controllers 631siside* at pci? dev ? function ? # SiS IDE controllers 632slide* at pci? dev ? function ? # Symphony Labs IDE controllers 633stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 634viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 635 636# ISA Plug-and-Play IDE controllers 637wdc* at isapnp? 638 639# PCMCIA IDE controllers 640wdc* at pcmcia? function ? 641 642# ISA ST506, ESDI, and IDE controllers 643# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 644# fall back to 16bits I/O if 32bits I/O are not functional). 645# Some controllers pass the initial 32bit test, but will fail later. 646wdc0 at isa? port 0x1f0 irq 14 flags 0x00 647wdc1 at isa? port 0x170 irq 15 flags 0x00 648 649# ATA (IDE) bus support 650atabus* at ata? 651 652# IDE drives 653# Flags are used only with controllers that support DMA operations 654# and mode settings (e.g. some pciide controllers) 655# The lowest order four bits (rightmost digit) of the flags define the PIO 656# mode to use, the next set of four bits the DMA mode and the third set the 657# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 658# to use, and the last bit must be 1 for this setting to be used. 659# For DMA and UDMA, 0xf (1111) means 'disable'. 660# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 661# (0xc=1100, 0xa=1010, 0xf=1111) 662# 0x0000 means "use whatever the drive claims to support". 663wd* at atabus? drive ? flags 0x0000 664 665# ATA RAID configuration support, as found on some Promise controllers. 666pseudo-device ataraid 667ld* at ataraid? vendtype ? unit ? 668 669# ATAPI bus support 670atapibus* at atapi? 671 672# ATAPI devices 673# flags have the same meaning as for IDE drives. 674cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 675sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 676st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 677uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 678 679 680# Miscellaneous mass storage devices 681 682# ISA floppy 683fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 684#fdc1 at isa? port 0x370 irq ? drq ? 685fd* at fdc? drive ? # the drives themselves 686# some machines need you to do this instead of fd* 687#fd0 at fdc0 drive 0 688 689# ISA CD-ROM devices 690#mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives 691 692# ISA tape devices 693# note: the wt driver conflicts unpleasantly with SMC boards at the 694# same I/O address. The probe reprograms their EEPROMs. Don't 695# uncomment it unless you are actually using it. 696#wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives 697 698# MCA ESDI devices 699edc* at mca? slot ? # IBM ESDI Disk Controllers 700ed* at edc? 701 702 703# Network Interfaces 704 705# PCI network interfaces 706an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 707ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 708atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 709bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 710bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 711en* at pci? dev ? function ? # ENI/Adaptec ATM 712ep* at pci? dev ? function ? # 3Com 3c59x 713epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 714esh* at pci? dev ? function ? # Essential HIPPI card 715ex* at pci? dev ? function ? # 3Com 90x[BC] 716fpa* at pci? dev ? function ? # DEC DEFPA FDDI 717fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 718gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 719#hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 720le* at pci? dev ? function ? # PCnet-PCI Ethernet 721lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 722mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 723ne* at pci? dev ? function ? # NE2000-compatible Ethernet 724ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 725pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 726rtk* at pci? dev ? function ? # Realtek 8129/8139 727sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 728sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 729skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 730sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 731ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 732stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 733ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 734tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 735tlp* at pci? dev ? function ? # DECchip 21x4x and clones 736vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 737wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 738wm* at pci? dev ? function ? # Intel 8254x gigabit 739 740# EISA network interfaces 741ep* at eisa? slot ? # 3Com 3c579 Ethernet 742fea* at eisa? slot ? # DEC DEFEA FDDI 743tlp* at eisa? slot ? # DEC DE-425 Ethernet 744 745# ISA Plug-and-Play network interfaces 746an* at isapnp? # Aironet 802.11 747ep* at isapnp? # 3Com 3c509 Ethernet 748fmv* at isapnp? # Fujitsu FMV-183 749le* at isapnp? # AMD PCnet-ISA Ethernet 750ne* at isapnp? # NE2000-compatible Ethernet 751tr* at isapnp? # IBM/3COM TROPIC Token-Ring 752 753# PCMCIA network interfaces 754an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 755awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 756cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 757ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 758mbe* at pcmcia? function ? # MB8696x based Ethernet 759ne* at pcmcia? function ? # NE2000-compatible Ethernet 760ray* at pcmcia? function ? # Raytheon Raylink (802.11) 761sm* at pcmcia? function ? # Megahertz Ethernet 762# tr at pcmcia has problems with Cardbus bridges 763#tr* at pcmcia? function ? # TROPIC based Token-Ring 764wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 765xi* at pcmcia? function ? # Xircom CreditCard Ethernet 766 767mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 768com* at mhzc? 769sm* at mhzc? 770 771# ISA network interfaces 772ate0 at isa? port 0x2a0 irq ? # AT1700 773cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 774ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 775eg0 at isa? port 0x280 irq 9 # 3C505 ethernet cards 776el0 at isa? port 0x300 irq 9 # 3C501 ethernet cards 777ep* at isa? port ? irq ? # 3C509 ethernet cards 778ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3C507 779ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN 780fmv0 at isa? port 0x2a0 irq ? # FMV-181/182 781ix0 at isa? port 0x300 irq 10 # EtherExpress/16 782iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 783lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 784#depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA 785#le* at depca? 786nele0 at isa? port 0x320 irq 9 drq 7 # NE2100 787le* at nele? 788#ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial 789bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan 790le* at bicc? 791ne0 at isa? port 0x280 irq 9 # NE[12]000 ethernet cards 792ne1 at isa? port 0x300 irq 10 793sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet 794tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring 795tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring 796tr* at isa? port ? irq ? # 3COM TROPIC based Token-Ring 797we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 798we1 at isa? port 0x300 iomem 0xcc000 irq 10 799 800# CardBus network cards 801#ath* at cardbus? dev ? function ? # Atheros 5210/5211/5212 802.11 802#atw* at cardbus? dev ? function ? # ADMtek ADM8211 (802.11) 803#ex* at cardbus? dev ? function ? # 3Com 3C575TX 804#fxp* at cardbus? dev ? function ? # Intel i8255x 805#rtk* at cardbus? dev ? function ? # Realtek 8129/8139 806#tlp* at cardbus? dev ? function ? # DECchip 21143 807 808# MCA network cards 809elmc* at mca? slot ? # 3Com EtherLink/MC (3c523) 810ep* at mca? slot ? # 3Com EtherLink III (3c529) 811we* at mca? slot ? # WD/SMC Ethernet 812ate* at mca? slot ? # Allied Telesis AT1720 813ne* at mca? slot ? # Novell NE/2 and clones 814tr* at mca? slot ? # IBM Token Ring adapter 815le* at mca? slot ? # SKNET Personal/MC2+ 816 817# MII/PHY support 818acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 819amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 820bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 821brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 822dmphy* at mii? phy ? # Davicom DM9101 PHYs 823exphy* at mii? phy ? # 3Com internal PHYs 824gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 825glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 826gphyter* at mii? phy ? # NS83861 Gig-E PHY 827icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 828igphy* at mii? phy ? # Intel IGP01E1000 829inphy* at mii? phy ? # Intel 82555 PHYs 830iophy* at mii? phy ? # Intel 82553 PHYs 831lxtphy* at mii? phy ? # Level One LXT-970 PHYs 832makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 833nsphy* at mii? phy ? # NS83840 PHYs 834nsphyter* at mii? phy ? # NS83843 PHYs 835pnaphy* at mii? phy ? # generic HomePNA PHYs 836qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 837sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 838tlphy* at mii? phy ? # ThunderLAN PHYs 839tqphy* at mii? phy ? # TDK Semiconductor PHYs 840ukphy* at mii? phy ? # generic unknown PHYs 841urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 842 843 844# USB Controller and Devices 845 846# PCI USB controllers 847# The EHCI is not ready for prime time. 848#ehci* at pci? dev ? function ? # Enhanced Host Controller 849ohci* at pci? dev ? function ? # Open Host Controller 850uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 851 852# CardBus USB controllers 853#ehci* at cardbus? dev ? function ? # Enhanced Host Controller 854#ohci* at cardbus? dev ? function ? # Open Host Controller 855 856# ISA USB controllers 857#slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 858 859# USB bus support 860#usb* at ehci? 861usb* at ohci? 862usb* at uhci? 863#usb* at slhci? 864 865# USB Hubs 866uhub* at usb? 867uhub* at uhub? port ? configuration ? interface ? 868 869# USB HID device 870uhidev* at uhub? port ? configuration ? interface ? 871 872# USB Mice 873ums* at uhidev? reportid ? 874wsmouse* at ums? mux 0 875 876# USB Keyboards 877ukbd* at uhidev? reportid ? 878wskbd* at ukbd? console ? mux 1 879 880# USB Generic HID devices 881uhid* at uhidev? reportid ? 882 883# USB Printer 884ulpt* at uhub? port ? configuration ? interface ? 885 886# USB Modem 887umodem* at uhub? port ? configuration ? 888ucom* at umodem? 889 890# USB Mass Storage 891umass* at uhub? port ? configuration ? interface ? 892scsibus* at umass? 893wd* at umass? 894 895# USB audio 896uaudio* at uhub? port ? configuration ? 897 898# USB MIDI 899umidi* at uhub? port ? configuration ? 900 901# USB IrDA 902# USB-IrDA bridge spec 903uirda* at uhub? port ? configuration ? interface ? 904irframe* at uirda? 905 906# SigmaTel STIr4200 USB/IrDA Bridge 907ustir* at uhub? port ? 908irframe* at ustir? 909 910# USB Ethernet adapters 911aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 912cue* at uhub? port ? # CATC USB-EL1201A based adapters 913kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 914uax* at uhub? port ? # ASIX AX88172 based adapters 915udav* at uhub? port ? # Davicom DM9601 based adapters 916url* at uhub? port ? # Realtek RTL8150L based adapters 917 918# Prolific PL2301/PL2302 host-to-host adapter 919upl* at uhub? port ? 920 921# Serial adapters 922ubsa* at uhub? port ? # Belkin serial adapter 923ucom* at ubsa? portno ? 924 925uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 926ucom* at uftdi? portno ? 927 928umct* at uhub? port ? # MCT USB-RS232 serial adapter 929ucom* at umct? portno ? 930 931uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 932ucom* at uplcom? portno ? 933 934uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 935ucom* at uvscom? portno ? 936 937# Diamond Multimedia Rio 500 938urio* at uhub? port ? 939 940# USB Handspring Visor 941uvisor* at uhub? port ? 942ucom* at uvisor? 943 944# USB scanners 945uscanner* at uhub? port ? 946 947# USB scanners that use SCSI emulation, e.g., HP5300 948usscanner* at uhub? port ? 949 950# Y@P firmware loader 951uyap* at uhub? port ? 952 953# D-Link DSB-R100 USB radio 954udsbr* at uhub? port ? 955radio* at udsbr? 956 957# USB Generic driver 958ugen* at uhub? port ? 959 960 961# IrDA and Consumer Ir devices 962 963# Toshiba Oboe 964oboe* at pci? dev ? function ? 965irframe* at oboe? 966 967# PCI IEEE1394 controllers 968#fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 969 970# CardBus IEEE1394 controllers 971#fwohci* at cardbus? dev ? function ? # IEEE1394 Open Host Controller 972 973#fw* at fwbus? # IP over 1394 974 975# IEEE1394 nodes 976#fwnode* at fwbus? idhi ? idlo ? 977#sbpscsi* at fwnode? 978#scsibus* at sbpscsi? 979 980# Audio Devices 981 982# PCI audio devices 983auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 984autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 985auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 986clcs* at pci? dev ? function ? # Cirrus Logic CS4280 987clct* at pci? dev ? function ? # Cirrus Logic CS4281 988cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 989eap* at pci? dev ? function ? # Ensoniq AudioPCI 990emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 991esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 992esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 993eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 994fms* at pci? dev ? function ? # Forte Media FM801 995neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 996sv* at pci? dev ? function ? # S3 SonicVibes 997yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 998 999# ISA Plug-and-Play audio devices 1000ess* at isapnp? # ESS Tech ES1887, ES1888, ES888 audio 1001guspnp* at isapnp? # Gravis Ultra Sound PnP audio 1002sb* at isapnp? # SoundBlaster-compatible audio 1003wss* at isapnp? # Windows Sound System 1004ym* at isapnp? # Yamaha OPL3-SA3 audio 1005 1006# ISA audio devices 1007# the "aria" probe might give false hits 1008#aria0 at isa? port 0x290 irq 10 # Aria 1009#ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 1010gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound 1011pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum 1012#pss0 at isa? port 0x220 irq 7 drq 6 # Personal Sound System 1013#sp0 at pss0 port 0x530 irq 10 drq 0 # sound port driver 1014sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster 1015wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System 1016 1017# PCMCIA audio devices 1018#esl* at pcmcia? function ? # ESS 1688 AudioDrive 1019 1020#cms0 at isa? port 0x220 # Creative Music System 1021 1022# OPL[23] FM synthesizers 1023#opl0 at isa? port 0x388 # use only if not attached to sound card 1024opl* at cmpci? flags 1 1025#opl* at esl? 1026opl* at eso? 1027opl* at ess? 1028opl* at fms? 1029opl* at sb? 1030opl* at sv? 1031opl* at wss? 1032opl* at yds? 1033opl* at ym? 1034 1035# Audio support 1036audio* at audiobus? 1037 1038# MPU 401 UARTs 1039#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 1040mpu* at cmpci? 1041mpu* at eso? 1042mpu* at fms? 1043mpu* at sb? 1044mpu* at yds? 1045mpu* at ym? 1046 1047# MIDI support 1048midi* at midibus? 1049midi* at pcppi? # MIDI interface to the PC speaker 1050 1051# The spkr driver provides a simple tone interface to the built in speaker. 1052#spkr0 at pcppi? # PC speaker 1053 1054 1055# FM-Radio devices 1056# ISA radio devices 1057#az0 at isa? port 0x350 # Aztech/PackardBell FM Radio Card 1058#az1 at isa? port 0x358 1059#rt0 at isa? port 0x20c # AIMS Lab Radiotrack & compatible 1060#rt1 at isa? port 0x284 1061#rt2 at isa? port 0x30c 1062#rt3 at isa? port 0x384 1063#rtii0 at isa? port 0x20c # AIMS Lab Radiotrack II FM Radio Card 1064#rtii1 at isa? port 0x30c 1065#sf2r0 at isa? port 0x384 # SoundForte RadioLink SF16-FMR2 FM Radio Card 1066 1067# PCI radio devices 1068#gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 1069 1070# Radio support 1071#radio* at az? 1072#radio* at gtp? 1073#radio* at rt? 1074#radio* at rtii? 1075#radio* at sf2r? 1076 1077 1078# TV cards 1079 1080# Brooktree 848/849/878/879 based TV cards 1081bktr* at pci? dev ? function ? 1082radio* at bktr? 1083 1084 1085# Mice 1086 1087# ISA busmice 1088lms0 at isa? port 0x23c irq 5 # Logitech bus mouse 1089lms1 at isa? port 0x238 irq 5 1090mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse 1091mms1 at isa? port 0x238 irq 5 1092wsmouse* at lms? mux 0 1093wsmouse* at mms? mux 0 1094 1095 1096# Cryptographic Devices 1097 1098# PCI cryptographic devices 1099hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 1100ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 1101 1102 1103# Joysticks 1104 1105#joy* at pnpbios? index ? # Game port 1106 1107# ISA Plug-and-Play joysticks 1108joy* at isapnp? # Game ports (usually on audio cards) 1109 1110# PCI joysticks 1111joy* at pci? # Game ports (usually on audio cards) 1112joy* at eso? # ESS Solo-1 on-board joystick 1113 1114# ISA joysticks. Probe is a little strange; add only if you have one. 1115#joy0 at isa? port 0x201 1116 1117 1118# Miscellaneous Devices 1119 1120# Planetconnect Satellite receiver driver. 1121#satlink0 at isa? port 0x300 drq 1 1122 1123# Middle Digital, Inc. PCI-Weasel serial console board control 1124# devices (watchdog timer, etc.) 1125weasel* at pci? 1126 1127# Pull in optional local configuration 1128include "arch/i386/conf/GENERIC.local" 1129 1130 1131# Pseudo-Devices 1132 1133pseudo-device crypto # opencrypto framework 1134 1135# disk/mass storage pseudo-devices 1136pseudo-device ccd 4 # concatenated/striped disk devices 1137#pseudo-device cgd 4 # cryptographic disk devices 1138pseudo-device raid 8 # RAIDframe disk driver 1139options RAID_AUTOCONFIG # auto-configuration of RAID components 1140# Options to enable various other RAIDframe RAID types. 1141#options RF_INCLUDE_EVENODD=1 1142#options RF_INCLUDE_RAID5_RS=1 1143#options RF_INCLUDE_PARITYLOGGING=1 1144#options RF_INCLUDE_CHAINDECLUSTER=1 1145#options RF_INCLUDE_INTERDECLUSTER=1 1146#options RF_INCLUDE_PARITY_DECLUSTERING=1 1147#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 1148 1149# Vinum 1150# pseudo-device vinum 8 # Vinum 1151# options VINUMDEBUG 1152 1153pseudo-device md 1 # memory disk device (ramdisk) 1154pseudo-device vnd 4 # disk-like interface to files 1155 1156# network pseudo-devices 1157pseudo-device bpfilter 8 # Berkeley packet filter 1158pseudo-device ipfilter # IP filter (firewall) and NAT 1159pseudo-device loop # network loopback 1160pseudo-device ppp 2 # Point-to-Point Protocol 1161pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1162pseudo-device sl 2 # Serial Line IP 1163pseudo-device strip 2 # Starmode Radio IP (Metricom) 1164pseudo-device irframetty # IrDA frame line discipline 1165pseudo-device tun 2 # network tunneling over tty 1166pseudo-device gre 2 # generic L3 over IP tunnel 1167pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 1168#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 1169#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 1170pseudo-device vlan # IEEE 802.1q encapsulation 1171pseudo-device bridge # simple inter-network bridging 1172#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 1173 1174# miscellaneous pseudo-devices 1175pseudo-device pty # pseudo-terminals 1176pseudo-device tb 1 # tablet line discipline 1177pseudo-device sequencer 1 # MIDI sequencer 1178# rnd works; RND_COM does not on port i386 yet. 1179pseudo-device rnd # /dev/random and in-kernel generator 1180#options RND_COM # use "com" randomness as well (BROKEN) 1181pseudo-device clockctl # user control of clock subsystem 1182 1183# a pseudo device needed for Coda # also needs CODA (above) 1184pseudo-device vcoda 4 # coda minicache <-> venus comm. 1185 1186# a pseudo device needed for SMBFS 1187pseudo-device nsmb # experimental - SMB requester 1188 1189# wscons pseudo-devices 1190pseudo-device wsmux # mouse & keyboard multiplexor 1191pseudo-device wsfont 1192pseudo-device ksyms # /dev/ksyms 1193