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