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