GENERIC revision 1.287 1 # $NetBSD: GENERIC,v 1.287 2000/01/04 06:58:54 chopps Exp $
2 #
3 # GENERIC -- everything that's currently supported
4 #
5
6 include "arch/i386/conf/std.i386"
7
8 maxusers 32 # estimated number of users
9
10 # CPU support. At least one is REQUIRED.
11 options I386_CPU
12 options I486_CPU
13 options I586_CPU
14 options I686_CPU
15
16 # CPU-related options.
17 options MATH_EMULATE # floating point emulation
18 #options VM86 # virtual 8086 emulation
19 options USER_LDT # user-settable LDT; used by WINE
20 # eliminate delay no-ops in I/O; recommended on all but very old machines
21 #options DUMMY_NOPS
22
23 # delay between "rebooting ..." message and hardware reset, in milliseconds
24 #options CPURESET_DELAY=2000
25
26 # Misc. i386-specific options
27 options XSERVER # X server support in console drivers
28 #options XSERVER_DDB # PF12 gets you into DDB when X is running
29
30 # This option allows you to force a serial console at the specified
31 # I/O address. see console(4) for details.
32 #options "CONSDEVNAME=\"com\"",CONADDR=0x2f8,CONSPEED=57600
33 # you don't want the option below ON iff you are using the
34 # serial console option of the new boot strap code.
35 #options CONS_OVERRIDE # Always use above! independent of boot info
36
37 # The following options override the memory sizes passed in from the boot
38 # block. Use them *only* if the boot block is unable to determine the correct
39 # values. Note that the BIOS may *correctly* report less than 640k of base
40 # memory if the extended BIOS data area is located at the top of base memory
41 # (as is the case on most recent systems).
42 #options REALBASEMEM=639 # size of base memory (in KB)
43 #options REALEXTMEM=15360 # size of extended memory (in KB)
44
45 # Standard system options
46
47 options UCONSOLE # users can use TIOCCONS (for xconsole)
48 options INSECURE # disable kernel security levels
49
50 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
51 options NTP # NTP phase/frequency locked loop
52
53 options KTRACE # system call tracing via ktrace(1)
54
55 options SYSVMSG # System V-like message queues
56 options SYSVSEM # System V-like semaphores
57 options SYSVSHM # System V-like memory sharing
58 #options SHMMAXPGS=1024 # 1024 pages is the default
59
60 options LKM # loadable kernel modules
61
62 # Diagnostic/debugging support options
63 options DIAGNOSTIC # cheap kernel consistency checks
64 #options DEBUG # expensive debugging checks/support
65 #options KMEMSTATS # kernel memory statistics (vmstat -m)
66 options DDB # in-kernel debugger
67 #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
68 #options KGDB # remote debugger
69 #options "KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
70 #makeoptions DEBUG="-g" # compile full symbol table
71
72 # Compatibility options
73 options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8,
74 options COMPAT_09 # NetBSD 0.9,
75 options COMPAT_10 # NetBSD 1.0,
76 options COMPAT_11 # NetBSD 1.1,
77 options COMPAT_12 # NetBSD 1.2,
78 options COMPAT_13 # NetBSD 1.3,
79 options COMPAT_14 # NetBSD 1.4,
80 options COMPAT_43 # and 4.3BSD
81 options COMPAT_386BSD_MBRPART # recognize old partition ID
82
83 options COMPAT_SVR4 # binary compatibility with SVR4
84 options COMPAT_IBCS2 # binary compatibility with SCO and ISC
85 options COMPAT_LINUX # binary compatibility with Linux
86 options COMPAT_FREEBSD # binary compatibility with FreeBSD
87
88 options COMPAT_AOUT # binary compat for NetBSD a.out binaries
89
90 # File systems
91 file-system FFS # UFS
92 file-system EXT2FS # second extended file system (linux)
93 file-system LFS # log-structured file system
94 file-system MFS # memory file system
95 file-system NFS # Network File System client
96 file-system NTFS # Windows/NT file system (experimental)
97 file-system CD9660 # ISO 9660 + Rock Ridge file system
98 file-system MSDOSFS # MS-DOS file system
99 file-system FDESC # /dev/fd
100 file-system KERNFS # /kern
101 file-system NULLFS # loopback file system
102 file-system PORTAL # portal filesystem (still experimental)
103 file-system PROCFS # /proc
104 file-system UMAPFS # NULLFS + uid and gid remapping
105 file-system UNION # union file system
106 file-system CODA # Coda File System; also needs vcoda (below)
107
108 # File system options
109 options QUOTA # UFS quotas
110 #options FFS_EI # FFS Endian Independent support
111 #options SOFTDEP # FFS soft updates support.
112 options NFSSERVER # Network File System server
113 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
114 # immutable) behave as system flags.
115
116 # Pull in config fragments for kernel crypto. This is required for
117 # options IPSEC etc. to work. If you want to run with IPSEC, uncomment
118 # one of these, based on whether you use crypto-us or crypto-intl, and
119 # adjust the prefixes as necessary.
120
121 #prefix ../crypto-us/sys
122 #cinclude "conf/files.crypto-us"
123 #prefix
124
125 #prefix ../crypto-intl/sys
126 #cinclude "conf/files.crypto-intl"
127 #prefix
128
129 # Networking options
130 #options GATEWAY # packet forwarding
131 options INET # IP + ICMP + TCP + UDP
132 options INET6 # IPV6
133 #options IPSEC # IP security
134 #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
135 #options IPSEC_DEBUG # debug for IP security
136 #options MROUTING # IP multicast routing
137 options NS # XNS
138 #options NSIP # XNS tunneling over IP
139 options ISO,TPIP # OSI
140 options EON # OSI tunneling over IP
141 options CCITT,LLC,HDLC # X.25
142 options NETATALK # AppleTalk networking protocols
143 options PPP_BSDCOMP # BSD-Compress compression support for PPP
144 options PPP_DEFLATE # Deflate compression support for PPP
145 options PPP_FILTER # Active filter support for PPP (requires bpf)
146 options PFIL_HOOKS # pfil(9) packet filter hooks
147 options IPFILTER_LOG # ipmon(8) log support
148
149 # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended.
150 #options TCP_COMPAT_42
151
152 # These options enable verbose messages for several subsystems.
153 # Warning, these may compile large string tables into the kernel!
154 options EISAVERBOSE # verbose EISA device autoconfig messages
155 options PCIVERBOSE # verbose PCI device autoconfig messages
156 #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
157 options SCSIVERBOSE # human readable SCSI error messages
158 options USBVERBOSE # verbose USB device autoconfig messages
159 #options PNPBIOSVERBOSE # verbose PnP BIOS messages
160
161 options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
162
163 #
164 # wscons options
165 #
166 # builtin terminal emulations
167 #options WSEMUL_SUN # sun terminal emulation
168 options WSEMUL_VT100 # VT100 / VT220 emulation
169 # different kernel output - see dev/wscons/wsdisplayvar.h
170 options WS_KERNEL_FG=WSCOL_GREEN
171 #options WS_KERNEL_BG=WSCOL_BLACK
172 # compatibility to other console drivers
173 options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
174 options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
175 options WSDISPLAY_COMPAT_USL # VT handling
176 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
177 # see dev/pckbc/wskbdmap_mfii.c for implemented layouts
178 #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
179 # allocate a number of virtual screens at autoconfiguration time
180 #options WSDISPLAY_DEFAULTSCREENS=4
181 # use a large software cursor that doesn't blink
182 options PCDISPLAY_SOFTCURSOR
183
184 # Kernel root file system and dump configuration.
185 config netbsd root on ? type ?
186 #config netbsd root on sd0a type ffs
187 #config netbsd root on ? type nfs
188
189 #
190 # Device configuration
191 #
192
193 mainbus0 at root
194
195 #apm0 at mainbus0 # Advanced power management
196
197 # Tuning for power management, see apm(4) for more details.
198 #options APM_NO_IDLE # Don't call BIOS CPU idle function
199 #options APM_V10_ONLY # Use only the APM 1.0 calls
200 #options APM_NO_POWEROFF # Don't power off on halt(8)
201 #options APM_NO_POWER_PRINT # Don't print stats on the console
202 #options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
203
204
205 # Basic Bus Support
206
207 # PCI bus support
208 pci* at mainbus? bus ?
209 pci* at pchb? bus ?
210 pci* at ppb? bus ?
211
212 # PCI bridges
213 pchb* at pci? dev ? function ? # PCI-Host bridges
214 pceb* at pci? dev ? function ? # PCI-EISA bridges
215 pcib* at pci? dev ? function ? # PCI-ISA bridges
216 ppb* at pci? dev ? function ? # PCI-PCI bridges
217 # XXX 'puc's aren't really bridges, but there's no better place for them here
218 puc* at pci? dev ? function ? # PCI "universal" comm. cards
219
220 # EISA bus support
221 eisa* at mainbus?
222 eisa* at pceb?
223
224 # ISA bus support
225 isa* at mainbus?
226 isa* at pceb?
227 isa* at pcib?
228
229 # PCMCIA bus support
230 pcmcia* at pcic? controller ? socket ?
231 pcmcia* at tcic? controller ? socket ?
232
233 # ISA PCMCIA controllers
234 pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
235 pcic1 at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
236 tcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x4000
237
238 # PCI PCMCIA controllers
239 pcic0 at pci? dev? function ?
240
241 # ISA Plug-and-Play bus support
242 isapnp0 at isa?
243
244 # ISA Plug-and-Play PCMCIA controllers
245 pcic* at isapnp?
246
247 # Coprocessor Support
248
249 # Math Coprocessor support
250 npx0 at isa? port 0xf0 irq 13 # x86 math coprocessor
251
252
253 # Console Devices
254
255 # ISA console. You can only configure one of these!
256 #pc0 at isa? port 0x60 irq 1 # pccons generic PC console driver
257 #vt0 at isa? port 0x60 irq 1 # PCVT console driver
258
259 # Keyboard layout configuration for pccons
260 #options FRENCH_KBD
261 #options FINNISH_KBD
262 #options GERMAN_KBD
263 #options NORWEGIAN_KBD
264
265 # wscons
266 pckbc0 at isa? # pc keyboard controller
267 pckbd* at pckbc? # PC keyboard
268 # "opms" should not be enabled together with "pms" or "pmsi"
269 pms* at pckbc? # PS/2 mouse for wsmouse
270 pmsi* at pckbc? # PS/2 "Intelli"mouse for wsmouse
271 #opms* at pckbc? # backwards compatible PS/2 mouse
272 vga0 at isa?
273 vga* at pci?
274 pcdisplay0 at isa? # CGA, MDA, EGA, HGA
275 wsdisplay* at vga? console ?
276 wsdisplay* at pcdisplay? console ?
277 wskbd* at pckbd? console ?
278 wsmouse* at pms? mux 0
279 wsmouse* at pmsi? mux 0
280
281 pcppi0 at isa?
282 sysbeep0 at pcppi?
283
284 # Serial Devices
285
286 # PCI serial interfaces
287 com* at puc? port ? # 16x50s on "universal" comm boards
288 cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
289
290 # ISA Plug-and-Play serial interfaces
291 com* at isapnp? # Modems and serial boards
292
293 # PCMCIA serial interfaces
294 com* at pcmcia? function ? # Modems and serial cards
295
296 pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards
297 com* at pcmcom? slave ? # ...and the slave devices
298
299 # ISA serial interfaces
300 #options COM_HAYESP # adds Hayes ESP serial board support
301 com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports
302 com1 at isa? port 0x2f8 irq 3
303 com2 at isa? port 0x3e8 irq 5
304 #com3 at isa? port 0x2e8 irq 9
305 #ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards
306 #com* at ast? slave ?
307 #boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards
308 #boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016)
309 #boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016
310 #com* at boca? slave ?
311 #tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards
312 #com* at tcom? slave ?
313 #rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards
314 #com* at rtfps? slave ?
315 #cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards
316
317
318 # Parallel Printer Interfaces
319
320 # PCI parallel printer interfaces
321 lpt* at puc? port ? # || ports on "universal" comm boards
322
323 # ISA parallel printer interfaces
324 lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
325 lpt1 at isa? port 0x278
326 lpt2 at isa? port 0x3bc
327
328
329 # SCSI Controllers and Devices
330
331 # PCI SCSI controllers
332 adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
333 adw* at pci? dev ? function ? # AdvanSys 9xxUW SCSI
334 #options ADW_WDTR_DISABLE # disable Wide Data Tranfer
335 #options ADW_SDTR_DISABLE # disable Syncronous Data Transfer
336 #options ADW_TAGQ_DISABLE # disable Tag Queuing
337 ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
338 bha* at pci? dev ? function ? # BusLogic 9xx SCSI
339 dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
340 isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
341 ncr* at pci? dev ? function ? # NCR 53c8xx SCSI
342 pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
343
344 # EISA SCSI controllers
345 ahb* at eisa? slot ? # Adaptec 174[02] SCSI
346 ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
347 bha* at eisa? slot ? # BusLogic 7xx SCSI
348 dpt* at eisa? slot ? # DPT EATA SCSI
349 uha* at eisa? slot ? # UltraStor 24f SCSI
350
351 # PCMCIA SCSI controllers
352 aic* at pcmcia? function ? # Adaptec APA-1460 SCSI
353
354 # ISA Plug-and-Play SCSI controllers
355 aha* at isapnp? # Adaptec AHA-154[02
356 aic* at isapnp? # Adaptec AHA-1520B
357
358 # ISA SCSI controllers
359 adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02]
360 aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI
361 aha1 at isa? port 0x334 irq ? drq ?
362 ahc0 at isa? port ? irq ? # Adaptec 284x SCSI
363 aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI
364 bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI
365 bha1 at isa? port 0x334 irq ? drq ?
366 # The "nca" probe might give false hits or hang your machine.
367 #nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 contoller
368 #nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.)
369 sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI
370 uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI
371 uha1 at isa? port 0x340 irq ? drq ?
372 wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers
373 wds1 at isa? port 0x358 irq 11 drq 5
374
375 # SCSI bus support
376 scsibus* at adv?
377 scsibus* at adw?
378 scsibus* at aha?
379 scsibus* at ahb?
380 scsibus* at ahc?
381 scsibus* at aic?
382 scsibus* at bha?
383 scsibus* at dpt?
384 scsibus* at isp?
385 #scsibus* at nca?
386 scsibus* at ncr?
387 scsibus* at pcscp?
388 scsibus* at sea?
389 scsibus* at uha?
390 scsibus* at wds?
391
392 # SCSI devices
393 sd* at scsibus? target ? lun ? # SCSI disk drives
394 st* at scsibus? target ? lun ? # SCSI tape drives
395 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
396 ch* at scsibus? target ? lun ? # SCSI autochangers
397 ss* at scsibus? target ? lun ? # SCSI scanners
398 uk* at scsibus? target ? lun ? # SCSI unknown
399
400
401 # IDE and related devices
402 # PCI IDE controllers - see pciide(4) for supported hardware.
403 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
404 # how to set up DMA modes for this chip. This may work, or may cause
405 # a machine hang with some controllers.
406 pciide* at pci ? dev ? function ? flags 0x0000
407
408 # ISA Plug-and-Play IDE controllers
409 wdc* at isapnp?
410
411 # PCMCIA IDE controllers
412 wdc* at pcmcia? function ?
413
414 # ISA ST506, ESDI, and IDE controllers
415 # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
416 # fall back to 16bits I/O if 32bits I/O are not functional).
417 # Some controllers pass the initial 32bit test, but will fail later.
418 wdc0 at isa? port 0x1f0 irq 14 flags 0x00
419 wdc1 at isa? port 0x170 irq 15 flags 0x00
420
421 # IDE drives
422 # Flags are used only with controllers that support DMA operations
423 # and mode settings (e.g. some pciide controllers)
424 # The lowest order four bits (rightmost digit) of the flags define the PIO
425 # mode to use, the next set of four bits the DMA mode and the third set the
426 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
427 # to use, and the last bit must be 1 for this setting to be used.
428 # For DMA and UDMA, 0xf (1111) means 'disable'.
429 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
430 # (0xc=1100, 0xa=1010, 0xf=1111)
431 # 0x0000 means "use whatever the drive claims to support".
432 wd* at wdc? channel ? drive ? flags 0x0000
433 wd* at pciide? channel ? drive ? flags 0x0000
434
435 # ATAPI bus support
436 atapibus* at wdc? channel ?
437 atapibus* at pciide? channel ?
438
439 # ATAPI devices
440 # flags have the same meaning as for IDE drives.
441 cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
442 sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
443 uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
444
445
446 # Miscellaneous mass storage devices
447
448 # ISA floppy
449 fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
450 #fdc1 at isa? port 0x370 irq ? drq ?
451 fd* at fdc? drive ? # the drives themselves
452 # some machines need you to do this instead of fd*
453 #fd0 at fdc0 drive 0
454
455 # ISA CD-ROM devices
456 #mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives
457
458 # ISA tape devices
459 # note: the wt driver conflicts unpleasantly with SMC boards at the
460 # same I/O address. The probe reprograms their EEPROMs. Don't
461 # uncomment it unless you are actually using it.
462 #wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives
463
464
465 # Network Interfaces
466
467 # PCI network interfaces
468 de* at pci? dev ? function ? # DEC 21x4x-based Ethernet
469 en* at pci? dev ? function ? # ENI/Adaptec ATM
470 ep* at pci? dev ? function ? # 3Com 3c59x
471 ex* at pci? dev ? function ? # 3Com 90x[B]
472 epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
473 esh* at pci? dev ? function ? # Essential HIPPI card
474 fpa* at pci? dev ? function ? # DEC DEFPA FDDI
475 fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
476 le* at pci? dev ? function ? # PCnet-PCI Ethernet
477 ne* at pci? dev ? function ? # NE2000-compatible Ethernet
478 ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
479 sip* at pci? dev ? function ? # SiS 900 Ethernet
480 tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
481 tlp* at pci? dev ? function ? # DECchip 21x4x (and clones) Ethernet
482 #options TLP_MATCH_21040
483 #options TLP_MATCH_21041
484 #options TLP_MATCH_21140
485 #options TLP_MATCH_21142
486 vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
487 lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3
488 rl* at pci? dev ? function ? # Realtek 8129/8139
489
490 # EISA network interfaces
491 ep* at eisa? slot ? # 3Com 3c579 Ethernet
492 fea* at eisa? slot ? # DEC DEFEA FDDI
493 tlp* at eisa? slot ? # DEC DE-425 Ethernet
494
495 # ISA Plug-and-Play network interfaces
496 ep* at isapnp? # 3Com 3c509 Ethernet
497 ne* at isapnp? # NE2000-compatible Ethernet
498 tr* at isapnp? # IBM/3COM TROPIC Token-Ring
499
500 # PCMCIA network interfaces
501 awi* at pcmcia? function ? # BayStack 650 (802.11FH)
502 cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer
503 ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
504 mbe* at pcmcia? function ? # MB8696x based Ethernet
505 ne* at pcmcia? function ? # NE2000-compatible Ethernet
506 sm* at pcmcia? function ? # Megahertz Ethernet
507 wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11)
508
509 mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards
510 com* at mhzc?
511 sm* at mhzc?
512
513 # ISA network interfaces
514 ate0 at isa? port 0x2a0 irq ? # AT1700
515 cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
516 ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
517 eg0 at isa? port 0x280 irq 9 # 3C505 ethernet cards
518 el0 at isa? port 0x300 irq 9 # 3C501 ethernet cards
519 ep0 at isa? port ? irq ? # 3C509 ethernet cards
520 ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3C507
521 ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN
522 fmv0 at isa? port 0x2a0 irq ? # FMV-180 series
523 ix0 at isa? port 0x300 irq 10 # EtherExpress/16
524 iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA
525 lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC)
526 #depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA
527 #le* at depca?
528 nele0 at isa? port 0x320 irq 9 drq 7 # NE2100
529 #ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial
530 le* at nele?
531 bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan
532 le* at bicc?
533 ne0 at isa? port 0x280 irq 9 # NE[12]000 ethernet cards
534 ne1 at isa? port 0x300 irq 10
535 sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet
536 tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring
537 tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring
538 tr* at isa? port ? irq ? # 3COM TROPIC based Token-Ring
539 we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet
540 we1 at isa? port 0x300 iomem 0xcc000 irq 10
541
542 # MII/PHY support
543 exphy* at mii? phy ? # 3Com internal PHYs
544 icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890
545 inphy* at mii? phy ? # Intel 82555 PHYs
546 iophy* at mii? phy ? # Intel 82553 PHYs
547 lxtphy* at mii? phy ? # Level One LXT-970 PHYs
548 nsphy* at mii? phy ? # NS83840 PHYs
549 nsphyter* at mii? phy ? # NS83843 PHYs
550 qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
551 sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
552 tlphy* at mii? phy ? # ThunderLAN PHYs
553 tqphy* at mii? phy ? # TDK Semiconductor PHYs
554 ukphy* at mii? phy ? # generic unknown PHYs
555
556 # USB Controller and Devices
557
558 # PCI USB controllers
559 uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
560 ohci* at pci? dev ? function ? # Open Host Controller
561
562 # USB bus support
563 usb* at uhci?
564 usb* at ohci?
565
566 # USB Hubs
567 uhub* at usb?
568 uhub* at uhub? port ? configuration ? interface ?
569
570 # USB Mice
571 ums* at uhub? port ? configuration ? interface ?
572 wsmouse* at ums? mux 0
573
574 # USB Keyboards
575 ukbd* at uhub? port ? configuration ? interface ?
576 wskbd* at ukbd? console ? mux 1
577
578 # USB Generic HID devices
579 uhid* at uhub? port ? configuration ? interface ?
580
581 # USB Printer
582 ulpt* at uhub? port ? configuration ? interface ?
583
584 # USB Modem
585 umodem* at uhub? port ? configuration ?
586
587 # USB Mass Storage
588 umass* at uhub? port ? configuration ? interface ?
589 scsibus* at umass? channel ?
590
591 # USB audio
592 uaudio* at uhub? port ? configuration ?
593
594 # USB Generic driver
595 ugen* at uhub? port ?
596
597
598 # Plug-and-Play BIOS and attached devices
599
600 #pnpbios0 at mainbus0
601
602 # mainboard audio chips
603 #sb* at pnpbios0 index ? # NeoMagic 256AV in sb mode
604 #wss* at pnpbios0 index ? # NeoMagic 256AV in wss mode
605 #ym* at pnpbios0 index ? # OPL3-SA3
606
607 # com port
608 #com* at pnpbios0 index ?
609
610 # parallel port
611 #lpt* at pnpbios0 index ?
612
613 # IDE controller on Toshiba Portege 3000 series (crippled PCI device)
614 #pciide* at pnpbios0 index ?
615
616
617 # Audio Devices
618
619 # PCI audio devices
620 clcs* at pci? dev ? function ? # Cirrus Logic CS4280
621 eap* at pci? dev ? function ? # Ensoniq AudioPCI
622 eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive
623 fms* at pci? dev ? function ? # Forte Media FM801
624 sv* at pci? dev ? function ? # S3 SonicVibes
625
626 # ISA Plug-and-Play audio devices
627 ess* at isapnp? # ESS Tech ES1887, ES1888, ES888 audio
628 guspnp* at isapnp? # Gravis Ultra Sound PnP audio
629 sb* at isapnp? # SoundBlaster-compatible audio
630 wss* at isapnp? # Windows Sound System
631 ym* at isapnp? # Yamaha OPL3-SA3 audio
632
633 # ISA audio devices
634 # the "aria" probe might give false hits
635 #aria0 at isa? port 0x290 irq 10 # Aria
636 #ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX
637 gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound
638 pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum
639 pss0 at isa? port 0x220 irq 7 drq 6 # Personal Sound System
640 sp0 at pss0 port 0x530 irq 10 drq 0 # sound port driver
641 sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster
642 wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System
643
644 # OPL[23] FM synthesizers
645 #opl0 at isa? port 0x388 # use only if not attached to sound card
646 opl* at eso?
647 opl* at ess?
648 opl* at fms?
649 opl* at sb?
650 opl* at sv?
651 opl* at wss?
652 opl* at ym?
653
654 # Audio support
655 #audio* at aria?
656 audio* at clcs?
657 audio* at eap?
658 audio* at eso?
659 audio* at ess?
660 audio* at fms?
661 audio* at gus?
662 audio* at guspnp?
663 audio* at pas?
664 audio* at sb?
665 audio* at sp?
666 audio* at sv?
667 audio* at uaudio?
668 audio* at wss?
669 audio* at ym?
670
671 # MPU 401 UARTs
672 #mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card
673 mpu* at eso?
674 mpu* at fms?
675 mpu* at sb?
676 mpu* at ym?
677
678 # MIDI support
679 midi* at eap? # 137[01] MIDI port
680 midi* at mpu? # MPU 401
681 midi* at opl? # OPL FM synth
682 midi* at pcppi? # MIDI interface to the PC speaker
683 midi* at sb? # SB1 MIDI port
684
685 # The spkr driver provides a simple tone interface to the built in speaker.
686 #spkr0 at pcppi? # PC speaker
687
688
689 # Mice
690
691 # ISA busmice
692 lms0 at isa? port 0x23c irq 5 # Logitech bus mouse
693 lms1 at isa? port 0x238 irq 5
694 mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse
695 mms1 at isa? port 0x238 irq 5
696 wsmouse* at lms? mux 0
697 wsmouse* at mms? mux 0
698 # backwards compatible versions
699 #olms0 at isa? port 0x23c irq 5 # Logitech bus mouse
700 #olms1 at isa? port 0x238 irq 5
701 #omms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse
702 #omms1 at isa? port 0x238 irq 5
703 #opms0 at pc? irq 12 # PS/2 auxiliary port mouse
704 #opms0 at vt? irq 12 # PS/2 auxiliary port mouse
705
706
707 # Joysticks
708
709 # ISA Plug-and-Play joysticks
710 joy* at isapnp? # Game ports (usually on audio cards)
711
712 # ISA joysticks. Probe is a little strange; add only if you have one.
713 #joy0 at isa? port 0x201
714
715
716 # Miscellaneous Devices
717
718 # Planetconnect Satellite receiver driver.
719 #satlink0 at isa? port 0x300 drq 1
720
721
722 # Pull in optional local configuration
723 include "arch/i386/conf/GENERIC.local"
724
725
726 # Pseudo-Devices
727
728 # disk/mass storage pseudo-devices
729 pseudo-device ccd 4 # concatenated/striped disk devices
730 #pseudo-device raid 4 # RAIDframe disk driver
731 pseudo-device md 1 # memory disk device (ramdisk)
732 pseudo-device vnd 4 # disk-like interface to files
733
734 # network pseudo-devices
735 pseudo-device bpfilter 8 # Berkeley packet filter
736 pseudo-device ipfilter # IP filter (firewall) and NAT
737 pseudo-device loop # network loopback
738 pseudo-device ppp 2 # Point-to-Point Protocol
739 pseudo-device sl 2 # Serial Line IP
740 pseudo-device strip 2 # Starmode Radio IP (Metricom)
741 pseudo-device tun 2 # network tunneling over tty
742 pseudo-device gre 2 # generic L3 over IP tunnel
743 pseudo-device ipip 2 # IP Encapsulation within IP (RFC 2003)
744 pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
745 #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
746
747 # miscellaneous pseudo-devices
748 pseudo-device pty 64 # pseudo-terminals
749 pseudo-device tb 1 # tablet line discipline
750 pseudo-device sequencer 1 # MIDI sequencer
751 # rnd works; RND_COM does not on port i386 yet.
752 pseudo-device rnd # /dev/random and in-kernel generator
753 #options RND_COM # use "com" randomness as well (BROKEN)
754
755 # a pseudo device needed for Coda # also needs CODA (above)
756 pseudo-device vcoda 4 # coda minicache <-> venus comm.
757
758 # mouse & keyboard multiplexor pseudo-devices
759 pseudo-device wsmux 2
760