GENERIC revision 1.16
1#	$NetBSD: GENERIC,v 1.16 2005/08/05 09:23:17 skrll Exp $
2#
3#	GENERIC -- Generic kernel
4#
5
6include	"arch/iyonix/conf/std.iyonix"
7
8options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9options		MSGBUFSIZE=65536
10
11# Enable the hooks used for initializing the root memory-disk.
12#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
13# options 	MEMORY_DISK_HOOKS
14# options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
15# options 	MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks
16
17# estimated number of users
18
19maxusers	32
20
21# Standard system options
22
23options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
24#options 	NTP		# NTP phase/frequency locked loop
25
26# CPU options
27
28# For XScale systems
29options 	CPU_XSCALE_80321	# Support the XScale core
30makeoptions	CPUFLAGS="-mcpu=xscale"
31
32# Architecture options
33options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
34#options 	HZ=512
35
36# File systems
37
38file-system	FFS		# UFS
39#file-system	LFS		# log-structured file system
40file-system	MFS		# memory file system
41file-system	NFS		# Network file system
42#file-system 	ADOSFS		# AmigaDOS-compatible file system
43#file-system 	EXT2FS		# second extended file system (linux)
44file-system	CD9660		# ISO 9660 + Rock Ridge file system
45#file-system	MSDOSFS		# MS-DOS file system
46#file-system	FDESC		# /dev/fd
47file-system     FILECORE        # Acorn filecore file system
48#file-system	KERNFS		# /kern
49#file-system	NULLFS		# loopback file system
50#file-system	PORTAL		# portal filesystem (still experimental)
51#file-system	PROCFS		# /proc
52#file-system	UMAPFS		# NULLFS + uid and gid remapping
53#file-system	UNION		# union file system
54#file-system	PTYFS		# experimental - /dev/ptm support
55
56# File system options
57#options 	QUOTA		# UFS quotas
58#options 	FFS_EI		# FFS Endian Independant support
59#options 	NFSSERVER
60#options 	SOFTDEP
61#options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
62options 	FFS_NO_SNAPSHOT	# ffs snapshots
63
64# Networking options
65
66#options 	GATEWAY		# packet forwarding
67options 	INET		# IP + ICMP + TCP + UDP
68#options 	INET6		# IPV6
69#options 	IPSEC		# IP security
70#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
71#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
72#options 	IPSEC_DEBUG	# debug for IP security
73#options 	MROUTING	# IP multicast routing
74#options 	NS		# XNS
75#options 	NSIP		# XNS tunneling over IP
76#options 	ISO,TPIP	# OSI
77#options 	EON		# OSI tunneling over IP
78#options 	CCITT,LLC,HDLC	# X.25
79#options 	NETATALK	# AppleTalk networking
80#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
81#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
82#options 	PPP_DEFLATE	# Deflate compression support for PPP
83#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
84#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
85
86options 	NFS_BOOT_BOOTP
87options 	NFS_BOOT_DHCP
88#options 	NFS_BOOT_BOOTPARAM
89
90# Compatibility options
91
92options 	COMPAT_16	# NetBSD 1.6
93options 	COMPAT_20	# NetBSD 2.0
94#options 	COMPAT_43	# 4.3BSD compatibility.
95#options 	COMPAT_16	# NetBSD 1.6 compatibility.
96#options 	COMPAT_15	# NetBSD 1.5 compatibility.
97#options 	COMPAT_14	# NetBSD 1.4 compatibility.
98#options 	COMPAT_13	# NetBSD 1.3 compatibility.
99#options 	COMPAT_12	# NetBSD 1.2 compatibility.
100#options 	COMPAT_11	# NetBSD 1.1 compatibility.
101#options 	COMPAT_10	# NetBSD 1.0 compatibility.
102#options 	COMPAT_09	# NetBSD 0.9 compatibility.
103#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
104options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
105
106# Shared memory options
107
108#options 	SYSVMSG		# System V-like message queues
109#options 	SYSVSEM		# System V-like semaphores
110#options 	SEMMNI=10	# number of semaphore identifiers
111#options 	SEMMNS=60	# number of semaphores in system
112#options 	SEMUME=10	# max number of undo entries per process
113#options 	SEMMNU=30	# number of undo structures in system
114#options 	SYSVSHM		# System V-like memory sharing
115#options 	SHMMAXPGS=1024	# 1024 pages is the default
116
117# Device options
118
119#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
120#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
121#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
122
123# Console options.  The default console is speed is 115200 baud.
124#options 	CONSPEED=9600		# Console speed
125
126# Miscellaneous kernel options
127options 	KTRACE		# system call tracing, a la ktrace(1)
128options 	IRQSTATS	# manage IRQ statistics
129#options 	LKM		# loadable kernel modules
130#options 	KMEMSTATS	# kernel memory statistics
131#options 	SCSIVERBOSE	# Verbose SCSI errors
132options 	PCIVERBOSE	# Verbose PCI descriptions
133options 	MIIVERBOSE	# Verbose MII autoconfuration messages
134#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
135#options 	DDB_KEYCODE=0x40
136options 	USERCONF	# userconf(4) support
137#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
138
139# Development and Debugging options
140
141options 	PERFCTRS	# performance counters
142options 	DIAGNOSTIC	# internally consistency checks
143options 	DEBUG
144#options 	PMAP_DEBUG	# Enable pmap_debug_level code
145#options 	IPKDB		# remote kernel debugging
146#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
147options 	DDB		# in-kernel debugger
148options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
149makeoptions	DEBUG="-g"	# compile full symbol table
150options 	SYMTAB_SPACE=240000
151
152##options 	PMAP_INCLUDE_PTE_SYNC
153##options 	LOCKDEBUG
154
155##config		netbsd		root on ? type ?
156config		netbsd		root on rtk0 type nfs
157#config		netbsd-wm0	root on wm0 type nfs
158#config		netbsd-wd0	root on wd0 type ffs
159#config		netbsd-sd0	root on sd0 type ffs
160
161# The main bus device
162mainbus0	at root
163
164# The boot cpu
165cpu0		at mainbus?
166
167# i80321 I/O Processor peripheral support
168iopxs*          at mainbus?
169
170iopaau*         at iopxs?               # Application Accelerator Unit
171iopiic*         at iopxs?               # I2C Controller Unit(s) 
172iic0            at iopiic?
173iic1            at iopiic?
174iopwdog*        at iopxs?               # Watchdog timer
175pci0            at iopxs? bus ?         # PCI/PCI-X support
176
177# PCI bridges
178ppb*            at pci? dev ? function ?
179pci*            at ppb? bus ?
180
181# VGA
182#vga*            at pci? dev ? function ?
183
184# IDE and related devices
185# PCI IDE controllers - see pciide(4) for supported hardware.
186# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
187# how to set up DMA modes for this chip. This may work, or may cause
188# a machine hang with some controllers.
189pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
190acardide*	at pci? dev ? function ?	# Acard IDE controllers
191aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
192artsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
193cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
194cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
195hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
196optiide* 	at pci? dev ? function ?	# Opti IDE controllers
197pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
198pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
199rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
200satalink*	at pci? dev ? function ?	# SiI SATALink controllers
201siside* 	at pci? dev ? function ?	# SiS IDE controllers
202slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
203stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
204viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
205
206# ATA (IDE) bus support
207atabus* at ata?
208
209# IDE drives
210# Flags are used only with controllers that support DMA operations
211# and mode settings (e.g. some pciide controllers)
212# The lowest order four bits (rightmost digit) of the flags define the PIO
213# mode to use, the next set of four bits the DMA mode and the third set the
214# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
215# to use, and the last bit must be 1 for this setting to be used.
216# For DMA and UDMA, 0xf (1111) means 'disable'.
217# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
218# (0xc=1100, 0xa=1010, 0xf=1111)
219# 0x0000 means "use whatever the drive claims to support".
220wd*	at atabus? drive ? flags 0x0000
221
222# ATA RAID configuration support, as found on some Promise controllers.
223pseudo-device	ataraid
224ld*	at ataraid? vendtype ? unit ?
225
226# ATAPI bus support
227atapibus* at atapi?
228
229# ATAPI devices
230# flags have the same meaning as for IDE drives.
231# XXX No DMA on IDE devices for now
232cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
233sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
234st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
235uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
236
237# PCI network interfaces
238# an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
239# ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
240# atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
241# bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
242# bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
243# en*	at pci? dev ? function ?	# ENI/Adaptec ATM
244# ep*	at pci? dev ? function ?	# 3Com 3c59x
245# epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
246# esh*	at pci? dev ? function ?	# Essential HIPPI card
247# ex*	at pci? dev ? function ?	# 3Com 90x[BC]
248# fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
249# fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
250# gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
251#hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
252# le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
253# lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
254# mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
255# ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
256# ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
257# pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
258# re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
259rtk*	at pci? dev ? function ?	# Realtek 8129/8139
260# sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
261# sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
262# skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
263# sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
264# ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
265# stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
266# ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
267# tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
268# tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
269# vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
270# wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
271wm*	at pci? dev ? function ?	# Intel 8254x gigabit
272
273# MII/PHY support
274acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
275amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
276bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
277brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
278dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
279exphy*	at mii? phy ?			# 3Com internal PHYs
280gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
281glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
282gphyter* at mii? phy ?			# NS83861 Gig-E PHY
283icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
284igphy*	at mii? phy ?			# Intel IGP01E1000
285inphy*	at mii? phy ?			# Intel 82555 PHYs
286iophy*	at mii? phy ?			# Intel 82553 PHYs
287lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
288makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
289nsphy*	at mii? phy ?			# NS83840 PHYs
290nsphyter* at mii? phy ? 		# NS83843 PHYs
291pnaphy* at mii? phy ?			# generic HomePNA PHYs
292qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
293sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
294tlphy*	at mii? phy ?			# ThunderLAN PHYs
295tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
296ukphy*	at mii? phy ?			# generic unknown PHYs
297urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
298
299# USB Controller and Devices
300
301# PCI USB controllers
302# The EHCI is not ready for prime time.
303#ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
304ohci*	at pci?	dev ? function ?	# Open Host Controller
305uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
306
307# CardBus USB controllers
308#ehci*	at cardbus? dev ? function ?	# Enhanced Host Controller
309#ohci*	at cardbus? dev ? function ?	# Open Host Controller
310
311# ISA USB controllers
312#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
313
314# USB bus support
315#usb*	at ehci?
316usb*	at ohci?
317usb*	at uhci?
318#usb*	at slhci?
319
320# USB Hubs
321# uhub*	at usb?
322# uhub*	at uhub? port ? configuration ? interface ?
323
324# USB HID device
325# uhidev*	at uhub? port ? configuration ? interface ?
326
327# USB Mice
328# ums*	at uhidev? reportid ?
329# wsmouse* at ums? mux 0
330
331# USB eGalax touch-panel
332# uep*	at uhub? port ?
333# wsmouse* at uep? mux 0
334
335# USB Keyboards
336# ukbd*	at uhidev? reportid ?
337# wskbd*	at ukbd? console ? mux 1
338
339# USB serial adpater
340# ucycom*	at uhidev? reportid ?
341
342# USB Generic HID devices
343# uhid*	at uhidev? reportid ?
344
345# USB Printer
346# ulpt*	at uhub? port ? configuration ? interface ?
347
348# USB Modem
349# umodem*	at uhub? port ? configuration ?
350# ucom*	at umodem?
351
352# USB Mass Storage
353# umass*	at uhub? port ? configuration ? interface ?
354# scsibus* at umass?
355# wd*	at umass?
356
357# USB audio
358# uaudio*	at uhub? port ? configuration ?
359
360# USB MIDI
361# umidi* at uhub? port ? configuration ?
362
363# USB IrDA
364# USB-IrDA bridge spec
365# uirda* at uhub? port ? configuration ? interface ?
366# irframe* at uirda?
367
368# SigmaTel STIr4200 USB/IrDA Bridge
369# ustir* at uhub? port ?
370# irframe* at ustir?
371
372# USB Ethernet adapters
373# aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
374# axe*	at uhub? port ?		# ASIX AX88172 based adapters
375# cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
376# kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
377# udav*	at uhub? port ?		# Davicom DM9601 based adapters
378# url*	at uhub? port ?		# Realtek RTL8150L based adapters
379
380# Prolific PL2301/PL2302 host-to-host adapter
381# upl*	at uhub? port ?
382
383# Serial adapters
384# ubsa*	at uhub? port ?		# Belkin serial adapter
385# ucom*	at ubsa? portno ?
386
387# uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
388# ucom*	at uftdi? portno ?
389
390# umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
391# ucom*	at umct? portno ?
392
393# uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
394# ucom*	at uplcom? portno ?
395
396# uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
397# ucom*	at uvscom? portno ?
398
399# Diamond Multimedia Rio 500
400# urio*	at uhub? port ?
401
402# USB Handspring Visor
403# uvisor*	at uhub? port ?
404# ucom*	at uvisor?
405
406# Kyocera AIR-EDGE PHONE
407#ukyopon* at uhub? port ?
408#ucom*	at ukyopon? portno ?
409
410# USB scanners
411# uscanner* at uhub? port ?
412
413# USB scanners that use SCSI emulation, e.g., HP5300
414# usscanner* at uhub? port ?
415
416# Y@P firmware loader
417# uyap* at uhub? port ?
418
419# D-Link DSB-R100 USB radio
420# udsbr*	at uhub? port ?
421# radio*	at udsbr?
422
423# USB Generic driver
424# ugen*	at uhub? port ?
425
426
427# IrDA and Consumer Ir devices
428
429# Toshiba Oboe
430# oboe* 	at pci? dev ? function ?
431# irframe* at oboe?
432
433# PCI IEEE1394 controllers
434#fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
435
436# CardBus IEEE1394 controllers
437#fwohci* at cardbus? dev ? function ?	# IEEE1394 Open Host Controller
438
439#fw*	at fwbus?			# IP over 1394
440
441# IEEE1394 nodes
442#fwnode* at fwbus? idhi ? idlo ?
443#sbpscsi* at fwnode?
444#scsibus* at sbpscsi?
445
446# Audio Devices
447
448# PCI audio devices
449auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
450autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
451auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
452clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
453clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
454cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
455eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
456emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
457esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
458esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
459eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
460fms*	at pci? dev ? function ?	# Forte Media FM801
461neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
462sv*	at pci? dev ? function ?	# S3 SonicVibes
463yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
464
465# OPL[23] FM synthesizers
466opl*	at cmpci? flags 1
467opl*	at eso?
468opl*	at fms?
469opl*	at sv?
470opl*	at yds?
471
472# Audio support
473audio*	at audiobus?
474
475# MPU 401 UARTs
476mpu*	at cmpci?
477mpu*	at eso?
478mpu*	at fms?
479mpu*	at yds?
480
481# MIDI support
482midi*	at midibus?
483
484# On-board device support
485obio*	at mainbus?
486#com1	at obio? addr 0x900003e8 xint 1 # on-board UART
487com0	at obio? addr 0x900002f8 xint 1 # on-board UART
488#com*	at obio? addr 0x900003e8 xint 1 # on-board UART
489#com*	at obio? addr 0x900003f8 xint 1 # on-board UART
490
491# Pseudo-Devices
492
493# disk/mass storage pseudo-devices
494pseudo-device	md		1	# memory disk device (ramdisk)
495#pseudo-device	vnd		4	# disk-like interface to files
496#options 	VND_COMPRESSION		# compressed vnd(4)
497pseudo-device	fss		4	# file system snapshot device
498
499# network pseudo-devices
500pseudo-device	bpfilter	4	# Berkeley packet filter
501pseudo-device	loop			# network loopback
502#pseudo-device	kttcp			# network loopback
503
504# miscellaneous pseudo-devices
505pseudo-device	pty			# pseudo-terminals
506pseudo-device	rnd			# /dev/random and in-kernel generator
507pseudo-device	clockctl		# user control of clock subsystem
508pseudo-device	ksyms			# /dev/ksyms
509
510# data mover pseudo-devices
511#pseudo-device	swdmover		# softare dmover(9) back-end
512#pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
513