Home | History | Annotate | Line # | Download | only in conf
LUBBOCK revision 1.62
      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 	DISKLABEL_EI	# disklabel Endian Independent support
     50 #options 	FFS_EI		# FFS Endian Independent support
     51 #options 	NFSSERVER
     52 options 	WAPBL		# File system journaling support
     53 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     54 
     55 # Networking options
     56 
     57 #options 	GATEWAY		# packet forwarding
     58 options 	INET		# IP + ICMP + TCP + UDP
     59 options 	INET6		# IPV6
     60 #options 	IPSEC		# IP security
     61 #options 	IPSEC_DEBUG	# debug for IP security
     62 #options 	MROUTING	# IP multicast routing
     63 #options 	PIM		# Protocol Independent Multicast
     64 #options 	NETATALK	# AppleTalk networking
     65 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     66 #options 	PPP_DEFLATE	# Deflate compression support for PPP
     67 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     68 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     69 
     70 options 	NFS_BOOT_BOOTP
     71 options 	NFS_BOOT_DHCP
     72 options 	NFS_BOOT_BOOTPARAM
     73 
     74 # Compatibility options
     75 
     76 include 	"conf/compat_netbsd16.config"
     77 options 	COMPAT_NETBSD32	# allow running arm (e.g. non-earm) binaries
     78 
     79 # Shared memory options
     80 
     81 #options 	SYSVMSG		# System V-like message queues
     82 #options 	SYSVSEM		# System V-like semaphores
     83 #options 	SYSVSHM		# System V-like memory sharing
     84 
     85 # Device options
     86 
     87 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
     88 #options 	MEMORY_DISK_ROOT_SIZE=16384	# Size in blocks
     89 #options 	MEMORY_DISK_DYNAMIC
     90 #options 	MINIROOTSIZE=1000	# Size in blocks
     91 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
     92 
     93 # Miscellaneous kernel options
     94 options 	KTRACE		# system call tracing, a la ktrace(1)
     95 options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
     96 #options 	SCSIVERBOSE	# Verbose SCSI errors
     97 #options 	MIIVERBOSE	# Verbose MII autoconfuration messages
     98 #options 	DDB_KEYCODE=0x40
     99 #options 	USERCONF	# userconf(4) support
    100 
    101 # Development and Debugging options
    102 
    103 options 	DIAGNOSTIC	# internal consistency checks
    104 #options 	DEBUG
    105 #options 	UVMHIST		# kernhist for uvm/pmap subsystems
    106 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    107 #options 	DDB		# in-kernel debugger
    108 #options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    109 #options 	KGDB
    110 #options  	DEBUG_KGDB
    111 #makeoptions	DEBUG="-g"	# compile full symbol table
    112 #makeoptions	COPY_SYMTAB=1
    113 
    114 config		netbsd		root on ? type ?
    115 config		netbsd-sm0	root on sm0 type nfs
    116 
    117 # The main bus device
    118 mainbus0	at root
    119 
    120 # The boot cpu
    121 cpu0		at mainbus?
    122 
    123 # integrated peripherals
    124 pxaip0	at mainbus?
    125 
    126 pxaintc0 at pxaip?	# interrupt controller
    127 pxagpio0 at pxaip?	# GPIO
    128 
    129 # cotulla integrated 16550 UARTs
    130 options COM_PXA2X0
    131 com0	at pxaip?  addr 0x40100000 intr 22      # Full Function UART
    132 com1	at pxaip?  addr 0x40200000 intr 21 	# BlueTootth UART
    133 #com2	at pxaip?  addr 0x40700000 intr 20	# Standard UART (for IrDA)
    134 options FFUARTCONSOLE
    135 options BTUARTCONSOLE
    136 options KGDB_DEVNAME="\"btuart\""   # ffuart or btuart
    137 options KGDB_DEVRATE=115200
    138 
    139 # DMAC support
    140 pxadmac0 	at pxaip? addr 0x40000000 intr 25
    141 options 	PXA2X0_DMAC_DMOVER_CONCURRENCY=4 # Enable dmover(9) backend
    142 #options 	PXA2X0_DMAC_FIXED_PRIORITY	 # Don't want multiple priority
    143 
    144 # AC97 Audio support
    145 pxaacu0 	at pxaip? addr 0x40500000 intr 14
    146 audio*		at audiobus?
    147 
    148 spkr*		at audio?			# PC speaker (synthesized)
    149 
    150 # On-board device support
    151 obio0		at pxaip? intr 8
    152 sm0		at obio? addr 0x0c000000 intr 3 	# on-board SMC 91C96
    153 #options LUBBOCK_SMC91C96_16BIT
    154 
    155 # LCD
    156 lcd0		at obio?
    157 wsdisplay*	at lcd? console ?
    158 options 	WSEMUL_VT100		# VT100 / VT220 emulation
    159 options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    160 
    161 # SA1111 companion chip
    162 sacc0	at obio? addr 0x10000000 intr 1
    163 
    164 sacpcic* at sacc?
    165 pcmcia*	at sacpcic?
    166 
    167 sackbc0 at sacc0 addr 0x0a00 intr 21
    168 sackbc1 at sacc0 addr 0x0c00 intr 18
    169 
    170 # PS/2 controller of SA-1111 doesn't have "slot"; One device is attached
    171 # to one controller.  However, pckbd driver requires "slot 0" and pms driver
    172 # requires "slot 1"
    173 pckbd*	at sackbc0 slot 0
    174 wskbd* 		at pckbd? # console ?
    175 pms*	at sackbc1 slot 1
    176 wsmouse*	at pms? mux 0
    177 
    178 # PCMCIA serial interfaces
    179 com*	at pcmcia? function ?		# Modems and serial cards
    180 
    181 pcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
    182 com*	at pcmcom? slave ?		# ...and the slave devices
    183 
    184 # PCMCIA SCSI controllers
    185 aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    186 esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
    187 
    188 # SCSI bus support
    189 scsibus* at scsi?
    190 
    191 # SCSI devices
    192 sd*	at scsibus? target ? lun ?	# SCSI disk drives
    193 st*	at scsibus? target ? lun ?	# SCSI tape drives
    194 cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    195 ch*	at scsibus? target ? lun ?	# SCSI autochangers
    196 ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    197 ss*	at scsibus? target ? lun ?	# SCSI scanners
    198 uk*	at scsibus? target ? lun ?	# SCSI unknown
    199 
    200 # PCMCIA IDE controllers and disks
    201 wdc*	at pcmcia? function ?
    202 atabus* 	at wdc? channel ?
    203 wd*		at atabus? drive ? flags 0x0000
    204 
    205 #
    206 # Networking devices
    207 #
    208 an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    209 awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
    210 cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    211 ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    212 mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    213 ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    214 ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
    215 sm*	at pcmcia? function ?		# Megahertz Ethernet
    216 wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
    217 xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    218 com*	at xirc?
    219 xi*	at xirc?
    220 
    221 mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    222 com*	at mhzc?
    223 sm*	at mhzc?
    224 
    225 # Pseudo-Devices
    226 
    227 # disk/mass storage pseudo-devices
    228 pseudo-device	md			# memory disk device (ramdisk)
    229 #pseudo-device	vnd			# disk-like interface to files
    230 #pseudo-device	fss			# file system snapshot device
    231 #pseudo-device	putter			# for puffs and pud
    232 
    233 # network pseudo-devices
    234 pseudo-device	bpfilter		# Berkeley packet filter
    235 pseudo-device	loop			# network loopback
    236 
    237 # miscellaneous pseudo-devices
    238 pseudo-device	pty			# pseudo-terminals
    239 
    240 pseudo-device	wsmux			# mouse & keyboard multiplexor
    241