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