Home | History | Annotate | Line # | Download | only in conf
LUBBOCK revision 1.50
      1 #
      2 #	LUBBOCK -- Intel LUBBOCK Evaluation Board Kernel
      3 #
      4 
      5 include	"arch/evbarm/conf/std.lubbock"
      6 
      7 # estimated number of users
      8 
      9 maxusers	32
     10 
     11 #options INTR_DEBUG
     12 
     13 # Standard system options
     14 
     15 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     16 #options 	NTP		# NTP phase/frequency locked loop
     17 
     18 # CPU options
     19 
     20 options 	CPU_XSCALE_PXA250	# Support the XScale core
     21 #options 	XSCALE_CACHE_WRITE_THROUGH
     22 #options 	XSCALE_CACHE_WRITE_BACK
     23 makeoptions	CPUFLAGS="-mcpu=xscale"
     24 
     25 # Architecture options
     26 
     27 # File systems
     28 
     29 file-system	FFS		# UFS
     30 #file-system	LFS		# log-structured file system
     31 file-system	MFS		# memory file system
     32 file-system	NFS		# Network file system
     33 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     34 #file-system 	EXT2FS		# second extended file system (linux)
     35 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     36 file-system	MSDOSFS		# MS-DOS file system
     37 #file-system	FDESC		# /dev/fd
     38 #file-system	KERNFS		# /kern
     39 #file-system	NULLFS		# loopback file system
     40 #file-system	PROCFS		# /proc
     41 #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     42 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     43 #file-system	UNION		# union file system
     44 file-system	PTYFS		# /dev/pts/N support
     45 
     46 # File system options
     47 #options 	QUOTA		# legacy UFS quotas
     48 #options 	QUOTA2		# new, in-filesystem UFS quotas
     49 #options 	FFS_EI		# FFS Endian Independent support
     50 #options 	NFSSERVER
     51 options 	WAPBL		# File system journaling support
     52 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     53 
     54 # Networking options
     55 
     56 #options 	GATEWAY		# packet forwarding
     57 options 	INET		# IP + ICMP + TCP + UDP
     58 options 	INET6		# IPV6
     59 #options 	IPSEC		# IP security
     60 #options 	IPSEC_DEBUG	# debug for IP security
     61 #options 	MROUTING	# IP multicast routing
     62 #options 	PIM		# Protocol Independent Multicast
     63 #options 	NETATALK	# AppleTalk networking
     64 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     65 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     66 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     67 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     68 
     69 options 	NFS_BOOT_BOOTP
     70 options 	NFS_BOOT_DHCP
     71 options 	NFS_BOOT_BOOTPARAM
     72 
     73 # Compatibility options
     74 
     75 options		COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
     76 #options 	COMPAT_43	# 4.3BSD compatibility.
     77 options 	COMPAT_60	# NetBSD 6.0 compatibility.
     78 options 	COMPAT_50	# NetBSD 5.0 compatibility.
     79 options 	COMPAT_40	# NetBSD 4.0 compatibility.
     80 options 	COMPAT_30	# NetBSD 3.0 compatibility.
     81 options 	COMPAT_20	# NetBSD 2.0 compatibility.
     82 options 	COMPAT_16	# NetBSD 1.6 compatibility.
     83 #options 	COMPAT_15	# NetBSD 1.5 compatibility.
     84 #options 	COMPAT_14	# NetBSD 1.4 compatibility.
     85 #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     86 #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     87 #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     88 #options 	COMPAT_10	# NetBSD 1.0 compatibility.
     89 #options 	COMPAT_09	# NetBSD 0.9 compatibility.
     90 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     91 options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     92 
     93 # Shared memory options
     94 
     95 #options 	SYSVMSG		# System V-like message queues
     96 #options 	SYSVSEM		# System V-like semaphores
     97 #options 	SYSVSHM		# System V-like memory sharing
     98 
     99 # Device options
    100 
    101 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    102 #options 	MEMORY_DISK_ROOT_SIZE=16384	# Size in blocks
    103 #options 	MEMORY_DISK_DYNAMIC
    104 #options 	MINIROOTSIZE=1000	# Size in blocks
    105 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    106 
    107 # Miscellaneous kernel options
    108 options 	KTRACE		# system call tracing, a la ktrace(1)
    109 #options 	KMEMSTATS	# kernel memory statistics
    110 options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
    111 #options 	SCSIVERBOSE	# Verbose SCSI errors
    112 #options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    113 #options 	DDB_KEYCODE=0x40
    114 #options 	USERCONF	# userconf(4) support
    115 
    116 # Development and Debugging options
    117 
    118 options 	DIAGNOSTIC	# internal consistency checks
    119 #options 	DEBUG
    120 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    121 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    122 #options 	DDB		# in-kernel debugger
    123 #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    124 #options 	KGDB
    125 #options  	DEBUG_KGDB
    126 #makeoptions	DEBUG="-g"	# compile full symbol table
    127 #options 	SYMTAB_SPACE=200000
    128 
    129 config		netbsd		root on ? type ?
    130 config		netbsd-sm0	root on sm0 type nfs
    131 
    132 # The main bus device
    133 mainbus0	at root
    134 
    135 # The boot cpu
    136 cpu0		at mainbus?
    137 
    138 # integrated peripherals
    139 pxaip0	at mainbus?
    140 
    141 pxaintc0 at pxaip?	# interrupt controller
    142 pxagpio0 at pxaip?	# GPIO
    143 
    144 # cotulla integrated 16550 UARTs
    145 options COM_PXA2X0
    146 com0	at pxaip?  addr 0x40100000 intr 22      # Full Function UART
    147 com1	at pxaip?  addr 0x40200000 intr 21 	# BlueTootth UART
    148 #com2	at pxaip?  addr 0x40700000 intr 20	# Standard UART (for IrDA)
    149 options FFUARTCONSOLE
    150 options BTUARTCONSOLE
    151 options KGDB_DEVNAME="\"btuart\""   # ffuart or btuart
    152 options KGDB_DEVRATE=115200
    153 
    154 # DMAC support
    155 pxadmac0 	at pxaip? addr 0x40000000 intr 25
    156 options 	PXA2X0_DMAC_DMOVER_CONCURRENCY=4 # Enable dmover(9) backend
    157 #options 	PXA2X0_DMAC_FIXED_PRIORITY	 # Don't want multiple priority
    158 
    159 # AC97 Audio support
    160 pxaacu0 	at pxaip? addr 0x40500000 intr 14
    161 audio*		at audiobus?
    162 
    163 # On-board device support
    164 obio0		at pxaip? intr 8
    165 sm0		at obio? addr 0x0c000000 intr 3 	# on-board SMC 91C96
    166 #options LUBBOCK_SMC91C96_16BIT
    167 
    168 # LCD
    169 lcd0		at obio?
    170 wsdisplay*	at lcd? console ?
    171 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    172 options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    173 
    174 # SA1111 companion chip
    175 sacc0	at obio? addr 0x10000000 intr 1
    176 
    177 sacpcic* at sacc?
    178 pcmcia*	at sacpcic?
    179 
    180 sackbc0 at sacc0 addr 0x0a00 intr 21
    181 sackbc1 at sacc0 addr 0x0c00 intr 18
    182 
    183 # PS/2 controller of SA-1111 doesn't have "slot"; One device is attached
    184 # to one controller.  However, pckbd driver requires "slot 0" and pms driver
    185 # requires "slot 1"
    186 pckbd*	at sackbc0 slot 0
    187 wskbd* 		at pckbd? # console ?
    188 pms*	at sackbc1 slot 1
    189 wsmouse*	at pms? mux 0
    190 
    191 # PCMCIA serial interfaces
    192 com*	at pcmcia? function ?		# Modems and serial cards
    193 
    194 pcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
    195 com*	at pcmcom? slave ?		# ...and the slave devices
    196 
    197 # PCMCIA SCSI controllers
    198 aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    199 esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
    200 
    201 # SCSI bus support
    202 scsibus* at scsi?
    203 
    204 # SCSI devices
    205 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    206 st*	at scsibus? target ? lun ?	# SCSI tape drives
    207 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    208 ch*	at scsibus? target ? lun ?	# SCSI autochangers
    209 ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    210 ss*	at scsibus? target ? lun ?	# SCSI scanners
    211 uk*	at scsibus? target ? lun ?	# SCSI unknown
    212 
    213 # PCMCIA IDE controllers and disks
    214 wdc*	at pcmcia? function ?
    215 atabus* 	at wdc? channel ?
    216 wd*		at atabus? drive ? flags 0x0000
    217 
    218 #
    219 # Networking devices
    220 #
    221 an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    222 awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
    223 cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    224 ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    225 mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    226 ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    227 ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
    228 sm*	at pcmcia? function ?		# Megahertz Ethernet
    229 tr*	at pcmcia? function ?		# TROPIC based Token-Ring
    230 wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
    231 xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    232 com*	at xirc?
    233 xi*	at xirc?
    234 
    235 mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    236 com*	at mhzc?
    237 sm*	at mhzc?
    238 
    239 # Pseudo-Devices
    240 
    241 # disk/mass storage pseudo-devices
    242 pseudo-device	md			# memory disk device (ramdisk)
    243 #pseudo-device	vnd			# disk-like interface to files
    244 #pseudo-device	fss			# file system snapshot device
    245 #pseudo-device	putter			# for puffs and pud
    246 
    247 # network pseudo-devices
    248 pseudo-device	bpfilter		# Berkeley packet filter
    249 pseudo-device	loop			# network loopback
    250 
    251 # miscellaneous pseudo-devices
    252 pseudo-device	pty			# pseudo-terminals
    253 
    254 pseudo-device	wsmux			# mouse & keyboard multiplexor
    255