P6032 revision 1.2
11.2Slukem#	$NetBSD: P6032,v 1.2 2001/11/20 12:56:18 lukem Exp $
21.1Sthorpej#
31.1Sthorpej# Algorithmics P-6032 kernel.
41.1Sthorpej#
51.1Sthorpej
61.1Sthorpejinclude	"arch/algor/conf/std.algor"
71.1Sthorpej
81.2Slukem#ident 		"P6032-$Revision: 1.2 $"
91.1Sthorpej
101.1Sthorpejmaxusers 32
111.1Sthorpej
121.1Sthorpej# Platform Support
131.1Sthorpej#options 	ALGOR_P4032	# Algorithmics P-4032
141.1Sthorpej#options 	ALGOR_P5064	# Algorithmics P-5064
151.1Sthorpejoptions 	ALGOR_P6032	# Algorithmics P-6032
161.1Sthorpej
171.1Sthorpejoptions 	MIPS3_L2CACHE_ABSENT	# No L2 cache on this machine
181.1Sthorpej
191.1Sthorpej# Standard system options
201.1Sthorpejoptions 	KTRACE			# System call tracing support
211.1Sthorpejoptions 	NTP			# kernel PLL for NTP
221.1Sthorpej
231.1Sthorpej# Diagnostic/debugging support options
241.1Sthorpejoptions 	DIAGNOSTIC		# Cheap kernel consistency checks
251.1Sthorpejoptions 	DDB			# kernel debugger
261.1Sthorpejmakeoptions	DEBUG="-g"
271.1Sthorpej#makeoptions	DEBUGLIST="pattern1 pattern2 ..."
281.1Sthorpej
291.1Sthorpej# File systems
301.1Sthorpejfile-system	FFS		# Fast file system
311.1Sthorpejfile-system	MFS		# Memory-based file system
321.1Sthorpejfile-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
331.1Sthorpejfile-system	MSDOSFS		# MS-DOS-compatible file system
341.1Sthorpejfile-system	NTFS		# Windows/NT file system (experimental)
351.1Sthorpejfile-system	NFS		# Sun NFS-compatible file system client
361.1Sthorpejfile-system	KERNFS		# Kernel variable file system (/kern)
371.1Sthorpejfile-system	PROCFS		# Process file system (/proc)
381.1Sthorpejfile-system	FDESC		# /dev/fd file system
391.1Sthorpej
401.1Sthorpej# File system options
411.1Sthorpejoptions 	NFSSERVER	# Sun NFS-compatible file system server
421.1Sthorpej#options 	FFS_EI		# FFS Endian Independant support
431.1Sthorpejoptions 	SOFTDEP		# FFS soft updates support.
441.1Sthorpej
451.1Sthorpej# Networking options
461.1Sthorpejoptions 	INET		# Internet protocol suite
471.1Sthorpejoptions 	INET6		# IPV6
481.1Sthorpejoptions 	IPSEC		# IP security
491.1Sthorpejoptions 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
501.1Sthorpej#options 	IPSEC_DEBUG	# debug for IP security
511.1Sthorpej
521.1Sthorpej# 4.3BSD compatibility.  Should be optional, but necessary for now.
531.1Sthorpejoptions 	COMPAT_43
541.1Sthorpej
551.1Sthorpej# Binary compatibility with previous versions of NetBSD.
561.1Sthorpej#options 	COMPAT_09
571.1Sthorpejoptions 	COMPAT_10
581.1Sthorpejoptions 	COMPAT_11
591.1Sthorpejoptions 	COMPAT_12
601.1Sthorpejoptions 	COMPAT_13
611.1Sthorpejoptions 	COMPAT_14
621.1Sthorpej
631.1Sthorpej# System V-like message queues
641.1Sthorpejoptions 	SYSVMSG
651.1Sthorpej
661.1Sthorpej# System V-like semaphores
671.1Sthorpejoptions 	SYSVSEM
681.1Sthorpej
691.1Sthorpej# System V-like shared memory
701.1Sthorpejoptions 	SYSVSHM
711.1Sthorpej#options 	SHMMAXPGS=1024		# 1024 pages is the default
721.1Sthorpej
731.1Sthorpej# Loadable Kernel Modules
741.1Sthorpejoptions 	LKM
751.1Sthorpej
761.1Sthorpej# Disable kernel security.
771.1Sthorpej#options 	INSECURE
781.1Sthorpej
791.1Sthorpej# Misc. options
801.1Sthorpejoptions 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
811.1Sthorpejoptions 	PCIVERBOSE		# recognize "unknown" PCI devices
821.1Sthorpejoptions 	MIIVERBOSE		# verbose PHY autoconfig messages
831.1Sthorpej#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
841.1Sthorpejoptions 	SCSIVERBOSE		# Verbose SCSI errors
851.1Sthorpejoptions 	UCONSOLE		# users can use TIOCCONS (for xconsole)
861.1Sthorpej#options 	PCMCIAVERBOSE
871.1Sthorpej
881.1Sthorpej# The Alpha console firmware network boots using the BOOTP
891.1Sthorpej# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
901.1Sthorpej# in case we have NFS root.
911.1Sthorpejoptions 	NFS_BOOT_DHCP		# superset of BOOTP
921.1Sthorpej
931.1Sthorpej# WS console uses SUN or VT100 terminal emulation
941.1Sthorpej#options 	WSEMUL_VT100
951.1Sthorpej
961.1Sthorpejconfig		netbsd	root on ? type ?
971.1Sthorpej#config		netbsd	root on sd0 type ffs
981.1Sthorpej#config		netbsd	root on ? type nfs
991.1Sthorpej
1001.1Sthorpejmainbus0 at	root
1011.1Sthorpejcpu*	at	mainbus0
1021.1Sthorpej
1031.1Sthorpej# PCI host bus adapter support
1041.1Sthorpejbonito*	at	mainbus?
1051.1Sthorpej
1061.1Sthorpej# PCI bus support
1071.1Sthorpejpci*	at	bonito?
1081.1Sthorpej
1091.1Sthorpej# PCI devices
1101.1Sthorpej#adv*	at	pci? dev ? function ?		# AdvanSys SCSI
1111.1Sthorpej#adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
1121.1Sthorpej#options 	ADW_WDTR_DISABLE		# 	disable WDTR
1131.1Sthorpej#options 	ADW_SDTR_DISABLE		# 	disable SDTR
1141.1Sthorpej#options 	ADW_TAGQ_DISABLE		# 	disable Tag Queuing
1151.1Sthorpej#ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
1161.1Sthorpej#bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
1171.1Sthorpej#cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
1181.1Sthorpej#cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
1191.1Sthorpej#cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
1201.1Sthorpej#de*	at	pci? dev ? function ?		# 21x4x-based Ethernet
1211.1Sthorpej#dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
1221.1Sthorpej#eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
1231.1Sthorpej#en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
1241.1Sthorpej#ep*	at	pci? dev ? function ?		# 3COM 3c59x
1251.1Sthorpej#epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
1261.1Sthorpej#eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
1271.1Sthorpej#ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
1281.1Sthorpej#fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
1291.1Sthorpej#fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
1301.1Sthorpej#gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
1311.1Sthorpej#isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
1321.1Sthorpejle*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
1331.1Sthorpejpcib*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
1341.1Sthorpej#siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
1351.1Sthorpej#mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
1361.1Sthorpej#ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
1371.1Sthorpej#ohci*	at	pci? dev ? function ?		# USB Open Host Controller
1381.1Sthorpejpciide*	at	pci? dev ? function ?		# PCI IDE controllers
1391.1Sthorpej#pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
1401.1Sthorpejppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
1411.1Sthorpej#rtk*	at	pci? dev ? function ?		# RealTek 8129/8139 Ethernet
1421.1Sthorpej#sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
1431.1Sthorpej#sv*	at	pci? dev ? function ?		# S3 SonicVibes
1441.1Sthorpej#tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
1451.1Sthorpej#ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
1461.1Sthorpej#tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
1471.1Sthorpej#tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
1481.1Sthorpej#options 	TLP_MATCH_21040
1491.1Sthorpej#options 	TLP_MATCH_21041
1501.1Sthorpej#options 	TLP_MATCH_21140
1511.1Sthorpej#options 	TLP_MATCH_21142
1521.1Sthorpej#uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
1531.1Sthorpej#vga*	at	pci? dev ? function ?		# PCI VGA Graphics
1541.1Sthorpej#vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
1551.1Sthorpej#yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
1561.1Sthorpej
1571.1Sthorpej#audio*	at	eap?
1581.1Sthorpej#audio*	at	eso?
1591.1Sthorpej#audio*	at	sv?
1601.1Sthorpej#audio*	at	yds?
1611.1Sthorpej
1621.1Sthorpej#opl*	at	eso?
1631.1Sthorpej#opl*	at	sv?
1641.1Sthorpej#opl*	at	yds?
1651.1Sthorpej
1661.1Sthorpej#mpu*	at	eso?
1671.1Sthorpej#mpu*	at	yds?
1681.1Sthorpej
1691.1Sthorpej# MII/PHY support
1701.1Sthorpej#exphy*	at mii? phy ?			# 3Com internal PHYs
1711.1Sthorpej#icsphy*	at mii? phy ?		# Integrated Circuit Systems ICS1890
1721.1Sthorpej#inphy*	at mii? phy ?			# Intel 82555 PHYs
1731.1Sthorpej#lxtphy*	at mii? phy ?		# Level One LXT-970 PHYs
1741.1Sthorpej#nsphy*	at mii? phy ?			# NS83840 PHYs
1751.1Sthorpej#qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
1761.1Sthorpej#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
1771.1Sthorpej#tlphy*	at mii? phy ?			# ThunderLAN PHYs
1781.1Sthorpej#ukphy*	at mii? phy ?			# generic unknown PHYs
1791.1Sthorpej
1801.1Sthorpej# ISA/EISA bus support
1811.1Sthorpejisa*	at	pcib?
1821.1Sthorpej#isapnp*	at	isa?
1831.1Sthorpej
1841.1Sthorpej# ISA devices
1851.1Sthorpejmcclock* at	isa? port 0x70
1861.1Sthorpej#pckbc*	at	isa?				# PC keyboard controller
1871.1Sthorpej#pckbd*	at	pckbc?				# PC keyboard (kbd port)
1881.1Sthorpej#pms*	at	pckbc?				# PS/2-style mouse (aux port)
1891.1Sthorpej#pcppi*	at	isa?				# PC prog. periph. interface
1901.1Sthorpej#spkr0	at	pcppi?				# IBM BASIC emulation
1911.1Sthorpej#isabeep0 at	pcppi?				# "keyboard" beep
1921.1Sthorpej#midi*	at	pcppi?
1931.1Sthorpejcom*	at	isa? port 0x3f8 irq 4		# standard serial ports
1941.1Sthorpejcom*	at	isa? port 0x2f8 irq 3
1951.1Sthorpej#cs*	at	isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
1961.1Sthorpej#ec0	at	isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
1971.1Sthorpej#ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
1981.1Sthorpej#ep*	at	isapnp?
1991.1Sthorpej#ix0	at	isa? port 0x300 irq 10		# EtherExpress/16
2001.1Sthorpej#iy0	at	isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
2011.1Sthorpejfdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
2021.1Sthorpej#lc0	at	isa? port 0x300 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
2031.1Sthorpej#lc1	at	isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
2041.1Sthorpej#depca0	at	isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 	# DEPCA
2051.1Sthorpej#depca1	at	isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 	# DEPCA
2061.1Sthorpej#le*	at	depca?
2071.1Sthorpej#lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
2081.1Sthorpej#vga*	at	isa?				# ISA (EISA: XXX) VGA
2091.1Sthorpej#wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
2101.1Sthorpej#wdc1	at	isa? port 0x170 irq 15
2111.1Sthorpej#wdc*	at	isapnp?
2121.2Slukem#we0	at	isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
2131.2Slukem#we1	at	isa? port 0x300 iomem 0xcc000 irq 10
2141.1Sthorpej#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
2151.1Sthorpej#wss*	at	isapnp?
2161.1Sthorpej#audio*	at	wss?
2171.1Sthorpej#midi*	at	wss?
2181.1Sthorpej#sb*	at	isa? port 0x220 irq 5 drq 1	# SoundBlaster
2191.1Sthorpej#sb*	at	isapnp?
2201.1Sthorpej#audio*	at	sb?
2211.1Sthorpej#adv*	at	isa? port ? irq ? drq ?		# AdvanSys APB-514[02]
2221.1Sthorpej#aha*	at	isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
2231.1Sthorpej#aha*	at	isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI
2241.1Sthorpej#bha*	at	isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
2251.1Sthorpej#bha*	at	isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
2261.1Sthorpej#uha*	at	isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
2271.1Sthorpej#uha*	at	isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
2281.1Sthorpej#pcic0	at	isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
2291.1Sthorpej#pcic1	at	isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
2301.1Sthorpej#pcmcia*	at	pcic? controller ? socket ?
2311.1Sthorpej
2321.1Sthorpej# PCMCIA device
2331.1Sthorpej#aic*	at	pcmcia? function ?		# Adaptec APA-1460 SCSI
2341.1Sthorpej#com*	at	pcmcia? function ?		# Modems and serial cards
2351.1Sthorpej#wdc*	at	pcmcia? function ?		# PCMCIA IDE controllers
2361.1Sthorpej#ep*	at	pcmcia? function ?		# 3Com 3c589 and 3c562 Eth.
2371.1Sthorpej#mbe*	at	pcmcia? function ?		# MB8696x based Ethernet
2381.1Sthorpej#ne*	at	pcmcia? function ?		# NE2000-compatible Eth.
2391.1Sthorpej#sm*	at	pcmcia? function ?		# Megahertz Ethernet
2401.1Sthorpej#ray*	at	pcmcia? function ?		# Raytheon Raylink (802.11)
2411.1Sthorpej#wi*	at	pcmcia? function ?		# Lucent WaveLAN/IEEE
2421.1Sthorpej
2431.1Sthorpej# SCSI bus support
2441.1Sthorpej#scsibus* at	adv?
2451.1Sthorpej#scsibus* at	adw?
2461.1Sthorpej#scsibus* at	aha?
2471.1Sthorpej#scsibus* at	ahb?
2481.1Sthorpej#scsibus* at	ahc?
2491.1Sthorpej#scsibus* at	aic?
2501.1Sthorpej#scsibus* at	bha?
2511.1Sthorpej#scsibus* at	dpt?
2521.1Sthorpej#scsibus* at	isp?
2531.1Sthorpej#scsibus* at	siop?
2541.1Sthorpej#scsibus* at	pcscp?
2551.1Sthorpej#scsibus* at	uha?
2561.1Sthorpej
2571.1Sthorpej# SCSI devices
2581.1Sthorpej#cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
2591.1Sthorpej#sd*	at	scsibus? target ? lun ?		# SCSI disk drives
2601.1Sthorpej#st*	at	scsibus? target ? lun ?		# SCSI tape drives
2611.1Sthorpej
2621.1Sthorpej# ST506/ESDI/IDE devices
2631.1Sthorpejwd*	at	pciide? channel ?
2641.1Sthorpej#wd*	at	wdc? drive ?
2651.1Sthorpej
2661.1Sthorpej# ATAPI bus support
2671.1Sthorpejatapibus* at	pciide? channel ?
2681.1Sthorpej#atapibus* at	wdc?
2691.1Sthorpej
2701.1Sthorpej# ATAPI devices
2711.1Sthorpejsd*	at	atapibus? drive ?		# ATAPI disk devices
2721.1Sthorpejcd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
2731.1Sthorpej
2741.1Sthorpej# Floppy drives
2751.1Sthorpejfd*	at	fdc? drive ?
2761.1Sthorpej
2771.1Sthorpej# Hardware RAID devices
2781.1Sthorpej#ld*	at	cac? unit ?
2791.1Sthorpej#ld*	at	mlx? unit ?
2801.1Sthorpej
2811.1Sthorpej# USB bus support
2821.1Sthorpej#usb*	at uhci?
2831.1Sthorpej#usb*	at ohci?
2841.1Sthorpej
2851.1Sthorpej# USB Hubs
2861.1Sthorpej#uhub*	at usb?
2871.1Sthorpej#uhub*	at uhub? port ? configuration ? interface ?
2881.1Sthorpej
2891.1Sthorpej# USB Mice
2901.1Sthorpej#ums*	at uhub? port ? configuration ? interface ?
2911.1Sthorpej#wsmouse*	at ums?
2921.1Sthorpej
2931.1Sthorpej# USB Keyboards
2941.1Sthorpej#ukbd*	at uhub? port ? configuration ? interface ?
2951.1Sthorpej#wskbd*	at ukbd? console ?
2961.1Sthorpej
2971.1Sthorpej# USB Generic HID devices
2981.1Sthorpej#uhid*	at uhub? port ? configuration ? interface ?
2991.1Sthorpej
3001.1Sthorpej# USB Printer
3011.1Sthorpej#ulpt*	at uhub? port ? configuration ? interface ?
3021.1Sthorpej
3031.1Sthorpej# USB Modem
3041.1Sthorpej#umodem*	at uhub? port ? configuration ?
3051.1Sthorpej#ucom*	at umodem?
3061.1Sthorpej
3071.1Sthorpej# USB Mass Storage
3081.1Sthorpej#umass*	at uhub? port ? configuration ? interface ?
3091.1Sthorpej#atapibus* at umass? channel ?
3101.1Sthorpej#scsibus* at umass? channel ?
3111.1Sthorpej
3121.1Sthorpej# USB Ethernet adapters
3131.1Sthorpej#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
3141.1Sthorpej#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
3151.1Sthorpej#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
3161.1Sthorpej
3171.1Sthorpej# Serial adapters
3181.1Sthorpej# FTDI FT8U100AX serial adapter
3191.1Sthorpej#uftdi*	at uhub? port ?
3201.1Sthorpej#ucom*	at uftdi? portno ?
3211.1Sthorpej
3221.1Sthorpej# USB scanners
3231.1Sthorpej#uscanner* at uhub? port ?
3241.1Sthorpej
3251.1Sthorpej# Y@P firmware loader
3261.1Sthorpej#uyap* at uhub? port ?
3271.1Sthorpej
3281.1Sthorpej# USB Generic driver
3291.1Sthorpej#ugen*	at uhub? port ?
3301.1Sthorpej
3311.1Sthorpej# Workstation Console attachments
3321.1Sthorpej#wsdisplay*	at	vga?
3331.1Sthorpej#wskbd*		at	pckbd?
3341.1Sthorpej#wsmouse*	at	pms?
3351.1Sthorpej
3361.1Sthorpejpseudo-device	bpfilter	16
3371.1Sthorpejpseudo-device	ccd		4
3381.1Sthorpej#pseudo-device	raid		4		# RAIDframe disk driver
3391.2Slukem#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
3401.1Sthorpejpseudo-device	ipfilter	1
3411.1Sthorpejpseudo-device	loop		1
3421.1Sthorpejpseudo-device	md		1
3431.1Sthorpejpseudo-device	ppp		4
3441.1Sthorpejpseudo-device	pty			# pseudo-terminals
3451.1Sthorpejpseudo-device	sl		4
3461.1Sthorpejpseudo-device	vnd		4
3471.1Sthorpej#pseudo-device	gre		2	# generic L3 over IP tunnel
3481.1Sthorpejpseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
3491.1Sthorpej#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
3501.1Sthorpej#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
3511.1Sthorpejpseudo-device	vlan			# IEEE 802.1q encapsulation
3521.1Sthorpejpseudo-device	sequencer	1	# MIDI sequencer
3531.1Sthorpejpseudo-device	rnd			# /dev/random and in-kernel generator
3541.1Sthorpej#options 	RND_COM			# use "com" randomness too
355