IQ80310 revision 1.5
11.5Slukem# $NetBSD: IQ80310,v 1.5 2001/11/20 12:56:25 lukem 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.1Smattfile-system EXT2FS # second extended file system (linux) 341.1Smatt#file-system CD9660 # ISO 9660 + Rock Ridge file system 351.1Smattfile-system MSDOSFS # MS-DOS file system 361.1Smatt#file-system FDESC # /dev/fd 371.1Smatt#file-system KERNFS # /kern 381.1Smattfile-system NULLFS # loopback file system 391.1Smatt#file-system PORTAL # portal filesystem (still experimental) 401.1Smatt#file-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.1Smatt 1051.1Smatt# Miscellaneous kernel options 1061.1Smattoptions KTRACE # system call tracing, a la ktrace(1) 1071.1Smattoptions IRQSTATS # manage IRQ statistics 1081.1Smatt#options LKM # loadable kernel modules 1091.1Smatt#options KMEMSTATS # kernel memory statistics 1101.1Smatt#options SCSIVERBOSE # Verbose SCSI errors 1111.1Smattoptions PCIVERBOSE # Verbose PCI descriptions 1121.1Smattoptions MIIVERBOSE # Verbose MII autoconfuration messages 1131.1Smatt#options PCI_CONFIG_DUMP # verbosely dump PCI config space 1141.1Smatt#options DDB_KEYCODE=0x40 1151.1Smatt 1161.1Smatt# Development and Debugging options 1171.1Smatt 1181.1Smattoptions DIAGNOSTIC # internally consistency checks 1191.5Slukem#options PMAP_DEBUG # Enable pmap_debug_level code 1201.1Smatt#options IPKDB # remote kernel debugging 1211.3Sthorpej#options VERBOSE_INIT_ARM # verbose bootstraping messages 1221.1Smattoptions DDB # in-kernel debugger 1231.1Smattoptions DDB_HISTORY_SIZE=100 # Enable history editing in DDB 1241.1Smattmakeoptions DEBUG="-g" # compile full symbol table 1251.3Sthorpej#options SYMTAB_SPACE=200000 1261.1Smatt 1271.1Smattconfig netbsd root on ? type ? 1281.1Smatt 1291.1Smatt# The main bus device 1301.1Smattmainbus0 at root 1311.1Smatt 1321.1Smatt# The boot cpu 1331.1Smattcpu0 at mainbus? 1341.1Smatt 1351.2Sthorpej# On-board device support 1361.2Sthorpejobio* at mainbus? 1371.2Sthorpejcom* at obio? addr ? # on-board XR 16550 UARTs 1381.3Sthorpej 1391.3Sthorpej# i80312 Companion I/O support 1401.3Sthorpejiopxs* at mainbus? 1411.3Sthorpejpci* at iopxs? 1421.3Sthorpej 1431.3Sthorpej# PCI-PCI bridges 1441.3Sthorpejppb* at pci? dev ? function ? 1451.3Sthorpejpci* at ppb? bus ? 1461.3Sthorpej 1471.3Sthorpej# 1481.3Sthorpej# Networking devices 1491.3Sthorpej# 1501.3Sthorpej 1511.3Sthorpej# PCI network devices 1521.3Sthorpejfxp* at pci? dev ? function ? # Intel i8255x 10/100 Eth. 1531.3Sthorpej 1541.3Sthorpej# MII/PHY support 1551.3Sthorpejinphy* at mii? phy ? # Intel i82555 10/100 PHYs 1561.3Sthorpejukphy* at mii? phy ? # Generic IEEE 802.3u PHYs 1571.1Smatt 1581.1Smatt# Pseudo-Devices 1591.1Smatt 1601.1Smatt# disk/mass storage pseudo-devices 1611.1Smatt#pseudo-device md 1 # memory disk device (ramdisk) 1621.1Smattpseudo-device vnd 4 # disk-like interface to files 1631.1Smatt 1641.1Smatt# network pseudo-devices 1651.1Smattpseudo-device bpfilter 4 # Berkeley packet filter 1661.1Smattpseudo-device loop # network loopback 1671.1Smatt 1681.1Smatt# miscellaneous pseudo-devices 1691.1Smattpseudo-device pty # pseudo-terminals 1701.1Smattpseudo-device rnd # /dev/random and in-kernel generator 171