Home | History | Annotate | Line # | Download | only in conf
IXDP425 revision 1.14
      1 #	$NetBSD: IXDP425,v 1.14 2005/08/19 02:03:51 christos Exp $
      2 #
      3 #	IXDP425 -- Intel IXDP425/IXCDP1100 Development Platform
      4 #
      5 
      6 include	"arch/evbarm/conf/std.ixdp425"
      7 
      8 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9 
     10 # estimated number of users
     11 
     12 maxusers	32
     13 
     14 # Standard system options
     15 
     16 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     17 #options 	NTP		# NTP phase/frequency locked loop
     18 
     19 # CPU options
     20 
     21 # For XScale systems
     22 options 	CPU_XSCALE_IXP425	# Support the XScale core
     23 makeoptions	CPUFLAGS="-mcpu=xscale"
     24 
     25 # Architecture options
     26 options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
     27 #options 	HZ=512
     28 
     29 # Board Type
     30 makeoptions	BOARDTYPE="ixdp425"
     31 options 	EVBARM_BOARDTYPE=ixdp425
     32 
     33 # File systems
     34 
     35 file-system	FFS		# UFS
     36 #file-system	LFS		# log-structured file system
     37 file-system	MFS		# memory file system
     38 file-system	NFS		# Network file system
     39 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     40 #file-system 	EXT2FS		# second extended file system (linux)
     41 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     42 #file-system	MSDOSFS		# MS-DOS file system
     43 file-system	FDESC		# /dev/fd
     44 file-system	KERNFS		# /kern
     45 file-system	NULLFS		# loopback file system
     46 #file-system	PORTAL		# portal filesystem (still experimental)
     47 file-system	PROCFS		# /proc
     48 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     49 #file-system	UNION		# union file system
     50 
     51 # File system options
     52 #options 	QUOTA		# UFS quotas
     53 #options 	FFS_EI		# FFS Endian Independant support
     54 options 	NFSSERVER
     55 options 	SOFTDEP
     56 #options 	FFS_NO_SNAPSHOT	# ffs snapshots
     57 
     58 # Networking options
     59 
     60 #options 	GATEWAY		# packet forwarding
     61 options 	INET		# IP + ICMP + TCP + UDP
     62 options 	INET6		# IPV6
     63 #options 	IPSEC		# IP security
     64 #options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
     65 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     66 #options 	IPSEC_DEBUG	# debug for IP security
     67 #options 	MROUTING	# IP multicast routing
     68 #options 	PIM		# Protocol Independent Multicast
     69 #options 	NS		# XNS
     70 #options 	NSIP		# XNS tunneling over IP
     71 #options 	ISO,TPIP	# OSI
     72 #options 	EON		# OSI tunneling over IP
     73 #options 	CCITT,LLC,HDLC	# X.25
     74 #options 	NETATALK	# AppleTalk networking
     75 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     76 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     77 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     78 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     79 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     80 
     81 options 	NFS_BOOT_BOOTP
     82 options 	NFS_BOOT_DHCP
     83 #options 	NFS_BOOT_BOOTPARAM
     84 
     85 # Compatibility options
     86 
     87 #options 	COMPAT_43	# 4.3BSD compatibility.
     88 options 	COMPAT_30	# NetBSD 3.0 compatibility.
     89 options 	COMPAT_20	# NetBSD 2.0 compatibility.
     90 options 	COMPAT_16	# NetBSD 1.6 compatibility.
     91 options 	COMPAT_15	# NetBSD 1.5 compatibility.
     92 options 	COMPAT_14	# NetBSD 1.4 compatibility.
     93 #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     94 #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     95 #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     96 #options 	COMPAT_10	# NetBSD 1.0 compatibility.
     97 #options 	COMPAT_09	# NetBSD 0.9 compatibility.
     98 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     99 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    100 
    101 # Shared memory options
    102 
    103 options 	SYSVMSG		# System V-like message queues
    104 options 	SYSVSEM		# System V-like semaphores
    105 #options 	SEMMNI=10	# number of semaphore identifiers
    106 #options 	SEMMNS=60	# number of semaphores in system
    107 #options 	SEMUME=10	# max number of undo entries per process
    108 #options 	SEMMNU=30	# number of undo structures in system
    109 options 	SYSVSHM		# System V-like memory sharing
    110 options 	SHMMAXPGS=1024	# 1024 pages is the default
    111 
    112 # Device options
    113 
    114 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    115 #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
    116 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    117 
    118 # Console options.  The default console is speed is 115200 baud.
    119 options 	CONSPEED=115200		# Console speed
    120 options 	CONUNIT=0		# Console port number
    121 
    122 # Miscellaneous kernel options
    123 options 	KTRACE		# system call tracing, a la ktrace(1)
    124 options 	IRQSTATS	# manage IRQ statistics
    125 #options 	LKM		# loadable kernel modules
    126 #options 	KMEMSTATS	# kernel memory statistics
    127 #options 	SCSIVERBOSE	# Verbose SCSI errors
    128 options 	PCIVERBOSE	# Verbose PCI descriptions
    129 options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    130 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    131 #options 	DDB_KEYCODE=0x40
    132 options 	USERCONF	# userconf(4) support
    133 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    134 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
    135 
    136 # Development and Debugging options
    137 
    138 #options 	PERFCTRS	# performance counters
    139 options 	DIAGNOSTIC	# internally consistency checks
    140 #options 	DEBUG
    141 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    142 #options 	IPKDB		# remote kernel debugging
    143 options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    144 options 	DDB		# in-kernel debugger
    145 options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    146 #makeoptions	DEBUG="-g"	# compile full symbol table
    147 options 	SYMTAB_SPACE=260000
    148 
    149 config		netbsd		root on ? type ?
    150 
    151 # The main bus device
    152 mainbus0	at root
    153 
    154 # The boot cpu
    155 cpu0		at mainbus?
    156 
    157 # IXP425 slow peripheral
    158 ixpsip0		at mainbus?
    159 
    160 #Timer
    161 ixpclk*		at ixpsip? addr 0xc8005000 size 0x30
    162 
    163 # Status LEDs
    164 ixdpled*	at ixpsip? addr 0x52000000 size 0x1000
    165 
    166 # On-board device support
    167 com0		at ixpsip? addr 0xc8000000 size 0x1000 index 0
    168 com1		at ixpsip? addr 0xc8001000 size 0x1000 index 1
    169 
    170 # IXP425 fast bus
    171 ixpio0		at mainbus?
    172 
    173 # PCI bus
    174 pci0		at ixpio? bus ?
    175 
    176 #
    177 # Networking devices
    178 #
    179 an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    180 bge*	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    181 en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    182 ep*	at pci? dev ? function ?	# 3Com 3c59x
    183 epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    184 esh*	at pci? dev ? function ?	# Essential HIPPI card
    185 ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    186 fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    187 fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    188 gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    189 le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    190 lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    191 mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    192 ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    193 ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    194 pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    195 rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    196 sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    197 sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    198 ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    199 stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    200 ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    201 tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    202 tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    203 vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    204 wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    205 wm*	at pci? dev ? function ?	# Intel 82543/82544 gigabit
    206 
    207 # MII/PHY support
    208 acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    209 amhphy*	at mii? phy ?			# AMD 79c901 Ethernet PHYs
    210 bmtphy*	at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    211 brgphy*	at mii? phy ?			# Broadcom BCM5400-family PHYs
    212 dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    213 exphy*	at mii? phy ?			# 3Com internal PHYs
    214 gentbi*	at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    215 glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    216 gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    217 icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS189x
    218 inphy*	at mii? phy ?			# Intel 82555 PHYs
    219 iophy*	at mii? phy ?			# Intel 82553 PHYs
    220 lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
    221 makphy*	at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    222 nsphy*	at mii? phy ?			# NS83840 PHYs
    223 nsphyter* at mii? phy ?			# NS83843 PHYs
    224 pnaphy*	at mii? phy ?			# generic HomePNA PHYs
    225 qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    226 sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    227 tlphy*	at mii? phy ?			# ThunderLAN PHYs
    228 tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    229 urlphy*	at mii? phy ?			# Realtek RTL8150L internal PHYs
    230 ukphy*	at mii? phy ?			# generic unknown PHYs
    231 
    232 # Pseudo-Devices
    233 
    234 # disk/mass storage pseudo-devices
    235 #pseudo-device	md		1	# memory disk device (ramdisk)
    236 pseudo-device	vnd		4	# disk-like interface to files
    237 
    238 # network pseudo-devices
    239 pseudo-device	bpfilter	4	# Berkeley packet filter
    240 pseudo-device	loop			# network loopback
    241 pseudo-device	kttcp			# network loopback
    242 
    243 # miscellaneous pseudo-devices
    244 pseudo-device	pty			# pseudo-terminals
    245 pseudo-device	rnd			# /dev/random and in-kernel generator
    246 pseudo-device	clockctl		# user control of clock subsystem
    247 pseudo-device	ksyms			# /dev/ksyms
    248 
    249 # data mover pseudo-devices
    250 #pseudo-device	swdmover		# softare dmover(9) back-end
    251 #pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    252