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