CARDBUS revision 1.60
1#	$NetBSD: CARDBUS,v 1.60 2002/06/17 05:14:12 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.60 $"
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=1024	# 1024 pages is the default
74
75options 	LKM		# loadable kernel modules
76
77#options 	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# PCI bridges
265pchb*	at pci? dev ? function ?	# PCI-Host bridges
266#pceb*	at pci? dev ? function ?	# PCI-EISA bridges
267pcib*	at pci? dev ? function ?	# PCI-ISA bridges
268#pcmb*	at pci? dev ? function ?	# PCI-MCA bridges
269ppb*	at pci? dev ? function ?	# PCI-PCI bridges
270ppb*	at cardbus? dev ? function ?	# Cardbus-PCI bridges (www.magma.com)
271# XXX 'puc's aren't really bridges, but there's no better place for them here
272puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
273
274# EISA bus support
275#eisa*	at mainbus?
276#eisa*	at pceb?
277
278# ISA bus support
279isa0	at mainbus?
280#isa0	at pceb?
281isa0	at pcib?
282
283# PCMCIA bus support
284#pcmcia*	at pcic? controller ? socket ?
285#pcmcia*	at tcic? controller ? socket ?
286
287# MCA bus support
288#mca0	at mainbus?
289
290# ISA PCMCIA controllers
291#pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
292#pcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
293#tcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
294
295# PCI PCMCIA controllers
296#pcic0	at pci? dev? function ?
297
298# ISA Plug-and-Play bus support
299#isapnp0	at isa?
300
301# ISA Plug-and-Play PCMCIA controllers
302#pcic*	at isapnp?
303
304# CardBus bridge support
305cbb*		at pci? dev ? function ?
306cardslot*	at cbb?
307
308# CardBus bus support
309cardbus*	at cardslot?
310pcmcia*		at cardslot?
311
312# Coprocessor Support
313
314# Math Coprocessor support
315npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
316
317
318# Console Devices
319
320# ISA console
321#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
322# Keyboard layout configuration for pccons
323#options 	FRENCH_KBD
324#options 	FINNISH_KBD
325#options 	GERMAN_KBD
326#options 	NORWEGIAN_KBD
327# pccons-specific options:
328#options 	XSERVER_DDB	# PF12 gets you into DDB when X is running
329#options 	XSERVER		# X server support
330
331
332# wscons
333pckbc0		at isa?			# pc keyboard controller
334pckbd*		at pckbc?		# PC keyboard
335pms*		at pckbc?		# PS/2 mouse for wsmouse
336vga0		at isa?
337vga*		at pci? dev ? function ?
338pcdisplay0	at isa?			# CGA, MDA, EGA, HGA
339wsdisplay*	at vga? console ?
340wsdisplay*	at pcdisplay? console ?
341wskbd* 		at pckbd? console ?
342wsmouse*	at pms? 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#en*	at pci? dev ? function ?	# ENI/Adaptec ATM
582#ep*	at pci? dev ? function ?	# 3Com 3c59x
583ex*	at pci? dev ? function ?	# 3Com 90x[BC]
584#epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
585#esh*	at pci? dev ? function ?	# Essential HIPPI card
586#fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
587fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
588#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
589#lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
590#ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
591#ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
592#rtk*	at pci? dev ? function ?	# Realtek 8129/8139
593#sip*	at pci? dev ? function ?	# SiS 900 Ethernet
594#ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
595#tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
596#tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
597#vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
598
599# EISA network interfaces
600#ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
601#fea*	at eisa? slot ?			# DEC DEFEA FDDI
602#tlp*	at eisa? slot ?			# DEC DE-425 Ethernet
603
604# ISA Plug-and-Play network interfaces
605#an*	at isapnp?			# Aironet 802.11
606#ep*	at isapnp?			# 3Com 3c509 Ethernet
607#ne*	at isapnp?			# NE2000-compatible Ethernet
608#tr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
609
610# PCMCIA network interfaces
611an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
612awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
613cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
614ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
615mbe*	at pcmcia? function ?		# MB8696x based Ethernet
616ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
617ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
618sm*	at pcmcia? function ?		# Megahertz Ethernet
619wi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
620xi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
621
622mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
623com*	at mhzc?
624sm*	at mhzc?
625
626# ISA network interfaces
627#ate0	at isa? port 0x2a0 irq ?		# AT1700
628#cs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
629#ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
630#eg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
631#el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
632#ep*	at isa? port ? irq ?			# 3C509 ethernet cards
633#ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
634#ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
635#fmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
636#ix0	at isa? port 0x300 irq 10		# EtherExpress/16
637#iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
638#lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
639#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
640#le*	at depca?
641#nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
642#le*	at nele?
643#ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
644#bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
645#le*	at bicc?
646#ne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
647#ne1	at isa? port 0x300 irq 10
648sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
649#tr0	at isa? port 0xa20 iomem 0xd8000 irq ?	# IBM TROPIC based Token-Ring
650#tr1	at isa? port 0xa24 iomem 0xd0000 irq ?	# IBM TROPIC based Token-Ring
651#tr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
652#we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
653#we1	at isa? port 0x300 iomem 0xcc000 irq 10
654
655# CardBus network cards
656ex*	at cardbus? dev ? function ?	# 3Com 3C575TX
657fxp*	at cardbus? dev ? function ?	# Intel i8255x
658rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139
659tlp*	at cardbus? dev ? function ?	# DECchip 21143
660
661# MCA network cards
662#elmc*	at mca? slot ?			# 3Com EtherLink/MC (3c523)
663#ep*	at mca? slot ?			# 3Com EtherLink III (3c529)
664#we*	at mca? slot ?			# WD/SMC Ethernet
665#ate*	at mca? slot ?			# Allied Telesis AT1720
666#ne*	at mca? slot ?			# Novell NE/2 and clones
667#tr*	at mca? slot ?			# IBM Token Ring adapter
668#le*	at mca? slot ?			# SKNET Personal/MC2+
669
670# MII/PHY support
671dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
672exphy*	at mii? phy ?			# 3Com internal PHYs
673icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
674inphy*	at mii? phy ?			# Intel 82555 PHYs
675iophy*	at mii? phy ?			# Intel 82553 PHYs
676lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
677nsphy*	at mii? phy ?			# NS83840 PHYs
678nsphyter* at mii? phy ?			# NS83843 PHYs
679qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
680sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
681tlphy*	at mii? phy ?			# ThunderLAN PHYs
682tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
683ukphy*	at mii? phy ?			# generic unknown PHYs
684
685
686# USB Controller and Devices
687
688# PCI USB controllers
689ohci*	at pci?	dev ? function ?	# Open Host Controller
690uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
691
692# CardBus USB controllers
693ohci*	at cardbus? dev ? function ?	# Open Host Controller
694
695# USB bus support
696usb*	at ohci?
697usb*	at uhci?
698
699# USB Hubs
700uhub*	at usb?
701uhub*	at uhub? port ? configuration ? interface ?
702
703# USB HID device
704uhidev*	at uhub? port ? configuration ? interface ?
705
706# USB Mice
707ums*	at uhidev? reportid ?
708wsmouse*	at ums? mux 0
709
710# USB Keyboards
711ukbd*	at uhidev? reportid ?
712wskbd*	at ukbd? console ? mux 1
713
714# USB Generic HID devices
715uhid*	at uhidev? reportid ?
716
717# USB Printer
718ulpt*	at uhub? port ? configuration ? interface ?
719
720# USB Modem
721umodem*	at uhub? port ? configuration ?
722ucom*	at umodem?
723
724# USB Mass Storage
725umass*	at uhub? port ? configuration ? interface ?
726atapibus* at umass? channel ?
727scsibus* at umass? channel ?
728
729# USB audio
730uaudio*	at uhub? port ? configuration ?
731
732# USB MIDI
733umidi* at uhub? port ? configuration ?
734
735# USB Ethernet adapters
736aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
737cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
738kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
739
740# Prolofic PL2301/PL2302 host-to-host adapter
741upl*	at uhub? port ?
742
743# Serial adapters
744# FTDI FT8U100AX serial adapter
745uftdi*	at uhub? port ?
746ucom*	at uftdi? portno ?
747
748uplcom*	at uhub? port ?		# I/O DATA USB-RSAQ2 serial adapter
749ucom*	at uplcom? portno ?
750
751umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
752ucom*	at umct? portno ?
753
754# Diamond Multimedia Rio 500
755urio*	at uhub? port ?
756
757# USB Handspring Visor
758uvisor*	at uhub? port ?
759ucom*	at uvisor?
760
761# USB scanners
762uscanner* at uhub? port ?
763
764# USB scanners that use SCSI emulation, e.g., HP5300
765usscanner* at uhub? port ?
766scsibus* at usscanner? channel ?
767
768# Y@P firmware loader
769uyap* at uhub? port ?
770
771# USB Generic driver
772ugen*	at uhub? port ?
773
774
775# Audio Devices
776
777# PCI audio devices
778auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
779auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
780clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
781clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
782cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
783eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
784emuxki*	at pci? dev ? function ?	# Creative SBLive! and PCI512
785esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
786esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
787eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
788fms*	at pci? dev ? function ?	# Forte Media FM801
789neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
790sv*	at pci? dev ? function ?	# S3 SonicVibes
791yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
792
793# ISA Plug-and-Play audio devices
794#ess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
795#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
796#sb*	at isapnp?			# SoundBlaster-compatible audio
797#wss*	at isapnp?			# Windows Sound System
798#ym*	at isapnp?			# Yamaha OPL3-SA3 audio
799
800# ISA audio devices
801# the "aria" probe might give false hits
802#aria0	at isa? port 0x290 irq 10 		# Aria
803#ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
804#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
805#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
806#pss0	at isa? port 0x220 irq 7 drq 6		# Personal Sound System
807#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
808sb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
809wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
810
811# PCMCIA audio devices
812esl*	at pcmcia? function ?			# ESS 1688 AudioDrive
813
814#cms0	at isa? port 0x220			# Creative Music System
815
816# OPL[23] FM synthesizers
817#opl0	at isa? port 0x388	# use only if not attached to sound card
818opl*	at cmpci? flags 1
819opl*	at esl?
820opl*	at eso?
821#opl*	at ess?
822opl*	at fms?
823opl*	at sb?
824opl*	at sv?
825opl*	at wss?
826opl*	at yds?
827#opl*	at ym?
828
829# Audio support
830#audio*	at aria?
831audio*	at auich?
832audio*	at auvia?
833audio*	at clcs?
834audio*	at clct?
835audio*	at cmpci?
836audio*	at eap?
837audio*	at emuxki?
838audio*	at esa?
839audio*	at esl?
840audio*	at esm?
841audio*	at eso?
842#audio*	at ess?
843audio*	at fms?
844#audio*	at gus?
845#audio*	at guspnp?
846audio*	at neo?
847#audio*	at pas?
848audio*	at sb?
849#audio*	at sp?
850audio*	at sv?
851audio*	at uaudio?
852audio*	at wss?
853audio*	at yds?
854#audio*	at ym?
855
856# MPU 401 UARTs
857#mpu*	at isa? port 0x330 irq 9	# MPU401 or compatible card
858mpu*	at cmpci?
859mpu*	at eso?
860mpu*	at fms?
861mpu*	at sb?
862mpu*	at yds?
863#mpu*	at ym?
864
865# MIDI support
866midi*	at clcs?		# Cirrus Logic CS4280 MIDI port
867#midi*	at clct?		# Cirrus Logic CS4281 MIDI port
868#midi*	at cms?			# Creative Music System
869midi*	at eap?			# 137[01] MIDI port
870midi*	at mpu?			# MPU 401
871midi*	at opl?			# OPL FM synth
872midi*	at pcppi?		# MIDI interface to the PC speaker
873midi*	at sb?			# SB1 MIDI port
874midi*	at umidi?		# USB MIDI
875
876# The spkr driver provides a simple tone interface to the built in speaker.
877#spkr0	at pcppi?		# PC speaker
878
879
880# TV cards
881
882# Brooktree 848/849/878/879 based TV cards
883#bktr* at pci? dev ? function ?
884
885
886# Mice
887
888# ISA busmice
889#lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
890#lms1	at isa? port 0x238 irq 5
891#mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
892#mms1	at isa? port 0x238 irq 5
893#wsmouse*	at lms? mux 0
894#wsmouse*	at mms? mux 0
895# backwards compatible versions
896#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
897#olms1	at isa? port 0x238 irq 5
898#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
899#omms1	at isa? port 0x238 irq 5
900
901
902# Joysticks
903
904#joy*	at pnpbios? index ?		# Game port
905
906# ISA Plug-and-Play joysticks
907#joy*	at isapnp?			# Game ports (usually on audio cards)
908
909# PCI joysticks
910#joy*	at pci?				# Game ports (usually on audio cards)
911
912# ISA joysticks. Probe is a little strange; add only if you have one.
913#joy0	at isa? port 0x201
914
915
916# Miscellaneous Devices
917
918# Planetconnect Satellite receiver driver.
919#satlink0 at isa? port 0x300 drq 1
920
921
922# Pull in optional local configuration
923include	"arch/i386/conf/GENERIC.local"
924
925
926# Pseudo-Devices
927
928# disk/mass storage pseudo-devices
929pseudo-device	ccd		4	# concatenated/striped disk devices
930#pseudo-device	raid		4	# RAIDframe disk driver
931#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
932pseudo-device	md		1	# memory disk device (ramdisk)
933pseudo-device	vnd		4	# disk-like interface to files
934
935# network pseudo-devices
936pseudo-device	bpfilter	8	# Berkeley packet filter
937pseudo-device	ipfilter		# IP filter (firewall) and NAT
938pseudo-device	loop			# network loopback
939pseudo-device	ppp		2	# Point-to-Point Protocol
940pseudo-device	sl		2	# Serial Line IP
941pseudo-device	strip		2	# Starmode Radio IP (Metricom)
942pseudo-device	tun		2	# network tunneling over tty
943pseudo-device	gre		2	# generic L3 over IP tunnel
944pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
945#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
946#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
947pseudo-device	vlan			# IEEE 802.1q encapsulation
948pseudo-device	bridge			# simple inter-network bridging
949
950# miscellaneous pseudo-devices
951pseudo-device	pty			# pseudo-terminals
952pseudo-device	tb		1	# tablet line discipline
953pseudo-device	sequencer	1	# MIDI sequencer
954# rnd works; RND_COM does not on port i386 yet.
955pseudo-device	rnd			# /dev/random and in-kernel generator
956#options 	RND_COM			# use "com" randomness as well (BROKEN)
957pseudo-device	clockctl		# user control of clock subsystem
958
959# a pseudo device needed for Coda	# also needs CODA (above)
960pseudo-device	vcoda		4	# coda minicache <-> venus comm.
961
962# mouse & keyboard multiplexor pseudo-devices
963pseudo-device	wsmux
964