Home | History | Annotate | Line # | Download | only in conf
P4032 revision 1.1
      1  1.1  thorpej #	$NetBSD: P4032,v 1.1 2001/06/01 16:00:04 thorpej Exp $
      2  1.1  thorpej #
      3  1.1  thorpej # Algorithmics P-4032 kernel.
      4  1.1  thorpej #
      5  1.1  thorpej 
      6  1.1  thorpej include	"arch/algor/conf/std.algor"
      7  1.1  thorpej 
      8  1.1  thorpej #ident 		"P4032-$Revision: 1.1 $"
      9  1.1  thorpej 
     10  1.1  thorpej maxusers 32
     11  1.1  thorpej 
     12  1.1  thorpej # Platform Support
     13  1.1  thorpej options 	ALGOR_P4032	# Algorithmics P-4032
     14  1.1  thorpej #options 	ALGOR_P5064	# Algorithmics P-5064
     15  1.1  thorpej #options 	ALGOR_P6032	# Algorithmics P-6032
     16  1.1  thorpej 
     17  1.1  thorpej options 	MIPS3_L2CACHE_ABSENT	# No L2 cache on this machine
     18  1.1  thorpej 
     19  1.1  thorpej # Standard system options
     20  1.1  thorpej options 	KTRACE			# System call tracing support
     21  1.1  thorpej options 	NTP			# kernel PLL for NTP
     22  1.1  thorpej 
     23  1.1  thorpej # Diagnostic/debugging support options
     24  1.1  thorpej options 	DIAGNOSTIC		# Cheap kernel consistency checks
     25  1.1  thorpej options 	DDB			# kernel debugger
     26  1.1  thorpej makeoptions	DEBUG="-g"
     27  1.1  thorpej #makeoptions	DEBUGLIST="pattern1 pattern2 ..."
     28  1.1  thorpej 
     29  1.1  thorpej # File systems
     30  1.1  thorpej file-system	FFS		# Fast file system
     31  1.1  thorpej file-system	MFS		# Memory-based file system
     32  1.1  thorpej file-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
     33  1.1  thorpej file-system	MSDOSFS		# MS-DOS-compatible file system
     34  1.1  thorpej file-system	NTFS		# Windows/NT file system (experimental)
     35  1.1  thorpej file-system	NFS		# Sun NFS-compatible file system client
     36  1.1  thorpej file-system	KERNFS		# Kernel variable file system (/kern)
     37  1.1  thorpej file-system	PROCFS		# Process file system (/proc)
     38  1.1  thorpej 
     39  1.1  thorpej # File system options
     40  1.1  thorpej options 	NFSSERVER	# Sun NFS-compatible file system server
     41  1.1  thorpej #options 	FFS_EI		# FFS Endian Independant support
     42  1.1  thorpej options 	SOFTDEP		# FFS soft updates support.
     43  1.1  thorpej 
     44  1.1  thorpej # Networking options
     45  1.1  thorpej options 	INET		# Internet protocol suite
     46  1.1  thorpej options 	INET6		# IPV6
     47  1.1  thorpej options 	IPSEC		# IP security
     48  1.1  thorpej options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
     49  1.1  thorpej #options 	IPSEC_DEBUG	# debug for IP security
     50  1.1  thorpej 
     51  1.1  thorpej # 4.3BSD compatibility.  Should be optional, but necessary for now.
     52  1.1  thorpej options 	COMPAT_43
     53  1.1  thorpej 
     54  1.1  thorpej # Binary compatibility with previous versions of NetBSD.
     55  1.1  thorpej #options 	COMPAT_09
     56  1.1  thorpej options 	COMPAT_10
     57  1.1  thorpej options 	COMPAT_11
     58  1.1  thorpej options 	COMPAT_12
     59  1.1  thorpej options 	COMPAT_13
     60  1.1  thorpej options 	COMPAT_14
     61  1.1  thorpej 
     62  1.1  thorpej # System V-like message queues
     63  1.1  thorpej options 	SYSVMSG
     64  1.1  thorpej 
     65  1.1  thorpej # System V-like semaphores
     66  1.1  thorpej options 	SYSVSEM
     67  1.1  thorpej 
     68  1.1  thorpej # System V-like shared memory
     69  1.1  thorpej options 	SYSVSHM
     70  1.1  thorpej #options 	SHMMAXPGS=1024		# 1024 pages is the default
     71  1.1  thorpej 
     72  1.1  thorpej # Loadable Kernel Modules
     73  1.1  thorpej options 	LKM
     74  1.1  thorpej 
     75  1.1  thorpej # Disable kernel security.
     76  1.1  thorpej #options 	INSECURE
     77  1.1  thorpej 
     78  1.1  thorpej # Misc. options
     79  1.1  thorpej #options 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
     80  1.1  thorpej options 	PCIVERBOSE		# recognize "unknown" PCI devices
     81  1.1  thorpej #options 	MIIVERBOSE		# verbose PHY autoconfig messages
     82  1.1  thorpej #options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
     83  1.1  thorpej options 	SCSIVERBOSE		# Verbose SCSI errors
     84  1.1  thorpej options 	UCONSOLE		# users can use TIOCCONS (for xconsole)
     85  1.1  thorpej #options 	PCMCIAVERBOSE
     86  1.1  thorpej 
     87  1.1  thorpej # The Alpha console firmware network boots using the BOOTP
     88  1.1  thorpej # protocol, so we ask the NFS code to use BOOTP/DHCP as well,
     89  1.1  thorpej # in case we have NFS root.
     90  1.1  thorpej options 	NFS_BOOT_DHCP		# superset of BOOTP
     91  1.1  thorpej 
     92  1.1  thorpej # WS console uses SUN or VT100 terminal emulation
     93  1.1  thorpej #options 	WSEMUL_VT100
     94  1.1  thorpej 
     95  1.1  thorpej config		netbsd	root on ? type ?
     96  1.1  thorpej #config		netbsd	root on sd0 type ffs
     97  1.1  thorpej #config		netbsd	root on ? type nfs
     98  1.1  thorpej 
     99  1.1  thorpej mainbus0 at	root
    100  1.1  thorpej cpu*	at	mainbus0
    101  1.1  thorpej 
    102  1.1  thorpej # Devices on the P-4032 local I/O bus
    103  1.1  thorpej mcclock*	at mainbus? addr ?
    104  1.1  thorpej com*		at mainbus? addr ?
    105  1.1  thorpej lpt*		at mainbus? addr ?
    106  1.1  thorpej #pckbc*		at mainbus? addr ?
    107  1.1  thorpej #fdc*		at mainbus? addr ?
    108  1.1  thorpej 
    109  1.1  thorpej # PCI host bus adapter support
    110  1.1  thorpej vtpbc*	at	mainbus?
    111  1.1  thorpej 
    112  1.1  thorpej # PCI bus support
    113  1.1  thorpej pci*	at	vtpbc?
    114  1.1  thorpej 
    115  1.1  thorpej # PCI devices
    116  1.1  thorpej #adv*	at	pci? dev ? function ?		# AdvanSys SCSI
    117  1.1  thorpej #adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
    118  1.1  thorpej #options 	ADW_WDTR_DISABLE		# 	disable WDTR
    119  1.1  thorpej #options 	ADW_SDTR_DISABLE		# 	disable SDTR
    120  1.1  thorpej #options 	ADW_TAGQ_DISABLE		# 	disable Tag Queuing
    121  1.1  thorpej #ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
    122  1.1  thorpej #bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
    123  1.1  thorpej #cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
    124  1.1  thorpej #cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
    125  1.1  thorpej #cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
    126  1.1  thorpej #de*	at	pci? dev ? function ?		# 21x4x-based Ethernet
    127  1.1  thorpej #dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
    128  1.1  thorpej #eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
    129  1.1  thorpej #en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
    130  1.1  thorpej #ep*	at	pci? dev ? function ?		# 3COM 3c59x
    131  1.1  thorpej #epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
    132  1.1  thorpej #eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
    133  1.1  thorpej #ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
    134  1.1  thorpej #fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
    135  1.1  thorpej #fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
    136  1.1  thorpej #gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
    137  1.1  thorpej #isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
    138  1.1  thorpej #le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
    139  1.1  thorpej #ncr*	at	pci? dev ? function ?		# NCR 53c8xx SCSI
    140  1.1  thorpej #pcib*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
    141  1.1  thorpej siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
    142  1.1  thorpej #mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
    143  1.1  thorpej #ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
    144  1.1  thorpej #ohci*	at	pci? dev ? function ?		# USB Open Host Controller
    145  1.1  thorpej #pciide* at	pci? dev ? function ?		# PCI IDE controllers
    146  1.1  thorpej #pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
    147  1.1  thorpej ppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
    148  1.1  thorpej #rtk*	at	pci? dev ? function ?		# RealTek 8129/8139 Ethernet
    149  1.1  thorpej #sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
    150  1.1  thorpej #sv*	at	pci? dev ? function ?		# S3 SonicVibes
    151  1.1  thorpej #tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
    152  1.1  thorpej #ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
    153  1.1  thorpej #tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
    154  1.1  thorpej tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
    155  1.1  thorpej options 	TLP_MATCH_21040
    156  1.1  thorpej options 	TLP_MATCH_21041
    157  1.1  thorpej options 	TLP_MATCH_21140
    158  1.1  thorpej options 	TLP_MATCH_21142
    159  1.1  thorpej #uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
    160  1.1  thorpej #vga*	at	pci? dev ? function ?		# PCI VGA Graphics
    161  1.1  thorpej #vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
    162  1.1  thorpej #yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
    163  1.1  thorpej 
    164  1.1  thorpej #audio*	at	eap?
    165  1.1  thorpej #audio*	at	eso?
    166  1.1  thorpej #audio*	at	sv?
    167  1.1  thorpej #audio*	at	yds?
    168  1.1  thorpej 
    169  1.1  thorpej #opl*	at	eso?
    170  1.1  thorpej #opl*	at	sv?
    171  1.1  thorpej #opl*	at	yds?
    172  1.1  thorpej 
    173  1.1  thorpej #mpu*	at	eso?
    174  1.1  thorpej #mpu*	at	yds?
    175  1.1  thorpej 
    176  1.1  thorpej # MII/PHY support
    177  1.1  thorpej #exphy*	at mii? phy ?			# 3Com internal PHYs
    178  1.1  thorpej #icsphy*	at mii? phy ?		# Integrated Circuit Systems ICS1890
    179  1.1  thorpej #inphy*	at mii? phy ?			# Intel 82555 PHYs
    180  1.1  thorpej #lxtphy*	at mii? phy ?		# Level One LXT-970 PHYs
    181  1.1  thorpej #nsphy*	at mii? phy ?			# NS83840 PHYs
    182  1.1  thorpej qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    183  1.1  thorpej #sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    184  1.1  thorpej #tlphy*	at mii? phy ?			# ThunderLAN PHYs
    185  1.1  thorpej ukphy*	at mii? phy ?			# generic unknown PHYs
    186  1.1  thorpej 
    187  1.1  thorpej # SCSI bus support
    188  1.1  thorpej #scsibus* at	adv?
    189  1.1  thorpej #scsibus* at	adw?
    190  1.1  thorpej #scsibus* at	ahc?
    191  1.1  thorpej #scsibus* at	bha?
    192  1.1  thorpej #scsibus* at	dpt?
    193  1.1  thorpej #scsibus* at	isp?
    194  1.1  thorpej scsibus* at	siop?
    195  1.1  thorpej #scsibus* at	pcscp?
    196  1.1  thorpej 
    197  1.1  thorpej # SCSI devices
    198  1.1  thorpej cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
    199  1.1  thorpej sd*	at	scsibus? target ? lun ?		# SCSI disk drives
    200  1.1  thorpej #st*	at	scsibus? target ? lun ?		# SCSI tape drives
    201  1.1  thorpej 
    202  1.1  thorpej # ST506/ESDI/IDE devices
    203  1.1  thorpej #wd*	at	pciide? channel ?
    204  1.1  thorpej #wd*	at	wdc? drive ?
    205  1.1  thorpej 
    206  1.1  thorpej # ATAPI bus support
    207  1.1  thorpej #atapibus* at	pciide? channel ?
    208  1.1  thorpej #atapibus* at	wdc?
    209  1.1  thorpej 
    210  1.1  thorpej # ATAPI devices
    211  1.1  thorpej #sd*	at	atapibus? drive ?		# ATAPI disk devices
    212  1.1  thorpej #cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
    213  1.1  thorpej 
    214  1.1  thorpej # Floppy drives
    215  1.1  thorpej #fd*	at	fdc? drive ?
    216  1.1  thorpej 
    217  1.1  thorpej # Hardware RAID devices
    218  1.1  thorpej #ld*	at	cac? unit ?
    219  1.1  thorpej #ld*	at	mlx? unit ?
    220  1.1  thorpej 
    221  1.1  thorpej # USB bus support
    222  1.1  thorpej #usb*	at uhci?
    223  1.1  thorpej #usb*	at ohci?
    224  1.1  thorpej 
    225  1.1  thorpej # USB Hubs
    226  1.1  thorpej #uhub*	at usb?
    227  1.1  thorpej #uhub*	at uhub? port ? configuration ? interface ?
    228  1.1  thorpej 
    229  1.1  thorpej # USB Mice
    230  1.1  thorpej #ums*	at uhub? port ? configuration ? interface ?
    231  1.1  thorpej #wsmouse*	at ums?
    232  1.1  thorpej 
    233  1.1  thorpej # USB Keyboards
    234  1.1  thorpej #ukbd*	at uhub? port ? configuration ? interface ?
    235  1.1  thorpej #wskbd*	at ukbd? console ?
    236  1.1  thorpej 
    237  1.1  thorpej # USB Generic HID devices
    238  1.1  thorpej #uhid*	at uhub? port ? configuration ? interface ?
    239  1.1  thorpej 
    240  1.1  thorpej # USB Printer
    241  1.1  thorpej #ulpt*	at uhub? port ? configuration ? interface ?
    242  1.1  thorpej 
    243  1.1  thorpej # USB Modem
    244  1.1  thorpej #umodem*	at uhub? port ? configuration ?
    245  1.1  thorpej #ucom*	at umodem?
    246  1.1  thorpej 
    247  1.1  thorpej # USB Mass Storage
    248  1.1  thorpej #umass*	at uhub? port ? configuration ? interface ?
    249  1.1  thorpej #atapibus* at umass? channel ?
    250  1.1  thorpej #scsibus* at umass? channel ?
    251  1.1  thorpej 
    252  1.1  thorpej # USB Ethernet adapters
    253  1.1  thorpej #aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    254  1.1  thorpej #cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    255  1.1  thorpej #kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    256  1.1  thorpej 
    257  1.1  thorpej # Serial adapters
    258  1.1  thorpej # FTDI FT8U100AX serial adapter
    259  1.1  thorpej #uftdi*	at uhub? port ?
    260  1.1  thorpej #ucom*	at uftdi? portno ?
    261  1.1  thorpej 
    262  1.1  thorpej # USB scanners
    263  1.1  thorpej #uscanner* at uhub? port ?
    264  1.1  thorpej 
    265  1.1  thorpej # Y@P firmware loader
    266  1.1  thorpej #uyap* at uhub? port ?
    267  1.1  thorpej 
    268  1.1  thorpej # USB Generic driver
    269  1.1  thorpej #ugen*	at uhub? port ?
    270  1.1  thorpej 
    271  1.1  thorpej # Workstation Console attachments
    272  1.1  thorpej #wsdisplay*	at	vga?
    273  1.1  thorpej #wskbd*		at	pckbd?
    274  1.1  thorpej #wsmouse*	at	pms?
    275  1.1  thorpej 
    276  1.1  thorpej pseudo-device	bpfilter	16
    277  1.1  thorpej pseudo-device	ccd		4
    278  1.1  thorpej #pseudo-device	raid		4		# RAIDframe disk driver
    279  1.1  thorpej #options 	RAID_AUTOCONFIG      # auto-configuration of RAID components
    280  1.1  thorpej pseudo-device	ipfilter	1
    281  1.1  thorpej pseudo-device	loop		1
    282  1.1  thorpej pseudo-device	md		1
    283  1.1  thorpej pseudo-device	ppp		4
    284  1.1  thorpej pseudo-device	pty			# pseudo-terminals
    285  1.1  thorpej pseudo-device	sl		4
    286  1.1  thorpej pseudo-device	vnd		4
    287  1.1  thorpej #pseudo-device	gre		2	# generic L3 over IP tunnel
    288  1.1  thorpej pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
    289  1.1  thorpej #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    290  1.1  thorpej #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    291  1.1  thorpej pseudo-device	vlan			# IEEE 802.1q encapsulation
    292  1.1  thorpej pseudo-device	sequencer	1	# MIDI sequencer
    293  1.1  thorpej pseudo-device	rnd			# /dev/random and in-kernel generator
    294  1.1  thorpej #options 	RND_COM			# use "com" randomness too
    295