Home | History | Annotate | Line # | Download | only in conf
ALCHEMY revision 1.20
      1  1.20    simonb #	$NetBSD: ALCHEMY,v 1.20 2008/07/31 07:41:00 simonb Exp $
      2   1.1   gdamore #
      3   1.1   gdamore # Kernel config for the Alchemy Semiconductor (AMD) PB1000, PB1500,
      4   1.1   gdamore # DBAu1000 and DBAu1500 evaluation boards.
      5   1.1   gdamore 
      6   1.4   gdamore include 	"arch/evbmips/conf/std.alchemy"
      7   1.1   gdamore 
      8  1.20    simonb #ident 		"ALCHEMY-$Revision: 1.20 $"
      9   1.1   gdamore 
     10   1.1   gdamore maxusers	32
     11   1.1   gdamore 
     12   1.1   gdamore options 	MIPS32
     13   1.1   gdamore options 	NOFPU		# No FPU
     14   1.1   gdamore options 	SOFTFLOAT	# emulate FPU insn
     15   1.9    simonb #options 	CONSPEED=115200	# YAMON default
     16   1.1   gdamore options 	HZ=512		# for profiling
     17   1.1   gdamore 
     18   1.2   gdamore # CPU support
     19   1.3    simonb options 	ALCHEMY_AU1000
     20   1.3    simonb options 	ALCHEMY_AU1100
     21   1.3    simonb options 	ALCHEMY_AU1500
     22   1.3    simonb options 	ALCHEMY_AU1550
     23   1.2   gdamore 
     24   1.4   gdamore # Board support
     25   1.9    simonb options 	ALCHEMY_GENERIC
     26   1.4   gdamore 
     27   1.1   gdamore #options 	LOCKDEBUG
     28   1.1   gdamore options 	SOSEND_LOAN
     29   1.1   gdamore options 	SOSEND_COUNTERS
     30   1.1   gdamore options 	INET_CSUM_COUNTERS
     31   1.1   gdamore options 	TCP_CSUM_COUNTERS
     32   1.1   gdamore options 	UDP_CSUM_COUNTERS
     33   1.1   gdamore options 	TCP_OUTPUT_COUNTERS
     34   1.1   gdamore 
     35   1.1   gdamore # Standard system options
     36   1.1   gdamore options 	KTRACE		# system call tracing support
     37   1.1   gdamore options 	SYSVMSG		# System V message queues
     38   1.1   gdamore options 	SYSVSEM		# System V semaphores
     39   1.1   gdamore options 	SYSVSHM		# System V shared memory
     40   1.1   gdamore #options 	SHMMAXPGS=1024	# 1024 pages is the default
     41   1.1   gdamore #options 	LKM		# loadable kernel modules
     42   1.1   gdamore options 	NTP		# network time protocol
     43   1.1   gdamore 
     44   1.1   gdamore # Debugging options
     45   1.1   gdamore options 	DIAGNOSTIC	# extra kernel sanity checking
     46   1.1   gdamore options 	DEBUG		# extra kernel debugging support
     47   1.1   gdamore #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)  
     48   1.1   gdamore options 	DDB		# kernel dynamic debugger
     49   1.1   gdamore options 	DDB_HISTORY_SIZE=100 # enable history editing in DDB
     50   1.1   gdamore makeoptions 	DEBUG="-g"	# compile full symbol table
     51  1.17    martin options 	SYMTAB_SPACE=340000	# size for embedded symbol table
     52   1.1   gdamore 
     53   1.1   gdamore # Compatibility options
     54   1.1   gdamore #options 	COMPAT_43	# compatibility with 4.3BSD binaries
     55   1.1   gdamore #options 	COMPAT_09	# NetBSD 0.9 binary compatibility
     56   1.1   gdamore #options 	COMPAT_10	# NetBSD 1.0 binary compatibility
     57   1.1   gdamore #options 	COMPAT_11	# NetBSD 1.1 binary compatibility
     58   1.1   gdamore #options 	COMPAT_12	# NetBSD 1.2 binary compatibility
     59   1.1   gdamore #options 	COMPAT_13	# NetBSD 1.3 binary compatibility
     60   1.1   gdamore #options 	COMPAT_14	# NetBSD 1.4 binary compatibility
     61  1.15      manu #options 	COMPAT_15	# NetBSD 1.5 binary compatibility
     62   1.1   gdamore options 	COMPAT_16	# NetBSD 1.6 binary compatibility
     63   1.1   gdamore options 	COMPAT_20	# NetBSD 2.0 binary compatibility
     64   1.1   gdamore options 	COMPAT_30	# NetBSD 3.0 compatibility.
     65  1.19   tsutsui options 	COMPAT_40	# NetBSD 4.0 compatibility.
     66   1.1   gdamore #options 	EXEC_ECOFF	# exec ECOFF binaries
     67   1.1   gdamore #options 	COMPAT_ULTRIX	# binary compatibility with Ultrix
     68   1.3    simonb options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     69   1.1   gdamore 
     70   1.1   gdamore # File systems
     71   1.1   gdamore file-system	FFS		# Berkeley Fast Filesystem
     72   1.1   gdamore file-system	MFS		# memory-based filesystem
     73   1.1   gdamore #file-system 	EXT2FS		# second extended file system (linux) 
     74   1.1   gdamore file-system	NFS		# Sun NFS-compatible filesystem client
     75   1.1   gdamore #file-system	KERNFS		# kernel data-structure filesystem
     76   1.1   gdamore #file-system	NULLFS		# NULL layered filesystem
     77   1.1   gdamore #file-system 	OVERLAY		# overlay file system
     78   1.1   gdamore file-system	FDESC		# user file descriptor filesystem
     79   1.1   gdamore #file-system	UMAPFS		# uid/gid remapping filesystem
     80   1.1   gdamore #file-system	LFS		# Log-based filesystem (still experimental)
     81   1.1   gdamore #file-system	PORTAL		# portal filesystem (still experimental)
     82   1.1   gdamore #file-system	PROCFS		# /proc
     83   1.1   gdamore #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     84   1.1   gdamore #file-system	UNION		# union file system
     85   1.1   gdamore #file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
     86   1.1   gdamore #file-system 	CODA		# Coda File System; also needs vcoda (below)
     87   1.1   gdamore #file-system	PTYFS		# /dev/pts/N support
     88   1.1   gdamore 
     89   1.1   gdamore # File system options
     90   1.1   gdamore #options 	NFSSERVER	# Sun NFS-compatible filesystem server
     91   1.1   gdamore #options 	QUOTA		# FFS quotas
     92   1.1   gdamore #options 	FFS_EI		# FFS Endian Independant support
     93   1.1   gdamore #options 	SOFTDEP         # FFS soft updates support.
     94  1.20    simonb options 	WAPBL		# File system journaling support - Experimental
     95   1.1   gdamore options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     96   1.1   gdamore #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     97   1.1   gdamore 				# immutable) behave as system flags.
     98   1.1   gdamore 
     99   1.1   gdamore # Networking options
    100   1.1   gdamore #options 	GATEWAY		# IP packet forwarding
    101   1.1   gdamore options 	INET		# Internet protocols
    102   1.1   gdamore #options 	INET6		# IPV6
    103   1.1   gdamore #options 	IPSEC		# IP security
    104   1.1   gdamore #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    105   1.1   gdamore #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
    106   1.1   gdamore #options 	IPSEC_DEBUG	# debug for IP security
    107   1.1   gdamore #options 	MROUTING	# packet forwarding of multicast packets
    108   1.1   gdamore #options 	PIM		# Protocol Independent Multicast
    109   1.1   gdamore #options 	ISO,TPIP	# OSI networking
    110   1.1   gdamore #options 	EON		# OSI tunneling over IP
    111   1.1   gdamore #options 	NETATALK	# AppleTalk (over Ethernet) protocol
    112   1.1   gdamore #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    113   1.1   gdamore #options 	PPP_DEFLATE	# Deflate compression support for PPP
    114   1.1   gdamore #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    115   1.1   gdamore #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    116   1.1   gdamore options 	IPFILTER_LOG	# ipmon(8) log support
    117  1.14  christos options 	IPFILTER_LOOKUP	# ippool(8) support
    118   1.1   gdamore 
    119   1.1   gdamore # Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
    120   1.1   gdamore #options 	TCP_COMPAT_42
    121   1.1   gdamore 
    122   1.1   gdamore # These options enable verbose messages for several subsystems.
    123   1.1   gdamore # Warning, these may compile large string tables into the kernel!
    124   1.1   gdamore options 	MIIVERBOSE	# verbose PHY autoconfig messages
    125   1.1   gdamore options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    126   1.1   gdamore #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    127   1.1   gdamore options         SCSIVERBOSE     # human readable SCSI error messages
    128   1.1   gdamore options 	USBVERBOSE	# verbose USB device autoconfig messages
    129   1.1   gdamore 
    130   1.1   gdamore options 	NFS_BOOT_DHCP
    131   1.1   gdamore 
    132   1.1   gdamore # Pretty much only one device to use for the root file system.
    133   1.1   gdamore config		netbsd		root on ? type ?
    134   1.1   gdamore config		netbsd-aumac0	root on aumac0 type nfs
    135   1.1   gdamore 
    136   1.1   gdamore mainbus0 	at root
    137   1.1   gdamore 
    138   1.1   gdamore cpu0 		at mainbus?
    139   1.1   gdamore 
    140   1.1   gdamore aubus0	 	at mainbus?
    141   1.1   gdamore 
    142   1.1   gdamore # no RTC!  fake with one of the programmable clocks
    143   1.1   gdamore aurtc*		at aubus? addr ?
    144   1.1   gdamore 
    145   1.1   gdamore # UARTs
    146  1.12   gdamore com*		at aubus? addr ?
    147   1.1   gdamore 
    148   1.1   gdamore # Ethernet MACs
    149   1.1   gdamore aumac*		at aubus? addr ?
    150   1.1   gdamore options 	AUMAC_EVENT_COUNTERS
    151   1.1   gdamore 
    152   1.1   gdamore # MII/PHY support
    153   1.9    simonb acphy*		at mii? phy ?			# AMD/Altima AC101 PHYs
    154   1.1   gdamore amhphy*		at mii? phy ?			# AMD 79c901 Ethernet PHYs
    155   1.1   gdamore bmtphy*		at mii? phy ?			# Broadcom BCM5201/BCM5202 PHYs
    156   1.5   gdamore brgphy*		at mii? phy ?			# Broadcom BCM5400-family PHYs
    157   1.9    simonb lxtphy*		at mii? phy ?			# Level One LXT970 PHYs
    158   1.9    simonb nsphyter*	at mii? phy ?			# NS83843 PHYs
    159   1.9    simonb rgephy*		at mii? phy ?			# RealTek 8169S/8110S PHY
    160   1.9    simonb rlphy*		at mii? phy ?			# RealTek 8139/8201L PHYs
    161   1.1   gdamore sqphy*		at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    162   1.5   gdamore ukphy*		at mii? phy ?			# Catch-all PHYs
    163   1.1   gdamore 
    164   1.1   gdamore # USB
    165   1.1   gdamore ohci*		at aubus? addr ?		# USB Open Host Controller
    166   1.1   gdamore 
    167   1.1   gdamore # USB bus support
    168   1.1   gdamore usb*		at ohci?
    169   1.1   gdamore 
    170   1.1   gdamore # USB Hubs
    171   1.1   gdamore uhub*		at usb?
    172  1.16  drochner uhub*		at uhub? port ?
    173   1.1   gdamore 
    174   1.1   gdamore # USB HID device
    175   1.1   gdamore uhidev* at uhub? port ? configuration ? interface ?
    176   1.1   gdamore 
    177   1.1   gdamore # USB Mice
    178   1.1   gdamore ums*    at uhidev? reportid ?   
    179   1.1   gdamore wsmouse* at ums? mux 0
    180   1.1   gdamore 
    181   1.1   gdamore # USB Keyboards
    182   1.1   gdamore ukbd*   at uhidev? reportid ? 
    183   1.1   gdamore wskbd*  at ukbd? console ? mux 1
    184   1.1   gdamore 
    185  1.13     skrll # USB serial adapter
    186   1.1   gdamore ucycom*	at uhidev? reportid ?
    187   1.1   gdamore 
    188   1.1   gdamore # USB Generic HID devices
    189   1.1   gdamore uhid*   at uhidev? reportid ?
    190   1.1   gdamore 
    191   1.1   gdamore # USB Printer
    192   1.1   gdamore ulpt*   at uhub? port ? configuration ? interface ?
    193   1.1   gdamore 
    194   1.1   gdamore # USB Modem
    195   1.1   gdamore umodem* at uhub? port ? configuration ?
    196   1.1   gdamore ucom*   at umodem?
    197   1.1   gdamore 
    198   1.1   gdamore # USB Mass Storage
    199   1.1   gdamore umass*  at uhub? port ? configuration ? interface ?
    200   1.1   gdamore scsibus* at scsi?
    201   1.1   gdamore sd*	at scsibus? target ? lun ?
    202   1.1   gdamore 
    203   1.1   gdamore # USB audio
    204   1.1   gdamore #uaudio* at uhub? port ? configuration ?
    205   1.1   gdamore 
    206   1.1   gdamore # USB MIDI
    207   1.1   gdamore #umidi* at uhub? port ? configuration ?
    208   1.1   gdamore 
    209   1.1   gdamore # USB IrDA
    210   1.1   gdamore # USB-IrDA bridge spec
    211   1.1   gdamore #uirda* at uhub? port ? configuration ? interface ?
    212   1.1   gdamore #irframe* at uirda?
    213   1.1   gdamore 
    214   1.1   gdamore # Kyocera AIR-EDGE PHONE
    215   1.1   gdamore #ukyopon* at uhub? port ?
    216   1.1   gdamore #ucom*	at ukyopon? portno ?
    217   1.1   gdamore 
    218   1.1   gdamore # USB Generic driver
    219   1.1   gdamore ugen*		at uhub? port ?
    220   1.1   gdamore 
    221   1.1   gdamore # Audio support
    222   1.1   gdamore auaudio*	at aubus? addr ?		# STAC9745 audio codec
    223   1.1   gdamore audio*		at auaudio?
    224   1.1   gdamore 
    225   1.6   gdamore # GPIOs
    226   1.6   gdamore augpio*	at aubus? addr ?
    227   1.6   gdamore gpio*	at augpio?
    228   1.6   gdamore 
    229   1.1   gdamore # On-board devices
    230   1.1   gdamore obio*		at mainbus?
    231   1.1   gdamore 
    232   1.1   gdamore #flash*		at obio? addr ?
    233   1.1   gdamore #lcd*		at obio? addr ?
    234   1.1   gdamore 
    235   1.1   gdamore # Pseudo-devices
    236   1.1   gdamore 
    237   1.1   gdamore # Disk/mass storage pseudo-devices
    238   1.1   gdamore #pseudo-device	ccd		4		# concatenated disk devices
    239   1.1   gdamore #pseudo-device	raid		4		# RAIDframe disk driver
    240   1.1   gdamore #options 	RAID_AUTOCONFIG			# auto-configuration of RAID
    241   1.1   gdamore #pseudo-device	fss		4		# file system snapshot device
    242   1.1   gdamore #pseudo-device	md		1		# memory disk device (ramdisk)
    243   1.1   gdamore pseudo-device	vnd				# disk-like interface to files
    244   1.1   gdamore 
    245   1.1   gdamore # Network pseudo-devices
    246   1.1   gdamore pseudo-device	bpfilter			# Berkeley packet filter
    247   1.1   gdamore pseudo-device	ipfilter			# IP filter (firewall) and NAT
    248   1.1   gdamore pseudo-device	loop				# network loopback
    249   1.1   gdamore #pseudo-device	ppp				# Point-to-Point Protocol
    250   1.1   gdamore #pseudo-device	sl				# Serial Line IP
    251   1.1   gdamore #pseudo-device	strip				# Starmode Radio IP (Metricom)
    252   1.1   gdamore #pseudo-device	tun				# network tunneling over tty
    253   1.1   gdamore #pseudo-device	tap				# virtual Ethernet
    254   1.1   gdamore #pseudo-device	gre				# generic L3 over IP tunnel
    255   1.1   gdamore #pseudo-device	ipip		2		# RFC 2003 IP Encapsulation
    256  1.10    simonb #pseudo-device	gif				# RFC1933 tunnel
    257   1.1   gdamore #pseudo-device	faith				# IPv[46] tcp relay translation 
    258   1.1   gdamore #pseudo-device	stf				# 6to4 IPv6 over IPv4 encapsulation
    259   1.1   gdamore pseudo-device	vlan				# IEEE 802.1q encapsulation
    260   1.1   gdamore pseudo-device	bridge				# simple inter-network bridging
    261   1.1   gdamore 
    262   1.1   gdamore # Miscellaneous pseudo-devices
    263   1.1   gdamore pseudo-device	pty				# pseudo-terminals
    264   1.1   gdamore #pseudo-device	sequencer	1		# MIDI sequencer
    265   1.1   gdamore pseudo-device	rnd				# /dev/random & kernel generator
    266  1.10    simonb pseudo-device	clockctl			# user control of clock subsystem
    267  1.10    simonb pseudo-device	ksyms				# /dev/ksyms
    268   1.1   gdamore 
    269   1.1   gdamore # A pseudo device needed for Coda		# also needs CODA (above)
    270   1.1   gdamore #pseudo-device	vcoda		4		# coda minicache <-> venus comm.
    271