Home | History | Annotate | Line # | Download | only in conf
      1  1.33  christos #	$NetBSD: VIRTEX_GSRD2,v 1.33 2024/01/29 18:27:12 christos Exp $
      2   1.1     freza #
      3   1.1     freza # VIRTEX_GSRD2
      4   1.1     freza #
      5   1.1     freza # 	Xilinx Gigabit System Reference Design version 2, ML403, Virtex 4 FX
      6   1.1     freza 
      7  1.29       mrg include 	"arch/evbppc/conf/std.virtex"
      8   1.1     freza 
      9   1.1     freza #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     10   1.1     freza #ident 		"VIRTEX_GSRD2"
     11   1.1     freza 
     12   1.1     freza maxusers	32
     13   1.1     freza 
     14   1.1     freza # XXX it's 64MB really, but reserve some space for framebuffer
     15   1.1     freza #options 	PHYSMEM=64 		# RAM size (MB)
     16   1.1     freza options 	PHYSMEM=60 		# RAM size (MB)
     17   1.1     freza 
     18   1.1     freza options 	CPUFREQ=300 		# core frequency (MHz)
     19   1.1     freza 
     20   1.1     freza options 	DESIGN_GSRD2 		# FPGA design
     21   1.1     freza options 	IDCR_BASE=0x100 	# Internal DCR bus
     22   1.1     freza options 	DCR_XINTC_BASE=0x03f0 	# Where XINTC lives on DCR
     23   1.1     freza 
     24   1.1     freza options 	CONS_NAME="\"xlcom0\""
     25   1.1     freza options 	CONS_ADDR=0x010000 	# offset in OPB window
     26   1.1     freza 
     27   1.2   garbled #options 	KGDB 			# remote gdb on console
     28   1.2   garbled 
     29   1.1     freza #options 	UVMHIST
     30   1.1     freza #options 	UVMHIST_PRINT
     31   1.1     freza 
     32   1.1     freza # Options necessary to use MD
     33   1.1     freza #options 	MEMORY_DISK_HOOKS
     34   1.1     freza #options 	MEMORY_DISK_IS_ROOT	# force root on memory disk
     35   1.1     freza #options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     36   1.1     freza #options 	MEMORY_DISK_ROOT_SIZE=6300 # size of memory disk, in blocks
     37   1.1     freza 
     38   1.1     freza #options 	INSECURE	# disable kernel security levels
     39   1.1     freza #options 	NTP		# NTP phase/frequency locked loop
     40   1.1     freza #options 	KTRACE		# system call tracing via ktrace(1)
     41   1.1     freza 
     42   1.1     freza #options 	SYSVMSG		# System V message queues
     43   1.1     freza #options 	SYSVSEM		# System V semaphores
     44   1.1     freza #options 	SYSVSHM		# System V shared memory
     45   1.1     freza 
     46   1.1     freza #options 	USERCONF	# userconf(4) support
     47   1.1     freza #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     48   1.1     freza #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     49   1.1     freza 
     50   1.1     freza # Diagnostic/debugging support options
     51   1.1     freza options 	DIAGNOSTIC	# cheap kernel consistency checks
     52   1.1     freza options 	DEBUG		# expensive debugging checks/support
     53   1.1     freza options 	DDB		# in-kernel debugger
     54  1.27  uebayasi pseudo-device	ksyms
     55   1.1     freza options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     56   1.1     freza options 	TRAP_PANICWAIT
     57  1.24     joerg makeoptions	COPY_SYMTAB=1	# size for embedded symbol table
     58   1.1     freza options 	MBUFTRACE 	# track mbuf leaks
     59   1.1     freza 
     60   1.1     freza makeoptions	DEBUG="-g"	# compile full symbol table
     61   1.1     freza 
     62   1.1     freza # Compatibility options
     63  1.29       mrg include 	"conf/compat_netbsd30.config"
     64   1.1     freza #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     65   1.1     freza 
     66   1.1     freza # File systems
     67   1.1     freza file-system 	FFS		# UFS
     68   1.1     freza file-system 	EXT2FS		# second extended file system (linux)
     69   1.1     freza #file-system 	LFS		# log-structured file system
     70   1.1     freza file-system 	MFS		# memory file system
     71   1.1     freza file-system 	NFS		# Network File System client
     72   1.1     freza #file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     73   1.1     freza file-system 	MSDOSFS		# MS-DOS file system
     74   1.1     freza file-system 	FDESC		# /dev/fd
     75   1.1     freza #file-system 	KERNFS		# /kern
     76   1.1     freza #file-system 	NULLFS		# loopback file system
     77   1.1     freza #file-system 	OVERLAY		# overlay file system
     78   1.1     freza #file-system 	PROCFS		# /proc
     79   1.1     freza #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     80   1.1     freza #file-system 	UNION		# union file system
     81   1.1     freza file-system	PTYFS		# /dev/pts/N support
     82   1.1     freza file-system 	TMPFS 		# virtual memory file system
     83   1.1     freza 
     84   1.1     freza # File system options
     85  1.32    simonb options 	FFS_EI		# FFS Endian Independent support
     86  1.32    simonb #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     87  1.12    bouyer options 	QUOTA		# legacy UFS quotas
     88  1.12    bouyer options 	QUOTA2		# new, in-filesystem UFS quotas
     89  1.32    simonb #options 	UFS_DIRHASH	# UFS Large Directory Hashing
     90  1.32    simonb #options 	UFS_EXTATTR	# Extended attribute support for UFS1
     91  1.15  dholland options 	WAPBL		# File system journaling support
     92  1.32    simonb #options 	NFSSERVER	# Network File System server
     93   1.1     freza 
     94   1.1     freza options 	NFS_BOOT_DHCP	# Support DHCP NFS root
     95   1.1     freza 
     96   1.1     freza # Networking options
     97   1.1     freza #options 	GATEWAY		# packet forwarding
     98   1.1     freza options 	INET		# IP + ICMP + TCP + UDP
     99   1.1     freza options 	INET6		# IPV6
    100   1.1     freza #options 	IPSEC		# IP security
    101   1.1     freza #options 	IPSEC_DEBUG	# debug for IP security
    102   1.1     freza #options 	MROUTING	# IP multicast routing
    103   1.1     freza #options 	PIM		# Protocol Independent Multicast
    104   1.1     freza #options 	NETATALK	# AppleTalk networking protocols
    105   1.1     freza options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    106   1.1     freza options 	PPP_DEFLATE	# Deflate compression support for PPP
    107   1.1     freza options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    108   1.1     freza #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    109   1.1     freza 
    110   1.1     freza # These options enable verbose messages for several subsystems.
    111   1.1     freza # Warning, these may compile large string tables into the kernel!
    112   1.1     freza #options 	MIIVERBOSE	# verbose PHY autoconfig messages
    113   1.1     freza 
    114   1.1     freza #
    115   1.1     freza # Workstation console options
    116   1.1     freza #
    117   1.1     freza options 	WSEMUL_VT100
    118   1.1     freza options 	WSEMUL_DEFAULT_FG=WSCOL_BLACK
    119   1.1     freza options 	WSEMUL_DEFAULT_BG=WSCOL_LIGHT_WHITE
    120  1.16       abs options 	WSDISPLAY_COMPAT_USL 	# wsconscfg VT handling
    121   1.1     freza #options 	WSDISPLAY_COMPAT_RAWKBD
    122   1.1     freza #options 	WSDISPLAY_DEFAULTSCREENS=4
    123   1.1     freza options 	FONT_VT220L8x16
    124   1.1     freza 
    125   1.1     freza # Kernel root file system and dump configuration.
    126   1.1     freza #config		netbsd	root on ? type ?
    127   1.1     freza config		netbsd	root on temac0 type nfs
    128   1.1     freza 
    129   1.1     freza #
    130   1.1     freza # Device configuration
    131   1.1     freza #
    132   1.1     freza 
    133   1.1     freza plb0 		at root 		# Processor Local Bus
    134   1.1     freza cpu0 		at plb? 		# Processor itself
    135   1.1     freza xcvbus* 	at plb? 		# DCR bus
    136   1.1     freza temac* 		at xcvbus? 		# Tri-Mode Ethernet MAC
    137   1.1     freza xlcom* 		at xcvbus? 		# UartLite
    138   1.1     freza 
    139   1.1     freza tft* 		at plbus?
    140   1.1     freza wsdisplay* 	at wsemuldisplaydev?
    141   1.1     freza 
    142   1.1     freza # MII/PHY support
    143   1.1     freza makphy* 	at mii? phy ?		# Marvell Semiconductor 88E1000 PHYs
    144   1.1     freza ukphy*		at mii? phy ?		# generic unknown PHYs
    145   1.1     freza 
    146  1.11   hannken pseudo-device	md			# memory disk device
    147   1.1     freza pseudo-device	loop			# network loopback
    148  1.20  christos pseudo-device	bpfilter		# packet filter
    149  1.31      maxv pseudo-device	npf			# NPF packet filter
    150  1.20  christos pseudo-device	ppp			# Point-to-Point Protocol
    151  1.20  christos pseudo-device	sl			# Serial Line IP
    152   1.1     freza pseudo-device	pty			# pseudo-terminals
    153   1.1     freza 
    154   1.1     freza pseudo-device 	wsmux
    155   1.1     freza pseudo-device 	wsfont
    156