GENERIC revision 1.193
1# $NetBSD: GENERIC,v 1.193 2001/09/15 04:33:37 thorpej 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.193 $"
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 ?
180#cfb*	at	tc? slot ? offset ?
181#sfb*	at	tc? slot ? offset ?
182le*	at	tc? slot ? offset ?
183fta*	at	tc? slot ? offset ?		# DEC DEFTA FDDI cards
184
185# PCI host bus adapter support
186apecs*	at	mainbus?
187cia*	at	mainbus?
188irongate* at	mainbus?
189lca*	at	mainbus?
190dwlpx*	at	kft?
191mcpcia*	at	mcbus? mid ?
192tsp*	at	tsc?
193ttwoga*	at	mainbus?
194
195# Sable PCI and STDIO bus and devices
196ttwopci* at	ttwoga? hose ?
197sableio* at	ttwopci? bus ?
198com*	at	sableio? port ?
199lpt*	at	sableio? port ?
200pckbc*	at	sableio? port ?
201fdc*	at	sableio? port ?
202
203# PCI bus support
204pci*	at	apecs?
205pci*	at	cia?
206pci*	at	irongate?
207pci*	at	lca?
208pci*	at	ppb?
209pci*	at	dwlpx?
210pci*	at	mcpcia?
211pci*	at	tsp?
212pci*	at	ttwopci?
213
214# AGP support
215agp*	at	irongate?
216
217# PCI devices
218adv*	at	pci? dev ? function ?		# AdvanSys SCSI
219adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
220#options 	ADW_WDTR_DISABLE		# 	disable WDTR
221#options 	ADW_SDTR_DISABLE		# 	disable SDTR
222#options 	ADW_TAGQ_DISABLE		# 	disable Tag Queuing
223ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
224bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
225cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
226cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
227cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
228de*	at	pci? dev ? function ?		# 21x4x-based Ethernet
229dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
230eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
231en*	at	pci? dev ? function ?		# ENI PCI ATM (untested)
232ep*	at	pci? dev ? function ?		# 3COM 3c59x
233epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
234eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
235ex*	at	pci? dev ? function ?		# 3COM 3c90x[BC] Ethernet
236fpa*	at	pci? dev ? function ?		# DEC DEFPA FDDI
237fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
238gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
239iha*	at	pci? dev ? function ?		# Initio INIC-940/950 SCSI
240isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
241le*	at	pci? dev ? function ?		# PCI LANCE Ethernet (untested)
242sf*	at	pci? dev ? function ?		# Adaptec AIC-6915 Ethernet
243siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
244mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
245ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
246ohci*	at	pci? dev ? function ?		# USB Open Host Controller
247pceb*	at	pci? dev ? function ?		# Intel PCI-EISA Bridges
248pciide*	at	pci? dev ? function ?		# PCI IDE controllers
249pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
250ppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
251rtk*	at	pci? dev ? function ?		# RealTek 8129/8139 Ethernet
252sio*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
253sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
254sv*	at	pci? dev ? function ?		# S3 SonicVibes
255tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
256ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
257tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
258tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
259#options 	TLP_MATCH_21040
260#options 	TLP_MATCH_21041
261#options 	TLP_MATCH_21140
262#options 	TLP_MATCH_21142
263uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
264vga*	at	pci? dev ? function ?		# PCI VGA Graphics
265vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
266yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
267
268audio*	at	eap?
269audio*	at	eso?
270audio*	at	sv?
271audio*	at	yds?
272
273opl*	at	eso?
274#opl*	at	sv?
275opl*	at	yds?
276
277mpu*	at	eso?
278mpu*	at	yds?
279
280# MII/PHY support
281exphy*	at mii? phy ?			# 3Com internal PHYs
282icsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
283inphy*	at mii? phy ?			# Intel 82555 PHYs
284lxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
285gphyter* at mii? phy ?			# NS83861 Gig-E PHY
286nsphy*	at mii? phy ?			# NS83840 PHYs
287qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
288sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
289tlphy*	at mii? phy ?			# ThunderLAN PHYs
290ukphy*	at mii? phy ?			# generic unknown PHYs
291
292# ISA/EISA bus support
293isa*	at	jensenio?
294eisa*	at	jensenio?
295isa*	at	pceb?
296eisa*	at	pceb?
297isa*	at	sio?
298#isapnp*	at	isa?
299
300# ISA devices
301mcclock* at	isa? port 0x70
302pckbc*	at	isa?				# PC keyboard controller
303pckbd*	at	pckbc?				# PC keyboard (kbd port)
304pms*	at	pckbc?				# PS/2-style mouse (aux port)
305pcppi*	at	isa?				# PC prog. periph. interface
306spkr0	at	pcppi?				# IBM BASIC emulation
307isabeep0 at	pcppi?				# "keyboard" beep
308midi*	at	pcppi?
309com*	at	isa? port 0x3f8 irq 4		# standard serial ports
310com*	at	isa? port 0x2f8 irq 3
311cs*	at	isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
312ec0	at	isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
313ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
314#ep*	at	isapnp?
315#ix0	at	isa? port 0x300 irq 10		# EtherExpress/16
316#iy0	at	isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
317fdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
318lc0	at	isa? port 0x300 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
319lc1	at	isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
320depca0	at	isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 	# DEPCA
321depca1	at	isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 	# DEPCA
322le*	at	depca?
323lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
324vga*	at	isa?				# ISA (EISA: XXX) VGA
325wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
326wdc1	at	isa? port 0x170 irq 15
327#wdc*	at	isapnp?
328we0     at 	isa? port 0x280 iomem 0xd0000 irq 9  # WD/SMC Ethernet
329we1     at 	isa? port 0x300 iomem 0xcc000 irq 10
330#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
331#wss*	at	isapnp?
332#audio*	at	wss?
333#midi*	at	wss?
334sb*	at	isa? port 0x220 irq 5 drq 1	# SoundBlaster
335#sb*	at	isapnp?
336audio*	at	sb?
337#adv*	at	isa? port ? irq ? drq ?		# AdvanSys APB-514[02]
338aha*	at	isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
339aha*	at	isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI
340bha*	at	isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
341bha*	at	isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
342uha*	at	isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
343uha*	at	isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
344pcic0	at	isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
345pcic1	at	isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
346pcmcia*	at	pcic? controller ? socket ?
347
348# EISA devices
349ahb*	at	eisa? slot ?			# Adaptec 174[024] SCSI (unt.)
350ahc*	at	eisa? slot ?			# Adaptec 274x, aic7770 SCSI
351bha*	at	eisa? slot ?			# BusLogic 7xx SCSI
352ep*	at	eisa? slot ?			# 3COM 3c579 Ethernet (untested)
353fea*	at	eisa? slot ?			# DEC DEFEA FDDI
354mlx*	at	eisa? slot ?			# Mylex DAC960 / DEC SWXCR (untested)
355tlp*	at	eisa? slot ?			# DEC DE-425 Ethernet
356depca*	at	eisa? slot ?			# DEC DE-422 Ethernet
357le*	at	depca?
358uha*	at	eisa? slot ?			# UltraStor 24f SCSI (unt.)
359
360# PCMCIA device
361aic*	at	pcmcia? function ?		# Adaptec APA-1460 SCSI
362com*	at	pcmcia? function ?		# Modems and serial cards
363wdc*	at	pcmcia? function ?		# PCMCIA IDE controllers
364ep*	at	pcmcia? function ?		# 3Com 3c589 and 3c562 Eth.
365mbe*	at	pcmcia? function ?		# MB8696x based Ethernet
366ne*	at	pcmcia? function ?		# NE2000-compatible Eth.
367sm*	at	pcmcia? function ?		# Megahertz Ethernet
368ray*	at	pcmcia? function ?		# Raytheon Raylink (802.11)
369wi*	at	pcmcia? function ?		# Lucent WaveLAN/IEEE
370
371# SCSI bus support
372scsibus* at	adv?
373scsibus* at	adw?
374scsibus* at	aha?
375scsibus* at	ahb?
376scsibus* at	ahc?
377scsibus* at	aic?
378scsibus* at	asc?
379scsibus* at	bha?
380scsibus* at	dpt?
381scsibus* at	iha?
382scsibus* at	isp?
383scsibus* at	siop?
384scsibus* at	pcscp?
385scsibus* at	uha?
386
387# SCSI devices
388cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
389sd*	at	scsibus? target ? lun ?		# SCSI disk drives
390st*	at	scsibus? target ? lun ?		# SCSI tape drives
391
392# ST506/ESDI/IDE devices
393wd*	at	pciide? channel ?
394wd*	at	wdc? drive ?
395
396# ATAPI bus support
397atapibus* at	pciide? channel ?
398atapibus* at	wdc?
399
400# ATAPI devices
401sd*	at	atapibus? drive ?		# ATAPI disk devices
402cd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
403
404# Floppy drives
405fd*	at	fdc? drive ?
406
407# Hardware RAID devices
408ld*	at	cac? unit ?
409ld*	at	mlx? unit ?
410
411# USB bus support
412usb*	at uhci?
413usb*	at ohci?
414
415# USB Hubs
416uhub*	at usb?
417uhub*	at uhub? port ? configuration ? interface ?
418
419# USB Mice
420ums*	at uhub? port ? configuration ? interface ?
421wsmouse*	at ums?
422
423# USB Keyboards
424ukbd*	at uhub? port ? configuration ? interface ?
425wskbd*	at ukbd? console ?
426
427# USB Generic HID devices
428uhid*	at uhub? port ? configuration ? interface ?
429
430# USB Printer
431ulpt*	at uhub? port ? configuration ? interface ?
432
433# USB Modem
434umodem*	at uhub? port ? configuration ?
435ucom*	at umodem?
436
437# USB Mass Storage
438umass*	at uhub? port ? configuration ? interface ?
439atapibus* at umass? channel ?
440scsibus* at umass? channel ?
441
442# USB Ethernet adapters
443aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
444cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
445kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
446
447# Serial adapters
448# FTDI FT8U100AX serial adapter
449uftdi*	at uhub? port ?
450ucom*	at uftdi? portno ?
451
452# USB scanners
453uscanner* at uhub? port ?
454
455# Y@P firmware loader
456uyap* at uhub? port ?
457
458# USB Generic driver
459ugen*	at uhub? port ?
460
461# Workstation Console attachments
462#wsdisplay*	at	cfb?
463wsdisplay*	at	vga?
464#wsdisplay*	at	sfb?
465wsdisplay*	at	tga?
466wskbd*		at	pckbd?
467wsmouse*	at	pms?
468
469pseudo-device	bpfilter	16
470pseudo-device	ccd		4
471#pseudo-device	raid		4		# RAIDframe disk driver
472#options 	RAID_AUTOCONFIG      # auto-configuration of RAID components
473pseudo-device	ipfilter	1
474pseudo-device	loop		1
475pseudo-device	md		1
476pseudo-device	ppp		4
477pseudo-device	pty			# pseudo-terminals
478pseudo-device	sl		4
479pseudo-device	vnd		4
480#pseudo-device	gre		2	# generic L3 over IP tunnel
481pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
482#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
483#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
484pseudo-device	vlan			# IEEE 802.1q encapsulation
485pseudo-device	bridge			# simple inter-network bridging
486pseudo-device	sequencer	1	# MIDI sequencer
487pseudo-device	rnd			# /dev/random and in-kernel generator
488#options 	RND_COM			# use "com" randomness too
489