PCCONS revision 1.17
1#	$NetBSD: PCCONS,v 1.17 2002/02/10 17:36:55 wiz Exp $
2#	$OpenBSD: GENERIC,v 1.29 1999/08/29 12:14:03 niklas Exp $
3#
4#	PCCONS -- generic but pccons rather than wscons
5#
6
7include		"arch/arc/conf/std.arc"
8
9maxusers	32		# estimated number of users
10
11# Platform support
12options 	PLATFORM_ACER_PICA_61		# Pica, NEC ImageRISCstation
13options 	PLATFORM_DESKTECH_ARCSTATION_I	# DESKstation rPC44
14options 	PLATFORM_DESKTECH_TYNE		# DESKstation Tyne
15options 	PLATFORM_MICROSOFT_JAZZ		# MIPS Magnum
16options 	PLATFORM_NEC_JC94		# NEC Express 5800/230 PCI R4K
17options 	PLATFORM_NEC_R94		# NEC RISCstation 2200 EISA
18options 	PLATFORM_NEC_R96	# NEC Express RISCserver, RISCserver 2200
19options 	PLATFORM_NEC_RAX94		# NEC RISCstation 2200 PCI
20options 	PLATFORM_NEC_RD94		# NEC RISCstation 2250
21options 	PLATFORM_SNI_RM200PCI
22
23# Standard system options
24
25options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
26options 	NTP		# NTP phase/frequency locked loop
27
28options 	KTRACE		# system call tracing via ktrace(1)
29
30options 	SYSVMSG		# System V-like message queues
31options 	SYSVSEM		# System V-like semaphores
32options 	SYSVSHM		# System V-like memory sharing
33#options 	SHMMAXPGS=1024	# 1024 pages is the default
34
35options 	LKM		# loadable kernel modules
36
37#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
38
39# Diagnostic/debugging support options
40options 	DIAGNOSTIC		# cheap kernel consistency checks
41#options 	DEBUG			# expensive debugging checks/support
42#options 	KMEMSTATS		# kernel memory statistics (vmstat -m)
43options 	DDB			# in-kernel debugger
44#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
45#options 	KGDB			# remote gdb
46#options 	KGDB_DEVRATE=19200	# kernel gdb port rate (default 9600)
47#options 	KGDB_DEV="17*256+0"	# device for kernel gdb
48#makeoptions	DEBUG="-g"		# compile full symbol table
49
50# Compatibility options
51#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
52options 	COMPAT_10	# NetBSD 1.0,
53options 	COMPAT_11	# NetBSD 1.1,
54options 	COMPAT_12	# NetBSD 1.2,
55options 	COMPAT_13	# NetBSD 1.3,
56options 	COMPAT_14	# NetBSD 1.4,
57options 	COMPAT_43	# and 4.3BSD
58options 	COMPAT_386BSD_MBRPART # recognize old partition ID
59
60# mipsel specific
61options 	COMPAT_ULTRIX	# Ultrix binary compatibility
62options 	EXEC_ECOFF	# Ultrix RISC binaries are ECOFF format
63
64# File systems
65file-system 	FFS		# fast filesystem
66file-system 	EXT2FS		# second extended file system (linux)
67file-system 	LFS		# log-structured file system
68file-system 	MFS		# memory file system
69file-system 	NTFS		# Windows/NT file system (experimental)
70file-system 	CD9660		# ISO 9660 + Rock Ridge file system
71file-system 	MSDOSFS		# MS-DOS file system
72file-system 	NFS		# Network File System client
73file-system 	FDESC		# /dev/fd
74file-system 	KERNFS		# /kern
75file-system 	NULLFS		# loopback file system
76file-system 	OVERLAY		# overlay file system
77file-system 	PORTAL		# portal filesystem (still experimental)
78file-system 	PROCFS		# /proc
79file-system 	UMAPFS		# NULLFS + uid and gid remapping
80file-system 	UNION		# union file system
81#file-system	CODA		# Coda File System; also needs vcoda (below)
82
83# File system options
84options 	QUOTA		# FFS quotas
85#options 	FFS_EI		# FFS Endian Independent support
86options 	SOFTDEP		# FFS soft updates support.
87options 	NFSSERVER	# Network File System server
88#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
89				# immutable) behave as system flags.
90
91# Networking options
92#options 	GATEWAY		# IP packet forwarding
93options 	INET		# IP + ICMP + TCP + UDP
94options 	INET6		# IPV6
95#options 	IPSEC		# IP security
96#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
97#options 	IPSEC_DEBUG	# debug for IP security
98#options 	MROUTING	# IP multicast routing
99options 	NS		# XNS
100#options 	NSIP		# XNS tunneling over IP
101options 	ISO,TPIP	# OSI networking
102#options 	EON		# OSI tunneling over IP
103options 	CCITT,LLC,HDLC	# X.25
104options 	NETATALK	# AppleTalk networking protocols
105options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
106options 	PPP_DEFLATE	# Deflate compression support for PPP
107options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
108options 	PFIL_HOOKS	# pfil(9) packet filter hooks
109options 	IPFILTER_LOG	# ipmon(8) log support
110#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
111
112# These options enable verbose messages for several subsystems.
113# Warning, these may compile large string tables into the kernel!
114#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
115options 	PCIVERBOSE	# verbose PCI device autoconfig messages
116#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
117options 	SCSIVERBOSE	# human readable SCSI error messages
118
119# wscons terminal emulation
120options 	WSEMUL_VT100	# VT100 emulation
121
122# Kernel root file system and dump configuration.
123options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
124config		netbsd	root on ? type ?
125#config		netbsd	root on sd0a type ffs
126#config		netbsd	root on ? type nfs
127
128#
129# Device configuration
130#
131
132mainbus0	at root
133cpu*		at mainbus0
134
135#### Jazz-Internal bus devices
136
137# PLATFORM_ACER_PICA_61
138# PLATFORM_MICROSOFT_JAZZ
139# PLATFORM_NEC_JC94
140# PLATFORM_NEC_R94
141# PLATFORM_NEC_R96
142# PLATFORM_NEC_RAX94
143# PLATFORM_NEC_RD94
144jazzio*		at mainbus0	# Jazz-Internal bus host bridge.
145
146timer0		at jazzio?
147mcclock0 	at jazzio?
148pc0		at jazzio?
149opms0		at jazzio?
150com0		at jazzio?
151com1		at jazzio?
152lpt0		at jazzio?
153sn0		at jazzio?
154
155fdc0		at jazzio?
156fd*		at fdc? drive ?
157
158asc0		at jazzio?			# NCR53C9x SCSI
159scsibus* 	at asc?
160
161osiop0		at jazzio? flags 0x00000	# NCR53C710 SCSI
162osiop1		at jazzio? flags 0x00000
163scsibus* 	at osiop?
164
165#oosiop0 	at jazzio?			# NCR53C700 SCSI
166#oosiop1 	at jazzio?
167#scsibus* 	at oosiop?
168
169#### ISA bus devices
170
171# PLATFORM_ACER_PICA_61
172# PLATFORM_MICROSOFT_JAZZ
173# PLATFORM_NEC_R94
174# PLATFORM_NEC_R96
175jazzisabr*	at mainbus0	# Jazz-(E)ISA bus bridge.
176isa*		at jazzisabr?
177
178# PLATFORM_DESKTECH_ARCSTATION_I
179arcsisabr*	at mainbus0	# DESKstation rPC44 ISA host bridge.
180isa*		at arcsisabr?
181
182# PLATFORM_DESKTECH_TYNE
183tyneisabr*	at mainbus0	# DESKstation Tyne ISA host bridge.
184isa*		at tyneisabr?
185
186#isadma0 	at isa?
187
188timer0		at isa? port 0x40 irq 0
189mcclock0 	at isa? port 0x70
190
191pc0		at isa? irq 1			# generic PC console device
192opms0		at isa? irq 12			# PS/2 auxiliary port mouse
193#vga0		at isa?
194#pckbc0		at isa?				# PC keyboard controller
195com0		at isa? port 0x3f8 irq 4
196com1		at isa? port 0x2f8 irq 3
197com2		at isa? port 0x3e8 irq 4
198com3		at isa? port 0x2e8 irq 3
199ast0		at isa? port 0x1a0 irq 3	# AST 4-port serial cards
200com*		at ast? slave ?
201
202# Joystick driver. Probe is a little strange; add only if you have one.
203#joy0		at isa? port 0x201
204
205# ISA ST506, ESDI, and IDE controllers
206# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
207# fall back to 16bits I/O if 32bits I/O are not functional).
208# Some controllers pass the initial 32bit test, but will fail later.
209# XXX - should be configured
210#wdc0		at isa? port 0x1f0 irq 14 flags 0x00
211#wdc1		at isa? port 0x170 irq 15 flags 0x00
212#wdc*		at isapnp?
213
214# IDE drives
215# Flags are used only with controllers that support DMA operations
216# and mode settings (e.g. some pciide controllers)
217# The lowest order four bits (rightmost digit) of the flags define the PIO
218# mode to use, the next set of four bits the DMA mode and the third set the
219# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
220# to use, and the last bit must be 1 for this setting to be used.
221# For DMA and UDMA, 0xf (1111) means 'disable'.
222# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
223# (0xc=1100, 0xa=1010, 0xf=1111)
224# 0x0000 means "use whatever the drive claims to support".
225# XXX - should be configured
226#wd*		at wdc? channel ? drive ? flags 0x0000
227
228# ATAPI bus support
229# XXX - should be configured
230#atapibus*	at wdc? channel ?
231
232# ISA parallel printer interfaces
233lpt0		at isa? port 0x378 irq 7
234
235# ISA network interfaces
236# XXX - should be configured
237#ec0		at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
238#ep0		at isa? port ? irq ?		# 3C509 ethernet cards
239#ne0		at isa? port 0x280 irq 9	# NE[12]000 ethernet cards
240#ne1		at isa? port 0x300 irq 10
241#ne*		at isapnp?			# NE[12]000 PnP ethernet
242#we0		at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
243#we1		at isa? port 0x300 iomem 0xcc000 irq 10
244#we*		at isapnp?
245
246# XXX - should be configured
247#btl0		at isa? port 0x330 irq ? drq ?
248#scsibus*	at btl?
249
250#### PCI bus devices
251
252# PLATFORM_NEC_JC94
253# PLATFORM_NEC_RAX94
254# PLATFORM_NEC_RD94
255necpb*		at mainbus0	# NEC RISCstation PCI host bridge.
256pci*		at necpb?
257
258#pcivga* 	at pci? dev ? function ?
259tga*		at pci? dev ? function ?	# DEC ZLXp-E[123] Graphics
260
261ahc*		at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
262scsibus*	at ahc?
263
264iha*		at pci? dev ? function ?	# Initio INIC-940/950 SCSI
265scsibus*	at iha?
266
267pcscp*		at pci? dev ? function ?	# AMD Am53c974 PCscsi-PCI SCSI
268scsibus* 	at pcscp?
269
270siop*		at pci? dev ? function ?	# NCR/Symbios 53c8xx SCSI
271scsibus* 	at siop?
272
273trm*		at pci? dev ? function ?	# Tekram DC-395/315 SCSI
274scsibus* 	at trm?
275
276#de*		at pci? dev ? function ?
277epic*		at pci? dev ? function ?	# SMC EPIC/100 Ethernet
278ex*		at pci? dev ? function ?	# 3Com 90x[BC]
279fxp*		at pci? dev ? function ?	# Intel EtherExpress PRO
280ne*		at pci? dev ? function ?	# NE2000-compatible
281pcn*		at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
282rtk*		at pci? dev ? function ?	# Realtek 8129/8139
283sip*		at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
284tlp*		at pci? dev ? function ?	# DECchip 21x4x (and clones)
285#options 	TLP_MATCH_21040
286#options 	TLP_MATCH_21041
287#options 	TLP_MATCH_21140
288#options 	TLP_MATCH_21142
289
290# IDE and related devices
291# PCI IDE controllers - see pciide(4) for supported hardware.
292# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
293# how to set up DMA modes for this chip. This may work, or may cause
294# a machine hang with some controllers.
295pciide*		at pci ? dev ? function ? flags 0x0000
296wd*		at pciide? channel ? drive ? flags 0x0000
297atapibus*	at pciide? channel ?
298
299#### MII/PHY support
300
301exphy*		at mii? phy ?		# 3Com internal PHYs
302icsphy*		at mii? phy ?		# Integrated Circuit Systems ICS189x
303inphy*		at mii? phy ?		# Intel 82555 PHYs
304iophy*		at mii? phy ?		# Intel 82553 PHYs
305lxtphy*		at mii? phy ?		# Level One LXT-970 PHYs
306nsphy*		at mii? phy ?		# NS83840 PHYs
307nsphyter*	at mii? phy ?		# NS83843 PHYs
308qsphy*		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
309sqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
310tlphy*		at mii? phy ?		# ThunderLAN PHYs
311tqphy*		at mii? phy ?		# TDK Semiconductor PHYs
312ukphy*		at mii? phy ?		# generic unknown PHYs
313
314#### SCSI bus devices
315
316sd*		at scsibus? target ? lun ?
317st*		at scsibus? target ? lun ?
318cd*		at scsibus? target ? lun ?
319ch*		at scsibus? target ? lun ?
320ss*		at scsibus? target ? lun ?
321uk*		at scsibus? target ? lun ?
322
323#### ATAPI bus devices
324
325# flags have the same meaning as for IDE drives.
326cd*		at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
327sd*		at atapibus? drive ? flags 0x0000	# ATAPI disk drives
328uk*		at atapibus? drive ? flags 0x0000	# ATAPI unknown
329
330#### Workstation Console attachments
331
332wsdisplay*	at tga?
333
334#### Pseudo devices
335
336# disk/mass storage pseudo-devices
337pseudo-device	ccd		4	# concatenated/striped disk devices
338#pseudo-device	raid		4	# RAIDframe disk driver
339pseudo-device	md		1	# memory disk device (ramdisk)
340pseudo-device	vnd		4	# disk-like interface to files
341
342# network pseudo-devices
343pseudo-device	bpfilter	8	# Berkeley packet filter
344pseudo-device	ipfilter		# IP filter (firewall) and NAT
345pseudo-device	loop		1	# network loopback
346pseudo-device	ppp		2	# Point-to-Point Protocol
347pseudo-device	sl		2	# Serial Line IP
348#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
349pseudo-device	tun		2	# network tunneling over tty
350#pseudo-device	gre		2	# generic L3 over IP tunnel
351pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
352pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
353#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
354#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
355pseudo-device	vlan			# IEEE 802.1q encapsulation
356
357# miscellaneous pseudo-devices
358pseudo-device	pty			# pseudo-terminals
359pseudo-device	tb		1	# tablet line discipline
360#pseudo-device	sequencer	1	# MIDI sequencer
361# rnd works; RND_COM does not on port arc yet.
362pseudo-device	rnd			# /dev/random and in-kernel generator
363#options 	RND_COM			# use "com" randomness as well (BROKEN)
364
365# a pseudo device needed for Coda	# also needs CODA (above)
366#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
367
368# mouse & keyboard multiplexor pseudo-devices
369#pseudo-device	wsmux
370