GENERIC revision 1.25
11.25Soster# $NetBSD: GENERIC,v 1.25 2002/01/19 18:45:09 oster Exp $
21.23Sgmcgarry#
31.23Sgmcgarry# GENERIC machine description file
41.23Sgmcgarry# 
51.23Sgmcgarry# This machine description file is used to generate the default NetBSD
61.23Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.23Sgmcgarry# and device drivers, but should be useful for most applications.
81.23Sgmcgarry#
91.23Sgmcgarry# The machine description file can be customised for your specific
101.23Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.23Sgmcgarry#
121.23Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.23Sgmcgarry# man page.
141.23Sgmcgarry#
151.23Sgmcgarry# For further information on hardware support for this architecture, see
161.23Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.23Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.23Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.23Sgmcgarry# device.
201.1Ssoren
211.1Ssoreninclude 	"arch/cobalt/conf/std.cobalt"
221.1Ssoren
231.25Soster#ident 		"GENERIC-$Revision: 1.25 $"
241.1Ssoren
251.1Ssorenmaxusers	32
261.1Ssoren
271.1Ssoren# Standard system options
281.1Ssorenoptions 	KTRACE		# system call tracing support
291.1Ssorenoptions 	SYSVMSG		# System V message queues
301.1Ssorenoptions 	SYSVSEM		# System V semaphores
311.21Slukem#options 	SEMMNI=10	# number of semaphore identifiers
321.21Slukem#options 	SEMMNS=60	# number of semaphores in system
331.21Slukem#options 	SEMUME=10	# max number of undo entries per process
341.21Slukem#options 	SEMMNU=30	# number of undo structures in system
351.1Ssorenoptions 	SYSVSHM		# System V shared memory
361.1Ssoren#options 	SHMMAXPGS=1024	# 1024 pages is the default
371.15Ssoren#options 	LKM		# loadable kernel modules
381.1Ssoren#options 	NTP		# network time protocol
391.1Ssoren#options 	UCONSOLE	# users can redirect console (unsafe)
401.1Ssoren
411.1Ssoren# Debugging options
421.1Ssorenoptions 	DIAGNOSTIC	# extra kernel sanity checking
431.1Ssoren#options 	DEBUG		# extra kernel debugging support
441.21Slukem#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
451.1Ssorenoptions 	DDB		# kernel dynamic debugger
461.1Ssoren#options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
471.21Slukem#makeoptions	DEBUG="-g"	# compile full symbol table
481.1Ssoren
491.1Ssoren# Compatibility options
501.1Ssorenoptions 	COMPAT_43	# compatibility with 4.3BSD binaries
511.1Ssoren#options 	COMPAT_10	# NetBSD 0.9 binary compatibility
521.1Ssoren#options 	COMPAT_10	# NetBSD 1.0 binary compatibility
531.1Ssoren#options 	COMPAT_11	# NetBSD 1.1 binary compatibility
541.1Ssoren#options 	COMPAT_12	# NetBSD 1.2 binary compatibility
551.1Ssoren#options 	COMPAT_13	# NetBSD 1.3 binary compatibility
561.1Ssoren#options 	COMPAT_14	# NetBSD 1.4 binary compatibility
571.1Ssoren#options 	EXEC_ECOFF	# exec ECOFF binaries
581.1Ssoren#options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
591.17Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
601.1Ssoren
611.1Ssoren# File systems
621.1Ssorenfile-system	FFS		# Berkeley Fast Filesystem
631.21Slukemfile-system 	EXT2FS		# second extended file system (linux)
641.1Ssorenfile-system	NFS		# Sun NFS-compatible filesystem client
651.7Ssoren#file-system	KERNFS		# kernel data-structure filesystem
661.1Ssoren#file-system	NULLFS		# NULL layered filesystem
671.7Ssoren#file-system 	OVERLAY		# overlay file system
681.1Ssorenfile-system	MFS		# memory-based filesystem
691.1Ssorenfile-system	FDESC		# user file descriptor filesystem
701.1Ssoren#file-system	UMAPFS		# uid/gid remapping filesystem
711.7Ssoren#file-system	LFS		# Log-based filesystem (still experimental)
721.1Ssoren#file-system	PORTAL		# portal filesystem (still experimental)
731.7Ssoren#file-system	PROCFS		# /proc
741.1Ssoren#file-system	CD9660		# ISO 9660 + Rock Ridge file system
751.1Ssoren#file-system	UNION		# union file system
761.1Ssoren#file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
771.1Ssoren#file-system 	CODA		# Coda File System; also needs vcoda (below)
781.1Ssoren
791.1Ssoren# File system options
801.1Ssorenoptions 	NFSSERVER	# Sun NFS-compatible filesystem server
811.1Ssorenoptions 	QUOTA		# FFS quotas
821.1Ssoren#options 	FFS_EI		# FFS Endian Independant support
831.21Slukemoptions 	SOFTDEP		# FFS soft updates support.
841.1Ssoren#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
851.1Ssoren				# immutable) behave as system flags.
861.1Ssoren
871.1Ssoren# Networking options
881.1Ssoren#options 	GATEWAY		# IP packet forwarding
891.1Ssorenoptions 	INET		# Internet protocols
901.7Ssoren#options 	INET6		# IPV6
911.1Ssoren#options 	IPSEC		# IP security
921.1Ssoren#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
931.1Ssoren#options 	IPSEC_DEBUG	# debug for IP security
941.1Ssoren#options 	MROUTING	# packet forwarding of multicast packets
951.1Ssoren#options 	NS		# Xerox NS networking
961.1Ssoren#options 	NSIP		# Xerox NS tunneling over IP
971.1Ssoren#options 	ISO,TPIP	# OSI networking
981.1Ssoren#options 	EON		# OSI tunneling over IP
991.1Ssoren#options 	CCITT,LLC,HDLC	# X.25
1001.1Ssoren#options 	NETATALK	# AppleTalk (over Ethernet) protocol
1011.1Ssoren#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1021.1Ssoren#options 	PPP_DEFLATE	# Deflate compression support for PPP
1031.10Ssoren#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1041.10Ssoren#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1051.10Ssoren#options 	IPFILTER_LOG	# ipmon(8) log support
1061.17Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1071.1Ssoren
1081.1Ssoren# These options enable verbose messages for several subsystems.
1091.1Ssoren# Warning, these may compile large string tables into the kernel!
1101.1Ssorenoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1111.1Ssoren#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1121.21Slukemoptions 	SCSIVERBOSE	# human readable SCSI error messages
1131.5Saugustss#options 	MIIVERBOSE	# verbose PHY autoconfig messages
1141.1Ssoren
1151.1Ssorenoptions 	NFS_BOOT_DHCP
1161.1Ssoren
1171.1Ssorenconfig		netbsd	root on ? type ?
1181.1Ssoren
1191.1Ssorenmainbus0 	at root
1201.1Ssoren
1211.1Ssorencpu0 		at mainbus?
1221.1Ssoren
1231.1Ssorencom0		at mainbus? addr 0x1c800000 level 3
1241.1Ssorenoptions 	COM16650
1251.1Ssoren
1261.1Ssorengt0 		at mainbus? addr 0x14000000
1271.1Ssoren
1281.1Ssorenpci* 		at gt0
1291.1Ssorenpchb* 		at pci? dev ? function ?
1301.1Ssorenpcib* 		at pci? dev ? function ?
1311.1Ssoren
1321.1Ssoren# PCI serial/parallel interfaces
1331.10Ssoren#puc* 		at pci? dev ? function ? 	# PCI "universal" comm. cards
1341.10Ssoren#com* 		at puc? port ?
1351.1Ssoren#lpt* 		at puc? port ?
1361.1Ssoren#cy* 		at pci? dev ? function ?	# Cyclades Cyclom-Y serial cards
1371.1Ssoren
1381.1Ssoren# PCI SCSI controllers
1391.1Ssoren#adv*		at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA]
1401.1Ssoren#adw*		at pci? dev ? function ?	# AdvanSys 9xxUW SCSI
1411.1Ssorenahc*		at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
1421.1Ssoren#bha*		at pci? dev ? function ?	# BusLogic 9xx SCSI
1431.1Ssoren#dpt*		at pci? dev ? function ?	# DPT SmartCache/SmartRAID
1441.1Ssoren#isp*		at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FC
1451.4Ssorensiop*		at pci? dev ? function ?	# NCR 53c8xx SCSI
1461.1Ssoren#pcscp*		at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
1471.1Ssoren
1481.1Ssoren# SCSI bus support
1491.1Ssoren#scsibus* 	at adv?
1501.1Ssoren#scsibus* 	at adw?
1511.1Ssorenscsibus* 	at ahc?
1521.1Ssoren#scsibus* 	at bha?
1531.1Ssoren#scsibus* 	at dpt?
1541.1Ssoren#scsibus* 	at isp?
1551.4Ssorenscsibus* 	at siop?
1561.1Ssoren#scsibus* 	at pcscp?
1571.1Ssoren
1581.1Ssoren# SCSI devices
1591.1Ssorensd*		at scsibus? target ? lun ?	# SCSI disk drives
1601.1Ssorenst*		at scsibus? target ? lun ?	# SCSI tape drives
1611.7Ssoren#cd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
1621.7Ssoren#ch*		at scsibus? target ? lun ?	# SCSI autochangers
1631.1Ssoren#ss*		at scsibus? target ? lun ?	# SCSI scanners
1641.10Ssoren#uk*		at scsibus? target ? lun ?	# SCSI unknown
1651.1Ssoren
1661.1Ssoren# RAID controllers and devices
1671.1Ssoren#cac*		at pci? dev ? function ?	# Compaq array controller
1681.1Ssoren#ca*		at cac? unit ?			# Compaq array disk device
1691.1Ssoren
1701.1Ssoren# IDE and related devices
1711.1Ssoren# PCI IDE controllers - see pciide(4) for supported hardware.
1721.1Ssoren# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
1731.1Ssoren# how to set up DMA modes for this chip. This may work, or may cause
1741.1Ssoren# a machine hang with some controllers.
1751.1Ssorenpciide* 	at pci? dev ? function ? flags 0x0000
1761.1Ssoren
1771.1Ssoren# IDE drives
1781.1Ssoren# Flags are used only with controllers that support DMA operations
1791.1Ssoren# and mode settings (e.g. some pciide controllers)
1801.1Ssoren# The lowest order four bits (rightmost digit) of the flags define the PIO
1811.1Ssoren# mode to use, the next set of four bits the DMA mode and the third set the
1821.1Ssoren# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
1831.1Ssoren# to use, and the last bit must be 1 for this setting to be used.
1841.1Ssoren# For DMA and UDMA, 0xf (1111) means 'disable'.
1851.1Ssoren# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
1861.1Ssoren# (0xc=1100, 0xa=1010, 0xf=1111)
1871.1Ssoren# 0x0000 means "use whatever the drive claims to support".
1881.1Ssorenwd* 		at pciide? channel ? drive ? flags 0x0000
1891.1Ssoren
1901.1Ssoren# PCI network interfaces
1911.1Ssoren#de*		at pci? dev ? function ?	# DEC 21x4x-based Ethernet
1921.1Ssoren#en*		at pci? dev ? function ?	# ENI/Adaptec ATM
1931.1Ssoren#ep*		at pci? dev ? function ?	# 3Com 3c59x
1941.18Shubertf#ex*		at pci? dev ? function ?	# 3Com 90x[BC]
1951.1Ssoren#epic*		at pci? dev ? function ?	# SMC EPIC/100 Ethernet
1961.1Ssoren#esh*		at pci? dev ? function ?	# Essential HIPPI card
1971.1Ssoren#fpa*		at pci? dev ? function ?	# DEC DEFPA FDDI
1981.1Ssoren#fxp*		at pci? dev ? function ?	# Intel EtherExpress PRO10+/100B
1991.1Ssoren#le*		at pci? dev ? function ?	# PCnet-PCI Ethernet
2001.1Ssoren#ne*		at pci? dev ? function ?	# NE2000-compatible Ethernet
2011.1Ssoren#ntwoc*		at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
2021.1Ssoren#sip*		at pci? dev ? function ?	# SiS 900 Ethernet
2031.1Ssoren#tl*		at pci? dev ? function ?	# ThunderLAN-based Ethernet
2041.1Ssorentlp*		at pci? dev ? function ?	# DECchip 21x4x (and clones)
2051.1Ssoren#options 	TLP_MATCH_21040
2061.1Ssoren#options 	TLP_MATCH_21041
2071.1Ssoren#options 	TLP_MATCH_21140
2081.1Ssorenoptions 	TLP_MATCH_21142
2091.1Ssoren#vr*		at pci? dev ? function ?	# VIA Rhine Fast Ethernet
2101.1Ssoren#lmc*		at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
2111.3Sgroo#rtk*		at pci? dev ? function ?	# Realtek 8129/8139
2121.1Ssoren
2131.1Ssoren# MII/PHY support
2141.1Ssoren#exphy*		at mii? phy ?			# 3Com internal PHYs
2151.1Ssoren#icsphy*		at mii? phy ?			# ICS1890 PHYs
2161.1Ssoren#inphy*		at mii? phy ?			# Intel 82555 PHYs
2171.1Ssoren#iophy*		at mii? phy ?			# Intel 82553 PHYs
2181.1Ssorenlxtphy*		at mii? phy ?			# Level One LXT-970 PHYs
2191.1Ssoren#nsphy*		at mii? phy ?			# NS83840 PHYs
2201.1Ssoren#nsphyter* 	at mii? phy ?			# NS83843 PHYs
2211.1Ssoren#qsphy*		at mii? phy ?			# Quality Semiconductor QS6612
2221.1Ssoren#sqphy*		at mii? phy ?			# Seeq 80220/80221/80223 PHYs
2231.1Ssoren#tlphy*		at mii? phy ?			# ThunderLAN PHYs
2241.1Ssoren#tqphy*		at mii? phy ?			# TDK Semiconductor PHYs
2251.1Ssoren#ukphy*		at mii? phy ?			# generic unknown PHYs
2261.1Ssoren
2271.1Ssoren# PCI audio devices
2281.1Ssoren#clcs*		at pci? dev ? function ?	# Cirrus Logic CS4280
2291.1Ssoren#eap*		at pci? dev ? function ?	# Ensoniq AudioPCI
2301.1Ssoren#eso*		at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
2311.1Ssoren#fms*		at pci? dev ? function ?	# Forte Media FM801
2321.1Ssoren#sbl*		at pci? dev ? function ?	# SoundBlaster Live!
2331.1Ssoren#sv*		at pci? dev ? function ?	# S3 SonicVibes
2341.1Ssoren
2351.1Ssoren# Pseudo-devices
2361.1Ssoren
2371.1Ssoren# Disk/mass storage pseudo-devices
2381.7Ssoren#pseudo-device	ccd		4		# concatenated disk devices
2391.25Sosterpseudo-device	raid		8		# RAIDframe disk driver
2401.25Sosteroptions 	RAID_AUTOCONFIG			# auto-configuration of RAID
2411.25Soster# Options to enable various other RAIDframe RAID types.
2421.25Soster# options	RF_INCLUDE_EVENODD=1
2431.25Soster# options	RF_INCLUDE_RAID5_RS=1
2441.25Soster# options	RF_INCLUDE_PARITYLOGGING=1
2451.25Soster# options	RF_INCLUDE_CHAINDECLUSTER=1
2461.25Soster# options	RF_INCLUDE_INTERDECLUSTER=1
2471.25Soster# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
2481.25Soster# options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
2491.7Ssoren#pseudo-device	md		1		# memory disk device (ramdisk)
2501.7Ssoren#pseudo-device	vnd		4		# disk-like interface to files
2511.1Ssoren
2521.1Ssoren# Network pseudo-devices
2531.1Ssorenpseudo-device	bpfilter	8		# Berkeley packet filter
2541.10Ssoren#pseudo-device	ipfilter			# IP filter (firewall) and NAT
2551.1Ssorenpseudo-device	loop				# network loopback
2561.1Ssoren#pseudo-device	ppp		2		# Point-to-Point Protocol
2571.24Smartin#pseudo-device	pppoe				# PPP over Ethernet (RFC 2516)
2581.1Ssoren#pseudo-device	sl		2		# Serial Line IP
2591.1Ssoren#pseudo-device	strip		2		# Starmode Radio IP (Metricom)
2601.1Ssoren#pseudo-device	tun		2		# network tunneling over tty
2611.1Ssoren#pseudo-device	gre		2		# generic L3 over IP tunnel
2621.1Ssoren#pseudo-device	ipip		2		# RFC 2003 IP Encapsulation
2631.21Slukem#pseudo-device	gif		4		# RFC1933 tunnel
2641.21Slukem#pseudo-device	faith		1		# IPv[46] tcp relay translation
2651.2Sitojun#pseudo-device	stf		1		# 6to4 IPv6 over IPv4 encapsulation
2661.14Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
2671.22Satatatpseudo-device	bridge			# simple inter-network bridging
2681.1Ssoren
2691.1Ssoren# Miscellaneous pseudo-devices
2701.13Sjdolecekpseudo-device	pty				# pseudo-terminals
2711.1Ssoren#pseudo-device	tb		1		# tablet line discipline
2721.1Ssoren#pseudo-device	sequencer	1		# MIDI sequencer
2731.1Ssoren# rnd works; RND_COM does not on port i386 yet.
2741.1Ssorenpseudo-device	rnd				# /dev/random & kernel generator
2751.1Ssoren#options 	RND_COM				# use "com" randomness (BROKEN)
2761.1Ssoren
2771.1Ssoren# A pseudo device needed for Coda		# also needs CODA (above)
2781.1Ssoren#pseudo-device	vcoda		4		# coda minicache <-> venus comm.
279