Home | History | Annotate | Line # | Download | only in conf
      1 #	$NetBSD: TEAMASA_NPWR,v 1.97 2022/08/07 02:52:25 simonb Exp $
      2 #
      3 #	TEAMASA_NPWR -- Team ASA, Inc. Npwr -- XScale/IOP310-based
      4 #	server appliance.
      5 #
      6 
      7 include	"arch/evbarm/conf/std.iq80310"
      8 options 	IOP310_TEAMASA_NPWR	# Enable Npwr support
      9 
     10 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     11 
     12 # estimated number of users
     13 
     14 maxusers	32
     15 
     16 # Standard system options
     17 
     18 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     19 options 	NTP		# NTP phase/frequency locked loop
     20 
     21 # CPU options
     22 
     23 # For StrongARM systems
     24 options 	CPU_XSCALE_80200	# Support the XScale core
     25 makeoptions	CPUFLAGS="-mcpu=xscale"
     26 options 	XSCALE_CCLKCFG=7	# 600MHz
     27 
     28 # Architecture options
     29 options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
     30 options 	XSCALE_NO_COALESCE_WRITES
     31 
     32 # File systems
     33 
     34 file-system	FFS		# UFS
     35 #file-system	LFS		# log-structured file system
     36 file-system	MFS		# memory file system
     37 file-system	NFS		# Network file system
     38 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     39 file-system 	EXT2FS		# second extended file system (linux)
     40 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     41 #file-system	MSDOSFS		# MS-DOS file system
     42 file-system	FDESC		# /dev/fd
     43 file-system	KERNFS		# /kern
     44 file-system	NULLFS		# loopback file system
     45 file-system	PROCFS		# /proc
     46 #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     47 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     48 #file-system	UNION		# union file system
     49 file-system	PTYFS		# /dev/pts/N support
     50 file-system	TMPFS		# Efficient memory file-system
     51 
     52 # File system options
     53 #options 	FFS_EI		# FFS Endian Independent support
     54 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     55 #options 	QUOTA		# legacy UFS quotas
     56 #options 	QUOTA2		# new, in-filesystem UFS quotas
     57 #options 	UFS_DIRHASH	# UFS Large Directory Hashing
     58 #options 	UFS_EXTATTR	# Extended attribute support for UFS1
     59 options 	WAPBL		# File system journaling support
     60 #options 	DISKLABEL_EI	# disklabel Endian Independent support
     61 options 	NFSSERVER	# Network File System server
     62 
     63 # Networking options
     64 
     65 #options 	GATEWAY		# packet forwarding
     66 options 	INET		# IP + ICMP + TCP + UDP
     67 options 	INET6		# IPV6
     68 #options 	IPSEC		# IP security
     69 #options 	IPSEC_DEBUG	# debug for IP security
     70 #options 	MROUTING	# IP multicast routing
     71 #options 	PIM		# Protocol Independent Multicast
     72 #options 	NETATALK	# AppleTalk networking
     73 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     74 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     75 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     76 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     77 
     78 options 	NFS_BOOT_BOOTP
     79 options 	NFS_BOOT_DHCP
     80 #options 	NFS_BOOT_BOOTPARAM
     81 
     82 # Compatibility options
     83 
     84 include 	"conf/compat_netbsd14.config"
     85 options 	COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
     86 
     87 # Shared memory options
     88 
     89 options 	SYSVMSG		# System V-like message queues
     90 options 	SYSVSEM		# System V-like semaphores
     91 options 	SYSVSHM		# System V-like memory sharing
     92 
     93 # Device options
     94 
     95 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
     96 #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
     97 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
     98 
     99 # Console options.  The default console is oriented towards the IQ80310
    100 # eval board, on connector J9 ("com0") at # 115200 baud.
    101 #
    102 # The Npwr's RedBoot firmware uses 19200, and there is only one
    103 # serial port.
    104 #options 	CONSPEED=19200		# Console speed
    105 #options 	CONUNIT=1		# Console unit (0=J9, 1=J10)
    106 
    107 # Miscellaneous kernel options
    108 options 	KTRACE		# system call tracing, a la ktrace(1)
    109 options 	SCSIVERBOSE	# Verbose SCSI errors
    110 options 	PCIVERBOSE	# Verbose PCI descriptions
    111 options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    112 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    113 #options 	DDB_KEYCODE=0x40
    114 options 	USERCONF	# userconf(4) support
    115 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    116 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
    117 
    118 # Development and Debugging options
    119 
    120 options 	DIAGNOSTIC	# internal consistency checks
    121 #options 	DEBUG
    122 #options 	UVMHIST		# kernhist for uvm/pmap subsystems
    123 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    124 options 	DDB		# in-kernel debugger
    125 options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    126 #makeoptions	DEBUG="-g"	# compile full symbol table
    127 makeoptions	COPY_SYMTAB=1
    128 
    129 config		netbsd		root on ? type ?
    130 config		netbsd-wm0	root on wm0 type nfs
    131 config		netbsd-sd0	root on sd0 type ?
    132 
    133 # The main bus device
    134 mainbus0	at root
    135 
    136 # The boot CPU
    137 cpu0		at mainbus?
    138 
    139 # On-board device support
    140 obio*		at mainbus?
    141 
    142 # On-board 16550 UART
    143 com0		at obio? addr 0xfe810000 xint3 3
    144 
    145 # i80312 Companion I/O support
    146 iopxs*		at mainbus?
    147 
    148 iopiic*		at iopxs? 			# I2C Controller Unit
    149 iic*		at iopiic?
    150 m41trtc*	at iic? addr 0x68
    151 
    152 pci*		at iopxs? bus ?
    153 
    154 #
    155 # Networking devices
    156 #
    157 
    158 # PCI network devices
    159 wm*		at pci? dev ? function ?
    160 
    161 # MII/PHY support
    162 makphy*		at mii? phy ?			# Marvell "Alaska" Gig-E PHY
    163 ukphy*		at mii? phy ?			# Generic IEEE 802.3u PHYs
    164 
    165 #
    166 # Mass storage devices
    167 #
    168 
    169 # PCI SCSI controllers
    170 esiop0		at pci? dev ? function ?	# on-board LSI 53c1010
    171 options 	SIOP_SYMLED
    172 scsibus*	at scsi?
    173 
    174 # SCSI device support
    175 sd*		at scsibus? target ? lun ?	# SCSI disks
    176 cd*		at scsibus? target ? lun ?	# SCSI CD-ROMs
    177 st*		at scsibus? target ? lun ?	# SCSI tapes
    178 uk*		at scsibus? target ? lun ?	# unknown SCSI devices
    179 
    180 # Pseudo-Devices
    181 
    182 # disk/mass storage pseudo-devices
    183 #pseudo-device	md			# memory disk device (ramdisk)
    184 pseudo-device	vnd			# disk-like interface to files
    185 pseudo-device	raid			# RAIDframe devices
    186 #pseudo-device	fss			# file system snapshot device
    187 #pseudo-device	ccd			# Concatenated disk devices
    188 #pseudo-device	putter			# for puffs and pud
    189 
    190 # network pseudo-devices
    191 pseudo-device	bpfilter		# Berkeley packet filter
    192 pseudo-device	loop			# network loopback
    193 pseudo-device	kttcp
    194 
    195 # miscellaneous pseudo-devices
    196 pseudo-device	pty			# pseudo-terminals
    197 pseudo-device	clockctl		# user control of clock subsystem
    198 pseudo-device	ksyms			# /dev/ksyms
    199