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