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