CUBOX revision 1.11 1 # $NetBSD: CUBOX,v 1.11 2018/08/01 20:04:11 maxv Exp $
2 #
3 # CUBOX -- SolidRun Ltd. Cubox kernel
4 #
5
6 include "arch/evbarm/conf/std.marvell"
7
8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 # estimated number of users
11
12 maxusers 32
13
14 # Board Type
15 makeoptions BOARDTYPE="cubox"
16 options EVBARM_BOARDTYPE=cubox
17
18 # CPU options
19 options CPU_PJ4B # XXXX: CPU is PJ4
20 options ARM_HAS_VBAR
21 options FPU_VFP
22 makeoptions CPUFLAGS="-march=armv7-a -mfpu=vfpv3"
23
24 # Marvell SoC options
25 options DOVE
26
27 # Standard system options
28
29 options INSECURE # disable kernel security levels - X needs this
30
31 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
32 #options NTP # NTP phase/frequency locked loop
33 options KTRACE # system call tracing via ktrace(1)
34
35 # Note: SysV IPC parameters can be changed dynamically; see sysctl(8).
36 options SYSVMSG # System V-like message queues
37 options SYSVSEM # System V-like semaphores
38 options SYSVSHM # System V-like memory sharing
39
40 #options USERCONF # userconf(4) support
41 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
42 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
43
44 # Alternate buffer queue strategies for better responsiveness under high
45 # disk I/O load.
46 #options BUFQ_READPRIO
47 options BUFQ_PRIOCSCAN
48
49 # Diagnostic/debugging support options
50 #options VERBOSE_INIT_ARM # verbose bootstraping messages
51 options DIAGNOSTIC # internally consistency checks
52
53 #options DEBUG
54 #options PMAP_DEBUG # Enable pmap_debug_level code
55 options LOCKDEBUG # expensive locking checks/support
56 options IRQSTATS # manage IRQ statistics
57 #options NO_POWERSAVE # uncomment this to run under ICE
58
59 #makeoptions COPTS="-O2"
60 options DDB # in-kernel debugger
61 #options DDB_KEYCODE=0x1d # ^]
62 #options DDB_COMMANDONENTER="bt" # execute command when ddb is entered
63 options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
64 options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
65 options DDB_VERBOSE_HELP
66 #options KGDB
67 #options KGDB_DEVRATE=115200
68 makeoptions DEBUG="-g" # compile full symbol table
69 makeoptions COPY_SYMTAB=1
70 #options SYSCALL_STATS # per syscall counts
71 #options SYSCALL_TIMES # per syscall times
72 #options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris)
73
74
75 # Compatibility options
76
77 include "conf/compat_netbsd60.config"
78 options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries
79
80 options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
81 #options COMPAT_NDIS # NDIS network driver
82
83 # Wedge support
84 options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances
85 options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges
86
87 # File systems
88 file-system FFS # UFS
89 file-system MFS # memory file system
90 file-system NFS # Network File System client
91 file-system TMPFS # Efficient memory file-system
92 file-system EXT2FS # second extended file system (linux)
93 file-system LFS # log-structured file system
94 file-system NTFS # Windows/NT file system (experimental)
95 file-system CD9660 # ISO 9660 + Rock Ridge file system
96 file-system MSDOSFS # MS-DOS file system
97 file-system FDESC # /dev/fd
98 file-system KERNFS # /kern
99 file-system NULLFS # loopback file system
100 file-system OVERLAY # overlay file system
101 file-system PROCFS # /proc
102 file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
103 file-system SMBFS # experimental - CIFS; also needs nsmb (below)
104 file-system UMAPFS # NULLFS + uid and gid remapping
105 file-system UNION # union file system
106 file-system CODA # Coda File System; also needs vcoda (below)
107 file-system PTYFS # /dev/ptm support
108 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
109 #file-system HFS # experimental - Apple HFS+ (read-only)
110 #file-system NILFS # experimental - NTT's NiLFS(2)
111
112 # File system options
113 options QUOTA # legacy UFS quotas
114 options QUOTA2 # new, in-filesystem UFS quotas
115 #options DISKLABEL_EI # disklabel Endian Independent support
116 options FFS_EI # FFS Endian Independent support
117 options WAPBL # File system journaling support
118 # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
119 # It is not recommended for general use.
120 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
121 options NFSSERVER # Network File System server
122 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
123 # immutable) behave as system flags.
124 #options FFS_NO_SNAPSHOT # No FFS snapshot support
125
126 # Networking options
127 #options GATEWAY # packet forwarding
128 options INET # IP + ICMP + TCP + UDP
129 options INET6 # IPv6
130 options IPSEC # IP security
131 #options IPSEC_DEBUG # debug for IP security
132 #options MPLS # MultiProtocol Label Switching (needs ifmpls)
133 #options MROUTING # IP multicast routing
134 #options PIM # Protocol Independent Multicast
135 options NETATALK # AppleTalk networking protocols
136 options PPP_BSDCOMP # BSD-Compress compression support for PPP
137 options PPP_DEFLATE # Deflate compression support for PPP
138 options PPP_FILTER # Active filter support for PPP (requires bpf)
139 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
140
141 #options ALTQ # Manipulate network interfaces' output queues
142 #options ALTQ_BLUE # Stochastic Fair Blue
143 #options ALTQ_CBQ # Class-Based Queueing
144 #options ALTQ_CDNR # Diffserv Traffic Conditioner
145 #options ALTQ_FIFOQ # First-In First-Out Queue
146 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
147 #options ALTQ_HFSC # Hierarchical Fair Service Curve
148 #options ALTQ_LOCALQ # Local queueing discipline
149 #options ALTQ_PRIQ # Priority Queueing
150 #options ALTQ_RED # Random Early Detection
151 #options ALTQ_RIO # RED with IN/OUT
152 #options ALTQ_WFQ # Weighted Fair Queueing
153
154 # Device options
155
156 # These options enable verbose messages for several subsystems.
157 # Warning, these may compile large string tables into the kernel!
158 options MIIVERBOSE # verbose PHY autoconfig messages
159 #options PCIVERBOSE # verbose PCI device autoconfig messages
160 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
161 #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
162 #options SCSIVERBOSE # Verbose SCSI errors
163 #options USBVERBOSE # verbose USB device autoconfig messages
164
165 # Kernel root file system and dump configuration.
166 config netbsd root on ? type ?
167
168 options NFS_BOOT_BOOTP
169 options NFS_BOOT_DHCP
170 #options NFS_BOOT_BOOTPARAM
171 #options NFS_BOOT_BOOTSTATIC
172 #options NFS_BOOTSTATIC_MYIP="\"192.168.0.2\""
173 #options NFS_BOOTSTATIC_GWIP="\"192.168.0.1\""
174 #options NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
175 #options NFS_BOOTSTATIC_SERVADDR="\"192.168.0.3\""
176 #options NFS_BOOTSTATIC_SERVER="\"192.168.0.3:/nfs/cubox\""
177
178
179 #
180 # Device configuration
181 #
182
183 mainbus0 at root
184
185 cpu* at mainbus?
186
187 # Marvell 88AP510 Dove System-on-chip
188 mvsoc0 at mainbus?
189 #options MVSOC_CONSOLE_EARLY
190
191 # On-chip Power Management Unit
192 mvsocpmu* at mvsoc? offset ? irq ?
193
194 # On-chip Gigabit Ethernet Controller
195 mvgbec* at mvsoc? offset ?
196 mvgbe* at mvgbec? port ? irq ?
197
198 # MII/PHY support
199 makphy* at mii? phy ?
200
201 # On-chip Cryptographic Engines and Security Accelerator (CESA)
202 mvcesa* at mvsoc? offset ? irq ?
203
204 # On-chip XOR DMA Engine
205 gtidmac* at mvsoc? offset ? irq ?
206
207 # On-chip PCI Express Interface
208 mvpex* at mvsoc? offset ? irq ?
209 pci* at mvpex?
210
211 # PCI bus support
212 options PCI_NETBSD_CONFIGURE
213 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
214
215 pchb* at pci? dev ? function ? # PCI-Host bridges
216
217 # On-chip Serial-ATA (SATA) II Interface
218 mvsata* at mvsoc? offset ? irq ?
219
220 # ATA (IDE) bus support
221 atabus* at ata?
222 #options ATADEBUG
223
224 # IDE drives
225 wd* at atabus? drive ? flags 0x0000
226
227 # On-chip USB 2.0 Interface
228 ehci* at mvsoc? offset ? irq ?
229
230 # On-chip Secure Digital Input/Output Host Controller
231 sdhc* at mvsoc? offset ? irq ?
232 sdmmc* at sdhc?
233
234 ld* at sdmmc?
235
236 # On-chip Serial Peripheral Interface (SPI)
237 mvspi* at mvsoc? offset ? irq ?
238 spi* at mvspi?
239
240 m25p0 at spi? slave 0
241 spiflash0 at spiflashbus?
242
243 # On-chip Two-Wire Serial Interface (TWSI)
244 gttwsi* at mvsoc? offset ? irq ?
245 iic* at gttwsi?
246
247 #TDA998x at iic? addr 0x34 # HDMI transmitters
248 #Si5351A at iic? addr 0x60 # Programmable Any-Frequency CMOS Clock Generator
249 #lcdc at iic? addr 0x70
250
251 # On-chip UART Interface
252 com* at mvsoc? offset ? irq ?
253
254 # On-chip Real Time Clock (RTC)
255 mvsocrtc* at mvsoc? offset ? irq ?
256
257 # On-chip Timers
258 mvsoctmr* at mvsoc? offset ? irq ?
259
260
261 # USB bus support
262 usb* at ehci?
263
264 # USB Hubs
265 uhub* at usb?
266 uhub* at uhub? port ?
267
268 # USB HID device
269 uhidev* at uhub? port ? configuration ? interface ?
270
271 # USB Mice
272 ums* at uhidev? reportid ?
273 wsmouse* at ums? mux 0
274
275 # USB Keyboards
276 ukbd* at uhidev? reportid ?
277 wskbd* at ukbd? console ? mux 1
278
279 # USB Mass Storage
280 umass* at uhub? port ? configuration ? interface ?
281 wd* at umass?
282 scsibus* at scsi?
283 sd* at scsibus? target ? lun ? # SCSI disk drives
284 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
285
286 # Serial adapters
287 uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
288 ucom* at uftdi? portno ?
289
290 uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
291 ucom* at uplcom? portno ?
292
293 # USB Generic driver
294 ugen* at uhub? port ?
295
296
297 # Pseudo-Devices
298
299 pseudo-device crypto # /dev/crypto device
300 pseudo-device swcrypto # software crypto implementation
301
302 # disk/mass storage pseudo-devices
303 pseudo-device bio # RAID control device driver
304 pseudo-device ccd # concatenated/striped disk devices
305 pseudo-device cgd # cryptographic disk devices
306 pseudo-device raid # RAIDframe disk driver
307 #options RAID_AUTOCONFIG # auto-configuration of RAID components
308 #Options to enable various other RAIDframe RAID types.
309 #options RF_INCLUDE_EVENODD=1
310 #options RF_INCLUDE_RAID5_RS=1
311 #options RF_INCLUDE_PARITYLOGGING=1
312 #options RF_INCLUDE_CHAINDECLUSTER=1
313 #options RF_INCLUDE_INTERDECLUSTER=1
314 #options RF_INCLUDE_PARITY_DECLUSTERING=1
315 #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
316 pseudo-device fss # file system snapshot device
317 pseudo-device putter # for puffs and pud
318
319 pseudo-device vnd # disk-like interface to files
320 options VND_COMPRESSION # compressed vnd(4)
321
322
323 # network pseudo-devices
324 pseudo-device bpfilter # Berkeley packet filter
325 #pseudo-device carp # Common Address Redundancy Protocol
326 #pseudo-device npf # NPF packet filter
327 pseudo-device loop # network loopback
328 #pseudo-device ifmpls # MPLS pseudo-interface
329 pseudo-device ppp # Point-to-Point Protocol
330 pseudo-device pppoe # PPP over Ethernet (RFC 2516)
331 pseudo-device sl # Serial Line IP
332 pseudo-device strip # Starmode Radio IP (Metricom)
333 pseudo-device irframetty # IrDA frame line discipline
334 pseudo-device tun # network tunneling over tty
335 pseudo-device tap # virtual Ethernet
336 pseudo-device gre # generic L3 over IP tunnel
337 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
338 #pseudo-device faith # IPv[46] tcp relay translation i/f
339 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
340 pseudo-device vlan # IEEE 802.1q encapsulation
341 pseudo-device bridge # simple inter-network bridging
342 #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
343 pseudo-device agr # IEEE 802.3ad link aggregation
344 #pseudo-device npf # NPF packet filter
345
346 #
347 # accept filters
348 pseudo-device accf_data # "dataready" accept filter
349 pseudo-device accf_http # "httpready" accept filter
350
351 # miscellaneous pseudo-devices
352 pseudo-device pty # pseudo-terminals
353 pseudo-device sequencer # MIDI sequencer
354 #options RND_COM # use "com" randomness as well (BROKEN)
355 pseudo-device clockctl # user control of clock subsystem
356 pseudo-device ksyms # /dev/ksyms
357
358 # a pseudo device needed for Coda # also needs CODA (above)
359 pseudo-device vcoda # coda minicache <-> venus comm.
360
361 # a pseudo device needed for SMBFS
362 pseudo-device nsmb # experimental - SMB requester
363
364 # wscons pseudo-devices
365 pseudo-device wsmux # mouse & keyboard multiplexor
366 pseudo-device wsfont
367
368 # pseudo audio device driver
369 #pseudo-device pad
370
371 # userland interface to drivers, including autoconf and properties retrieval
372 pseudo-device drvctl
373
374 options FILEASSOC # fileassoc(9) - required for Veriexec
375
376 # Veriexec
377 #
378 # a pseudo device needed for veriexec
379 pseudo-device veriexec
380 #
381 # Uncomment the fingerprint methods below that are desired. Note that
382 # removing fingerprint methods will have almost no impact on the kernel
383 # code size.
384 #
385 options VERIFIED_EXEC_FP_SHA256
386 options VERIFIED_EXEC_FP_SHA384
387 options VERIFIED_EXEC_FP_SHA512
388
389 options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
390 options PAX_ASLR=0 # PaX Address Space Layout Randomization
391