IQ80310 revision 1.9
11.9Sjdolecek#	$NetBSD: IQ80310,v 1.9 2002/01/27 13:23:15 jdolecek Exp $
21.1Smatt#
31.1Smatt#	IQ80310 -- Intel IQ80310 Evaluation Board Kernel
41.1Smatt#
51.1Smatt
61.1Smattinclude	"arch/evbarm/conf/std.iq80310"
71.1Smatt
81.1Smatt# estimated number of users
91.1Smatt
101.1Smattmaxusers	32
111.1Smatt
121.1Smatt# Standard system options
131.1Smatt
141.1Smattoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
151.1Smatt#options 	NTP		# NTP phase/frequency locked loop
161.1Smatt
171.1Smatt# CPU options
181.1Smatt
191.1Smatt# For StrongARM systems
201.1Smattoptions 	CPU_XSCALE	# Support the XScale core
211.1Smattmakeoptions	COPTS="-O2 -march=armv4 -mtune=strongarm"
221.1Smatt#makeoptions	COPTS="-O2 -march=armv5 -mtune=xscale"
231.1Smatt
241.1Smatt# Architecture options
251.1Smatt
261.1Smatt# File systems
271.1Smatt
281.1Smattfile-system	FFS		# UFS
291.1Smatt#file-system	LFS		# log-structured file system
301.1Smattfile-system	MFS		# memory file system
311.1Smattfile-system	NFS		# Network file system
321.1Smatt#file-system 	ADOSFS		# AmigaDOS-compatible file system
331.6Sthorpej#file-system 	EXT2FS		# second extended file system (linux)
341.1Smatt#file-system	CD9660		# ISO 9660 + Rock Ridge file system
351.6Sthorpej#file-system	MSDOSFS		# MS-DOS file system
361.6Sthorpejfile-system	FDESC		# /dev/fd
371.6Sthorpejfile-system	KERNFS		# /kern
381.1Smattfile-system	NULLFS		# loopback file system
391.1Smatt#file-system	PORTAL		# portal filesystem (still experimental)
401.6Sthorpejfile-system	PROCFS		# /proc
411.1Smatt#file-system	UMAPFS		# NULLFS + uid and gid remapping
421.1Smatt#file-system	UNION		# union file system
431.1Smatt
441.1Smatt# File system options
451.1Smatt#options 	QUOTA		# UFS quotas
461.1Smatt#options 	FFS_EI		# FFS Endian Independant support
471.1Smattoptions 	NFSSERVER
481.1Smattoptions 	SOFTDEP
491.1Smatt
501.1Smatt# Networking options
511.1Smatt
521.1Smatt#options 	GATEWAY		# packet forwarding
531.1Smattoptions 	INET		# IP + ICMP + TCP + UDP
541.1Smattoptions 	INET6		# IPV6
551.1Smatt#options 	IPSEC		# IP security
561.1Smatt#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
571.1Smatt#options 	IPSEC_DEBUG	# debug for IP security
581.1Smatt#options 	MROUTING	# IP multicast routing
591.1Smatt#options 	NS		# XNS
601.1Smatt#options 	NSIP		# XNS tunneling over IP
611.1Smatt#options 	ISO,TPIP	# OSI
621.1Smatt#options 	EON		# OSI tunneling over IP
631.1Smatt#options 	CCITT,LLC,HDLC	# X.25
641.1Smatt#options 	NETATALK	# AppleTalk networking
651.1Smatt#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
661.1Smatt#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
671.1Smatt#options 	PPP_DEFLATE	# Deflate compression support for PPP
681.1Smatt#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
691.1Smatt#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
701.1Smatt
711.1Smattoptions 	NFS_BOOT_BOOTP
721.1Smattoptions 	NFS_BOOT_DHCP
731.1Smatt#options 	NFS_BOOT_BOOTPARAM
741.1Smatt
751.1Smatt# Compatibility options
761.1Smatt
771.1Smatt#options 	COMPAT_43	# 4.3BSD compatibility.
781.1Smattoptions 	COMPAT_15	# NetBSD 1.5 compatibility.
791.1Smattoptions 	COMPAT_14	# NetBSD 1.4 compatibility.
801.1Smatt#options 	COMPAT_13	# NetBSD 1.3 compatibility.
811.1Smatt#options 	COMPAT_12	# NetBSD 1.2 compatibility.
821.1Smatt#options 	COMPAT_11	# NetBSD 1.1 compatibility.
831.1Smatt#options 	COMPAT_10	# NetBSD 1.0 compatibility.
841.1Smatt#options 	COMPAT_09	# NetBSD 0.9 compatibility.
851.1Smatt#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
861.1Smatt
871.1Smatt# Shared memory options
881.1Smatt
891.1Smattoptions 	SYSVMSG		# System V-like message queues
901.1Smattoptions 	SYSVSEM		# System V-like semaphores
911.5Slukem#options 	SEMMNI=10	# number of semaphore identifiers
921.5Slukem#options 	SEMMNS=60	# number of semaphores in system
931.5Slukem#options 	SEMUME=10	# max number of undo entries per process
941.5Slukem#options 	SEMMNU=30	# number of undo structures in system
951.1Smattoptions 	SYSVSHM		# System V-like memory sharing
961.1Smattoptions 	SHMMAXPGS=1024	# 1024 pages is the default
971.1Smatt
981.1Smatt# Device options
991.1Smatt
1001.1Smatt#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
1011.1Smatt#options 	MEMORY_DISK_SIZE=0	# Size in blocks
1021.1Smatt#options 	MINIROOTSIZE=3400	# Size in blocks
1031.1Smatt#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
1041.8Sthorpej
1051.8Sthorpej# Console options.  The default console is on connector J9 ("com0") at
1061.8Sthorpej# 115200 baud.
1071.8Sthorpej#options 	CONSPEED=9600		# Console speed
1081.8Sthorpej#options 	CONUNIT=1		# Console unit (0=J9, 1=J10)
1091.1Smatt
1101.1Smatt# Miscellaneous kernel options
1111.1Smattoptions 	KTRACE		# system call tracing, a la ktrace(1)
1121.1Smattoptions 	IRQSTATS	# manage IRQ statistics
1131.1Smatt#options 	LKM		# loadable kernel modules
1141.1Smatt#options 	KMEMSTATS	# kernel memory statistics
1151.1Smatt#options 	SCSIVERBOSE	# Verbose SCSI errors
1161.1Smattoptions 	PCIVERBOSE	# Verbose PCI descriptions
1171.1Smattoptions 	MIIVERBOSE	# Verbose MII autoconfuration messages
1181.1Smatt#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1191.1Smatt#options 	DDB_KEYCODE=0x40
1201.9Sjdolecek#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1211.1Smatt
1221.1Smatt# Development and Debugging options
1231.1Smatt
1241.1Smattoptions 	DIAGNOSTIC	# internally consistency checks
1251.6Sthorpej#options 	DEBUG
1261.5Slukem#options 	PMAP_DEBUG	# Enable pmap_debug_level code
1271.1Smatt#options 	IPKDB		# remote kernel debugging
1281.3Sthorpej#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
1291.1Smattoptions 	DDB		# in-kernel debugger
1301.1Smattoptions 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
1311.1Smattmakeoptions	DEBUG="-g"	# compile full symbol table
1321.7Sthorpejoptions 	SYMTAB_SPACE=200000
1331.1Smatt
1341.6Sthorpejconfig		netbsd		root on ? type ?
1351.6Sthorpejconfig		netbsd-fxp0	root on fxp0 type nfs
1361.1Smatt
1371.1Smatt# The main bus device
1381.1Smattmainbus0	at root
1391.1Smatt
1401.1Smatt# The boot cpu
1411.1Smattcpu0		at mainbus?
1421.1Smatt
1431.2Sthorpej# On-board device support
1441.2Sthorpejobio*		at mainbus?
1451.2Sthorpejcom*		at obio? addr ?		# on-board XR 16550 UARTs
1461.3Sthorpej
1471.3Sthorpej# i80312 Companion I/O support
1481.3Sthorpejiopxs*		at mainbus?
1491.6Sthorpejpci0		at iopxs? bus ?
1501.3Sthorpej
1511.3Sthorpej# PCI-PCI bridges
1521.6Sthorpejppb0		at pci0 dev 7 function ?	# on-board 21154
1531.6Sthorpejpci1		at ppb0 bus ?
1541.6Sthorpej
1551.3Sthorpejppb*		at pci? dev ? function ?
1561.3Sthorpejpci*		at ppb? bus ?
1571.3Sthorpej
1581.3Sthorpej#
1591.3Sthorpej# Networking devices
1601.3Sthorpej#
1611.3Sthorpej
1621.3Sthorpej# PCI network devices
1631.6Sthorpejfxp0		at pci1 dev 0 function ?	# on-board i82559
1641.3Sthorpejfxp*		at pci? dev ? function ?	# Intel i8255x 10/100 Eth.
1651.3Sthorpej
1661.3Sthorpej# MII/PHY support
1671.3Sthorpejinphy*		at mii? phy ?			# Intel i82555 10/100 PHYs
1681.3Sthorpejukphy*		at mii? phy ?			# Generic IEEE 802.3u PHYs
1691.1Smatt
1701.1Smatt# Pseudo-Devices
1711.1Smatt
1721.1Smatt# disk/mass storage pseudo-devices
1731.1Smatt#pseudo-device	md		1	# memory disk device (ramdisk)
1741.1Smattpseudo-device	vnd		4	# disk-like interface to files
1751.1Smatt
1761.1Smatt# network pseudo-devices
1771.1Smattpseudo-device	bpfilter	4	# Berkeley packet filter
1781.1Smattpseudo-device	loop			# network loopback
1791.1Smatt
1801.1Smatt# miscellaneous pseudo-devices
1811.1Smattpseudo-device	pty			# pseudo-terminals
1821.1Smattpseudo-device	rnd			# /dev/random and in-kernel generator
183