GENERIC32 revision 1.77
11.77Sthorpej# 	$NetBSD: GENERIC32,v 1.77 2003/12/14 01:32:02 thorpej Exp $
21.1Seeh
31.1Seehinclude "arch/sparc64/conf/std.sparc64"
41.1Seeh
51.36Satatatoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
61.36Satatat
71.77Sthorpej#ident 		"GENERIC-$Revision: 1.77 $"
81.1Seeh
91.8Seehmaxusers	64
101.1Seeh
111.1Seeh## System kernel configuration.  See options(4) for more detail.
121.1Seeh
131.1Seeh
141.1Seeh# Options for variants of the Sun SPARC architecure.
151.1Seeh# We currently support three architecture types; at least one is required.
161.14Smrgoptions 	SUN4U		# sun4u - UltraSPARC
171.26Smrg#options 	BLINK		# blink the system LED
181.1Seeh
191.1Seeh## System options specific to the sparc machine type
201.1Seeh
211.1Seeh## Use a faster console than the PROM's slow drawing routines.  Not needed
221.1Seeh## for headless (no framebuffer) machines.
231.8Seeh# XXX borken on sparc64
241.1Seeh#options 	RASTERCONSOLE		# fast rasterop console
251.1Seeh#options 	FONT_GALLANT12x22	# the console font
261.1Seeh#options 	FONT_BOLD8x16		# a somewhat smaller font
271.1Seeh
281.1Seeh#### System options that are the same for all ports
291.1Seeh
301.1Seeh## Root device configuration: change the ?'s if you are going to use a
311.1Seeh## nonstandard root partition (other than where the kernel is booted from)
321.1Seeh## and/or nonstandard root type (not ffs or nfs).  Normally this can be
331.1Seeh## automagically determined at boot time.
341.1Seeh
351.1Seehconfig		netbsd	root on ? type ?
361.1Seeh
371.1Seeh## UVM options.
381.1Seeh#options 	UVM_PAGE_TRKOWN
391.1Seeh#options 	UVMHIST
401.1Seeh#options 	UVMHIST_PRINT	# Loud!
411.1Seeh
421.1Seeh## System call tracing (see ktrace(1)).
431.1Seehoptions 	KTRACE
441.50Sprovosoptions 	SYSTRACE		# system call vetting via systrace(1)
451.1Seeh
461.1Seeh## Collect statistics on kernel malloc's and free's.  This does have a
471.1Seeh## significant performance hit on slower machines, so it is intended for
481.1Seeh## diagnostic use only.
491.1Seeh#options 	KMEMSTATS
501.1Seeh
511.1Seeh## System V compatible IPC subsystem.  (msgctl(2), semctl(2), and shmctl(2))
521.1Seehoptions 	SYSVMSG		# System V message queues
531.1Seehoptions 	SYSVSEM		# System V semaphores
541.1Seehoptions 	SYSVSHM		# System V shared memory
551.1Seeh#options 	SHMMAXPGS=1024	# 1024 pages is the default
561.74Schristosoptions 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support 
571.74Schristos
581.1Seeh
591.1Seeh## Loadable kernel module support; still under development.
601.1Seehoptions 	LKM
611.30Sjdolecek
621.45Slukemoptions 	USERCONF	# userconf(4) support
631.69Snakayama#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
641.54Sjunyoung
651.55Swiz# Enable experimental buffer queue strategy for better responsiveness under 
661.54Sjunyoung# high disk I/O load. Use it with caution - it's not proven to be stable yet.
671.54Sjunyoung#options 	NEW_BUFQ_STRATEGY
681.1Seeh
691.48Schs## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
701.1Seehoptions 	NFS_BOOT_BOOTPARAM
711.1Seeh#options 	NFS_BOOT_BOOTP
721.48Schsoptions 	NFS_BOOT_DHCP
731.1Seeh
741.1Seeh#### Debugging options
751.1Seeh
761.1Seeh## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
771.1Seeh## serial console break or keyboard reset, where the PROM would normally
781.1Seeh## intercept.  DDB_HISTORY_SIZE adds up/down arrow command history.
791.1Seeh# we enable DDB in GENERIC for now.
801.1Seehoptions 	DDB			# kernel dynamic debugger
811.1Seehoptions 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
821.1Seeh#options 	DDB_ONPANIC		# see also sysctl(8): `ddb.onpanic'
831.1Seeh
841.1Seeh## You may also use gdb, on another computer connected to this machine over
851.67Smartin## a serial port.
861.67Smartin# ttyb on an Ultra5 is aliased to: "/pci@1f,0/pci@1,1/ebus@1/se:b", which is
871.67Smartin# "/pci@1f,0/pci@1,1/ebus@1/se@14,400000", port b.
881.68Smartin# options 	KGDB			# support for kernel gdb
891.69Snakayama# options 	KGDB_DEVNAME="\"sab\""	# driver name for the kgdb serial chip
901.69Snakayama# options 	KGDB_DEVADDR=0x400000	# physical address of the chip
911.69Snakayama# options 	KGDB_DEVPORT=1		# port b
921.69Snakayama# options 	KGDB_DEVRATE=38400	# baud rate
931.1Seeh
941.1Seeh
951.1Seeh## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
961.1Seeh## such that gdb(1) can be used on a kernel coredump.
971.1Seeh
981.25Slukem#makeoptions	DEBUG="-g"
991.1Seeh
1001.1Seeh
1011.1Seeh## Adds code to the kernel that does internal consistency checks, and will
1021.1Seeh## cause the kernel to panic if corruption of internal data structures
1031.1Seeh## is detected.
1041.1Seeh#options 	DIAGNOSTIC	# extra kernel sanity checking
1051.1Seeh
1061.1Seeh## Enable (possibly expensive) debugging code that may also display messages
1071.1Seeh## on the system console
1081.6Seeh#options 	DEBUG
1091.1Seeh
1101.1Seeh## Make SCSI error messages more verbose when explaining their meanings.
1111.1Seehoptions 	SCSIVERBOSE
1121.1Seehoptions 	PCIVERBOSE
1131.1Seehoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1141.1Seeh#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1151.1Seeh
1161.1Seeh## `INSECURE' turns off the kernel security level (securelevel = 0 always).
1171.1Seeh## This allows writing to /dev/mem, loading kernel modules while multi-user,
1181.1Seeh## and other insecurities good only for development work.  Do not use this
1191.1Seeh## option on a production machine.
1201.1Seeh#options 	INSECURE
1211.1Seeh
1221.1Seeh## `FDSCRIPTS' allows non-readable but executable scripts by providing a
1231.1Seeh## pre-opened opaque file to the script interpreter.  `SETUIDSCRIPTS',
1241.1Seeh## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
1251.1Seeh## opaque file mechanism.  Perl calls this "secure setuid scripts."
1261.1Seeh
1271.1Seeh#options 	FDSCRIPTS
1281.1Seeh#options 	SETUIDSCRIPTS
1291.1Seeh
1301.1Seeh## Options for compatibility with previous releases foreign system binaries.
1311.1Seeh## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
1321.1Seeh## additional user-level utilities or system configuration files. See
1331.1Seeh## compat_sunos(8) and compat_svr4(8).
1341.1Seeh
1351.1Seehoptions 	COMPAT_43	# 4.3BSD system interfaces
1361.12Seehoptions 	COMPAT_09	# NetBSD 0.9 binary compatibility
1371.1Seehoptions 	COMPAT_10	# NetBSD 1.0 binary compatibility
1381.1Seehoptions 	COMPAT_11	# NetBSD 1.1 binary compatibility
1391.1Seehoptions 	COMPAT_12	# NetBSD 1.2 binary compatibility
1401.1Seehoptions 	COMPAT_13	# NetBSD 1.3 binary compatibility
1411.1Seehoptions 	COMPAT_14	# NetBSD 1.4 binary compatibility
1421.67Smartinoptions 	COMPAT_15	# NetBSD 1.5 binary compatibility
1431.67Smartinoptions 	COMPAT_16	# NetBSD 1.6 binary compatibility
1441.1Seehoptions 	COMPAT_SUNOS	# SunOS 4.x binary compatibility
1451.1Seehoptions 	COMPAT_SVR4	# SunOS 5.x binary compatibility
1461.14Smrg#options 	COMPAT_SVR4_32	# SunOS 5.x 32-bit binary compatibility -- 64-bit only
1471.1Seeh#options 	COMPAT_NETBSD32	# NetBSD/sparc binary compatibility -- 64-bit only
1481.1Seehoptions 	EXEC_AOUT	# execve(2) support for a.out binaries
1491.1Seehoptions 	EXEC_ELF32	# Exec module for SunOS 5.x binaries.
1501.1Seeh#options 	SYSCALL_DEBUG
1511.1Seeh
1521.16Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
1531.16Sabs
1541.1Seeh## File systems.  You probably need at least one of FFS or NFS.
1551.1Seehfile-system	FFS		# Berkeley Fast Filesystem
1561.1Seehfile-system	NFS		# Sun NFS-compatible filesystem client
1571.1Seehfile-system	KERNFS		# kernel data-structure filesystem
1581.1Seehfile-system	NULLFS		# NULL layered filesystem
1591.1Seehfile-system 	OVERLAY		# overlay file system
1601.1Seehfile-system	MFS		# memory-based filesystem
1611.1Seehfile-system	FDESC		# user file descriptor filesystem
1621.1Seehfile-system	UMAPFS		# uid/gid remapping filesystem
1631.1Seehfile-system	LFS		# Log-based filesystem (still experimental)
1641.1Seehfile-system	PORTAL		# portal filesystem (still experimental)
1651.1Seehfile-system	PROCFS		# /proc
1661.1Seehfile-system	CD9660		# ISO 9660 + Rock Ridge file system
1671.1Seehfile-system	UNION		# union file system
1681.1Seehfile-system	MSDOSFS		# MS-DOS FAT filesystem(s).
1691.1Seeh
1701.1Seeh## File system options.
1711.1Seehoptions 	NFSSERVER	# Sun NFS-compatible filesystem server
1721.1Seehoptions 	QUOTA		# FFS quotas
1731.1Seeh#options 	FFS_EI		# FFS Endian Independent support
1741.25Slukemoptions 	SOFTDEP		# FFS soft updates support.
1751.1Seeh
1761.1Seeh## Network protocol support.  In most environments, INET is required.
1771.1Seehoptions 	INET		# IP (Internet Protocol) v4
1781.1Seehoptions 	INET6		# IPV6
1791.1Seeh#options 	IPSEC		# IP security
1801.1Seeh#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1811.1Seeh#options 	IPSEC_DEBUG	# debug for IP security
1821.1Seeh#options 	GATEWAY		# packet forwarding ("router switch")
1831.1Seehoptions 	MROUTING	# packet forwarding of multicast packets
1841.1Seeh#options 	DIRECTED_BROADCAST	# allow broadcasts through routers
1851.1Seehoptions 	NS		# Xerox NS networking
1861.1Seeh#options 	NSIP		# Xerox NS tunneling over IP
1871.1Seehoptions 	ISO,TPIP	# OSI networking
1881.6Seehoptions 	EON		# OSI tunneling over IP
1891.1Seeh#options 	CCITT,LLC,HDLC	# X.25 packet switched protocol
1901.1Seehoptions 	NETATALK	# AppleTalk (over Ethernet) protocol
1911.1Seehoptions 	NTP		# Network Time Protocol in-kernel support
1921.1Seeh#options 	PPS_SYNC	# Add serial line synchronization for NTP
1931.1Seehoptions 	PFIL_HOOKS	# Add pfil(9) hooks, intended for custom LKMs.
1941.1Seehoptions 	IPFILTER_LOG	# Add ipmon(8) logging for ipfilter device
1951.47Smartti#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1961.1Seehoptions 	PPP_BSDCOMP	# Add BSD compression to ppp device
1971.1Seehoptions 	PPP_DEFLATE	# Add deflate (libz) compression to ppp device
1981.1Seehoptions 	PPP_FILTER	# Add active filters for ppp (via bpf)
1991.16Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
2001.1Seeh
2011.1Seeh
2021.1Seeh#### Main bus and CPU .. all systems.
2031.1Seehmainbus0 at root
2041.1Seehcpu0	at mainbus0
2051.1Seeh
2061.1Seeh#### Bus types found on SPARC systems.
2071.1Seeh
2081.1Seehsbus0	at mainbus0				# Ultra 1
2091.1Seeh#upa0	at mainbus0				# Ultra 1E, Ultra 2, Ex0000
2101.14Smrgpsycho*	at mainbus0				# Darwin, Ultra5
2111.39Sthorpejpci*	at psycho?
2121.39Sthorpejpci*	at ppb?
2131.39Sthorpejppb*	at pci?					# `APB' support.
2141.39Sthorpejebus*	at pci?					# ebus devices
2151.18Seeh# XXX 'puc's aren't really bridges, but there's no better place for them here
2161.39Sthorpejpuc*	at pci? dev ? function ?		# PCI "universal" comm. cards
2171.1Seeh
2181.1Seeh#### Standard system devices -- all required for a given architecture
2191.1Seeh
2201.1Seeh## PROM console driver -- if all else fails
2211.1Seehpcons0	at mainbus0				# PROM console
2221.1Seeh
2231.1Seeh## Auxiliary system registers -- We use the OBP for power management
2241.1Seehauxio*	at ebus?				# auxio registers
2251.1Seehauxio*	at sbus? slot ? offset ?		# auxio registers
2261.1Seeh
2271.1Seeh# We also need:
2281.1Seehbpp*	at sbus? slot ? offset ?		# parallel port
2291.1Seehlpt*	at ebus?				# parallel port
2301.1Seeh
2311.1Seeh## Mostek clock found on 4/300, sun4c, sun4m and sun4u systems.
2321.1Seeh## The Mostek clock NVRAM is the "eeprom" on sun4/300 systems.
2331.1Seehclock*	at sbus? slot ? offset ?
2341.1Seehclock*	at ebus?
2351.38Seehrtc*	at ebus?
2361.1Seeh
2371.1Seeh## Timer chip found on 4/300, sun4c, sun4m and (some) sun4u systems.
2381.1Seehtimer*	at mainbus0				# sun4c
2391.1Seeh
2401.1Seeh#### Serial port configuration
2411.1Seeh
2421.1Seeh## Zilog 8530 serial chips.  Each has two-channels.
2431.1Seeh## zs0 is ttya and ttyb.  zs1 is the keyboard and mouse.
2441.8Seehzs*	at sbus? slot ? offset ?
2451.8Seehzstty*	at zs? channel ?			# ttya
2461.8Seehkbd0	at zstty?
2471.8Seehms0	at zstty?
2481.8Seeh
2491.1Seeh## PCI machines have serial ports:
2501.1Seeh##	Siemens SAB82532 controller: ttya and ttyb (`su'; sab)
2511.1Seeh##	Part of NS PC87332VLJ Super I/O controller: kbd/mouse (`se'; com)
2521.1Seeh
2531.14Smrg## The SAB82532 controller has two serial ports
2541.43Spetrovsab*	at ebus?				# ttya/ttyb
2551.43Spetrovsabtty*	at sab? channel ?
2561.1Seeh
2571.9Smrg## Part of a PC87332VLJ
2581.8Seehcom*	at ebus?				# `com' driver for `su'
2591.8Seehkbd0	at com?					# keyboard
2601.8Seehms0	at com?					# mouse
2611.1Seeh
2621.18Seeh# PCI serial interfaces
2631.18Seehcom*	at puc? port ?			# 16x50s on "universal" comm boards
2641.39Sthorpejcy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2651.39Sthorpejcz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
2661.18Seeh
2671.1Seeh#### Disk controllers and disks
2681.1Seeh
2691.1Seeh## The following flags may be set for the NCR53c94 based esp driver:
2701.1Seeh##	bits 0-7:  disable disconnect/reselect for the corresponding target
2711.1Seeh##	bits 8-15: disable synchronous negotiation for target [bit-8]
2721.1Seeh
2731.1Seeh## sun4u on-board SCSI, and FSBE/S SBus SCSI cards, an NCR53c94 or
2741.1Seeh## equivalent behind an LSI Logic DMA controller
2751.1Seeh
2761.49Smartin# XXX - the esp driver has problems with tagged queueing.
2771.49Smartin# To avoid these, tagged queueing has been disabled for the first 8 targets
2781.49Smartin# by setting those bits to 1 (starting at bit 16, see esp(4) for details).
2791.49Smartin# If you want tagged queueing, and are sure it works for you, set the flags
2801.49Smartin# value to 0. CAVEAT: using tagged queueing currently can cause data loss!
2811.49Smartin
2821.8Seehdma*	at sbus? slot ? offset ?		# SBus
2831.49Smartinesp*	at dma? flags 0x00ff0000		# SBus
2841.1Seeh
2851.49Smartinesp*	at sbus? slot ? offset ? flags 0x00ff0000
2861.1Seehisp*	at sbus? slot ? offset ?
2871.42Smrgisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
2881.70Sbouyersiop*	at pci? 			# 53C8xx ("glm" compatible)
2891.70Sbouyeresiop*	at pci? 			# 53C875 and newer ("glm" compatible)
2901.1Seeh
2911.23Stsutsui# PCI SCSI controllers
2921.23Stsutsui# 	UT marks untested.
2931.39Sthorpejadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
2941.39Sthorpejadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI UT
2951.61Stsutsuiahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2961.39Sthorpejbha*	at pci? dev ? function ?	# BusLogic 9xx SCSI UT
2971.39Sthorpejdpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID UT
2981.39Sthorpejiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
2991.61Stsutsuipcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3001.39Sthorpejtrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
3011.18Seeh
3021.18Seehscsibus* at scsi?
3031.18Seeh
3041.1Seeh## These entries find devices on all SCSI busses and assign
3051.1Seeh## unit numbers dynamically.
3061.1Seehsd*	at scsibus? target ? lun ?		# SCSI disks
3071.1Seehst*	at scsibus? target ? lun ?		# SCSI tapes
3081.1Seehcd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
3091.1Seehch*	at scsibus? target ? lun ?		# SCSI changer devices
3101.1Seehss*	at scsibus? target ? lun ?		# SCSI scanners
3111.13Smjacobses*	at scsibus? target ? lun ?		# SCSI SES/SAF-TE devices
3121.1Seehuk*	at scsibus? target ? lun ?		# unknown SCSI
3131.1Seeh
3141.52Sgrant# IDE and related devices
3151.52Sgrant# PCI IDE controllers - see pciide(4) for supported hardware.
3161.52Sgrant# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3171.52Sgrant# how to set up DMA modes for this chip. This may work, or may cause
3181.52Sgrant# a machine hang with some controllers.
3191.72Sbouyerpciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
3201.72Sbouyeracardide* at pci? dev ? function ?	# Acard IDE controllers
3211.72Sbouyeraceride* at pci? dev ? function ?	# Acer Lab IDE controllers
3221.77Sthorpejartsata* at pci? dev ? function ?	# Intel i31244 SATA controller
3231.72Sbouyercmdide* at pci? dev ? function ?	# CMD tech IDE controllers
3241.72Sbouyercypide* at pci? dev ? function ?	# Cypress IDE controllers
3251.72Sbouyerhptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
3261.72Sbouyeroptiide* at pci? dev ? function ?	# Opti IDE controllers
3271.72Sbouyerpiixide* at pci? dev ? function ?	# Intel IDE controllers
3281.72Sbouyerpdcide* at pci? dev ? function ?	# Promise IDE controllers
3291.76Sthorpejsatalink* at pci? dev ? function ?	# SiI SATALink controllers
3301.72Sbouyersiside* at pci? dev ? function ?	# SiS IDE controllers
3311.72Sbouyerslide*  at pci? dev ? function ?	# Symphony Labs IDE controllers
3321.72Sbouyerviaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
3331.73Slukematabus* at ata?
3341.73Slukematapibus* at atapi?
3351.21Seeh
3361.52Sgrant# IDE drives
3371.52Sgrant# Flags are used only with controllers that support DMA operations
3381.52Sgrant# and mode settings (e.g. some pciide controllers)
3391.52Sgrant# The lowest order four bits (rightmost digit) of the flags define the PIO
3401.52Sgrant# mode to use, the next set of four bits the DMA mode and the third set the
3411.52Sgrant# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
3421.52Sgrant# to use, and the last bit must be 1 for this setting to be used.
3431.52Sgrant# For DMA and UDMA, 0xf (1111) means 'disable'.
3441.52Sgrant# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
3451.52Sgrant# (0xc=1100, 0xa=1010, 0xf=1111)
3461.52Sgrant# 0x0000 means "use whatever the drive claims to support".
3471.52Sgrant
3481.21Seeh## Disable UDMA 4 which causes data corruption on the Acer Labs
3491.21Seeh## chipset on Sun Blade 100 and Netra X1 machines.
3501.71Sbouyerwd*     at atabus? drive ? flags 0x0000
3511.1Seeh
3521.1Seehcd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
3531.1Seehsd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
3541.1Seehuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
3551.1Seeh
3561.18Seeh# RAID controllers and devices (untested)
3571.39Sthorpejcac*	at pci? dev ? function ?	# Compaq PCI array controllers
3581.39Sthorpejmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
3591.39Sthorpejtwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
3601.18Seeh
3611.18Seehld*	at cac? unit ?			# logical disk devices
3621.18Seehld*	at twe? unit ?
3631.18Seehld*	at mlx? unit ?
3641.18Seeh
3651.1Seeh## Floppy controller and drive found on SPARCstations.
3661.1Seeh
3671.1Seeh# need share with the sparc, and everyone else.  needs to use auxio.
3681.1Seeh# actually, the ebus version has (will have) direct access to it's AUXIO
3691.1Seeh# register space (it is mapped in to fdthree not auxio).
3701.1Seeh#fdc0	at sbus? slot ? offset ?		# SUNW,fdtwo
3711.1Seeh#fdc0	at ebus?				# fdthree
3721.1Seeh#fd*	at fdc0 	 			# the drive itself
3731.1Seeh
3741.1Seeh## A disk-like interface to files.  Can be used to create floppy, CD,
3751.1Seeh## miniroot images, etc.
3761.1Seeh
3771.1Seehpseudo-device	vnd	4
3781.1Seeh
3791.1Seeh## Concatenated and striped disks; with this, you can create a software-based
3801.1Seeh## disk array similar to a "RAID 0" setup.  See ccd(4).
3811.1Seeh
3821.1Seehpseudo-device	ccd	4
3831.51Selric
3841.51Selric## Cryptographic disk devices.  See cgd(4).
3851.51Selric
3861.51Selric#pseudo-device	cgd	4
3871.1Seeh
3881.1Seeh## RAIDframe disk driver: software RAID driver.  See raid(4).
3891.1Seeh
3901.29Sosterpseudo-device	raid	8
3911.29Sosteroptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
3921.29Soster# Options to enable various other RAIDframe RAID types.
3931.69Snakayama# options 	RF_INCLUDE_EVENODD=1
3941.69Snakayama# options 	RF_INCLUDE_RAID5_RS=1
3951.69Snakayama# options 	RF_INCLUDE_PARITYLOGGING=1
3961.69Snakayama# options 	RF_INCLUDE_CHAINDECLUSTER=1
3971.69Snakayama# options 	RF_INCLUDE_INTERDECLUSTER=1
3981.29Soster# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
3991.69Snakayama# options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
4001.29Soster
4011.1Seeh
4021.1Seeh## Memory disk device, used on boot floppies with compressed
4031.1Seeh## kernel-plus-root-disk images.
4041.1Seeh
4051.1Seehpseudo-device	md	1
4061.1Seeh
4071.1Seeh
4081.1Seeh#### Network interfaces
4091.1Seeh
4101.1Seeh## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
4111.1Seeh## Three flavors of additional SBus ethernets are available.  One attaches
4121.1Seeh## directly like the sun4c on-board, one uses the ledma device like the
4131.1Seeh## sun4m on-board, and one uses the lebuffer device.
4141.1Seeh
4151.8Seehledma0		at sbus? slot ? offset ?	# sun4m on-board
4161.8Seehle0		at ledma0			# sun4m on-board
4171.8Seehle*		at sbus? slot ? offset ?	# SBus
4181.8Seehledma*		at sbus? slot ? offset ?	# SBus
4191.8Seehle*		at ledma?			# SBus
4201.8Seehlebuffer0	at sbus? slot ? offset ?	# SBus
4211.8Seehle0		at lebuffer?			# SBus
4221.8Seehlebuffer*	at sbus? slot ? offset ?	# SBus
4231.8Seehle*		at lebuffer?			# SBus
4241.1Seeh
4251.1Seeh## Happy Meal Ethernet
4261.1Seehhme*		at sbus? slot ? offset ?
4271.39Sthorpejhme*		at pci?	dev ? function ?	# network "hme" compatible
4281.17Smatt
4291.18Seeh## qec/be, qec/hme
4301.18Seehqec*		at sbus? slot ? offset ?
4311.18Seehbe*		at qec?
4321.18Seehqe*		at qec?
4331.18Seeh
4341.18Seeh# PCI network interfaces
4351.18Seeh# 	UT marks untested.
4361.39Sthorpejan*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11) UT
4371.39Sthorpejen*	at pci? dev ? function ?	# ENI/Adaptec ATM UT
4381.18Seeh# XXX causes ICE
4391.39Sthorpej#ep*	at pci? dev ? function ?	# 3Com 3c59x
4401.61Stsutsuiex*	at pci? dev ? function ?	# 3Com 90x[B]
4411.61Stsutsuiepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
4421.39Sthorpejesh*	at pci? dev ? function ?	# Essential HIPPI card UT
4431.39Sthorpejfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI UT
4441.53Sgrantfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
4451.39Sthorpejgem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
4461.62Stsutsui# XXX lacks bus_dmamap_sync()
4471.62Stsutsui#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
4481.18Seeh# XXX uses vtophys()
4491.39Sthorpej#lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
4501.39Sthorpejne*	at pci? dev ? function ?	# NE2000-compatible Ethernet UT
4511.39Sthorpejntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial UT
4521.61Stsutsui# XXX cause uncorrectable DMA error
4531.61Stsutsui#pcn*	at pci? dev ? function ?	# PCnet-PCI Ethernet
4541.53Sgrantrtk*	at pci? dev ? function ?	# Realtek 8129/8139
4551.61Stsutsui# XXX cause uncorrectable DMA error
4561.61Stsutsui#sip*	at pci? dev ? function ?	# SiS 900 Ethernet
4571.39Sthorpejti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet UT
4581.39Sthorpejtl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
4591.39Sthorpejtlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
4601.39Sthorpejvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
4611.56Sgrantwi*	at pci? dev ? function ?	# Lucent/Intersil WaveLAN/IEEE
4621.1Seeh
4631.1Seeh# MII/PHY support
4641.1Seeh# XXX: only nsphy "tested"
4651.18Seehdmphy*	at mii? phy ?			# Davicom DM9101 PHYs
4661.18Seehexphy*	at mii? phy ?			# 3Com internal PHYs
4671.32Swizicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
4681.18Seehinphy*	at mii? phy ?			# Intel 82555 PHYs
4691.18Seehiophy*	at mii? phy ?			# Intel 82553 PHYs
4701.18Seehlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
4711.18Seehnsphy*	at mii? phy ?			# NS83840 PHYs
4721.18Seehnsphyter* at mii? phy ?			# NS83843 PHYs
4731.18Seehqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
4741.18Seehsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
4751.18Seehtlphy*	at mii? phy ?			# ThunderLAN PHYs
4761.18Seehtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
4771.18Seehukphy*	at mii? phy ?			# generic unknown PHYs
4781.18Seeh
4791.18Seeh# PCI USB controllers
4801.66Snakayamaehci*	at pci? dev ? function ?	# Enhanced Host Controller
4811.66Snakayamaohci*	at pci? dev ? function ?	# Open Host Controller
4821.66Snakayama
4831.66Snakayamausb*	at ehci?			# USB bus support
4841.66Snakayamausb*	at ohci?
4851.18Seeh
4861.20Seehuhub*	at usb?						# USB Hubs
4871.20Seehuhub*	at uhub? port ? configuration ? interface ?
4881.18Seeh
4891.28Saugustssuhidev*	at uhub? port ? configuration ? interface ?	# USB HID
4901.28Saugustssuhid*	at uhidev? reportid ?				# USB Generic HID
4911.28Saugustss
4921.20Seehulpt*	at uhub? port ? configuration ? interface ?	# USB Printer
4931.18Seeh
4941.20Seehumodem*	at uhub? port ? configuration ?			# USB Modem
4951.20Seehucom*	at umodem?
4961.18Seeh
4971.20Seehumass*	at uhub? port ? configuration ? interface ?	# USB Mass Storage
4981.18Seeh
4991.20Seehuaudio*	at uhub? port ? configuration ?			# USB audio
5001.18Seeh
5011.18Seeh# USB Ethernet adapters
5021.20Seehaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
5031.20Seehcue*	at uhub? port ?		# CATC USB-EL1201A based adapters
5041.20Seehkue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
5051.57Saugustssuax*	at uhub? port ?		# ASIX AX88172 based adapters
5061.57Saugustssurl*	at uhub? port ?		# Realtek RTL8150L based adapters
5071.20Seeh
5081.20Seehuscanner* at uhub? port ?				# USB scanners
5091.53Sgrantuyap*	at uhub? port ?					# Y@P firmware loader
5101.20Seehugen*	at uhub? port ? configuration ? interface ?	# USB Generic driver
5111.20Seeh
5121.20Seeh# PCI IEEE1394 controllers
5131.39Sthorpejfwohci*	at pci? dev ? function ?	# IEEE1394 Open Host Controller
5141.39Sthorpej#fwlynx* at pci? dev ? function ?	# IEEE1394 TI Lynx Controller
5151.25Slukemfw*	at fwbus?			# IP over 1394
5161.20Seeh
5171.20Seeh# IEEE1394 nodes
5181.66Snakayama#fwnode* at fwbus? idhi ? idlo ?
5191.66Snakayama#sbpscsi* at fwnode?
5201.1Seeh
5211.1Seeh## Loopback network interface; required
5221.1Seehpseudo-device	loop
5231.1Seeh
5241.1Seeh## SLIP and CSLIP interfaces, for IP over a serial line.
5251.1Seehpseudo-device	sl		2
5261.1Seeh
5271.1Seeh## PPP, the successor to SLIP.  See pppd(8).
5281.1Seehpseudo-device	ppp		2
5291.27Smartin
5301.27Smartin## PPP over Ethernet (RFC 2516)
5311.27Smartinpseudo-device	pppoe
5321.1Seeh
5331.1Seeh## Starmode Radio IP, a special hardware network device.
5341.1Seehpseudo-device	strip		1
5351.1Seeh
5361.1Seeh## Network "tunnel" device, allowing protocol stacks to run in the userland.
5371.1Seeh## This is used by the third-party user-mode "ppp" program, and others.
5381.1Seehpseudo-device	tun		4
5391.1Seeh
5401.1Seeh## Generic L3 over IP tunnel
5411.1Seeh#pseudo-device	gre		2	# generic L3 over IP tunnel
5421.1Seeh
5431.1Seeh## Berkeley Packet Filter, required to run RARPD.  A generic C-language
5441.1Seeh## interface that allows selective examining of incoming packets.
5451.1Seehpseudo-device	bpfilter	8
5461.58Sseb
5471.58Sseb## IEEE 802.1q encapsulation
5481.58Ssebpseudo-device	vlan
5491.19Satatat
5501.19Satatat## Simple inter-network traffic bridging
5511.19Satatatpseudo-device	bridge
5521.69Snakayama#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
5531.1Seeh
5541.1Seeh## IP Filter, used in firewall and NAT applications.  See ipnat(8) for
5551.1Seeh## one example of the use of the IP Filter.
5561.1Seehpseudo-device	ipfilter
5571.1Seeh
5581.1Seeh## for IPv6
5591.1Seehpseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
5601.1Seeh#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
5611.1Seeh#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
5621.60Snakayama
5631.60Snakayama
5641.60Snakayama#### CardBus and PCMCIA devices
5651.60Snakayama
5661.60Snakayama# PCI CardBus bridge support
5671.60Snakayama#cbb*	at pci? dev ? function ?
5681.60Snakayama#cardslot* at cbb?
5691.60Snakayama
5701.60Snakayama# CardBus bus support
5711.60Snakayama#cardbus* at cardslot?
5721.60Snakayama#pcmcia* at cardslot?
5731.60Snakayama
5741.60Snakayama## CardBus cards; UT marks untested.
5751.60Snakayama
5761.60Snakayama# CardBus serial interfaces
5771.60Snakayama#com*	at cardbus? dev ? function ?	# Modems and serial cards UT
5781.60Snakayama
5791.60Snakayama# CardBus SCSI controllers
5801.60Snakayama#adv*	at cardbus? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
5811.60Snakayama#ahc*	at cardbus? dev ? function ?	# Adaptec ADP-1480 UT
5821.60Snakayama
5831.60Snakayama# CardBus network interfaces
5841.60Snakayama#ex*	at cardbus? dev ? function ?	# 3Com 3C575TX UT
5851.60Snakayama#fxp*	at cardbus? dev ? function ?	# Intel i8255x UT
5861.60Snakayama#rtk*	at cardbus? dev ? function ?	# Realtek 8129/8139 UT
5871.60Snakayama#tlp*	at cardbus? dev ? function ?	# DECchip 21143 UT
5881.60Snakayama
5891.60Snakayama# CardBus USB controllers
5901.60Snakayama#ehci*	at cardbus? dev ? function ?	# Enhanced Host Controller
5911.60Snakayama#ohci*	at cardbus? dev ? function ?	# Open Host Controller
5921.60Snakayama
5931.60Snakayama# CardBus IEEE1394 controllers
5941.60Snakayama#fwohci* at cardbus? dev ? function ?	# IEEE1394 Open Host Controller UT
5951.60Snakayama
5961.60Snakayama## PCMCIA cards; UT marks untested.
5971.60Snakayama
5981.60Snakayama# PCMCIA serial interfaces
5991.60Snakayama#com*	at pcmcia? function ?		# Modems and serial cards
6001.60Snakayama
6011.60Snakayama#pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards UT
6021.60Snakayama#com*	at pcmcom? slave ?		# ...and the slave devices
6031.60Snakayama
6041.60Snakayama# PCMCIA SCSI controllers
6051.60Snakayama#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI UT
6061.60Snakayama#esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI UT
6071.60Snakayama
6081.60Snakayama# PCMCIA IDE controllers
6091.60Snakayama#wdc*	at pcmcia? function ?
6101.60Snakayama
6111.60Snakayama# PCMCIA network interfaces
6121.60Snakayama#an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11) UT
6131.60Snakayama#awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS) UT
6141.60Snakayama#cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer UT
6151.60Snakayama#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
6161.60Snakayama#mbe*	at pcmcia? function ?		# MB8696x based Ethernet UT
6171.60Snakayama#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
6181.60Snakayama#ray*	at pcmcia? function ?		# Raytheon Raylink (802.11) UT
6191.60Snakayama#sm*	at pcmcia? function ?		# Megahertz Ethernet UT
6201.60Snakayama# tr at pcmcia has problems with Cardbus bridges
6211.60Snakayama#tr*	at pcmcia? function ?		# TROPIC based Token-Ring UT
6221.60Snakayama#wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
6231.60Snakayama#xi*	at pcmcia? function ?		# Xircom CreditCard Ethernet UT
6241.60Snakayama
6251.60Snakayama#mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
6261.60Snakayama#com*	at mhzc?
6271.60Snakayama#sm*	at mhzc?
6281.1Seeh
6291.1Seeh
6301.1Seeh#### Audio and video devices
6311.1Seeh
6321.1Seeh## /dev/audio support (`audiocs' plus `audio')
6331.1Seeh##
6341.8Seehaudiocs*	at sbus? slot ? offset ?	# SUNW,CS4231
6351.40Smartinaudiocs*	at ebus?			# SUNW,CS4231 in U5/U10
6361.39Sthorpejautri*		at pci? dev ? function ?	# Blade 100 'sound'
6371.31Seeh
6381.65Snakayamaaudio*		at audiobus?
6391.38Seeh
6401.65Snakayama#midi*		at midibus?
6411.1Seeh
6421.1Seeh
6431.1Seeh## Sun "bwtwo" black and white framebuffer, found on sun4, sun4c, and sun4m
6441.1Seeh## systems.  If your sun4 system has a cgfour installed in the P4 slot,
6451.1Seeh## the P4 entries for "bwtwo" will attach to the overlay plane of the
6461.1Seeh## "cgfour".
6471.1Seeh
6481.8Seeh#bwtwo0		at sbus? slot ? offset ?	# sun4c and sun4m
6491.8Seeh#bwtwo*		at sbus? slot ? offset ?
6501.1Seeh
6511.1Seeh## Sun "cgthree" Sbus color framebuffer
6521.1Seeh#cgthree0	at sbus? slot ? offset ?
6531.1Seeh#cgthree*	at sbus? slot ? offset ?
6541.1Seeh
6551.1Seeh## Sun "cgsix" accelerated color framebuffer.
6561.1Seehcgsix0		at sbus? slot ? offset ?
6571.1Seehcgsix*		at sbus? slot ? offset ?
6581.1Seeh
6591.1Seeh## Sun FFB not supported
6601.1Seeh#ffb*		at upa?
6611.1Seeh
6621.1Seeh#### Other device configuration
6631.1Seeh
6641.1Seeh## Pseudo ttys, required for network logins and programs like screen.
6651.1Seeh
6661.7Sjdolecekpseudo-device	pty			# pseudo-ttys (for network, etc.)
6671.1Seeh
6681.1Seeh## Random device, used to implement /dev/random (a source of random noise),
6691.1Seeh## and generate randomness for some kernel formulae.
6701.1Seeh
6711.1Seehpseudo-device	rnd
6721.41Slukem
6731.41Slukempseudo-device	clockctl		# user control of clock subsystem
6741.64Sraggepseudo-device	ksyms			# /dev/ksyms
675