IQ80321 revision 1.4
11.4Sgmcgarry#	$NetBSD: IQ80321,v 1.4 2002/04/12 08:10:56 gmcgarry Exp $
21.1Sthorpej#
31.1Sthorpej#	IQ80321 -- Intel IQ80321 Evaluation Board Kernel
41.1Sthorpej#
51.1Sthorpej
61.1Sthorpejinclude	"arch/evbarm/conf/std.iq80321"
71.1Sthorpej
81.1Sthorpej# estimated number of users
91.1Sthorpej
101.1Sthorpejmaxusers	32
111.1Sthorpej
121.1Sthorpej# Standard system options
131.1Sthorpej
141.1Sthorpejoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
151.1Sthorpej#options 	NTP		# NTP phase/frequency locked loop
161.1Sthorpej
171.1Sthorpej# CPU options
181.1Sthorpej
191.1Sthorpej# For StrongARM systems
201.1Sthorpejoptions 	CPU_XSCALE_80321	# Support the XScale core
211.1Sthorpejmakeoptions	COPTS="-O2 -march=armv4 -mtune=strongarm"
221.1Sthorpej#makeoptions	COPTS="-O2 -march=armv5 -mtune=xscale"
231.1Sthorpej
241.1Sthorpej# Architecture options
251.1Sthorpej
261.1Sthorpej# File systems
271.1Sthorpej
281.1Sthorpejfile-system	FFS		# UFS
291.1Sthorpej#file-system	LFS		# log-structured file system
301.1Sthorpejfile-system	MFS		# memory file system
311.1Sthorpejfile-system	NFS		# Network file system
321.1Sthorpej#file-system 	ADOSFS		# AmigaDOS-compatible file system
331.1Sthorpej#file-system 	EXT2FS		# second extended file system (linux)
341.1Sthorpej#file-system	CD9660		# ISO 9660 + Rock Ridge file system
351.1Sthorpej#file-system	MSDOSFS		# MS-DOS file system
361.1Sthorpejfile-system	FDESC		# /dev/fd
371.1Sthorpejfile-system	KERNFS		# /kern
381.1Sthorpejfile-system	NULLFS		# loopback file system
391.1Sthorpej#file-system	PORTAL		# portal filesystem (still experimental)
401.1Sthorpejfile-system	PROCFS		# /proc
411.1Sthorpej#file-system	UMAPFS		# NULLFS + uid and gid remapping
421.1Sthorpej#file-system	UNION		# union file system
431.1Sthorpej
441.1Sthorpej# File system options
451.1Sthorpej#options 	QUOTA		# UFS quotas
461.1Sthorpej#options 	FFS_EI		# FFS Endian Independant support
471.1Sthorpejoptions 	NFSSERVER
481.1Sthorpejoptions 	SOFTDEP
491.1Sthorpej
501.1Sthorpej# Networking options
511.1Sthorpej
521.1Sthorpej#options 	GATEWAY		# packet forwarding
531.1Sthorpejoptions 	INET		# IP + ICMP + TCP + UDP
541.1Sthorpejoptions 	INET6		# IPV6
551.1Sthorpej#options 	IPSEC		# IP security
561.1Sthorpej#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
571.1Sthorpej#options 	IPSEC_DEBUG	# debug for IP security
581.1Sthorpej#options 	MROUTING	# IP multicast routing
591.1Sthorpej#options 	NS		# XNS
601.1Sthorpej#options 	NSIP		# XNS tunneling over IP
611.1Sthorpej#options 	ISO,TPIP	# OSI
621.1Sthorpej#options 	EON		# OSI tunneling over IP
631.1Sthorpej#options 	CCITT,LLC,HDLC	# X.25
641.1Sthorpej#options 	NETATALK	# AppleTalk networking
651.1Sthorpej#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
661.1Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
671.1Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
681.1Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
691.1Sthorpej#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
701.1Sthorpej
711.1Sthorpejoptions 	NFS_BOOT_BOOTP
721.1Sthorpejoptions 	NFS_BOOT_DHCP
731.1Sthorpej#options 	NFS_BOOT_BOOTPARAM
741.1Sthorpej
751.1Sthorpej# Compatibility options
761.1Sthorpej
771.1Sthorpej#options 	COMPAT_43	# 4.3BSD compatibility.
781.1Sthorpejoptions 	COMPAT_15	# NetBSD 1.5 compatibility.
791.1Sthorpejoptions 	COMPAT_14	# NetBSD 1.4 compatibility.
801.1Sthorpej#options 	COMPAT_13	# NetBSD 1.3 compatibility.
811.1Sthorpej#options 	COMPAT_12	# NetBSD 1.2 compatibility.
821.1Sthorpej#options 	COMPAT_11	# NetBSD 1.1 compatibility.
831.1Sthorpej#options 	COMPAT_10	# NetBSD 1.0 compatibility.
841.1Sthorpej#options 	COMPAT_09	# NetBSD 0.9 compatibility.
851.1Sthorpej#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
861.1Sthorpej
871.1Sthorpej# Shared memory options
881.1Sthorpej
891.1Sthorpejoptions 	SYSVMSG		# System V-like message queues
901.1Sthorpejoptions 	SYSVSEM		# System V-like semaphores
911.1Sthorpej#options 	SEMMNI=10	# number of semaphore identifiers
921.1Sthorpej#options 	SEMMNS=60	# number of semaphores in system
931.1Sthorpej#options 	SEMUME=10	# max number of undo entries per process
941.1Sthorpej#options 	SEMMNU=30	# number of undo structures in system
951.1Sthorpejoptions 	SYSVSHM		# System V-like memory sharing
961.1Sthorpejoptions 	SHMMAXPGS=1024	# 1024 pages is the default
971.1Sthorpej
981.1Sthorpej# Device options
991.1Sthorpej
1001.1Sthorpej#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
1011.3Slukem#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
1021.1Sthorpej#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
1031.1Sthorpej
1041.1Sthorpej# Console options.  The default console is speed is 115200 baud.
1051.1Sthorpej#options 	CONSPEED=9600		# Console speed
1061.1Sthorpej
1071.1Sthorpej# Miscellaneous kernel options
1081.1Sthorpejoptions 	KTRACE		# system call tracing, a la ktrace(1)
1091.1Sthorpejoptions 	IRQSTATS	# manage IRQ statistics
1101.1Sthorpej#options 	LKM		# loadable kernel modules
1111.1Sthorpej#options 	KMEMSTATS	# kernel memory statistics
1121.1Sthorpej#options 	SCSIVERBOSE	# Verbose SCSI errors
1131.1Sthorpejoptions 	PCIVERBOSE	# Verbose PCI descriptions
1141.1Sthorpejoptions 	MIIVERBOSE	# Verbose MII autoconfuration messages
1151.1Sthorpej#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1161.1Sthorpej#options 	DDB_KEYCODE=0x40
1171.4Sgmcgarry#options 	USERCONF	# userconf(4) support
1181.1Sthorpej#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1191.1Sthorpej
1201.1Sthorpej# Development and Debugging options
1211.1Sthorpej
1221.1Sthorpejoptions 	DIAGNOSTIC	# internally consistency checks
1231.1Sthorpej#options 	DEBUG
1241.1Sthorpej#options 	PMAP_DEBUG	# Enable pmap_debug_level code
1251.1Sthorpej#options 	IPKDB		# remote kernel debugging
1261.1Sthorpej#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
1271.1Sthorpejoptions 	DDB		# in-kernel debugger
1281.1Sthorpejoptions 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
1291.1Sthorpejmakeoptions	DEBUG="-g"	# compile full symbol table
1301.1Sthorpejoptions 	SYMTAB_SPACE=200000
1311.1Sthorpej
1321.1Sthorpejconfig		netbsd		root on ? type ?
1331.2Sthorpejconfig		netbsd-wm0	root on wm0 type nfs
1341.1Sthorpej
1351.1Sthorpej# The main bus device
1361.1Sthorpejmainbus0	at root
1371.1Sthorpej
1381.1Sthorpej# The boot cpu
1391.1Sthorpejcpu0		at mainbus?
1401.1Sthorpej
1411.1Sthorpej# On-board device support
1421.1Sthorpejobio*		at mainbus?
1431.1Sthorpejcom*		at obio? addr ?		# on-board TI 165C50 UART
1441.1Sthorpej
1451.1Sthorpej# i80321 I/O Processor peripheral support
1461.1Sthorpejiopxs*		at mainbus?
1471.1Sthorpejpci0		at iopxs? bus ?
1481.1Sthorpej
1491.1Sthorpej# PCI-PCI bridges
1501.1Sthorpejppb*		at pci? dev ? function ?
1511.1Sthorpejpci*		at ppb? bus ?
1521.1Sthorpej
1531.1Sthorpej#
1541.1Sthorpej# Networking devices
1551.1Sthorpej#
1561.1Sthorpej
1571.1Sthorpej# PCI network devices
1581.1Sthorpejwm*		at pci? dev ? function ?	# Intel i82544 Gig-E
1591.1Sthorpej
1601.1Sthorpej# MII/PHY support
1611.1Sthorpejmakphy*		at mii? phy ?			# Marvell 88E1000 PHYs
1621.1Sthorpejukphy*		at mii? phy ?			# Generic IEEE 802.3u PHYs
1631.1Sthorpej
1641.1Sthorpej# Pseudo-Devices
1651.1Sthorpej
1661.1Sthorpej# disk/mass storage pseudo-devices
1671.1Sthorpej#pseudo-device	md		1	# memory disk device (ramdisk)
1681.1Sthorpejpseudo-device	vnd		4	# disk-like interface to files
1691.1Sthorpej
1701.1Sthorpej# network pseudo-devices
1711.1Sthorpejpseudo-device	bpfilter	4	# Berkeley packet filter
1721.1Sthorpejpseudo-device	loop			# network loopback
1731.1Sthorpej
1741.1Sthorpej# miscellaneous pseudo-devices
1751.1Sthorpejpseudo-device	pty			# pseudo-terminals
1761.1Sthorpejpseudo-device	rnd			# /dev/random and in-kernel generator
177