GENERIC revision 1.41 1 1.41 riastrad # $NetBSD: GENERIC,v 1.41 2022/09/29 10:10:07 riastradh Exp $
2 1.1 skrll #
3 1.1 skrll # GENERIC machine description file
4 1.1 skrll #
5 1.1 skrll # This machine description file is used to generate the default NetBSD
6 1.1 skrll # kernel. The generic kernel does not include all options, subsystems
7 1.1 skrll # and device drivers, but should be useful for most applications.
8 1.1 skrll #
9 1.1 skrll # The machine description file can be customised for your specific
10 1.1 skrll # machine to reduce the kernel size and improve its performance.
11 1.1 skrll #
12 1.1 skrll # For further information on compiling NetBSD kernels, see the config(8)
13 1.1 skrll # man page.
14 1.1 skrll #
15 1.1 skrll # For further information on hardware support for this architecture, see
16 1.1 skrll # the intro(4) man page. For further information about kernel options
17 1.1 skrll # for this architecture, see the options(4) man page. For an explanation
18 1.1 skrll # of each device driver in this file see the section 4 man page for the
19 1.1 skrll # device.
20 1.1 skrll
21 1.1 skrll include "arch/hppa/conf/std.hppa"
22 1.1 skrll
23 1.1 skrll options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.1 skrll options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
25 1.1 skrll
26 1.41 riastrad #ident "GENERIC-$Revision: 1.41 $"
27 1.1 skrll
28 1.1 skrll maxusers 32 # estimated number of users
29 1.1 skrll
30 1.1 skrll # CPU support. At least one is REQUIRED.
31 1.1 skrll options HP7000_CPU # PCX, PCX-S
32 1.1 skrll options HP7100_CPU,HP7150_CPU # PCX-T
33 1.1 skrll options HP7100LC_CPU # PCX-L
34 1.1 skrll options HP7200_CPU,HP7250_CPU # PCX-T'
35 1.1 skrll options HP7300LC_CPU # PCX-L2
36 1.1 skrll options HP8000_CPU # PCX-U (in 32bit mode)
37 1.1 skrll options HP8200_CPU # PCX-V/U+ (in 32bit mode)
38 1.1 skrll options HP8500_CPU # PCX-W (in 32bit mode)
39 1.1 skrll options HP8600_CPU # PCX-W+ (in 32bit mode)
40 1.1 skrll options HP8700_CPU # PCX-W2 (in 32bit mode)
41 1.1 skrll
42 1.1 skrll # CPU-related options.
43 1.1 skrll options USELEDS # blink 'em
44 1.1 skrll
45 1.1 skrll # delay between "rebooting ..." message and hardware reset, in milliseconds
46 1.1 skrll #options CPURESET_DELAY=2000
47 1.1 skrll
48 1.1 skrll # Standard system options
49 1.1 skrll
50 1.1 skrll options INSECURE # disable kernel security levels
51 1.1 skrll
52 1.1 skrll options NTP # NTP phase/frequency locked loop
53 1.1 skrll
54 1.1 skrll options KTRACE # system call tracing via ktrace(1)
55 1.1 skrll
56 1.1 skrll options SYSVMSG # System V-like message queues
57 1.1 skrll options SYSVSEM # System V-like semaphores
58 1.1 skrll options SYSVSHM # System V-like memory sharing
59 1.1 skrll
60 1.33 skrll options MODULAR # new style module(7) framework
61 1.33 skrll options MODULAR_DEFAULT_AUTOLOAD
62 1.33 skrll
63 1.1 skrll options USERCONF # userconf(4) support
64 1.1 skrll
65 1.17 sevan # Alternate buffer queue strategies for better responsiveness under high
66 1.17 sevan # disk I/O load.
67 1.1 skrll #options BUFQ_READPRIO
68 1.27 sevan options BUFQ_PRIOCSCAN
69 1.1 skrll
70 1.1 skrll # Diagnostic/debugging support options
71 1.1 skrll #options DIAGNOSTIC # expensive kernel consistency checks
72 1.1 skrll #options DEBUG # expensive debugging checks/support
73 1.1 skrll options DDB # in-kernel debugger
74 1.1 skrll options DDB_HISTORY_SIZE=512 # enable history editing in DDB
75 1.1 skrll #options KGDB # remote debugger
76 1.1 skrll #options KGDB_DEVNAME="\"com\"",KGDBADDR=0xf0822000,KGDBRATE=9600
77 1.1 skrll #makeoptions DEBUG="-g" # compile full symbol table
78 1.1 skrll
79 1.1 skrll # Compatibility options
80 1.16 christos include "conf/compat_netbsd20.config"
81 1.1 skrll
82 1.1 skrll #options COMPAT_LINUX # binary compatibility with Linux
83 1.37 nia #options COMPAT_OSSAUDIO # binary compatibility with Linux
84 1.1 skrll
85 1.1 skrll # File systems
86 1.1 skrll file-system FFS # UFS
87 1.1 skrll file-system EXT2FS # second extended file system (linux)
88 1.1 skrll file-system LFS # log-structured file system
89 1.1 skrll file-system MFS # memory file system
90 1.1 skrll file-system NFS # Network File System client
91 1.1 skrll file-system NTFS # Windows/NT file system (experimental)
92 1.1 skrll file-system CD9660 # ISO 9660 + Rock Ridge file system
93 1.1 skrll file-system MSDOSFS # MS-DOS file system
94 1.1 skrll file-system FDESC # /dev/fd
95 1.1 skrll file-system KERNFS # /kern
96 1.1 skrll file-system NULLFS # loopback file system
97 1.1 skrll file-system OVERLAY # overlay file system
98 1.39 skrll file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
99 1.1 skrll file-system PROCFS # /proc
100 1.1 skrll file-system UMAPFS # NULLFS + uid and gid remapping
101 1.1 skrll file-system UNION # union file system
102 1.39 skrll file-system CODA # Coda File System; also needs vcoda (below)
103 1.39 skrll file-system PTYFS # /dev/pts/N support
104 1.39 skrll file-system TMPFS # Efficient memory file-system
105 1.39 skrll #file-system UDF # experimental - OSTA UDF CD/DVD file-system
106 1.1 skrll
107 1.1 skrll # File system options
108 1.40 simonb #options FFS_EI # FFS Endian Independent support
109 1.40 simonb #options FFS_NO_SNAPSHOT # No FFS snapshot support
110 1.1 skrll options QUOTA # legacy UFS quotas
111 1.1 skrll options QUOTA2 # new, in-filesystem UFS quotas
112 1.40 simonb options UFS_DIRHASH # UFS Large Directory Hashing
113 1.40 simonb options UFS_EXTATTR # Extended attribute support for UFS1
114 1.1 skrll options WAPBL # File system journaling support
115 1.40 simonb options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental
116 1.1 skrll #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
117 1.1 skrll # immutable) behave as system flags.
118 1.40 simonb options NFSSERVER # Network File System server
119 1.1 skrll
120 1.1 skrll # Networking options
121 1.1 skrll #options GATEWAY # packet forwarding
122 1.1 skrll options INET # IP + ICMP + TCP + UDP
123 1.1 skrll options INET6 # IPV6
124 1.1 skrll #options IPSEC # IP security
125 1.1 skrll #options IPSEC_DEBUG # debug for IP security
126 1.1 skrll #options MROUTING # IP multicast routing
127 1.1 skrll #options PIM # Protocol Independent Multicast
128 1.1 skrll #options NETATALK # AppleTalk networking protocols
129 1.1 skrll options PPP_BSDCOMP # BSD-Compress compression support for PPP
130 1.1 skrll options PPP_DEFLATE # Deflate compression support for PPP
131 1.1 skrll options PPP_FILTER # Active filter support for PPP (requires bpf)
132 1.1 skrll #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
133 1.1 skrll
134 1.1 skrll #options ALTQ # Manipulate network interfaces' output queues
135 1.1 skrll #options ALTQ_BLUE # Stochastic Fair Blue
136 1.1 skrll #options ALTQ_CBQ # Class-Based Queueing
137 1.1 skrll #options ALTQ_CDNR # Diffserv Traffic Conditioner
138 1.1 skrll #options ALTQ_FIFOQ # First-In First-Out Queue
139 1.1 skrll #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
140 1.1 skrll #options ALTQ_HFSC # Hierarchical Fair Service Curve
141 1.1 skrll #options ALTQ_LOCALQ # Local queueing discipline
142 1.1 skrll #options ALTQ_PRIQ # Priority Queueing
143 1.1 skrll #options ALTQ_RED # Random Early Detection
144 1.1 skrll #options ALTQ_RIO # RED with IN/OUT
145 1.1 skrll #options ALTQ_WFQ # Weighted Fair Queueing
146 1.1 skrll
147 1.1 skrll # These options enable verbose messages for several subsystems.
148 1.1 skrll # Warning, these may compile large string tables into the kernel!
149 1.1 skrll options GSCVERBOSE # verbose GSC device autoconfig messages
150 1.1 skrll options PCIVERBOSE # verbose PCI device autoconfig messages
151 1.1 skrll options EISAVERBOSE # verbose EISA device autoconfig messages
152 1.1 skrll options MIIVERBOSE # verbose PHY autoconfig messages
153 1.1 skrll options SCSIVERBOSE # human readable SCSI error messages
154 1.1 skrll
155 1.1 skrll options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
156 1.1 skrll
157 1.1 skrll #
158 1.1 skrll # wscons options
159 1.1 skrll #
160 1.1 skrll # builtin terminal emulations
161 1.1 skrll #options WSEMUL_SUN # sun terminal emulation
162 1.1 skrll options WSEMUL_VT100 # VT100 / VT220 emulation
163 1.1 skrll # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
164 1.1 skrll options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
165 1.1 skrll #options WS_DEFAULT_FG=WSCOL_WHITE
166 1.1 skrll #options WS_DEFAULT_BG=WSCOL_BLACK
167 1.1 skrll #options WS_DEFAULT_COLATTR=""
168 1.1 skrll #options WS_DEFAULT_MONOATTR=""
169 1.1 skrll options WS_KERNEL_FG=WSCOL_GREEN
170 1.1 skrll #options WS_KERNEL_BG=WSCOL_BLACK
171 1.1 skrll #options WS_KERNEL_COLATTR=""
172 1.1 skrll #options WS_KERNEL_MONOATTR=""
173 1.1 skrll # customization of console border color
174 1.1 skrll options WSDISPLAY_CUSTOM_BORDER # border customization from wsconsctl(8)
175 1.1 skrll #options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color
176 1.1 skrll # compatibility to other console drivers
177 1.1 skrll options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
178 1.1 skrll options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
179 1.1 skrll options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
180 1.1 skrll options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
181 1.1 skrll # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
182 1.1 skrll #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
183 1.1 skrll # allocate a number of virtual screens at autoconfiguration time
184 1.1 skrll #options WSDISPLAY_DEFAULTSCREENS=4
185 1.1 skrll # use a large software cursor that doesn't blink
186 1.1 skrll options PCDISPLAY_SOFTCURSOR
187 1.1 skrll # modify the screen type of the console; defaults to "80x25"
188 1.1 skrll #options VGA_CONSOLE_SCREENTYPE="\"80x24\""
189 1.1 skrll # work around a hardware bug that loaded fonts don't work; found on ATI cards
190 1.1 skrll #options VGA_CONSOLE_ATI_BROKEN_FONTSEL
191 1.1 skrll # console scrolling support.
192 1.1 skrll #options WSDISPLAY_SCROLLSUPPORT
193 1.1 skrll # enable VGA raster mode capable of displaying multilingual text on console
194 1.1 skrll #options VGA_RASTERCONSOLE
195 1.1 skrll
196 1.1 skrll # Kernel root file system and dump configuration.
197 1.1 skrll config netbsd root on ? type ?
198 1.1 skrll #config netbsd root on sd0a type ffs
199 1.1 skrll #config netbsd root on ? type nfs
200 1.1 skrll
201 1.1 skrll #
202 1.1 skrll # Device configuration
203 1.1 skrll #
204 1.1 skrll
205 1.1 skrll mainbus0 at root
206 1.1 skrll
207 1.1 skrll # CPU and memory - DO NOT REMOVE THESE
208 1.1 skrll cpu* at mainbus0 irq 31 # HP PA-RISC CPU
209 1.1 skrll mem* at mainbus0 # /dev/*mem and memory controller
210 1.1 skrll
211 1.1 skrll # Coprocessor/SFU Support
212 1.1 skrll #fpu* at mainbus0 # HP PA-RISC fpu (iv N/A)
213 1.18 dholland #pmu* at mainbus0 # HP PA-RISC performance monitor unit (iv 29)
214 1.1 skrll
215 1.1 skrll # Miscellaneous
216 1.1 skrll pdc0 at mainbus0 # PDC/IODC wrapper for boot console
217 1.1 skrll power0 at mainbus0 # power/fail manager
218 1.1 skrll lcd0 at mainbus0 # LCD
219 1.1 skrll
220 1.1 skrll # Basic Bus Support
221 1.1 skrll lasi0 at mainbus0 irq 28 # LASI host adapter
222 1.1 skrll lasi0 at phantomas0 irq 28 # LASI on [AB]*
223 1.1 skrll lasi0 at uturn? irq 28 # LASI on [CJ]*
224 1.1 skrll lasi1 at mainbus0 irq 27 # 712 GIO card
225 1.1 skrll asp* at mainbus0 irq 28 # this one comes w/ Viper and LEDs
226 1.1 skrll wax* at mainbus0 # Wax GSC to GSC Bus Adapter
227 1.1 skrll mongoose* at mainbus0 # EISA Bus Adapter ( i82350 or TI??? )
228 1.1 skrll #vmeb* at mainbus0 irq ? # VME bus adapter
229 1.1 skrll phantomas* at mainbus0 # Phantom PseudoBC GSC+ Port
230 1.1 skrll
231 1.1 skrll lasi* at phantomas? # LASI on [ABCJ?]*
232 1.1 skrll dino* at phantomas? # PCI bus bridge
233 1.1 skrll wax* at phantomas? # Wax GSC to GSC Bus Adapter
234 1.1 skrll
235 1.1 skrll # GSC bus support
236 1.1 skrll gsc* at lasi? # 712
237 1.1 skrll gsc* at asp? # 7xx (old)
238 1.1 skrll gsc* at wax? # {725,715}/{64,80,100}, C*, B*, J*
239 1.1 skrll
240 1.1 skrll # Wax GSC to EISA Bus Adapter
241 1.1 skrll #weisa* at mainbus0 # 7xx
242 1.1 skrll #weisa* at gsc? # C*, B*
243 1.1 skrll
244 1.1 skrll # Uturn/U2 IOA
245 1.1 skrll uturn0 at mainbus0 # U2/UTurn Runway IOA
246 1.1 skrll uturn1 at mainbus0
247 1.1 skrll lasi* at uturn? # LASI on [CJ]*
248 1.1 skrll dino* at uturn? # PCI bus bridge
249 1.1 skrll #wax* at uturn? # Wax on C*
250 1.1 skrll
251 1.1 skrll #gecko* at uturn? # GeckoBOA
252 1.1 skrll #lasi* at gecko? # LASI
253 1.1 skrll #dino* at gecko? # PCI bus bridge
254 1.1 skrll #wax* at gecko? # Wax GSC to GSC Bus Adapter
255 1.1 skrll
256 1.26 skrll # Astro memory & I/O controller
257 1.1 skrll astro* at mainbus0 # Astro memory & I/O controller
258 1.1 skrll elroy* at astro?
259 1.1 skrll
260 1.1 skrll # PCI bus support
261 1.1 skrll pci* at elroy?
262 1.1 skrll pci* at dino?
263 1.1 skrll com* at dino?
264 1.1 skrll ppb* at pci? dev ? function ?
265 1.1 skrll pci* at ppb?
266 1.1 skrll
267 1.1 skrll ssio* at pci?
268 1.1 skrll
269 1.1 skrll # EISA bus support
270 1.1 skrll eisa* at mongoose?
271 1.1 skrll #eisa* at weisa?
272 1.1 skrll
273 1.1 skrll # ISA bus support
274 1.1 skrll # Beware: Most ISA MI drivers are not endianness clean!
275 1.1 skrll #isa* at mongoose?
276 1.1 skrll #isa* at weisa?
277 1.1 skrll
278 1.1 skrll # VME bus support
279 1.1 skrll #vme* at vmeb?
280 1.1 skrll
281 1.1 skrll # Console Devices
282 1.1 skrll
283 1.1 skrll # STI graphics
284 1.1 skrll sti* at mainbus0 # [H]CRX-{8,24,48}[Z] and Visualize graphics
285 1.1 skrll sti* at phantomas? # [H]CRX-{8,24,48}[Z] and Visualize graphics
286 1.1 skrll sti* at uturn?
287 1.1 skrll sti* at pci? # EG-PCI, FX*
288 1.1 skrll
289 1.1 skrll # Human Interface Loop
290 1.1 skrll hil* at gsc? irq 1 # Human Interface Loop, kbd and mouse
291 1.1 skrll hilkbd* at hil? # keyboard, knob and buttons
292 1.1 skrll hilms* at hil? # mouse and tablets
293 1.1 skrll hilid* at hil? # ID module
294 1.1 skrll
295 1.1 skrll # wscons
296 1.1 skrll gsckbc* at gsc? # pc keyboard controller
297 1.1 skrll pckbd* at gsckbc? # PC keyboard
298 1.1 skrll pms* at gsckbc? # PS/2 mouse for wsmouse
299 1.1 skrll wskbd* at pckbd? console ?
300 1.1 skrll wsmouse* at pms? mux 0
301 1.1 skrll wskbd* at hilkbd? console ?
302 1.1 skrll wsmouse* at hilms? mux 0
303 1.1 skrll wsdisplay* at sti?
304 1.1 skrll
305 1.1 skrll # Serial Devices
306 1.1 skrll
307 1.1 skrll # SSIO serial interfaces
308 1.1 skrll com0 at ssio? irq 4
309 1.1 skrll com1 at ssio? irq 3
310 1.1 skrll
311 1.1 skrll # GSC serial interfaces
312 1.1 skrll com* at gsc? # RS/232 serial port
313 1.1 skrll
314 1.1 skrll # PCI serial interfaces
315 1.1 skrll puc* at pci? dev ? function ? # PCI "universal" comm. cards
316 1.1 skrll com* at puc? port ? # 16x50s on "universal" comm boards
317 1.1 skrll cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
318 1.1 skrll cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
319 1.1 skrll
320 1.1 skrll # Parallel Printer Interfaces
321 1.1 skrll
322 1.1 skrll # SSIO parallel printer interface
323 1.1 skrll lpt0 at ssio?
324 1.1 skrll
325 1.1 skrll # GSC parallel printer interface
326 1.1 skrll lpt* at gsc?
327 1.1 skrll
328 1.1 skrll # PCI parallel printer interfaces
329 1.1 skrll lpt* at puc? port ? # || ports on "universal" comm boards
330 1.1 skrll
331 1.1 skrll # SCSI Controllers and Devices
332 1.1 skrll
333 1.1 skrll # GSC SCSI controllers
334 1.1 skrll oosiop* at gsc? # NCR 53c700
335 1.1 skrll osiop* at gsc? flags 0x00000 # NCR 53c710
336 1.1 skrll siop* at gsc? # NCR 53c720 (Fast/Wide)
337 1.1 skrll siop* at mainbus0 # NCR 53c720 (Fast/Wide)
338 1.1 skrll siop* at phantomas? # NCR 53c720 (Fast/Wide)
339 1.39 skrll siop* at uturn? # NCR 53c720 (Fast/Wide)
340 1.1 skrll
341 1.1 skrll # PCI SCSI controllers
342 1.1 skrll adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
343 1.1 skrll adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
344 1.1 skrll ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
345 1.1 skrll ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI
346 1.1 skrll bha* at pci? dev ? function ? # BusLogic 9xx SCSI
347 1.1 skrll dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
348 1.1 skrll iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
349 1.1 skrll isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
350 1.1 skrll mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID
351 1.1 skrll mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC
352 1.1 skrll pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
353 1.1 skrll siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
354 1.1 skrll esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer
355 1.1 skrll #options SIOP_SYMLED # drive the act. LED in software
356 1.1 skrll trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
357 1.1 skrll
358 1.1 skrll # EISA SCSI controllers
359 1.1 skrll ahb* at eisa? slot ? # Adaptec 174[02] SCSI
360 1.1 skrll ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
361 1.1 skrll bha* at eisa? slot ? # BusLogic 7xx SCSI
362 1.1 skrll dpt* at eisa? slot ? # DPT EATA SCSI
363 1.1 skrll uha* at eisa? slot ? # UltraStor 24f SCSI
364 1.1 skrll
365 1.1 skrll # SCSI bus support
366 1.1 skrll scsibus* at scsi?
367 1.1 skrll
368 1.1 skrll # SCSI devices
369 1.1 skrll sd* at scsibus? target ? lun ? # SCSI disk drives
370 1.1 skrll st* at scsibus? target ? lun ? # SCSI tape drives
371 1.1 skrll cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
372 1.1 skrll ch* at scsibus? target ? lun ? # SCSI autochangers
373 1.1 skrll ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
374 1.1 skrll ss* at scsibus? target ? lun ? # SCSI scanners
375 1.1 skrll uk* at scsibus? target ? lun ? # SCSI unknown
376 1.1 skrll
377 1.1 skrll
378 1.1 skrll # RAID controllers and devices
379 1.1 skrll # aac is broken
380 1.1 skrll #aac* at pci? dev ? function ? # Adaptec AAC family
381 1.1 skrll amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID
382 1.1 skrll cac* at eisa? slot ? # Compaq EISA array controllers
383 1.1 skrll cac* at pci? dev ? function ? # Compaq PCI array controllers
384 1.1 skrll icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID
385 1.1 skrll mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
386 1.1 skrll mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family
387 1.1 skrll twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
388 1.1 skrll
389 1.1 skrll #ld* at aac? unit ? # logical disk devices
390 1.1 skrll ld* at amr? unit ?
391 1.1 skrll ld* at cac? unit ?
392 1.1 skrll ld* at icp? unit ?
393 1.1 skrll ld* at mlx? unit ?
394 1.1 skrll ld* at twe? unit ?
395 1.1 skrll
396 1.1 skrll icpsp* at icp? unit ? # SCSI pass-through
397 1.1 skrll
398 1.1 skrll # IDE and related devices
399 1.1 skrll # PCI IDE controllers - see pciide(4) for supported hardware.
400 1.1 skrll # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
401 1.1 skrll # how to set up DMA modes for this chip. This may work, or may cause
402 1.1 skrll # a machine hang with some controllers.
403 1.1 skrll pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
404 1.39 skrll acardide* at pci? dev ? function ? # Acard IDE controllers
405 1.1 skrll aceride* at pci? dev ? function ? # Acer Lab IDE controllers
406 1.1 skrll artsata* at pci? dev ? function ? # Intel i31244 SATA controller
407 1.1 skrll cmdide* at pci? dev ? function ? # CMD tech IDE controllers
408 1.1 skrll cypide* at pci? dev ? function ? # Cypress IDE controllers
409 1.1 skrll geodeide* at pci? dev ? function ? # AMD Geode IDE controllers
410 1.1 skrll hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
411 1.1 skrll nside* at pci? dev ? function ? # National Semiconductor IDE controllers
412 1.1 skrll optiide* at pci? dev ? function ? # Opti IDE controllers
413 1.1 skrll pdcide* at pci? dev ? function ? # Promise IDE controllers
414 1.39 skrll pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
415 1.1 skrll rccide* at pci? dev ? function ? # ServerWorks IDE controllers
416 1.39 skrll satalink* at pci? dev ? function ? # SiI SATALink controllers
417 1.1 skrll siside* at pci? dev ? function ? # SiS IDE controllers
418 1.1 skrll slide* at pci? dev ? function ? # Symphony Labs IDE controllers
419 1.39 skrll stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers
420 1.1 skrll viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
421 1.1 skrll
422 1.1 skrll # ATA (IDE) bus support
423 1.1 skrll atabus* at ata?
424 1.1 skrll
425 1.1 skrll # IDE drives
426 1.1 skrll # Flags are used only with controllers that support DMA operations
427 1.1 skrll # and mode settings (e.g. some pciide controllers)
428 1.1 skrll # The lowest order four bits (rightmost digit) of the flags define the PIO
429 1.1 skrll # mode to use, the next set of four bits the DMA mode and the third set the
430 1.1 skrll # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
431 1.1 skrll # to use, and the last bit must be 1 for this setting to be used.
432 1.1 skrll # For DMA and UDMA, 0xf (1111) means 'disable'.
433 1.1 skrll # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
434 1.1 skrll # (0xc=1100, 0xa=1010, 0xf=1111)
435 1.1 skrll # 0x0000 means "use whatever the drive claims to support".
436 1.1 skrll wd* at atabus? drive ? flags 0x0000
437 1.1 skrll
438 1.1 skrll # ATA RAID configuration support, as found on some Promise controllers.
439 1.1 skrll pseudo-device ataraid
440 1.1 skrll ld* at ataraid? vendtype ? unit ?
441 1.1 skrll
442 1.1 skrll # ATAPI bus support
443 1.1 skrll atapibus* at atapi?
444 1.1 skrll
445 1.1 skrll # ATAPI devices
446 1.1 skrll # flags have the same meaning as for IDE drives.
447 1.1 skrll cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
448 1.1 skrll sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
449 1.1 skrll st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
450 1.1 skrll uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
451 1.1 skrll
452 1.1 skrll # Miscellaneous mass storage devices
453 1.1 skrll
454 1.1 skrll # GSC floppy
455 1.39 skrll #fdc* at gsc? # PC floppy controller (WD37C65C)
456 1.1 skrll #fd* at fdc? drive ? # the drives themselves
457 1.1 skrll
458 1.1 skrll # Network Interfaces
459 1.1 skrll
460 1.1 skrll # GSC network interfaces
461 1.1 skrll #medusa* at gsc? # FDDI
462 1.1 skrll ie* at gsc? # old 82C5[89]6 Ethernet, use iee(4)
463 1.1 skrll iee* at gsc? # 82C596 Ethernet
464 1.1 skrll
465 1.1 skrll # PCI network interfaces
466 1.39 skrll an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11)
467 1.39 skrll atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11)
468 1.1 skrll bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet
469 1.1 skrll bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet
470 1.39 skrll ep* at pci? dev ? function ? # 3Com 3c59x
471 1.39 skrll epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
472 1.39 skrll ex* at pci? dev ? function ? # 3Com 90x[BC]
473 1.39 skrll fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
474 1.39 skrll gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet
475 1.39 skrll mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet
476 1.39 skrll ne* at pci? dev ? function ? # NE2000-compatible Ethernet
477 1.39 skrll ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
478 1.39 skrll pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
479 1.39 skrll re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
480 1.39 skrll rtk* at pci? dev ? function ? # Realtek 8129/8139
481 1.39 skrll sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
482 1.39 skrll sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
483 1.39 skrll skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet
484 1.39 skrll sk* at skc? # SysKonnect SK9821 Gigabit Ethernet
485 1.39 skrll ste* at pci? dev ? function ? # Sundance ST-201 Ethernet
486 1.39 skrll stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit
487 1.39 skrll ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet
488 1.39 skrll tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
489 1.39 skrll tlp* at pci? dev ? function ? # DECchip 21x4x and clones
490 1.39 skrll vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
491 1.39 skrll wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b)
492 1.39 skrll wm* at pci? dev ? function ? # Intel 8254x gigabit
493 1.1 skrll
494 1.1 skrll # EISA network interfaces
495 1.1 skrll ep* at eisa? slot ? # 3Com 3c579 Ethernet
496 1.1 skrll tlp* at eisa? slot ? # DEC DE-425 Ethernet
497 1.1 skrll #sh* at eisa? slot ? # Interphase Seahawk 4811 FDDI
498 1.1 skrll #ie* at eisa? slot ? # Intel Ethernet
499 1.1 skrll
500 1.1 skrll # MII/PHY support
501 1.1 skrll acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
502 1.1 skrll amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
503 1.1 skrll bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
504 1.1 skrll brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
505 1.1 skrll dmphy* at mii? phy ? # Davicom DM9101 PHYs
506 1.1 skrll exphy* at mii? phy ? # 3Com internal PHYs
507 1.1 skrll gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
508 1.1 skrll glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
509 1.1 skrll gphyter* at mii? phy ? # NS83861 Gig-E PHY
510 1.1 skrll icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
511 1.1 skrll igphy* at mii? phy ? # Intel IGP01E1000
512 1.1 skrll ikphy* at mii? phy ? # Intel 82563 PHYs
513 1.1 skrll inphy* at mii? phy ? # Intel 82555 PHYs
514 1.1 skrll iophy* at mii? phy ? # Intel 82553 PHYs
515 1.1 skrll lxtphy* at mii? phy ? # Level One LXT-970 PHYs
516 1.1 skrll makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
517 1.1 skrll nsphy* at mii? phy ? # NS83840 PHYs
518 1.39 skrll nsphyter* at mii? phy ? # NS83843 PHYs
519 1.1 skrll pnaphy* at mii? phy ? # generic HomePNA PHYs
520 1.1 skrll qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
521 1.24 rin rgephy* at mii? phy ? # Realtek 8169S/8110S/8211 PHYs
522 1.24 rin rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
523 1.1 skrll sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
524 1.1 skrll tlphy* at mii? phy ? # ThunderLAN PHYs
525 1.1 skrll tqphy* at mii? phy ? # TDK Semiconductor PHYs
526 1.1 skrll ukphy* at mii? phy ? # generic unknown PHYs
527 1.1 skrll urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
528 1.1 skrll
529 1.1 skrll # Audio Devices
530 1.1 skrll
531 1.1 skrll # GSC audio devices
532 1.1 skrll #aone* at gsc? # Audio Type 1 (PSB 2160-N)
533 1.1 skrll harmony* at gsc? # Audio Type 2 (CS4215)
534 1.1 skrll #com* at harmony? # Telephone add-in card
535 1.1 skrll audio* at audiobus?
536 1.1 skrll
537 1.11 christos spkr* at audio? # PC speaker (synthesized)
538 1.9 nat
539 1.1 skrll # USB Controller and Devices
540 1.1 skrll
541 1.1 skrll # PCI USB controllers
542 1.1 skrll ehci* at pci? dev ? function ? # Enhanced Host Controller
543 1.1 skrll ohci* at pci? dev ? function ? # Open Host Controller
544 1.1 skrll uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
545 1.1 skrll
546 1.1 skrll # USB bus support
547 1.1 skrll usb* at ehci?
548 1.1 skrll usb* at ohci?
549 1.1 skrll usb* at uhci?
550 1.1 skrll
551 1.1 skrll # USB Hubs
552 1.1 skrll uhub* at usb?
553 1.1 skrll uhub* at uhub? port ?
554 1.1 skrll
555 1.1 skrll # USB HID device
556 1.1 skrll uhidev* at uhub? port ? configuration ? interface ?
557 1.1 skrll
558 1.1 skrll # USB Mice
559 1.1 skrll ums* at uhidev? reportid ?
560 1.1 skrll wsmouse* at ums? mux 0
561 1.1 skrll
562 1.1 skrll # USB eGalax touch-panel
563 1.1 skrll uep* at uhub? port ?
564 1.1 skrll wsmouse* at uep? mux 0
565 1.1 skrll
566 1.1 skrll # USB Keyboards
567 1.1 skrll ukbd* at uhidev? reportid ?
568 1.1 skrll wskbd* at ukbd? console ? mux 1
569 1.1 skrll
570 1.1 skrll # USB serial adapter
571 1.1 skrll ucycom* at uhidev? reportid ?
572 1.1 skrll
573 1.1 skrll # USB Generic HID devices
574 1.1 skrll uhid* at uhidev? reportid ?
575 1.1 skrll
576 1.1 skrll # USB LCDs and USB-VGA adaptors
577 1.1 skrll udl* at uhub? port ? # DisplayLink DL-1x0/1x5
578 1.1 skrll wsdisplay* at udl?
579 1.1 skrll
580 1.1 skrll # USB Printer
581 1.1 skrll ulpt* at uhub? port ? configuration ? interface ?
582 1.1 skrll
583 1.1 skrll # USB Modem
584 1.1 skrll umodem* at uhub? port ? configuration ?
585 1.1 skrll ucom* at umodem?
586 1.1 skrll
587 1.1 skrll # Option N.V. Wireless WAN modems
588 1.1 skrll uhso* at uhub? port ? configuration ?
589 1.1 skrll
590 1.1 skrll # USB Mass Storage
591 1.1 skrll umass* at uhub? port ? configuration ? interface ?
592 1.1 skrll
593 1.1 skrll # USB audio
594 1.1 skrll uaudio* at uhub? port ? configuration ?
595 1.1 skrll
596 1.1 skrll # USB MIDI
597 1.1 skrll umidi* at uhub? port ? configuration ?
598 1.4 uebayasi midi* at midibus?
599 1.1 skrll
600 1.1 skrll # USB IrDA
601 1.1 skrll # USB-IrDA bridge spec
602 1.1 skrll uirda* at uhub? port ? configuration ? interface ?
603 1.1 skrll irframe* at uirda?
604 1.1 skrll
605 1.1 skrll stuirda* at uhub? port ? configuration ? interface ?
606 1.1 skrll irframe* at stuirda?
607 1.1 skrll
608 1.1 skrll # SigmaTel STIr4200 USB/IrDA Bridge
609 1.1 skrll ustir* at uhub? port ?
610 1.1 skrll irframe* at ustir?
611 1.1 skrll
612 1.1 skrll # USB Ethernet adapters
613 1.1 skrll aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
614 1.1 skrll axe* at uhub? port ? # ASIX AX88172 based adapters
615 1.1 skrll cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
616 1.1 skrll cue* at uhub? port ? # CATC USB-EL1201A based adapters
617 1.1 skrll kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
618 1.20 rin mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
619 1.1 skrll udav* at uhub? port ? # Davicom DM9601 based adapters
620 1.24 rin ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
621 1.1 skrll url* at uhub? port ? # Realtek RTL8150L based adapters
622 1.1 skrll
623 1.1 skrll # USB 802.11 adapters
624 1.1 skrll atu* at uhub? port ? # Atmel AT76C50XX based adapters
625 1.1 skrll ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
626 1.1 skrll rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g
627 1.1 skrll zyd* at uhub? port ? # Zydas ZD1211
628 1.1 skrll
629 1.1 skrll # Prolific PL2301/PL2302 host-to-host adapter
630 1.1 skrll upl* at uhub? port ?
631 1.1 skrll
632 1.1 skrll # Serial adapters
633 1.1 skrll ubsa* at uhub? port ? # Belkin serial adapter
634 1.1 skrll ucom* at ubsa? portno ?
635 1.1 skrll
636 1.39 skrll uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter
637 1.1 skrll ucom* at uchcom? portno ?
638 1.1 skrll
639 1.1 skrll uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
640 1.1 skrll ucom* at uftdi? portno ?
641 1.1 skrll
642 1.1 skrll uipaq* at uhub? port ? # iPAQ PDAs
643 1.1 skrll ucom* at uipaq? portno ?
644 1.1 skrll
645 1.1 skrll umct* at uhub? port ? # MCT USB-RS232 serial adapter
646 1.1 skrll ucom* at umct? portno ?
647 1.1 skrll
648 1.39 skrll uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
649 1.1 skrll ucom* at uplcom? portno ?
650 1.1 skrll
651 1.1 skrll uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter
652 1.1 skrll ucom* at uslsa? portno ?
653 1.1 skrll
654 1.39 skrll uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
655 1.1 skrll ucom* at uvscom? portno ?
656 1.1 skrll
657 1.1 skrll # RIM BlackBerry
658 1.1 skrll uberry* at uhub? port ?
659 1.1 skrll
660 1.1 skrll # USB Handspring Visor
661 1.1 skrll uvisor* at uhub? port ?
662 1.1 skrll ucom* at uvisor?
663 1.1 skrll
664 1.1 skrll # Kyocera AIR-EDGE PHONE
665 1.1 skrll ukyopon* at uhub? port ?
666 1.1 skrll ucom* at ukyopon? portno ?
667 1.1 skrll
668 1.1 skrll # USB scanners that use SCSI emulation, e.g., HP5300
669 1.1 skrll usscanner* at uhub? port ?
670 1.1 skrll
671 1.1 skrll # Topfield TF5000PVR range of DVB recorders
672 1.1 skrll utoppy* at uhub? port ?
673 1.1 skrll
674 1.1 skrll # D-Link DSB-R100 USB radio
675 1.1 skrll udsbr* at uhub? port ?
676 1.1 skrll radio* at udsbr?
677 1.1 skrll
678 1.1 skrll # USB Generic driver
679 1.1 skrll ugen* at uhub? port ?
680 1.1 skrll
681 1.1 skrll # USB 3G datacards
682 1.12 christos umodeswitch* at uhub? port ?
683 1.1 skrll u3g* at uhub? port ?
684 1.1 skrll ucom* at u3g?
685 1.1 skrll
686 1.1 skrll # USB generic serial port (e.g., data over cellular)
687 1.1 skrll ugensa* at uhub? port ?
688 1.1 skrll ucom* at ugensa?
689 1.1 skrll
690 1.1 skrll # Pseudo-Devices
691 1.1 skrll
692 1.1 skrll pseudo-device crypto # /dev/crypto device
693 1.39 skrll pseudo-device swcrypto # software crypto implementation
694 1.1 skrll
695 1.1 skrll # disk/mass storage pseudo-devices
696 1.39 skrll pseudo-device ccd # concatenated/striped disk devices
697 1.39 skrll #pseudo-device cgd # cryptographic disk devices
698 1.39 skrll pseudo-device raid # RAIDframe disk driver
699 1.1 skrll options RAID_AUTOCONFIG # auto-configuration of RAID components
700 1.1 skrll #Options to enable various other RAIDframe RAID types.
701 1.1 skrll #options RF_INCLUDE_EVENODD=1
702 1.1 skrll #options RF_INCLUDE_RAID5_RS=1
703 1.1 skrll #options RF_INCLUDE_PARITYLOGGING=1
704 1.1 skrll #options RF_INCLUDE_CHAINDECLUSTER=1
705 1.1 skrll #options RF_INCLUDE_INTERDECLUSTER=1
706 1.1 skrll #options RF_INCLUDE_PARITY_DECLUSTERING=1
707 1.1 skrll #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
708 1.1 skrll pseudo-device fss # file system snapshot device
709 1.1 skrll pseudo-device md # memory disk device (ramdisk)
710 1.1 skrll pseudo-device vnd # disk-like interface to files
711 1.1 skrll #options VND_COMPRESSION # compressed vnd(4)
712 1.1 skrll pseudo-device putter # for puffs and pud
713 1.1 skrll
714 1.1 skrll # network pseudo-devices
715 1.1 skrll pseudo-device bpfilter # Berkeley packet filter
716 1.27 sevan pseudo-device carp # Common Address Redundancy Protocol
717 1.19 maxv pseudo-device npf # NPF packet filter
718 1.1 skrll pseudo-device loop # network loopback
719 1.1 skrll pseudo-device ppp # Point-to-Point Protocol
720 1.1 skrll pseudo-device pppoe # PPP over Ethernet (RFC 2516)
721 1.1 skrll pseudo-device sl # Serial Line IP
722 1.1 skrll pseudo-device irframetty # IrDA frame line discipline
723 1.1 skrll pseudo-device tun # network tunneling over tty
724 1.1 skrll pseudo-device tap # virtual Ethernet
725 1.1 skrll pseudo-device gre # generic L3 over IP tunnel
726 1.1 skrll pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
727 1.1 skrll #pseudo-device faith # IPv[46] tcp relay translation i/f
728 1.1 skrll pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
729 1.1 skrll pseudo-device vlan # IEEE 802.1q encapsulation
730 1.1 skrll pseudo-device bridge # simple inter-network bridging
731 1.36 roy pseudo-device vether # Virtual Ethernet for bridge
732 1.1 skrll pseudo-device agr # IEEE 802.3ad link aggregation
733 1.1 skrll
734 1.1 skrll #
735 1.1 skrll # accept filters
736 1.1 skrll pseudo-device accf_data # "dataready" accept filter
737 1.1 skrll pseudo-device accf_http # "httpready" accept filter
738 1.1 skrll
739 1.1 skrll # miscellaneous pseudo-devices
740 1.1 skrll pseudo-device pty # pseudo-terminals
741 1.1 skrll pseudo-device sequencer # MIDI sequencer
742 1.1 skrll # rnd works; RND_COM does not on port hppa yet.
743 1.1 skrll #options RND_COM # use "com" randomness as well (BROKEN)
744 1.1 skrll pseudo-device clockctl # user control of clock subsystem
745 1.41 riastrad pseudo-device swwdog # software watchdog timer -- swwdog(4)
746 1.1 skrll
747 1.1 skrll # a pseudo device needed for Coda # also needs CODA (above)
748 1.1 skrll pseudo-device vcoda # coda minicache <-> venus comm.
749 1.1 skrll
750 1.1 skrll # wscons pseudo-devices
751 1.1 skrll pseudo-device wsmux # mouse & keyboard multiplexor
752 1.1 skrll pseudo-device wsfont
753 1.1 skrll pseudo-device ksyms # /dev/ksyms
754 1.1 skrll
755 1.1 skrll # userland interface to drivers, including autoconf and properties retrieval
756 1.1 skrll pseudo-device drvctl
757 1.1 skrll
758 1.27 sevan include "dev/veriexec.config"
759