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