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