xref: /netbsd-src/sys/arch/arc/conf/MIMORI (revision b5677b36047b601b9addaaa494a58ceae82c2a6c)
1#	$NetBSD: MIMORI,v 1.52 2009/03/06 20:31:47 joerg Exp $
2#	NetBSD: GENERIC,v 1.31 2000/06/09 05:33:02 soda Exp
3#
4#	MIMORI -- My NEC RISCstation 2250 (ur)
5#
6
7include		"arch/arc/conf/std.arc"
8
9#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
10
11maxusers	32		# estimated number of users
12
13# Platform support
14options 	PLATFORM_NEC_RD94		# NEC RISCstation 2250
15
16# Standard system options
17
18options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
19options 	NTP		# NTP phase/frequency locked loop
20
21options 	KTRACE		# system call tracing via ktrace(1)
22
23options 	SYSVMSG		# System V-like message queues
24options 	SYSVSEM		# System V-like semaphores
25options 	SYSVSHM		# System V-like memory sharing
26
27options 	USERCONF	# userconf(4) support
28#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
29#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
30
31# Diagnostic/debugging support options
32options 	DIAGNOSTIC		# cheap kernel consistency checks
33#options 	DEBUG			# expensive debugging checks/support
34#options 	KMEMSTATS		# kernel memory statistics (vmstat -m)
35options 	DDB			# in-kernel debugger
36#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
37#options 	KGDB			# remote gdb
38#options 	KGDB_DEVRATE=19200	# kernel gdb port rate (default 9600)
39#options 	KGDB_DEV="17*256+0"	# device for kernel gdb
40#makeoptions	DEBUG="-g"		# compile full symbol table
41
42# Compatibility options
43#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
44options 	COMPAT_10	# NetBSD 1.0,
45options 	COMPAT_11	# NetBSD 1.1,
46options 	COMPAT_12	# NetBSD 1.2,
47options 	COMPAT_13	# NetBSD 1.3,
48options 	COMPAT_14	# NetBSD 1.4,
49options 	COMPAT_15	# NetBSD 1.5,
50options 	COMPAT_16	# NetBSD 1.6,
51options 	COMPAT_20	# NetBSD 2.0,
52options 	COMPAT_30	# NetBSD 3.0,
53options 	COMPAT_40	# NetBSD 4.0 compatibility.
54options 	COMPAT_43	# and 4.3BSD
55options 	COMPAT_386BSD_MBRPART # recognize old partition ID
56
57# mipsel specific
58#options 	COMPAT_ULTRIX	# Ultrix binary compatibility
59#options 	EXEC_ECOFF	# Ultrix RISC binaries are ECOFF format
60options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
61
62# File systems
63file-system 	FFS		# fast filesystem
64#file-system 	EXT2FS		# second extended file system (linux)
65#file-system 	LFS		# log-structured file system
66file-system 	MFS		# memory file system
67file-system 	NTFS		# Windows/NT file system (experimental)
68file-system 	CD9660		# ISO 9660 + Rock Ridge file system
69file-system 	MSDOSFS		# MS-DOS file system
70file-system 	NFS		# Network File System client
71file-system 	FDESC		# /dev/fd
72file-system 	KERNFS		# /kern
73file-system 	NULLFS		# loopback file system
74#file-system 	OVERLAY		# overlay file system
75#file-system 	PORTAL		# portal filesystem (still experimental)
76file-system 	PROCFS		# /proc
77#file-system 	UMAPFS		# NULLFS + uid and gid remapping
78#file-system 	UNION		# union file system
79#file-system	CODA		# Coda File System; also needs vcoda (below)
80file-system	PTYFS		# /dev/pts/N support
81
82# File system options
83#options 	QUOTA		# FFS quotas
84#options 	FFS_EI		# FFS Endian Independent support
85options 	NFSSERVER	# Network File System server
86#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
87				# immutable) behave as system flags.
88#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
89
90# Networking options
91#options 	GATEWAY		# IP packet forwarding
92options 	INET		# IP + ICMP + TCP + UDP
93options 	INET6		# IPV6
94options 	IPSEC		# IP security
95options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
96options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
97#options 	IPSEC_DEBUG	# debug for IP security
98#options 	MROUTING	# IP multicast routing
99#options 	PIM		# Protocol Independent Multicast
100#options 	ISO,TPIP	# OSI networking
101#options 	EON		# OSI tunneling over IP
102#options 	NETATALK	# AppleTalk networking protocols
103options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
104options 	PPP_DEFLATE	# Deflate compression support for PPP
105options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
106options 	PFIL_HOOKS	# pfil(9) packet filter hooks
107options 	IPFILTER_LOG	# ipmon(8) log support
108options 	IPFILTER_LOOKUP	# ippool(8) support
109#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
110
111# These options enable verbose messages for several subsystems.
112# Warning, these may compile large string tables into the kernel!
113options 	EISAVERBOSE	# verbose EISA device autoconfig messages
114options 	PCIVERBOSE	# verbose PCI device autoconfig messages
115#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
116options 	SCSIVERBOSE	# human readable SCSI error messages
117
118# wscons terminal emulation
119options 	WSEMUL_VT100	# VT100 emulation
120
121# Kernel root file system and dump configuration.
122options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
123config		netbsd	root on ? type ?
124#config		netbsd	root on sd0a type ffs
125#config		netbsd	root on ? type nfs
126
127#
128# Device configuration
129#
130
131mainbus0	at root
132cpu*		at mainbus0
133
134#### Jazz-Internal bus devices
135
136# PLATFORM_ACER_PICA_61
137# PLATFORM_MICROSOFT_JAZZ
138# PLATFORM_NEC_JC94
139# PLATFORM_NEC_R94
140# PLATFORM_NEC_R96
141# PLATFORM_NEC_RAX94
142# PLATFORM_NEC_RD94
143jazzio*		at mainbus0	# Jazz-Internal bus host bridge.
144
145timer0		at jazzio?
146mcclock0 	at jazzio?
147#pc0		at jazzio?
148#opms0		at jazzio?
149#vga0		at jazzio?	# Jazz localbus VGA
150pckbc0		at jazzio?	# PC keyboard controller
151com0		at jazzio?
152com1		at jazzio?
153lpt0		at jazzio?
154sn0		at jazzio?
155
156fdc0		at jazzio?
157fd*		at fdc? drive ?
158
159oosiop* 	at jazzio?			# NCR53C700 SCSI
160
161#### PCI bus devices
162
163# PLATFORM_NEC_JC94
164# PLATFORM_NEC_RAX94
165# PLATFORM_NEC_RD94
166necpb*		at mainbus0	# NEC RISCstation PCI host bridge.
167pci*		at necpb?
168
169#pcivga* 	at pci? dev ? function ?
170tga*		at pci? dev ? function ?	# DEC ZLXp-E[123] Graphics
171
172ahc*		at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
173#siop*		at pci? dev ? function ?	# NCR/Symbios 53c8xx SCSI
174
175# PCI IDE controllers - see pciide(4) for supported hardware.
176# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
177# how to set up DMA modes for this chip. This may work, or may cause
178# a machine hang with some controllers.
179pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
180acardide*	at pci? dev ? function ?	# Acard IDE controllers
181#aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
182artsata*	at pci? dev ? function ?	# Intel i31244 SATA controller
183cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
184cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
185hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
186optiide* 	at pci? dev ? function ?	# Opti IDE controllers
187pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
188pdcsata* 	at pci? dev ? function ?	# Promise SATA150 controllers
189satalink*	at pci? dev ? function ?	# SiI SATALink controllers
190#siside* 	at pci? dev ? function ?	# SiS IDE controllers
191slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
192#viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
193
194ex*		at pci? dev ? function ?	# 3Com 90x[BC]
195fxp*		at pci? dev ? function ?	# Intel EtherExpress PRO
196le*		at pci? dev ? function ?	# PCnet-PCI
197ne*		at pci? dev ? function ?	# NE2000-compatible
198tlp*		at pci? dev ? function ?	# DECchip 21x4x and clones
199
200#### MII/PHY support
201
202exphy*		at mii? phy ?		# 3Com internal PHYs
203icsphy*		at mii? phy ?		# Integrated Circuit Systems ICS189x
204inphy*		at mii? phy ?		# Intel 82555 PHYs
205iophy*		at mii? phy ?		# Intel 82553 PHYs
206lxtphy*		at mii? phy ?		# Level One LXT-970 PHYs
207nsphy*		at mii? phy ?		# NS83840 PHYs
208nsphyter*	at mii? phy ?		# NS83843 PHYs
209qsphy*		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
210sqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
211tlphy*		at mii? phy ?		# ThunderLAN PHYs
212tqphy*		at mii? phy ?		# TDK Semiconductor PHYs
213ukphy*		at mii? phy ?		# generic unknown PHYs
214
215# SCSI bus supoort
216scsibus*	at scsi?
217
218#### SCSI bus devices
219
220sd*		at scsibus? target ? lun ?
221st*		at scsibus? target ? lun ?
222cd*		at scsibus? target ? lun ?
223ch*		at scsibus? target ? lun ?
224ss*		at scsibus? target ? lun ?
225uk*		at scsibus? target ? lun ?
226
227# ATA (IDE) bus support
228atabus* 	at ata?
229
230# IDE drives
231wd*		at atabus? drive ? flags 0x0000
232
233# ATAPI bus support
234atapibus*	at atapi?
235
236#### ATAPI bus devices
237
238# flags have the same meaning as for IDE drives.
239cd*		at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
240sd*		at atapibus? drive ? flags 0x0000	# ATAPI disk drives
241uk*		at atapibus? drive ? flags 0x0000	# ATAPI unknown
242
243#### Workstation Console attachments
244
245#wsdisplay*	at vga?
246wsdisplay*	at tga?
247pckbd*		at pckbc?	# PC keyboard (kbd port)
248wskbd*		at pckbd?
249pms*		at pckbc?	# PS/2-style mouse (aux port)
250wsmouse*	at pms?
251
252#### Pseudo devices
253
254# disk/mass storage pseudo-devices
255pseudo-device	ccd		4	# concatenated/striped disk devices
256#pseudo-device	raid		4	# RAIDframe disk driver
257#pseudo-device	fss		4	# file system snapshot device
258pseudo-device	md		1	# memory disk device (ramdisk)
259pseudo-device	vnd			# disk-like interface to files
260
261# network pseudo-devices
262pseudo-device	bpfilter		# Berkeley packet filter
263pseudo-device	ipfilter		# IP filter (firewall) and NAT
264pseudo-device	loop		1	# network loopback
265pseudo-device	ppp			# Point-to-Point Protocol
266pseudo-device	sl			# Serial Line IP
267#pseudo-device	strip			# Starmode Radio IP (Metricom)
268pseudo-device	tun			# network tunneling over tty
269pseudo-device	gre			# generic L3 over IP tunnel
270pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
271#pseudo-device	faith			# IPv[46] tcp relay translation i/f
272#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
273#pseudo-device	vlan			# IEEE 802.1q encapsulation
274
275# miscellaneous pseudo-devices
276pseudo-device	pty			# pseudo-terminals
277#pseudo-device	sequencer	1	# MIDI sequencer
278# rnd works; RND_COM does not on port arc yet.
279pseudo-device	rnd			# /dev/random and in-kernel generator
280#options 	RND_COM			# use "com" randomness as well (BROKEN)
281pseudo-device	clockctl		# user control of clock subsystem
282
283# a pseudo device needed for Coda	# also needs CODA (above)
284#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
285
286# mouse & keyboard multiplexor pseudo-devices
287#pseudo-device	wsmux
288