GENERIC revision 1.13
11.13Slukem#	$NetBSD: GENERIC,v 1.13 2001/11/20 12:56:25 lukem Exp $
21.1Smarcus#
31.1Smarcus#	GENERIC -- everything that's currently supported
41.1Smarcus#
51.1Smarcus
61.1Smarcusinclude "arch/dreamcast/conf/std.dreamcast"
71.1Smarcus
81.1Smarcus# Enable the hooks used for initializing the root memory-disk.
91.1Smarcusoptions 	MEMORY_DISK_HOOKS
101.1Smarcusoptions 	MEMORY_DISK_IS_ROOT	# force root on memory disk
111.1Smarcusoptions 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
121.8Smarcusoptions 	MINIROOTSIZE=2880	# size of memory disk, in blocks
131.13Slukem#options 	MINIROOTSIZE=6000
141.1Smarcus
151.1Smarcusoptions 	DONT_INIT_BSC
161.1Smarcus
171.3Smarcus# wscons options
181.3Smarcusoptions 	WSEMUL_VT100		# VT100 / VT220 emulation
191.7Sthorpejoptions 	FONT_BOLD8x16
201.3Smarcus
211.1Smarcusmaxusers	16		# estimated number of users
221.1Smarcus
231.1Smarcus# CPU support
241.1Smarcusoptions 	SH7750
251.13Slukemoptions 	SH4
261.13Slukemoptions 	DREAMCAST
271.13Slukem#options 	SH4_PCMCIA
281.1Smarcusoptions 	EVBSH4
291.3Smarcus#options 	MMEYE
301.13Slukemoptions 	PCLOCK=49900000			# 50MHz
311.13Slukem#options 	PCLOCK=50000000			# 50MHz
321.13Slukemoptions 	IOM_ROM_BEGIN=0x00000000
331.13Slukemoptions 	IOM_ROM_SIZE=0x00100000		# 1MB
341.13Slukemoptions 	IOM_RAM_BEGIN=0x8c000000
351.13Slukemoptions 	IOM_RAM_SIZE=0x01000000		# 16MB
361.13Slukem#options 	INITTODR_ALWAYS_USE_RTC
371.13Slukem#options 	BRAINS
381.13Slukem#options 	USE_RTCCLK
391.13Slukem#options 	SYNC_CLOCK_TO_RTC
401.1Smarcus
411.13Slukem#options 	LED_ADDR=0xa8000000
421.1Smarcus
431.1Smarcus# Standard system options
441.1Smarcus#options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
451.1Smarcus#options 	INSECURE	# disable kernel security levels
461.1Smarcus
471.13Slukem#options 	RTC_OFFSET=-540
481.8Smarcusoptions 	HZ=100		# clock interrupt generates every 1/HZ sec
491.1Smarcus#options 	NTP		# NTP phase/frequency locked loop
501.1Smarcus
511.1Smarcus#options 	KTRACE		# system call tracing via ktrace(1)
521.1Smarcus
531.1Smarcus#options 	SYSVMSG		# System V-like message queues
541.1Smarcus#options 	SYSVSEM		# System V-like semaphores
551.13Slukem#options 	SEMMNI=10	# number of semaphore identifiers
561.13Slukem#options 	SEMMNS=60	# number of semaphores in system
571.13Slukem#options 	SEMUME=10	# max number of undo entries per process
581.13Slukem#options 	SEMMNU=30	# number of undo structures in system
591.1Smarcus#options 	SYSVSHM		# System V-like memory sharing
601.1Smarcus#options 	SHMMAXPGS=1024	# 1024 pages is the default
611.1Smarcus
621.1Smarcus# Diagnostic/debugging support options
631.1Smarcus#options 	DIAGNOSTIC	# cheap kernel consistency checks
641.1Smarcus#options 	DEBUG		# expensive debugging checks/support
651.1Smarcus#options 	DDB		# in-kernel debugger
661.1Smarcus#makeoptions	DEBUG="-g"	# compile full symbol table
671.1Smarcus#options 	SYSCALL_DEBUG
681.1Smarcus#options 	UVMHIST
691.13Slukem#options 	UVMHIST_PRINT
701.1Smarcus
711.1Smarcus# Compatibility options
721.1Smarcusoptions 	COMPAT_13	# NetBSD 1.3
731.1Smarcusoptions 	COMPAT_14	# NetBSD 1.4,
741.1Smarcusoptions 	COMPAT_43	# and 4.3BSD
751.1Smarcus
761.1Smarcus# Executable format options
771.1Smarcusoptions 	EXEC_COFF	# COFF executables
781.1Smarcusoptions 	EXEC_ELF32	# 32-bit ELF executables
791.1Smarcus
801.1Smarcus# File systems
811.1Smarcusfile-system 	FFS		# UFS
821.1Smarcusfile-system 	MFS		# memory file system
831.6Sthorpejfile-system 	NFS		# Network File System client
841.1Smarcusfile-system 	PROCFS		# /proc
851.1Smarcusfile-system 	KERNFS		# /kern
861.1Smarcus#file-system 	NULLFS		# loopback file system
871.1Smarcus#file-system 	UMAPFS		# NULLFS + uid and gid remapping
881.4Smarcusfile-system	CD9660		# CD-ROM file system
891.1Smarcus
901.1Smarcus# File system options
911.1Smarcus#options 	QUOTA		# UFS quotas
921.1Smarcus#options 	NFSSERVER	# Network File System server
931.1Smarcus
941.1Smarcus# Networking options
951.1Smarcusoptions 	INET		# IP + ICMP + TCP + UDP
961.6Sthorpejoptions 	NFS_BOOT_DHCP	# Support DHCP NFS root
971.1Smarcus
981.1Smarcus#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
991.1Smarcus#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1001.1Smarcus#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1011.1Smarcus
1021.1Smarcus# Kernel root file system and dump configuration.
1031.1Smarcus#config		netbsd	root on ? type nfs
1041.1Smarcus#config		netbsd	root on wd0a type ffs
1051.6Sthorpejconfig		netbsd	root on ? type ?
1061.1Smarcus
1071.1Smarcus#
1081.1Smarcus# Device configuration
1091.1Smarcus#
1101.1Smarcus
1111.1Smarcusmainbus0 at root
1121.1Smarcus
1131.1Smarcusshb*	at mainbus?
1141.1Smarcus
1151.1Smarcus# Serial Devices
1161.13Slukemoptions 	SCIFCN_SPEED=57600
1171.1Smarcusscif0 at shb? port 0xffe80000 irq 12
1181.3Smarcus
1191.6Sthorpejpvr0		at shb?
1201.13Slukemwsdisplay*	at pvr? console ?
1211.3Smarcus
1221.6Sthorpejmaple0		at shb?
1231.6Sthorpejmkbd*		at maple? port ? subunit ?
1241.6Sthorpejwskbd*		at mkbd? console ?
1251.6Sthorpej
1261.6Sthorpejgdrom0		at shb?
1271.6Sthorpej
1281.6Sthorpejg2bus0		at shb?
1291.6Sthorpejgapspci*	at g2bus?			# GAPS PCI bridge
1301.6Sthorpejpci*		at gapspci?
1311.6Sthorpejrtk*		at pci? dev ? function ?	# SEGA Broadband Adapter
1321.6Sthorpejukphy*		at mii? phy ?
1331.1Smarcus
1341.1Smarcus# SH PCMCIA controllers
1351.1Smarcus#shpcic0	at shb? port 0xb000000a iomem 0xb8000000 iosiz 0x1000000
1361.1Smarcus#shpcic1	at shb? port 0xb000000c iomem 0xb9000000 iosiz 0x1000000
1371.1Smarcus
1381.1Smarcus# PCMCIA bus support
1391.1Smarcus#pcmcia*	at shpcic? controller ? socket ?
1401.1Smarcus
1411.1Smarcus#com*	at pcmcia? function ?		# Modems and serial cards
1421.1Smarcus#wdc*	at pcmcia? function ?
1431.1Smarcus#wd*	at wdc? drive ?			# the drives themselves
1441.1Smarcus
1451.1Smarcus#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
1461.1Smarcus#mbe*	at pcmcia? function ?		# MB8696x based Ethernet
1471.1Smarcus#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
1481.1Smarcus#sm*	at pcmcia? function ?		# Megahertz Ethernet
1491.1Smarcus
1501.1Smarcus#pseudo-device	vnd		4	# disk-like interface to files
1511.1Smarcus#pseudo-device	bpfilter	8	# Berkeley packet filter
1521.12Satatat#pseudo-device	bridge			# simple inter-network bridging
1531.1Smarcus#pseudo-device	ipfilter		# IP filter (firewall) and NAT
1541.1Smarcuspseudo-device	loop			# network loopback
1551.1Smarcuspseudo-device	pty			# pseudo-terminals
1561.1Smarcus#pseudo-device	ppp		2	# Point-to-Point Protocol
1571.1Smarcus#pseudo-device	tun		2	# network tunneling over tty
1581.9Sitojunpseudo-device	rnd			# /dev/random and in-kernel generator
1591.1Smarcus
1601.1Smarcus# Enable the hooks used for initializing the root memory-disk.
1611.1Smarcus#options 	MEMORY_DISK_HOOKS
1621.1Smarcus#options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
1631.1Smarcus#options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
1641.1Smarcus#options 	MINIROOTSIZE=3074	# size of memory disk, in blocks
1651.1Smarcus
1661.1Smarcuspseudo-device	md		1	# memory disk device (ramdisk)
167