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