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