GENERIC revision 1.194
1# $NetBSD: GENERIC,v 1.194 2001/10/01 10:23:37 simonb Exp $
2#
3# Generic Alpha kernel.  Enough to get booted, etc., but not much more.
4#
5# If you add stuff to this, please add it to the ALPHA configuration, too.
6
7include	"arch/alpha/conf/std.alpha"
8
9#ident 		"GENERIC-$Revision: 1.194 $"
10
11maxusers 32
12
13# CPU Support
14options 	DEC_2000_300	# "Jensen":	2000/300 (DECpc AXP 150)
15options 	DEC_2100_A50	# Avanti etc:	AlphaStation 400, 200, etc.
16options 	DEC_2100_A500	# Sable:	AlphaServer 2100
17options 	DEC_2100A_A500	# Lynx:		AlphaServer 2100A
18options 	DEC_3000_500	# Flamingo etc:	3000/[4-9]00*
19options 	DEC_3000_300	# Pelican etc:	3000/300*
20options 	DEC_AXPPCI_33	# NoName:	AXPpci33, etc.
21options 	DEC_EB164	# EB164:	AlphaPC 164
22options 	DEC_EB64PLUS	# EB64+:	AlphaPC 64, etc.
23options 	DEC_KN20AA	# KN20AA:	AlphaStation 500 and 600
24options 	DEC_KN8AE	# KN8AE:	AlphaServer 8200 and 8400
25options 	DEC_KN300	# KN300:	AlphaServer 4100 and 1200
26options 	DEC_550		# Miata:	Digital Personal Workstation
27options 	DEC_1000	# Mikasa etc:	Digital AlphaServer 1000
28options 	DEC_1000A	# Corelle etc:	Digital AlphaServer 800/1000A
29options 	DEC_ALPHABOOK1	# AlphaBook1:	Tadpole/DEC AlphaBook
30options 	DEC_EB66	# EB66:		21066 Evaluation Board
31options 	DEC_6600	# EV6:		264DP OEM Board
32options 	API_UP1000	# EV6:		Alpha Processor, Inc. UP1000
33
34# Standard system options
35options 	KTRACE			# System call tracing support
36options 	NTP			# kernel PLL for NTP
37
38# Diagnostic/debugging support options
39options 	DIAGNOSTIC		# Cheap kernel consistency checks
40options 	DDB			# kernel debugger
41#makeoptions	DEBUG="-g"
42#makeoptions	DEBUGLIST="pattern1 pattern2 ..."
43
44#options 	KGDB			# Remote kernel GDB support
45#options 	"KGDB_DEVNAME=\"com\""	# device to use for KGDB
46#options 	KGDB_DEVADDR=0x2f8	# at this address
47#options 	KGDB_DEVRATE=57600	# at this comm. rate
48
49# File systems
50file-system	FFS		# Fast file system
51file-system	MFS		# Memory-based file system
52file-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
53file-system	MSDOSFS		# MS-DOS-compatible file system
54file-system	NTFS		# Windows/NT file system (experimental)
55file-system	NFS		# Sun NFS-compatible file system client
56#file-system	KERNFS		# Kernel variable file system (/kern)
57#file-system	PROCFS		# Process file system (/proc)
58
59# File system options
60options 	NFSSERVER	# Sun NFS-compatible file system server
61#options 	FFS_EI		# FFS Endian Independant support
62options 	SOFTDEP		# FFS soft updates support.
63
64# Networking options
65options 	INET		# Internet protocol suite
66options 	INET6		# IPV6
67#options 	IPSEC		# IP security
68#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
69#options 	IPSEC_DEBUG	# debug for IP security
70#options 	NETATALK	# AppleTalk protocol suite
71
72# 4.3BSD compatibility.  Should be optional, but necessary for now.
73options 	COMPAT_43
74
75# Binary compatibility with previous versions of NetBSD.
76#options 	COMPAT_09
77options 	COMPAT_10
78options 	COMPAT_11
79options 	COMPAT_12
80options 	COMPAT_13
81options 	COMPAT_14
82
83# OSF/1 binary compatibility
84options 	COMPAT_OSF1
85
86# Linux binary compatibility
87options 	COMPAT_LINUX
88
89# System V-like message queues
90options 	SYSVMSG
91#options	SEMMNI=10	# number of semaphore identifiers
92#options	SEMMNS=60	# number of semaphores in system
93#options	SEMUME=10	# max number of undo entries per process
94#options	SEMMNU=30	# number of undo structures in system
95
96# System V-like semaphores
97options 	SYSVSEM
98
99# System V-like shared memory
100options 	SYSVSHM
101#options 	SHMMAXPGS=1024		# 1024 pages is the default
102
103# Loadable Kernel Modules
104options 	LKM
105
106# Disable kernel security.
107#options 	INSECURE
108
109# Misc. options
110options 	EISAVERBOSE		# recognize "unknown" EISA devices
111options 	PCIVERBOSE		# recognize "unknown" PCI devices
112options 	MIIVERBOSE		# verbose PHY autoconfig messages
113#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
114options 	SCSIVERBOSE		# Verbose SCSI errors
115options 	TCVERBOSE		# recognize "unknown" TC devices
116options 	UCONSOLE		# users can use TIOCCONS (for xconsole)
117#options 	PCMCIAVERBOSE
118
119# The Alpha console firmware network boots using the BOOTP
120# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
121# in case we have NFS root.
122options 	NFS_BOOT_DHCP		# superset of BOOTP
123
124# WS console uses SUN or VT100 terminal emulation
125options 	WSEMUL_VT100
126
127# realtime clock compatible to OSF/1
128#options 	CLOCK_COMPAT_OSF1
129
130config		netbsd	root on ? type ?
131#config		netbsd	root on sd0 type ffs
132#config		netbsd	root on ? type nfs
133
134mainbus0 at	root
135cpu*	at	mainbus0
136
137# TurboLaser bus support and devices
138tlsb*	at	mainbus0
139gbus*	at	tlsb? node ? offset ?
140tlsbmem* at	tlsb? node ? offset ?
141kft*	at	tlsb? node ? offset ?
142
143# Gbus Devices
144mcclock* at	gbus? offset ?
145
146# MCBUS bus support
147mcbus*	at	mainbus0
148mcmem*	at	mcbus? mid ?
149
150#i2c	at	mcbus?
151
152#EV6 Tsunami Core Logic
153
154tsc*	at	mainbus0
155
156# DECpc AXP150 (Jensen) internal bus support
157jensenio* at	mainbus0
158
159com*	at	jensenio? port ?
160lpt*	at	jensenio? port ?
161mcclock* at	jensenio? port ?
162pckbc*	at	jensenio? port ?
163
164# TURBOchannel host bus adapter support
165tcasic*	at	mainbus0
166
167# TURBOchannel bus support
168tc*	at	tcasic?
169
170# TURBOchannel devices
171ioasic*	at	tc? slot ? offset ?
172mcclock* at	ioasic? offset ?
173le*	at	ioasic? offset ?
174scc0	at	ioasic? offset ?
175scc1	at	ioasic? offset ?
176bba0	at	ioasic? offset ?
177audio*	at	bba?
178tcds*	at	tc? slot ? offset ?
179asc*	at	tcds? chip ?
180asc*	at	tc? slot ? offset ?
181#cfb*	at	tc? slot ? offset ?
182#sfb*	at	tc? slot ? offset ?
183le*	at	tc? slot ? offset ?
184fta*	at	tc? slot ? offset ?		# DEC DEFTA FDDI cards
185
186# PCI host bus adapter support
187apecs*	at	mainbus?
188cia*	at	mainbus?
189irongate* at	mainbus?
190lca*	at	mainbus?
191dwlpx*	at	kft?
192mcpcia*	at	mcbus? mid ?
193tsp*	at	tsc?
194ttwoga*	at	mainbus?
195
196# Sable PCI and STDIO bus and devices
197ttwopci* at	ttwoga? hose ?
198sableio* at	ttwopci? bus ?
199com*	at	sableio? port ?
200lpt*	at	sableio? port ?
201pckbc*	at	sableio? port ?
202fdc*	at	sableio? port ?
203
204# PCI bus support
205pci*	at	apecs?
206pci*	at	cia?
207pci*	at	irongate?
208pci*	at	lca?
209pci*	at	ppb?
210pci*	at	dwlpx?
211pci*	at	mcpcia?
212pci*	at	tsp?
213pci*	at	ttwopci?
214
215# AGP support
216agp*	at	irongate?
217
218# PCI devices
219adv*	at	pci? dev ? function ?		# AdvanSys SCSI
220adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
221#options 	ADW_WDTR_DISABLE		# 	disable WDTR
222#options 	ADW_SDTR_DISABLE		# 	disable SDTR
223#options 	ADW_TAGQ_DISABLE		# 	disable Tag Queuing
224ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
225bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
226cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
227cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
228cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
229de*	at	pci? dev ? function ?		# 21x4x-based Ethernet
230dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
231eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
232en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
233ep*	at	pci? dev ? function ?		# 3COM 3c59x
234epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
235eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
236ex*	at	pci? dev ? function ?		# 3COM 3c90x[BC] Ethernet
237fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
238fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
239gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
240iha*	at	pci? dev ? function ?		# Initio INIC-940/950 SCSI
241isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
242le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
243sf*	at	pci? dev ? function ?		# Adaptec AIC-6915 Ethernet
244siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
245mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
246ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
247ohci*	at	pci? dev ? function ?		# USB Open Host Controller
248pceb*	at	pci? dev ? function ?		# Intel PCI-EISA Bridges
249pciide*	at	pci? dev ? function ?		# PCI IDE controllers
250pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
251ppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
252rtk*	at	pci? dev ? function ?		# RealTek 8129/8139 Ethernet
253sio*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
254sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
255sv*	at	pci? dev ? function ?		# S3 SonicVibes
256tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
257ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
258tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
259tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
260#options 	TLP_MATCH_21040
261#options 	TLP_MATCH_21041
262#options 	TLP_MATCH_21140
263#options 	TLP_MATCH_21142
264uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
265vga*	at	pci? dev ? function ?		# PCI VGA Graphics
266vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
267yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
268
269audio*	at	eap?
270audio*	at	eso?
271audio*	at	sv?
272audio*	at	yds?
273
274opl*	at	eso?
275#opl*	at	sv?
276opl*	at	yds?
277
278mpu*	at	eso?
279mpu*	at	yds?
280
281# MII/PHY support
282exphy*	at mii? phy ?			# 3Com internal PHYs
283icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
284inphy*	at mii? phy ?			# Intel 82555 PHYs
285lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
286gphyter* at mii? phy ?			# NS83861 Gig-E PHY
287nsphy*	at mii? phy ?			# NS83840 PHYs
288qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
289sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
290tlphy*	at mii? phy ?			# ThunderLAN PHYs
291ukphy*	at mii? phy ?			# generic unknown PHYs
292
293# ISA/EISA bus support
294isa*	at	jensenio?
295eisa*	at	jensenio?
296isa*	at	pceb?
297eisa*	at	pceb?
298isa*	at	sio?
299#isapnp*	at	isa?
300
301# ISA devices
302mcclock* at	isa? port 0x70
303pckbc*	at	isa?				# PC keyboard controller
304pckbd*	at	pckbc?				# PC keyboard (kbd port)
305pms*	at	pckbc?				# PS/2-style mouse (aux port)
306pcppi*	at	isa?				# PC prog. periph. interface
307spkr0	at	pcppi?				# IBM BASIC emulation
308isabeep0 at	pcppi?				# "keyboard" beep
309midi*	at	pcppi?
310com*	at	isa? port 0x3f8 irq 4		# standard serial ports
311com*	at	isa? port 0x2f8 irq 3
312cs*	at	isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
313ec0	at	isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
314ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
315#ep*	at	isapnp?
316#ix0	at	isa? port 0x300 irq 10		# EtherExpress/16
317#iy0	at	isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
318fdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
319lc0	at	isa? port 0x300 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
320lc1	at	isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
321depca0	at	isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 	# DEPCA
322depca1	at	isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 	# DEPCA
323le*	at	depca?
324lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
325vga*	at	isa?				# ISA (EISA: XXX) VGA
326wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
327wdc1	at	isa? port 0x170 irq 15
328#wdc*	at	isapnp?
329we0     at 	isa? port 0x280 iomem 0xd0000 irq 9  # WD/SMC Ethernet
330we1     at 	isa? port 0x300 iomem 0xcc000 irq 10
331#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
332#wss*	at	isapnp?
333#audio*	at	wss?
334#midi*	at	wss?
335sb*	at	isa? port 0x220 irq 5 drq 1	# SoundBlaster
336#sb*	at	isapnp?
337audio*	at	sb?
338#adv*	at	isa? port ? irq ? drq ?		# AdvanSys APB-514[02]
339aha*	at	isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
340aha*	at	isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI
341bha*	at	isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
342bha*	at	isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
343uha*	at	isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
344uha*	at	isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
345pcic0	at	isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
346pcic1	at	isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
347pcmcia*	at	pcic? controller ? socket ?
348
349# EISA devices
350ahb*	at	eisa? slot ?			# Adaptec 174[024] SCSI (unt.)
351ahc*	at	eisa? slot ?			# Adaptec 274x, aic7770 SCSI
352bha*	at	eisa? slot ?			# BusLogic 7xx SCSI
353ep*	at	eisa? slot ?			# 3COM 3c579 Ethernet (untested)
354fea*	at	eisa? slot ?			# DEC DEFEA FDDI
355mlx*	at	eisa? slot ?			# Mylex DAC960 / DEC SWXCR (untested)
356tlp*	at	eisa? slot ?			# DEC DE-425 Ethernet
357depca*	at	eisa? slot ?			# DEC DE-422 Ethernet
358le*	at	depca?
359uha*	at	eisa? slot ?			# UltraStor 24f SCSI (unt.)
360
361# PCMCIA device
362aic*	at	pcmcia? function ?		# Adaptec APA-1460 SCSI
363com*	at	pcmcia? function ?		# Modems and serial cards
364wdc*	at	pcmcia? function ?		# PCMCIA IDE controllers
365ep*	at	pcmcia? function ?		# 3Com 3c589 and 3c562 Eth.
366mbe*	at	pcmcia? function ?		# MB8696x based Ethernet
367ne*	at	pcmcia? function ?		# NE2000-compatible Eth.
368sm*	at	pcmcia? function ?		# Megahertz Ethernet
369ray*	at	pcmcia? function ?		# Raytheon Raylink (802.11)
370wi*	at	pcmcia? function ?		# Lucent WaveLAN/IEEE
371
372# SCSI bus support
373scsibus* at	adv?
374scsibus* at	adw?
375scsibus* at	aha?
376scsibus* at	ahb?
377scsibus* at	ahc?
378scsibus* at	aic?
379scsibus* at	asc?
380scsibus* at	bha?
381scsibus* at	dpt?
382scsibus* at	iha?
383scsibus* at	isp?
384scsibus* at	siop?
385scsibus* at	pcscp?
386scsibus* at	uha?
387
388# SCSI devices
389cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
390sd*	at	scsibus? target ? lun ?		# SCSI disk drives
391st*	at	scsibus? target ? lun ?		# SCSI tape drives
392
393# ST506/ESDI/IDE devices
394wd*	at	pciide? channel ?
395wd*	at	wdc? drive ?
396
397# ATAPI bus support
398atapibus* at	pciide? channel ?
399atapibus* at	wdc?
400
401# ATAPI devices
402sd*	at	atapibus? drive ?		# ATAPI disk devices
403cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
404
405# Floppy drives
406fd*	at	fdc? drive ?
407
408# Hardware RAID devices
409ld*	at	cac? unit ?
410ld*	at	mlx? unit ?
411
412# USB bus support
413usb*	at uhci?
414usb*	at ohci?
415
416# USB Hubs
417uhub*	at usb?
418uhub*	at uhub? port ? configuration ? interface ?
419
420# USB Mice
421ums*	at uhub? port ? configuration ? interface ?
422wsmouse*	at ums?
423
424# USB Keyboards
425ukbd*	at uhub? port ? configuration ? interface ?
426wskbd*	at ukbd? console ?
427
428# USB Generic HID devices
429uhid*	at uhub? port ? configuration ? interface ?
430
431# USB Printer
432ulpt*	at uhub? port ? configuration ? interface ?
433
434# USB Modem
435umodem*	at uhub? port ? configuration ?
436ucom*	at umodem?
437
438# USB Mass Storage
439umass*	at uhub? port ? configuration ? interface ?
440atapibus* at umass? channel ?
441scsibus* at umass? channel ?
442
443# USB Ethernet adapters
444aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
445cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
446kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
447
448# Serial adapters
449# FTDI FT8U100AX serial adapter
450uftdi*	at uhub? port ?
451ucom*	at uftdi? portno ?
452
453# USB scanners
454uscanner* at uhub? port ?
455
456# Y@P firmware loader
457uyap* at uhub? port ?
458
459# USB Generic driver
460ugen*	at uhub? port ?
461
462# Workstation Console attachments
463#wsdisplay*	at	cfb?
464wsdisplay*	at	vga?
465#wsdisplay*	at	sfb?
466wsdisplay*	at	tga?
467wskbd*		at	pckbd?
468wsmouse*	at	pms?
469
470pseudo-device	bpfilter	16
471pseudo-device	ccd		4
472#pseudo-device	raid		4		# RAIDframe disk driver
473#options 	RAID_AUTOCONFIG      # auto-configuration of RAID components
474pseudo-device	ipfilter	1
475pseudo-device	loop		1
476pseudo-device	md		1
477pseudo-device	ppp		4
478pseudo-device	pty			# pseudo-terminals
479pseudo-device	sl		4
480pseudo-device	vnd		4
481#pseudo-device	gre		2	# generic L3 over IP tunnel
482pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
483#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
484#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
485pseudo-device	vlan			# IEEE 802.1q encapsulation
486pseudo-device	bridge			# simple inter-network bridging
487pseudo-device	sequencer	1	# MIDI sequencer
488pseudo-device	rnd			# /dev/random and in-kernel generator
489#options 	RND_COM			# use "com" randomness too
490