GENERIC revision 1.77 1 1.77 itojun # $NetBSD: GENERIC,v 1.77 2004/06/22 14:09:51 itojun Exp $
2 1.1 nonaka #
3 1.36 gmcgarry # GENERIC machine description file
4 1.36 gmcgarry #
5 1.36 gmcgarry # This machine description file is used to generate the default NetBSD
6 1.36 gmcgarry # kernel. The generic kernel does not include all options, subsystems
7 1.36 gmcgarry # and device drivers, but should be useful for most applications.
8 1.1 nonaka #
9 1.36 gmcgarry # The machine description file can be customised for your specific
10 1.36 gmcgarry # machine to reduce the kernel size and improve its performance.
11 1.36 gmcgarry #
12 1.36 gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
13 1.36 gmcgarry # man page.
14 1.36 gmcgarry #
15 1.36 gmcgarry # For further information on hardware support for this architecture, see
16 1.36 gmcgarry # the intro(4) man page. For further information about kernel options
17 1.36 gmcgarry # for this architecture, see the options(4) man page. For an explanation
18 1.36 gmcgarry # of each device driver in this file see the section 4 man page for the
19 1.36 gmcgarry # device.
20 1.1 nonaka
21 1.36 gmcgarry include "arch/prep/conf/std.prep"
22 1.1 nonaka
23 1.48 atatat options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.48 atatat
25 1.74 nonaka makeoptions COPTS="-Os -mmultiple" # -Os -mmultiple to reduce size.
26 1.74 nonaka
27 1.77 itojun #ident "GENERIC-$Revision: 1.77 $"
28 1.1 nonaka
29 1.1 nonaka maxusers 32
30 1.50 nonaka
31 1.50 nonaka # Platform support
32 1.61 matt options PLATFORM_IBM_6040 # IBM ThinkPad 820
33 1.50 nonaka options PLATFORM_IBM_6050 # IBM Personal Power Series 830
34 1.50 nonaka options PLATFORM_IBM_7248 # IBM RS/6000 7248-100/120/133
35 1.52 nonaka options PLATFORM_IBM_7043_140 # IBM RS/6000 43P 7043-140
36 1.50 nonaka options PLATFORM_MOTOROLA_ULMB60XA # Motorola ULMB60xA (?)
37 1.1 nonaka
38 1.52 nonaka options OPENPIC # OpenPIC support (7043-140)
39 1.52 nonaka
40 1.1 nonaka # Standard system options
41 1.1 nonaka
42 1.1 nonaka options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
43 1.3 nonaka options NTP # NTP phase/frequency locked loop
44 1.1 nonaka
45 1.1 nonaka options KTRACE # system call tracing via ktrace(1)
46 1.57 provos options SYSTRACE # system call vetting via systrace(1)
47 1.1 nonaka
48 1.1 nonaka options SYSVMSG # System V-like message queues
49 1.1 nonaka options SYSVSEM # System V-like semaphores
50 1.32 lukem #options SEMMNI=10 # number of semaphore identifiers
51 1.32 lukem #options SEMMNS=60 # number of semaphores in system
52 1.32 lukem #options SEMUME=10 # max number of undo entries per process
53 1.32 lukem #options SEMMNU=30 # number of undo structures in system
54 1.1 nonaka options SYSVSHM # System V-like memory sharing
55 1.1 nonaka #options SHMMAXPGS=1024 # 1024 pages is the default
56 1.1 nonaka
57 1.3 nonaka options LKM # loadable kernel modules
58 1.40 jdolecek
59 1.54 lukem options USERCONF # userconf(4) support
60 1.40 jdolecek #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
61 1.59 junyoung
62 1.60 wiz # Enable experimental buffer queue strategy for better responsiveness under
63 1.59 junyoung # high disk I/O load. Use it with caution - it's not proven to be stable yet.
64 1.59 junyoung #options NEW_BUFQ_STRATEGY
65 1.1 nonaka
66 1.1 nonaka # Diagnostic/debugging support options
67 1.74 nonaka #options DIAGNOSTIC # cheap kernel consistency checks
68 1.1 nonaka #options DEBUG # expensive debugging checks/support
69 1.1 nonaka #options KMEMSTATS # kernel memory statistics (vmstat -m)
70 1.1 nonaka options DDB # in-kernel debugger
71 1.32 lukem #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
72 1.1 nonaka #makeoptions DEBUG="-g"
73 1.1 nonaka
74 1.1 nonaka # Compatibility options
75 1.1 nonaka options COMPAT_13 # NetBSD 1.3,
76 1.1 nonaka options COMPAT_14 # NetBSD 1.4,
77 1.51 nonaka options COMPAT_15 # NetBSD 1.5,
78 1.71 kleink options COMPAT_16 # NetBSD 1.6,
79 1.1 nonaka options COMPAT_43 # and 4.3BSD
80 1.30 manu #options COMPAT_LINUX # Linux binary compatibility
81 1.25 abs #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
82 1.1 nonaka
83 1.1 nonaka # File systems
84 1.3 nonaka file-system FFS # UFS
85 1.3 nonaka file-system EXT2FS # second extended file system (linux)
86 1.74 nonaka #file-system LFS # log-structured file system
87 1.1 nonaka file-system MFS # memory file system
88 1.1 nonaka file-system NFS # Network File System client
89 1.74 nonaka #file-system NTFS # Windows/NT file system (experimental)
90 1.3 nonaka file-system CD9660 # ISO 9660 + Rock Ridge file system
91 1.3 nonaka file-system MSDOSFS # MS-DOS file system
92 1.74 nonaka #file-system FDESC # /dev/fd
93 1.1 nonaka file-system KERNFS # /kern
94 1.3 nonaka file-system NULLFS # loopback file system
95 1.74 nonaka #file-system OVERLAY # overlay file system
96 1.74 nonaka #file-system PORTAL # portal filesystem (still experimental)
97 1.1 nonaka file-system PROCFS # /proc
98 1.74 nonaka #file-system UMAPFS # NULLFS + uid and gid remapping
99 1.3 nonaka file-system UNION # union file system
100 1.7 nonaka #file-system CODA # Coda File System; also needs vcoda (below)
101 1.1 nonaka
102 1.1 nonaka # File system options
103 1.3 nonaka options QUOTA # UFS quotas
104 1.74 nonaka #options FFS_EI # FFS Endian Independant support
105 1.9 fvdl options SOFTDEP # FFS soft updates support.
106 1.3 nonaka options NFSSERVER # Network File System server
107 1.1 nonaka #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
108 1.1 nonaka # immutable) behave as system flags.
109 1.1 nonaka
110 1.1 nonaka # Networking options
111 1.1 nonaka #options GATEWAY # packet forwarding
112 1.1 nonaka options INET # IP + ICMP + TCP + UDP
113 1.1 nonaka options INET6 # IPv6
114 1.1 nonaka #options IPSEC # IP security
115 1.1 nonaka #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
116 1.1 nonaka #options IPSEC_DEBUG # debug for IP security
117 1.1 nonaka #options MROUTING # IP multicast routing
118 1.74 nonaka #options NETATALK # AppleTalk networking protocols
119 1.1 nonaka options PPP_BSDCOMP # BSD-Compress compression support for PPP
120 1.1 nonaka options PPP_DEFLATE # Deflate compression support for PPP
121 1.1 nonaka options PPP_FILTER # Active filter support for PPP (requires bpf)
122 1.1 nonaka options PFIL_HOOKS # pfil(9) packet filter hooks
123 1.1 nonaka options IPFILTER_LOG # ipmon(8) log support
124 1.56 martti #options IPFILTER_DEFAULT_BLOCK # block all packets by default
125 1.25 abs #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
126 1.1 nonaka
127 1.1 nonaka # These options enable verbose messages for several subsystems.
128 1.1 nonaka # Warning, these may compile large string tables into the kernel!
129 1.74 nonaka #options MIIVERBOSE # verbose PHY autoconfig messages
130 1.1 nonaka options PCIVERBOSE # verbose PCI device autoconfig messages
131 1.2 cgd #options PCI_CONFIG_DUMP # verbosely dump PCI config space
132 1.74 nonaka #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
133 1.3 nonaka options SCSIVERBOSE # human readable SCSI error messages
134 1.14 nonaka #options USBVERBOSE # verbose USB device autoconfig messages
135 1.49 nonaka #options RESIDUAL_DATA_DUMP # verbosely dump residual data
136 1.1 nonaka
137 1.74 nonaka #options NFS_BOOT_BOOTP
138 1.1 nonaka options NFS_BOOT_BOOTPARAM
139 1.1 nonaka options NFS_BOOT_DHCP
140 1.1 nonaka
141 1.1 nonaka #
142 1.1 nonaka # wscons options
143 1.1 nonaka #
144 1.1 nonaka # builtin terminal emulations
145 1.1 nonaka options WSEMUL_VT100 # VT100 / VT220 emulation
146 1.1 nonaka # different kernel output - see dev/wscons/wsdisplayvar.h
147 1.1 nonaka options WS_KERNEL_FG=WSCOL_GREEN
148 1.1 nonaka #options WS_KERNEL_BG=WSCOL_BLACK
149 1.1 nonaka # see dev/pckbc/wskbdmap_mfii.c for implemented layouts
150 1.1 nonaka #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
151 1.1 nonaka # allocate a number of virtual screens at autoconfiguration time
152 1.1 nonaka #options WSDISPLAY_DEFAULTSCREENS=4
153 1.1 nonaka # use a large software cursor that doesn't blink
154 1.1 nonaka options PCDISPLAY_SOFTCURSOR
155 1.1 nonaka
156 1.1 nonaka # Kernel root file system and dump configuration.
157 1.1 nonaka config netbsd root on ? type ?
158 1.46 mycroft #config netbsd root on tlp0 type nfs
159 1.74 nonaka #config netbsd root on pcn0 type nfs
160 1.1 nonaka
161 1.14 nonaka
162 1.1 nonaka #
163 1.1 nonaka # Device configuration
164 1.1 nonaka #
165 1.1 nonaka
166 1.1 nonaka mainbus0 at root
167 1.1 nonaka cpu0 at mainbus0
168 1.1 nonaka
169 1.14 nonaka
170 1.1 nonaka # Basic Bus Support
171 1.1 nonaka
172 1.1 nonaka # PCI bus support
173 1.1 nonaka pci0 at mainbus0 bus ?
174 1.1 nonaka pci* at pchb? bus ?
175 1.3 nonaka pci* at ppb? bus ?
176 1.1 nonaka
177 1.21 nonaka options PCI_NETBSD_CONFIGURE
178 1.21 nonaka
179 1.1 nonaka # PCI bridges
180 1.1 nonaka pchb* at pci? dev ? function ? # PCI-Host bridges
181 1.4 kleink ppb* at pci? dev ? function ? # PCI-PCI bridges
182 1.1 nonaka pcib* at pci? dev ? function ? # PCI-ISA bridges
183 1.1 nonaka
184 1.1 nonaka # ISA bus support
185 1.1 nonaka isa* at pcib? # ISA on PCI-ISA bridge
186 1.1 nonaka
187 1.14 nonaka # PCMCIA bus support
188 1.14 nonaka pcmcia* at pcic? controller ? socket ?
189 1.14 nonaka
190 1.14 nonaka # ISA PCMCIA controllers
191 1.14 nonaka pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
192 1.14 nonaka
193 1.14 nonaka #options PCIC_ISA_INTR_ALLOC_MASK=0x4a00 # free irq 9,11,14
194 1.14 nonaka #options PCIC_ISA_ALLOC_IOBASE=0x0400
195 1.14 nonaka #options PCIC_ISA_ALLOC_IOSIZE=0x0100
196 1.14 nonaka
197 1.16 tsutsui # ISA Plug-and-Play bus support
198 1.74 nonaka #isapnp0 at isa?
199 1.14 nonaka
200 1.51 nonaka # on-board I/O for IBM Personal Power Series 830 IDE controller
201 1.51 nonaka obio0 at mainbus0
202 1.51 nonaka
203 1.51 nonaka
204 1.1 nonaka # Console Devices
205 1.1 nonaka
206 1.1 nonaka # wscons
207 1.1 nonaka pckbc0 at isa? # pc keyboard controller
208 1.1 nonaka pckbd* at pckbc? # PC keyboard
209 1.1 nonaka pms* at pckbc? # PS/2 mouse for wsmouse
210 1.1 nonaka vga* at pci?
211 1.1 nonaka wsdisplay* at vga? console ?
212 1.1 nonaka wskbd* at pckbd? console ?
213 1.1 nonaka wsmouse* at pms? mux 0
214 1.1 nonaka
215 1.1 nonaka pcppi0 at isa? # PC prog. periph. interface
216 1.1 nonaka isabeep0 at pcppi? # "keyboard" beep
217 1.1 nonaka
218 1.1 nonaka mcclock0 at isa? port 0x70 # mc146818 and compatible
219 1.42 kleink mkclock0 at isa? port 0x74 # mk48t18 and compatible
220 1.1 nonaka
221 1.14 nonaka
222 1.72 jonathan # Cryptographic Devices
223 1.72 jonathan
224 1.72 jonathan # PCI cryptographic devices
225 1.73 he #hifn* at pci? dev ? function ? # Hifn 7755/7811/795x
226 1.73 he #ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x
227 1.72 jonathan
228 1.72 jonathan
229 1.1 nonaka # Serial Devices
230 1.1 nonaka
231 1.1 nonaka # ISA serial interfaces
232 1.1 nonaka com0 at isa? port 0x3f8 irq 4 # standard PC serial ports
233 1.1 nonaka com1 at isa? port 0x2f8 irq 3
234 1.1 nonaka
235 1.14 nonaka # PCMCIA serial interfaces
236 1.14 nonaka com* at pcmcia? function ? # Modems and serial cards
237 1.14 nonaka
238 1.74 nonaka #pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards
239 1.74 nonaka #com* at pcmcom? slave ? # ...and the slave devices
240 1.14 nonaka
241 1.14 nonaka
242 1.1 nonaka # Parallel Printer Interfaces
243 1.1 nonaka
244 1.1 nonaka # ISA parallel printer interfaces
245 1.1 nonaka lpt0 at isa? port 0x3bc irq 7 # standard PC parallel ports
246 1.1 nonaka
247 1.14 nonaka
248 1.3 nonaka # SCSI Controllers and Devices
249 1.3 nonaka
250 1.3 nonaka # PCI SCSI controllers
251 1.74 nonaka #adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
252 1.23 nonaka ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
253 1.74 nonaka #iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
254 1.74 nonaka #pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
255 1.21 nonaka siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
256 1.67 bouyer esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer
257 1.4 kleink
258 1.14 nonaka # PCMCIA SCSI controllers
259 1.14 nonaka aic* at pcmcia? function ? # Adaptec APA-1460 SCSI
260 1.14 nonaka
261 1.4 kleink # SCSI bus support
262 1.74 nonaka #scsibus* at adw?
263 1.23 nonaka scsibus* at ahc?
264 1.14 nonaka scsibus* at aic?
265 1.74 nonaka #scsibus* at iha?
266 1.74 nonaka #scsibus* at pcscp?
267 1.21 nonaka scsibus* at siop?
268 1.67 bouyer scsibus* at esiop?
269 1.3 nonaka
270 1.3 nonaka # SCSI devices
271 1.3 nonaka sd* at scsibus? target ? lun ? # SCSI disk drives
272 1.3 nonaka st* at scsibus? target ? lun ? # SCSI tape drives
273 1.3 nonaka cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
274 1.74 nonaka #ch* at scsibus? target ? lun ? # SCSI autochangers
275 1.74 nonaka #ss* at scsibus? target ? lun ? # SCSI scanners
276 1.3 nonaka uk* at scsibus? target ? lun ? # SCSI unknown
277 1.3 nonaka
278 1.14 nonaka
279 1.7 nonaka # IDE and related devices
280 1.7 nonaka
281 1.51 nonaka # IBM Personal Power Series 830 IDE controller
282 1.51 nonaka wdc0 at obio? port 0x1f0 irq 13
283 1.51 nonaka wdc1 at obio? port 0x170 irq 13
284 1.51 nonaka
285 1.51 nonaka # ISA Plug-and-Play IDE controllers
286 1.74 nonaka #wdc* at isapnp?
287 1.51 nonaka
288 1.14 nonaka # PCMCIA IDE controllers
289 1.14 nonaka wdc* at pcmcia? function ?
290 1.14 nonaka
291 1.70 lukem # ATA (IDE) bus support
292 1.70 lukem atabus* at ata?
293 1.69 bouyer
294 1.14 nonaka # IDE drives
295 1.14 nonaka # Flags are used only with controllers that support DMA operations
296 1.14 nonaka # and mode settings (e.g. some pciide controllers)
297 1.14 nonaka # The lowest order four bits (rightmost digit) of the flags define the PIO
298 1.14 nonaka # mode to use, the next set of four bits the DMA mode and the third set the
299 1.14 nonaka # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
300 1.14 nonaka # to use, and the last bit must be 1 for this setting to be used.
301 1.14 nonaka # For DMA and UDMA, 0xf (1111) means 'disable'.
302 1.14 nonaka # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
303 1.14 nonaka # (0xc=1100, 0xa=1010, 0xf=1111)
304 1.14 nonaka # 0x0000 means "use whatever the drive claims to support".
305 1.69 bouyer wd* at atabus? drive ? flags 0x0000
306 1.14 nonaka
307 1.14 nonaka # ATAPI bus support
308 1.70 lukem atapibus* at atapi?
309 1.14 nonaka
310 1.7 nonaka # ATAPI devices
311 1.7 nonaka # flags have the same meaning as for IDE drives.
312 1.14 nonaka cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
313 1.14 nonaka sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
314 1.14 nonaka uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
315 1.14 nonaka
316 1.62 matt # Miscellaneous mass storage devices
317 1.62 matt
318 1.62 matt # ISA Floppy
319 1.74 nonaka #fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard ISA floppy controller
320 1.74 nonaka #fd0 at fdc0 drive ?
321 1.7 nonaka
322 1.1 nonaka # Network Interfaces
323 1.1 nonaka
324 1.1 nonaka # PCI network interfaces
325 1.1 nonaka ep* at pci? dev ? function ? # 3Com 3c59x
326 1.47 kleink ex* at pci? dev ? function ? # 3Com 3c90x[BC]
327 1.23 nonaka fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
328 1.1 nonaka ne* at pci? dev ? function ? # NE2000-compatible Ethernet
329 1.29 tsutsui pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
330 1.23 nonaka rtk* at pci? dev ? function ? # Realtek 8129/8139
331 1.29 tsutsui sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
332 1.46 mycroft tlp* at pci? dev ? function ? # DECchip 21x4x and clones
333 1.3 nonaka vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
334 1.1 nonaka
335 1.18 tsutsui # ISA network interfaces
336 1.74 nonaka #ep* at isa? port ? irq ? # 3Com 3c509 Ethernet
337 1.74 nonaka #ne0 at isa? port 0x280 irq 9 # NE2000-compatible Ethernet
338 1.74 nonaka #ne1 at isa? port 0x300 irq 10
339 1.74 nonaka #we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet
340 1.74 nonaka #we1 at isa? port 0x300 iomem 0xe4000 irq 11
341 1.18 tsutsui
342 1.16 tsutsui # ISA Plug-and-Play network intefaces
343 1.74 nonaka #ep* at isapnp? # 3Com 3c509 Ethernet
344 1.74 nonaka #ne* at isapnp? # NE2000-compatible Ethernet
345 1.16 tsutsui
346 1.14 nonaka # PCMCIA network interfaces
347 1.14 nonaka ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
348 1.14 nonaka ne* at pcmcia? function ? # NE2000-compatible Ethernet
349 1.14 nonaka
350 1.1 nonaka # MII/PHY support
351 1.7 nonaka dmphy* at mii? phy ? # Davicom DM9101 PHYs
352 1.7 nonaka exphy* at mii? phy ? # 3Com internal PHYs
353 1.41 wiz icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
354 1.7 nonaka inphy* at mii? phy ? # Intel 82555 PHYs
355 1.7 nonaka iophy* at mii? phy ? # Intel 82553 PHYs
356 1.7 nonaka lxtphy* at mii? phy ? # Level One LXT-970 PHYs
357 1.7 nonaka nsphy* at mii? phy ? # NS83840 PHYs
358 1.7 nonaka nsphyter* at mii? phy ? # NS83843 PHYs
359 1.7 nonaka qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
360 1.7 nonaka sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
361 1.7 nonaka tlphy* at mii? phy ? # ThunderLAN PHYs
362 1.7 nonaka tqphy* at mii? phy ? # TDK Semiconductor PHYs
363 1.3 nonaka ukphy* at mii? phy ? # generic unknown PHYs
364 1.3 nonaka
365 1.14 nonaka
366 1.7 nonaka # USB Controller and Devices
367 1.7 nonaka
368 1.7 nonaka # PCI USB controllers
369 1.14 nonaka #uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
370 1.14 nonaka #ohci* at pci? dev ? function ? # Open Host Controller
371 1.7 nonaka
372 1.7 nonaka # USB bus support
373 1.14 nonaka #usb* at uhci?
374 1.14 nonaka #usb* at ohci?
375 1.7 nonaka
376 1.7 nonaka # USB Hubs
377 1.14 nonaka #uhub* at usb?
378 1.14 nonaka #uhub* at uhub? port ? configuration ? interface ?
379 1.7 nonaka
380 1.38 augustss # USB HID device
381 1.38 augustss #uhidev* at uhub? port ? configuration ? interface ?
382 1.38 augustss
383 1.7 nonaka # USB Mice
384 1.38 augustss #ums* at uhidev? reportid ?
385 1.14 nonaka #wsmouse* at ums? mux 0
386 1.7 nonaka
387 1.7 nonaka # USB Keyboards
388 1.38 augustss #ukbd* at uhidev? reportid ?
389 1.14 nonaka #wskbd* at ukbd? console ? mux 1
390 1.7 nonaka
391 1.7 nonaka # USB Generic HID devices
392 1.38 augustss #uhid* at uhidev? reportid ?
393 1.7 nonaka
394 1.7 nonaka # USB Printer
395 1.14 nonaka #ulpt* at uhub? port ? configuration ? interface ?
396 1.7 nonaka
397 1.7 nonaka # USB Modem
398 1.14 nonaka #umodem* at uhub? port ? configuration ?
399 1.14 nonaka #ucom* at umodem?
400 1.7 nonaka
401 1.7 nonaka # USB Mass Storage
402 1.14 nonaka #umass* at uhub? port ? configuration ? interface ?
403 1.14 nonaka #scsibus* at umass? channel ?
404 1.69 bouyer #atapibus* at umass?
405 1.7 nonaka
406 1.7 nonaka # USB audio
407 1.14 nonaka #uaudio* at uhub? port ? configuration ?
408 1.7 nonaka
409 1.7 nonaka # USB Ethernet adapters
410 1.14 nonaka #aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
411 1.14 nonaka #cue* at uhub? port ? # CATC USB-EL1201A based adapters
412 1.14 nonaka #kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
413 1.64 augustss #uax* at uhub? port ? # ASIX AX88172 based adapters
414 1.64 augustss #url* at uhub? port ? # Realtek RTL8150L based adapters
415 1.68 itojun #udav* at uhub? port ? # Davicom DM9601 based adapters
416 1.7 nonaka
417 1.7 nonaka # Prolofic PL2301/PL2302 host-to-host adapter
418 1.14 nonaka #upl* at uhub? port ?
419 1.7 nonaka
420 1.7 nonaka # Serial adapters
421 1.52 nonaka #uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
422 1.7 nonaka #ucom* at uftdi? portno ?
423 1.52 nonaka
424 1.52 nonaka #umct* at uhub? port ? # MCT USB-RS232 serial adapter
425 1.52 nonaka #ucom* at umct? portno ?
426 1.52 nonaka
427 1.52 nonaka #uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
428 1.52 nonaka #ucom* at uplcom? portno ?
429 1.52 nonaka
430 1.52 nonaka #uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
431 1.52 nonaka #ucom* at uvscom? portno ?
432 1.7 nonaka
433 1.7 nonaka # Diamond Multimedia Rio 500
434 1.14 nonaka #urio* at uhub? port ?
435 1.7 nonaka
436 1.7 nonaka # USB Handspring Visor
437 1.14 nonaka #uvisor* at uhub? port ?
438 1.14 nonaka #ucom* at uvisor?
439 1.17 augustss
440 1.17 augustss # Y@P firmware loader
441 1.17 augustss #uyap* at uhub? port ?
442 1.14 nonaka
443 1.14 nonaka # USB Generic driver
444 1.14 nonaka #ugen* at uhub? port ?
445 1.13 augustss
446 1.13 augustss # USB scanners
447 1.14 nonaka #uscanner* at uhub? port ?
448 1.7 nonaka
449 1.7 nonaka
450 1.3 nonaka # Audio device
451 1.3 nonaka
452 1.16 tsutsui # ISA Plug-and-Play audio devices
453 1.23 nonaka #wss* at isapnp? # CS4232
454 1.16 tsutsui
455 1.7 nonaka # Audio support
456 1.23 nonaka #audio* at uaudio?
457 1.16 tsutsui #audio* at wss?
458 1.7 nonaka
459 1.3 nonaka # MIDI support
460 1.74 nonaka #midi* at pcppi? # MIDI interface to the PC speaker
461 1.3 nonaka
462 1.3 nonaka # The spkr driver provides a simple tone interface to the built in speaker.
463 1.74 nonaka #spkr0 at pcppi? # PC speaker
464 1.1 nonaka
465 1.51 nonaka
466 1.1 nonaka # Joysticks
467 1.1 nonaka
468 1.51 nonaka # ISA Plug-and-Play joysticks
469 1.74 nonaka #joy* at isapnp? # Game ports (usually on audio cards)
470 1.51 nonaka
471 1.1 nonaka # ISA joysticks. Probe is a little strange; add only if you have one.
472 1.51 nonaka #joy0 at isa? port 0x201
473 1.14 nonaka
474 1.1 nonaka
475 1.1 nonaka # Pseudo-Devices
476 1.1 nonaka
477 1.73 he # Not yet ready -- prep lacks generic soft interrupts
478 1.73 he #pseudo-device crypto # opencrypto framework
479 1.72 jonathan
480 1.1 nonaka # disk/mass storage pseudo-devices
481 1.1 nonaka pseudo-device ccd 4 # concatenated/striped disk devices
482 1.58 elric #pseudo-device cgd 4 # cryptographic disk devices
483 1.39 oster #pseudo-device raid 8 # RAIDframe disk driver
484 1.1 nonaka #options RAID_AUTOCONFIG # auto-configuration of RAID components
485 1.39 oster # Options to enable various other RAIDframe RAID types.
486 1.39 oster # options RF_INCLUDE_EVENODD=1
487 1.39 oster # options RF_INCLUDE_RAID5_RS=1
488 1.39 oster # options RF_INCLUDE_PARITYLOGGING=1
489 1.39 oster # options RF_INCLUDE_CHAINDECLUSTER=1
490 1.39 oster # options RF_INCLUDE_INTERDECLUSTER=1
491 1.39 oster # options RF_INCLUDE_PARITY_DECLUSTERING=1
492 1.39 oster # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
493 1.1 nonaka pseudo-device md 1 # memory disk device (ramdisk)
494 1.1 nonaka pseudo-device vnd 4 # disk-like interface to files
495 1.1 nonaka
496 1.1 nonaka # network pseudo-devices
497 1.1 nonaka pseudo-device loop # network loopback
498 1.1 nonaka pseudo-device bpfilter 8 # Berkeley packet filter
499 1.1 nonaka pseudo-device ipfilter # IP filter (firewall) and NAT
500 1.1 nonaka pseudo-device ppp 2 # Point-to-Point Protocol
501 1.37 martin pseudo-device pppoe # PPP over Ethernet (RFC 2516)
502 1.1 nonaka pseudo-device sl 2 # Serial Line IP
503 1.1 nonaka pseudo-device strip 2 # Starmode Radio IP (Metricom)
504 1.1 nonaka pseudo-device tun 2 # network tunneling over tty
505 1.1 nonaka pseudo-device gre 2 # generic L3 over IP tunnel
506 1.1 nonaka pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
507 1.1 nonaka #pseudo-device faith 2 # IPv[46] tcp relay translation i/f
508 1.5 itojun #pseudo-device stf 2 # 6to4 IPv6 over IPv4 encapsulation
509 1.15 bouyer pseudo-device vlan # IEEE 802.1q encapsulation
510 1.34 atatat pseudo-device bridge # simple inter-network bridging
511 1.65 perseant #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
512 1.1 nonaka
513 1.1 nonaka # miscellaneous pseudo-devices
514 1.12 jdolecek pseudo-device pty # pseudo-terminals
515 1.7 nonaka pseudo-device tb 1 # tablet line discipline
516 1.74 nonaka #pseudo-device sequencer 1 # MIDI sequencer
517 1.7 nonaka pseudo-device rnd # /dev/random and in-kernel generator
518 1.32 lukem #options RND_COM # use "com" randomness as well
519 1.53 lukem pseudo-device clockctl # user control of clock subsystem
520 1.66 ragge pseudo-device ksyms # /dev/ksyms
521 1.77 itojun #pseudo-device pf # PF packet filter
522 1.77 itojun #pseudo-device pflog # PF log if
523 1.1 nonaka
524 1.1 nonaka # a pseudo device needed for Coda # also needs CODA (above)
525 1.7 nonaka #pseudo-device vcoda 4 # coda minicache <-> venus comm.
526 1.1 nonaka
527 1.35 kleink # wscons pseudo-devices
528 1.35 kleink pseudo-device wsmux # mouse & keyboard multiplexor
529 1.35 kleink pseudo-device wsfont
530