11.243Sriastrad# $NetBSD: GENERIC,v 1.243 2025/03/27 12:22:44 riastradh 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.187Snakayamainclude 	"arch/sparc64/conf/std.sparc64"
221.53Stsutsui
231.53Stsutsuioptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.53Stsutsui
251.243Sriastrad#ident		"GENERIC-$Revision: 1.243 $"
261.53Stsutsui
271.53Stsutsuimaxusers	64
281.53Stsutsui
291.53Stsutsui## System kernel configuration.  See options(4) for more detail.
301.53Stsutsui
311.53Stsutsui
321.242Sandvar# Options for variants of the Sun SPARC architecture.
331.53Stsutsuioptions 	SUN4U		# sun4u - UltraSPARC
341.170Spalleoptions 	SUN4V		# sun4v - UltraSPARC T1/T2+/T3/T4/T5
351.53Stsutsui#options 	BLINK		# blink the system LED
361.53Stsutsui
371.53Stsutsui#### System options that are the same for all ports
381.53Stsutsui
391.53Stsutsui## Root device configuration: change the ?'s if you are going to use a
401.53Stsutsui## nonstandard root partition (other than where the kernel is booted from)
411.53Stsutsui## and/or nonstandard root type (not ffs or nfs).  Normally this can be
421.53Stsutsui## automagically determined at boot time.
431.53Stsutsui
441.53Stsutsuiconfig		netbsd	root on ? type ?
451.53Stsutsui
461.53Stsutsui## UVM options.
471.53Stsutsui#options 	UVM_PAGE_TRKOWN
481.53Stsutsui#options 	UVMHIST
491.53Stsutsui#options 	UVMHIST_PRINT	# Loud!
501.53Stsutsui
511.53Stsutsui## System call tracing (see ktrace(1)).
521.53Stsutsuioptions 	KTRACE
531.23Shubertf
541.53Stsutsui## System V compatible IPC subsystem.  (msgctl(2), semctl(2), and shmctl(2))
551.53Stsutsuioptions 	SYSVMSG		# System V message queues
561.53Stsutsuioptions 	SYSVSEM		# System V semaphores
571.53Stsutsuioptions 	SYSVSHM		# System V shared memory
581.41Seeh
591.187Snakayamaoptions 	MODULAR		# new style module(7) framework
601.187Snakayamaoptions 	MODULAR_DEFAULT_AUTOLOAD
611.163Schristos
621.53Stsutsuioptions 	USERCONF	# userconf(4) support
631.53Stsutsui#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
641.53Stsutsuioptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
651.53Stsutsui
661.203Ssevan# Alternate buffer queue strategies for better responsiveness under high
671.203Ssevan# disk I/O load.
681.53Stsutsui#options 	BUFQ_READPRIO
691.215Ssevanoptions 	BUFQ_PRIOCSCAN
701.53Stsutsui
711.53Stsutsui## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
721.53Stsutsuioptions 	NFS_BOOT_BOOTPARAM
731.53Stsutsui#options 	NFS_BOOT_BOOTP
741.53Stsutsuioptions 	NFS_BOOT_DHCP
751.53Stsutsui
761.53Stsutsui#### Debugging options
771.53Stsutsui
781.53Stsutsui## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
791.53Stsutsui## serial console break or keyboard reset, where the PROM would normally
801.53Stsutsui## intercept.  DDB_HISTORY_SIZE adds up/down arrow command history.
811.53Stsutsui# we enable DDB in GENERIC for now.
821.53Stsutsuioptions 	DDB			# kernel dynamic debugger
831.53Stsutsuioptions 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
841.91Smartinoptions 	DDB_VERBOSE_HELP	# enable verbose online help
851.171Sszptvlfn#options 	DDB_ONPANIC=1		# see also sysctl(7): `ddb.onpanic'
861.53Stsutsui
871.53Stsutsui## You may also use gdb, on another computer connected to this machine over
881.53Stsutsui## a serial port.
891.71Smartin# options 	KGDB
901.71Smartin# options 	KGDB_DEVNAME="\"sabtty1\""	# kgdb device name
911.71Smartin# options 	KGDB_DEVRATE=38400		# baud rate (defaults to 9600)
921.53Stsutsui
931.53Stsutsui
941.53Stsutsui## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
951.53Stsutsui## such that gdb(1) can be used on a kernel coredump.
961.41Seeh
971.139Smartin#makeoptions	DEBUG="-g"
981.53Stsutsui
991.53Stsutsui
1001.53Stsutsui## Adds code to the kernel that does internal consistency checks, and will
1011.53Stsutsui## cause the kernel to panic if corruption of internal data structures
1021.53Stsutsui## is detected.
1031.140Smartinoptions 	DIAGNOSTIC	# extra kernel sanity checking
1041.53Stsutsui
1051.53Stsutsui## Enable (possibly expensive) debugging code that may also display messages
1061.53Stsutsui## on the system console
1071.41Seeh#options 	DEBUG
1081.53Stsutsui#options 	LOCKDEBUG
1091.41Seeh#options 	SYSCALL_DEBUG
1101.53Stsutsui
1111.53Stsutsui## Make SCSI error messages more verbose when explaining their meanings.
1121.53Stsutsuioptions 	SCSIVERBOSE
1131.53Stsutsuioptions 	PCIVERBOSE
1141.53Stsutsuioptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1151.53Stsutsui#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1161.53Stsutsui
1171.53Stsutsui## `INSECURE' turns off the kernel security level (securelevel = 0 always).
1181.53Stsutsui## This allows writing to /dev/mem, loading kernel modules while multi-user,
1191.53Stsutsui## and other insecurities good only for development work.  Do not use this
1201.53Stsutsui## option on a production machine.
1211.53Stsutsui#options 	INSECURE
1221.53Stsutsui
1231.53Stsutsui## `FDSCRIPTS' allows non-readable but executable scripts by providing a
1241.53Stsutsui## pre-opened opaque file to the script interpreter.  `SETUIDSCRIPTS',
1251.53Stsutsui## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
1261.53Stsutsui## opaque file mechanism.  Perl calls this "secure setuid scripts."
1271.53Stsutsui
1281.53Stsutsui#options 	FDSCRIPTS
1291.53Stsutsui#options 	SETUIDSCRIPTS
1301.53Stsutsui
1311.53Stsutsui## Options for compatibility with previous releases foreign system binaries.
1321.213Smaxv## In the cases of COMPAT_SUNOS, you may need to set up additional user-level
1331.213Smaxv## utilities or system configuration files. See compat_sunos(8).
1341.53Stsutsui
1351.202Smrginclude 	"conf/compat_netbsd09.config"
1361.53Stsutsuioptions 	COMPAT_SUNOS	# SunOS 4.x binary compatibility
1371.53Stsutsuioptions 	COMPAT_NETBSD32	# NetBSD/sparc binary compatibility -- 64-bit only
1381.53Stsutsuioptions 	EXEC_AOUT	# execve(2) support for a.out binaries
1391.53Stsutsuioptions 	EXEC_ELF32	# Exec module for SunOS 5.x binaries.
1401.53Stsutsui
1411.218Smartin# Wedge support
1421.218Smartinoptions 	DKWEDGE_AUTODISCOVER	# Automatically add dk(4) instances
1431.218Smartinoptions 	DKWEDGE_METHOD_GPT	# Supports GPT partitions as wedges
1441.218Smartin#options 	DKWEDGE_METHOD_BSDLABEL	# Support disklabel entries as wedges
1451.218Smartin#options 	DKWEDGE_METHOD_MBR	# Support MBR partitions as wedges
1461.218Smartin#options 	DKWEDGE_METHOD_APPLE	# Support Apple partitions as wedges
1471.218Smartin#options 	DKWEDGE_METHOD_RDB	# Support RDB partitions as wedges
1481.240Scharlott#options 	DKWEDGE_METHOD_TOS	# Support Atari "TOS" partitions as wedges
1491.218Smartin
1501.216Ssevan## File systems.
1511.216Ssevaninclude "conf/filesystems.config"
1521.53Stsutsui
1531.53Stsutsui## File system options.
1541.236Ssimonboptions 	FFS_EI		# FFS Endian Independent support
1551.236Ssimonb#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1561.134Sbouyeroptions 	QUOTA		# legacy UFS quotas
1571.134Sbouyeroptions 	QUOTA2		# new, in-filesystem UFS quotas
1581.236Ssimonboptions 	UFS_DIRHASH	# UFS Large Directory Hashing
1591.236Ssimonboptions 	UFS_EXTATTR	# Extended attribute support for UFS1
1601.146Sdhollandoptions 	WAPBL		# File system journaling support
1611.236Ssimonboptions 	NFSSERVER	# Network File System server
1621.53Stsutsui
1631.53Stsutsui## Network protocol support.  In most environments, INET is required.
1641.53Stsutsuioptions 	INET		# IP (Internet Protocol) v4
1651.53Stsutsuioptions 	INET6		# IPV6
1661.53Stsutsui#options 	IPSEC		# IP security
1671.53Stsutsui#options 	IPSEC_DEBUG	# debug for IP security
1681.53Stsutsui#options 	GATEWAY		# packet forwarding ("router switch")
1691.53Stsutsuioptions 	MROUTING	# packet forwarding of multicast packets
1701.53Stsutsuioptions 	PIM		# Protocol Independent Multicast
1711.53Stsutsuioptions 	NETATALK	# AppleTalk (over Ethernet) protocol
1721.53Stsutsuioptions 	NTP		# Network Time Protocol in-kernel support
1731.53Stsutsui#options 	PPS_SYNC	# Add serial line synchronization for NTP
1741.53Stsutsuioptions 	PPP_BSDCOMP	# Add BSD compression to ppp device
1751.53Stsutsuioptions 	PPP_DEFLATE	# Add deflate (libz) compression to ppp device
1761.53Stsutsuioptions 	PPP_FILTER	# Add active filters for ppp (via bpf)
1771.53Stsutsui#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1781.53Stsutsui
1791.53Stsutsui#options 	ALTQ		# Manipulate network interfaces' output queues
1801.53Stsutsui#options 	ALTQ_BLUE	# Stochastic Fair Blue
1811.53Stsutsui#options 	ALTQ_CBQ	# Class-Based Queueing
1821.53Stsutsui#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
1831.53Stsutsui#options 	ALTQ_FIFOQ	# First-In First-Out Queue
1841.53Stsutsui#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
1851.53Stsutsui#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
1861.53Stsutsui#options 	ALTQ_LOCALQ	# Local queueing discipline
1871.53Stsutsui#options 	ALTQ_PRIQ	# Priority Queueing
1881.53Stsutsui#options 	ALTQ_RED	# Random Early Detection
1891.53Stsutsui#options 	ALTQ_RIO	# RED with IN/OUT
1901.53Stsutsui#options 	ALTQ_WFQ	# Weighted Fair Queueing
1911.53Stsutsui
1921.53Stsutsui
1931.123Smrg#### Main bus and CPUs .. all systems.
1941.53Stsutsuimainbus0 at root
1951.123Smrgoptions 	MULTIPROCESSOR		# include multiprocessor support
1961.187Snakayamacpu*		at mainbus0		# declare additional CPUs
1971.53Stsutsui
1981.53Stsutsui#### Bus types found on SPARC systems.
1991.53Stsutsui
2001.53Stsutsuisbus*	at mainbus0				# SBus-based systems
2011.187Snakayamapsycho* at mainbus0				# PCI-based systems
2021.187Snakayamaschizo* at mainbus?
2031.135Smrgpyro*	at mainbus?
2041.180Spallevpci*	at mainbus0
2051.142Smrgcentral* at mainbus?
2061.142Smrgfhc*	at mainbus?
2071.53Stsutsuipci*	at psycho?
2081.117Smrgpci*	at schizo?
2091.135Smrgpci*	at pyro?
2101.180Spallepci*	at vpci?
2111.53Stsutsuipci*	at ppb?
2121.142Smrgppb*	at pci?
2131.142Smrgfhc*	at central?
2141.135Smrgebus*	at mainbus0				# ebus devices
2151.53Stsutsuiebus*	at pci?					# ebus devices
2161.53Stsutsui# XXX 'puc's aren't really bridges, but there's no better place for them here
2171.53Stsutsuipuc*	at pci? dev ? function ?		# PCI "universal" comm. cards
2181.190Spallevbus0	at mainbus0
2191.191Spallecbus*	at vbus?
2201.53Stsutsui
2211.53Stsutsui#### Standard system devices -- all required for a given architecture
2221.53Stsutsui
2231.53Stsutsui## PROM console driver -- if all else fails
2241.53Stsutsuipcons0	at mainbus0				# PROM console
2251.53Stsutsui
2261.53Stsutsui## Auxiliary system registers -- We use the OBP for power management
2271.53Stsutsuiauxio*	at ebus?				# auxio registers
2281.53Stsutsuiauxio*	at sbus? slot ? offset ?		# auxio registers
2291.53Stsutsui
2301.53Stsutsui# We also need:
2311.53Stsutsuibpp*	at sbus? slot ? offset ?		# parallel port
2321.53Stsutsuilpt*	at ebus?				# parallel port
2331.53Stsutsui
2341.74Stsutsui## Mostek clock found on sbus on Ultra-1,2 systems
2351.74Stsutsui## and found on ebus on Ultra-5 and other systems.
2361.53Stsutsuiclock*	at sbus? slot ? offset ?
2371.142Smrgclock*	at fhc?
2381.53Stsutsuiclock*	at ebus?
2391.74Stsutsui
2401.74Stsutsui## DS1287 compatible clock found on ebus on Netra X1 and other systems.
2411.53Stsutsuirtc*	at ebus?
2421.53Stsutsui
2431.53Stsutsui## Timer chip found on 4/300, sun4c, sun4m and (some) sun4u systems.
2441.53Stsutsuitimer*	at mainbus0				# sun4c
2451.53Stsutsui
2461.210Smacallan## found in schizo-based systems
2471.210Smacallanjbusi2c* 	at mainbus0
2481.210Smacallaniic* 	at jbusi2c?
2491.210Smacallan
2501.190Spalle# Virtual devices for sun4v systems.
2511.190Spallevrtc0	at vbus?
2521.192Spallevdsk*	at cbus?
2531.235Spallevnet*	at cbus?
2541.190Spalle
2551.53Stsutsui#### Serial port configuration
2561.53Stsutsui
2571.53Stsutsui## Zilog 8530 serial chips.  Each has two-channels.
2581.53Stsutsui## zs0 is ttya and ttyb.  zs1 is the keyboard and mouse.
2591.53Stsutsuizs*	at sbus? slot ? offset ?
2601.142Smrgzs*	at fhc?
2611.142Smrgzstty*	at zs? channel ?			# ttys
2621.53Stsutsuikbd0	at zstty?
2631.53Stsutsuims0	at zstty?
2641.53Stsutsui
2651.53Stsutsui## PCI machines have serial ports:
2661.53Stsutsui##	Siemens SAB82532 controller: ttya and ttyb (`su'; sab)
2671.53Stsutsui##	Part of NS PC87332VLJ Super I/O controller: kbd/mouse (`se'; com)
2681.53Stsutsui
2691.53Stsutsui## The SAB82532 controller has two serial ports
2701.53Stsutsuisab*	at ebus?				# ttya/ttyb
2711.187Snakayamasabtty* at sab? channel ?
2721.53Stsutsui
2731.53Stsutsui## Part of a PC87332VLJ
2741.53Stsutsuicom*	at ebus?				# `com' driver for `su'
2751.53Stsutsuikbd0	at com?					# keyboard
2761.53Stsutsuims0	at com?					# mouse
2771.53Stsutsui
2781.153Sjdc## Tadpole SPARCle PS/2 keyboard and mouse
2791.187Snakayamapckbc*		at ebus?		# PC keyboard controller
2801.208Smacallanoptions 	HAVE_TADPMU		# include support for Tadpole Viper PMU
2811.187Snakayamapckbd*		at pckbc?		# PC keyboard
2821.187Snakayamapms*		at pckbc?		# PS/2 mouse for wsmouse
2831.153Sjdcoptions 	PMS_SYNAPTICS_TOUCHPAD	# Enable support for Synaptics Touchpads
2841.187Snakayamawskbd*		at pckbd? console ?
2851.187Snakayamawsmouse*	at pms? mux 0
2861.153Sjdc
2871.227Sjdc## Tadpole SPARCle SD card
2881.227Sjdcwb* 		at ebus?		# Winbond W83L518D SD/MMC reader
2891.227Sjdcsdmmc* 		at wb?
2901.227Sjdcld* 		at sdmmc?
2911.227Sjdc
2921.53Stsutsui## Magma Serial/Parallel driver (not tested)
2931.53Stsutsui#magma*	at sbus? slot ? offset ?
2941.53Stsutsui#mtty*	at magma?
2951.53Stsutsui#mbpp*	at magma?
2961.53Stsutsui
2971.108Shauke## SUNW,spif Serial/Parallel driver
2981.187Snakayamaspif*	at sbus? slot ? offset ?
2991.187Snakayamastty*	at spif?
3001.187Snakayamasbpp*	at spif?
3011.53Stsutsui
3021.53Stsutsui## PCI serial interfaces
3031.53Stsutsuicom*	at puc? port ?			# 16x50s on "universal" comm boards
3041.53Stsutsuicy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
3051.53Stsutsuicz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
3061.53Stsutsui
3071.61Sjnemeth# PCI cryptographic devices
3081.61Sjnemethhifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
3091.61Sjnemethubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
3101.61Sjnemeth
3111.53Stsutsui
3121.53Stsutsui#### Disk controllers and disks
3131.53Stsutsui
3141.53Stsutsui## The following flags may be set for the NCR53c94 based esp driver:
3151.53Stsutsui##	bits 0-7:  disable disconnect/reselect for the corresponding target
3161.53Stsutsui##	bits 8-15: disable synchronous negotiation for target [bit-8]
3171.53Stsutsui##	bits 16-23: disable tagged queuing for target [bit-16]
3181.53Stsutsui
3191.53Stsutsui## sun4u on-board SCSI, and FSBE/S SBus SCSI cards, an NCR53c94 or
3201.53Stsutsui## equivalent behind an LSI Logic DMA controller
3211.53Stsutsui
3221.53Stsutsuidma*	at sbus? slot ? offset ?		# SBus
3231.53Stsutsuiesp*	at dma?					# SBus
3241.53Stsutsui
3251.53Stsutsuiesp*	at sbus? slot ? offset ?
3261.53Stsutsuiisp*	at sbus? slot ? offset ?
3271.53Stsutsuiisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
3281.187Snakayamasiop*	at pci?				# 53C8xx ("glm" compatible)
3291.187Snakayamaesiop*	at pci?				# 53C875 and newer ("glm" compatible)
3301.53Stsutsui
3311.53Stsutsui# PCI SCSI controllers
3321.187Snakayama#	UT marks untested.
3331.53Stsutsuiadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
3341.53Stsutsuiadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI UT
3351.53Stsutsuiahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
3361.53Stsutsuibha*	at pci? dev ? function ?	# BusLogic 9xx SCSI UT
3371.53Stsutsuidpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID UT
3381.53Stsutsuiiha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
3391.125Schsmpt*	at pci? dev ? function ?	# LSILogic 9x9 and 53c1030
3401.53Stsutsuinjs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
3411.53Stsutsuipcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3421.53Stsutsuitrm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
3431.53Stsutsui
3441.53Stsutsuiscsibus* at scsi?
3451.53Stsutsui
3461.53Stsutsui## These entries find devices on all SCSI busses and assign
3471.53Stsutsui## unit numbers dynamically.
3481.53Stsutsuisd*	at scsibus? target ? lun ?		# SCSI disks
3491.53Stsutsuist*	at scsibus? target ? lun ?		# SCSI tapes
3501.53Stsutsuicd*	at scsibus? target ? lun ?		# SCSI CD-ROMs
3511.53Stsutsuich*	at scsibus? target ? lun ?		# SCSI changer devices
3521.53Stsutsuiss*	at scsibus? target ? lun ?		# SCSI scanners
3531.53Stsutsuises*	at scsibus? target ? lun ?		# SCSI SES/SAF-TE devices
3541.53Stsutsuiuk*	at scsibus? target ? lun ?		# unknown SCSI
3551.53Stsutsui
3561.53Stsutsui# IDE and related devices
3571.53Stsutsui# PCI IDE controllers - see pciide(4) for supported hardware.
3581.53Stsutsui# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3591.53Stsutsui# how to set up DMA modes for this chip. This may work, or may cause
3601.53Stsutsui# a machine hang with some controllers.
3611.53Stsutsuipciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
3621.53Stsutsuiacardide* at pci? dev ? function ?	# Acard IDE controllers
3631.53Stsutsuiaceride* at pci? dev ? function ?	# Acer Lab IDE controllers
3641.53Stsutsuiartsata* at pci? dev ? function ?	# Intel i31244 SATA controller
3651.53Stsutsuicmdide* at pci? dev ? function ?	# CMD tech IDE controllers
3661.53Stsutsuicypide* at pci? dev ? function ?	# Cypress IDE controllers
3671.53Stsutsuihptide* at pci? dev ? function ?	# Triones/HighPoint IDE controllers
3681.53Stsutsuioptiide* at pci? dev ? function ?	# Opti IDE controllers
3691.53Stsutsuipdcide* at pci? dev ? function ?	# Promise IDE controllers
3701.53Stsutsuipdcsata* at pci? dev ? function ?	# Promise SATA150 controllers
3711.53Stsutsuisatalink* at pci? dev ? function ?	# SiI SATALink controllers
3721.217Smartinsiisata* at pci? dev ? function ?	# SiI SteelVine controllers
3731.53Stsutsuisiside* at pci? dev ? function ?	# SiS IDE controllers
3741.187Snakayamaslide*	at pci? dev ? function ?	# Symphony Labs IDE controllers
3751.53Stsutsuiviaide* at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
3761.53Stsutsui
3771.53Stsutsui# ATA (IDE) bus support
3781.53Stsutsuiatabus* at ata?
3791.53Stsutsuiatapibus* at atapi?
3801.53Stsutsui
3811.53Stsutsui# IDE drives
3821.53Stsutsui# Flags are used only with controllers that support DMA operations
3831.53Stsutsui# and mode settings (e.g. some pciide controllers)
3841.53Stsutsui# The lowest order four bits (rightmost digit) of the flags define the PIO
3851.53Stsutsui# mode to use, the next set of four bits the DMA mode and the third set the
3861.53Stsutsui# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
3871.53Stsutsui# to use, and the last bit must be 1 for this setting to be used.
3881.53Stsutsui# For DMA and UDMA, 0xf (1111) means 'disable'.
3891.53Stsutsui# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
3901.53Stsutsui# (0xc=1100, 0xa=1010, 0xf=1111)
3911.53Stsutsui# 0x0000 means "use whatever the drive claims to support".
3921.127Snakayamawd*	at atabus? drive ? flags 0x0000
3931.53Stsutsui
3941.53Stsutsuicd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
3951.53Stsutsuisd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
3961.53Stsutsuiuk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
3971.53Stsutsui
3981.53Stsutsui# RAID controllers and devices (untested)
3991.53Stsutsuicac*	at pci? dev ? function ?	# Compaq PCI array controllers
4001.53Stsutsuimlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
4011.53Stsutsuitwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
4021.53Stsutsui
4031.53Stsutsuild*	at cac? unit ?			# logical disk devices
4041.53Stsutsuild*	at twe? unit ?
4051.53Stsutsuild*	at mlx? unit ?
4061.53Stsutsui
4071.198Smartin# Virtio devices
4081.198Smartinvirtio* at pci? dev ? function ?	# Virtio PCI device
4091.243Sriastrad
4101.243Sriastradinclude "dev/virtio/virtio.config"
4111.243Sriastradno vio9p* 	at virtio?	# PAGE_SIZE != VIRTIO_PAGE_SIZE
4121.243Sriastradno viomb* 	at virtio?	# PAGE_SIZE != VIRTIO_PAGE_SIZE
4131.198Smartin
4141.53Stsutsui## Floppy controller and drive found on SPARCstations.
4151.53Stsutsui
4161.53Stsutsui# need share with the sparc, and everyone else.  needs to use auxio.
4171.175Ssnj# actually, the ebus version has (will have) direct access to its AUXIO
4181.53Stsutsui# register space (it is mapped in to fdthree not auxio).
4191.70Sjnemethfdc0	at sbus? slot ? offset ?		# SUNW,fdtwo
4201.70Sjnemeth#fdc0	at ebus?				# fdthree, EXPERIMENTAL
4211.187Snakayamafd*	at fdc0					# the drive itself
4221.53Stsutsui
4231.102Stls#
4241.102Stls# accept filters
4251.187Snakayamapseudo-device	accf_data		# "dataready" accept filter
4261.187Snakayamapseudo-device	accf_http		# "httpready" accept filter
4271.102Stls
4281.53Stsutsui## A disk-like interface to files.  Can be used to create floppy, CD,
4291.53Stsutsui## miniroot images, etc.
4301.53Stsutsui
4311.143Sjakllschpseudo-device	vnd
4321.53Stsutsui#options 	VND_COMPRESSION		# compressed vnd(4)
4331.53Stsutsui
4341.53Stsutsui## Concatenated and striped disks; with this, you can create a software-based
4351.53Stsutsui## disk array similar to a "RAID 0" setup.  See ccd(4).
4361.53Stsutsui
4371.164Schristospseudo-device	ccd
4381.53Stsutsui
4391.53Stsutsui## Cryptographic disk devices.  See cgd(4).
4401.53Stsutsui
4411.164Schristospseudo-device	cgd
4421.53Stsutsui
4431.53Stsutsui## RAIDframe disk driver: software RAID driver.  See raid(4).
4441.53Stsutsui
4451.165Schristospseudo-device	raid
4461.53Stsutsuioptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
4471.53Stsutsui# Options to enable various other RAIDframe RAID types.
4481.53Stsutsui# options 	RF_INCLUDE_EVENODD=1
4491.53Stsutsui# options 	RF_INCLUDE_RAID5_RS=1
4501.53Stsutsui# options 	RF_INCLUDE_PARITYLOGGING=1
4511.53Stsutsui# options 	RF_INCLUDE_CHAINDECLUSTER=1
4521.53Stsutsui# options 	RF_INCLUDE_INTERDECLUSTER=1
4531.53Stsutsui# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
4541.53Stsutsui# options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
4551.53Stsutsui
4561.53Stsutsui
4571.53Stsutsui## Memory disk device, used on boot floppies with compressed
4581.53Stsutsui## kernel-plus-root-disk images.
4591.53Stsutsui
4601.143Sjakllschpseudo-device	md
4611.53Stsutsui
4621.53Stsutsui
4631.53Stsutsui#### Network interfaces
4641.53Stsutsui
4651.53Stsutsui## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
4661.53Stsutsui## Three flavors of additional SBus ethernets are available.  One attaches
4671.53Stsutsui## directly like the sun4c on-board, one uses the ledma device like the
4681.53Stsutsui## sun4m on-board, and one uses the lebuffer device.
4691.53Stsutsui
4701.53Stsutsuiledma0		at sbus? slot ? offset ?	# sun4m on-board
4711.53Stsutsuile0		at ledma0			# sun4m on-board
4721.53Stsutsuile*		at sbus? slot ? offset ?	# SBus
4731.53Stsutsuiledma*		at sbus? slot ? offset ?	# SBus
4741.53Stsutsuile*		at ledma?			# SBus
4751.53Stsutsuilebuffer0	at sbus? slot ? offset ?	# SBus
4761.53Stsutsuile0		at lebuffer?			# SBus
4771.53Stsutsuilebuffer*	at sbus? slot ? offset ?	# SBus
4781.53Stsutsuile*		at lebuffer?			# SBus
4791.53Stsutsui
4801.53Stsutsui## Happy Meal Ethernet
4811.53Stsutsuihme*		at sbus? slot ? offset ?
4821.187Snakayamahme*		at pci? dev ? function ?	# network "hme" compatible
4831.53Stsutsui
4841.53Stsutsui## qec/be, qec/hme
4851.53Stsutsuiqec*		at sbus? slot ? offset ?
4861.53Stsutsuibe*		at qec?
4871.53Stsutsuiqe*		at qec?
4881.53Stsutsui
4891.53Stsutsui# PCI network interfaces
4901.187Snakayama#	UT marks untested.
4911.53Stsutsuian*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11) UT
4921.53Stsutsuiath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11 UT
4931.117Smrgbge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
4941.132Smartinbnx*	at pci? dev ? function ?	# Broadcom NetXtreme II Ethernet
4951.116Sjdccas*	at pci? dev ? function ?	# Sun Cassini/Cassini+ Ethernet
4961.53Stsutsui# XXX causes ICE
4971.53Stsutsui#ep*	at pci? dev ? function ?	# 3Com 3c59x
4981.53Stsutsuiepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
4991.188Snakayamaex*	at pci? dev ? function ?	# 3Com 90x[B]
5001.53Stsutsuifxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
5011.53Stsutsuigem*	at pci? dev ? function ?	# Apple GMAC and Sun ERI gigabit enet
5021.136Smartingem*	at sbus? slot ? offset ?
5031.148Sjakllschgsip*	at pci? dev ? function ?	# National Semiconductor DP83820 GigE
5041.181Smsaitohixg*	at pci? dev ? function ?	# Intel 8259x 10 gigabit
5051.92Smrgmskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
5061.92Smrgmsk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
5071.53Stsutsuine*	at pci? dev ? function ?	# NE2000-compatible Ethernet UT
5081.53Stsutsuintwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial UT
5091.53Stsutsui# XXX cause uncorrectable DMA error
5101.53Stsutsui#pcn*	at pci? dev ? function ?	# PCnet-PCI Ethernet
5111.53Stsutsuiral*	at pci? dev ? function ?	# ralink wifi UT
5121.53Stsutsuire*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
5131.53Stsutsuirtk*	at pci? dev ? function ?	# Realtek 8129/8139
5141.188Snakayamasip*	at pci? dev ? function ?	# SiS 900 Ethernet
5151.92Smrgskc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
5161.92Smrgsk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
5171.53Stsutsuiti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet UT
5181.53Stsutsuitl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
5191.53Stsutsuitlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
5201.78Stsutsuivge*	at pci? dev ? function ?	# VIA VT612X Gigabit Ethernet
5211.53Stsutsuivr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
5221.53Stsutsuiwi*	at pci? dev ? function ?	# Lucent/Intersil WaveLAN/IEEE
5231.53Stsutsuiwm*	at pci? dev ? function ?	# Intel 8254x gigabit
5241.53Stsutsui
5251.53Stsutsui# MII/PHY support
5261.53Stsutsuiacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
5271.97Sjdcbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
5281.98Stronbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
5291.78Stsutsuiciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
5301.53Stsutsuidmphy*	at mii? phy ?			# Davicom DM9101 PHYs
5311.53Stsutsuiexphy*	at mii? phy ?			# 3Com internal PHYs
5321.116Sjdcgentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
5331.116Sjdcgphyter* at mii? phy ?			# NS83861 Gig-E PHY
5341.187Snakayamaicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
5351.188Snakayamaigphy*	at mii? phy ?			# Intel IGP01E1000
5361.72Sbouyerikphy*	at mii? phy ?			# Intel 82563 PHYs
5371.53Stsutsuiinphy*	at mii? phy ?			# Intel 82555 PHYs
5381.53Stsutsuiiophy*	at mii? phy ?			# Intel 82553 PHYs
5391.187Snakayamalxtphy* at mii? phy ?			# Level One LXT-970 PHYs
5401.53Stsutsuimakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
5411.53Stsutsuinsphy*	at mii? phy ?			# NS83840 PHYs
5421.187Snakayamansphyter* at mii? phy ? 		# NS83843 PHYs
5431.53Stsutsuiqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
5441.75Stsutsuirgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
5451.75Stsutsuirlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
5461.53Stsutsuisqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
5471.53Stsutsuitlphy*	at mii? phy ?			# ThunderLAN PHYs
5481.53Stsutsuitqphy*	at mii? phy ?			# TDK Semiconductor PHYs
5491.53Stsutsuiukphy*	at mii? phy ?			# generic unknown PHYs
5501.53Stsutsui
5511.53Stsutsui# PCI USB controllers
5521.53Stsutsuiehci*	at pci? dev ? function ?	# Enhanced Host Controller
5531.53Stsutsuiohci*	at pci? dev ? function ?	# Open Host Controller
5541.187Snakayamauhci*	at pci? dev ? function ?	# Universal Host Controller (Intel)
5551.53Stsutsui
5561.53Stsutsui# USB bus support
5571.53Stsutsuiusb*	at ehci?
5581.53Stsutsuiusb*	at ohci?
5591.53Stsutsuiusb*	at uhci?
5601.53Stsutsui#usb*	at slhci?
5611.53Stsutsui
5621.228Smartin# USB device drivers
5631.228Smartininclude "dev/usb/usbdevices.config"
5641.53Stsutsui
5651.117Smrg# Firewire support
5661.187Snakayamafwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
5671.117Smrgieee1394if* at fwohci?
5681.117Smrgfwip*	at ieee1394if?			# IP over IEEE1394
5691.117Smrgsbp*	at ieee1394if? euihi ? euilo ?
5701.117Smrg
5711.53Stsutsui## Loopback network interface; required
5721.53Stsutsuipseudo-device	loop
5731.53Stsutsui
5741.53Stsutsui## SLIP and CSLIP interfaces, for IP over a serial line.
5751.143Sjakllschpseudo-device	sl
5761.53Stsutsui
5771.53Stsutsui## PPP, the successor to SLIP.  See pppd(8).
5781.143Sjakllschpseudo-device	ppp
5791.53Stsutsui
5801.53Stsutsui## PPP over Ethernet (RFC 2516)
5811.53Stsutsuipseudo-device	pppoe
5821.53Stsutsui
5831.53Stsutsui## Network "tunnel" device, allowing protocol stacks to run in the userland.
5841.53Stsutsui## This is used by the third-party user-mode "ppp" program, and others.
5851.143Sjakllschpseudo-device	tun
5861.53Stsutsuipseudo-device	tap			# virtual Ethernet
5871.53Stsutsui
5881.53Stsutsui## Generic L3 over IP tunnel
5891.79Sdyoungpseudo-device	gre			# generic L3 over IP tunnel
5901.53Stsutsui
5911.53Stsutsui## Berkeley Packet Filter, required to run RARPD.  A generic C-language
5921.53Stsutsui## interface that allows selective examining of incoming packets.
5931.53Stsutsuipseudo-device	bpfilter
5941.53Stsutsui
5951.215Ssevanpseudo-device	carp			# Common Address Redundancy Protocol
5961.53Stsutsui
5971.53Stsutsui## IEEE 802.1q encapsulation
5981.53Stsutsuipseudo-device	vlan
5991.53Stsutsui
6001.53Stsutsui## Simple inter-network traffic bridging
6011.53Stsutsuipseudo-device	bridge
6021.230Sroypseudo-device	vether			# Virtual Ethernet for bridge
6031.85Smartinpseudo-device	agr			# IEEE 802.3ad link aggregation
6041.53Stsutsui
6051.205Smaxvpseudo-device	npf			# NPF packet filter
6061.53Stsutsui
6071.53Stsutsui## for IPv6
6081.53Stsutsuipseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
6091.53Stsutsui#pseudo-device	faith			# IPv[46] tcp relay translation i/f
6101.53Stsutsuipseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
6111.53Stsutsui
6121.53Stsutsui
6131.53Stsutsui#### CardBus and PCMCIA devices
6141.53Stsutsui
6151.53Stsutsui# PCI CardBus bridge support
6161.53Stsutsui#cbb*	at pci? dev ? function ?
6171.53Stsutsui#cardslot* at cbb?
6181.53Stsutsui
6191.53Stsutsui# CardBus bus support
6201.53Stsutsui#cardbus* at cardslot?
6211.53Stsutsui#pcmcia* at cardslot?
6221.53Stsutsui
6231.53Stsutsui## SBus to PCMCIA bridge
6241.53Stsutsui#nell*	at sbus? slot ? offset ?		# PCMCIA bridge
6251.187Snakayama#pcmcia* at nell?
6261.53Stsutsui
6271.53Stsutsui## CardBus cards; UT marks untested.
6281.53Stsutsui
6291.53Stsutsui# CardBus serial interfaces
6301.53Stsutsui#com*	at cardbus? function ?	# Modems and serial cards UT
6311.53Stsutsui
6321.53Stsutsui# CardBus SCSI controllers
6331.53Stsutsui#adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI UT
6341.53Stsutsui#ahc*	at cardbus? function ?	# Adaptec ADP-1480 UT
6351.53Stsutsui#njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
6361.53Stsutsui
6371.65Sitohy# CardBus IDE controllers
6381.69Sitohy#njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
6391.65Sitohy
6401.53Stsutsui# CardBus network interfaces
6411.53Stsutsui#ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
6421.189Snakayama#athn*	at cardbus? function ?	# Atheros AR9k (802.11a/g/n) UT
6431.53Stsutsui#atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11) UT
6441.189Snakayama#bwi*	at cardbus? function ?	# Broadcom BCM43xx wireless
6451.53Stsutsui#ex*	at cardbus? function ?	# 3Com 3C575TX
6461.53Stsutsui#fxp*	at cardbus? function ?	# Intel i8255x UT
6471.53Stsutsui#ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g UT
6481.107Snakayama#re*	at cardbus? function ?	# Realtek 8139C+/8169/8169S/8110S UT
6491.53Stsutsui#rtk*	at cardbus? function ?	# Realtek 8129/8139 UT
6501.107Snakayama#rtw*	at cardbus? function ?	# Realtek 8180L (802.11) UT
6511.53Stsutsui#tlp*	at cardbus? function ?	# DECchip 21143
6521.53Stsutsui
6531.53Stsutsui# CardBus USB controllers
6541.53Stsutsui#ehci*	at cardbus? function ?	# Enhanced Host Controller
6551.53Stsutsui#ohci*	at cardbus? function ?	# Open Host Controller
6561.107Snakayama#uhci*	at cardbus? function ?	# Universal Host Controller (Intel) UT
6571.53Stsutsui
6581.189Snakayama# CardBus IEEE1394 controllers
6591.189Snakayama#fwohci* at cardbus? function ?	# IEEE1394 Open Host Controller UT
6601.189Snakayama
6611.53Stsutsui## PCMCIA cards; UT marks untested.
6621.53Stsutsui
6631.53Stsutsui# PCMCIA serial interfaces
6641.53Stsutsui#com*	at pcmcia? function ?		# Modems and serial cards
6651.53Stsutsui
6661.53Stsutsui#pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards UT
6671.53Stsutsui#com*	at pcmcom? slave ?		# ...and the slave devices
6681.53Stsutsui
6691.53Stsutsui# PCMCIA SCSI controllers
6701.53Stsutsui#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI UT
6711.53Stsutsui#esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI UT
6721.58Shubertf#spc*	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
6731.53Stsutsui
6741.53Stsutsui# PCMCIA IDE controllers
6751.53Stsutsui#wdc*	at pcmcia? function ?
6761.53Stsutsui
6771.53Stsutsui# PCMCIA network interfaces
6781.53Stsutsui#an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11) UT
6791.53Stsutsui#awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS) UT
6801.53Stsutsui#cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer UT
6811.53Stsutsui#cs*	at pcmcia? function ?		# CS89xx Ethernet UT
6821.53Stsutsui#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
6831.53Stsutsui#mbe*	at pcmcia? function ?		# MB8696x based Ethernet UT
6841.53Stsutsui#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
6851.53Stsutsui#ray*	at pcmcia? function ?		# Raytheon Raylink (802.11) UT
6861.53Stsutsui#sm*	at pcmcia? function ?		# Megahertz Ethernet UT
6871.53Stsutsui#wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
6881.53Stsutsui#xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet UT
6891.53Stsutsui#com*	at xirc?
6901.53Stsutsui#xi*	at xirc?
6911.53Stsutsui#mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
6921.53Stsutsui#com*	at mhzc?
6931.53Stsutsui#sm*	at mhzc?
6941.53Stsutsui
6951.107Snakayama# PCMCIA USB controllers
6961.107Snakayama#slhci*	at pcmcia? function ?		# ScanLogic SL811HS UT
6971.53Stsutsui
6981.66Splunky#### Bluetooth Controller and Device support
6991.66Splunky
7001.66Splunky## Bluetooth PCMCIA Controllers
7011.66Splunky#bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
7021.89Skiyohara#btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
7031.66Splunky
7041.66Splunky## Bluetooth USB Controllers
7051.83Sdrochnerubt* at uhub? port ?
7061.141Sjakllschaubtfwl* at uhub? port ?
7071.66Splunky
7081.66Splunky## Bluetooth Device Hub
7091.95Skiyohara#bthub* at bcsp?
7101.66Splunky#bthub* at bt3c?
7111.89Skiyohara#bthub* at btbc?
7121.82Skiyohara#bthub* at btuart?
7131.66Splunkybthub* at ubt?
7141.66Splunky
7151.66Splunky## Bluetooth HID support
7161.66Splunkybthidev* at bthub?
7171.66Splunky
7181.66Splunky## Bluetooth Mouse
7191.66Splunkybtms* at bthidev? reportid ?
7201.66Splunkywsmouse* at btms? mux 0
7211.66Splunky
7221.66Splunky## Bluetooth Keyboard
7231.66Splunkybtkbd* at bthidev? reportid ?
7241.66Splunkywskbd* at btkbd? console ? mux 1
7251.66Splunky
7261.129Splunky## Bluetooth Apple Magic Mouse
7271.129Splunkybtmagic* at bthub?
7281.129Splunkywsmouse* at btmagic? mux 0
7291.129Splunky
7301.66Splunky## Bluetooth Audio support
7311.66Splunkybtsco* at bthub?
7321.66Splunky
7331.53Stsutsui#### Audio and video devices
7341.53Stsutsui
7351.53Stsutsui## /dev/audio support (`audiocs' plus `audio')
7361.53Stsutsui##
7371.53Stsutsuiaudiocs*	at sbus? slot ? offset ?	# SUNW,CS4231
7381.53Stsutsuiaudiocs*	at ebus?			# SUNW,CS4231 in U5/U10
7391.53Stsutsuiautri*		at pci? dev ? function ?	# Blade 100 'sound'
7401.187Snakayamaauacer* 	at pci? dev ? function ?	# Ultra45
7411.53Stsutsui
7421.53Stsutsuiaudio*		at audiobus?
7431.53Stsutsui
7441.196Schristosspkr*		at audio?			# PC speaker (synthesized)
7451.194Snat
7461.54Snakayamamidi*		at midibus?
7471.53Stsutsui
7481.53Stsutsui
7491.128Stsutsui## Sun "bwtwo" black and white framebuffer
7501.128Stsutsuibwtwo0		at sbus? slot ? offset ?
7511.128Stsutsuibwtwo*		at sbus? slot ? offset ?
7521.53Stsutsui
7531.53Stsutsui## Sun "cgthree" Sbus color framebuffer
7541.113Smacallancgthree0	at sbus? slot ? offset ?
7551.113Smacallancgthree*	at sbus? slot ? offset ?
7561.53Stsutsui
7571.53Stsutsui## Sun "cgsix" accelerated color framebuffer.
7581.53Stsutsuicgsix*		at sbus? slot ? offset ?
7591.53Stsutsui
7601.178Smacallan## Southland Media Systems (now Quantum 3D) MGX
7611.187Snakayamamgx*		at sbus? slot ? offset ?
7621.178Smacallan
7631.53Stsutsui## Sun FFB
7641.53Stsutsuiffb*		at mainbus0
7651.117Smrgupa*		at mainbus?
7661.117Smrgffb*		at upa?
7671.53Stsutsui
7681.115Smacallan## Sun XVR-1000
7691.115Smacallangfb*		at mainbus0
7701.115Smacallan
7711.53Stsutsui# On board vga on U5/U10 etc.
7721.187Snakayamamachfb* 	at pci?
7731.53Stsutsui
7741.112Smacallan# Sun XVR-100
7751.112Smacallanradeonfb*	at pci?
7761.112Smacallan
7771.112Smacallan# Sun PGX32 / TechSource Raptor GFX 8P
7781.112Smacallanpm2fb*		at pci?
7791.112Smacallan
7801.120Smacallan# 3Dlabs Wildcat based boards like XVR-500, 1200 etc.
7811.120Smacallanwcfb*		at pci?
7821.120Smacallan
7831.94Smacallan# generic PCI framebuffers
7841.94Smacallangenfb*		at pci?
7851.187Snakayamagenfb*		at sbus? slot ? offset ?
7861.94Smacallan
7871.53Stsutsui# make sure the console display is always wsdisplay0
7881.53Stsutsuiwsdisplay0	at wsemuldisplaydev? console 1
7891.53Stsutsuiwsdisplay*	at wsemuldisplaydev?
7901.53Stsutsui
7911.53Stsutsui# wsmouse for sun ms
7921.187Snakayamawsmouse*	at ms0
7931.53Stsutsui
7941.53Stsutsui# wskbd for sun kbd
7951.187Snakayamawskbd0		at kbd0
7961.53Stsutsui
7971.53Stsutsui# various options for wscons - we try to look as much like a standard
7981.53Stsutsui# sun console as possible
7991.187Snakayama#options 	WSEMUL_SUN		# sun terminal emulation
8001.121Sroyoptions 	WSEMUL_VT100		# allow us to be wsvt25
8011.53Stsutsuioptions 	WS_DEFAULT_FG=WSCOL_BLACK
8021.53Stsutsuioptions 	WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
8031.158Smacallanoptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
8041.158Smacallanoptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some more ioctls
8051.151Sabsoptions 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
8061.53Stsutsuioptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
8071.53Stsutsuioptions 	WSDISPLAY_DEFAULTSCREENS=4
8081.53Stsutsuioptions 	FONT_GALLANT12x22		# PROM font look-alike
8091.159Smartinoptions 	FONT_DROID_SANS_MONO12x22	# antialiased font
8101.53Stsutsui
8111.53Stsutsui#### Other device configuration
8121.53Stsutsui
8131.55Sgdamorepsm*		at ebus?		# Ultrabook IIi microcontroller
8141.187Snakayamapcfiic* 	at ebus?		# various environmental monitoring
8151.118Smartiniic*		at pcfiic?
8161.111Snakayamalom*		at ebus?		# LOMlite lights out management
8171.55Sgdamore
8181.104Sjkunz# Netra X1 / T1 style environmental monitoring
8191.104Sjkunzalipm*		at pci?
8201.104Sjkunziic*		at alipm?
8211.118Smartin
8221.187Snakayamaspdmem* 	at iic? addr?
8231.118Smartinadmtemp*	at iic? addr?
8241.183Sjdcadm1026hm*	at iic? addr?
8251.118Smartinecadc*		at iic? addr?	# envctrl/envctrltwo on E250/E450
8261.187Snakayamalmtemp* 	at iic? addr?
8271.131Smrgtda*		at iic? addr?	# fan control on SB1000/2000
8281.187Snakayamadbcool* 	at iic? addr?	# SB25000
8291.157Sjdcseeprom*	at iic? addr?	# i2c-at24c64 fru's
8301.233Sjdcpcagpio* 	at iic? addr?	# V210/V240 GPIO's
8311.233Sjdcpcf8574io* 	at iic? addr?	# E250 GPIO's
8321.104Sjkunz
8331.53Stsutsui### Other pseudo-devices
8341.53Stsutsui
8351.187Snakayamapseudo-device	crypto			# /dev/crypto device
8361.53Stsutsuipseudo-device	swcrypto		# software crypto implementation
8371.53Stsutsui
8381.53Stsutsui## Pseudo ttys, required for network logins and programs like screen.
8391.53Stsutsui
8401.53Stsutsuipseudo-device	pty			# pseudo-ttys (for network, etc.)
8411.53Stsutsui
8421.53Stsutsui## Random device, used to implement /dev/random (a source of random noise),
8431.53Stsutsui## and generate randomness for some kernel formulae.
8441.53Stsutsui
8451.53Stsutsui
8461.53Stsutsuipseudo-device	wsmux			# mouse & keyboard multiplexor
8471.53Stsutsuipseudo-device	wsfont
8481.53Stsutsuipseudo-device	clockctl		# user control of clock subsystem
8491.53Stsutsuipseudo-device	ksyms			# /dev/ksyms
8501.124Spookapseudo-device	fss			# file system snapshot device
8511.95Skiyohara#pseudo-device	bcsp			# BlueCore Serial Protocol
8521.82Skiyohara#pseudo-device	btuart			# Bluetooth HCI UART (H4)
8531.99Sadpseudo-device	lockstat		# lock profiling
8541.237Sriastradpseudo-device 	swwdog			# software watchdog timer -- swwdog(4)
8551.67Selad
8561.103Sjnemeth# drvctl - needed to show device dictionary via drvctl(8)
8571.103Sjnemethpseudo-device	drvctl
8581.103Sjnemeth
8591.215Ssevaninclude "dev/veriexec.config"
8601.215Ssevan
8611.187Snakayamaoptions 	PAX_ASLR_DEBUG=1	# PaX ASLR debug
8621.187Snakayamaoptions 	PAX_SEGVGUARD=0		# PaX Segmentation fault guard
8631.186Smartin# XXX: there is no PLT format for sparc64 that cooperates with
8641.186Smartin# MPROTECT, so disable it for now
8651.197Smartin# options 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
8661.197Smartin# options 	PAX_MPROTECT_DEBUG=1	# PaX mprotect debug
8671.187Snakayamaoptions 	PAX_ASLR=1		# PaX Address Space Layout Randomization
8681.238Sabs
8691.239Sabs# Pull in optional local configuration - always at end
8701.239Sabscinclude	"arch/sparc64/conf/GENERIC.local"
871