GENERIC revision 1.163
11.163Schristos# $NetBSD: GENERIC,v 1.163 2013/03/12 21:41:40 christos Exp $
21.45Sgmcgarry#
31.45Sgmcgarry# GENERIC machine description file
41.53Stsutsui#
51.45Sgmcgarry# This machine description file is used to generate the default NetBSD
61.45Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.45Sgmcgarry# and device drivers, but should be useful for most applications.
81.45Sgmcgarry#
91.45Sgmcgarry# The machine description file can be customised for your specific
101.45Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.45Sgmcgarry#
121.45Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.45Sgmcgarry# man page.
141.45Sgmcgarry#
151.45Sgmcgarry# For further information on hardware support for this architecture, see
161.45Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.45Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.45Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.45Sgmcgarry# device.
201.1Seeh
211.53Stsutsuiinclude	"arch/sparc64/conf/std.sparc64"
221.53Stsutsui
231.53Stsutsuioptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.53Stsutsui
251.163Schristos#ident 		"GENERIC-$Revision: 1.163 $"
261.53Stsutsui
271.53Stsutsuimaxusers	64
281.53Stsutsui
291.53Stsutsui## System kernel configuration.  See options(4) for more detail.
301.53Stsutsui
311.53Stsutsui
321.53Stsutsui# Options for variants of the Sun SPARC architecure.
331.53Stsutsuioptions 	SUN4U		# sun4u - UltraSPARC
341.53Stsutsui#options 	BLINK		# blink the system LED
351.53Stsutsui
361.53Stsutsui#### System options that are the same for all ports
371.53Stsutsui
381.53Stsutsui## Root device configuration: change the ?'s if you are going to use a
391.53Stsutsui## nonstandard root partition (other than where the kernel is booted from)
401.53Stsutsui## and/or nonstandard root type (not ffs or nfs).  Normally this can be
411.53Stsutsui## automagically determined at boot time.
421.53Stsutsui
431.53Stsutsuiconfig		netbsd	root on ? type ?
441.53Stsutsui
451.53Stsutsui## UVM options.
461.53Stsutsui#options 	UVM_PAGE_TRKOWN
471.53Stsutsui#options 	UVMHIST
481.53Stsutsui#options 	UVMHIST_PRINT	# Loud!
491.53Stsutsui
501.53Stsutsui## System call tracing (see ktrace(1)).
511.53Stsutsuioptions 	KTRACE
521.23Shubertf
531.53Stsutsui## Collect statistics on kernel malloc's and free's.  This does have a
541.53Stsutsui## significant performance hit on slower machines, so it is intended for
551.53Stsutsui## diagnostic use only.
561.53Stsutsui#options 	KMEMSTATS
571.43Sthorpej
581.53Stsutsui## System V compatible IPC subsystem.  (msgctl(2), semctl(2), and shmctl(2))
591.53Stsutsuioptions 	SYSVMSG		# System V message queues
601.53Stsutsuioptions 	SYSVSEM		# System V semaphores
611.53Stsutsuioptions 	SYSVSHM		# System V shared memory
621.41Seeh
631.163Schristosoptions		MODULAR		# new style module(7) framework
641.163Schristos
651.53Stsutsuioptions 	USERCONF	# userconf(4) support
661.53Stsutsui#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
671.53Stsutsuioptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
681.53Stsutsui
691.53Stsutsui# Enable experimental buffer queue strategy for better responsiveness under 
701.53Stsutsui# high disk I/O load. Use it with caution - it's not proven to be stable yet.
711.53Stsutsui#options 	BUFQ_READPRIO
721.53Stsutsui#options 	BUFQ_PRIOCSCAN
731.53Stsutsui
741.53Stsutsui## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
751.53Stsutsuioptions 	NFS_BOOT_BOOTPARAM
761.53Stsutsui#options 	NFS_BOOT_BOOTP
771.53Stsutsuioptions 	NFS_BOOT_DHCP
781.53Stsutsui
791.53Stsutsui#### Debugging options
801.53Stsutsui
811.53Stsutsui## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
821.53Stsutsui## serial console break or keyboard reset, where the PROM would normally
831.53Stsutsui## intercept.  DDB_HISTORY_SIZE adds up/down arrow command history.
841.53Stsutsui# we enable DDB in GENERIC for now.
851.53Stsutsuioptions 	DDB			# kernel dynamic debugger
861.53Stsutsuioptions 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
871.91Smartinoptions 	DDB_VERBOSE_HELP	# enable verbose online help
881.62Sjnemeth#options 	DDB_ONPANIC=1		# see also sysctl(8): `ddb.onpanic'
891.53Stsutsui
901.53Stsutsui## You may also use gdb, on another computer connected to this machine over
911.53Stsutsui## a serial port.
921.71Smartin# options 	KGDB
931.71Smartin# options 	KGDB_DEVNAME="\"sabtty1\""	# kgdb device name
941.71Smartin# options 	KGDB_DEVRATE=38400		# baud rate (defaults to 9600)
951.53Stsutsui
961.53Stsutsui
971.53Stsutsui## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
981.53Stsutsui## such that gdb(1) can be used on a kernel coredump.
991.41Seeh
1001.139Smartin#makeoptions	DEBUG="-g"
1011.53Stsutsui
1021.53Stsutsui
1031.53Stsutsui## Adds code to the kernel that does internal consistency checks, and will
1041.53Stsutsui## cause the kernel to panic if corruption of internal data structures
1051.53Stsutsui## is detected.
1061.140Smartinoptions 	DIAGNOSTIC	# extra kernel sanity checking
1071.53Stsutsui
1081.53Stsutsui## Enable (possibly expensive) debugging code that may also display messages
1091.53Stsutsui## on the system console
1101.41Seeh#options 	DEBUG
1111.53Stsutsui#options 	LOCKDEBUG
1121.41Seeh#options 	SYSCALL_DEBUG
1131.53Stsutsui
1141.53Stsutsui## Make SCSI error messages more verbose when explaining their meanings.
1151.53Stsutsuioptions 	SCSIVERBOSE
1161.53Stsutsuioptions 	PCIVERBOSE
1171.53Stsutsuioptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1181.53Stsutsui#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1191.53Stsutsui
1201.53Stsutsui## `INSECURE' turns off the kernel security level (securelevel = 0 always).
1211.53Stsutsui## This allows writing to /dev/mem, loading kernel modules while multi-user,
1221.53Stsutsui## and other insecurities good only for development work.  Do not use this
1231.53Stsutsui## option on a production machine.
1241.53Stsutsui#options 	INSECURE
1251.53Stsutsui
1261.53Stsutsui## `FDSCRIPTS' allows non-readable but executable scripts by providing a
1271.53Stsutsui## pre-opened opaque file to the script interpreter.  `SETUIDSCRIPTS',
1281.53Stsutsui## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
1291.53Stsutsui## opaque file mechanism.  Perl calls this "secure setuid scripts."
1301.53Stsutsui
1311.53Stsutsui#options 	FDSCRIPTS
1321.53Stsutsui#options 	SETUIDSCRIPTS
1331.53Stsutsui
1341.53Stsutsui## Options for compatibility with previous releases foreign system binaries.
1351.53Stsutsui## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
1361.53Stsutsui## additional user-level utilities or system configuration files. See
1371.53Stsutsui## compat_sunos(8) and compat_svr4(8).
1381.53Stsutsui
1391.53Stsutsuioptions 	COMPAT_43	# 4.3BSD system interfaces
1401.53Stsutsuioptions 	COMPAT_09	# NetBSD 0.9 binary compatibility
1411.53Stsutsuioptions 	COMPAT_10	# NetBSD 1.0 binary compatibility
1421.53Stsutsuioptions 	COMPAT_11	# NetBSD 1.1 binary compatibility
1431.53Stsutsuioptions 	COMPAT_12	# NetBSD 1.2 binary compatibility
1441.53Stsutsuioptions 	COMPAT_13	# NetBSD 1.3 binary compatibility
1451.53Stsutsuioptions 	COMPAT_14	# NetBSD 1.4 binary compatibility
1461.53Stsutsuioptions 	COMPAT_15	# NetBSD 1.5 binary compatibility
1471.53Stsutsuioptions 	COMPAT_16	# NetBSD 1.6 binary compatibility
1481.53Stsutsuioptions 	COMPAT_20	# NetBSD 2.0 binary compatibility
1491.53Stsutsuioptions 	COMPAT_30	# NetBSD 3.0 binary compatibility
1501.100Stsutsuioptions 	COMPAT_40	# NetBSD 4.0 binary compatibility
1511.109Smrgoptions 	COMPAT_50	# NetBSD 5.0 compatibility.
1521.154Sapboptions 	COMPAT_60	# NetBSD 6.0 compatibility.
1531.53Stsutsuioptions 	COMPAT_SUNOS	# SunOS 4.x binary compatibility
1541.53Stsutsuioptions 	COMPAT_SVR4	# SunOS 5.x binary compatibility
1551.53Stsutsuioptions 	COMPAT_SVR4_32	# SunOS 5.x 32-bit binary compatibility -- 64-bit only
1561.53Stsutsuioptions 	COMPAT_NETBSD32	# NetBSD/sparc binary compatibility -- 64-bit only
1571.53Stsutsuioptions 	EXEC_AOUT	# execve(2) support for a.out binaries
1581.53Stsutsuioptions 	EXEC_ELF32	# Exec module for SunOS 5.x binaries.
1591.53Stsutsui
1601.53Stsutsui#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
1611.53Stsutsuioptions		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
1621.53Stsutsui
1631.53Stsutsui## File systems.  You probably need at least one of FFS or NFS.
1641.53Stsutsuifile-system	FFS		# Berkeley Fast Filesystem
1651.53Stsutsuifile-system	NFS		# Sun NFS-compatible filesystem client
1661.53Stsutsuifile-system	KERNFS		# kernel data-structure filesystem
1671.53Stsutsuifile-system	NULLFS		# NULL layered filesystem
1681.53Stsutsuifile-system 	OVERLAY		# overlay file system
1691.53Stsutsuifile-system	MFS		# memory-based filesystem
1701.53Stsutsuifile-system	FDESC		# user file descriptor filesystem
1711.53Stsutsuifile-system	UMAPFS		# uid/gid remapping filesystem
1721.53Stsutsuifile-system	LFS		# Log-based filesystem (still experimental)
1731.114Spookafile-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
1741.53Stsutsuifile-system	PROCFS		# /proc
1751.53Stsutsuifile-system	CD9660		# ISO 9660 + Rock Ridge file system
1761.53Stsutsuifile-system	UNION		# union file system
1771.53Stsutsuifile-system	MSDOSFS		# MS-DOS FAT filesystem(s).
1781.53Stsutsuifile-system	PTYFS		# /dev/pts/N support
1791.53Stsutsuifile-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
1801.77Sjmmvfile-system	TMPFS		# Efficient memory file-system
1811.53Stsutsui#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
1821.53Stsutsui
1831.53Stsutsui## File system options.
1841.53Stsutsuioptions 	NFSSERVER	# Sun NFS-compatible filesystem server
1851.134Sbouyeroptions 	QUOTA		# legacy UFS quotas
1861.134Sbouyeroptions 	QUOTA2		# new, in-filesystem UFS quotas
1871.53Stsutsui#options 	FFS_EI		# FFS Endian Independent support
1881.146Sdhollandoptions 	WAPBL		# File system journaling support
1891.53Stsutsui#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1901.53Stsutsui
1911.53Stsutsui## Network protocol support.  In most environments, INET is required.
1921.53Stsutsuioptions 	INET		# IP (Internet Protocol) v4
1931.53Stsutsuioptions 	INET6		# IPV6
1941.53Stsutsui#options 	IPSEC		# IP security
1951.53Stsutsui#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
1961.53Stsutsui#options 	IPSEC_DEBUG	# debug for IP security
1971.53Stsutsui#options 	GATEWAY		# packet forwarding ("router switch")
1981.53Stsutsuioptions 	MROUTING	# packet forwarding of multicast packets
1991.53Stsutsuioptions 	PIM		# Protocol Independent Multicast
2001.53Stsutsui#options 	DIRECTED_BROADCAST	# allow broadcasts through routers
2011.53Stsutsuioptions 	NETATALK	# AppleTalk (over Ethernet) protocol
2021.53Stsutsuioptions 	NTP		# Network Time Protocol in-kernel support
2031.53Stsutsui#options 	PPS_SYNC	# Add serial line synchronization for NTP
2041.150Snakayamaoptions 	PFIL_HOOKS	# Add pfil(9) packet filter hooks
2051.53Stsutsuioptions 	IPFILTER_LOG	# Add ipmon(8) logging for ipfilter device
2061.64Schristosoptions 	IPFILTER_LOOKUP	# ippool(8) support
2071.126Smrgoptions 	IPFILTER_COMPAT # Compat for IP-Filter
2081.53Stsutsui#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
2091.53Stsutsuioptions 	PPP_BSDCOMP	# Add BSD compression to ppp device
2101.53Stsutsuioptions 	PPP_DEFLATE	# Add deflate (libz) compression to ppp device
2111.53Stsutsuioptions 	PPP_FILTER	# Add active filters for ppp (via bpf)
2121.53Stsutsui#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
2131.53Stsutsui
2141.53Stsutsui#options 	ALTQ		# Manipulate network interfaces' output queues
2151.53Stsutsui#options 	ALTQ_BLUE	# Stochastic Fair Blue
2161.53Stsutsui#options 	ALTQ_CBQ	# Class-Based Queueing
2171.53Stsutsui#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
2181.53Stsutsui#options 	ALTQ_FIFOQ	# First-In First-Out Queue
2191.53Stsutsui#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
2201.53Stsutsui#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
2211.53Stsutsui#options 	ALTQ_LOCALQ	# Local queueing discipline
2221.53Stsutsui#options 	ALTQ_PRIQ	# Priority Queueing
2231.53Stsutsui#options 	ALTQ_RED	# Random Early Detection
2241.53Stsutsui#options 	ALTQ_RIO	# RED with IN/OUT
2251.53Stsutsui#options 	ALTQ_WFQ	# Weighted Fair Queueing
2261.53Stsutsui
2271.53Stsutsui
2281.123Smrg#### Main bus and CPUs .. all systems.
2291.53Stsutsuimainbus0 at root
2301.123Smrgoptions 	MULTIPROCESSOR		# include multiprocessor support
2311.123Smrgcpu* 		at mainbus0		# declare additional CPUs
2321.53Stsutsui
2331.53Stsutsui#### Bus types found on SPARC systems.
2341.53Stsutsui
2351.53Stsutsuisbus*	at mainbus0				# SBus-based systems
2361.53Stsutsuipsycho*	at mainbus0				# PCI-based systems
2371.117Smrgschizo*	at mainbus?
2381.135Smrgpyro*	at mainbus?
2391.142Smrgcentral* at mainbus?
2401.142Smrgfhc*	at mainbus?
2411.53Stsutsuipci*	at psycho?
2421.117Smrgpci*	at schizo?
2431.135Smrgpci*	at pyro?
2441.53Stsutsuipci*	at ppb?
2451.142Smrgppb*	at pci?
2461.142Smrgfhc*	at central?
2471.135Smrgebus*	at mainbus0				# ebus devices
2481.53Stsutsuiebus*	at pci?					# ebus devices
2491.53Stsutsui# XXX 'puc's aren't really bridges, but there's no better place for them here
2501.53Stsutsuipuc*	at pci? dev ? function ?		# PCI "universal" comm. cards
2511.53Stsutsui
2521.53Stsutsui#### Standard system devices -- all required for a given architecture
2531.53Stsutsui
2541.53Stsutsui## PROM console driver -- if all else fails
2551.53Stsutsuipcons0	at mainbus0				# PROM console
2561.53Stsutsui
2571.53Stsutsui## Auxiliary system registers -- We use the OBP for power management
2581.53Stsutsuiauxio*	at ebus?				# auxio registers
2591.53Stsutsuiauxio*	at sbus? slot ? offset ?		# auxio registers
2601.53Stsutsui
2611.53Stsutsui# We also need:
2621.53Stsutsuibpp*	at sbus? slot ? offset ?		# parallel port
2631.53Stsutsuilpt*	at ebus?				# parallel port
2641.53Stsutsui
2651.74Stsutsui## Mostek clock found on sbus on Ultra-1,2 systems
2661.74Stsutsui## and found on ebus on Ultra-5 and other systems.
2671.53Stsutsuiclock*	at sbus? slot ? offset ?
2681.142Smrgclock*	at fhc?
2691.53Stsutsuiclock*	at ebus?
2701.74Stsutsui
2711.74Stsutsui## DS1287 compatible clock found on ebus on Netra X1 and other systems.
2721.53Stsutsuirtc*	at ebus?
2731.53Stsutsui
2741.53Stsutsui## Timer chip found on 4/300, sun4c, sun4m and (some) sun4u systems.
2751.53Stsutsuitimer*	at mainbus0				# sun4c
2761.53Stsutsui
2771.53Stsutsui#### Serial port configuration
2781.53Stsutsui
2791.53Stsutsui## Zilog 8530 serial chips.  Each has two-channels.
2801.53Stsutsui## zs0 is ttya and ttyb.  zs1 is the keyboard and mouse.
2811.53Stsutsuizs*	at sbus? slot ? offset ?
2821.142Smrgzs*	at fhc?
2831.142Smrgzstty*	at zs? channel ?			# ttys
2841.53Stsutsuikbd0	at zstty?
2851.53Stsutsuims0	at zstty?
2861.53Stsutsui
2871.53Stsutsui## PCI machines have serial ports:
2881.53Stsutsui##	Siemens SAB82532 controller: ttya and ttyb (`su'; sab)
2891.53Stsutsui##	Part of NS PC87332VLJ Super I/O controller: kbd/mouse (`se'; com)
2901.53Stsutsui
2911.53Stsutsui## The SAB82532 controller has two serial ports
2921.53Stsutsuisab*	at ebus?				# ttya/ttyb
2931.53Stsutsuisabtty*	at sab? channel ?
2941.53Stsutsui
2951.53Stsutsui## Part of a PC87332VLJ
2961.53Stsutsuicom*	at ebus?				# `com' driver for `su'
2971.53Stsutsuikbd0	at com?					# keyboard
2981.53Stsutsuims0	at com?					# mouse
2991.53Stsutsui
3001.153Sjdc## Tadpole SPARCle PS/2 keyboard and mouse
3011.153Sjdcpckbc* 		at ebus?                # PC keyboard controller
3021.153Sjdcpckbd* 		at pckbc?               # PC keyboard
3031.153Sjdcpms* 		at pckbc?               # PS/2 mouse for wsmouse
3041.153Sjdcoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
3051.153Sjdcwskbd* 		at pckbd? console ?
3061.153Sjdcwsmouse* 	at pms? mux 0
3071.153Sjdc
3081.53Stsutsui## Magma Serial/Parallel driver (not tested)
3091.53Stsutsui#magma*	at sbus? slot ? offset ?
3101.53Stsutsui#mtty*	at magma?
3111.53Stsutsui#mbpp*	at magma?
3121.53Stsutsui
3131.108Shauke## SUNW,spif Serial/Parallel driver
3141.108Shaukespif*  at sbus? slot ? offset ?
3151.108Shaukestty*  at spif?
3161.108Shaukesbpp*  at spif?
3171.53Stsutsui
3181.53Stsutsui## PCI serial interfaces
3191.53Stsutsuicom*	at puc? port ?			# 16x50s on "universal" comm boards
3201.53Stsutsuicy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
3211.53Stsutsuicz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
3221.53Stsutsui
3231.61Sjnemeth# PCI cryptographic devices
3241.61Sjnemethhifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
3251.61Sjnemethubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
3261.61Sjnemeth
3271.53Stsutsui
3281.53Stsutsui#### Disk controllers and disks
3291.53Stsutsui
3301.53Stsutsui## The following flags may be set for the NCR53c94 based esp driver:
3311.53Stsutsui##	bits 0-7:  disable disconnect/reselect for the corresponding target
3321.53Stsutsui##	bits 8-15: disable synchronous negotiation for target [bit-8]
3331.53Stsutsui##	bits 16-23: disable tagged queuing for target [bit-16]
3341.53Stsutsui
3351.53Stsutsui## sun4u on-board SCSI, and FSBE/S SBus SCSI cards, an NCR53c94 or
3361.53Stsutsui## equivalent behind an LSI Logic DMA controller
3371.53Stsutsui
3381.53Stsutsuidma*	at sbus? slot ? offset ?		# SBus
3391.53Stsutsuiesp*	at dma?					# SBus
3401.53Stsutsui
3411.53Stsutsuiesp*	at sbus? slot ? offset ?
3421.53Stsutsuiisp*	at sbus? slot ? offset ?
3431.53Stsutsuiisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
3441.53Stsutsuisiop*	at pci? 			# 53C8xx ("glm" compatible)
3451.53Stsutsuiesiop*	at pci? 			# 53C875 and newer ("glm" compatible)
3461.53Stsutsui
3471.53Stsutsui# PCI SCSI controllers
3481.53Stsutsui# 	UT marks untested.
3491.53Stsutsuiadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
3501.53Stsutsuiadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI UT
3511.53Stsutsuiahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
3521.53Stsutsuibha*	at pci? dev ? function ?	# BusLogic 9xx SCSI UT
3531.53Stsutsuidpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID UT
3541.53Stsutsuiiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
3551.125Schsmpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030
3561.53Stsutsuinjs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
3571.53Stsutsuipcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3581.53Stsutsuitrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
3591.53Stsutsui
3601.53Stsutsuiscsibus* at scsi?
3611.53Stsutsui
3621.53Stsutsui## These entries find devices on all SCSI busses and assign
3631.53Stsutsui## unit numbers dynamically.
3641.53Stsutsuisd*	at scsibus? target ? lun ?		# SCSI disks
3651.53Stsutsuist*	at scsibus? target ? lun ?		# SCSI tapes
3661.53Stsutsuicd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
3671.53Stsutsuich*	at scsibus? target ? lun ?		# SCSI changer devices
3681.53Stsutsuiss*	at scsibus? target ? lun ?		# SCSI scanners
3691.53Stsutsuises*	at scsibus? target ? lun ?		# SCSI SES/SAF-TE devices
3701.53Stsutsuiuk*	at scsibus? target ? lun ?		# unknown SCSI
3711.53Stsutsui
3721.53Stsutsui# IDE and related devices
3731.53Stsutsui# PCI IDE controllers - see pciide(4) for supported hardware.
3741.53Stsutsui# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3751.53Stsutsui# how to set up DMA modes for this chip. This may work, or may cause
3761.53Stsutsui# a machine hang with some controllers.
3771.53Stsutsuipciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
3781.53Stsutsuiacardide* at pci? dev ? function ?	# Acard IDE controllers
3791.53Stsutsuiaceride* at pci? dev ? function ?	# Acer Lab IDE controllers
3801.53Stsutsuiartsata* at pci? dev ? function ?	# Intel i31244 SATA controller
3811.53Stsutsuicmdide* at pci? dev ? function ?	# CMD tech IDE controllers
3821.53Stsutsuicypide* at pci? dev ? function ?	# Cypress IDE controllers
3831.53Stsutsuihptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
3841.53Stsutsuioptiide* at pci? dev ? function ?	# Opti IDE controllers
3851.53Stsutsuipdcide* at pci? dev ? function ?	# Promise IDE controllers
3861.53Stsutsuipdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
3871.53Stsutsuisatalink* at pci? dev ? function ?	# SiI SATALink controllers
3881.53Stsutsuisiside* at pci? dev ? function ?	# SiS IDE controllers
3891.53Stsutsuislide*  at pci? dev ? function ?	# Symphony Labs IDE controllers
3901.53Stsutsuiviaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
3911.53Stsutsui
3921.53Stsutsui# ATA (IDE) bus support
3931.53Stsutsuiatabus* at ata?
3941.53Stsutsuiatapibus* at atapi?
3951.53Stsutsui
3961.53Stsutsui# IDE drives
3971.53Stsutsui# Flags are used only with controllers that support DMA operations
3981.53Stsutsui# and mode settings (e.g. some pciide controllers)
3991.53Stsutsui# The lowest order four bits (rightmost digit) of the flags define the PIO
4001.53Stsutsui# mode to use, the next set of four bits the DMA mode and the third set the
4011.53Stsutsui# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
4021.53Stsutsui# to use, and the last bit must be 1 for this setting to be used.
4031.53Stsutsui# For DMA and UDMA, 0xf (1111) means 'disable'.
4041.53Stsutsui# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
4051.53Stsutsui# (0xc=1100, 0xa=1010, 0xf=1111)
4061.53Stsutsui# 0x0000 means "use whatever the drive claims to support".
4071.127Snakayamawd*	at atabus? drive ? flags 0x0000
4081.53Stsutsui
4091.53Stsutsuicd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
4101.53Stsutsuisd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
4111.53Stsutsuiuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
4121.53Stsutsui
4131.53Stsutsui# RAID controllers and devices (untested)
4141.53Stsutsuicac*	at pci? dev ? function ?	# Compaq PCI array controllers
4151.53Stsutsuimlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
4161.53Stsutsuitwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
4171.53Stsutsui
4181.53Stsutsuild*	at cac? unit ?			# logical disk devices
4191.53Stsutsuild*	at twe? unit ?
4201.53Stsutsuild*	at mlx? unit ?
4211.53Stsutsui
4221.53Stsutsui## Floppy controller and drive found on SPARCstations.
4231.53Stsutsui
4241.53Stsutsui# need share with the sparc, and everyone else.  needs to use auxio.
4251.53Stsutsui# actually, the ebus version has (will have) direct access to it's AUXIO
4261.53Stsutsui# register space (it is mapped in to fdthree not auxio).
4271.70Sjnemethfdc0	at sbus? slot ? offset ?		# SUNW,fdtwo
4281.70Sjnemeth#fdc0	at ebus?				# fdthree, EXPERIMENTAL
4291.70Sjnemethfd*	at fdc0 	 			# the drive itself
4301.53Stsutsui
4311.102Stls#
4321.102Stls# accept filters
4331.102Stlspseudo-device   accf_data		# "dataready" accept filter
4341.102Stlspseudo-device   accf_http		# "httpready" accept filter
4351.102Stls
4361.53Stsutsui## A disk-like interface to files.  Can be used to create floppy, CD,
4371.53Stsutsui## miniroot images, etc.
4381.53Stsutsui
4391.143Sjakllschpseudo-device	vnd
4401.53Stsutsui#options 	VND_COMPRESSION		# compressed vnd(4)
4411.53Stsutsui
4421.53Stsutsui## Concatenated and striped disks; with this, you can create a software-based
4431.53Stsutsui## disk array similar to a "RAID 0" setup.  See ccd(4).
4441.53Stsutsui
4451.53Stsutsuipseudo-device	ccd	4
4461.53Stsutsui
4471.53Stsutsui## Cryptographic disk devices.  See cgd(4).
4481.53Stsutsui
4491.147Smartinpseudo-device	cgd	4
4501.53Stsutsui
4511.53Stsutsui## RAIDframe disk driver: software RAID driver.  See raid(4).
4521.53Stsutsui
4531.53Stsutsuipseudo-device	raid	8
4541.53Stsutsuioptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
4551.53Stsutsui# Options to enable various other RAIDframe RAID types.
4561.53Stsutsui# options 	RF_INCLUDE_EVENODD=1
4571.53Stsutsui# options 	RF_INCLUDE_RAID5_RS=1
4581.53Stsutsui# options 	RF_INCLUDE_PARITYLOGGING=1
4591.53Stsutsui# options 	RF_INCLUDE_CHAINDECLUSTER=1
4601.53Stsutsui# options 	RF_INCLUDE_INTERDECLUSTER=1
4611.53Stsutsui# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
4621.53Stsutsui# options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
4631.53Stsutsui
4641.53Stsutsui
4651.53Stsutsui## Memory disk device, used on boot floppies with compressed
4661.53Stsutsui## kernel-plus-root-disk images.
4671.53Stsutsui
4681.143Sjakllschpseudo-device	md
4691.53Stsutsui
4701.53Stsutsui
4711.53Stsutsui#### Network interfaces
4721.53Stsutsui
4731.53Stsutsui## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
4741.53Stsutsui## Three flavors of additional SBus ethernets are available.  One attaches
4751.53Stsutsui## directly like the sun4c on-board, one uses the ledma device like the
4761.53Stsutsui## sun4m on-board, and one uses the lebuffer device.
4771.53Stsutsui
4781.53Stsutsuiledma0		at sbus? slot ? offset ?	# sun4m on-board
4791.53Stsutsuile0		at ledma0			# sun4m on-board
4801.53Stsutsuile*		at sbus? slot ? offset ?	# SBus
4811.53Stsutsuiledma*		at sbus? slot ? offset ?	# SBus
4821.53Stsutsuile*		at ledma?			# SBus
4831.53Stsutsuilebuffer0	at sbus? slot ? offset ?	# SBus
4841.53Stsutsuile0		at lebuffer?			# SBus
4851.53Stsutsuilebuffer*	at sbus? slot ? offset ?	# SBus
4861.53Stsutsuile*		at lebuffer?			# SBus
4871.53Stsutsui
4881.53Stsutsui## Happy Meal Ethernet
4891.53Stsutsuihme*		at sbus? slot ? offset ?
4901.53Stsutsuihme*		at pci?	dev ? function ?	# network "hme" compatible
4911.53Stsutsui
4921.53Stsutsui## qec/be, qec/hme
4931.53Stsutsuiqec*		at sbus? slot ? offset ?
4941.53Stsutsuibe*		at qec?
4951.53Stsutsuiqe*		at qec?
4961.53Stsutsui
4971.53Stsutsui# PCI network interfaces
4981.53Stsutsui# 	UT marks untested.
4991.53Stsutsuian*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11) UT
5001.53Stsutsuiath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11 UT
5011.117Smrgbge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
5021.132Smartinbnx*	at pci? dev ? function ?	# Broadcom NetXtreme II Ethernet
5031.116Sjdccas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
5041.53Stsutsuien*	at pci? dev ? function ?	# ENI/Adaptec ATM UT
5051.53Stsutsui# XXX causes ICE
5061.53Stsutsui#ep*	at pci? dev ? function ?	# 3Com 3c59x
5071.53Stsutsuiex*	at pci? dev ? function ?	# 3Com 90x[B]
5081.53Stsutsuiepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
5091.53Stsutsuiesh*	at pci? dev ? function ?	# Essential HIPPI card UT
5101.53Stsutsuifpa*	at pci? dev ? function ?	# DEC DEFPA FDDI UT
5111.53Stsutsuifxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
5121.53Stsutsuigem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
5131.136Smartingem*	at sbus? slot ? offset ?
5141.148Sjakllschgsip*	at pci? dev ? function ?	# National Semiconductor DP83820 GigE
5151.53Stsutsui# XXX lacks bus_dmamap_sync()
5161.53Stsutsui#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
5171.53Stsutsui# XXX uses vtophys()
5181.53Stsutsui#lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
5191.92Smrgmskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
5201.92Smrgmsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
5211.53Stsutsuine*	at pci? dev ? function ?	# NE2000-compatible Ethernet UT
5221.53Stsutsuintwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial UT
5231.53Stsutsui# XXX cause uncorrectable DMA error
5241.53Stsutsui#pcn*	at pci? dev ? function ?	# PCnet-PCI Ethernet
5251.53Stsutsuiral*	at pci? dev ? function ?	# ralink wifi UT
5261.53Stsutsuire*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
5271.53Stsutsuirtk*	at pci? dev ? function ?	# Realtek 8129/8139
5281.92Smrgskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
5291.92Smrgsk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
5301.53Stsutsuisip*	at pci? dev ? function ?	# SiS 900 Ethernet
5311.53Stsutsuiti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet UT
5321.53Stsutsuitl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
5331.53Stsutsuitlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
5341.78Stsutsuivge*	at pci? dev ? function ?	# VIA VT612X Gigabit Ethernet
5351.53Stsutsuivr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
5361.53Stsutsuiwi*	at pci? dev ? function ?	# Lucent/Intersil WaveLAN/IEEE
5371.53Stsutsuiwm*	at pci? dev ? function ?	# Intel 8254x gigabit
5381.53Stsutsui
5391.53Stsutsui# MII/PHY support
5401.53Stsutsuiacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
5411.97Sjdcbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
5421.98Stronbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
5431.78Stsutsuiciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
5441.53Stsutsuidmphy*	at mii? phy ?			# Davicom DM9101 PHYs
5451.53Stsutsuiexphy*	at mii? phy ?			# 3Com internal PHYs
5461.116Sjdcgentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
5471.116Sjdcgphyter* at mii? phy ?			# NS83861 Gig-E PHY
5481.53Stsutsuiicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
5491.72Sbouyerikphy*	at mii? phy ?			# Intel 82563 PHYs
5501.53Stsutsuiinphy*	at mii? phy ?			# Intel 82555 PHYs
5511.53Stsutsuiiophy*	at mii? phy ?			# Intel 82553 PHYs
5521.53Stsutsuiigphy*	at mii? phy ?			# Intel IGP01E1000
5531.53Stsutsuilxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
5541.53Stsutsuimakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
5551.53Stsutsuinsphy*	at mii? phy ?			# NS83840 PHYs
5561.53Stsutsuinsphyter* at mii? phy ?			# NS83843 PHYs
5571.53Stsutsuiqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
5581.75Stsutsuirgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
5591.75Stsutsuirlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
5601.53Stsutsuisqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
5611.53Stsutsuitlphy*	at mii? phy ?			# ThunderLAN PHYs
5621.53Stsutsuitqphy*	at mii? phy ?			# TDK Semiconductor PHYs
5631.53Stsutsuiukphy*	at mii? phy ?			# generic unknown PHYs
5641.53Stsutsui
5651.53Stsutsui# PCI USB controllers
5661.53Stsutsuiehci*	at pci? dev ? function ?	# Enhanced Host Controller
5671.53Stsutsuiohci*	at pci? dev ? function ?	# Open Host Controller
5681.53Stsutsuiuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
5691.53Stsutsui
5701.53Stsutsui# USB bus support
5711.53Stsutsuiusb*	at ehci?
5721.53Stsutsuiusb*	at ohci?
5731.53Stsutsuiusb*	at uhci?
5741.53Stsutsui#usb*	at slhci?
5751.53Stsutsui
5761.53Stsutsui# USB Hubs
5771.53Stsutsuiuhub*	at usb?
5781.83Sdrochneruhub*	at uhub? port ?
5791.53Stsutsui
5801.53Stsutsui# USB HID device
5811.53Stsutsuiuhidev*	at uhub? port ? configuration ? interface ?
5821.53Stsutsui
5831.53Stsutsui# USB Mice
5841.53Stsutsuiums*	at uhidev? reportid ?
5851.53Stsutsuiwsmouse* at ums? mux 0
5861.53Stsutsui
5871.53Stsutsui# USB eGalax touch-panel
5881.53Stsutsuiuep*	at uhub? port ?
5891.53Stsutsuiwsmouse* at uep? mux 0
5901.53Stsutsui
5911.53Stsutsui# USB Keyboards
5921.53Stsutsuiukbd*	at uhidev? reportid ?
5931.53Stsutsuiwskbd*	at ukbd? console ? mux 1
5941.53Stsutsui
5951.156Sjdc# USB TEMPer and TEMPerHUM
5961.156Sjdcuthum*	at uhidev? reportid ?
5971.156Sjdc
5981.60Sskrll# USB serial adapter
5991.53Stsutsuiucycom*	at uhidev? reportid ?
6001.53Stsutsui
6011.53Stsutsui# USB Generic HID devices
6021.53Stsutsuiuhid*	at uhidev? reportid ?
6031.53Stsutsui
6041.53Stsutsui# USB Printer
6051.53Stsutsuiulpt*	at uhub? port ? configuration ? interface ?
6061.53Stsutsui
6071.53Stsutsui# USB Modem
6081.53Stsutsuiumodem*	at uhub? port ? configuration ?
6091.53Stsutsuiucom*	at umodem?
6101.53Stsutsui
6111.119Splunky# Option N.V. Wireless WAN modems
6121.119Splunkyuhso*	at uhub? port ? configuration ?
6131.119Splunky
6141.53Stsutsui# USB Mass Storage
6151.53Stsutsuiumass*	at uhub? port ? configuration ? interface ?
6161.53Stsutsuiwd*	at umass?
6171.53Stsutsui
6181.53Stsutsui# USB audio
6191.53Stsutsuiuaudio*	at uhub? port ? configuration ?
6201.53Stsutsui
6211.53Stsutsui# USB MIDI
6221.53Stsutsuiumidi* at uhub? port ? configuration ?
6231.53Stsutsui
6241.53Stsutsui# USB IrDA
6251.53Stsutsui# USB-IrDA bridge spec
6261.53Stsutsuiuirda* at uhub? port ? configuration ? interface ?
6271.53Stsutsuiirframe* at uirda?
6281.53Stsutsui
6291.53Stsutsui# SigmaTel STIr4200 USB/IrDA Bridge
6301.53Stsutsuiustir* at uhub? port ?
6311.53Stsutsuiirframe* at ustir?
6321.53Stsutsui
6331.53Stsutsui# USB Ethernet adapters
6341.53Stsutsuiaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
6351.53Stsutsuiaxe*	at uhub? port ?		# ASIX AX88172 based adapters
6361.53Stsutsuicdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
6371.53Stsutsuicue*	at uhub? port ?		# CATC USB-EL1201A based adapters
6381.53Stsutsuikue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
6391.53Stsutsuiudav*	at uhub? port ?		# Davicom DM9601 based adapters
6401.53Stsutsuiurl*	at uhub? port ?		# Realtek RTL8150L based adapters
6411.53Stsutsui
6421.53Stsutsui# USB 802.11 adapters
6431.53Stsutsuiatu*	at uhub? port ?		# Atmel AT76C50XX based adapters
6441.152Sjakllschural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
6451.87Skiyohara#zyd*	at uhub? port ?		# Zydas ZD1211
6461.53Stsutsui
6471.53Stsutsui# Prolific PL2301/PL2302 host-to-host adapter
6481.53Stsutsuiupl*	at uhub? port ?
6491.53Stsutsui
6501.53Stsutsui# Serial adapters
6511.53Stsutsuiubsa*	at uhub? port ?		# Belkin serial adapter
6521.53Stsutsuiucom*	at ubsa? portno ?
6531.53Stsutsui
6541.53Stsutsuiuftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
6551.53Stsutsuiucom*	at uftdi? portno ?
6561.53Stsutsui
6571.53Stsutsuiumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
6581.53Stsutsuiucom*	at umct? portno ?
6591.53Stsutsui
6601.53Stsutsuiuplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
6611.53Stsutsuiucom*	at uplcom? portno ?
6621.53Stsutsui
6631.53Stsutsuiuvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
6641.53Stsutsuiucom*	at uvscom? portno ?
6651.53Stsutsui
6661.53Stsutsui# Diamond Multimedia Rio 500
6671.53Stsutsuiurio*	at uhub? port ?
6681.53Stsutsui
6691.53Stsutsui# USB Handspring Visor
6701.53Stsutsuiuvisor*	at uhub? port ?
6711.53Stsutsuiucom*	at uvisor?
6721.53Stsutsui
6731.53Stsutsui# Kyocera AIR-EDGE PHONE
6741.53Stsutsuiukyopon* at uhub? port ?
6751.53Stsutsuiucom*	at ukyopon? portno ?
6761.53Stsutsui
6771.53Stsutsui# USB scanners
6781.53Stsutsuiuscanner* at uhub? port ?
6791.53Stsutsui
6801.53Stsutsui# USB scanners that use SCSI emulation, e.g., HP5300
6811.53Stsutsuiusscanner* at uhub? port ?
6821.53Stsutsui
6831.53Stsutsui# Y@P firmware loader
6841.53Stsutsuiuyap* at uhub? port ?
6851.53Stsutsui
6861.53Stsutsui# D-Link DSB-R100 USB radio
6871.53Stsutsuiudsbr*	at uhub? port ?
6881.53Stsutsuiradio*	at udsbr?
6891.53Stsutsui
6901.53Stsutsui# USB Generic driver
6911.53Stsutsuiugen*	at uhub? port ?
6921.53Stsutsui
6931.117Smrg# Firewire support
6941.117Smrgfwohci*	at pci? dev ? function ?	# IEEE1394 Open Host Controller
6951.117Smrgieee1394if* at fwohci?
6961.117Smrgfwip*	at ieee1394if?			# IP over IEEE1394
6971.117Smrgsbp*	at ieee1394if? euihi ? euilo ?
6981.117Smrg
6991.53Stsutsui## Loopback network interface; required
7001.53Stsutsuipseudo-device	loop
7011.53Stsutsui
7021.53Stsutsui## SLIP and CSLIP interfaces, for IP over a serial line.
7031.143Sjakllschpseudo-device	sl
7041.53Stsutsui
7051.53Stsutsui## PPP, the successor to SLIP.  See pppd(8).
7061.143Sjakllschpseudo-device	ppp
7071.53Stsutsui
7081.53Stsutsui## PPP over Ethernet (RFC 2516)
7091.53Stsutsuipseudo-device	pppoe
7101.53Stsutsui
7111.53Stsutsui## Starmode Radio IP, a special hardware network device.
7121.143Sjakllschpseudo-device	strip
7131.53Stsutsui
7141.53Stsutsui## Network "tunnel" device, allowing protocol stacks to run in the userland.
7151.53Stsutsui## This is used by the third-party user-mode "ppp" program, and others.
7161.143Sjakllschpseudo-device	tun
7171.53Stsutsuipseudo-device	tap			# virtual Ethernet
7181.53Stsutsui
7191.53Stsutsui## Generic L3 over IP tunnel
7201.79Sdyoungpseudo-device	gre			# generic L3 over IP tunnel
7211.53Stsutsui
7221.53Stsutsui## Berkeley Packet Filter, required to run RARPD.  A generic C-language
7231.53Stsutsui## interface that allows selective examining of incoming packets.
7241.53Stsutsuipseudo-device	bpfilter
7251.53Stsutsui
7261.53Stsutsui# Common Address Redundancy Protocol
7271.53Stsutsui#pseudo-device	carp
7281.53Stsutsui
7291.53Stsutsui## IEEE 802.1q encapsulation
7301.53Stsutsuipseudo-device	vlan
7311.53Stsutsui
7321.53Stsutsui## Simple inter-network traffic bridging
7331.53Stsutsuipseudo-device	bridge
7341.53Stsutsui#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
7351.85Smartinpseudo-device	agr			# IEEE 802.3ad link aggregation
7361.53Stsutsui
7371.53Stsutsui## IP Filter, used in firewall and NAT applications.  See ipnat(8) for
7381.53Stsutsui## one example of the use of the IP Filter.
7391.53Stsutsuipseudo-device	ipfilter
7401.53Stsutsui
7411.53Stsutsui## for IPv6
7421.53Stsutsuipseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
7431.53Stsutsui#pseudo-device	faith			# IPv[46] tcp relay translation i/f
7441.53Stsutsuipseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
7451.53Stsutsui
7461.53Stsutsui
7471.53Stsutsui#### CardBus and PCMCIA devices
7481.53Stsutsui
7491.53Stsutsui# PCI CardBus bridge support
7501.53Stsutsui#cbb*	at pci? dev ? function ?
7511.53Stsutsui#cardslot* at cbb?
7521.53Stsutsui
7531.53Stsutsui# CardBus bus support
7541.53Stsutsui#cardbus* at cardslot?
7551.53Stsutsui#pcmcia* at cardslot?
7561.53Stsutsui
7571.53Stsutsui## SBus to PCMCIA bridge
7581.53Stsutsui#nell*	at sbus? slot ? offset ?		# PCMCIA bridge
7591.53Stsutsui#pcmcia*	at nell?
7601.53Stsutsui
7611.53Stsutsui## CardBus cards; UT marks untested.
7621.53Stsutsui
7631.53Stsutsui# CardBus serial interfaces
7641.53Stsutsui#com*	at cardbus? function ?	# Modems and serial cards UT
7651.53Stsutsui
7661.53Stsutsui# CardBus SCSI controllers
7671.53Stsutsui#adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
7681.53Stsutsui#ahc*	at cardbus? function ?	# Adaptec ADP-1480 UT
7691.53Stsutsui#njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
7701.53Stsutsui
7711.65Sitohy# CardBus IDE controllers
7721.69Sitohy#njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
7731.65Sitohy
7741.53Stsutsui# CardBus network interfaces
7751.53Stsutsui#ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
7761.53Stsutsui#atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11) UT
7771.53Stsutsui#ex*	at cardbus? function ?	# 3Com 3C575TX
7781.53Stsutsui#fxp*	at cardbus? function ?	# Intel i8255x UT
7791.53Stsutsui#ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g UT
7801.107Snakayama#re*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S UT
7811.53Stsutsui#rtk*	at cardbus? function ?	# Realtek 8129/8139 UT
7821.107Snakayama#rtw*	at cardbus? function ?	# Realtek 8180L (802.11) UT
7831.53Stsutsui#tlp*	at cardbus? function ?	# DECchip 21143
7841.53Stsutsui
7851.53Stsutsui# CardBus USB controllers
7861.53Stsutsui#ehci*	at cardbus? function ?	# Enhanced Host Controller
7871.53Stsutsui#ohci*	at cardbus? function ?	# Open Host Controller
7881.107Snakayama#uhci*	at cardbus? function ?	# Universal Host Controller (Intel) UT
7891.53Stsutsui
7901.53Stsutsui## PCMCIA cards; UT marks untested.
7911.53Stsutsui
7921.53Stsutsui# PCMCIA serial interfaces
7931.53Stsutsui#com*	at pcmcia? function ?		# Modems and serial cards
7941.53Stsutsui
7951.53Stsutsui#pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards UT
7961.53Stsutsui#com*	at pcmcom? slave ?		# ...and the slave devices
7971.53Stsutsui
7981.53Stsutsui# PCMCIA SCSI controllers
7991.53Stsutsui#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI UT
8001.53Stsutsui#esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI UT
8011.58Shubertf#spc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
8021.53Stsutsui
8031.53Stsutsui# PCMCIA IDE controllers
8041.53Stsutsui#wdc*	at pcmcia? function ?
8051.53Stsutsui
8061.53Stsutsui# PCMCIA network interfaces
8071.53Stsutsui#an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11) UT
8081.53Stsutsui#awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS) UT
8091.53Stsutsui#cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer UT
8101.53Stsutsui#cs*	at pcmcia? function ?		# CS89xx Ethernet UT
8111.53Stsutsui#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
8121.53Stsutsui#mbe*	at pcmcia? function ?		# MB8696x based Ethernet UT
8131.53Stsutsui#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
8141.53Stsutsui#ray*	at pcmcia? function ?		# Raytheon Raylink (802.11) UT
8151.53Stsutsui#sm*	at pcmcia? function ?		# Megahertz Ethernet UT
8161.53Stsutsui# tr at pcmcia has problems with Cardbus bridges
8171.53Stsutsui#tr*	at pcmcia? function ?		# TROPIC based Token-Ring UT
8181.53Stsutsui#wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
8191.53Stsutsui#xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet UT
8201.53Stsutsui#com*	at xirc?
8211.53Stsutsui#xi*	at xirc?
8221.53Stsutsui#mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
8231.53Stsutsui#com*	at mhzc?
8241.53Stsutsui#sm*	at mhzc?
8251.53Stsutsui
8261.107Snakayama# PCMCIA USB controllers
8271.107Snakayama#slhci*	at pcmcia? function ?		# ScanLogic SL811HS UT
8281.53Stsutsui
8291.66Splunky#### Bluetooth Controller and Device support
8301.66Splunky
8311.66Splunky## Bluetooth PCMCIA Controllers
8321.66Splunky#bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
8331.89Skiyohara#btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
8341.66Splunky
8351.66Splunky## Bluetooth USB Controllers
8361.83Sdrochnerubt* at uhub? port ?
8371.141Sjakllschaubtfwl* at uhub? port ?
8381.66Splunky
8391.66Splunky## Bluetooth Device Hub
8401.95Skiyohara#bthub* at bcsp?
8411.66Splunky#bthub* at bt3c?
8421.89Skiyohara#bthub* at btbc?
8431.82Skiyohara#bthub* at btuart?
8441.66Splunkybthub* at ubt?
8451.66Splunky
8461.66Splunky## Bluetooth HID support
8471.66Splunkybthidev* at bthub?
8481.66Splunky
8491.66Splunky## Bluetooth Mouse
8501.66Splunkybtms* at bthidev? reportid ?
8511.66Splunkywsmouse* at btms? mux 0
8521.66Splunky
8531.66Splunky## Bluetooth Keyboard
8541.66Splunkybtkbd* at bthidev? reportid ?
8551.66Splunkywskbd* at btkbd? console ? mux 1
8561.66Splunky
8571.129Splunky## Bluetooth Apple Magic Mouse
8581.129Splunkybtmagic* at bthub?
8591.129Splunkywsmouse* at btmagic? mux 0
8601.129Splunky
8611.66Splunky## Bluetooth Audio support
8621.66Splunkybtsco* at bthub?
8631.66Splunky
8641.53Stsutsui#### Audio and video devices
8651.53Stsutsui
8661.53Stsutsui## /dev/audio support (`audiocs' plus `audio')
8671.53Stsutsui##
8681.53Stsutsuiaudiocs*	at sbus? slot ? offset ?	# SUNW,CS4231
8691.53Stsutsuiaudiocs*	at ebus?			# SUNW,CS4231 in U5/U10
8701.53Stsutsuiautri*		at pci? dev ? function ?	# Blade 100 'sound'
8711.144Smrgauacer*		at pci? dev ? function ?	# Ultra45
8721.53Stsutsui
8731.53Stsutsuiaudio*		at audiobus?
8741.53Stsutsui
8751.54Snakayamamidi*		at midibus?
8761.53Stsutsui
8771.53Stsutsui
8781.128Stsutsui## Sun "bwtwo" black and white framebuffer
8791.128Stsutsuibwtwo0		at sbus? slot ? offset ?
8801.128Stsutsuibwtwo*		at sbus? slot ? offset ?
8811.53Stsutsui
8821.53Stsutsui## Sun "cgthree" Sbus color framebuffer
8831.113Smacallancgthree0	at sbus? slot ? offset ?
8841.113Smacallancgthree*	at sbus? slot ? offset ?
8851.53Stsutsui
8861.53Stsutsui## Sun "cgsix" accelerated color framebuffer.
8871.53Stsutsuicgsix*		at sbus? slot ? offset ?
8881.53Stsutsui
8891.53Stsutsui## Sun FFB
8901.53Stsutsuiffb*		at mainbus0
8911.117Smrgupa*		at mainbus?
8921.117Smrgffb*		at upa?
8931.53Stsutsui
8941.115Smacallan## Sun XVR-1000
8951.115Smacallangfb*		at mainbus0
8961.115Smacallan
8971.53Stsutsui# On board vga on U5/U10 etc.
8981.53Stsutsuimachfb*		at pci?
8991.53Stsutsui
9001.112Smacallan# Sun XVR-100
9011.112Smacallanradeonfb*	at pci?
9021.112Smacallan
9031.112Smacallan# Sun PGX32 / TechSource Raptor GFX 8P
9041.112Smacallanpm2fb*		at pci?
9051.112Smacallan
9061.120Smacallan# 3Dlabs Wildcat based boards like XVR-500, 1200 etc.
9071.120Smacallanwcfb*		at pci?
9081.120Smacallan
9091.94Smacallan# generic PCI framebuffers
9101.94Smacallangenfb*		at pci?
9111.94Smacallan
9121.53Stsutsui# make sure the console display is always wsdisplay0
9131.53Stsutsuiwsdisplay0	at wsemuldisplaydev? console 1
9141.53Stsutsuiwsdisplay*	at wsemuldisplaydev?
9151.53Stsutsui
9161.53Stsutsui# wsmouse for sun ms
9171.53Stsutsuiwsmouse*        at ms0
9181.53Stsutsui
9191.53Stsutsui# wskbd for sun kbd
9201.53Stsutsuiwskbd0 at kbd0
9211.53Stsutsui
9221.53Stsutsui# various options for wscons - we try to look as much like a standard
9231.53Stsutsui# sun console as possible
9241.121Sroy#options	WSEMUL_SUN              # sun terminal emulation
9251.121Sroyoptions 	WSEMUL_VT100		# allow us to be wsvt25
9261.53Stsutsuioptions 	WS_DEFAULT_FG=WSCOL_BLACK
9271.53Stsutsuioptions 	WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
9281.158Smacallanoptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
9291.158Smacallanoptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some more ioctls
9301.151Sabsoptions 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
9311.53Stsutsuioptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
9321.53Stsutsuioptions 	WSDISPLAY_DEFAULTSCREENS=4
9331.53Stsutsuioptions 	FONT_GALLANT12x22		# PROM font look-alike
9341.159Smartinoptions 	FONT_DROID_SANS_MONO12x22	# antialiased font
9351.53Stsutsui
9361.53Stsutsui#### Other device configuration
9371.53Stsutsui
9381.55Sgdamorepsm*		at ebus?		# Ultrabook IIi microcontroller
9391.118Smartinpcfiic*		at ebus?		# various environmental monitoring
9401.118Smartiniic*		at pcfiic?
9411.111Snakayamalom*		at ebus?		# LOMlite lights out management
9421.55Sgdamore
9431.104Sjkunz# Netra X1 / T1 style environmental monitoring
9441.104Sjkunzalipm*		at pci?
9451.104Sjkunziic*		at alipm?
9461.118Smartin
9471.118Smartin# I2C devices
9481.155Sjdcspdmem*		at iic? addr 0x50	# SPARCle memory
9491.155Sjdcspdmem*		at iic? addr 0x51	# SPARCle memory
9501.155Sjdc
9511.118Smartinspdmem*		at iic? addr?
9521.118Smartinadmtemp*	at iic? addr?
9531.118Smartinecadc*		at iic? addr?	# envctrl/envctrltwo on E250/E450
9541.118Smartinlmtemp*		at iic? addr?
9551.131Smrgtda*		at iic? addr?	# fan control on SB1000/2000
9561.131Smrgdbcool*		at iic? addr?	# SB25000
9571.157Sjdcseeprom*	at iic? addr?	# i2c-at24c64 fru's
9581.104Sjkunz
9591.53Stsutsui### Other pseudo-devices
9601.53Stsutsui
9611.53Stsutsuipseudo-device 	crypto			# /dev/crypto device
9621.53Stsutsuipseudo-device	swcrypto		# software crypto implementation
9631.53Stsutsui
9641.53Stsutsui## Pseudo ttys, required for network logins and programs like screen.
9651.53Stsutsui
9661.53Stsutsuipseudo-device	pty			# pseudo-ttys (for network, etc.)
9671.53Stsutsui
9681.53Stsutsui## Random device, used to implement /dev/random (a source of random noise),
9691.53Stsutsui## and generate randomness for some kernel formulae.
9701.53Stsutsui
9711.53Stsutsui
9721.53Stsutsuipseudo-device	wsmux			# mouse & keyboard multiplexor
9731.53Stsutsuipseudo-device	wsfont
9741.53Stsutsuipseudo-device	clockctl		# user control of clock subsystem
9751.53Stsutsuipseudo-device	ksyms			# /dev/ksyms
9761.122Sroy#pseudo-device	pf			# PF packet filter
9771.122Sroy#pseudo-device	pflog			# PF log if
9781.124Spookapseudo-device	fss			# file system snapshot device
9791.95Skiyohara#pseudo-device	bcsp			# BlueCore Serial Protocol
9801.82Skiyohara#pseudo-device	btuart			# Bluetooth HCI UART (H4)
9811.99Sadpseudo-device	lockstat		# lock profiling
9821.114Spookapseudo-device	putter			# for puffs and pud
9831.53Stsutsui
9841.73Seladoptions		FILEASSOC		# fileassoc(9) - required for Veriexec 
9851.56Selad
9861.53Stsutsui# Veriexec
9871.53Stsutsui#
9881.53Stsutsui# a pseudo device needed for veriexec
9891.73Seladpseudo-device	veriexec		1
9901.53Stsutsui#
9911.53Stsutsui# Uncomment the fingerprint methods below that are desired. Note that
9921.53Stsutsui# removing fingerprint methods will have almost no impact on the kernel
9931.53Stsutsui# code size.
9941.53Stsutsui#
9951.73Seladoptions VERIFIED_EXEC_FP_RMD160
9961.73Seladoptions VERIFIED_EXEC_FP_SHA256
9971.73Seladoptions VERIFIED_EXEC_FP_SHA384
9981.73Seladoptions VERIFIED_EXEC_FP_SHA512
9991.73Seladoptions VERIFIED_EXEC_FP_SHA1
10001.73Seladoptions VERIFIED_EXEC_FP_MD5
10011.53Stsutsui
10021.53Stsutsui# a pseudo device needed for SMBFS
10031.53Stsutsuipseudo-device   nsmb		# experimental - SMB requester
10041.67Selad
10051.103Sjnemeth# drvctl - needed to show device dictionary via drvctl(8)
10061.103Sjnemethpseudo-device	drvctl
10071.103Sjnemeth
10081.80Selad#options PAX_MPROTECT=0			# PaX mprotect(2) restrictions
10091.80Selad					# (for static binaries only for now)
1010