RPI revision 1.35
1#
2#	$NetBSD: RPI,v 1.35 2013/06/28 06:00:30 matt Exp $
3#
4#	RPi -- Raspberry Pi
5#
6
7include	"arch/evbarm/conf/std.rpi"
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
19
20options 	CPU_ARM1176
21options 	BCM2835
22options 	PMAPCOUNTERS
23options 	FPU_VFP
24
25# Architecture options
26
27# File systems
28
29file-system	FFS		# UFS
30#file-system	LFS		# log-structured file system
31file-system	MFS		# memory file system
32file-system	NFS		# Network file system
33#file-system 	ADOSFS		# AmigaDOS-compatible file system
34file-system 	EXT2FS		# second extended file system (linux)
35#file-system	CD9660		# ISO 9660 + Rock Ridge file system
36file-system	MSDOSFS		# MS-DOS file system
37#file-system	FDESC		# /dev/fd
38file-system	KERNFS		# /kern
39file-system	NULLFS		# loopback file system
40file-system	PROCFS		# /proc
41#file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
42#file-system	UMAPFS		# NULLFS + uid and gid remapping
43#file-system	UNION		# union file system
44file-system	TMPFS		# memory file system
45#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
46#file-system	HFS		# experimental - Apple HFS+ (read-only)
47#file-system	NILFS		# experimental - NTT's NiLFS(2)
48file-system	PTYFS		# /dev/pts/N support
49
50# File system options
51options 	QUOTA		# legacy UFS quotas
52options 	QUOTA2		# new, in-filesystem UFS quotas
53#options 	FFS_EI		# FFS Endian Independent support
54#options 	NFSSERVER
55options 	WAPBL		# File system journaling support
56#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
57
58# Networking options
59
60#options 	GATEWAY		# packet forwarding
61options 	INET		# IP + ICMP + TCP + UDP
62options 	INET6		# IPV6
63#options 	IPSEC		# IP security
64#options 	IPSEC_DEBUG	# debug for IP security
65#options 	MROUTING	# IP multicast routing
66#options 	PIM		# Protocol Independent Multicast
67#options 	NETATALK	# AppleTalk networking
68#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
69#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
70#options 	PPP_DEFLATE	# Deflate compression support for PPP
71#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
72#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
73
74#options 	NFS_BOOT_BOOTP
75#options 	NFS_BOOT_DHCP
76#options		NFS_BOOT_BOOTSTATIC
77#options		NFS_BOOTSTATIC_MYIP="\"192.168.1.4\""
78#options		NFS_BOOTSTATIC_GWIP="\"192.168.1.1\""
79#options		NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
80#options		NFS_BOOTSTATIC_SERVADDR="\"192.168.1.1\""
81#options		NFS_BOOTSTATIC_SERVER="\"192.168.1.1:/nfs/sdp2430\""
82
83options		NFS_BOOT_RWSIZE=1024
84
85# Compatibility options
86
87#options 	COMPAT_43	# 4.3BSD compatibility.
88options 	COMPAT_60	# NetBSD 6.0 compatibility.
89#options 	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.
102#options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
103
104# Shared memory options
105
106options 	SYSVMSG		# System V-like message queues
107options 	SYSVSEM		# System V-like semaphores
108#options 	SEMMNI=10	# number of semaphore identifiers
109#options 	SEMMNS=60	# number of semaphores in system
110#options 	SEMUME=10	# max number of undo entries per process
111#options 	SEMMNU=30	# number of undo structures in system
112options 	SYSVSHM		# System V-like memory sharing
113
114# Device options
115
116#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
117#options 	MEMORY_DISK_ROOT_SIZE=8192	# Size in blocks
118#options 	MEMORY_DISK_DYNAMIC
119#options 	MINIROOTSIZE=1000	# Size in blocks
120#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
121
122# Miscellaneous kernel options
123options 	KTRACE		# system call tracing, a la ktrace(1)
124#options 	KMEMSTATS	# kernel memory statistics
125#options 	SCSIVERBOSE	# Verbose SCSI errors
126#options 	MIIVERBOSE	# Verbose MII autoconfuration messages
127#options 	DDB_KEYCODE=0x40
128#options 	USERCONF	# userconf(4) support
129#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
130
131# Development and Debugging options
132#options 	PERFCTRS	# performance counters
133options 	DIAGNOSTIC	# internally consistency checks
134options 	DEBUG
135#options 	LOCKDEBUG
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
141#options 	KGDB,KGDB_PLCOMUNIT=0,KGDB_DEVRATE=115200,KGDB_CONMODE=0xB00
142makeoptions	DEBUG="-g"	# compile full symbol table
143options 	SYMTAB_SPACE=810000
144options 	PLCONSOLE
145#options 	PLCONSOLE,PLCOMCNUNIT=0,PLCONSPEED=115200,PLCONMODE=0xB00
146
147## USB Debugging options
148options USB_DEBUG
149#options EHCI_DEBUG
150#options OHCI_DEBUG
151#options UHUB_DEBUG
152
153
154# Valid options for BOOT_ARGS:
155#  single		Boot to single user only
156#  kdb			Give control to kernel debugger
157#  ask			Ask for file name to reboot from
158#  pmapdebug=<n>	If PMAP_DEBUG, set pmap_debug_level to <n>
159#  memorydisk=<n>	Set memorydisk size to <n> KB
160#  quiet		Show aprint_naive output
161#  verbose		Show aprint_normal and aprint_verbose output
162#options		BOOT_ARGS="\"\""
163
164config		netbsd		root on ? type ?
165
166# The main bus device
167mainbus0	at root
168
169# The cpu
170cpu0		at mainbus?
171
172# OBIO
173obio0		at mainbus?
174
175# Interrupt Controller
176bcmicu0		at obio?
177
178# VC Mailbox
179bcmmbox0	at obio?
180vcmbox0 	at bcmmbox0
181
182# VCHIQ
183vchiq0		at obio?
184
185# AUDS
186vcaudio0	at vchiq0
187audio0		at vcaudio0
188
189# PL011 uart
190plcom0		at obio?
191
192# Framebuffer console
193genfb0		at obio?
194wsdisplay*	at genfb?
195options		VCONS_DRAW_INTR
196
197# System timer
198bcmtmr0		at obio?
199
200# Power management, Reset controller and Watchdog registers
201bcmpm0		at obio?
202
203# Random number generator
204bcmrng0 	at obio?
205
206# Arasan SD/MMC Interface
207sdhc* at obio?
208sdmmc*  at sdhc?
209
210ld*     at sdmmc?
211
212# On-board USB
213dotg*          at obio?
214usb*           at dotg?
215
216# USB device drivers, just as soon as we have something to attach them to
217include "dev/usb/usbdevices.config"
218
219ukphy*		at mii? phy ?
220
221# Broadcom Serial Control (I2C)
222bsciic* at obio?
223iic* at i2cbus?
224
225# SPI controller
226bcmspi* at obio?
227spi* at spibus?
228
229# various options for wscons - we try to look as much like a standard
230# sun console as possible
231options 	WSEMUL_VT100		# sun terminal emulation
232options 	WS_DEFAULT_FG=WSCOL_WHITE
233options 	WS_DEFAULT_BG=WSCOL_BLACK
234options 	WS_KERNEL_FG=WSCOL_GREEN
235options 	WS_KERNEL_BG=WSCOL_BLACK
236options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
237options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some more ioctls
238options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
239options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
240options 	WSDISPLAY_DEFAULTSCREENS=4
241
242#options 	FONT_QVSS8x15
243#options 	FONT_GALLANT12x22	# the console font
244
245# Pseudo-Devices
246
247# disk/mass storage pseudo-devices
248#pseudo-device	fss			# file system snapshot device
249
250#pseudo-device	md			# memory disk device (ramdisk)
251pseudo-device	vnd			# disk-like interface to files
252pseudo-device	putter			# for puffs and pud
253
254# network pseudo-devices
255pseudo-device	bpfilter		# Berkeley packet filter
256#pseudo-device	carp			# Common Address Redundancy Protocol
257#pseudo-device	ipfilter		# IP filter (firewall) and NAT
258pseudo-device	loop			# network loopback
259#pseudo-device	kttcp			# network loopback
260#pseudo-device	ppp			# Point-to-Point Protocol
261#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
262#options 	PPPOE_SERVER		# Enable PPPoE server via link0
263#pseudo-device	sl			# Serial Line IP
264#pseudo-device	strip			# Starmode Radio IP (Metricom)
265#pseudo-device	irframetty		# IrDA frame line discipline
266#pseudo-device	tap			# virtual Ethernet
267#pseudo-device	tun			# network tunneling over tty
268#pseudo-device	gre			# generic L3 over IP tunnel
269#pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
270#pseudo-device	faith			# IPv[46] TCP relay translation i/f
271#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
272#pseudo-device	vlan			# IEEE 802.1q encapsulation
273#pseudo-device	bridge			# simple inter-network bridging
274#options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
275#pseudo-device	agr			# IEEE 802.3ad link aggregation
276#pseudo-device	pf			# PF packet filter
277#pseudo-device	pflog			# PF log if
278
279# miscellaneous pseudo-devices
280pseudo-device	pty			# pseudo-terminals
281#options	RND_COM
282#pseudo-device	clockctl		# user control of clock subsystem
283pseudo-device	ksyms			# /dev/ksyms
284pseudo-device	lockstat		# lock profiling
285
286# wscons pseudo-devices
287pseudo-device	wsmux			# mouse & keyboard multiplexor
288pseudo-device	wsfont
289
290# data mover pseudo-devices
291#pseudo-device	swdmover		# software dmover(9) back-end
292#pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
293
294# userland interface to drivers, including autoconf and properties retrieval
295pseudo-device 	drvctl
296
297# local configuration
298cinclude "arch/evbarm/conf/RPI.local"
299