P4032 revision 1.73
11.73Suebayasi#	$NetBSD: P4032,v 1.73 2015/08/21 01:52:07 uebayasi Exp $
21.1Sthorpej#
31.1Sthorpej# Algorithmics P-4032 kernel.
41.1Sthorpej#
51.1Sthorpej
61.1Sthorpejinclude	"arch/algor/conf/std.algor"
71.1Sthorpej
81.9Satatat#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
91.9Satatat
101.73Suebayasi#ident 		"P4032-$Revision: 1.73 $"
111.1Sthorpej
121.1Sthorpejmaxusers 32
131.1Sthorpej
141.1Sthorpej# Platform Support
151.1Sthorpejoptions 	ALGOR_P4032	# Algorithmics P-4032
161.1Sthorpej#options 	ALGOR_P5064	# Algorithmics P-5064
171.1Sthorpej#options 	ALGOR_P6032	# Algorithmics P-6032
181.1Sthorpej
191.2Sthorpej# Set these to the appropriate values, in case you have a buggy PMON
201.2Sthorpej# that doesn't provide environment variables properly.
211.2Sthorpej#options 	MEMSIZE=48		# memory size, in MB
221.2Sthorpej#options 	ETHADDR="\"00:40:bc:03:00:6c\""
231.1Sthorpej
241.1Sthorpej# Standard system options
251.1Sthorpejoptions 	KTRACE			# System call tracing support
261.1Sthorpejoptions 	NTP			# kernel PLL for NTP
271.1Sthorpej
281.1Sthorpej# Diagnostic/debugging support options
291.1Sthorpejoptions 	DIAGNOSTIC		# Cheap kernel consistency checks
301.1Sthorpejoptions 	DDB			# kernel debugger
311.73Suebayasipseudo-device	ksyms
321.1Sthorpejmakeoptions	DEBUG="-g"
331.1Sthorpej#makeoptions	DEBUGLIST="pattern1 pattern2 ..."
341.71Sjoergmakeoptions	COPY_SYMTAB=1
351.1Sthorpej
361.1Sthorpej# File systems
371.1Sthorpejfile-system	FFS		# Fast file system
381.1Sthorpejfile-system	MFS		# Memory-based file system
391.1Sthorpejfile-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
401.1Sthorpejfile-system	MSDOSFS		# MS-DOS-compatible file system
411.1Sthorpejfile-system	NTFS		# Windows/NT file system (experimental)
421.1Sthorpejfile-system	NFS		# Sun NFS-compatible file system client
431.1Sthorpejfile-system	KERNFS		# Kernel variable file system (/kern)
441.1Sthorpejfile-system	PROCFS		# Process file system (/proc)
451.2Sthorpejfile-system	FDESC		# /dev/fd file system
461.37Schristosfile-system	PTYFS		# /dev/pts/N support
471.1Sthorpej
481.1Sthorpej# File system options
491.1Sthorpejoptions 	NFSSERVER	# Sun NFS-compatible file system server
501.57Swiz#options 	FFS_EI		# FFS Endian Independent support
511.63Sdhollandoptions 	WAPBL		# File system journaling support
521.38Stsutsuioptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
531.1Sthorpej
541.1Sthorpej# Networking options
551.1Sthorpejoptions 	INET		# Internet protocol suite
561.1Sthorpejoptions 	INET6		# IPV6
571.1Sthorpejoptions 	IPSEC		# IP security
581.1Sthorpej#options 	IPSEC_DEBUG	# debug for IP security
591.1Sthorpej
601.70Salnsn# JIT compiler for bpfilter
611.70Salnsn#options	SLJIT
621.70Salnsn#options	BPFJIT
631.70Salnsn
641.1Sthorpej# 4.3BSD compatibility.  Should be optional, but necessary for now.
651.1Sthorpejoptions 	COMPAT_43
661.1Sthorpej
671.1Sthorpej# Binary compatibility with previous versions of NetBSD.
681.72Sdholland#options 	COMPAT_09	# NetBSD 0.9,
691.72Sdhollandoptions 	COMPAT_10	# NetBSD 1.0,
701.72Sdhollandoptions 	COMPAT_11	# NetBSD 1.1,
711.72Sdhollandoptions 	COMPAT_12	# NetBSD 1.2,
721.72Sdhollandoptions 	COMPAT_13	# NetBSD 1.3,
731.72Sdhollandoptions 	COMPAT_14	# NetBSD 1.4,
741.72Sdhollandoptions 	COMPAT_15	# NetBSD 1.5,
751.72Sdhollandoptions 	COMPAT_16	# NetBSD 1.6,
761.72Sdhollandoptions 	COMPAT_20	# NetBSD 2.0,
771.72Sdhollandoptions 	COMPAT_30	# NetBSD 3.0, and
781.72Sdhollandoptions 	COMPAT_40	# NetBSD 4.0 binary compatibility.
791.25Schristosoptions		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
801.1Sthorpej
811.1Sthorpej# System V-like message queues
821.1Sthorpejoptions 	SYSVMSG
831.1Sthorpej
841.1Sthorpej# System V-like semaphores
851.1Sthorpejoptions 	SYSVSEM
861.1Sthorpej
871.1Sthorpej# System V-like shared memory
881.1Sthorpejoptions 	SYSVSHM
891.1Sthorpej
901.1Sthorpej# Loadable Kernel Modules
911.1Sthorpej
921.1Sthorpej# Disable kernel security.
931.1Sthorpej#options 	INSECURE
941.1Sthorpej
951.1Sthorpej# Misc. options
961.1Sthorpej#options 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
971.1Sthorpejoptions 	PCIVERBOSE		# recognize "unknown" PCI devices
981.1Sthorpej#options 	MIIVERBOSE		# verbose PHY autoconfig messages
991.1Sthorpej#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
1001.1Sthorpejoptions 	SCSIVERBOSE		# Verbose SCSI errors
1011.1Sthorpej#options 	PCMCIAVERBOSE
1021.6Sjdolecek#options	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
1031.23Satatat#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
1041.1Sthorpej
1051.1Sthorpej# The Alpha console firmware network boots using the BOOTP
1061.1Sthorpej# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
1071.1Sthorpej# in case we have NFS root.
1081.1Sthorpejoptions 	NFS_BOOT_DHCP		# superset of BOOTP
1091.1Sthorpej
1101.1Sthorpej# WS console uses SUN or VT100 terminal emulation
1111.1Sthorpej#options 	WSEMUL_VT100
1121.64Sabs#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
1131.1Sthorpej
1141.1Sthorpejconfig		netbsd	root on ? type ?
1151.1Sthorpej#config		netbsd	root on sd0 type ffs
1161.1Sthorpej#config		netbsd	root on ? type nfs
1171.1Sthorpej
1181.1Sthorpejmainbus0 at	root
1191.1Sthorpejcpu*	at	mainbus0
1201.1Sthorpej
1211.1Sthorpej# Devices on the P-4032 local I/O bus
1221.1Sthorpejmcclock*	at mainbus? addr ?
1231.1Sthorpejcom*		at mainbus? addr ?
1241.1Sthorpejlpt*		at mainbus? addr ?
1251.1Sthorpej#pckbc*		at mainbus? addr ?
1261.1Sthorpej#fdc*		at mainbus? addr ?
1271.1Sthorpej
1281.1Sthorpej# PCI host bus adapter support
1291.1Sthorpejvtpbc*	at	mainbus?
1301.1Sthorpej
1311.1Sthorpej# PCI bus support
1321.1Sthorpejpci*	at	vtpbc?
1331.1Sthorpej
1341.1Sthorpej# PCI devices
1351.1Sthorpej#adv*	at	pci? dev ? function ?		# AdvanSys SCSI
1361.1Sthorpej#adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
1371.11Swiz#options 	SCSI_ADW_WDTR_DISABLE		# 	disable WDTR
1381.11Swiz#options 	SCSI_ADW_SDTR_DISABLE		# 	disable SDTR
1391.11Swiz#options 	SCSI_ADW_TAGQ_DISABLE		# 	disable Tag Queuing
1401.1Sthorpej#ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
1411.1Sthorpej#bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
1421.1Sthorpej#cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
1431.1Sthorpej#cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
1441.1Sthorpej#cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
1451.1Sthorpej#dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
1461.1Sthorpej#eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
1471.1Sthorpej#en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
1481.1Sthorpej#ep*	at	pci? dev ? function ?		# 3COM 3c59x
1491.1Sthorpej#epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
1501.1Sthorpej#eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
1511.1Sthorpej#ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
1521.1Sthorpej#fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
1531.1Sthorpej#fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
1541.1Sthorpej#gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
1551.1Sthorpej#isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
1561.1Sthorpej#le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
1571.1Sthorpej#pcib*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
1581.2Sthorpej#siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
1591.1Sthorpej#mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
1601.1Sthorpej#ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
1611.1Sthorpej#ohci*	at	pci? dev ? function ?		# USB Open Host Controller
1621.16Sbouyer#pciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
1631.16Sbouyer#acardide* at pci? dev ? function ?		# Acard IDE controllers
1641.16Sbouyer#aceride* at pci? dev ? function ?		# Acer Lab IDE controllers
1651.21Sthorpej#artsata* at pci? dev ? function ?		# Intel i31244 SATA controller
1661.16Sbouyer#cmdide* at pci? dev ? function ?		# CMD tech IDE controllers
1671.16Sbouyer#cypide* at pci? dev ? function ?		# Cypress IDE controllers
1681.16Sbouyer#hptide* at pci? dev ? function ?		# Triones/HighPoint IDE controllers
1691.16Sbouyer#optiide* at pci? dev ? function ?		# Opti IDE controllers
1701.16Sbouyer#pdcide* at pci? dev ? function ?		# Promise IDE controllers
1711.26Sbouyer#pdcsata* at pci? dev ? function ?		# Promise SATA150 controllers
1721.20Sthorpej#satalink* at pci? dev ? function ?		# SiI SATALink controllers
1731.16Sbouyer#siside* at pci? dev ? function ?		# SiS IDE controllers
1741.16Sbouyer#slide* at pci? dev ? function ?		# Symphony Labs IDE controllers
1751.16Sbouyer#viaide* at pci? dev ? function ?		# VIA/AMD/Nvidia IDE controllers
1761.1Sthorpej#pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
1771.1Sthorpejppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
1781.22Swiz#rtk*	at	pci? dev ? function ?		# Realtek 8129/8139 Ethernet
1791.1Sthorpej#sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
1801.1Sthorpej#sv*	at	pci? dev ? function ?		# S3 SonicVibes
1811.1Sthorpej#tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
1821.1Sthorpej#ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
1831.1Sthorpej#tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
1841.1Sthorpejtlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
1851.1Sthorpej#uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
1861.1Sthorpej#vga*	at	pci? dev ? function ?		# PCI VGA Graphics
1871.1Sthorpej#vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
1881.1Sthorpej#yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
1891.1Sthorpej
1901.1Sthorpej#audio*	at	eap?
1911.1Sthorpej#audio*	at	eso?
1921.1Sthorpej#audio*	at	sv?
1931.1Sthorpej#audio*	at	yds?
1941.1Sthorpej
1951.1Sthorpej#opl*	at	eso?
1961.1Sthorpej#opl*	at	sv?
1971.1Sthorpej#opl*	at	yds?
1981.1Sthorpej
1991.1Sthorpej#mpu*	at	eso?
2001.1Sthorpej#mpu*	at	yds?
2011.1Sthorpej
2021.1Sthorpej# MII/PHY support
2031.1Sthorpej#exphy*	at mii? phy ?			# 3Com internal PHYs
2041.7Swiz#icsphy*	at mii? phy ?		# Integrated Circuit Systems ICS189x
2051.1Sthorpej#inphy*	at mii? phy ?			# Intel 82555 PHYs
2061.1Sthorpej#lxtphy*	at mii? phy ?		# Level One LXT-970 PHYs
2071.1Sthorpej#nsphy*	at mii? phy ?			# NS83840 PHYs
2081.1Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
2091.1Sthorpej#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
2101.1Sthorpej#tlphy*	at mii? phy ?			# ThunderLAN PHYs
2111.1Sthorpejukphy*	at mii? phy ?			# generic unknown PHYs
2121.1Sthorpej
2131.1Sthorpej# SCSI bus support
2141.1Sthorpej#scsibus* at	adv?
2151.1Sthorpej#scsibus* at	adw?
2161.1Sthorpej#scsibus* at	ahc?
2171.1Sthorpej#scsibus* at	bha?
2181.1Sthorpej#scsibus* at	dpt?
2191.1Sthorpej#scsibus* at	isp?
2201.2Sthorpej#scsibus* at	siop?
2211.1Sthorpej#scsibus* at	pcscp?
2221.1Sthorpej
2231.1Sthorpej# SCSI devices
2241.2Sthorpej#cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
2251.2Sthorpej#sd*	at	scsibus? target ? lun ?		# SCSI disk drives
2261.1Sthorpej#st*	at	scsibus? target ? lun ?		# SCSI tape drives
2271.1Sthorpej
2281.17Slukem# ATA (IDE) bus support
2291.17Slukem#atabus* at ata?
2301.15Sbouyer
2311.17Slukem# IDE drives
2321.15Sbouyer#wd*	at	atabus? drive ?
2331.1Sthorpej
2341.1Sthorpej# ATAPI bus support
2351.17Slukem#atapibus* at	atapi?
2361.1Sthorpej
2371.1Sthorpej# ATAPI devices
2381.1Sthorpej#sd*	at	atapibus? drive ?		# ATAPI disk devices
2391.1Sthorpej#cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
2401.1Sthorpej
2411.1Sthorpej# Floppy drives
2421.1Sthorpej#fd*	at	fdc? drive ?
2431.1Sthorpej
2441.1Sthorpej# Hardware RAID devices
2451.1Sthorpej#ld*	at	cac? unit ?
2461.1Sthorpej#ld*	at	mlx? unit ?
2471.1Sthorpej
2481.1Sthorpej# USB bus support
2491.1Sthorpej#usb*	at uhci?
2501.1Sthorpej#usb*	at ohci?
2511.1Sthorpej
2521.1Sthorpej# USB Hubs
2531.1Sthorpej#uhub*	at usb?
2541.44Sdrochner#uhub*	at uhub? port ?
2551.1Sthorpej
2561.5Saugustss# USB HID device
2571.5Saugustss#uhidev*	at uhub? port ? configuration ? interface ?
2581.5Saugustss
2591.1Sthorpej# USB Mice
2601.5Saugustss#ums*	at uhidev? reportid ?
2611.1Sthorpej#wsmouse*	at ums?
2621.1Sthorpej
2631.1Sthorpej# USB Keyboards
2641.5Saugustss#ukbd*	at uhidev? reportid ?
2651.1Sthorpej#wskbd*	at ukbd? console ?
2661.1Sthorpej
2671.42Sskrll# USB serial adapter
2681.35Sskrll#ucycom*	at uhidev? reportid ?
2691.35Sskrll
2701.1Sthorpej# USB Generic HID devices
2711.5Saugustss#uhid*	at uhidev? reportid ?
2721.1Sthorpej
2731.1Sthorpej# USB Printer
2741.1Sthorpej#ulpt*	at uhub? port ? configuration ? interface ?
2751.1Sthorpej
2761.1Sthorpej# USB Modem
2771.1Sthorpej#umodem*	at uhub? port ? configuration ?
2781.1Sthorpej#ucom*	at umodem?
2791.1Sthorpej
2801.52Splunky# Option N.V. Wireless WAN modems
2811.52Splunky#uhso*	at uhub? port ? configuration ?
2821.52Splunky
2831.1Sthorpej# USB Mass Storage
2841.1Sthorpej#umass*	at uhub? port ? configuration ? interface ?
2851.15Sbouyer#atapibus* at umass?
2861.1Sthorpej#scsibus* at umass? channel ?
2871.1Sthorpej
2881.1Sthorpej# USB Ethernet adapters
2891.1Sthorpej#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
2901.24Saugustss#axe*	at uhub? port ?		# ASIX AX88172 based adapters
2911.1Sthorpej#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
2921.1Sthorpej#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
2931.13Saugustss#url*	at uhub? port ?		# Realtek RTL8150L based adapters
2941.1Sthorpej
2951.1Sthorpej# Serial adapters
2961.1Sthorpej# FTDI FT8U100AX serial adapter
2971.1Sthorpej#uftdi*	at uhub? port ?
2981.1Sthorpej#ucom*	at uftdi? portno ?
2991.1Sthorpej
3001.30Sitohy# Kyocera AIR-EDGE PHONE
3011.30Sitohy#ukyopon* at uhub? port ?
3021.30Sitohy#ucom*	at ukyopon? portno ?
3031.30Sitohy
3041.1Sthorpej# USB scanners
3051.1Sthorpej#uscanner* at uhub? port ?
3061.1Sthorpej
3071.1Sthorpej# Y@P firmware loader
3081.1Sthorpej#uyap* at uhub? port ?
3091.1Sthorpej
3101.1Sthorpej# USB Generic driver
3111.1Sthorpej#ugen*	at uhub? port ?
3121.1Sthorpej
3131.1Sthorpej# Workstation Console attachments
3141.1Sthorpej#wsdisplay*	at	vga?
3151.1Sthorpej#wskbd*		at	pckbd?
3161.1Sthorpej#wsmouse*	at	pms?
3171.1Sthorpej
3181.39Srpaulopseudo-device	bpfilter
3191.66Schristospseudo-device	ccd		
3201.66Schristos#pseudo-device	cgd			# cryptographic disk devices
3211.67Schristos#pseudo-device	raid			# RAIDframe disk driver
3221.4Slukem#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
3231.53Spooka#pseudo-device	fss			# file system snapshot device
3241.66Schristospseudo-device	ipfilter	
3251.66Schristospseudo-device	loop		
3261.54Shannkenpseudo-device	md		
3271.40Scubepseudo-device	ppp		
3281.1Sthorpejpseudo-device	pty			# pseudo-terminals
3291.40Scubepseudo-device	sl		
3301.40Scubepseudo-device	vnd		
3311.40Scube#pseudo-device	gre			# generic L3 over IP tunnel
3321.40Scubepseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
3331.40Scube#pseudo-device	faith			# IPv[46] tcp relay translation i/f
3341.41Spavelpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
3351.1Sthorpejpseudo-device	vlan			# IEEE 802.1q encapsulation
3361.68Schristospseudo-device	sequencer		# MIDI sequencer
3371.1Sthorpej#options 	RND_COM			# use "com" randomness too
3381.10Slukempseudo-device	clockctl		# user control of clock subsystem
339