GENERIC revision 1.117 1 1.117 mrg # $NetBSD: GENERIC,v 1.117 2010/02/13 08:54:58 mrg Exp $
2 1.45 gmcgarry #
3 1.45 gmcgarry # GENERIC machine description file
4 1.53 tsutsui #
5 1.45 gmcgarry # This machine description file is used to generate the default NetBSD
6 1.45 gmcgarry # kernel. The generic kernel does not include all options, subsystems
7 1.45 gmcgarry # and device drivers, but should be useful for most applications.
8 1.45 gmcgarry #
9 1.45 gmcgarry # The machine description file can be customised for your specific
10 1.45 gmcgarry # machine to reduce the kernel size and improve its performance.
11 1.45 gmcgarry #
12 1.45 gmcgarry # For further information on compiling NetBSD kernels, see the config(8)
13 1.45 gmcgarry # man page.
14 1.45 gmcgarry #
15 1.45 gmcgarry # For further information on hardware support for this architecture, see
16 1.45 gmcgarry # the intro(4) man page. For further information about kernel options
17 1.45 gmcgarry # for this architecture, see the options(4) man page. For an explanation
18 1.45 gmcgarry # of each device driver in this file see the section 4 man page for the
19 1.45 gmcgarry # device.
20 1.1 eeh
21 1.53 tsutsui include "arch/sparc64/conf/std.sparc64"
22 1.53 tsutsui
23 1.53 tsutsui options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.53 tsutsui
25 1.117 mrg #ident "GENERIC-$Revision: 1.117 $"
26 1.53 tsutsui
27 1.53 tsutsui maxusers 64
28 1.53 tsutsui
29 1.53 tsutsui ## System kernel configuration. See options(4) for more detail.
30 1.53 tsutsui
31 1.53 tsutsui
32 1.53 tsutsui # Options for variants of the Sun SPARC architecure.
33 1.53 tsutsui # We currently support three architecture types; at least one is required.
34 1.53 tsutsui options SUN4U # sun4u - UltraSPARC
35 1.53 tsutsui #options BLINK # blink the system LED
36 1.53 tsutsui
37 1.53 tsutsui #### System options that are the same for all ports
38 1.53 tsutsui
39 1.53 tsutsui ## Root device configuration: change the ?'s if you are going to use a
40 1.53 tsutsui ## nonstandard root partition (other than where the kernel is booted from)
41 1.53 tsutsui ## and/or nonstandard root type (not ffs or nfs). Normally this can be
42 1.53 tsutsui ## automagically determined at boot time.
43 1.53 tsutsui
44 1.53 tsutsui config netbsd root on ? type ?
45 1.53 tsutsui
46 1.53 tsutsui ## UVM options.
47 1.53 tsutsui #options UVM_PAGE_TRKOWN
48 1.53 tsutsui #options UVMHIST
49 1.53 tsutsui #options UVMHIST_PRINT # Loud!
50 1.53 tsutsui
51 1.53 tsutsui ## System call tracing (see ktrace(1)).
52 1.53 tsutsui options KTRACE
53 1.23 hubertf
54 1.53 tsutsui ## Collect statistics on kernel malloc's and free's. This does have a
55 1.53 tsutsui ## significant performance hit on slower machines, so it is intended for
56 1.53 tsutsui ## diagnostic use only.
57 1.53 tsutsui #options KMEMSTATS
58 1.43 thorpej
59 1.53 tsutsui ## System V compatible IPC subsystem. (msgctl(2), semctl(2), and shmctl(2))
60 1.53 tsutsui options SYSVMSG # System V message queues
61 1.53 tsutsui options SYSVSEM # System V semaphores
62 1.53 tsutsui options SYSVSHM # System V shared memory
63 1.53 tsutsui options P1003_1B_SEMAPHORE # p1003.1b semaphore support
64 1.1 eeh
65 1.41 eeh
66 1.53 tsutsui ## Loadable kernel module support; still under development.
67 1.53 tsutsui
68 1.53 tsutsui options USERCONF # userconf(4) support
69 1.53 tsutsui #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
70 1.53 tsutsui options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
71 1.53 tsutsui
72 1.53 tsutsui # Enable experimental buffer queue strategy for better responsiveness under
73 1.53 tsutsui # high disk I/O load. Use it with caution - it's not proven to be stable yet.
74 1.53 tsutsui #options BUFQ_READPRIO
75 1.53 tsutsui #options BUFQ_PRIOCSCAN
76 1.53 tsutsui
77 1.53 tsutsui ## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
78 1.53 tsutsui options NFS_BOOT_BOOTPARAM
79 1.53 tsutsui #options NFS_BOOT_BOOTP
80 1.53 tsutsui options NFS_BOOT_DHCP
81 1.53 tsutsui
82 1.53 tsutsui #### Debugging options
83 1.53 tsutsui
84 1.53 tsutsui ## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
85 1.53 tsutsui ## serial console break or keyboard reset, where the PROM would normally
86 1.53 tsutsui ## intercept. DDB_HISTORY_SIZE adds up/down arrow command history.
87 1.53 tsutsui # we enable DDB in GENERIC for now.
88 1.53 tsutsui options DDB # kernel dynamic debugger
89 1.53 tsutsui options DDB_HISTORY_SIZE=100 # enable history editing in DDB
90 1.91 martin options DDB_VERBOSE_HELP # enable verbose online help
91 1.62 jnemeth #options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic'
92 1.53 tsutsui
93 1.53 tsutsui ## You may also use gdb, on another computer connected to this machine over
94 1.53 tsutsui ## a serial port.
95 1.71 martin # options KGDB
96 1.71 martin # options KGDB_DEVNAME="\"sabtty1\"" # kgdb device name
97 1.71 martin # options KGDB_DEVRATE=38400 # baud rate (defaults to 9600)
98 1.53 tsutsui
99 1.53 tsutsui
100 1.53 tsutsui ## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
101 1.53 tsutsui ## such that gdb(1) can be used on a kernel coredump.
102 1.41 eeh
103 1.50 martin #makeoptions DEBUG="-g"
104 1.53 tsutsui
105 1.53 tsutsui
106 1.53 tsutsui ## Adds code to the kernel that does internal consistency checks, and will
107 1.53 tsutsui ## cause the kernel to panic if corruption of internal data structures
108 1.53 tsutsui ## is detected.
109 1.53 tsutsui #options DIAGNOSTIC # extra kernel sanity checking
110 1.53 tsutsui
111 1.53 tsutsui ## Enable (possibly expensive) debugging code that may also display messages
112 1.53 tsutsui ## on the system console
113 1.41 eeh #options DEBUG
114 1.53 tsutsui #options LOCKDEBUG
115 1.41 eeh #options SYSCALL_DEBUG
116 1.53 tsutsui
117 1.53 tsutsui ## Make SCSI error messages more verbose when explaining their meanings.
118 1.53 tsutsui options SCSIVERBOSE
119 1.53 tsutsui options PCIVERBOSE
120 1.53 tsutsui options MIIVERBOSE # verbose PHY autoconfig messages
121 1.53 tsutsui #options PCI_CONFIG_DUMP # verbosely dump PCI config space
122 1.53 tsutsui
123 1.53 tsutsui ## `INSECURE' turns off the kernel security level (securelevel = 0 always).
124 1.53 tsutsui ## This allows writing to /dev/mem, loading kernel modules while multi-user,
125 1.53 tsutsui ## and other insecurities good only for development work. Do not use this
126 1.53 tsutsui ## option on a production machine.
127 1.53 tsutsui #options INSECURE
128 1.53 tsutsui
129 1.53 tsutsui ## `FDSCRIPTS' allows non-readable but executable scripts by providing a
130 1.53 tsutsui ## pre-opened opaque file to the script interpreter. `SETUIDSCRIPTS',
131 1.53 tsutsui ## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
132 1.53 tsutsui ## opaque file mechanism. Perl calls this "secure setuid scripts."
133 1.53 tsutsui
134 1.53 tsutsui #options FDSCRIPTS
135 1.53 tsutsui #options SETUIDSCRIPTS
136 1.53 tsutsui
137 1.53 tsutsui ## Options for compatibility with previous releases foreign system binaries.
138 1.53 tsutsui ## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
139 1.53 tsutsui ## additional user-level utilities or system configuration files. See
140 1.53 tsutsui ## compat_sunos(8) and compat_svr4(8).
141 1.53 tsutsui
142 1.53 tsutsui options COMPAT_43 # 4.3BSD system interfaces
143 1.53 tsutsui options COMPAT_09 # NetBSD 0.9 binary compatibility
144 1.53 tsutsui options COMPAT_10 # NetBSD 1.0 binary compatibility
145 1.53 tsutsui options COMPAT_11 # NetBSD 1.1 binary compatibility
146 1.53 tsutsui options COMPAT_12 # NetBSD 1.2 binary compatibility
147 1.53 tsutsui options COMPAT_13 # NetBSD 1.3 binary compatibility
148 1.53 tsutsui options COMPAT_14 # NetBSD 1.4 binary compatibility
149 1.53 tsutsui options COMPAT_15 # NetBSD 1.5 binary compatibility
150 1.53 tsutsui options COMPAT_16 # NetBSD 1.6 binary compatibility
151 1.53 tsutsui options COMPAT_20 # NetBSD 2.0 binary compatibility
152 1.53 tsutsui options COMPAT_30 # NetBSD 3.0 binary compatibility
153 1.100 tsutsui options COMPAT_40 # NetBSD 4.0 binary compatibility
154 1.109 mrg options COMPAT_50 # NetBSD 5.0 compatibility.
155 1.53 tsutsui options COMPAT_SUNOS # SunOS 4.x binary compatibility
156 1.53 tsutsui options COMPAT_SVR4 # SunOS 5.x binary compatibility
157 1.53 tsutsui options COMPAT_SVR4_32 # SunOS 5.x 32-bit binary compatibility -- 64-bit only
158 1.53 tsutsui options COMPAT_NETBSD32 # NetBSD/sparc binary compatibility -- 64-bit only
159 1.53 tsutsui options EXEC_AOUT # execve(2) support for a.out binaries
160 1.53 tsutsui options EXEC_ELF32 # Exec module for SunOS 5.x binaries.
161 1.53 tsutsui
162 1.53 tsutsui #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
163 1.53 tsutsui options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
164 1.53 tsutsui
165 1.53 tsutsui ## File systems. You probably need at least one of FFS or NFS.
166 1.53 tsutsui file-system FFS # Berkeley Fast Filesystem
167 1.53 tsutsui file-system NFS # Sun NFS-compatible filesystem client
168 1.53 tsutsui file-system KERNFS # kernel data-structure filesystem
169 1.53 tsutsui file-system NULLFS # NULL layered filesystem
170 1.53 tsutsui file-system OVERLAY # overlay file system
171 1.53 tsutsui file-system MFS # memory-based filesystem
172 1.53 tsutsui file-system FDESC # user file descriptor filesystem
173 1.53 tsutsui file-system UMAPFS # uid/gid remapping filesystem
174 1.53 tsutsui file-system LFS # Log-based filesystem (still experimental)
175 1.114 pooka file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
176 1.53 tsutsui file-system PROCFS # /proc
177 1.53 tsutsui file-system CD9660 # ISO 9660 + Rock Ridge file system
178 1.53 tsutsui file-system UNION # union file system
179 1.53 tsutsui file-system MSDOSFS # MS-DOS FAT filesystem(s).
180 1.53 tsutsui file-system PTYFS # /dev/pts/N support
181 1.53 tsutsui file-system SMBFS # experimental - CIFS; also needs nsmb (below)
182 1.77 jmmv file-system TMPFS # Efficient memory file-system
183 1.53 tsutsui #file-system UDF # experimental - OSTA UDF CD/DVD file-system
184 1.53 tsutsui
185 1.53 tsutsui ## File system options.
186 1.53 tsutsui options NFSSERVER # Sun NFS-compatible filesystem server
187 1.53 tsutsui options QUOTA # FFS quotas
188 1.53 tsutsui #options FFS_EI # FFS Endian Independent support
189 1.101 simonb options WAPBL # File system journaling support - Experimental
190 1.53 tsutsui #options FFS_NO_SNAPSHOT # No FFS snapshot support
191 1.53 tsutsui
192 1.53 tsutsui ## Network protocol support. In most environments, INET is required.
193 1.53 tsutsui options INET # IP (Internet Protocol) v4
194 1.53 tsutsui options INET6 # IPV6
195 1.53 tsutsui #options IPSEC # IP security
196 1.53 tsutsui #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
197 1.53 tsutsui #options IPSEC_NAT_T # IPsec NAT traversal (NAT-T)
198 1.53 tsutsui #options IPSEC_DEBUG # debug for IP security
199 1.53 tsutsui #options GATEWAY # packet forwarding ("router switch")
200 1.53 tsutsui options MROUTING # packet forwarding of multicast packets
201 1.53 tsutsui options PIM # Protocol Independent Multicast
202 1.53 tsutsui #options DIRECTED_BROADCAST # allow broadcasts through routers
203 1.88 adrianp #options ISO,TPIP # OSI networking
204 1.88 adrianp #options EON # OSI tunneling over IP
205 1.53 tsutsui options NETATALK # AppleTalk (over Ethernet) protocol
206 1.53 tsutsui options NTP # Network Time Protocol in-kernel support
207 1.53 tsutsui #options PPS_SYNC # Add serial line synchronization for NTP
208 1.53 tsutsui options PFIL_HOOKS # Add pfil(9) hooks, intended for custom LKMs.
209 1.53 tsutsui options IPFILTER_LOG # Add ipmon(8) logging for ipfilter device
210 1.64 christos options IPFILTER_LOOKUP # ippool(8) support
211 1.53 tsutsui #options IPFILTER_DEFAULT_BLOCK # block all packets by default
212 1.53 tsutsui options PPP_BSDCOMP # Add BSD compression to ppp device
213 1.53 tsutsui options PPP_DEFLATE # Add deflate (libz) compression to ppp device
214 1.53 tsutsui options PPP_FILTER # Add active filters for ppp (via bpf)
215 1.53 tsutsui #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
216 1.53 tsutsui
217 1.53 tsutsui #options ALTQ # Manipulate network interfaces' output queues
218 1.53 tsutsui #options ALTQ_BLUE # Stochastic Fair Blue
219 1.53 tsutsui #options ALTQ_CBQ # Class-Based Queueing
220 1.53 tsutsui #options ALTQ_CDNR # Diffserv Traffic Conditioner
221 1.53 tsutsui #options ALTQ_FIFOQ # First-In First-Out Queue
222 1.53 tsutsui #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
223 1.53 tsutsui #options ALTQ_HFSC # Hierarchical Fair Service Curve
224 1.53 tsutsui #options ALTQ_LOCALQ # Local queueing discipline
225 1.53 tsutsui #options ALTQ_PRIQ # Priority Queueing
226 1.53 tsutsui #options ALTQ_RED # Random Early Detection
227 1.53 tsutsui #options ALTQ_RIO # RED with IN/OUT
228 1.53 tsutsui #options ALTQ_WFQ # Weighted Fair Queueing
229 1.53 tsutsui
230 1.53 tsutsui
231 1.53 tsutsui #### Main bus and CPU .. all systems.
232 1.53 tsutsui mainbus0 at root
233 1.53 tsutsui cpu0 at mainbus0
234 1.53 tsutsui
235 1.53 tsutsui #### Bus types found on SPARC systems.
236 1.53 tsutsui
237 1.53 tsutsui sbus* at mainbus0 # SBus-based systems
238 1.53 tsutsui psycho* at mainbus0 # PCI-based systems
239 1.117 mrg schizo* at mainbus?
240 1.53 tsutsui pci* at psycho?
241 1.117 mrg pci* at schizo?
242 1.53 tsutsui pci* at ppb?
243 1.53 tsutsui ppb* at pci? # `APB' support.
244 1.53 tsutsui ebus* at pci? # ebus devices
245 1.53 tsutsui # XXX 'puc's aren't really bridges, but there's no better place for them here
246 1.53 tsutsui puc* at pci? dev ? function ? # PCI "universal" comm. cards
247 1.53 tsutsui
248 1.53 tsutsui #### Standard system devices -- all required for a given architecture
249 1.53 tsutsui
250 1.53 tsutsui ## PROM console driver -- if all else fails
251 1.53 tsutsui pcons0 at mainbus0 # PROM console
252 1.53 tsutsui
253 1.53 tsutsui ## Auxiliary system registers -- We use the OBP for power management
254 1.53 tsutsui auxio* at ebus? # auxio registers
255 1.53 tsutsui auxio* at sbus? slot ? offset ? # auxio registers
256 1.53 tsutsui
257 1.53 tsutsui # We also need:
258 1.53 tsutsui bpp* at sbus? slot ? offset ? # parallel port
259 1.53 tsutsui lpt* at ebus? # parallel port
260 1.53 tsutsui
261 1.74 tsutsui ## Mostek clock found on sbus on Ultra-1,2 systems
262 1.74 tsutsui ## and found on ebus on Ultra-5 and other systems.
263 1.53 tsutsui clock* at sbus? slot ? offset ?
264 1.53 tsutsui clock* at ebus?
265 1.74 tsutsui
266 1.74 tsutsui ## DS1287 compatible clock found on ebus on Netra X1 and other systems.
267 1.53 tsutsui rtc* at ebus?
268 1.53 tsutsui
269 1.53 tsutsui ## Timer chip found on 4/300, sun4c, sun4m and (some) sun4u systems.
270 1.53 tsutsui timer* at mainbus0 # sun4c
271 1.53 tsutsui
272 1.53 tsutsui #### Serial port configuration
273 1.53 tsutsui
274 1.53 tsutsui ## Zilog 8530 serial chips. Each has two-channels.
275 1.53 tsutsui ## zs0 is ttya and ttyb. zs1 is the keyboard and mouse.
276 1.53 tsutsui zs* at sbus? slot ? offset ?
277 1.53 tsutsui zstty* at zs? channel ? # ttya
278 1.53 tsutsui kbd0 at zstty?
279 1.53 tsutsui ms0 at zstty?
280 1.53 tsutsui
281 1.53 tsutsui ## PCI machines have serial ports:
282 1.53 tsutsui ## Siemens SAB82532 controller: ttya and ttyb (`su'; sab)
283 1.53 tsutsui ## Part of NS PC87332VLJ Super I/O controller: kbd/mouse (`se'; com)
284 1.53 tsutsui
285 1.53 tsutsui ## The SAB82532 controller has two serial ports
286 1.53 tsutsui sab* at ebus? # ttya/ttyb
287 1.53 tsutsui sabtty* at sab? channel ?
288 1.53 tsutsui
289 1.53 tsutsui ## Part of a PC87332VLJ
290 1.53 tsutsui com* at ebus? # `com' driver for `su'
291 1.53 tsutsui kbd0 at com? # keyboard
292 1.53 tsutsui ms0 at com? # mouse
293 1.53 tsutsui
294 1.53 tsutsui ## Magma Serial/Parallel driver (not tested)
295 1.53 tsutsui #magma* at sbus? slot ? offset ?
296 1.53 tsutsui #mtty* at magma?
297 1.53 tsutsui #mbpp* at magma?
298 1.53 tsutsui
299 1.108 hauke ## SUNW,spif Serial/Parallel driver
300 1.108 hauke spif* at sbus? slot ? offset ?
301 1.108 hauke stty* at spif?
302 1.108 hauke sbpp* at spif?
303 1.53 tsutsui
304 1.53 tsutsui ## PCI serial interfaces
305 1.53 tsutsui com* at puc? port ? # 16x50s on "universal" comm boards
306 1.53 tsutsui cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
307 1.53 tsutsui cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
308 1.53 tsutsui
309 1.61 jnemeth # PCI cryptographic devices
310 1.61 jnemeth hifn* at pci? dev ? function ? # Hifn 7755/7811/795x
311 1.61 jnemeth ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x
312 1.61 jnemeth
313 1.53 tsutsui
314 1.53 tsutsui #### Disk controllers and disks
315 1.53 tsutsui
316 1.53 tsutsui ## The following flags may be set for the NCR53c94 based esp driver:
317 1.53 tsutsui ## bits 0-7: disable disconnect/reselect for the corresponding target
318 1.53 tsutsui ## bits 8-15: disable synchronous negotiation for target [bit-8]
319 1.53 tsutsui ## bits 16-23: disable tagged queuing for target [bit-16]
320 1.53 tsutsui
321 1.53 tsutsui ## sun4u on-board SCSI, and FSBE/S SBus SCSI cards, an NCR53c94 or
322 1.53 tsutsui ## equivalent behind an LSI Logic DMA controller
323 1.53 tsutsui
324 1.53 tsutsui dma* at sbus? slot ? offset ? # SBus
325 1.53 tsutsui esp* at dma? # SBus
326 1.53 tsutsui
327 1.53 tsutsui esp* at sbus? slot ? offset ?
328 1.53 tsutsui isp* at sbus? slot ? offset ?
329 1.53 tsutsui isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
330 1.53 tsutsui siop* at pci? # 53C8xx ("glm" compatible)
331 1.53 tsutsui esiop* at pci? # 53C875 and newer ("glm" compatible)
332 1.53 tsutsui
333 1.53 tsutsui # PCI SCSI controllers
334 1.53 tsutsui # UT marks untested.
335 1.53 tsutsui adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
336 1.53 tsutsui adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI UT
337 1.53 tsutsui ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
338 1.53 tsutsui bha* at pci? dev ? function ? # BusLogic 9xx SCSI UT
339 1.53 tsutsui dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID UT
340 1.53 tsutsui iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
341 1.53 tsutsui njs* at pci? dev ? function ? # Workbit NinjaSCSI-32
342 1.53 tsutsui pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
343 1.53 tsutsui trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
344 1.53 tsutsui
345 1.53 tsutsui scsibus* at scsi?
346 1.53 tsutsui
347 1.53 tsutsui ## These entries find devices on all SCSI busses and assign
348 1.53 tsutsui ## unit numbers dynamically.
349 1.53 tsutsui sd* at scsibus? target ? lun ? # SCSI disks
350 1.53 tsutsui st* at scsibus? target ? lun ? # SCSI tapes
351 1.53 tsutsui cd* at scsibus? target ? lun ? # SCSI CD-ROMs
352 1.53 tsutsui ch* at scsibus? target ? lun ? # SCSI changer devices
353 1.53 tsutsui ss* at scsibus? target ? lun ? # SCSI scanners
354 1.53 tsutsui ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE devices
355 1.53 tsutsui uk* at scsibus? target ? lun ? # unknown SCSI
356 1.53 tsutsui
357 1.53 tsutsui # IDE and related devices
358 1.53 tsutsui # PCI IDE controllers - see pciide(4) for supported hardware.
359 1.53 tsutsui # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
360 1.53 tsutsui # how to set up DMA modes for this chip. This may work, or may cause
361 1.53 tsutsui # a machine hang with some controllers.
362 1.53 tsutsui pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
363 1.53 tsutsui acardide* at pci? dev ? function ? # Acard IDE controllers
364 1.53 tsutsui aceride* at pci? dev ? function ? # Acer Lab IDE controllers
365 1.53 tsutsui artsata* at pci? dev ? function ? # Intel i31244 SATA controller
366 1.53 tsutsui cmdide* at pci? dev ? function ? # CMD tech IDE controllers
367 1.53 tsutsui cypide* at pci? dev ? function ? # Cypress IDE controllers
368 1.53 tsutsui hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
369 1.53 tsutsui optiide* at pci? dev ? function ? # Opti IDE controllers
370 1.53 tsutsui pdcide* at pci? dev ? function ? # Promise IDE controllers
371 1.53 tsutsui pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
372 1.53 tsutsui satalink* at pci? dev ? function ? # SiI SATALink controllers
373 1.53 tsutsui siside* at pci? dev ? function ? # SiS IDE controllers
374 1.53 tsutsui slide* at pci? dev ? function ? # Symphony Labs IDE controllers
375 1.53 tsutsui viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
376 1.53 tsutsui
377 1.53 tsutsui # ATA (IDE) bus support
378 1.53 tsutsui atabus* at ata?
379 1.53 tsutsui atapibus* at atapi?
380 1.53 tsutsui
381 1.53 tsutsui # IDE drives
382 1.53 tsutsui # Flags are used only with controllers that support DMA operations
383 1.53 tsutsui # and mode settings (e.g. some pciide controllers)
384 1.53 tsutsui # The lowest order four bits (rightmost digit) of the flags define the PIO
385 1.53 tsutsui # mode to use, the next set of four bits the DMA mode and the third set the
386 1.53 tsutsui # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
387 1.53 tsutsui # to use, and the last bit must be 1 for this setting to be used.
388 1.53 tsutsui # For DMA and UDMA, 0xf (1111) means 'disable'.
389 1.53 tsutsui # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
390 1.53 tsutsui # (0xc=1100, 0xa=1010, 0xf=1111)
391 1.53 tsutsui # 0x0000 means "use whatever the drive claims to support".
392 1.53 tsutsui
393 1.53 tsutsui ## Disable UDMA 4 which causes data corruption on the Acer Labs
394 1.53 tsutsui ## chipset on Sun Blade 100 and Netra X1 machines.
395 1.53 tsutsui wd* at atabus? drive ? flags 0x0000
396 1.53 tsutsui
397 1.53 tsutsui cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
398 1.53 tsutsui sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
399 1.53 tsutsui uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
400 1.53 tsutsui
401 1.53 tsutsui # RAID controllers and devices (untested)
402 1.53 tsutsui cac* at pci? dev ? function ? # Compaq PCI array controllers
403 1.53 tsutsui mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
404 1.53 tsutsui twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
405 1.53 tsutsui
406 1.53 tsutsui ld* at cac? unit ? # logical disk devices
407 1.53 tsutsui ld* at twe? unit ?
408 1.53 tsutsui ld* at mlx? unit ?
409 1.53 tsutsui
410 1.53 tsutsui ## Floppy controller and drive found on SPARCstations.
411 1.53 tsutsui
412 1.53 tsutsui # need share with the sparc, and everyone else. needs to use auxio.
413 1.53 tsutsui # actually, the ebus version has (will have) direct access to it's AUXIO
414 1.53 tsutsui # register space (it is mapped in to fdthree not auxio).
415 1.70 jnemeth fdc0 at sbus? slot ? offset ? # SUNW,fdtwo
416 1.70 jnemeth #fdc0 at ebus? # fdthree, EXPERIMENTAL
417 1.70 jnemeth fd* at fdc0 # the drive itself
418 1.53 tsutsui
419 1.102 tls #
420 1.102 tls # accept filters
421 1.102 tls pseudo-device accf_data # "dataready" accept filter
422 1.102 tls pseudo-device accf_http # "httpready" accept filter
423 1.102 tls
424 1.53 tsutsui ## A disk-like interface to files. Can be used to create floppy, CD,
425 1.53 tsutsui ## miniroot images, etc.
426 1.53 tsutsui
427 1.53 tsutsui pseudo-device vnd
428 1.53 tsutsui #options VND_COMPRESSION # compressed vnd(4)
429 1.53 tsutsui
430 1.53 tsutsui ## Concatenated and striped disks; with this, you can create a software-based
431 1.53 tsutsui ## disk array similar to a "RAID 0" setup. See ccd(4).
432 1.53 tsutsui
433 1.53 tsutsui pseudo-device ccd 4
434 1.53 tsutsui
435 1.53 tsutsui ## Cryptographic disk devices. See cgd(4).
436 1.53 tsutsui
437 1.53 tsutsui #pseudo-device cgd 4
438 1.53 tsutsui
439 1.53 tsutsui ## RAIDframe disk driver: software RAID driver. See raid(4).
440 1.53 tsutsui
441 1.53 tsutsui pseudo-device raid 8
442 1.53 tsutsui options RAID_AUTOCONFIG # auto-configuration of RAID components
443 1.53 tsutsui # Options to enable various other RAIDframe RAID types.
444 1.53 tsutsui # options RF_INCLUDE_EVENODD=1
445 1.53 tsutsui # options RF_INCLUDE_RAID5_RS=1
446 1.53 tsutsui # options RF_INCLUDE_PARITYLOGGING=1
447 1.53 tsutsui # options RF_INCLUDE_CHAINDECLUSTER=1
448 1.53 tsutsui # options RF_INCLUDE_INTERDECLUSTER=1
449 1.53 tsutsui # options RF_INCLUDE_PARITY_DECLUSTERING=1
450 1.53 tsutsui # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
451 1.53 tsutsui
452 1.53 tsutsui
453 1.53 tsutsui ## Memory disk device, used on boot floppies with compressed
454 1.53 tsutsui ## kernel-plus-root-disk images.
455 1.53 tsutsui
456 1.53 tsutsui pseudo-device md 1
457 1.53 tsutsui
458 1.53 tsutsui
459 1.53 tsutsui #### Network interfaces
460 1.53 tsutsui
461 1.53 tsutsui ## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
462 1.53 tsutsui ## Three flavors of additional SBus ethernets are available. One attaches
463 1.53 tsutsui ## directly like the sun4c on-board, one uses the ledma device like the
464 1.53 tsutsui ## sun4m on-board, and one uses the lebuffer device.
465 1.53 tsutsui
466 1.53 tsutsui ledma0 at sbus? slot ? offset ? # sun4m on-board
467 1.53 tsutsui le0 at ledma0 # sun4m on-board
468 1.53 tsutsui le* at sbus? slot ? offset ? # SBus
469 1.53 tsutsui ledma* at sbus? slot ? offset ? # SBus
470 1.53 tsutsui le* at ledma? # SBus
471 1.53 tsutsui lebuffer0 at sbus? slot ? offset ? # SBus
472 1.53 tsutsui le0 at lebuffer? # SBus
473 1.53 tsutsui lebuffer* at sbus? slot ? offset ? # SBus
474 1.53 tsutsui le* at lebuffer? # SBus
475 1.53 tsutsui
476 1.53 tsutsui ## Happy Meal Ethernet
477 1.53 tsutsui hme* at sbus? slot ? offset ?
478 1.53 tsutsui hme* at pci? dev ? function ? # network "hme" compatible
479 1.53 tsutsui
480 1.53 tsutsui ## qec/be, qec/hme
481 1.53 tsutsui qec* at sbus? slot ? offset ?
482 1.53 tsutsui be* at qec?
483 1.53 tsutsui qe* at qec?
484 1.53 tsutsui
485 1.53 tsutsui # PCI network interfaces
486 1.53 tsutsui # UT marks untested.
487 1.53 tsutsui an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) UT
488 1.53 tsutsui ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 UT
489 1.117 mrg bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet
490 1.116 jdc cas* at pci? dev ? function ? # Sun Cassini/Cassini+ Ethernet
491 1.53 tsutsui en* at pci? dev ? function ? # ENI/Adaptec ATM UT
492 1.53 tsutsui # XXX causes ICE
493 1.53 tsutsui #ep* at pci? dev ? function ? # 3Com 3c59x
494 1.53 tsutsui ex* at pci? dev ? function ? # 3Com 90x[B]
495 1.53 tsutsui epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
496 1.53 tsutsui esh* at pci? dev ? function ? # Essential HIPPI card UT
497 1.53 tsutsui fpa* at pci? dev ? function ? # DEC DEFPA FDDI UT
498 1.53 tsutsui fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
499 1.53 tsutsui gem* at pci? dev ? function ? # Apple GMAC and Sun ERI gigabit enet
500 1.53 tsutsui # XXX lacks bus_dmamap_sync()
501 1.53 tsutsui #le* at pci? dev ? function ? # PCnet-PCI Ethernet
502 1.53 tsutsui # XXX uses vtophys()
503 1.53 tsutsui #lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3
504 1.92 mrg mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet
505 1.92 mrg msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet
506 1.53 tsutsui ne* at pci? dev ? function ? # NE2000-compatible Ethernet UT
507 1.53 tsutsui ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial UT
508 1.53 tsutsui # XXX cause uncorrectable DMA error
509 1.53 tsutsui #pcn* at pci? dev ? function ? # PCnet-PCI Ethernet
510 1.53 tsutsui ral* at pci? dev ? function ? # ralink wifi UT
511 1.53 tsutsui re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
512 1.53 tsutsui rtk* at pci? dev ? function ? # Realtek 8129/8139
513 1.92 mrg skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet
514 1.92 mrg sk* at skc? # SysKonnect SK9821 Gigabit Ethernet
515 1.53 tsutsui sip* at pci? dev ? function ? # SiS 900 Ethernet
516 1.53 tsutsui ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet UT
517 1.53 tsutsui tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
518 1.53 tsutsui tlp* at pci? dev ? function ? # DECchip 21x4x and clones
519 1.78 tsutsui vge* at pci? dev ? function ? # VIA VT612X Gigabit Ethernet
520 1.53 tsutsui vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
521 1.53 tsutsui wi* at pci? dev ? function ? # Lucent/Intersil WaveLAN/IEEE
522 1.53 tsutsui wm* at pci? dev ? function ? # Intel 8254x gigabit
523 1.53 tsutsui
524 1.53 tsutsui # MII/PHY support
525 1.53 tsutsui acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
526 1.97 jdc bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
527 1.98 tron brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
528 1.78 tsutsui ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs
529 1.53 tsutsui dmphy* at mii? phy ? # Davicom DM9101 PHYs
530 1.53 tsutsui exphy* at mii? phy ? # 3Com internal PHYs
531 1.116 jdc gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
532 1.116 jdc gphyter* at mii? phy ? # NS83861 Gig-E PHY
533 1.53 tsutsui icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
534 1.72 bouyer ikphy* at mii? phy ? # Intel 82563 PHYs
535 1.53 tsutsui inphy* at mii? phy ? # Intel 82555 PHYs
536 1.53 tsutsui iophy* at mii? phy ? # Intel 82553 PHYs
537 1.53 tsutsui igphy* at mii? phy ? # Intel IGP01E1000
538 1.53 tsutsui lxtphy* at mii? phy ? # Level One LXT-970 PHYs
539 1.53 tsutsui makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
540 1.53 tsutsui nsphy* at mii? phy ? # NS83840 PHYs
541 1.53 tsutsui nsphyter* at mii? phy ? # NS83843 PHYs
542 1.53 tsutsui qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
543 1.75 tsutsui rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs
544 1.75 tsutsui rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
545 1.53 tsutsui sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
546 1.53 tsutsui tlphy* at mii? phy ? # ThunderLAN PHYs
547 1.53 tsutsui tqphy* at mii? phy ? # TDK Semiconductor PHYs
548 1.53 tsutsui ukphy* at mii? phy ? # generic unknown PHYs
549 1.53 tsutsui
550 1.53 tsutsui # PCI USB controllers
551 1.53 tsutsui ehci* at pci? dev ? function ? # Enhanced Host Controller
552 1.53 tsutsui ohci* at pci? dev ? function ? # Open Host Controller
553 1.53 tsutsui uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
554 1.53 tsutsui
555 1.53 tsutsui # USB bus support
556 1.53 tsutsui usb* at ehci?
557 1.53 tsutsui usb* at ohci?
558 1.53 tsutsui usb* at uhci?
559 1.53 tsutsui #usb* at slhci?
560 1.53 tsutsui
561 1.53 tsutsui # USB Hubs
562 1.53 tsutsui uhub* at usb?
563 1.83 drochner uhub* at uhub? port ?
564 1.53 tsutsui
565 1.53 tsutsui # USB HID device
566 1.53 tsutsui uhidev* at uhub? port ? configuration ? interface ?
567 1.53 tsutsui
568 1.53 tsutsui # USB Mice
569 1.53 tsutsui ums* at uhidev? reportid ?
570 1.53 tsutsui wsmouse* at ums? mux 0
571 1.53 tsutsui
572 1.53 tsutsui # USB eGalax touch-panel
573 1.53 tsutsui uep* at uhub? port ?
574 1.53 tsutsui wsmouse* at uep? mux 0
575 1.53 tsutsui
576 1.53 tsutsui # USB Keyboards
577 1.53 tsutsui ukbd* at uhidev? reportid ?
578 1.53 tsutsui wskbd* at ukbd? console ? mux 1
579 1.53 tsutsui
580 1.60 skrll # USB serial adapter
581 1.53 tsutsui ucycom* at uhidev? reportid ?
582 1.53 tsutsui
583 1.53 tsutsui # USB Generic HID devices
584 1.53 tsutsui uhid* at uhidev? reportid ?
585 1.53 tsutsui
586 1.53 tsutsui # USB Printer
587 1.53 tsutsui ulpt* at uhub? port ? configuration ? interface ?
588 1.53 tsutsui
589 1.53 tsutsui # USB Modem
590 1.53 tsutsui umodem* at uhub? port ? configuration ?
591 1.53 tsutsui ucom* at umodem?
592 1.53 tsutsui
593 1.53 tsutsui # USB Mass Storage
594 1.53 tsutsui umass* at uhub? port ? configuration ? interface ?
595 1.53 tsutsui wd* at umass?
596 1.53 tsutsui
597 1.53 tsutsui # USB audio
598 1.53 tsutsui uaudio* at uhub? port ? configuration ?
599 1.53 tsutsui
600 1.53 tsutsui # USB MIDI
601 1.53 tsutsui umidi* at uhub? port ? configuration ?
602 1.53 tsutsui
603 1.53 tsutsui # USB IrDA
604 1.53 tsutsui # USB-IrDA bridge spec
605 1.53 tsutsui uirda* at uhub? port ? configuration ? interface ?
606 1.53 tsutsui irframe* at uirda?
607 1.53 tsutsui
608 1.53 tsutsui # SigmaTel STIr4200 USB/IrDA Bridge
609 1.53 tsutsui ustir* at uhub? port ?
610 1.53 tsutsui irframe* at ustir?
611 1.53 tsutsui
612 1.53 tsutsui # USB Ethernet adapters
613 1.53 tsutsui aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
614 1.53 tsutsui axe* at uhub? port ? # ASIX AX88172 based adapters
615 1.53 tsutsui cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
616 1.53 tsutsui cue* at uhub? port ? # CATC USB-EL1201A based adapters
617 1.53 tsutsui kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
618 1.53 tsutsui udav* at uhub? port ? # Davicom DM9601 based adapters
619 1.53 tsutsui url* at uhub? port ? # Realtek RTL8150L based adapters
620 1.53 tsutsui
621 1.53 tsutsui # USB 802.11 adapters
622 1.53 tsutsui atu* at uhub? port ? # Atmel AT76C50XX based adapters
623 1.53 tsutsui ral* at uhub? port ? # Ralink Technology RT25x0 802.11a/b/g
624 1.87 kiyohara #zyd* at uhub? port ? # Zydas ZD1211
625 1.53 tsutsui
626 1.53 tsutsui # Prolific PL2301/PL2302 host-to-host adapter
627 1.53 tsutsui upl* at uhub? port ?
628 1.53 tsutsui
629 1.53 tsutsui # Serial adapters
630 1.53 tsutsui ubsa* at uhub? port ? # Belkin serial adapter
631 1.53 tsutsui ucom* at ubsa? portno ?
632 1.53 tsutsui
633 1.53 tsutsui uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
634 1.53 tsutsui ucom* at uftdi? portno ?
635 1.53 tsutsui
636 1.53 tsutsui umct* at uhub? port ? # MCT USB-RS232 serial adapter
637 1.53 tsutsui ucom* at umct? portno ?
638 1.53 tsutsui
639 1.53 tsutsui uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
640 1.53 tsutsui ucom* at uplcom? portno ?
641 1.53 tsutsui
642 1.53 tsutsui uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
643 1.53 tsutsui ucom* at uvscom? portno ?
644 1.53 tsutsui
645 1.53 tsutsui # Diamond Multimedia Rio 500
646 1.53 tsutsui urio* at uhub? port ?
647 1.53 tsutsui
648 1.53 tsutsui # USB Handspring Visor
649 1.53 tsutsui uvisor* at uhub? port ?
650 1.53 tsutsui ucom* at uvisor?
651 1.53 tsutsui
652 1.53 tsutsui # Kyocera AIR-EDGE PHONE
653 1.53 tsutsui ukyopon* at uhub? port ?
654 1.53 tsutsui ucom* at ukyopon? portno ?
655 1.53 tsutsui
656 1.53 tsutsui # USB scanners
657 1.53 tsutsui uscanner* at uhub? port ?
658 1.53 tsutsui
659 1.53 tsutsui # USB scanners that use SCSI emulation, e.g., HP5300
660 1.53 tsutsui usscanner* at uhub? port ?
661 1.53 tsutsui
662 1.53 tsutsui # Y@P firmware loader
663 1.53 tsutsui uyap* at uhub? port ?
664 1.53 tsutsui
665 1.53 tsutsui # D-Link DSB-R100 USB radio
666 1.53 tsutsui udsbr* at uhub? port ?
667 1.53 tsutsui radio* at udsbr?
668 1.53 tsutsui
669 1.53 tsutsui # USB Generic driver
670 1.53 tsutsui ugen* at uhub? port ?
671 1.53 tsutsui
672 1.117 mrg # Firewire support
673 1.117 mrg fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller
674 1.117 mrg ieee1394if* at fwohci?
675 1.117 mrg fwip* at ieee1394if? # IP over IEEE1394
676 1.117 mrg sbp* at ieee1394if? euihi ? euilo ?
677 1.117 mrg
678 1.53 tsutsui ## Loopback network interface; required
679 1.53 tsutsui pseudo-device loop
680 1.53 tsutsui
681 1.53 tsutsui ## SLIP and CSLIP interfaces, for IP over a serial line.
682 1.53 tsutsui pseudo-device sl
683 1.53 tsutsui
684 1.53 tsutsui ## PPP, the successor to SLIP. See pppd(8).
685 1.53 tsutsui pseudo-device ppp
686 1.53 tsutsui
687 1.53 tsutsui ## PPP over Ethernet (RFC 2516)
688 1.53 tsutsui pseudo-device pppoe
689 1.53 tsutsui
690 1.53 tsutsui ## Starmode Radio IP, a special hardware network device.
691 1.53 tsutsui pseudo-device strip
692 1.53 tsutsui
693 1.53 tsutsui ## Network "tunnel" device, allowing protocol stacks to run in the userland.
694 1.53 tsutsui ## This is used by the third-party user-mode "ppp" program, and others.
695 1.53 tsutsui pseudo-device tun
696 1.53 tsutsui pseudo-device tap # virtual Ethernet
697 1.53 tsutsui
698 1.53 tsutsui ## Generic L3 over IP tunnel
699 1.79 dyoung pseudo-device gre # generic L3 over IP tunnel
700 1.53 tsutsui
701 1.53 tsutsui ## Berkeley Packet Filter, required to run RARPD. A generic C-language
702 1.53 tsutsui ## interface that allows selective examining of incoming packets.
703 1.53 tsutsui pseudo-device bpfilter
704 1.53 tsutsui
705 1.53 tsutsui # Common Address Redundancy Protocol
706 1.53 tsutsui #pseudo-device carp
707 1.53 tsutsui
708 1.53 tsutsui ## IEEE 802.1q encapsulation
709 1.53 tsutsui pseudo-device vlan
710 1.53 tsutsui
711 1.53 tsutsui ## Simple inter-network traffic bridging
712 1.53 tsutsui pseudo-device bridge
713 1.53 tsutsui #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
714 1.85 martin pseudo-device agr # IEEE 802.3ad link aggregation
715 1.53 tsutsui
716 1.53 tsutsui ## IP Filter, used in firewall and NAT applications. See ipnat(8) for
717 1.53 tsutsui ## one example of the use of the IP Filter.
718 1.53 tsutsui pseudo-device ipfilter
719 1.53 tsutsui
720 1.53 tsutsui ## for IPv6
721 1.53 tsutsui pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
722 1.53 tsutsui #pseudo-device faith # IPv[46] tcp relay translation i/f
723 1.53 tsutsui pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
724 1.53 tsutsui
725 1.53 tsutsui
726 1.53 tsutsui #### CardBus and PCMCIA devices
727 1.53 tsutsui
728 1.53 tsutsui # PCI CardBus bridge support
729 1.53 tsutsui #cbb* at pci? dev ? function ?
730 1.53 tsutsui #cardslot* at cbb?
731 1.53 tsutsui
732 1.53 tsutsui # CardBus bus support
733 1.53 tsutsui #cardbus* at cardslot?
734 1.53 tsutsui #pcmcia* at cardslot?
735 1.53 tsutsui
736 1.53 tsutsui ## SBus to PCMCIA bridge
737 1.53 tsutsui #nell* at sbus? slot ? offset ? # PCMCIA bridge
738 1.53 tsutsui #pcmcia* at nell?
739 1.53 tsutsui
740 1.53 tsutsui ## CardBus cards; UT marks untested.
741 1.53 tsutsui
742 1.53 tsutsui # CardBus serial interfaces
743 1.53 tsutsui #com* at cardbus? function ? # Modems and serial cards UT
744 1.53 tsutsui
745 1.53 tsutsui # CardBus SCSI controllers
746 1.53 tsutsui #adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
747 1.53 tsutsui #ahc* at cardbus? function ? # Adaptec ADP-1480 UT
748 1.53 tsutsui #njs* at cardbus? function ? # Workbit NinjaSCSI-32
749 1.53 tsutsui
750 1.65 itohy # CardBus IDE controllers
751 1.69 itohy #njata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32
752 1.65 itohy
753 1.53 tsutsui # CardBus network interfaces
754 1.53 tsutsui #ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11
755 1.53 tsutsui #atw* at cardbus? function ? # ADMtek ADM8211 (802.11) UT
756 1.53 tsutsui #ex* at cardbus? function ? # 3Com 3C575TX
757 1.53 tsutsui #fxp* at cardbus? function ? # Intel i8255x UT
758 1.53 tsutsui #ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g UT
759 1.107 nakayama #re* at cardbus? function ? # Realtek 8139C+/8169/8169S/8110S UT
760 1.53 tsutsui #rtk* at cardbus? function ? # Realtek 8129/8139 UT
761 1.107 nakayama #rtw* at cardbus? function ? # Realtek 8180L (802.11) UT
762 1.53 tsutsui #tlp* at cardbus? function ? # DECchip 21143
763 1.53 tsutsui
764 1.53 tsutsui # CardBus USB controllers
765 1.53 tsutsui #ehci* at cardbus? function ? # Enhanced Host Controller
766 1.53 tsutsui #ohci* at cardbus? function ? # Open Host Controller
767 1.107 nakayama #uhci* at cardbus? function ? # Universal Host Controller (Intel) UT
768 1.53 tsutsui
769 1.53 tsutsui ## PCMCIA cards; UT marks untested.
770 1.53 tsutsui
771 1.53 tsutsui # PCMCIA serial interfaces
772 1.53 tsutsui #com* at pcmcia? function ? # Modems and serial cards
773 1.53 tsutsui
774 1.53 tsutsui #pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards UT
775 1.53 tsutsui #com* at pcmcom? slave ? # ...and the slave devices
776 1.53 tsutsui
777 1.53 tsutsui # PCMCIA SCSI controllers
778 1.53 tsutsui #aic* at pcmcia? function ? # Adaptec APA-1460 SCSI UT
779 1.53 tsutsui #esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI UT
780 1.58 hubertf #spc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI
781 1.53 tsutsui
782 1.53 tsutsui # PCMCIA IDE controllers
783 1.53 tsutsui #wdc* at pcmcia? function ?
784 1.53 tsutsui
785 1.53 tsutsui # PCMCIA network interfaces
786 1.53 tsutsui #an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) UT
787 1.53 tsutsui #awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) UT
788 1.53 tsutsui #cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer UT
789 1.53 tsutsui #cs* at pcmcia? function ? # CS89xx Ethernet UT
790 1.53 tsutsui #ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
791 1.53 tsutsui #mbe* at pcmcia? function ? # MB8696x based Ethernet UT
792 1.53 tsutsui #ne* at pcmcia? function ? # NE2000-compatible Ethernet
793 1.53 tsutsui #ray* at pcmcia? function ? # Raytheon Raylink (802.11) UT
794 1.53 tsutsui #sm* at pcmcia? function ? # Megahertz Ethernet UT
795 1.53 tsutsui # tr at pcmcia has problems with Cardbus bridges
796 1.53 tsutsui #tr* at pcmcia? function ? # TROPIC based Token-Ring UT
797 1.53 tsutsui #wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11)
798 1.53 tsutsui #xirc* at pcmcia? function ? # Xircom CreditCard Ethernet UT
799 1.53 tsutsui #com* at xirc?
800 1.53 tsutsui #xi* at xirc?
801 1.53 tsutsui #mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards
802 1.53 tsutsui #com* at mhzc?
803 1.53 tsutsui #sm* at mhzc?
804 1.53 tsutsui
805 1.107 nakayama # PCMCIA USB controllers
806 1.107 nakayama #slhci* at pcmcia? function ? # ScanLogic SL811HS UT
807 1.53 tsutsui
808 1.66 plunky #### Bluetooth Controller and Device support
809 1.66 plunky
810 1.66 plunky ## Bluetooth PCMCIA Controllers
811 1.66 plunky #bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A
812 1.89 kiyohara #btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139
813 1.66 plunky
814 1.66 plunky ## Bluetooth USB Controllers
815 1.83 drochner ubt* at uhub? port ?
816 1.66 plunky
817 1.66 plunky ## Bluetooth Device Hub
818 1.95 kiyohara #bthub* at bcsp?
819 1.66 plunky #bthub* at bt3c?
820 1.89 kiyohara #bthub* at btbc?
821 1.82 kiyohara #bthub* at btuart?
822 1.66 plunky bthub* at ubt?
823 1.66 plunky
824 1.66 plunky ## Bluetooth HID support
825 1.66 plunky bthidev* at bthub?
826 1.66 plunky
827 1.66 plunky ## Bluetooth Mouse
828 1.66 plunky btms* at bthidev? reportid ?
829 1.66 plunky wsmouse* at btms? mux 0
830 1.66 plunky
831 1.66 plunky ## Bluetooth Keyboard
832 1.66 plunky btkbd* at bthidev? reportid ?
833 1.66 plunky wskbd* at btkbd? console ? mux 1
834 1.66 plunky
835 1.66 plunky ## Bluetooth Audio support
836 1.66 plunky btsco* at bthub?
837 1.66 plunky
838 1.53 tsutsui #### Audio and video devices
839 1.53 tsutsui
840 1.53 tsutsui ## /dev/audio support (`audiocs' plus `audio')
841 1.53 tsutsui ##
842 1.53 tsutsui audiocs* at sbus? slot ? offset ? # SUNW,CS4231
843 1.53 tsutsui audiocs* at ebus? # SUNW,CS4231 in U5/U10
844 1.53 tsutsui autri* at pci? dev ? function ? # Blade 100 'sound'
845 1.53 tsutsui
846 1.53 tsutsui audio* at audiobus?
847 1.53 tsutsui
848 1.54 nakayama midi* at midibus?
849 1.53 tsutsui
850 1.53 tsutsui
851 1.53 tsutsui ## Sun "bwtwo" black and white framebuffer, found on sun4, sun4c, and sun4m
852 1.53 tsutsui ## systems. If your sun4 system has a cgfour installed in the P4 slot,
853 1.53 tsutsui ## the P4 entries for "bwtwo" will attach to the overlay plane of the
854 1.53 tsutsui ## "cgfour".
855 1.53 tsutsui
856 1.53 tsutsui #bwtwo0 at sbus? slot ? offset ? # sun4c and sun4m
857 1.53 tsutsui #bwtwo* at sbus? slot ? offset ?
858 1.53 tsutsui
859 1.53 tsutsui ## Sun "cgthree" Sbus color framebuffer
860 1.113 macallan cgthree0 at sbus? slot ? offset ?
861 1.113 macallan cgthree* at sbus? slot ? offset ?
862 1.53 tsutsui
863 1.53 tsutsui ## Sun "cgsix" accelerated color framebuffer.
864 1.53 tsutsui cgsix* at sbus? slot ? offset ?
865 1.53 tsutsui
866 1.53 tsutsui ## Sun FFB
867 1.53 tsutsui ffb* at mainbus0
868 1.117 mrg upa* at mainbus?
869 1.117 mrg ffb* at upa?
870 1.53 tsutsui
871 1.115 macallan ## Sun XVR-1000
872 1.115 macallan gfb* at mainbus0
873 1.115 macallan
874 1.53 tsutsui # On board vga on U5/U10 etc.
875 1.53 tsutsui machfb* at pci?
876 1.53 tsutsui
877 1.112 macallan # Sun XVR-100
878 1.112 macallan radeonfb* at pci?
879 1.112 macallan
880 1.112 macallan # Sun PGX32 / TechSource Raptor GFX 8P
881 1.112 macallan pm2fb* at pci?
882 1.112 macallan
883 1.94 macallan # generic PCI framebuffers
884 1.94 macallan genfb* at pci?
885 1.94 macallan
886 1.53 tsutsui # make sure the console display is always wsdisplay0
887 1.53 tsutsui wsdisplay0 at wsemuldisplaydev? console 1
888 1.53 tsutsui wsdisplay* at wsemuldisplaydev?
889 1.53 tsutsui
890 1.53 tsutsui # wsmouse for sun ms
891 1.53 tsutsui wsmouse* at ms0
892 1.53 tsutsui
893 1.53 tsutsui # wskbd for sun kbd
894 1.53 tsutsui wskbd0 at kbd0
895 1.53 tsutsui
896 1.53 tsutsui # various options for wscons - we try to look as much like a standard
897 1.53 tsutsui # sun console as possible
898 1.53 tsutsui options WSEMUL_SUN # sun terminal emulation
899 1.53 tsutsui options WS_DEFAULT_FG=WSCOL_BLACK
900 1.53 tsutsui options WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
901 1.53 tsutsui options WSDISPLAY_COMPAT_USL # VT handling
902 1.53 tsutsui options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
903 1.53 tsutsui options WSDISPLAY_DEFAULTSCREENS=4
904 1.53 tsutsui options FONT_GALLANT12x22 # PROM font look-alike
905 1.53 tsutsui
906 1.53 tsutsui #### Other device configuration
907 1.53 tsutsui
908 1.55 gdamore psm* at ebus? # Ultrabook IIi microcontroller
909 1.84 tnn envctrl* at ebus? # Ultra E450 environmental monitoring
910 1.111 nakayama lom* at ebus? # LOMlite lights out management
911 1.55 gdamore
912 1.104 jkunz # Netra X1 / T1 style environmental monitoring
913 1.104 jkunz alipm* at pci?
914 1.104 jkunz iic* at alipm?
915 1.104 jkunz spdmem* at iic? addr 0x54
916 1.104 jkunz spdmem* at iic? addr 0x55
917 1.104 jkunz spdmem* at iic? addr 0x56
918 1.104 jkunz spdmem* at iic? addr 0x57
919 1.104 jkunz admtemp* at iic? addr 0x18
920 1.104 jkunz
921 1.53 tsutsui ### Other pseudo-devices
922 1.53 tsutsui
923 1.53 tsutsui pseudo-device crypto # /dev/crypto device
924 1.53 tsutsui pseudo-device swcrypto # software crypto implementation
925 1.53 tsutsui
926 1.53 tsutsui ## Pseudo ttys, required for network logins and programs like screen.
927 1.53 tsutsui
928 1.53 tsutsui pseudo-device pty # pseudo-ttys (for network, etc.)
929 1.53 tsutsui
930 1.53 tsutsui ## Random device, used to implement /dev/random (a source of random noise),
931 1.53 tsutsui ## and generate randomness for some kernel formulae.
932 1.53 tsutsui
933 1.53 tsutsui pseudo-device rnd
934 1.53 tsutsui
935 1.53 tsutsui pseudo-device wsmux # mouse & keyboard multiplexor
936 1.53 tsutsui pseudo-device wsfont
937 1.53 tsutsui pseudo-device clockctl # user control of clock subsystem
938 1.53 tsutsui pseudo-device ksyms # /dev/ksyms
939 1.53 tsutsui #pseudo-device pf # PF packet filter
940 1.53 tsutsui #pseudo-device pflog # PF log if
941 1.53 tsutsui pseudo-device fss 4 # file system snapshot device
942 1.95 kiyohara #pseudo-device bcsp # BlueCore Serial Protocol
943 1.82 kiyohara #pseudo-device btuart # Bluetooth HCI UART (H4)
944 1.99 ad pseudo-device lockstat # lock profiling
945 1.114 pooka pseudo-device putter # for puffs and pud
946 1.53 tsutsui
947 1.73 elad options FILEASSOC # fileassoc(9) - required for Veriexec
948 1.56 elad
949 1.53 tsutsui # Veriexec
950 1.53 tsutsui #
951 1.53 tsutsui # a pseudo device needed for veriexec
952 1.73 elad pseudo-device veriexec 1
953 1.53 tsutsui #
954 1.53 tsutsui # Uncomment the fingerprint methods below that are desired. Note that
955 1.53 tsutsui # removing fingerprint methods will have almost no impact on the kernel
956 1.53 tsutsui # code size.
957 1.53 tsutsui #
958 1.73 elad options VERIFIED_EXEC_FP_RMD160
959 1.73 elad options VERIFIED_EXEC_FP_SHA256
960 1.73 elad options VERIFIED_EXEC_FP_SHA384
961 1.73 elad options VERIFIED_EXEC_FP_SHA512
962 1.73 elad options VERIFIED_EXEC_FP_SHA1
963 1.73 elad options VERIFIED_EXEC_FP_MD5
964 1.53 tsutsui
965 1.53 tsutsui # a pseudo device needed for SMBFS
966 1.53 tsutsui pseudo-device nsmb # experimental - SMB requester
967 1.67 elad
968 1.103 jnemeth # drvctl - needed to show device dictionary via drvctl(8)
969 1.103 jnemeth pseudo-device drvctl
970 1.103 jnemeth
971 1.80 elad #options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
972 1.80 elad # (for static binaries only for now)
973