Home | History | Annotate | Line # | Download | only in conf
OPENBLOCKS_AX3 revision 1.13
      1 #	$NetBSD: OPENBLOCKS_AX3,v 1.13 2014/08/30 13:40:18 kiyohara Exp $
      2 #
      3 #	OPENBLOCKS_AX3 -- Plat'Home. OpenBlockS AX3 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="openblocks_ax3"
     16 options 	EVBARM_BOARDTYPE=openblocks_ax3
     17 
     18 # CPU options
     19 options 	CPU_PJ4B
     20 options 	L2CACHE_ENABLE
     21 #options 	AURORA_IO_CACHE_COHERENCY
     22 options 	AURORA_L2_PT_WALK
     23 options 	ARM_HAS_VBAR
     24 options 	FPU_VFP
     25 makeoptions	CPUFLAGS="-march=armv7-a -mfpu=neon"
     26 
     27 # Architecture options
     28 options 	ARMADAXP
     29 
     30 options 	PIC_MAXSOURCES=128
     31 
     32 options 	__HAVE_MM_MD_DIRECT_MAPPED_PHYS
     33 #options 	MULTIPROCESSOR
     34 options 	TPIDRPRW_IS_CURCPU
     35 
     36 no options 	KERNEL_BASE_EXT
     37 options 	KERNEL_BASE_EXT=0x80000000
     38 makeoptions 	KERNEL_BASE_VIRT="0x80008000"
     39 
     40 # Standard system options
     41 
     42 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     43 options 	NTP		# NTP phase/frequency locked loop
     44 
     45 # File systems
     46 
     47 file-system 	FFS		# UFS
     48 file-system 	EXT2FS		# second extended file system (linux)
     49 #file-system 	LFS		# log-structured file system
     50 #file-system 	MFS		# memory file system
     51 file-system 	NFS		# Network file system
     52 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     53 file-system 	MSDOSFS		# MS-DOS file system
     54 #file-system 	FDESC		# /dev/fd
     55 file-system 	KERNFS		# /kern
     56 file-system 	NULLFS		# loopback file system
     57 file-system 	PROCFS		# /proc
     58 file-system 	PTYFS		# /dev/pts/N support
     59 #file-system 	PUFFS		# Pass-to-Userspace Framework File System
     60 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     61 file-system 	UNION		# union file system
     62 file-system 	TMPFS		# Efficient memory file-system
     63 
     64 # File system options
     65 #options 	QUOTA		# legacy UFS quotas
     66 #options 	QUOTA2		# new, in-filesystem UFS quotas
     67 options 	FFS_EI		# FFS Endian Independent support
     68 options 	NFSSERVER	# Network File System server
     69 options 	WAPBL		# File system journaling support
     70 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     71 
     72 # Networking options
     73 
     74 options 	GATEWAY		# packet forwarding
     75 options 	INET		# IP + ICMP + TCP + UDP
     76 options 	INET6		# IPv6
     77 options 	IPSEC		# IP security
     78 #options 	IPSEC_DEBUG	# debug for IP security
     79 options 	MROUTING	# IP multicast routing
     80 options 	PIM		# Protocol Independent Multicast
     81 options 	NETATALK	# AppleTalk networking protocols
     82 options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     83 options 	PPP_DEFLATE	# Deflate compression support for PPP
     84 options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     85 options 	IPFILTER_LOG	# ipmon(8) log support
     86 options 	IPFILTER_LOOKUP	# ippool(8) support
     87 options 	IPFILTER_COMPAT	# Compat for IP-Filter
     88 options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
     89 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     90 
     91 #options 	NFS_BOOT_BOOTP
     92 options 	NFS_BOOT_DHCP
     93 #options 	NFS_BOOT_BOOTPARAM
     94 
     95 #options 	NFS_BOOT_RWSIZE=1024
     96 
     97 # Compatibility options
     98 
     99 options		COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
    100 #options 	COMPAT_09	# NetBSD 0.9,
    101 #options 	COMPAT_10	# NetBSD 1.0,
    102 #options 	COMPAT_11	# NetBSD 1.1,
    103 #options 	COMPAT_12	# NetBSD 1.2,
    104 #options 	COMPAT_13	# NetBSD 1.3,
    105 #options 	COMPAT_14	# NetBSD 1.4,
    106 #options 	COMPAT_15	# NetBSD 1.5,
    107 #options 	COMPAT_16	# NetBSD 1.6,
    108 #options 	COMPAT_20	# NetBSD 2.0,
    109 #options 	COMPAT_30	# NetBSD 3.0,
    110 #options 	COMPAT_40	# NetBSD 4.0,
    111 options 	COMPAT_50	# NetBSD 5.0,
    112 options 	COMPAT_60	# NetBSD 6.0, and
    113 options 	COMPAT_70	# NetBSD 7.0 binary compatibility.
    114 #options 	COMPAT_43	# 4.3BSD compatibility.
    115 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    116 
    117 options 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
    118 options 	COMPAT_LINUX	# binary compatibility with Linux
    119 options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    120 
    121 # Shared memory options
    122 
    123 options 	SYSVMSG		# System V-like message queues
    124 options 	SYSVSEM		# System V-like semaphores
    125 #options 	SEMMNI=10	# number of semaphore identifiers
    126 #options 	SEMMNS=60	# number of semaphores in system
    127 #options 	SEMUME=10	# max number of undo entries per process
    128 #options 	SEMMNU=30	# number of undo structures in system
    129 options 	SYSVSHM		# System V-like memory sharing
    130 
    131 # Device options
    132 
    133 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    134 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    135 #options 	MEMORY_DISK_DYNAMIC
    136 #options 	MINIROOTSIZE=1000	# Size in blocks
    137 #options 	MEMORY_DISK_ROOT_SIZE=22528	# Size in blocks
    138 #options 	MEMORY_RBFLAGS=RB_AUTOBOOT
    139 
    140 # Miscellaneous kernel options
    141 
    142 #options 	KTRACE		# system call tracing, a la ktrace(1)
    143 options 	IRQSTATS	# manage IRQ statistics
    144 #options 	KMEMSTATS	# kernel memory statistics
    145 #options 	MIIVERBOSE	# Verbose MII auto configuration messages
    146 #options 	PCIVERBOSE	# Verbose PCI descriptions
    147 #options 	SCSIVERBOSE	# Verbose SCSI errors
    148 options 	USBVERBOSE	# Verbose USB device auto configuration messages
    149 #options 	DDB_KEYCODE=0x40
    150 #options 	USERCONF	# userconf(4) support
    151 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    152 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
    153 
    154 # Development and Debugging options
    155 
    156 #options 	PERFCTRS	# performance counters
    157 options 	DIAGNOSTIC	# internal consistency checks
    158 options 	DEBUG
    159 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    160 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    161 options 	DDB		# in-kernel debugger
    162 options 	DDB_ONPANIC=1
    163 #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    164 #options 	KGDB
    165 #options 	DEBUG_KGDB
    166 makeoptions	DEBUG="-g"	# compile full symbol table
    167 makeoptions	COPY_SYMTAB=1
    168 
    169 config		netbsd		root on ? type ?
    170 
    171 # The main bus device
    172 mainbus0 at root
    173 
    174 # The boot cpu
    175 cpu0	at mainbus?
    176 
    177 # Marvell MV88F78260 ARMADA XP System-on-chip
    178 mvsoc0	at mainbus?
    179 options 	MVSOC_INTERREGS_PBASE=0xd0000000
    180 options 	MVSOC_FIXUP_DEVID=0x7826
    181 
    182 # On-chip Serial-ATA II Host Controller (SATAHC)
    183 mvsata* at mvsoc? offset ? irq ?
    184 
    185 # On-chip Gigabit Ethernet Controller Interface
    186 mvgbec* at mvsoc? offset ?
    187 mvgbe*	at mvgbec? port ? irq ?
    188 makphy* at mii? phy ?
    189 
    190 # On-chip USB 2.0 Interface
    191 ehci*	at mvsoc? offset ? irq ?
    192 
    193 # Serial Peripheral Interface (SPI)
    194 #mvspi*	at mvsoc? offset ? irq ?
    195 #spi*	at mvspi?
    196 
    197 # On-chip Two-Wire Serial Interface (TWSI)
    198 gttwsi* at mvsoc? offset ? irq ?
    199 iic*	at gttwsi?
    200 s390rtc* at iic1 addr 0x30
    201 
    202 # On-chip UART Interface
    203 com*	at mvsoc? offset ? irq ?
    204 options 	COM_16750		# XXXX: required
    205 #options 	COM_DEBUG
    206 
    207 # On-chip PCI Express Interface
    208 mvpex*	at mvsoc? offset ? irq ?
    209 
    210 # On-chip IDMA Controller
    211 gtidmac* at mvsoc? offset ? irq ?
    212 
    213 # On-chip SD/MMC Interface
    214 mvsdio* at mvsoc? offset ? irq ?
    215 sdmmc*	at mvsdio?
    216 
    217 # On-chip Timers
    218 mvsoctmr* at mvsoc? offset ? irq ?
    219 
    220 
    221 # PCI bus support
    222 options 	PCI_NETBSD_CONFIGURE
    223 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    224 pci*	at mvpex?
    225 pchb*	at pci? dev ? function ?	# PCI-Host bridges
    226 
    227 #athn*	at pci? dev ? function ?	# Atheros AR9k (802.11a/g/n)
    228 
    229 # ATA (IDE) bus support
    230 atabus* at ata?
    231 #options 	ATADEBUG
    232 
    233 # IDE drives
    234 wd*	at atabus? drive ? flags 0x0000
    235 
    236 # ATAPI bus support
    237 atapibus* at atapi?
    238 
    239 # ATAPI devices
    240 # flags have the same meaning as for IDE drives.
    241 cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    242 sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    243 
    244 # USB bus support
    245 usb*	at ehci?
    246 
    247 # USB Hubs
    248 uhub*	at usb?
    249 uhub*	at uhub? port ?
    250 
    251 # USB Mass Storage
    252 umass*	at uhub? port ? configuration ? interface ?
    253 wd*	at umass?
    254 scsibus* at scsi?
    255 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    256 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    257 
    258 # USB Generic driver
    259 ugen*	at uhub? port ?
    260 
    261 ld*	at sdmmc?
    262 
    263 
    264 # Pseudo-Devices
    265 
    266 pseudo-device	crypto			# /dev/crypto device
    267 pseudo-device	swcrypto		# software crypto implementation
    268 
    269 # disk/mass storage pseudo-devices
    270 #pseudo-device	bio			# RAID control device driver
    271 #pseudo-device	ccd			# concatenated/striped disk devices
    272 #pseudo-device	cgd			# cryptographic disk devices
    273 #pseudo-device	raid			# RAIDframe disk driver
    274 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    275 # Options to enable various other RAIDframe RAID types.
    276 #options 	RF_INCLUDE_EVENODD=1
    277 #options 	RF_INCLUDE_RAID5_RS=1
    278 #options 	RF_INCLUDE_PARITYLOGGING=1
    279 #options 	RF_INCLUDE_CHAINDECLUSTER=1
    280 #options 	RF_INCLUDE_INTERDECLUSTER=1
    281 #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    282 #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    283 #pseudo-device	fss			# file system snapshot device
    284 #pseudo-device	putter			# for puffs and pud
    285 
    286 #pseudo-device	md			# memory disk device (ramdisk)
    287 pseudo-device	vnd			# disk-like interface to files
    288 options 	VND_COMPRESSION		# compressed vnd(4)
    289 
    290 # network pseudo-devices
    291 pseudo-device	bpfilter		# Berkeley packet filter
    292 #pseudo-device	carp			# Common Address Redundancy Protocol
    293 pseudo-device	ipfilter		# IP filter (firewall) and NAT
    294 pseudo-device	loop			# network loopback
    295 pseudo-device	ppp			# Point-to-Point Protocol
    296 pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    297 pseudo-device	sl			# Serial Line IP
    298 #pseudo-device	strip			# Starmode Radio IP (Metricom)
    299 #pseudo-device	irframetty		# IrDA frame line discipline
    300 pseudo-device	tap			# virtual Ethernet
    301 pseudo-device	tun			# network tunneling over tty
    302 pseudo-device	gre			# generic L3 over IP tunnel
    303 pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC 1933)
    304 pseudo-device	faith			# IPv[46] TCP relay translation i/f
    305 pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    306 pseudo-device	vlan			# IEEE 802.1q encapsulation
    307 pseudo-device	bridge			# simple inter-network bridging
    308 options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    309 pseudo-device	agr			# IEEE 802.3ad link aggregation
    310 pseudo-device	pf			# PF packet filter
    311 pseudo-device	pflog			# PF log if
    312 
    313 # miscellaneous pseudo-devices
    314 pseudo-device	pty			# pseudo-terminals
    315 #pseudo-device	sequencer		# MIDI sequencer
    316 #options 	RND_COM
    317 pseudo-device	clockctl		# user control of clock subsystem
    318 pseudo-device	ksyms			# /dev/ksyms
    319 
    320 # a pseudo device needed for Coda	# also needs CODA (above)
    321 #pseudo-device	vcoda			# coda minicache <-> venus comm.
    322 
    323 # a pseudo device needed for SMBFS
    324 #pseudo-device	nsmb			# experimental - SMB requester
    325 
    326 # wscons pseudo-devices
    327 #pseudo-device	wsmux			# mouse & keyboard multiplexor
    328 #pseudo-device	wsfont
    329 
    330 # data mover pseudo-devices
    331 pseudo-device	swdmover		# software dmover(9) back-end
    332 pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    333 
    334 #options 	FILEASSOC		# fileassoc(9) - required for Veriexec
    335 
    336 # Veriexec
    337 #pseudo-device	veriexec
    338 #
    339 # Uncomment the fingerprint methods below that are desired. Note that
    340 # removing fingerprint methods will have almost no impact on the kernel
    341 # code size.
    342 #
    343 #options 	VERIFIED_EXEC_FP_RMD160
    344 #options 	VERIFIED_EXEC_FP_SHA256
    345 #options 	VERIFIED_EXEC_FP_SHA384
    346 #options 	VERIFIED_EXEC_FP_SHA512
    347 #options 	VERIFIED_EXEC_FP_SHA1
    348 #options 	VERIFIED_EXEC_FP_MD5
    349 
    350 #options 	PAX_MPROTECT=0		# PaX mprotect(2) restrictions
    351 #options 	PAX_ASLR=0		# PaX Address Space Layout Randomization
    352