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