xref: /netbsd-src/sys/arch/evbarm/conf/ARMADAXP (revision 7d3af8c6a2070d16ec6d1aef203d052d6683100d)
1#
2#	$NetBSD: ARMADAXP,v 1.1 2013/05/29 22:52:19 rkujawa Exp $
3#
4#	ARMADA XP DEV BOARD
5#
6
7include		"arch/evbarm/conf/std.armadaxp"
8
9# estimated number of users
10
11maxusers	32
12
13# Standard system options
14
15options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
16#options 	NTP		# NTP phase/frequency locked loop
17
18# CPU options
19options 	CPU_PJ4B
20
21# Architecture options
22options 	ARMADAXP
23options 	L2CACHE_ENABLE
24#options 	AURORA_IO_CACHE_COHERENCY
25options 	AURORA_L2_PT_WALK
26
27#options	VERBOSE_INIT_ARM
28
29# File systems
30file-system	FFS		# UFS
31#file-system	LFS		# log-structured file system
32file-system	MFS		# memory file system
33file-system	NFS		# Network file system
34#file-system	ADOSFS		# AmigaDOS-compatible file system
35#file-system	EXT2FS		# second extended file system (linux)
36#file-system	CD9660		# ISO 9660 + Rock Ridge file system
37file-system	MSDOSFS		# MS-DOS file system
38#file-system	FDESC		# /dev/fd
39#file-system	KERNFS		# /kern
40#file-system	NULLFS		# loopback file system
41#file-system	PROCFS		# /proc
42#file-system	UMAPFS		# NULLFS + uid and gid remapping
43#file-system	UNION		# union file system
44file-system	TMPFS		# memory file system
45file-system	PTYFS		# /dev/pts/N support
46file-system	PUFFS		# Pass-to-Userspace Framework File System
47
48# File system options
49#options 	QUOTA		# legacy UFS quotas
50#options 	QUOTA2		# new, in-filesystem UFS quotas
51#options 	FFS_EI		# FFS Endian Independent support
52#options 	NFSSERVER
53options 	WAPBL		# File system journaling support
54#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
55
56# Networking options
57options 	GATEWAY		# packet forwarding
58options 	INET		# IP + ICMP + TCP + UDP
59options 	INET6		# IPV6
60options 	IPSEC		# IP security
61options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
62options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
63options 	IPSEC_DEBUG	# debug for IP security
64options 	MROUTING	# IP multicast routing
65options 	PIM		# Protocol Independent Multicast
66options 	ISO,TPIP	# OSI
67options 	EON		# OSI tunneling over IP
68options 	NETATALK	# AppleTalk networking
69options 	PFIL_HOOKS	# pfil(9) packet filter hooks
70options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
71options 	PPP_DEFLATE	# Deflate compression support for PPP
72options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
73options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
74options 	NFS_BOOT_DHCP
75
76#options 	NFS_BOOT_BOOTP
77#options 	NFS_BOOT_DHCP
78#options 	NFS_BOOT_BOOTSTATIC
79#options 	NFS_BOOTSTATIC_MYIP="\"192.168.1.4\""
80#options 	NFS_BOOTSTATIC_GWIP="\"192.168.1.1\""
81#options 	NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
82#options 	NFS_BOOTSTATIC_SERVADDR="\"192.168.1.1\""
83#options 	NFS_BOOTSTATIC_SERVER="\"192.168.1.1:/nfs/sdp2430\""
84
85#options 	NFS_BOOT_RWSIZE=1024
86
87# Compatibility options
88#options 	COMPAT_43	# 4.3BSD compatibility.
89options 	COMPAT_50	# NetBSD 5.0 compatibility.
90#options 	COMPAT_40	# NetBSD 4.0 compatibility.
91#options 	COMPAT_30	# NetBSD 3.0 compatibility.
92#options 	COMPAT_20	# NetBSD 2.0 compatibility.
93#options 	COMPAT_16	# NetBSD 1.6 compatibility.
94#options 	COMPAT_15	# NetBSD 1.5 compatibility.
95#options 	COMPAT_14	# NetBSD 1.4 compatibility.
96#options 	COMPAT_13	# NetBSD 1.3 compatibility.
97#options 	COMPAT_12	# NetBSD 1.2 compatibility.
98#options 	COMPAT_11	# NetBSD 1.1 compatibility.
99#options 	COMPAT_10	# NetBSD 1.0 compatibility.
100#options 	COMPAT_09	# NetBSD 0.9 compatibility.
101#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
102options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
103
104# Shared memory options
105options 	SYSVMSG		# System V-like message queues
106options 	SYSVSEM		# System V-like semaphores
107#options 	SEMMNI=10	# number of semaphore identifiers
108#options 	SEMMNS=60	# number of semaphores in system
109#options 	SEMUME=10	# max number of undo entries per process
110#options 	SEMMNU=30	# number of undo structures in system
111options 	SYSVSHM		# System V-like memory sharing
112
113# Device options
114#options 	MEMORY_DISK_HOOKS		# boottime setup of ramdisk
115#options 	MEMORY_DISK_ROOT_SIZE=8192	# Size in blocks
116#options 	MEMORY_DISK_DYNAMIC
117#options 	MINIROOTSIZE=1000		# Size in blocks
118#options 	MEMORY_DISK_IS_ROOT		# use memory disk as root
119
120# Miscellaneous kernel options
121options 	KTRACE		# system call tracing, a la ktrace(1)
122#options 	KMEMSTATS	# kernel memory statistics
123#options 	SCSIVERBOSE	# Verbose SCSI errors
124#options 	MIIVERBOSE	# Verbose MII autoconfuration messages
125#options 	DDB_KEYCODE=0x40
126#options 	USERCONF	# userconf(4) support
127#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
128
129# Development and Debugging options
130options 	LOCKDEBUG
131#options 	PERFCTRS		# performance counters
132options 	DIAGNOSTIC		# internally consistency checks
133#options 	DEBUG
134#options 	PMAP_DEBUG		# Enable pmap_debug_level code
135options 	PMAPCOUNTERS
136#options 	IPKDB			# remote kernel debugging
137#options 	VERBOSE_INIT_ARM	# verbose bootstraping messages
138options 	DDB			# in-kernel debugger
139options 	DDB_ONPANIC=1
140options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
141options 	DDB_KEYCODE=0x1d	# Enter ddb on ^]
142#options 	KGDB
143options 	KGDB_DEVADDR=0xd0012000
144makeoptions 	DEBUG="-g"		# compile full symbol table
145options 	SYMTAB_SPACE=800000
146
147## USB Debugging options
148#options 	USB_DEBUG
149#options 	EHCI_DEBUG
150#options 	OHCI_DEBUG
151#options 	UHUB_DEBUG
152
153# Valid options for BOOT_ARGS:
154#  single		Boot to single user only
155#  kdb			Give control to kernel debugger
156#  ask			Ask for file name to reboot from
157#  pmapdebug=<n>	If PMAP_DEBUG, set pmap_debug_level to <n>
158#  memorydisk=<n>	Set memorydisk size to <n> KB
159#  quiet		Show aprint_naive output
160#  verbose		Show aprint_normal and aprint_verbose output
161#options		BOOT_ARGS="\"verbose kdb\""
162#options		BOOT_ARGS="\"pmapdebug=1\""
163
164config		netbsd		root on ? type ?
165#config		netbsd		root on sd0c  type ffs
166#config		netbsd		root on wd0a  type ffs
167#config		netbsd		root on re1  type nfs
168
169# The main bus device
170mainbus0	at root
171
172# The boot cpu
173cpu0		at mainbus?
174
175# Specify the memory size in bytes.
176options 	MEMSIZE=0x80000000
177
178# Marvell SoC Bus
179mvsoc0		at mainbus?
180
181# On-chip Timers
182mvsoctmr*	at mvsoc? offset ? irq ?
183
184# On-chip UART Interface
185com*		at mvsoc?
186#options 	COM_DEBUG
187options 	CONSADDR=0xd0012000
188options 	CONSPEED=115200
189options 	CONSFREQ=250000000
190
191# On-chip Two-Wire Serial Interface (TWSI)
192gttwsi*		at mvsoc? offset ? irq ?
193iic*		at gttwsi?
194
195# Serial Peripheral Interface (SPI)
196mvspi*		at mvsoc? offset ? irq ?
197spi*		at mvspi?
198
199spiflash0	at spiflashbus?
200m25p0		at spi? slave 0
201
202# TWSI SDRAM Serial Presence Detect
203spdmem0		at iic? addr 0x56
204
205# On-chip USB 2.0 Interface
206ehci*		at mvsoc? offset ? irq ?
207
208# USB bus support
209usb*		at ehci?
210
211# USB Hubs
212uhub*		at usb?
213uhub*		at uhub? port ?
214
215# USB Mass Storage
216umass*		at uhub? port ? configuration ? interface ?
217wd*		at umass?
218scsibus*	at scsi?
219sd*		at scsibus? target ? lun ?	# SCSI disk drives
220
221# USB Generic driver
222ugen*		at uhub? port ?
223
224# USB Network interface
225udav*		at uhub? port ?
226
227# On-chip Serial-ATA II Host Controller (SATAHC)
228mvsata*		at mvsoc? offset ? irq ?
229#options 	MVSATA_WITHOUTDMA
230
231# ATA (IDE) bus support
232atabus*		at ata?
233#options 	ATADEBUG
234
235# ATAPI bus support
236atapibus*	at atapi?
237
238# IDE drives
239wd*		at atabus? drive ? flags 0x0000
240
241# ATAPI devices
242# flags have the same meaning as for IDE drives.
243sd*		at atapibus? drive ? flags 0x0000       # ATAPI disk drives
244uk*		at atapibus? drive ? flags 0x0000       # ATAPI unknown
245
246# On-chip RTC
247mvsocrtc*	at mvsoc? offset ? irq ?
248
249# On-chip PCI Express Interface
250mvpex*		at mvsoc? offset ? irq ?
251
252# PCI bus support
253options 	PCI_NETBSD_CONFIGURE
254#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
255pci*		at mvpex?
256pchb*		at pci? dev ? function ?	# PCI-Host bridges
257
258# PCI Ethernet
259wm*		at pci? dev ? function ?	# Intel 8254x gigabit
260re*		at pci? dev ? function ?
261
262acphy*		at mii? phy ?		# Altima AC101 10/100 PHY
263amhphy*		at mii? phy ?		# AMD 79c901 PHY (10BASE-T part)
264bmtphy*		at mii? phy ?		# Broadcom BCM5201/5202 PHYs
265brgphy*		at mii? phy ?		# Broadcom BCM5400/5401 Gig-E PHYs
266ciphy*		at mii? phy ?		# Cicada CS8201 Gig-E PHYs
267dmphy*		at mii? phy ?		# Davicom DM9101 PHYs
268exphy*		at mii? phy ?		# 3Com internal PHYs
269gentbi*		at mii? phy ?		# Generic ten-bit 1000BASE-X PHYs
270glxtphy*	at mii? phy ?		# Level One LXT-1000 Gig-E PHYs
271gphyter*	at mii? phy ?		# NatSemi DP83861 Gig-E PHYs
272icsphy*		at mii? phy ?		# Integrated Circuit Systems ICS1890 PHYs
273igphy*		at mii? phy ?		# Intel IGP01E1000, i82566 10/100/1000
274ikphy*		at mii? phy ?		# Intel 82563 PHYs
275inphy*		at mii? phy ?		# Intel 82555 PHYs
276iophy*		at mii? phy ?		# Intel 82553 PHYs
277lxtphy*		at mii? phy ?		# Level One LXT-970 PHYs
278makphy*		at mii? phy ?		# Marvel 88E1000 Gig-E PHYs
279nsphy*		at mii? phy ?		# NatSemi DP83840 PHYs
280nsphyter*	at mii? phy ?		# NatSemi DP83843/DP83815 PHYs
281pnaphy*		at mii? phy ?		# Generic HomePNA PHYs
282qsphy*		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
283rgephy*		at mii? phy ?		# Realtek 8169S/8110S internal PHYs
284rlphy*		at mii? phy ?		# Realtek 8139/8201L PHYs
285sqphy*		at mii? phy ?		# Seeq 80220/80221/80223/80225 PHYs
286tlphy*		at mii? phy ?		# ThunderLAN internal PHYs
287tqphy*		at mii? phy ?		# TSC Semiconductor 78Q2120 PHYs
288ukphy*		at mii? phy ?		# Generic/unknown PHYs
289urlphy*		at mii? phy ?		# Realtek RTL8150L internal PHYs
290
291# Pseudo-Devices
292# disk/mass storage pseudo-devices
293pseudo-device	md			# memory disk device (ramdisk)
294pseudo-device	vnd			# pseudo disks (see vnconfig)
295#pseudo-device	fss			# file system snapshot device
296
297# network pseudo-devices
298pseudo-device	bpfilter		# Berkeley packet filter
299pseudo-device	loop			# network loopback
300pseudo-device	kttcp			# network loopback
301pseudo-device	putter
302
303# miscellaneous pseudo-devices
304pseudo-device	pty			# pseudo-terminals
305#options 	RND_COM
306#pseudo-device	clockctl		# user control of clock subsystem
307pseudo-device	ksyms			# /dev/ksyms
308