xref: /netbsd-src/sys/arch/iyonix/conf/GENERIC (revision e39ef1d61eee3ccba837ee281f1e098c864487aa)
1#	$NetBSD: GENERIC,v 1.69 2011/12/18 05:49:29 dholland Exp $
2#
3# GENERIC machine description file
4#
5# This machine description file is used to generate the default NetBSD
6# kernel.  The generic kernel does not include all options, subsystems
7# and device drivers, but should be useful for most applications.
8#
9# The machine description file can be customised for your specific
10# machine to reduce the kernel size and improve its performance.
11#
12# For further information on compiling NetBSD kernels, see the config(8)
13# man page.
14#
15# For further information on hardware support for this architecture, see
16# the intro(4) man page.  For further information about kernel options
17# for this architecture, see the options(4) man page.  For an explanation
18# of each device driver in this file see the section 4 man page for the
19# device.
20
21include	"arch/iyonix/conf/std.iyonix"
22
23options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
24
25#ident 		"GENERIC-$Revision: 1.69 $"
26
27maxusers	32		# estimated number of users
28
29options		MSGBUFSIZE=65536
30
31# CPU options
32
33# For XScale systems
34options 	CPU_XSCALE_80321	# Support the XScale core
35makeoptions	CPUFLAGS="-mcpu=xscale"
36
37# Architecture options
38options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
39#options 	HZ=512
40
41# Standard system options
42
43options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
44#options 	NTP		# NTP phase/frequency locked loop
45
46#options 	KTRACE		# system call tracing via ktrace(1)
47
48
49#options 	SYSVMSG		# System V-like message queues
50#options 	SYSVSEM		# System V-like semaphores
51#options 	SYSVSHM		# System V-like memory sharing
52#options 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
53
54# Device options
55
56# Console options.  The default console is speed is 115200 baud.
57#options 	CONSPEED=9600		# Console speed
58
59# Miscellaneous kernel options
60options 	KTRACE		# system call tracing, a la ktrace(1)
61options 	IRQSTATS	# manage IRQ statistics
62#options 	KMEMSTATS	# kernel memory statistics
63#options 	SCSIVERBOSE	# Verbose SCSI errors
64options 	PCIVERBOSE	# Verbose PCI descriptions
65options 	MIIVERBOSE	# Verbose MII autoconfuration messages
66#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
67
68options 	USERCONF	# userconf(4) support
69#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
70#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
71
72# Development and Debugging options
73
74# Enable experimental buffer queue strategy for better responsiveness under
75# high disk I/O load. Likely stable but not yet the default.
76#options 	BUFQ_READPRIO
77#options 	BUFQ_PRIOCSCAN
78
79# Diagnostic/debugging support options
80#options 	DIAGNOSTIC	# expensive kernel consistency checks
81#options 	DEBUG		# expensive debugging checks/support
82#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
83options 	DDB		# in-kernel debugger
84#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
85options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
86#options 	DDB_KEYCODE=0x40
87#options 	KGDB		# remote debugger
88#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
89makeoptions	DEBUG="-g"	# compile full symbol table
90options 	SYMTAB_SPACE=610000
91options 	PERFCTRS	# performance counters
92#options 	PMAP_DEBUG	# Enable pmap_debug_level code
93#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
94
95#options 	PMAP_INCLUDE_PTE_SYNC
96#options 	LOCKDEBUG
97
98
99# Compatibility options
100#options 	COMPAT_09	# NetBSD 0.9
101#options 	COMPAT_10	# NetBSD 1.0
102#options 	COMPAT_11	# NetBSD 1.1
103#options 	COMPAT_12	# NetBSD 1.2
104#options 	COMPAT_13	# NetBSD 1.3
105#options 	COMPAT_14	# NetBSD 1.4
106#options 	COMPAT_15	# NetBSD 1.5
107#options 	COMPAT_16	# NetBSD 1.6
108#options 	COMPAT_20	# NetBSD 2.0
109#options 	COMPAT_30	# NetBSD 3.0
110#options 	COMPAT_40	# NetBSD 4.0
111options 	COMPAT_50	# NetBSD 5.0 compatibility.
112#options 	COMPAT_43	# 4.3BSD
113#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
114options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
115
116# File systems
117file-system 	FFS		# UFS
118#file-system 	EXT2FS		# second extended file system (linux)
119#file-system 	LFS		# log-structured file system
120#file-system 	MFS		# memory file system
121file-system 	NFS		# Network File System client
122#file-system 	NTFS		# Windows/NT file system (experimental)
123file-system 	CD9660		# ISO 9660 + Rock Ridge file system
124file-system 	MSDOSFS		# MS-DOS file system
125#file-system 	FDESC		# /dev/fd
126#file-system 	KERNFS		# /kern
127#file-system 	NULLFS		# loopback file system
128#file-system 	OVERLAY		# overlay file system
129#file-system 	PROCFS		# /proc
130#file-system 	UMAPFS		# NULLFS + uid and gid remapping
131#file-system 	UNION		# union file system
132#file-system	CODA		# Coda File System; also needs vcoda (below)
133#file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
134#file-system	PTYFS		# /dev/ptm support
135#file-system	TMPFS		# Efficient memory file-system
136#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
137#file-system	HFS		# experimental - Apple HFS+ (read-only)
138file-system     FILECORE        # Acorn filecore file system
139
140# File system options
141#options 	QUOTA		# legacy UFS quotas
142#options 	QUOTA2		# new, in-filesystem UFS quotas
143#options 	FFS_EI		# FFS Endian Independent support
144options 	WAPBL		# File system journaling support
145# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
146# It is not recommended for general use.
147#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
148#options 	NFSSERVER	# Network File System server
149options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
150#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
151				# immutable) behave as system flags.
152
153# Networking options
154#options 	GATEWAY		# packet forwarding
155options 	INET		# IP + ICMP + TCP + UDP
156#options 	INET6		# IPV6
157#options 	IPSEC		# IP security
158#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
159#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
160#options 	IPSEC_DEBUG	# debug for IP security
161#options 	MROUTING	# IP multicast routing
162#options 	PIM		# Protocol Independent Multicast
163#options 	ISO,TPIP	# OSI
164#options 	EON		# OSI tunneling over IP
165#options 	NETATALK	# AppleTalk networking protocols
166#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
167#options 	PPP_DEFLATE	# Deflate compression support for PPP
168#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
169#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
170#options 	IPFILTER_LOG	# ipmon(8) log support
171#options 	IPFILTER_LOOKUP	# ippool(8) support
172#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
173#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
174
175#options 	ALTQ		# Manipulate network interfaces' output queues
176#options 	ALTQ_BLUE	# Stochastic Fair Blue
177#options 	ALTQ_CBQ	# Class-Based Queueing
178#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
179#options 	ALTQ_FIFOQ	# First-In First-Out Queue
180#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
181#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
182#options 	ALTQ_LOCALQ	# Local queueing discipline
183#options 	ALTQ_PRIQ	# Priority Queueing
184#options 	ALTQ_RED	# Random Early Detection
185#options 	ALTQ_RIO	# RED with IN/OUT
186#options 	ALTQ_WFQ	# Weighted Fair Queueing
187
188
189options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
190
191# Kernel root file system and dump configuration.
192config		netbsd	root on ? type ?
193#config		netbsd	root on sd0a type ffs
194#config		netbsd	root on ? type nfs
195
196#
197# Device configuration
198#
199
200mainbus0 at root
201
202cpu0 at mainbus?
203
204# i80321 I/O Processor peripheral support
205iopxs*          at mainbus?
206
207iopaau*         at iopxs?               # Application Accelerator Unit
208iopiic*         at iopxs?               # I2C Controller Unit(s)
209iic0            at iopiic?
210iic1            at iopiic?
211iopwdog*        at iopxs?               # Watchdog timer
212pci0            at iopxs? bus ?         # PCI/PCI-X support
213
214# The curious can see their RAM timings.
215spdmem* at iic1 addr 0x56
216
217# PCI bridges
218ppb*	at pci? dev ? function ?	# PCI-PCI bridges
219pci*	at ppb? bus ?
220# XXX 'puc's aren't really bridges, but there's no better place for them here
221#puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
222
223#options COMCONSOLE
224
225# VGA
226#vga*            at pci? dev ? function ?
227genfb*		at pci? dev ? function ?
228
229# Display
230wsdisplay0      at wsemuldisplaydev? console 1
231wsdisplay*      at wsemuldisplaydev?
232
233options 	WSEMUL_VT100			# VT100 / VT220 emulation
234
235# CardBus bridge support
236#cbb*		at pci? dev ? function ?
237#cardslot*	at cbb?
238
239# CardBus bus support
240#cardbus*	at cardslot?
241#pcmcia* 	at cardslot?
242
243# Serial Devices
244
245# PCI serial interfaces
246#com*	at puc? port ?			# 16x50s on "universal" comm boards
247#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
248#cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
249
250# PCMCIA serial interfaces
251#com*	at pcmcia? function ?		# Modems and serial cards
252
253#pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
254#com*	at pcmcom? slave ?		# ...and the slave devices
255
256# CardBus serial interfaces
257#com*	at cardbus? function ?	# Modems and serial cards
258
259# I2O devices
260#iop*	at pci? dev ? function ?	# I/O processor
261#iopsp*	at iop? tid ?			# SCSI/FC-AL ports
262#ld*	at iop? tid ?			# block devices
263#dpti*	at iop? tid 0			# DPT/Adaptec control interface
264
265# SCSI Controllers and Devices
266
267# PCI SCSI controllers
268#adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
269#adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
270#ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
271#ahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
272#bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
273#dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
274#iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
275#isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
276#mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
277#mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
278#mpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
279#njs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
280#pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
281#siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
282#esiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
283##options 	SIOP_SYMLED		# drive the act. LED in software
284#trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
285
286# PCMCIA SCSI controllers
287#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
288#esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
289#spc* 	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
290
291# CardBus SCSI cards
292#adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
293#ahc*	at cardbus? function ?	# Adaptec ADP-1480
294#njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
295
296# SCSI bus support
297#scsibus* at scsi?
298
299# SCSI devices
300#sd*	at scsibus? target ? lun ?	# SCSI disk drives
301#st*	at scsibus? target ? lun ?	# SCSI tape drives
302#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
303#ch*	at scsibus? target ? lun ?	# SCSI autochangers
304#ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
305#ss*	at scsibus? target ? lun ?	# SCSI scanners
306#uk*	at scsibus? target ? lun ?	# SCSI unknown
307
308
309# RAID controllers and devices
310#aac*	at pci? dev ? function ?	# Adaptec AAC family
311#amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
312#cac*	at pci? dev ? function ?	# Compaq PCI array controllers
313#ciss*	at pci? dev ? function ?	# HP Smart Array controllers
314#icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
315#mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
316#mlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
317#twa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
318#twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
319
320#ld*	at aac? unit ?			# logical disk devices
321#ld*	at amr? unit ?
322#ld*	at cac? unit ?
323#ld*	at icp? unit ?
324#ld*	at twa? unit ?
325#ld*	at twe? unit ?
326#ld*	at mlx? unit ?
327
328#icpsp*	at icp? unit ?			# SCSI pass-through
329
330# IDE and related devices
331# PCI IDE controllers - see pciide(4) for supported hardware.
332# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
333# how to set up DMA modes for this chip. This may work, or may cause
334# a machine hang with some controllers.
335pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
336acardide*	at pci? dev ? function ?	# Acard IDE controllers
337aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
338#ahcisata* 	at pci? dev ? function ?	# AHCI SATA controllers
339artsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
340cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
341cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
342#geodeide* 	at pci? dev ? function ?	# AMD Geode IDE controllers
343hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
344#iteide* 	at pci? dev ? function ?	# IT Express IDE controllers
345#ixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
346optiide* 	at pci? dev ? function ?	# Opti IDE controllers
347#piixide* 	at pci? dev ? function ?	# Intel IDE controllers
348pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
349pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
350rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
351satalink*	at pci? dev ? function ?	# SiI SATALink controllers
352siside* 	at pci? dev ? function ?	# SiS IDE controllers
353slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
354#svwsata* 	at pci? dev ? function ?	# ServerWorks SATA controllers
355stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
356viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
357
358# PCMCIA IDE controllers
359#wdc*	at pcmcia? function ?
360
361# CardBus IDE controllers
362#njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
363
364# ATA (IDE) bus support
365atabus* at ata?
366#options	ATADEBUG
367
368# IDE drives
369# Flags are used only with controllers that support DMA operations
370# and mode settings (e.g. some pciide controllers)
371# The lowest order four bits (rightmost digit) of the flags define the PIO
372# mode to use, the next set of four bits the DMA mode and the third set the
373# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
374# to use, and the last bit must be 1 for this setting to be used.
375# For DMA and UDMA, 0xf (1111) means 'disable'.
376# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
377# (0xc=1100, 0xa=1010, 0xf=1111)
378# 0x0000 means "use whatever the drive claims to support".
379wd*	at atabus? drive ? flags 0x0000
380
381# ATA RAID configuration support, as found on some Promise controllers.
382pseudo-device	ataraid
383ld*	at ataraid? vendtype ? unit ?
384
385# ATAPI bus support
386atapibus* at atapi?
387
388# ATAPI devices
389# flags have the same meaning as for IDE drives.
390# XXX No DMA on IDE devices for now
391cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
392sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
393st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
394uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
395
396
397# Network Interfaces
398
399# PCI network interfaces
400#an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
401#ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
402#atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
403#bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
404#bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
405#bnx* 	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
406#dge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
407#en*	at pci? dev ? function ?	# ENI/Adaptec ATM
408#ep*	at pci? dev ? function ?	# 3Com 3c59x
409#epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
410#esh*	at pci? dev ? function ?	# Essential HIPPI card
411#ex*	at pci? dev ? function ?	# 3Com 90x[BC]
412#fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
413#fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
414#gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
415#hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
416#ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
417#iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
418#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
419#lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
420#mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
421#msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
422#mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
423##ndis* 	at pci? dev ? function ?	# Experimental - NDIS Network Driver
424#ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
425#nfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
426#ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
427#pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
428#ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
429#re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
430rtk*	at pci? dev ? function ?	# Realtek 8129/8139
431#rtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
432#sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
433#sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
434#skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
435#sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
436#ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
437#stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
438#ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
439#tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
440#tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
441#txp*	at pci? dev ? function ?	# 3com 3cr990
442#vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
443#vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
444#wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
445wm*	at pci? dev ? function ?	# Intel 8254x gigabit
446#wpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
447#xge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
448
449# PCMCIA network interfaces
450#an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
451#awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
452#cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
453#cs*	at pcmcia? function ?		# CS89xx Ethernet
454#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
455#mbe*	at pcmcia? function ?		# MB8696x based Ethernet
456#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
457#ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
458#sm*	at pcmcia? function ?		# Megahertz Ethernet
459## tr at pcmcia has problems with Cardbus bridges
460##tr*	at pcmcia? function ?		# TROPIC based Token-Ring
461#wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
462#xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
463#com*	at xirc?
464#xi*	at xirc?
465#mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
466#com*	at mhzc?
467#sm*	at mhzc?
468
469# CardBus network cards
470#ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
471#atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
472#ex*	at cardbus? function ?	# 3Com 3C575TX
473#fxp*	at cardbus? function ?	# Intel i8255x
474#ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
475#rtk*	at cardbus? function ?	# Realtek 8129/8139
476#rtw*	at cardbus? function ?	# Realtek 8180L (802.11)
477#tlp*	at cardbus? function ?	# DECchip 21143
478
479# MII/PHY support
480acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
481amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
482bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
483brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
484#ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
485dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
486exphy*	at mii? phy ?			# 3Com internal PHYs
487gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
488glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
489gphyter* at mii? phy ?			# NS83861 Gig-E PHY
490icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
491igphy*	at mii? phy ?			# Intel IGP01E1000
492#ikphy*	at mii? phy ?			# Intel 82563 PHYs
493inphy*	at mii? phy ?			# Intel 82555 PHYs
494iophy*	at mii? phy ?			# Intel 82553 PHYs
495lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
496makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
497nsphy*	at mii? phy ?			# NS83840 PHYs
498nsphyter* at mii? phy ? 		# NS83843 PHYs
499pnaphy* at mii? phy ?			# generic HomePNA PHYs
500qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
501#rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
502#rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
503sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
504tlphy*	at mii? phy ?			# ThunderLAN PHYs
505tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
506ukphy*	at mii? phy ?			# generic unknown PHYs
507urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
508
509
510# USB Controller and Devices
511
512# PCI USB controllers
513#ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
514ohci*	at pci?	dev ? function ?	# Open Host Controller
515uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
516
517# CardBus USB controllers
518#ehci*	at cardbus? function ?		# Enhanced Host Controller
519#ohci*	at cardbus? function ?		# Open Host Controller
520#uhci*	at cardbus? function ?		# Universal Host Controller (Intel)
521
522# ISA USB controllers
523#slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
524
525# PCMCIA USB controllers
526#slhci*	at pcmcia? function ?		# ScanLogic SL811HS
527
528# USB bus support
529#usb*	at ehci?
530usb*	at ohci?
531usb*	at uhci?
532#usb*	at slhci?
533
534# USB Hubs
535uhub*	at usb?
536uhub*	at uhub? port ?
537
538# USB HID device
539uhidev*	at uhub? port ? configuration ? interface ?
540
541# USB Mice
542ums*	at uhidev? reportid ?
543wsmouse* at ums? mux 0
544
545# USB eGalax touch-panel
546#uep*	at uhub? port ?
547#wsmouse* at uep? mux 0
548
549# USB Keyboards
550ukbd*	at uhidev? reportid ?
551wskbd*	at ukbd? console ? mux 1
552
553# USB serial adapter
554ucycom*	at uhidev? reportid ?
555
556# USB Generic HID devices
557uhid*	at uhidev? reportid ?
558
559# USB Printer
560ulpt*	at uhub? port ? configuration ? interface ?
561
562# USB Modem
563umodem*	at uhub? port ? configuration ?
564ucom*	at umodem?
565
566# Option N.V. Wireless WAN modems
567uhso*	at uhub? port ? configuration ?
568
569# USB Mass Storage
570umass*	at uhub? port ? configuration ? interface ?
571wd*	at umass?
572
573# USB audio
574uaudio*	at uhub? port ? configuration ?
575
576# USB MIDI
577#umidi* at uhub? port ? configuration ?
578
579# USB IrDA
580# USB-IrDA bridge spec
581#uirda* at uhub? port ? configuration ? interface ?
582#irframe* at uirda?
583
584# SigmaTel STIr4200 USB/IrDA Bridge
585#ustir* at uhub? port ?
586#irframe* at ustir?
587
588# USB Ethernet adapters
589#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
590#axe*	at uhub? port ?		# ASIX AX88172 based adapters
591#cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
592#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
593#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
594#udav*	at uhub? port ?		# Davicom DM9601 based adapters
595#url*	at uhub? port ?		# Realtek RTL8150L based adapters
596
597# USB 802.11 adapters
598#atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
599#ral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
600#rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
601#zyd*	at uhub? port ?		# Zydas ZD1211
602
603# Prolific PL2301/PL2302 host-to-host adapter
604upl*	at uhub? port ?
605
606# Serial adapters
607ubsa*	at uhub? port ?		# Belkin serial adapter
608ucom*	at ubsa? portno ?
609
610uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
611ucom*	at uftdi? portno ?
612
613uipaq*	at uhub? port ?		# iPAQ PDAs
614ucom*	at uipaq? portno ?
615
616umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
617ucom*	at umct? portno ?
618
619uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
620ucom*	at uplcom? portno ?
621
622uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
623ucom*	at uvscom? portno ?
624
625# Diamond Multimedia Rio 500
626#urio*	at uhub? port ?
627
628# USB Handspring Visor
629#uvisor*	at uhub? port ?
630#ucom*	at uvisor?
631
632# Kyocera AIR-EDGE PHONE
633#ukyopon* at uhub? port ?
634#ucom*	at ukyopon? portno ?
635
636# USB scanners
637#uscanner* at uhub? port ?
638
639# USB scanners that use SCSI emulation, e.g., HP5300
640#usscanner* at uhub? port ?
641
642# Topfield TF5000PVR range of DVB recorders
643#utoppy*	at uhub? port ?
644
645# Y@P firmware loader
646#uyap* at uhub? port ?
647
648# D-Link DSB-R100 USB radio
649#udsbr*	at uhub? port ?
650#radio*	at udsbr?
651
652# USB Generic driver
653#ugen*	at uhub? port ?
654
655
656# IrDA and Consumer Ir devices
657
658# Toshiba Oboe
659#oboe* 	at pci? dev ? function ?
660#irframe* at oboe?
661
662
663# PCI IEEE1394 controllers
664#fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
665
666# CardBus IEEE1394 controllers
667#fwohci*	at cardbus? function ?	# IEEE1394 Open Host Controller
668
669#ieee1394if* at fwohci?
670#fwip*	at ieee1394if?			# IP over IEEE1394
671#sbp*	at ieee1394if? euihi ? euilo ?	# SCSI over IEEE1394
672
673
674# Audio Devices
675
676# PCI audio devices
677#auacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
678auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
679#auixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
680autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
681auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
682#azalia*	at pci? dev ? function ?	# High Definition Audio
683clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
684clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
685cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
686eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
687emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
688esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
689esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
690eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
691fms*	at pci? dev ? function ?	# Forte Media FM801
692neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
693sv*	at pci? dev ? function ?	# S3 SonicVibes
694yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
695
696# OPL[23] FM synthesizers
697opl*	at cmpci? flags 1
698opl*	at eso?
699opl*	at fms?
700opl*	at sv?
701opl*	at yds?
702
703# Audio support
704audio*	at audiobus?
705
706# MPU 401 UARTs
707mpu*	at cmpci?
708mpu*	at eso?
709mpu*	at fms?
710mpu*	at yds?
711
712# MIDI support
713midi*	at midibus?
714
715# PCI radio devices
716#gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
717
718# Radio support
719#radio*	at gtp?
720
721# TV cards
722
723# Brooktree 848/849/878/879 based TV cards
724#bktr* at pci? dev ? function ?
725#radio* at bktr?
726
727
728# Bluetooth Controller and Device support
729
730# Bluetooth PCMCIA Controllers
731#bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
732#btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
733
734# Bluetooth USB Controllers
735#ubt* at uhub? port ?
736#aubtfwl* at uhub? port ?
737
738# Bluetooth Device Hub
739#bthub* at bcsp?
740#bthub* at bt3c?
741#bthub* at btbc?
742#bthub* at btuart?
743#bthub* at ubt?
744
745# Bluetooth HID support
746#bthidev* at bthub?
747
748# Bluetooth Mouse
749#btms* at bthidev? reportid ?
750#wsmouse* at btms? mux 0
751
752# Bluetooth Keyboard
753#btkbd* at bthidev? reportid ?
754#wskbd* at btkbd? console ? mux 1
755
756# Bluetooth Apple Magic Mouse
757#btmagic* at bthub?
758#wsmouse* at btmagic? mux 0
759
760# Bluetooth Audio support
761#btsco* at bthub?
762
763# Cryptographic Devices
764
765# PCI cryptographic devices
766#hifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
767#ubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
768
769# On-board device support
770
771obio*	at mainbus?
772#com1	at obio? addr 0x900003e8 xint 1 # on-board UART
773com0	at obio? addr 0x900002f8 xint 1 # on-board UART
774#com*	at obio? addr 0x900003e8 xint 1 # on-board UART
775#com*	at obio? addr 0x900003f8 xint 1 # on-board UART
776
777# Pseudo-Devices
778
779#pseudo-device 	crypto		# /dev/crypto device
780#pseudo-device	swcrypto	# software crypto implementation
781
782# disk/mass storage pseudo-devices
783
784#pseudo-device	bio			# RAID control device driver
785#pseudo-device	ccd		4	# concatenated/striped disk devices
786#pseudo-device	cgd		4	# cryptographic disk devices
787#pseudo-device	raid		8	# RAIDframe disk driver
788#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
789# Options to enable various other RAIDframe RAID types.
790#options 	RF_INCLUDE_EVENODD=1
791#options 	RF_INCLUDE_RAID5_RS=1
792#options 	RF_INCLUDE_PARITYLOGGING=1
793#options 	RF_INCLUDE_CHAINDECLUSTER=1
794#options 	RF_INCLUDE_INTERDECLUSTER=1
795#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
796#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
797pseudo-device	fss			# file system snapshot device
798
799pseudo-device	md			# memory disk device (ramdisk)
800#pseudo-device	vnd			# disk-like interface to files
801#options 	VND_COMPRESSION		# compressed vnd(4)
802
803# network pseudo-devices
804pseudo-device	bpfilter		# Berkeley packet filter
805#pseudo-device	carp			# Common Address Redundancy Protocol
806#pseudo-device	ipfilter		# IP filter (firewall) and NAT
807pseudo-device	loop			# network loopback
808#pseudo-device	ppp			# Point-to-Point Protocol
809#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
810#pseudo-device	sl			# Serial Line IP
811#pseudo-device	strip			# Starmode Radio IP (Metricom)
812#pseudo-device	irframetty		# IrDA frame line discipline
813#pseudo-device	tap			# virtual Ethernet
814#pseudo-device	tun			# network tunneling over tty
815#pseudo-device	gre			# generic L3 over IP tunnel
816#pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
817#pseudo-device	faith			# IPv[46] tcp relay translation i/f#
818#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
819#pseudo-device	vlan			# IEEE 802.1q encapsulation
820#pseudo-device	bridge			# simple inter-network bridging
821#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
822#pseudo-device	agr			# IEEE 802.3ad link aggregation
823#pseudo-device	pf			# PF packet filter
824#pseudo-device	pflog			# PF log if
825# srt is EXPERIMENTAL
826#pseudo-device	srt			# source-address-based routing
827
828#
829# accept filters
830pseudo-device   accf_data		# "dataready" accept filter
831pseudo-device   accf_http		# "httpready" accept filter
832
833# miscellaneous pseudo-devices
834pseudo-device	pty			# pseudo-terminals
835#pseudo-device	sequencer	1	# MIDI sequencer
836#options 	RND_COM			# use "com" randomness as well (BROKEN)
837pseudo-device	clockctl		# user control of clock subsystem
838pseudo-device	ksyms			# /dev/ksyms
839#pseudo-device	lockstat		# lock profiling
840#pseudo-device	bcsp			# BlueCore Serial Protocol
841#pseudo-device	btuart			# Bluetooth HCI UART (H4)
842
843# a pseudo device needed for Coda	# also needs CODA (above)
844#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
845
846# a pseudo device needed for SMBFS
847#pseudo-device	nsmb			# experimental - SMB requester
848
849# wscons pseudo-devices
850pseudo-device	wsmux			# mouse & keyboard multiplexor
851pseudo-device	wsfont
852
853#options 	FILEASSOC		# fileassoc(9) - required for Veriexec
854
855# Veriexec
856#pseudo-device	veriexec
857#
858# Uncomment the fingerprint methods below that are desired. Note that
859# removing fingerprint methods will have almost no impact on the kernel
860# code size.
861#
862#options VERIFIED_EXEC_FP_RMD160
863#options VERIFIED_EXEC_FP_SHA256
864#options VERIFIED_EXEC_FP_SHA384
865#options VERIFIED_EXEC_FP_SHA512
866#options VERIFIED_EXEC_FP_SHA1
867#options VERIFIED_EXEC_FP_MD5
868
869#options PAX_MPROTECT=0			# PaX mprotect(2) restrictions
870