P5064 revision 1.48
1#	$NetBSD: P5064,v 1.48 2006/08/14 06:22:33 skrll Exp $
2#
3# Algorithmics P-5064 kernel.
4#
5
6include	"arch/algor/conf/std.algor"
7
8#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9
10#ident 		"P5064-$Revision: 1.48 $"
11
12maxusers 32
13
14# Platform Support
15#options 	ALGOR_P4032	# Algorithmics P-4032
16options 	ALGOR_P5064	# Algorithmics P-5064
17#options 	ALGOR_P6032	# Algorithmics P-6032
18
19# Standard system options
20options 	KTRACE			# System call tracing support
21options 	NTP			# kernel PLL for NTP
22
23# Diagnostic/debugging support options
24options 	DIAGNOSTIC		# Cheap kernel consistency checks
25options 	DDB			# kernel debugger
26makeoptions	DEBUG="-g"
27#makeoptions	DEBUGLIST="pattern1 pattern2 ..."
28
29# File systems
30file-system	FFS		# Fast file system
31file-system	MFS		# Memory-based file system
32file-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
33file-system	MSDOSFS		# MS-DOS-compatible file system
34file-system	NTFS		# Windows/NT file system (experimental)
35file-system	NFS		# Sun NFS-compatible file system client
36file-system	KERNFS		# Kernel variable file system (/kern)
37file-system	PROCFS		# Process file system (/proc)
38file-system	FDESC		# /dev/fd file system
39file-system	PTYFS		# /dev/pts/N support
40
41# File system options
42options 	NFSSERVER	# Sun NFS-compatible file system server
43#options 	FFS_EI		# FFS Endian Independant support
44options 	SOFTDEP		# FFS soft updates support.
45options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
46
47# Networking options
48options 	INET		# Internet protocol suite
49options 	INET6		# IPV6
50options 	IPSEC		# IP security
51options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
52options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
53#options 	IPSEC_DEBUG	# debug for IP security
54
55# 4.3BSD compatibility.  Should be optional, but necessary for now.
56options 	COMPAT_43
57
58# Binary compatibility with previous versions of NetBSD.
59#options 	COMPAT_09
60options 	COMPAT_10
61options 	COMPAT_11
62options 	COMPAT_12
63options 	COMPAT_13
64options 	COMPAT_14
65options 	COMPAT_16
66options 	COMPAT_20
67options 	COMPAT_30	# NetBSD 3.0 compatibility.
68options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
69
70# System V-like message queues
71options 	SYSVMSG
72
73# System V-like semaphores
74options 	SYSVSEM
75
76# System V-like shared memory
77options 	SYSVSHM
78#options 	SHMMAXPGS=1024		# 1024 pages is the default
79
80# Loadable Kernel Modules
81options 	LKM
82
83# Disable kernel security.
84#options 	INSECURE
85
86# Misc. options
87options 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
88options 	PCIVERBOSE		# recognize "unknown" PCI devices
89options 	MIIVERBOSE		# verbose PHY autoconfig messages
90#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
91options 	SCSIVERBOSE		# Verbose SCSI errors
92#options 	PCMCIAVERBOSE
93#options	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
94#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
95
96# Bitmask for enabling the PCI IDE channels in the southbridge.
97# Set bit 0 (0x01) for channel 0, bit 1 (0x02) for channel 1.
98#
99# Do this if your firmware (usually PMON) doens't enable the IDE
100# channels for you (thus causing the NetBSD `pciide' driver to
101# ignore them).
102options 	PCI_NETBSD_ENABLE_IDE=0x1
103
104# The Alpha console firmware network boots using the BOOTP
105# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
106# in case we have NFS root.
107options 	NFS_BOOT_DHCP		# superset of BOOTP
108
109# WS console uses SUN or VT100 terminal emulation
110#options 	WSEMUL_VT100
111
112config		netbsd	root on ? type ?
113#config		netbsd	root on sd0 type ffs
114#config		netbsd	root on ? type nfs
115
116mainbus0 at	root
117cpu*	at	mainbus0
118
119# PCI host bus adapter support
120vtpbc*	at	mainbus?
121
122# PCI bus support
123pci*	at	vtpbc?
124
125# PCI devices
126#adv*	at	pci? dev ? function ?		# AdvanSys SCSI
127#adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
128#options 	SCSI_ADW_WDTR_DISABLE		# 	disable WDTR
129#options 	SCSI_ADW_SDTR_DISABLE		# 	disable SDTR
130#options 	SCSI_ADW_TAGQ_DISABLE		# 	disable Tag Queuing
131#ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
132#bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
133#cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
134#cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
135#cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
136#dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
137#eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
138#en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
139#ep*	at	pci? dev ? function ?		# 3COM 3c59x
140#epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
141#eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
142#ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
143#fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
144#fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
145#gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
146#isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
147#le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
148pcib*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
149siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
150#mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
151#ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
152#ohci*	at	pci? dev ? function ?		# USB Open Host Controller
153pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
154acardide* at pci? dev ? function ?		# Acard IDE controllers
155aceride* at pci? dev ? function ?		# Acer Lab IDE controllers
156artsata* at pci? dev ? function ?		# Intel i31244 SATA controller
157cmdide* at pci? dev ? function ?		# CMD tech IDE controllers
158cypide* at pci? dev ? function ?		# Cypress IDE controllers
159hptide* at pci? dev ? function ?		# Triones/HighPoint IDE controllers
160optiide* at pci? dev ? function ?		# Opti IDE controllers
161pdcide* at pci? dev ? function ?		# Promise IDE controllers
162pdcsata* at pci? dev ? function ?		# Promise SATA150 controllers
163satalink* at pci? dev ? function ?		# SiI SATALink controllers
164siside* at pci? dev ? function ?		# SiS IDE controllers
165slide* at pci? dev ? function ?		# Symphony Labs IDE controllers
166viaide* at pci? dev ? function ?		# VIA/AMD/Nvidia IDE controllers
167#pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
168ppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
169#rtk*	at	pci? dev ? function ?		# Realtek 8129/8139 Ethernet
170#sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
171#sv*	at	pci? dev ? function ?		# S3 SonicVibes
172#tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
173#ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
174#tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
175tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
176#uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
177#vga*	at	pci? dev ? function ?		# PCI VGA Graphics
178#vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
179#yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
180
181#audio*	at	eap?
182#audio*	at	eso?
183#audio*	at	sv?
184#audio*	at	yds?
185
186#opl*	at	eso?
187#opl*	at	sv?
188#opl*	at	yds?
189
190#mpu*	at	eso?
191#mpu*	at	yds?
192
193# MII/PHY support
194#exphy*	at mii? phy ?			# 3Com internal PHYs
195#icsphy*	at mii? phy ?		# Integrated Circuit Systems ICS189x
196#inphy*	at mii? phy ?			# Intel 82555 PHYs
197#lxtphy*	at mii? phy ?		# Level One LXT-970 PHYs
198#nsphy*	at mii? phy ?			# NS83840 PHYs
199qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
200#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
201#tlphy*	at mii? phy ?			# ThunderLAN PHYs
202ukphy*	at mii? phy ?			# generic unknown PHYs
203
204# ISA/EISA bus support
205isa*	at	pcib?
206#isapnp*	at	isa?
207
208# ISA devices
209mcclock* at	isa? port 0x70
210#pckbc*	at	isa?				# PC keyboard controller
211#pckbd*	at	pckbc?				# PC keyboard (kbd port)
212#pms*	at	pckbc?				# PS/2-style mouse (aux port)
213#attimer*	at	isa?			# AT Timer
214#pcppi*	at	isa?				# PC prog. periph. interface
215#spkr0	at	pcppi?				# IBM BASIC emulation
216#isabeep0 at	pcppi?				# "keyboard" beep
217#midi*	at	pcppi?
218com*	at	isa? port 0x3f8 irq 4		# standard serial ports
219com*	at	isa? port 0x2f8 irq 3
220#cs*	at	isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
221#ec0	at	isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
222#ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
223#ep*	at	isapnp?
224#ix0	at	isa? port 0x300 irq 10		# EtherExpress/16
225#iy0	at	isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
226fdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
227#lc0	at	isa? port 0x300 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
228#lc1	at	isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
229#depca0	at	isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 	# DEPCA
230#depca1	at	isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 	# DEPCA
231#le*	at	depca?
232#lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
233#vga*	at	isa?				# ISA (EISA: XXX) VGA
234#wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
235#wdc1	at	isa? port 0x170 irq 15
236#wdc*	at	isapnp?
237#we0	at 	isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
238#we1	at 	isa? port 0x300 iomem 0xcc000 irq 10
239#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
240#wss*	at	isapnp?
241#audio*	at	wss?
242#midi*	at	wss?
243#sb*	at	isa? port 0x220 irq 5 drq 1	# SoundBlaster
244#sb*	at	isapnp?
245#audio*	at	sb?
246#adv*	at	isa? port ? irq ? drq ?		# AdvanSys APB-514[02]
247#aha*	at	isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
248#aha*	at	isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI
249#bha*	at	isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
250#bha*	at	isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
251#uha*	at	isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
252#uha*	at	isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
253pcic0	at	isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
254pcic1	at	isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
255pcmcia*	at	pcic? controller ? socket ?
256
257# PCMCIA device
258aic*	at	pcmcia? function ?		# Adaptec APA-1460 SCSI
259com*	at	pcmcia? function ?		# Modems and serial cards
260wdc*	at	pcmcia? function ?		# PCMCIA IDE controllers
261ep*	at	pcmcia? function ?		# 3Com 3c589 and 3c562 Eth.
262mbe*	at	pcmcia? function ?		# MB8696x based Ethernet
263ne*	at	pcmcia? function ?		# NE2000-compatible Eth.
264sm*	at	pcmcia? function ?		# Megahertz Ethernet
265ray*	at	pcmcia? function ?		# Raytheon Raylink (802.11)
266wi*	at	pcmcia? function ?		# Lucent WaveLAN/IEEE
267
268# SCSI bus support
269#scsibus* at	adv?
270#scsibus* at	adw?
271#scsibus* at	aha?
272#scsibus* at	ahb?
273#scsibus* at	ahc?
274scsibus* at	aic?
275#scsibus* at	bha?
276#scsibus* at	dpt?
277#scsibus* at	isp?
278scsibus* at	siop?
279#scsibus* at	pcscp?
280#scsibus* at	uha?
281
282# SCSI devices
283cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
284sd*	at	scsibus? target ? lun ?		# SCSI disk drives
285#st*	at	scsibus? target ? lun ?		# SCSI tape drives
286
287# ATA (IDE) bus support
288atabus* at ata?
289
290# IDE drives
291wd*	at	atabus? drive ?
292
293# ATAPI bus support
294atapibus* at	atapi?
295
296# ATAPI devices
297sd*	at	atapibus? drive ?		# ATAPI disk devices
298cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
299
300# Floppy drives
301fd*	at	fdc? drive ?
302
303# Hardware RAID devices
304#ld*	at	cac? unit ?
305#ld*	at	mlx? unit ?
306
307# USB bus support
308#usb*	at uhci?
309#usb*	at ohci?
310
311# USB Hubs
312#uhub*	at usb?
313#uhub*	at uhub? port ? configuration ? interface ?
314
315# USB HID device
316#uhidev*	at uhub? port ? configuration ? interface ?
317
318# USB Mice
319#ums*	at uhidev? reportid ?
320#wsmouse*	at ums?
321
322# USB Keyboards
323#ukbd*	at uhidev? reportid ?
324#wskbd*	at ukbd? console ?
325
326# USB serial adapter
327#ucycom*	at uhidev? reportid ?
328
329# USB Generic HID devices
330#uhid*	at uhidev? reportid ?
331
332# USB Printer
333#ulpt*	at uhub? port ? configuration ? interface ?
334
335# USB Modem
336#umodem*	at uhub? port ? configuration ?
337#ucom*	at umodem?
338
339# USB Mass Storage
340#umass*	at uhub? port ? configuration ? interface ?
341#atapibus* at umass?
342#scsibus* at umass? channel ?
343
344# USB Ethernet adapters
345#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
346#axe*	at uhub? port ?		# ASIX AX88172 based adapters
347#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
348#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
349#url*	at uhub? port ?		# Realtek RTL8150L based adapters
350
351# Serial adapters
352# FTDI FT8U100AX serial adapter
353#uftdi*	at uhub? port ?
354#ucom*	at uftdi? portno ?
355
356# Kyocera AIR-EDGE PHONE
357#ukyopon* at uhub? port ?
358#ucom*	at ukyopon? portno ?
359
360# USB scanners
361#uscanner* at uhub? port ?
362
363# Y@P firmware loader
364#uyap* at uhub? port ?
365
366# USB Generic driver
367#ugen*	at uhub? port ?
368
369# Workstation Console attachments
370#wsdisplay*	at	vga?
371#wskbd*		at	pckbd?
372#wsmouse*	at	pms?
373
374pseudo-device	bpfilter
375pseudo-device	ccd		4
376#pseudo-device	cgd		4	# cryptographic disk devices
377#pseudo-device	raid		4		# RAIDframe disk driver
378#options 	RAID_AUTOCONFIG	# auto-configuration of RAID components
379#pseudo-device	fss		4	# file system snapshot device
380pseudo-device	ipfilter	1
381pseudo-device	loop		1
382pseudo-device	md		1
383pseudo-device	ppp		
384pseudo-device	pty			# pseudo-terminals
385pseudo-device	sl		
386pseudo-device	vnd		
387#pseudo-device	gre			# generic L3 over IP tunnel
388pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
389#pseudo-device	faith			# IPv[46] tcp relay translation i/f
390pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
391pseudo-device	vlan			# IEEE 802.1q encapsulation
392pseudo-device	sequencer	1	# MIDI sequencer
393pseudo-device	rnd			# /dev/random and in-kernel generator
394#options 	RND_COM			# use "com" randomness too
395pseudo-device	clockctl		# user control of clock subsystem
396