Home | History | Annotate | Line # | Download | only in conf
RB800 revision 1.7
      1  1.7    matt #	$NetBSD: RB800,v 1.7 2011/06/10 16:38:17 matt Exp $
      2  1.2    matt #
      3  1.2    matt #	RB800 -- everything that's currently supported
      4  1.2    matt #
      5  1.2    matt 
      6  1.2    matt include		"arch/evbppc/conf/std.mpc85xx"
      7  1.2    matt 
      8  1.2    matt options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9  1.2    matt 
     10  1.7    matt ident 		"RB800-$Revision: 1.7 $"
     11  1.2    matt 
     12  1.2    matt maxusers	32
     13  1.2    matt 
     14  1.2    matt #options 	UVMHIST
     15  1.2    matt #options 	UVMHIST_PRINT
     16  1.2    matt 
     17  1.2    matt options 	MPC8544
     18  1.2    matt options 	PPC_HAVE_SPE
     19  1.7    matt options 	GUR_BASE=0xe0000000
     20  1.2    matt 
     21  1.2    matt #options 	INSECURE	# disable kernel security levels
     22  1.2    matt #options 	NTP		# NTP phase/frequency locked loop
     23  1.2    matt options 	KTRACE		# system call tracing via ktrace(1)
     24  1.2    matt 
     25  1.2    matt options 	SYSVMSG		# System V message queues
     26  1.2    matt options 	SYSVSEM		# System V semaphores
     27  1.2    matt options 	SYSVSHM		# System V shared memory
     28  1.2    matt 
     29  1.2    matt options 	USERCONF	# userconf(4) support
     30  1.2    matt #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     31  1.2    matt #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     32  1.2    matt 
     33  1.2    matt # Diagnostic/debugging support options
     34  1.2    matt #options 	VERBOSE_INITPPC
     35  1.2    matt options 	DIAGNOSTIC	# cheap kernel consistency checks
     36  1.2    matt options 	DEBUG		# expensive debugging checks/support
     37  1.2    matt #options 	SYSCALL_DEBUG	# syscall debugging
     38  1.2    matt options 	DDB		# in-kernel debugger
     39  1.2    matt options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     40  1.2    matt options 	TRAP_PANICWAIT
     41  1.2    matt options 	SYMTAB_SPACE=410000	# size for embedded symbol table
     42  1.2    matt 
     43  1.2    matt makeoptions	DEBUG="-g"	# compile full symbol table
     44  1.2    matt 
     45  1.2    matt # Compatibility options
     46  1.2    matt #options 	COMPAT_09	# NetBSD 0.9,
     47  1.2    matt #options 	COMPAT_10	# NetBSD 1.0,
     48  1.2    matt #options 	COMPAT_11	# NetBSD 1.1,
     49  1.2    matt #options 	COMPAT_12	# NetBSD 1.2,
     50  1.2    matt options 	COMPAT_13	# NetBSD 1.3,
     51  1.2    matt options 	COMPAT_14	# NetBSD 1.4,
     52  1.2    matt options 	COMPAT_15	# NetBSD 1.5,
     53  1.2    matt options 	COMPAT_16	# NetBSD 1.6,
     54  1.2    matt options 	COMPAT_20	# NetBSD 2.0,
     55  1.2    matt options 	COMPAT_30	# NetBSD 3.0,
     56  1.2    matt options 	COMPAT_40	# NetBSD 4.0,
     57  1.2    matt options 	COMPAT_50	# NetBSD 5.0 compatibility.
     58  1.2    matt options 	COMPAT_43	# and 4.3BSD
     59  1.2    matt #options 	COMPAT_386BSD_MBRPART # recognize old partition ID
     60  1.2    matt #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     61  1.2    matt options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     62  1.2    matt 
     63  1.2    matt # File systems
     64  1.2    matt file-system 	FFS		# UFS
     65  1.2    matt file-system 	EXT2FS		# second extended file system (linux)
     66  1.2    matt file-system 	LFS		# log-structured file system
     67  1.2    matt file-system 	MFS		# memory file system
     68  1.2    matt file-system 	NFS		# Network File System client
     69  1.2    matt file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     70  1.2    matt file-system 	MSDOSFS		# MS-DOS file system
     71  1.2    matt #file-system 	FDESC		# /dev/fd
     72  1.2    matt file-system 	TMPFS		# efficient memory file system
     73  1.2    matt file-system 	KERNFS		# /kern
     74  1.2    matt file-system 	NULLFS		# loopback file system
     75  1.2    matt #file-system 	OVERLAY		# overlay file system
     76  1.2    matt #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     77  1.2    matt file-system 	PROCFS		# /proc
     78  1.2    matt #file-system 	UMAPFS		# NULLFS + uid and gid remapping
     79  1.2    matt #file-system 	UNION		# union file system
     80  1.2    matt file-system	PTYFS		# /dev/pts/N support
     81  1.2    matt 
     82  1.2    matt # File system options
     83  1.3  bouyer options 	QUOTA		# legacy UFS quotas
     84  1.3  bouyer options 	QUOTA2		# new, in-filesystem UFS quotas
     85  1.2    matt options 	FFS_EI		# FFS Endian Independant support
     86  1.2    matt options 	WAPBL		# File system journaling support - Experimental
     87  1.2    matt options 	NFSSERVER	# Network File System server
     88  1.2    matt #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     89  1.2    matt options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
     90  1.2    matt 				# immutable) behave as system flags.
     91  1.2    matt 
     92  1.6    matt options 	NFS_BOOT_BOOTP	# Support BOOTP NFS root
     93  1.6    matt #options 	NFS_BOOT_DHCP	# Support DHCP NFS root
     94  1.2    matt 
     95  1.2    matt # Networking options
     96  1.2    matt #options 	GATEWAY		# packet forwarding
     97  1.2    matt options 	INET		# IP + ICMP + TCP + UDP
     98  1.2    matt options 	INET_CSUM_COUNTERS
     99  1.2    matt options 	TCP_CSUM_COUNTERS
    100  1.2    matt options 	UDP_CSUM_COUNTERS
    101  1.2    matt #options 	INET6		# IPV6
    102  1.2    matt #options 	IPSEC		# IP security
    103  1.2    matt #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    104  1.2    matt #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
    105  1.2    matt #options 	IPSEC_DEBUG	# debug for IP security
    106  1.2    matt #options 	MROUTING	# IP multicast routing
    107  1.2    matt #options 	PIM		# Protocol Independent Multicast
    108  1.2    matt #options        DIRECTED_BROADCAST      # allow broadcasts through routers
    109  1.2    matt #options 	ISO,TPIP	# OSI
    110  1.2    matt #options 	EON		# OSI tunneling over IP
    111  1.2    matt #options 	NETATALK	# AppleTalk networking protocols
    112  1.2    matt #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    113  1.2    matt #options 	PPP_DEFLATE	# Deflate compression support for PPP
    114  1.2    matt #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    115  1.2    matt #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    116  1.2    matt #options 	IPFILTER_LOG	# ipmon(8) log support
    117  1.2    matt #options 	IPFILTER_LOOKUP	# ippool(8) support
    118  1.2    matt #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    119  1.2    matt 
    120  1.2    matt # These options enable verbose messages for several subsystems.
    121  1.2    matt # Warning, these may compile large string tables into the kernel!
    122  1.2    matt options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    123  1.2    matt options 	MIIVERBOSE	# verbose PHY autoconfig messages
    124  1.2    matt #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    125  1.2    matt options 	SCSIVERBOSE	# human readable SCSI error messages
    126  1.2    matt options 	PCI_NETBSD_CONFIGURE	# Do not rely on BIOS/whatever to configure PCI devices
    127  1.2    matt options 	PCI_CONFIGURE_VERBOSE	# Show PCI config information
    128  1.2    matt 
    129  1.2    matt # wscons options
    130  1.2    matt #options 	WSEMUL_SUN		# sun terminal emulation
    131  1.2    matt #options 	WSEMUL_VT100		# VT100 / VT220 emulation
    132  1.2    matt 
    133  1.2    matt # Kernel root file system and dump configuration.
    134  1.2    matt config		netbsd		root on ? type ?
    135  1.2    matt config		nfsnetbsd	root on tsec1 type nfs
    136  1.2    matt 
    137  1.2    matt #
    138  1.2    matt # Device configuration
    139  1.2    matt #
    140  1.2    matt 
    141  1.2    matt mainbus0 at root			# Processor Local Bus
    142  1.2    matt 
    143  1.2    matt cpunode*	at mainbus? node ?
    144  1.2    matt 
    145  1.2    matt cpu0		at cpunode?
    146  1.2    matt 
    147  1.2    matt obio0		at cpunode?		# On-chip Peripheral Bus
    148  1.2    matt #nflash0		at obio0 cs 0
    149  1.2    matt #ds1553rtc0	at obio0 addr 0xf8000000 size 8192
    150  1.2    matt #wdc0		at obio0 cs 2
    151  1.2    matt #atabus* 	at wdc?
    152  1.2    matt #wd*		at atabus?
    153  1.2    matt gpio*		at gpiobus?
    154  1.2    matt 
    155  1.2    matt e500wdog*	at cpunode?		# Watchdog timer
    156  1.2    matt 
    157  1.2    matt duart*		at cpunode?
    158  1.2    matt com*		at duart? port ?
    159  1.2    matt options		CONSPEED=115200
    160  1.2    matt options		CONSADDR="DUART1_BASE"
    161  1.2    matt 
    162  1.2    matt tsec0		at cpunode? flags 0x003	# 3-Speed Ethernet Controller (phy 2)
    163  1.2    matt tsec1		at cpunode? flags 0x102	# 3-Speed Ethernet Controller (phy 1)
    164  1.2    matt atphy*		at mii?			# Attansic PHY
    165  1.2    matt ukphy*		at mii?
    166  1.2    matt #options 	TSEC_EVENT_COUNTERS
    167  1.2    matt 
    168  1.2    matt diic*		at cpunode?		# i2c bus
    169  1.2    matt iic*		at diic?
    170  1.2    matt #lm* 		at iic? addr 0x48
    171  1.2    matt #lm* 		at iic? addr 0x49
    172  1.2    matt #lm* 		at iic? addr 0x4a
    173  1.2    matt #lm* 		at iic? addr 0x4b
    174  1.2    matt #lm* 		at iic? addr 0x4c
    175  1.2    matt #lm* 		at iic? addr 0x4d
    176  1.2    matt #lm* 		at iic? addr 0x4e
    177  1.2    matt #lm*	 	at iic? addr 0x4f
    178  1.2    matt 
    179  1.2    matt options 	PCI_MEMBASE=0xa0000000,PCI_MEMSIZE=0x04000000
    180  1.2    matt options 	PCI_IOBASE=0xb0000000,PCI_IOSIZE=0x00100000
    181  1.2    matt pq3pcie*	at cpunode?		# PCI-Express controller
    182  1.2    matt pq3pci*		at cpunode?		# PCI(X)
    183  1.2    matt pci*		at pq3pcie?
    184  1.2    matt pci*		at pq3pci?
    185  1.2    matt 
    186  1.2    matt ppb*		at pci? dev ? function ?	# PCI-PCI bridges
    187  1.2    matt pci*		at ppb?
    188  1.2    matt 
    189  1.4    matt alc*		at pci? dev ? function ?
    190  1.4    matt 
    191  1.2    matt #ehci*		at pci? dev ? function ?
    192  1.2    matt #ohci*		at pci? dev ? function ?
    193  1.2    matt #uhci*		at pci? dev ? function ?
    194  1.2    matt #usb*		at ehci?
    195  1.2    matt #usb*		at ohci?
    196  1.2    matt #usb*		at uhci?
    197  1.2    matt #uhub*		at usb?
    198  1.2    matt #umass*		at uhub? port ?
    199  1.2    matt #scsibus*	at umass? channel ?
    200  1.2    matt 
    201  1.2    matt arcmsr* 	at pci? dev ? function ?
    202  1.2    matt scsibus* 	at arcmsr?
    203  1.2    matt sd*		at scsibus? target ? lun ?
    204  1.2    matt 
    205  1.2    matt viaide* 	at pci? dev ? function ?
    206  1.2    matt atabus* 	at viaide? channel ?
    207  1.2    matt wd*		at atabus? drive ?
    208  1.2    matt #rtk*		at pci? dev ? function ?
    209  1.2    matt wm*		at pci? dev ? function ?	# Intel Ethernet
    210  1.2    matt 
    211  1.2    matt makphy* 	at mii? phy ?			# Marvell PHYs
    212  1.2    matt ukphy*		at mii? phy ?			# generic unknown PHYs
    213  1.2    matt 
    214  1.2    matt pseudo-device	md		1	# memory disk device
    215  1.2    matt pseudo-device	loop			# network loopback
    216  1.2    matt pseudo-device	bpfilter		# packet filter
    217  1.2    matt pseudo-device	rnd			# /dev/random and in-kernel generator
    218  1.2    matt pseudo-device	clockctl		# user control of clock subsystem
    219  1.2    matt pseudo-device	ksyms			# /dev/ksyms
    220  1.2    matt pseudo-device	pty			# pseudo-terminals
    221  1.2    matt pseudo-device	kttcp			# kernel ttcp
    222