RPI revision 1.45 1 #
2 # $NetBSD: RPI,v 1.45 2014/07/27 03:34:41 dholland 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 # internal 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=880000
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 # GPIO
206 bcmgpio0 at obio? # pins 0 ... 31
207 bcmgpio1 at obio? # pins 32 ... 53
208
209 # Arasan SD/MMC Interface
210 sdhc* at obio?
211 sdmmc* at sdhc?
212
213 ld* at sdmmc?
214
215 # On-board USB
216 dwctwo* at obio?
217 usb* at dwctwo?
218
219 # USB device drivers
220 include "dev/usb/usbdevices.config"
221
222 ukphy* at mii? phy ?
223
224 # Broadcom Serial Control (I2C)
225 bsciic* at obio?
226 iic* at i2cbus?
227
228 # SPI controller
229 bcmspi* at obio?
230 spi* at spibus?
231
232 # PIFace or other boards using that chip (needs gpio)
233 #mcp23s17gpio0 at spi? slave 0 flags 0
234 #mcp23s17gpio1 at spi? slave 0 flags 1
235 #mcp23s17gpio2 at spi? slave 0 flags 2
236 #mcp23s17gpio3 at spi? slave 0 flags 3
237
238 # gpio support (e. g. mcp23s17gpio, bcmgpio)
239 gpio* at gpiobus?
240
241 # various options for wscons - we try to look as much like a standard
242 # sun console as possible
243 options WSEMUL_VT100 # sun terminal emulation
244 options WS_DEFAULT_FG=WSCOL_WHITE
245 options WS_DEFAULT_BG=WSCOL_BLACK
246 options WS_KERNEL_FG=WSCOL_GREEN
247 options WS_KERNEL_BG=WSCOL_BLACK
248 options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
249 options WSDISPLAY_COMPAT_SYSCONS # emulate some more ioctls
250 options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
251 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
252 options WSDISPLAY_DEFAULTSCREENS=4
253
254 #options FONT_QVSS8x15
255 #options FONT_GALLANT12x22 # the console font
256
257 # Pseudo-Devices
258
259 # disk/mass storage pseudo-devices
260 #pseudo-device fss # file system snapshot device
261
262 #pseudo-device md # memory disk device (ramdisk)
263 pseudo-device vnd # disk-like interface to files
264 pseudo-device putter # for puffs and pud
265
266 # network pseudo-devices
267 pseudo-device bpfilter # Berkeley packet filter
268 #pseudo-device carp # Common Address Redundancy Protocol
269 #pseudo-device ipfilter # IP filter (firewall) and NAT
270 pseudo-device loop # network loopback
271 #pseudo-device kttcp # network loopback
272 #pseudo-device ppp # Point-to-Point Protocol
273 #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
274 #options PPPOE_SERVER # Enable PPPoE server via link0
275 #pseudo-device sl # Serial Line IP
276 #pseudo-device strip # Starmode Radio IP (Metricom)
277 #pseudo-device irframetty # IrDA frame line discipline
278 #pseudo-device tap # virtual Ethernet
279 #pseudo-device tun # network tunneling over tty
280 #pseudo-device gre # generic L3 over IP tunnel
281 #pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933)
282 #pseudo-device faith # IPv[46] TCP relay translation i/f
283 #pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
284 #pseudo-device vlan # IEEE 802.1q encapsulation
285 #pseudo-device bridge # simple inter-network bridging
286 #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
287 #pseudo-device agr # IEEE 802.3ad link aggregation
288 #pseudo-device pf # PF packet filter
289 #pseudo-device pflog # PF log if
290
291 # miscellaneous pseudo-devices
292 pseudo-device pty # pseudo-terminals
293 #options RND_COM
294 #pseudo-device clockctl # user control of clock subsystem
295 pseudo-device ksyms # /dev/ksyms
296 pseudo-device lockstat # lock profiling
297
298 # wscons pseudo-devices
299 pseudo-device wsmux # mouse & keyboard multiplexor
300 pseudo-device wsfont
301
302 # data mover pseudo-devices
303 #pseudo-device swdmover # software dmover(9) back-end
304 #pseudo-device dmoverio # /dev/dmover dmover(9) interface
305
306 # userland interface to drivers, including autoconf and properties retrieval
307 pseudo-device drvctl
308
309 # local configuration
310 cinclude "arch/evbarm/conf/RPI.local"
311