GENERIC32 revision 1.23.2.2 1 1.23.2.2 nathanw # $NetBSD: GENERIC32,v 1.23.2.2 2002/01/08 00:27:57 nathanw Exp $
2 1.23.2.2 nathanw
3 1.23.2.2 nathanw include "arch/sparc64/conf/std.sparc64"
4 1.23.2.2 nathanw
5 1.23.2.2 nathanw #ident "GENERIC-$Revision: 1.23.2.2 $"
6 1.23.2.2 nathanw
7 1.23.2.2 nathanw maxusers 64
8 1.23.2.2 nathanw
9 1.23.2.2 nathanw ## System kernel configuration. See options(4) for more detail.
10 1.23.2.2 nathanw
11 1.23.2.2 nathanw
12 1.23.2.2 nathanw # Options for variants of the Sun SPARC architecure.
13 1.23.2.2 nathanw # We currently support three architecture types; at least one is required.
14 1.23.2.2 nathanw options SUN4U # sun4u - UltraSPARC
15 1.23.2.2 nathanw
16 1.23.2.2 nathanw ## System options specific to the sparc machine type
17 1.23.2.2 nathanw
18 1.23.2.2 nathanw ## Use a faster console than the PROM's slow drawing routines. Not needed
19 1.23.2.2 nathanw ## for headless (no framebuffer) machines.
20 1.23.2.2 nathanw # XXX borken on sparc64
21 1.23.2.2 nathanw #options RASTERCONSOLE # fast rasterop console
22 1.23.2.2 nathanw #options FONT_GALLANT12x22 # the console font
23 1.23.2.2 nathanw #options FONT_BOLD8x16 # a somewhat smaller font
24 1.23.2.2 nathanw
25 1.23.2.2 nathanw #### System options that are the same for all ports
26 1.23.2.2 nathanw
27 1.23.2.2 nathanw ## Root device configuration: change the ?'s if you are going to use a
28 1.23.2.2 nathanw ## nonstandard root partition (other than where the kernel is booted from)
29 1.23.2.2 nathanw ## and/or nonstandard root type (not ffs or nfs). Normally this can be
30 1.23.2.2 nathanw ## automagically determined at boot time.
31 1.23.2.2 nathanw
32 1.23.2.2 nathanw config netbsd root on ? type ?
33 1.23.2.2 nathanw
34 1.23.2.2 nathanw ## UVM options.
35 1.23.2.2 nathanw #options UVM_PAGE_TRKOWN
36 1.23.2.2 nathanw #options UVMHIST
37 1.23.2.2 nathanw #options UVMHIST_PRINT # Loud!
38 1.23.2.2 nathanw
39 1.23.2.2 nathanw ## System call tracing (see ktrace(1)).
40 1.23.2.2 nathanw options KTRACE
41 1.23.2.2 nathanw
42 1.23.2.2 nathanw ## Collect statistics on kernel malloc's and free's. This does have a
43 1.23.2.2 nathanw ## significant performance hit on slower machines, so it is intended for
44 1.23.2.2 nathanw ## diagnostic use only.
45 1.23.2.2 nathanw #options KMEMSTATS
46 1.23.2.2 nathanw
47 1.23.2.2 nathanw ## System V compatible IPC subsystem. (msgctl(2), semctl(2), and shmctl(2))
48 1.23.2.2 nathanw options SYSVMSG # System V message queues
49 1.23.2.2 nathanw options SYSVSEM # System V semaphores
50 1.23.2.2 nathanw options SYSVSHM # System V shared memory
51 1.23.2.2 nathanw #options SHMMAXPGS=1024 # 1024 pages is the default
52 1.23.2.2 nathanw
53 1.23.2.2 nathanw ## Loadable kernel module support; still under development.
54 1.23.2.2 nathanw options LKM
55 1.23.2.2 nathanw
56 1.23.2.2 nathanw ## NFS boot options; default on sparc is the bootparam protocol
57 1.23.2.2 nathanw options NFS_BOOT_BOOTPARAM
58 1.23.2.2 nathanw #options NFS_BOOT_BOOTP
59 1.23.2.2 nathanw #options NFS_BOOT_DHCP
60 1.23.2.2 nathanw
61 1.23.2.2 nathanw #### Debugging options
62 1.23.2.2 nathanw
63 1.23.2.2 nathanw ## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
64 1.23.2.2 nathanw ## serial console break or keyboard reset, where the PROM would normally
65 1.23.2.2 nathanw ## intercept. DDB_HISTORY_SIZE adds up/down arrow command history.
66 1.23.2.2 nathanw # we enable DDB in GENERIC for now.
67 1.23.2.2 nathanw options DDB # kernel dynamic debugger
68 1.23.2.2 nathanw options DDB_HISTORY_SIZE=100 # enable history editing in DDB
69 1.23.2.2 nathanw #options DDB_ONPANIC # see also sysctl(8): `ddb.onpanic'
70 1.23.2.2 nathanw
71 1.23.2.2 nathanw ## You may also use gdb, on another computer connected to this machine over
72 1.23.2.2 nathanw ## a serial port. Both KGDB_DEV and KGDB_DEVRATE should be specified;
73 1.23.2.2 nathanw ## KGDB_DEV is a dev_t encoded device number of the serial port to use.
74 1.23.2.2 nathanw ## (0xc01 = ttya, 0xc02 = ttyb.)
75 1.23.2.2 nathanw #options KGDB # support for kernel gdb
76 1.23.2.2 nathanw #options KGDB_DEV=0xc01 # kgdb device number (this is `ttyb')
77 1.23.2.2 nathanw #options KGDB_DEVRATE=38400 # baud rate
78 1.23.2.2 nathanw
79 1.23.2.2 nathanw
80 1.23.2.2 nathanw ## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
81 1.23.2.2 nathanw ## such that gdb(1) can be used on a kernel coredump.
82 1.23.2.2 nathanw
83 1.23.2.2 nathanw #makeoptions DEBUG="-g"
84 1.23.2.2 nathanw
85 1.23.2.2 nathanw
86 1.23.2.2 nathanw ## Adds code to the kernel that does internal consistency checks, and will
87 1.23.2.2 nathanw ## cause the kernel to panic if corruption of internal data structures
88 1.23.2.2 nathanw ## is detected.
89 1.23.2.2 nathanw #options DIAGNOSTIC # extra kernel sanity checking
90 1.23.2.2 nathanw
91 1.23.2.2 nathanw ## Enable (possibly expensive) debugging code that may also display messages
92 1.23.2.2 nathanw ## on the system console
93 1.23.2.2 nathanw #options DEBUG
94 1.23.2.2 nathanw
95 1.23.2.2 nathanw ## Make SCSI error messages more verbose when explaining their meanings.
96 1.23.2.2 nathanw options SCSIVERBOSE
97 1.23.2.2 nathanw options PCIVERBOSE
98 1.23.2.2 nathanw options MIIVERBOSE # verbose PHY autoconfig messages
99 1.23.2.2 nathanw #options PCI_CONFIG_DUMP # verbosely dump PCI config space
100 1.23.2.2 nathanw
101 1.23.2.2 nathanw ## `INSECURE' turns off the kernel security level (securelevel = 0 always).
102 1.23.2.2 nathanw ## This allows writing to /dev/mem, loading kernel modules while multi-user,
103 1.23.2.2 nathanw ## and other insecurities good only for development work. Do not use this
104 1.23.2.2 nathanw ## option on a production machine.
105 1.23.2.2 nathanw #options INSECURE
106 1.23.2.2 nathanw
107 1.23.2.2 nathanw ## Allow non-root users to grab /dev/console with programs such as xconsole.
108 1.23.2.2 nathanw ## `xconsole' therefore does not need setuid root with this option enabled.
109 1.23.2.2 nathanw #options UCONSOLE
110 1.23.2.2 nathanw
111 1.23.2.2 nathanw ## `FDSCRIPTS' allows non-readable but executable scripts by providing a
112 1.23.2.2 nathanw ## pre-opened opaque file to the script interpreter. `SETUIDSCRIPTS',
113 1.23.2.2 nathanw ## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
114 1.23.2.2 nathanw ## opaque file mechanism. Perl calls this "secure setuid scripts."
115 1.23.2.2 nathanw
116 1.23.2.2 nathanw #options FDSCRIPTS
117 1.23.2.2 nathanw #options SETUIDSCRIPTS
118 1.23.2.2 nathanw
119 1.23.2.2 nathanw ## Options for compatibility with previous releases foreign system binaries.
120 1.23.2.2 nathanw ## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
121 1.23.2.2 nathanw ## additional user-level utilities or system configuration files. See
122 1.23.2.2 nathanw ## compat_sunos(8) and compat_svr4(8).
123 1.23.2.2 nathanw
124 1.23.2.2 nathanw options COMPAT_43 # 4.3BSD system interfaces
125 1.23.2.2 nathanw options COMPAT_09 # NetBSD 0.9 binary compatibility
126 1.23.2.2 nathanw options COMPAT_10 # NetBSD 1.0 binary compatibility
127 1.23.2.2 nathanw options COMPAT_11 # NetBSD 1.1 binary compatibility
128 1.23.2.2 nathanw options COMPAT_12 # NetBSD 1.2 binary compatibility
129 1.23.2.2 nathanw options COMPAT_13 # NetBSD 1.3 binary compatibility
130 1.23.2.2 nathanw options COMPAT_14 # NetBSD 1.4 binary compatibility
131 1.23.2.2 nathanw options COMPAT_SUNOS # SunOS 4.x binary compatibility
132 1.23.2.2 nathanw options COMPAT_SVR4 # SunOS 5.x binary compatibility
133 1.23.2.2 nathanw #options COMPAT_SVR4_32 # SunOS 5.x 32-bit binary compatibility -- 64-bit only
134 1.23.2.2 nathanw #options COMPAT_NETBSD32 # NetBSD/sparc binary compatibility -- 64-bit only
135 1.23.2.2 nathanw options EXEC_AOUT # execve(2) support for a.out binaries
136 1.23.2.2 nathanw options EXEC_ELF32 # Exec module for SunOS 5.x binaries.
137 1.23.2.2 nathanw #options SYSCALL_DEBUG
138 1.23.2.2 nathanw
139 1.23.2.2 nathanw #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
140 1.23.2.2 nathanw
141 1.23.2.2 nathanw ## File systems. You probably need at least one of FFS or NFS.
142 1.23.2.2 nathanw file-system FFS # Berkeley Fast Filesystem
143 1.23.2.2 nathanw file-system NFS # Sun NFS-compatible filesystem client
144 1.23.2.2 nathanw file-system KERNFS # kernel data-structure filesystem
145 1.23.2.2 nathanw file-system NULLFS # NULL layered filesystem
146 1.23.2.2 nathanw file-system OVERLAY # overlay file system
147 1.23.2.2 nathanw file-system MFS # memory-based filesystem
148 1.23.2.2 nathanw file-system FDESC # user file descriptor filesystem
149 1.23.2.2 nathanw file-system UMAPFS # uid/gid remapping filesystem
150 1.23.2.2 nathanw file-system LFS # Log-based filesystem (still experimental)
151 1.23.2.2 nathanw file-system PORTAL # portal filesystem (still experimental)
152 1.23.2.2 nathanw file-system PROCFS # /proc
153 1.23.2.2 nathanw file-system CD9660 # ISO 9660 + Rock Ridge file system
154 1.23.2.2 nathanw file-system UNION # union file system
155 1.23.2.2 nathanw file-system MSDOSFS # MS-DOS FAT filesystem(s).
156 1.23.2.2 nathanw
157 1.23.2.2 nathanw ## File system options.
158 1.23.2.2 nathanw options NFSSERVER # Sun NFS-compatible filesystem server
159 1.23.2.2 nathanw options QUOTA # FFS quotas
160 1.23.2.2 nathanw #options FFS_EI # FFS Endian Independent support
161 1.23.2.2 nathanw options SOFTDEP # FFS soft updates support.
162 1.23.2.2 nathanw
163 1.23.2.2 nathanw ## Network protocol support. In most environments, INET is required.
164 1.23.2.2 nathanw options INET # IP (Internet Protocol) v4
165 1.23.2.2 nathanw options INET6 # IPV6
166 1.23.2.2 nathanw #options IPSEC # IP security
167 1.23.2.2 nathanw #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
168 1.23.2.2 nathanw #options IPSEC_DEBUG # debug for IP security
169 1.23.2.2 nathanw #options GATEWAY # packet forwarding ("router switch")
170 1.23.2.2 nathanw options MROUTING # packet forwarding of multicast packets
171 1.23.2.2 nathanw #options DIRECTED_BROADCAST # allow broadcasts through routers
172 1.23.2.2 nathanw options NS # Xerox NS networking
173 1.23.2.2 nathanw #options NSIP # Xerox NS tunneling over IP
174 1.23.2.2 nathanw options ISO,TPIP # OSI networking
175 1.23.2.2 nathanw options EON # OSI tunneling over IP
176 1.23.2.2 nathanw #options CCITT,LLC,HDLC # X.25 packet switched protocol
177 1.23.2.2 nathanw options NETATALK # AppleTalk (over Ethernet) protocol
178 1.23.2.2 nathanw options NTP # Network Time Protocol in-kernel support
179 1.23.2.2 nathanw #options PPS_SYNC # Add serial line synchronization for NTP
180 1.23.2.2 nathanw options PFIL_HOOKS # Add pfil(9) hooks, intended for custom LKMs.
181 1.23.2.2 nathanw options IPFILTER_LOG # Add ipmon(8) logging for ipfilter device
182 1.23.2.2 nathanw options PPP_BSDCOMP # Add BSD compression to ppp device
183 1.23.2.2 nathanw options PPP_DEFLATE # Add deflate (libz) compression to ppp device
184 1.23.2.2 nathanw options PPP_FILTER # Add active filters for ppp (via bpf)
185 1.23.2.2 nathanw #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
186 1.23.2.2 nathanw
187 1.23.2.2 nathanw
188 1.23.2.2 nathanw #### Main bus and CPU .. all systems.
189 1.23.2.2 nathanw mainbus0 at root
190 1.23.2.2 nathanw cpu0 at mainbus0
191 1.23.2.2 nathanw
192 1.23.2.2 nathanw #### Bus types found on SPARC systems.
193 1.23.2.2 nathanw
194 1.23.2.2 nathanw sbus0 at mainbus0 # Ultra 1
195 1.23.2.2 nathanw #upa0 at mainbus0 # Ultra 1E, Ultra 2, Ex0000
196 1.23.2.2 nathanw psycho* at mainbus0 # Darwin, Ultra5
197 1.23.2.2 nathanw pci* at psycho?
198 1.23.2.2 nathanw pci* at ppb?
199 1.23.2.2 nathanw ppb* at pci? dev ? function ? # `APB' support.
200 1.23.2.2 nathanw #pci* at simba?
201 1.23.2.2 nathanw #simba* at pci? dev ? function ? # `APB' support.
202 1.23.2.2 nathanw ebus* at pci? # ebus devices
203 1.23.2.2 nathanw # XXX 'puc's aren't really bridges, but there's no better place for them here
204 1.23.2.2 nathanw puc* at pci? dev ? function ? # PCI "universal" comm. cards
205 1.23.2.2 nathanw
206 1.23.2.2 nathanw #### Standard system devices -- all required for a given architecture
207 1.23.2.2 nathanw
208 1.23.2.2 nathanw ## PROM console driver -- if all else fails
209 1.23.2.2 nathanw pcons0 at mainbus0 # PROM console
210 1.23.2.2 nathanw
211 1.23.2.2 nathanw ## Auxiliary system registers -- We use the OBP for power management
212 1.23.2.2 nathanw auxio* at ebus? # auxio registers
213 1.23.2.2 nathanw auxio* at sbus? slot ? offset ? # auxio registers
214 1.23.2.2 nathanw
215 1.23.2.2 nathanw # We also need:
216 1.23.2.2 nathanw bpp* at sbus? slot ? offset ? # parallel port
217 1.23.2.2 nathanw lpt* at ebus? # parallel port
218 1.23.2.2 nathanw
219 1.23.2.2 nathanw ## Mostek clock found on 4/300, sun4c, sun4m and sun4u systems.
220 1.23.2.2 nathanw ## The Mostek clock NVRAM is the "eeprom" on sun4/300 systems.
221 1.23.2.2 nathanw clock* at sbus? slot ? offset ?
222 1.23.2.2 nathanw clock* at ebus?
223 1.23.2.2 nathanw
224 1.23.2.2 nathanw ## Timer chip found on 4/300, sun4c, sun4m and (some) sun4u systems.
225 1.23.2.2 nathanw timer* at mainbus0 # sun4c
226 1.23.2.2 nathanw
227 1.23.2.2 nathanw #### Serial port configuration
228 1.23.2.2 nathanw
229 1.23.2.2 nathanw ## Zilog 8530 serial chips. Each has two-channels.
230 1.23.2.2 nathanw ## zs0 is ttya and ttyb. zs1 is the keyboard and mouse.
231 1.23.2.2 nathanw zs* at sbus? slot ? offset ?
232 1.23.2.2 nathanw zstty* at zs? channel ? # ttya
233 1.23.2.2 nathanw kbd0 at zstty?
234 1.23.2.2 nathanw ms0 at zstty?
235 1.23.2.2 nathanw
236 1.23.2.2 nathanw ## PCI machines have serial ports:
237 1.23.2.2 nathanw ## Siemens SAB82532 controller: ttya and ttyb (`su'; sab)
238 1.23.2.2 nathanw ## Part of NS PC87332VLJ Super I/O controller: kbd/mouse (`se'; com)
239 1.23.2.2 nathanw
240 1.23.2.2 nathanw ## The SAB82532 controller has two serial ports
241 1.23.2.2 nathanw #sab* at ebus? # ttya/ttyb
242 1.23.2.2 nathanw #sabtty* at sab? channel ?
243 1.23.2.2 nathanw
244 1.23.2.2 nathanw ## Part of a PC87332VLJ
245 1.23.2.2 nathanw com* at ebus? # `com' driver for `su'
246 1.23.2.2 nathanw kbd0 at com? # keyboard
247 1.23.2.2 nathanw ms0 at com? # mouse
248 1.23.2.2 nathanw
249 1.23.2.2 nathanw # PCI serial interfaces
250 1.23.2.2 nathanw com* at puc? port ? # 16x50s on "universal" comm boards
251 1.23.2.2 nathanw cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
252 1.23.2.2 nathanw cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
253 1.23.2.2 nathanw
254 1.23.2.2 nathanw #### Disk controllers and disks
255 1.23.2.2 nathanw
256 1.23.2.2 nathanw ## The following flags may be set for the NCR53c94 based esp driver:
257 1.23.2.2 nathanw ## bits 0-7: disable disconnect/reselect for the corresponding target
258 1.23.2.2 nathanw ## bits 8-15: disable synchronous negotiation for target [bit-8]
259 1.23.2.2 nathanw
260 1.23.2.2 nathanw ## sun4u on-board SCSI, and FSBE/S SBus SCSI cards, an NCR53c94 or
261 1.23.2.2 nathanw ## equivalent behind an LSI Logic DMA controller
262 1.23.2.2 nathanw
263 1.23.2.2 nathanw dma* at sbus? slot ? offset ? # SBus
264 1.23.2.2 nathanw esp* at dma? flags 0x0000 # SBus
265 1.23.2.2 nathanw
266 1.23.2.2 nathanw ## FAS supported by esp driver
267 1.23.2.2 nathanw esp* at sbus? slot ? offset ?
268 1.23.2.2 nathanw
269 1.23.2.2 nathanw scsibus* at esp?
270 1.23.2.2 nathanw
271 1.23.2.2 nathanw ## Qlogic ISP SBus or PCI SCSI Card
272 1.23.2.2 nathanw isp* at sbus? slot ? offset ?
273 1.23.2.2 nathanw isp* at pci?
274 1.23.2.2 nathanw scsibus* at isp?
275 1.23.2.2 nathanw
276 1.23.2.2 nathanw ## GLM support
277 1.23.2.2 nathanw siop* at pci? # 53C875 "glm" compatible
278 1.23.2.2 nathanw scsibus* at siop?
279 1.23.2.2 nathanw
280 1.23.2.2 nathanw # PCI SCSI controllers
281 1.23.2.2 nathanw # UT marks untested.
282 1.23.2.2 nathanw adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
283 1.23.2.2 nathanw adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI UT
284 1.23.2.2 nathanw ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI UT
285 1.23.2.2 nathanw bha* at pci? dev ? function ? # BusLogic 9xx SCSI UT
286 1.23.2.2 nathanw dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID UT
287 1.23.2.2 nathanw iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
288 1.23.2.2 nathanw pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI UT
289 1.23.2.2 nathanw trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
290 1.23.2.2 nathanw
291 1.23.2.2 nathanw scsibus* at scsi?
292 1.23.2.2 nathanw
293 1.23.2.2 nathanw ## These entries find devices on all SCSI busses and assign
294 1.23.2.2 nathanw ## unit numbers dynamically.
295 1.23.2.2 nathanw sd* at scsibus? target ? lun ? # SCSI disks
296 1.23.2.2 nathanw st* at scsibus? target ? lun ? # SCSI tapes
297 1.23.2.2 nathanw cd* at scsibus? target ? lun ? # SCSI CD-ROMs
298 1.23.2.2 nathanw ch* at scsibus? target ? lun ? # SCSI changer devices
299 1.23.2.2 nathanw ss* at scsibus? target ? lun ? # SCSI scanners
300 1.23.2.2 nathanw ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE devices
301 1.23.2.2 nathanw uk* at scsibus? target ? lun ? # unknown SCSI
302 1.23.2.2 nathanw
303 1.23.2.2 nathanw # PCI IDE.
304 1.23.2.2 nathanw pciide* at pci ? dev ? function ? flags 0x0000
305 1.23.2.2 nathanw atapibus* at pciide? channel ?
306 1.23.2.2 nathanw
307 1.23.2.2 nathanw ## Disable UDMA 4 which causes data corruption on the Acer Labs
308 1.23.2.2 nathanw ## chipset on Sun Blade 100 and Netra X1 machines.
309 1.23.2.2 nathanw wd* at pciide? channel ? drive ? flags 0x0a00 # Disable UDMA 4
310 1.23.2.2 nathanw
311 1.23.2.2 nathanw
312 1.23.2.2 nathanw cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
313 1.23.2.2 nathanw sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
314 1.23.2.2 nathanw uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
315 1.23.2.2 nathanw
316 1.23.2.2 nathanw # RAID controllers and devices (untested)
317 1.23.2.2 nathanw cac* at pci? dev ? function ? # Compaq PCI array controllers
318 1.23.2.2 nathanw mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
319 1.23.2.2 nathanw twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
320 1.23.2.2 nathanw
321 1.23.2.2 nathanw ld* at cac? unit ? # logical disk devices
322 1.23.2.2 nathanw ld* at twe? unit ?
323 1.23.2.2 nathanw ld* at mlx? unit ?
324 1.23.2.2 nathanw
325 1.23.2.2 nathanw ## Floppy controller and drive found on SPARCstations.
326 1.23.2.2 nathanw
327 1.23.2.2 nathanw # need share with the sparc, and everyone else. needs to use auxio.
328 1.23.2.2 nathanw # actually, the ebus version has (will have) direct access to it's AUXIO
329 1.23.2.2 nathanw # register space (it is mapped in to fdthree not auxio).
330 1.23.2.2 nathanw #fdc0 at sbus? slot ? offset ? # SUNW,fdtwo
331 1.23.2.2 nathanw #fdc0 at ebus? # fdthree
332 1.23.2.2 nathanw #fd* at fdc0 # the drive itself
333 1.23.2.2 nathanw
334 1.23.2.2 nathanw ## A disk-like interface to files. Can be used to create floppy, CD,
335 1.23.2.2 nathanw ## miniroot images, etc.
336 1.23.2.2 nathanw
337 1.23.2.2 nathanw pseudo-device vnd 4
338 1.23.2.2 nathanw
339 1.23.2.2 nathanw ## Concatenated and striped disks; with this, you can create a software-based
340 1.23.2.2 nathanw ## disk array similar to a "RAID 0" setup. See ccd(4).
341 1.23.2.2 nathanw
342 1.23.2.2 nathanw pseudo-device ccd 4
343 1.23.2.2 nathanw
344 1.23.2.2 nathanw ## RAIDframe disk driver: software RAID driver. See raid(4).
345 1.23.2.2 nathanw
346 1.23.2.2 nathanw pseudo-device raid 4
347 1.23.2.2 nathanw #options RAID_AUTOCONFIG # auto-configuration of RAID components
348 1.23.2.2 nathanw
349 1.23.2.2 nathanw ## Memory disk device, used on boot floppies with compressed
350 1.23.2.2 nathanw ## kernel-plus-root-disk images.
351 1.23.2.2 nathanw
352 1.23.2.2 nathanw pseudo-device md 1
353 1.23.2.2 nathanw
354 1.23.2.2 nathanw
355 1.23.2.2 nathanw #### Network interfaces
356 1.23.2.2 nathanw
357 1.23.2.2 nathanw ## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
358 1.23.2.2 nathanw ## Three flavors of additional SBus ethernets are available. One attaches
359 1.23.2.2 nathanw ## directly like the sun4c on-board, one uses the ledma device like the
360 1.23.2.2 nathanw ## sun4m on-board, and one uses the lebuffer device.
361 1.23.2.2 nathanw
362 1.23.2.2 nathanw ledma0 at sbus? slot ? offset ? # sun4m on-board
363 1.23.2.2 nathanw le0 at ledma0 # sun4m on-board
364 1.23.2.2 nathanw le* at sbus? slot ? offset ? # SBus
365 1.23.2.2 nathanw ledma* at sbus? slot ? offset ? # SBus
366 1.23.2.2 nathanw le* at ledma? # SBus
367 1.23.2.2 nathanw lebuffer0 at sbus? slot ? offset ? # SBus
368 1.23.2.2 nathanw le0 at lebuffer? # SBus
369 1.23.2.2 nathanw lebuffer* at sbus? slot ? offset ? # SBus
370 1.23.2.2 nathanw le* at lebuffer? # SBus
371 1.23.2.2 nathanw
372 1.23.2.2 nathanw ## Happy Meal Ethernet
373 1.23.2.2 nathanw hme* at sbus? slot ? offset ?
374 1.23.2.2 nathanw hme* at pci? dev ? function ? # network "hme" compatible
375 1.23.2.2 nathanw
376 1.23.2.2 nathanw ## qec/be, qec/hme
377 1.23.2.2 nathanw qec* at sbus? slot ? offset ?
378 1.23.2.2 nathanw be* at qec?
379 1.23.2.2 nathanw qe* at qec?
380 1.23.2.2 nathanw
381 1.23.2.2 nathanw # PCI network interfaces
382 1.23.2.2 nathanw # UT marks untested.
383 1.23.2.2 nathanw an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) UT
384 1.23.2.2 nathanw de* at pci? dev ? function ? # DEC 21x4x-based Ethernet UT
385 1.23.2.2 nathanw en* at pci? dev ? function ? # ENI/Adaptec ATM UT
386 1.23.2.2 nathanw # XXX causes ICE
387 1.23.2.2 nathanw #ep* at pci? dev ? function ? # 3Com 3c59x
388 1.23.2.2 nathanw ex* at pci? dev ? function ? # 3Com 90x[B] UT
389 1.23.2.2 nathanw epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet UT
390 1.23.2.2 nathanw esh* at pci? dev ? function ? # Essential HIPPI card UT
391 1.23.2.2 nathanw fpa* at pci? dev ? function ? # DEC DEFPA FDDI UT
392 1.23.2.2 nathanw fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B UT
393 1.23.2.2 nathanw gem* at pci? dev ? function ? # Apple GMAC and Sun ERI gigabit enet
394 1.23.2.2 nathanw le* at pci? dev ? function ? # PCnet-PCI Ethernet UT
395 1.23.2.2 nathanw # XXX uses vtophys()
396 1.23.2.2 nathanw #lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3
397 1.23.2.2 nathanw ne* at pci? dev ? function ? # NE2000-compatible Ethernet UT
398 1.23.2.2 nathanw ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial UT
399 1.23.2.2 nathanw rtk* at pci? dev ? function ? # Realtek 8129/8139 UT
400 1.23.2.2 nathanw sip* at pci? dev ? function ? # SiS 900 Ethernet UT
401 1.23.2.2 nathanw ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet UT
402 1.23.2.2 nathanw # XXX uses vtophys()
403 1.23.2.2 nathanw #tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
404 1.23.2.2 nathanw tlp* at pci? dev ? function ? # DECchip 21x4x (and clones) Ethernet
405 1.23.2.2 nathanw #options TLP_MATCH_21040
406 1.23.2.2 nathanw #options TLP_MATCH_21041
407 1.23.2.2 nathanw #options TLP_MATCH_21140
408 1.23.2.2 nathanw #options TLP_MATCH_21142
409 1.23.2.2 nathanw vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
410 1.23.2.2 nathanw
411 1.23.2.2 nathanw # MII/PHY support
412 1.23.2.2 nathanw # XXX: only nsphy "tested"
413 1.23.2.2 nathanw dmphy* at mii? phy ? # Davicom DM9101 PHYs
414 1.23.2.2 nathanw exphy* at mii? phy ? # 3Com internal PHYs
415 1.23.2.2 nathanw icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890
416 1.23.2.2 nathanw inphy* at mii? phy ? # Intel 82555 PHYs
417 1.23.2.2 nathanw iophy* at mii? phy ? # Intel 82553 PHYs
418 1.23.2.2 nathanw lxtphy* at mii? phy ? # Level One LXT-970 PHYs
419 1.23.2.2 nathanw nsphy* at mii? phy ? # NS83840 PHYs
420 1.23.2.2 nathanw nsphyter* at mii? phy ? # NS83843 PHYs
421 1.23.2.2 nathanw qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
422 1.23.2.2 nathanw sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
423 1.23.2.2 nathanw tlphy* at mii? phy ? # ThunderLAN PHYs
424 1.23.2.2 nathanw tqphy* at mii? phy ? # TDK Semiconductor PHYs
425 1.23.2.2 nathanw ukphy* at mii? phy ? # generic unknown PHYs
426 1.23.2.2 nathanw
427 1.23.2.2 nathanw # PCI USB controllers
428 1.23.2.2 nathanw ohci* at pci? dev ? function ? # Open Host Controller
429 1.23.2.2 nathanw
430 1.23.2.2 nathanw usb* at ohci? # USB bus support
431 1.23.2.2 nathanw uhub* at usb? # USB Hubs
432 1.23.2.2 nathanw uhub* at uhub? port ? configuration ? interface ?
433 1.23.2.2 nathanw
434 1.23.2.2 nathanw uhidev* at uhub? port ? configuration ? interface ? # USB HID
435 1.23.2.2 nathanw uhid* at uhidev? reportid ? # USB Generic HID
436 1.23.2.2 nathanw
437 1.23.2.2 nathanw ulpt* at uhub? port ? configuration ? interface ? # USB Printer
438 1.23.2.2 nathanw
439 1.23.2.2 nathanw umodem* at uhub? port ? configuration ? # USB Modem
440 1.23.2.2 nathanw ucom* at umodem?
441 1.23.2.2 nathanw
442 1.23.2.2 nathanw umass* at uhub? port ? configuration ? interface ? # USB Mass Storage
443 1.23.2.2 nathanw atapibus* at umass? channel ?
444 1.23.2.2 nathanw scsibus* at umass? channel ?
445 1.23.2.2 nathanw
446 1.23.2.2 nathanw uaudio* at uhub? port ? configuration ? # USB audio
447 1.23.2.2 nathanw
448 1.23.2.2 nathanw # USB Ethernet adapters
449 1.23.2.2 nathanw aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
450 1.23.2.2 nathanw cue* at uhub? port ? # CATC USB-EL1201A based adapters
451 1.23.2.2 nathanw kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
452 1.23.2.2 nathanw
453 1.23.2.2 nathanw uscanner* at uhub? port ? # USB scanners
454 1.23.2.2 nathanw uyap* at uhub? port ? # Y@P firmware loader
455 1.23.2.2 nathanw ugen* at uhub? port ? configuration ? interface ? # USB Generic driver
456 1.23.2.2 nathanw
457 1.23.2.2 nathanw # PCI IEEE1394 controllers
458 1.23.2.2 nathanw fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller
459 1.23.2.2 nathanw #fwlynx* at pci? dev ? function ? # IEEE1394 TI Lynx Controller
460 1.23.2.2 nathanw fw* at fwbus? # IP over 1394
461 1.23.2.2 nathanw
462 1.23.2.2 nathanw # IEEE1394 nodes
463 1.23.2.2 nathanw #fwnode* at fwbus? oui ? devhi ? devlo ?
464 1.23.2.2 nathanw #scsibus* at fwnode?
465 1.23.2.2 nathanw
466 1.23.2.2 nathanw ## Loopback network interface; required
467 1.23.2.2 nathanw pseudo-device loop
468 1.23.2.2 nathanw
469 1.23.2.2 nathanw ## SLIP and CSLIP interfaces, for IP over a serial line.
470 1.23.2.2 nathanw pseudo-device sl 2
471 1.23.2.2 nathanw
472 1.23.2.2 nathanw ## PPP, the successor to SLIP. See pppd(8).
473 1.23.2.2 nathanw pseudo-device ppp 2
474 1.23.2.2 nathanw
475 1.23.2.2 nathanw ## PPP over Ethernet (RFC 2516)
476 1.23.2.2 nathanw pseudo-device pppoe
477 1.23.2.2 nathanw
478 1.23.2.2 nathanw ## Starmode Radio IP, a special hardware network device.
479 1.23.2.2 nathanw pseudo-device strip 1
480 1.23.2.2 nathanw
481 1.23.2.2 nathanw ## Network "tunnel" device, allowing protocol stacks to run in the userland.
482 1.23.2.2 nathanw ## This is used by the third-party user-mode "ppp" program, and others.
483 1.23.2.2 nathanw pseudo-device tun 4
484 1.23.2.2 nathanw
485 1.23.2.2 nathanw ## Generic L3 over IP tunnel
486 1.23.2.2 nathanw #pseudo-device gre 2 # generic L3 over IP tunnel
487 1.23.2.2 nathanw
488 1.23.2.2 nathanw ## Berkeley Packet Filter, required to run RARPD. A generic C-language
489 1.23.2.2 nathanw ## interface that allows selective examining of incoming packets.
490 1.23.2.2 nathanw pseudo-device bpfilter 8
491 1.23.2.2 nathanw
492 1.23.2.2 nathanw ## Simple inter-network traffic bridging
493 1.23.2.2 nathanw pseudo-device bridge
494 1.23.2.2 nathanw
495 1.23.2.2 nathanw ## IP Filter, used in firewall and NAT applications. See ipnat(8) for
496 1.23.2.2 nathanw ## one example of the use of the IP Filter.
497 1.23.2.2 nathanw pseudo-device ipfilter
498 1.23.2.2 nathanw
499 1.23.2.2 nathanw ## for IPv6
500 1.23.2.2 nathanw pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
501 1.23.2.2 nathanw #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
502 1.23.2.2 nathanw #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
503 1.23.2.2 nathanw
504 1.23.2.2 nathanw
505 1.23.2.2 nathanw #### Audio and video devices
506 1.23.2.2 nathanw
507 1.23.2.2 nathanw ## /dev/audio support (`audiocs' plus `audio')
508 1.23.2.2 nathanw ##
509 1.23.2.2 nathanw audiocs* at sbus? slot ? offset ? # SUNW,CS4231
510 1.23.2.2 nathanw audio* at audiocs?
511 1.23.2.2 nathanw
512 1.23.2.2 nathanw
513 1.23.2.2 nathanw ## Sun "bwtwo" black and white framebuffer, found on sun4, sun4c, and sun4m
514 1.23.2.2 nathanw ## systems. If your sun4 system has a cgfour installed in the P4 slot,
515 1.23.2.2 nathanw ## the P4 entries for "bwtwo" will attach to the overlay plane of the
516 1.23.2.2 nathanw ## "cgfour".
517 1.23.2.2 nathanw
518 1.23.2.2 nathanw #bwtwo0 at sbus? slot ? offset ? # sun4c and sun4m
519 1.23.2.2 nathanw #bwtwo* at sbus? slot ? offset ?
520 1.23.2.2 nathanw
521 1.23.2.2 nathanw ## Sun "cgthree" Sbus color framebuffer
522 1.23.2.2 nathanw #cgthree0 at sbus? slot ? offset ?
523 1.23.2.2 nathanw #cgthree* at sbus? slot ? offset ?
524 1.23.2.2 nathanw
525 1.23.2.2 nathanw ## Sun "cgsix" accelerated color framebuffer.
526 1.23.2.2 nathanw cgsix0 at sbus? slot ? offset ?
527 1.23.2.2 nathanw cgsix* at sbus? slot ? offset ?
528 1.23.2.2 nathanw
529 1.23.2.2 nathanw ## Sun FFB not supported
530 1.23.2.2 nathanw #ffb* at upa?
531 1.23.2.2 nathanw
532 1.23.2.2 nathanw #### Other device configuration
533 1.23.2.2 nathanw
534 1.23.2.2 nathanw ## Pseudo ttys, required for network logins and programs like screen.
535 1.23.2.2 nathanw
536 1.23.2.2 nathanw pseudo-device pty # pseudo-ttys (for network, etc.)
537 1.23.2.2 nathanw
538 1.23.2.2 nathanw ## Random device, used to implement /dev/random (a source of random noise),
539 1.23.2.2 nathanw ## and generate randomness for some kernel formulae.
540 1.23.2.2 nathanw
541 1.23.2.2 nathanw pseudo-device rnd
542