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