11.144Sabs#	$NetBSD: GENERIC,v 1.144 2023/02/09 14:09:49 abs Exp $
21.1Sthorpej#
31.1Sthorpej# Generic Shark configuration.
41.1Sthorpej#
51.1Sthorpej
61.1Sthorpejinclude	"arch/shark/conf/std.shark"
71.1Sthorpej
81.5Satatatoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
91.5Satatat
101.144Sabs#ident		"GENERIC-$Revision: 1.144 $"
111.1Sthorpej
121.1Sthorpej# estimated number of users
131.1Sthorpejmaxusers	32
141.1Sthorpej
151.1Sthorpej# Standard system options
161.1Sthorpej
171.1Sthorpejoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
181.1Sthorpejoptions 	HZ=64
191.1Sthorpej#options 	NTP		# NTP phase/frequency locked loop
201.1Sthorpej#options 	BOOT_QUIETLY	# twiddle instead of normal boot msg output
211.1Sthorpej
221.1Sthorpej# CPU options
231.1Sthorpej
241.1Sthorpejoptions 	CPU_SA110	# Support the SA110 core
251.1Sthorpej
261.1Sthorpej# Architecture options
271.1Sthorpej
281.1Sthorpejoptions 	SHARK		# We are a Shark
291.1Sthorpejoptions 	NSIO		# We are using the National Semi SuperIO
301.20Suwemakeoptions	CPUFLAGS="-march=armv4 -mtune=strongarm"
311.1Sthorpej
321.1Sthorpej# compatibility with old version of OFW, which may have incorrect
331.1Sthorpej# properties and/or may set up devices incorrectly.
341.1Sthorpejoptions 	COMPAT_OLD_OFW
351.1Sthorpej
361.1Sthorpej# File systems
371.1Sthorpej
381.1Sthorpejfile-system	FFS		# UFS
391.1Sthorpej#file-system	LFS		# log-structured file system
401.1Sthorpejfile-system	MFS		# memory file system
411.1Sthorpejfile-system	NFS		# Network file system
421.1Sthorpej#file-system 	ADOSFS		# AmigaDOS-compatible file system
431.1Sthorpej#file-system 	EXT2FS		# second extended file system (linux)
441.1Sthorpej#file-system	CD9660		# ISO 9660 + Rock Ridge file system
451.1Sthorpejfile-system	MSDOSFS		# MS-DOS file system
461.30Schristosfile-system	FDESC		# /dev/fd
471.1Sthorpej#file-system	FILECORE	# Acorn filecore file system
481.1Sthorpejfile-system	KERNFS		# /kern
491.24Smattfile-system	NULLFS		# loopback file system
501.1Sthorpej#file-system 	OVERLAY		# overlay filesystem
511.30Schristosfile-system	PROCFS		# /proc
521.100Smrgfile-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
531.1Sthorpej#file-system	UMAPFS		# NULLFS + uid and gid remapping
541.1Sthorpej#file-system	UNION		# union file system
551.1Sthorpej#file-system	CODA		# Coda file system (needs vcoda below)
561.51Schristosfile-system	PTYFS		# /dev/pts/N support
571.69Smattfile-system	TMPFS		# Efficient memory file-system
581.57Sreinoud#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
591.1Sthorpej
601.1Sthorpej# File system options
611.141Ssimonb#options 	FFS_EI		# FFS Endian Independent support
621.141Ssimonb#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
631.93Sbouyer#options 	QUOTA		# legacy UFS quotas
641.93Sbouyer#options 	QUOTA2		# new, in-filesystem UFS quotas
651.141Ssimonb#options 	UFS_DIRHASH	# UFS Large Directory Hashing
661.141Ssimonb#options 	UFS_EXTATTR	# Extended attribute support for UFS1
671.97Sdhollandoptions 	WAPBL		# File system journaling support
681.141Ssimonboptions 	NFSSERVER	# Network File System server
691.1Sthorpej
701.1Sthorpej# Networking options
711.1Sthorpej
721.1Sthorpej#options 	GATEWAY		# packet forwarding
731.1Sthorpejoptions 	INET		# IP + ICMP + TCP + UDP
741.1Sthorpejoptions 	INET6		# IPV6
751.1Sthorpej#options 	IPSEC		# IP security
761.1Sthorpej#options 	IPSEC_DEBUG	# debug for IP security
771.1Sthorpej#options 	MROUTING	# IP multicast routing
781.34Smanu#options 	PIM		# Protocol Independent Multicast
791.1Sthorpej#options 	NETATALK	# AppleTalk networking
801.1Sthorpej				# if you enable the pseudo-device ipl).
811.1Sthorpej
821.1Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
831.1Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
841.1Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
851.1Sthorpejoptions 	NFS_BOOT_DHCP	# use NetBSD standard DHCP/NFS boot code
861.1Sthorpej#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
871.1Sthorpej
881.31Sabs#options 	ALTQ		# Manipulate network interfaces' output queues
891.31Sabs#options 	ALTQ_BLUE	# Stochastic Fair Blue
901.31Sabs#options 	ALTQ_CBQ	# Class-Based Queueing
911.31Sabs#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
921.31Sabs#options 	ALTQ_FIFOQ	# First-In First-Out Queue
931.31Sabs#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
941.31Sabs#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
951.31Sabs#options 	ALTQ_LOCALQ	# Local queueing discipline
961.31Sabs#options 	ALTQ_PRIQ	# Priority Queueing
971.31Sabs#options 	ALTQ_RED	# Random Early Detection
981.31Sabs#options 	ALTQ_RIO	# RED with IN/OUT
991.31Sabs#options 	ALTQ_WFQ	# Weighted Fair Queueing
1001.31Sabs
1011.1Sthorpej# Compatibility options
1021.1Sthorpej
1031.130Smrginclude 	"conf/compat_netbsd12.config"
1041.130Smrgoptions 	COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
1051.130Smrg
1061.1Sthorpej# Shared memory options
1071.1Sthorpej
1081.1Sthorpejoptions 	SYSVMSG		# System V-like message queues
1091.1Sthorpejoptions 	SYSVSEM		# System V-like semaphores
1101.1Sthorpejoptions 	SYSVSHM		# System V-like memory sharing
1111.1Sthorpej
1121.1Sthorpej# Device options
1131.1Sthorpej
1141.44Schristos#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
1151.3Slukem#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
1161.1Sthorpej#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
1171.1Sthorpej
1181.1Sthorpejoptions 	INSECURE		# disable kernel securelevel
1191.1Sthorpej
1201.1Sthorpej# Use the following to force the serial to always be the console
1211.1Sthorpej# device.  19200 is what the serial gets set up as by the firmware
1221.1Sthorpej# when it hasn't fallen back from PC.  If it has fallen back then
1231.1Sthorpej# the speed will be set at 9600.
1241.1Sthorpej#options 	COMCONSOLE,CONADDR=0x3f8,CONUNIT=0,CONSPEED=19200
1251.1Sthorpej
1261.1Sthorpej# Miscellaneous kernel options
1271.1Sthorpejoptions 	KTRACE		# system call tracing, a la ktrace(1)
1281.1Sthorpejoptions 	IRQSTATS	# manage IRQ statistics, XXX temp required
1291.7Slukemoptions 	USERCONF	# userconf(4) support
1301.37Stsutsui#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1311.32Satatatoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
1321.92Stsutsuioptions 	MODULAR		# new style module(7) framework
1331.119Sjnemethoptions 	MODULAR_DEFAULT_AUTOLOAD
1341.1Sthorpej
1351.133Ssevan# Alternate buffer queue strategies for better responsiveness under high
1361.133Ssevan# disk I/O load.
1371.133Ssevan#options 	BUFQ_READPRIO
1381.133Ssevanoptions 	BUFQ_PRIOCSCAN
1391.133Ssevan
1401.1Sthorpej# Development and Debugging options
1411.1Sthorpej
1421.1Sthorpej#options 	ARM700BUGTRACK	# track the ARM700 swi bug
1431.1Sthorpej#options 	PORTMASTER	# Enable PortMaster only options
1441.75Schristosoptions 	DIAGNOSTIC	# internal consistency checks
1451.135Sskrll#options 	UVMHIST		# kernhist for uvm/pmap subsystems
1461.1Sthorpejoptions 	DDB		# in-kernel debugger
1471.117Sjoergmakeoptions	COPY_SYMTAB=1 	# reserve symbol space for DDB
1481.8Smartin				# (needed because we boot netbsd.aout)
1491.1Sthorpej#options 	DDB_ONPANIC=0	# don't run DDB at panictime
1501.1Sthorpej#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
1511.11Swiz#options 	KERNEL_DEBUG	# compile in kernel debugging capability
1521.1Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
1531.1Sthorpej
1541.38Stsutsui#
1551.38Stsutsui# wscons options
1561.38Stsutsui#
1571.38Stsutsui# builtin terminal emulations
1581.38Stsutsui#options 	WSEMUL_SUN		# sun terminal emulation
1591.38Stsutsuioptions 	WSEMUL_VT100		# VT100 / VT220 emulation
1601.38Stsutsui# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
1611.38Stsutsui#options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
1621.38Stsutsui#options 	WS_DEFAULT_FG=WSCOL_WHITE
1631.38Stsutsui#options 	WS_DEFAULT_BG=WSCOL_BLACK
1641.38Stsutsui#options 	WS_DEFAULT_COLATTR="(0)"
1651.38Stsutsui#options 	WS_DEFAULT_MONOATTR="(0)"
1661.38Stsutsuioptions 	WS_KERNEL_FG=WSCOL_GREEN
1671.38Stsutsui#options 	WS_KERNEL_BG=WSCOL_BLACK
1681.38Stsutsui#options 	WS_KERNEL_COLATTR=""
1691.38Stsutsui#options 	WS_KERNEL_MONOATTR=""
1701.38Stsutsui# customization of console border color
1711.38Stsutsui#options 	WSDISPLAY_CUSTOM_BORDER	# border customization from wsconsctl(8)
1721.38Stsutsui#options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
1731.38Stsutsui# compatibility to other console drivers
1741.38Stsutsuioptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
1751.38Stsutsuioptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
1761.101Sabsoptions 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
1771.38Stsutsuioptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
1781.62Sdrochner# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
1791.38Stsutsui#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
1801.38Stsutsui#options 	PCKBD_LAYOUT="(KB_US | KB_SWAPCTRLCAPS)"
1811.38Stsutsui# allocate a number of virtual screens at autoconfiguration time
1821.38Stsutsui#options 	WSDISPLAY_DEFAULTSCREENS=4
1831.38Stsutsui# use a large software cursor that doesn't blink
1841.38Stsutsui#options 	PCDISPLAY_SOFTCURSOR
1851.38Stsutsui# modify the screen type of the console; defaults to "80x25"
1861.38Stsutsui#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
1871.38Stsutsui# console scrolling support.
1881.38Stsutsui#options 	WSDISPLAY_SCROLLSUPPORT
1891.38Stsutsui# enable VGA raster mode capable of displaying multilingual text on console
1901.38Stsutsui#options 	VGA_RASTERCONSOLE
1911.38Stsutsui
1921.1Sthorpejconfig		netbsd		root on ? type ?
1931.1Sthorpej
1941.1Sthorpej# The main bus device
1951.1Sthorpejmainbus0 at root
1961.1Sthorpej
1971.23Swiz# The boot CPU
1981.1Sthorpejcpu0 at mainbus?
1991.1Sthorpej
2001.1Sthorpej# Open Firmware devices
2011.1Sthorpejofbus*		at root
2021.1Sthorpejofbus*		at ofbus?
2031.1Sthorpej#ofdisk* 	at ofbus?
2041.1Sthorpej#ofnet*		at ofbus?	# don't use with cs0
2051.1Sthorpej#ofcons* 	at ofbus?	# don't use with pc0
2061.1Sthorpejofrom*		at ofbus?
2071.1Sthorpej
2081.1Sthorpejofisa*		at ofbus?
2091.1Sthorpej
2101.139Sthorpej# Sequoia core logic chipset
2111.139Sthorpejsequoia*	at ofbus?
2121.139Sthorpejofisa*		at sequoia?
2131.139Sthorpej
2141.140Sthorpej# Shark I2C interface
2151.140Sthorpejsharkiic*	at sequoia?
2161.140Sthorpejiic*		at sharkiic?
2171.140Sthorpej
2181.140Sthorpej# Only 2 DIMM slots in a Shark.
2191.140Sthorpejspdmem*        at iic? addr 0x50
2201.140Sthorpejspdmem*        at iic? addr 0x51
2211.140Sthorpej
2221.1Sthorpej# IDE/ATA disk
2231.1Sthorpejwdc*		at ofisa?
2241.21Sbouyeratabus* 	at wdc? channel ?
2251.21Sbouyerwd*		at atabus? drive ?
2261.1Sthorpej
2271.21Sbouyeratapibus*	at atabus?
2281.1Sthorpejcd*		at atapibus? drive?
2291.1Sthorpejsd*		at atapibus? drive?
2301.1Sthorpej
2311.38Stsutsui# wscons
2321.38Stsutsuipckbc*		at ofisa?
2331.38Stsutsuipckbd*		at pckbc?
2341.38Stsutsuipms*		at pckbc?
2351.38Stsutsuivga*		at ofbus?
2361.94Smacallanigsfb*		at ofbus?	# IGS CyberPro in rev. 5 sharks
2371.94Smacallanchipsfb*	at ofbus?	# C&T 65550 in rev. 4 and earlier
2381.68Smacallanwsdisplay*	at wsemuldisplaydev?
2391.38Stsutsuiwskbd*		at pckbd? console ?
2401.38Stsutsuiwsmouse*	at pms? mux 0
2411.1Sthorpej
2421.137Sthorpej# mc146818 real time clock
2431.137Sthorpejmcclock*	at ofisa?
2441.137Sthorpej
2451.1Sthorpej# CS8900 Ethernet@OFW
2461.1Sthorpejcs*		at ofisa?
2471.1Sthorpej
2481.1Sthorpej# Serial @OFW
2491.1Sthorpejcom*		at ofisa?
2501.1Sthorpej
2511.1Sthorpej# Parallel @OFW
2521.1Sthorpejlpt*		at ofisa?
2531.1Sthorpej
2541.1Sthorpej# Smart Card
2551.1Sthorpejofisascr*	at ofisa?
2561.1Sthorpejscr*		at ofisascr?
2571.1Sthorpej
2581.1Sthorpej# ESS Sound@OFW
2591.1Sthorpejess*		at ofisa?
2601.1Sthorpejaudio*		at ess?
2611.1Sthorpejopl*		at ess?
2621.1Sthorpejmidi*		at opl?
2631.1Sthorpej
2641.126Schristosspkr*		at audio?		# PC speaker (synthesized)
2651.124Snat
2661.1Sthorpej# Joystick @OFW
2671.1Sthorpejjoy*		at ofisa?
2681.1Sthorpej
2691.127Sjakllsch# PCI @OFW
2701.127Sjakllsch#vlpci*		at ofbus?
2711.127Sjakllsch#pci*		at vlpci?
2721.127Sjakllsch
2731.81Stls#
2741.81Stls# accept filters
2751.81Stlspseudo-device   accf_data		# "dataready" accept filter
2761.81Stlspseudo-device   accf_http		# "httpready" accept filter
2771.81Stls
2781.107Schristospseudo-device	loop			# network loopback
2791.58Srpaulopseudo-device	bpfilter		# packet filter
2801.133Ssevanpseudo-device	carp			# Common Address Redundancy Protocol
2811.59Scube#pseudo-device	sl			# CSLIP
2821.59Scube#pseudo-device	ppp			# PPP
2831.59Scube#pseudo-device	tun			# network tunneling over tty
2841.131Smaxv#pseudo-device	npf			# NPF packet filter
2851.59Scubepseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
2861.59Scube#pseudo-device	faith			# IPv[46] tcp relay translation i/f
2871.60Spavelpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
2881.1Sthorpejpseudo-device	pty			# pseudo-terminals
2891.59Scubepseudo-device	vnd			# disk-like interface to files
2901.47Shubertf#options 	VND_COMPRESSION		# compressed vnd(4)
2911.107Schristos#pseudo-device	ccd			# concatenated disk devices
2921.89Spookapseudo-device	fss			# file system snapshot device
2931.107Schristos#pseudo-device	cgd			# cryptographic disk devices
2941.1Sthorpej
2951.91Shannken#pseudo-device	md			# Ramdisk driver
2961.1Sthorpej#pseudo-device	profiler 1		# fiq based profiling device
2971.109Schristospseudo-device	sequencer		# MIDI sequencer
2981.1Sthorpejpseudo-device	openfirm		# /dev/openfirm
2991.108Schristos#pseudo-device	vcoda			# coda kernel <-> cachemanager
3001.6Slukempseudo-device	clockctl		# user control of clock subsystem
3011.132Sisakipseudo-device	drvctl			# user control of drive subsystem
3021.38Stsutsuipseudo-device	wsmux			# mouse & keyboard multiplexor
3031.38Stsutsuipseudo-device	wsfont
3041.16Sraggepseudo-device	ksyms			# /dev/ksyms
3051.100Smrgpseudo-device	putter			# for puffs and pud
3061.142Sriastradpseudo-device 	swwdog			# software watchdog timer -- swwdog(4)
3071.55Selad
3081.133Ssevaninclude "dev/veriexec.config"
3091.75Schristos
3101.75Schristosoptions PAX_MPROTECT=0			# PaX mprotect(2) restrictions
3111.75Schristosoptions PAX_ASLR=0			# PaX Address Space Layout Randomization
3121.143Sabs
3131.144Sabs# Pull in optional local configuration - always at end
3141.144Sabscinclude	"arch/shark/conf/GENERIC.local"
315