MARVELL_NAS revision 1.35
1# $NetBSD: MARVELL_NAS,v 1.35 2020/01/19 01:25:04 thorpej Exp $ 2# 3# This configuration supports for generically Marvell NAS. 4 5include "arch/evbarm/conf/std.marvell" 6 7options INCLUDE_CONFIG_FILE # embed config file in kernel binary 8 9# estimated number of users 10 11maxusers 32 12 13# CPU options 14options CPU_ARM9E 15#makeoptions CPUFLAGS="-mcpu=xscale" # Orion supports XScale instruction set 16options CPU_SHEEVA 17#makeoptions CPUFLAGS="-march=armv5te" 18 19# Marvell SoC options 20options ORION 21options KIRKWOOD 22#options MV78XX0 # Discovery Innovation 23 24# Standard system options 25 26options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 27#options NTP # NTP phase/frequency locked loop 28 29# File systems 30 31file-system FFS # UFS 32file-system EXT2FS # second extended file system (linux) 33file-system LFS # log-structured file system 34file-system MFS # memory file system 35file-system NFS # Network File System client 36file-system NTFS # Windows/NT file system (experimental) 37file-system CD9660 # ISO 9660 + Rock Ridge file system 38file-system MSDOSFS # MS-DOS file system 39file-system FDESC # /dev/fd 40file-system KERNFS # /kern 41file-system NULLFS # loopback file system 42file-system OVERLAY # overlay file system 43file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 44file-system PROCFS # /proc 45file-system UMAPFS # NULLFS + uid and gid remapping 46file-system UNION # union file system 47file-system CODA # Coda File System; also needs vcoda (below) 48file-system SMBFS # experimental - CIFS; also needs nsmb (below) 49file-system PTYFS # /dev/ptm support 50file-system TMPFS # Efficient memory file-system 51file-system UDF # experimental - OSTA UDF CD/DVD file-system 52file-system HFS # experimental - Apple HFS+ (read-only) 53 54# File system options 55options QUOTA # legacy UFS quotas 56options QUOTA2 # new, in-filesystem UFS quotas 57#options DISKLABEL_EI # disklabel Endian Independent support 58#options FFS_EI # FFS Endian Independent support 59options WAPBL # File system journaling support 60# Note that UFS_DIRHASH is suspected of causing kernel memory corruption. 61# It is not recommended for general use. 62#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 63options NFSSERVER # Network File System server 64#options FFS_NO_SNAPSHOT # No FFS snapshot support 65#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 66 # immutable) behave as system flags. 67 68# Networking options 69 70#options GATEWAY # packet forwarding 71options INET # IP + ICMP + TCP + UDP 72options INET6 # IPv6 73#options IPSEC # IP security 74#options IPSEC_DEBUG # debug for IP security 75#options MROUTING # IP multicast routing 76#options PIM # Protocol Independent Multicast 77options NETATALK # AppleTalk networking protocols 78options PPP_BSDCOMP # BSD-Compress compression support for PPP 79options PPP_DEFLATE # Deflate compression support for PPP 80options PPP_FILTER # Active filter support for PPP (requires bpf) 81#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 82 83options NFS_BOOT_BOOTP 84options NFS_BOOT_DHCP 85#options NFS_BOOT_BOOTPARAM 86 87# Compatibility options 88 89include "conf/compat_netbsd16.config" 90options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries 91 92options COMPAT_LINUX # binary compatibility with Linux 93 94# Shared memory options 95 96options SYSVMSG # System V-like message queues 97options SYSVSEM # System V-like semaphores 98options SYSVSHM # System V-like memory sharing 99 100# Device options 101 102#options MEMORY_DISK_HOOKS # boottime setup of ramdisk 103#options MEMORY_DISK_IS_ROOT # use memory disk as root 104#options MEMORY_DISK_DYNAMIC 105#options MEMORY_DISK_ROOT_SIZE=22528 # Size in blocks 106#options MEMORY_RBFLAGS=RB_AUTOBOOT 107 108# Miscellaneous kernel options 109 110options KTRACE # system call tracing, a la ktrace(1) 111options IRQSTATS # manage IRQ statistics 112options MIIVERBOSE # Verbose MII autoconfuration messages 113options PCIVERBOSE # Verbose PCI descriptions 114options USBVERBOSE # verbose USB device autoconfig messages 115#options DDB_KEYCODE=0x40 116#options USERCONF # userconf(4) support 117#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 118#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 119 120 121config netbsd root on ? type ? 122 123# The main bus device 124mainbus0 at root 125 126# The boot cpu 127cpu0 at mainbus? 128 129# Marvell MV88Fxx81 Orion System-on-Chip 130mvsoc0 at mainbus? 131 132# On-chip PCI Express Interface 133mvpex* at mvsoc? offset ? irq ? 134 135# On-chip PCI Interface 136gtpci* at mvsoc? offset ? irq ? 137 138# PCI bus support 139options PCI_NETBSD_CONFIGURE 140#options PCI_CONFIG_DUMP # verbosely dump PCI config space 141 142pci* at mvpex? 143pci* at gtpci? 144 145pchb* at pci? dev ? function ? # PCI-Host bridges 146 147# On-chip Serial-ATA II Host Controller (SATAHC) 148mvsata* at mvsoc? offset ? irq ? 149 150# On-chip Gigabit Ethernet Controller Interface 151mvgbec* at mvsoc? offset ? 152mvgbe* at mvgbec? port ? irq ? 153 154# On-chip USB 2.0 Interface 155ehci* at mvsoc? offset ? irq ? 156 157# On-chip Cryptographic Engines and Security Accelerator 158mvcesa* at mvsoc? offset ? irq ? 159 160# On-chip Two-Wire Serial Interface (TWSI) 161gttwsi* at mvsoc? offset ? irq ? 162iic* at gttwsi? # I2C bus 163 164# On-chip UART Interface 165com* at mvsoc? offset ? irq ? 166 167# On-chip IDMA Controller 168gtidmac* at mvsoc? offset ? irq ? 169 170# On-chip General Purpose I/O Port Interface 171mvsocgpp* at mvsoc? offset ? irq ? 172gpio* at mvsocgpp? 173 174# On-chip Timers 175mvsoctmr* at mvsoc? offset ? irq ? 176 177 178# MII/PHY support 179makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 180 181# PCI IDE Controller 182mvsata* at pci? dev ? function ? # Marvell SATA Controller 183 184# ATA (IDE) bus support 185atabus* at ata? 186#options ATADEBUG 187 188# IDE drives 189wd* at atabus? drive? flags 0x0000 190 191# ATAPI bus support 192atapibus* at atapi? 193 194# ATAPI devices 195# flags have the same meaning as for IDE drives. 196sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 197 198# SCSI bus support 199scsibus* at scsi? 200 201# SCSI devices 202sd* at scsibus? target ? lun ? # SCSI disk drives 203 204# USB bus support 205usb* at ehci? 206 207# USB Hubs 208uhub* at usb? 209uhub* at uhub? port ? 210 211# USB Mass Storage 212umass* at uhub? port ? configuration ? interface ? 213 214# USB Serial 215uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 216ucom* at uplcom? portno ? 217 218# Wedge support 219options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances 220options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges 221 222# Alternate buffer queue strategies for better responsiveness under high 223# disk I/O load. 224#options BUFQ_READPRIO 225options BUFQ_PRIOCSCAN 226 227# Development and Debugging options 228 229#options DIAGNOSTIC # internal consistency checks 230#options DEBUG 231#options LOCKDEBUG 232#options PMAP_DEBUG # Enable pmap_debug_level code 233#options VERBOSE_INIT_ARM # verbose bootstraping messages 234options DDB # in-kernel debugger 235options DDB_ONPANIC=0 236options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 237#options DDB_COMMANDONENTER="bt" 238#options KGDB 239#options SYSCALL_DEBUG 240 241 242# Pseudo-Devices 243 244pseudo-device crypto # /dev/crypto device 245pseudo-device swcrypto # software crypto implementation 246 247# disk/mass storage pseudo-devices 248pseudo-device bio # RAID control device driver 249pseudo-device ccd # concatenated/striped disk devices 250pseudo-device cgd # cryptographic disk devices 251pseudo-device raid # RAIDframe disk driver 252options RAID_AUTOCONFIG # auto-configuration of RAID components 253# Options to enable various other RAIDframe RAID types. 254#options RF_INCLUDE_EVENODD=1 255#options RF_INCLUDE_RAID5_RS=1 256#options RF_INCLUDE_PARITYLOGGING=1 257#options RF_INCLUDE_CHAINDECLUSTER=1 258#options RF_INCLUDE_INTERDECLUSTER=1 259#options RF_INCLUDE_PARITY_DECLUSTERING=1 260#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 261pseudo-device fss # file system snapshot device 262pseudo-device putter # for puffs and pud 263 264#pseudo-device md # memory disk device (ramdisk) 265pseudo-device vnd # disk-like interface to files 266options VND_COMPRESSION # compressed vnd(4) 267 268# network pseudo-devices 269pseudo-device bpfilter # Berkeley packet filter 270#pseudo-device carp # Common Address Redundancy Protocol 271pseudo-device loop # network loopback 272#pseudo-device ppp # Point-to-Point Protocol 273#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 274#pseudo-device sl # Serial Line IP 275#pseudo-device irframetty # IrDA frame line discipline 276#pseudo-device tap # virtual Ethernet 277pseudo-device tun # network tunneling over tty 278#pseudo-device gre # generic L3 over IP tunnel 279#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 280#pseudo-device faith # IPv[46] TCP relay translation i/f 281#pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 282#pseudo-device vlan # IEEE 802.1q encapsulation 283#pseudo-device bridge # simple inter-network bridging 284#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 285#pseudo-device agr # IEEE 802.3ad link aggregation 286pseudo-device npf # NPF packet filter 287 288# miscellaneous pseudo-devices 289pseudo-device pty # pseudo-terminals 290#pseudo-device sequencer # MIDI sequencer 291#options RND_COM 292pseudo-device clockctl # user control of clock subsystem 293pseudo-device ksyms # /dev/ksyms 294#pseudo-device bcsp # BlueCore Serial Protocol 295#pseudo-device btuart # Bluetooth HCI UART (H4) 296 297# a pseudo device needed for Coda # also needs CODA (above) 298pseudo-device vcoda # coda minicache <-> venus comm. 299 300# a pseudo device needed for SMBFS 301pseudo-device nsmb # experimental - SMB requester 302 303# wscons pseudo-devices 304pseudo-device wsmux # mouse & keyboard multiplexor 305pseudo-device wsfont 306 307# data mover pseudo-devices 308pseudo-device swdmover # software dmover(9) back-end 309pseudo-device dmoverio # /dev/dmover dmover(9) interface 310 311# Veriexec 312include "dev/veriexec.config" 313 314options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 315options PAX_ASLR=0 # PaX Address Space Layout Randomization 316