xref: /dragonfly/sys/config/LINT64 (revision b9ad643d)
1745b8439SSascha Wildner#
2745b8439SSascha Wildner# X86_64_LINT -- config file for checking all the sources, tries to pull in
3745b8439SSascha Wildner#	as much of the source tree as it can.
4745b8439SSascha Wildner#
5745b8439SSascha Wildner# $FreeBSD: src/sys/i386/conf/LINT,v 1.749.2.144 2003/06/04 17:56:59 sam Exp $
6745b8439SSascha Wildner#
7745b8439SSascha Wildner# See the kernconf(5) manual page for more information on the format of
8745b8439SSascha Wildner# this file.
9745b8439SSascha Wildner#
10745b8439SSascha Wildner# NB: You probably don't want to try running a kernel built from this
11745b8439SSascha Wildner# file.  Instead, you should start from X86_64_GENERIC, and add options
12745b8439SSascha Wildner# from this file as required.
13745b8439SSascha Wildner#
14745b8439SSascha Wildner
15745b8439SSascha Wildner# These directives are mandatory.  The machine directive specifies the
16745b8439SSascha Wildner# platform and the machine_arch directive specifies the cpu architecture.
17745b8439SSascha Wildner#
18745b8439SSascha Wildnerplatform	pc64
19745b8439SSascha Wildnermachine		x86_64
20745b8439SSascha Wildnermachine_arch	x86_64
21745b8439SSascha Wildner
22745b8439SSascha Wildner#
23745b8439SSascha Wildner# This is the ``identification'' of the kernel.  Usually this should
24745b8439SSascha Wildner# be the same as the name of your kernel.
25745b8439SSascha Wildner#
26745b8439SSascha Wildnerident		X86_64_LINT
27745b8439SSascha Wildner
28745b8439SSascha Wildner#
29745b8439SSascha Wildner# The `maxusers' parameter controls the static sizing of a number of
30745b8439SSascha Wildner# internal system tables by a formula defined in subr_param.c.  Setting
31745b8439SSascha Wildner# maxusers to 0 will cause the system to auto-size based on physical
32745b8439SSascha Wildner# memory.
33745b8439SSascha Wildner#
34745b8439SSascha Wildnermaxusers	10
35745b8439SSascha Wildner
36745b8439SSascha Wildner#
37745b8439SSascha Wildner# The `makeoptions' parameter allows variables to be passed to the
38745b8439SSascha Wildner# generated Makefile in the build area.
39745b8439SSascha Wildner#
40745b8439SSascha Wildner# CONF_CFLAGS gives some extra compiler flags that are added to ${CFLAGS}
41745b8439SSascha Wildner# after most other flags.  Here we use it to inhibit use of non-optimal
42745b8439SSascha Wildner# gcc builtin functions (e.g., memcmp).
43745b8439SSascha Wildner#
44745b8439SSascha Wildner# DEBUG happens to be magic.
45745b8439SSascha Wildner# The following is equivalent to 'config -g KERNELNAME' and creates
46745b8439SSascha Wildner# 'kernel.debug' compiled with -g debugging as well as a normal
47745b8439SSascha Wildner# 'kernel'.  Use 'make install.debug' to install the debug kernel
48745b8439SSascha Wildner# but that isn't normally necessary as the debug symbols are not loaded
49745b8439SSascha Wildner# by the kernel and are not useful there anyway.
50745b8439SSascha Wildner#
51745b8439SSascha Wildner# KERNEL can be overridden so that you can change the default name of your
52745b8439SSascha Wildner# kernel.
53745b8439SSascha Wildner#
54745b8439SSascha Wildner# MODULES_OVERRIDE can be used to limit modules built to a specific list.
55745b8439SSascha Wildner#
56745b8439SSascha Wildner# INSTALLSTRIPPED can be set to cause installkernel to install stripped
57745b8439SSascha Wildner# kernels and modules rather than a kernel and modules with debug symbols.
58745b8439SSascha Wildner#
59745b8439SSascha Wildner# INSTALLSTRIPPEDMODULES can be set to allow a full debug kernel to be
60745b8439SSascha Wildner# installed, but to strip the installed modules.
61745b8439SSascha Wildner#
62745b8439SSascha Wildnermakeoptions	CONF_CFLAGS=-fno-builtin  #Don't allow use of memcmp, etc.
63745b8439SSascha Wildner#makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
64745b8439SSascha Wildner#makeoptions	KERNEL=foo		#Build kernel "foo" and install "/foo"
65745b8439SSascha Wildner# Only build Linux API modules and plus those parts of the sound system I need.
66745b8439SSascha Wildner#makeoptions	MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/maestro3"
67745b8439SSascha Wildner#makeoptions	INSTALLSTRIPPED=1
68745b8439SSascha Wildner#makeoptions	INSTALLSTRIPPEDMODULES=1
69745b8439SSascha Wildner
70745b8439SSascha Wildner#
71745b8439SSascha Wildner# Certain applications can grow to be larger than the 128M limit
72745b8439SSascha Wildner# that DragonFly initially imposes.  Below are some options to
73745b8439SSascha Wildner# allow that limit to grow to 256MB, and can be increased further
74745b8439SSascha Wildner# with changing the parameters.  MAXDSIZ is the maximum that the
75745b8439SSascha Wildner# limit can be set to, and the DFLDSIZ is the default value for
76745b8439SSascha Wildner# the limit.  MAXSSIZ is the maximum that the stack limit can be
77745b8439SSascha Wildner# set to.  You might want to set the default lower than the max,
78745b8439SSascha Wildner# and explicitly set the maximum with a shell command for processes
79745b8439SSascha Wildner# that regularly exceed the limit like INND.
80745b8439SSascha Wildner#
81745b8439SSascha Wildneroptions 	MAXDSIZ="(256*1024*1024)"
82745b8439SSascha Wildneroptions 	MAXSSIZ="(256*1024*1024)"
83745b8439SSascha Wildneroptions 	DFLDSIZ="(256*1024*1024)"
84745b8439SSascha Wildner
85745b8439SSascha Wildner#
86745b8439SSascha Wildner# BLKDEV_IOSIZE sets the default block size used in user block
87745b8439SSascha Wildner# device I/O.  Note that this value will be overridden by the label
88745b8439SSascha Wildner# when specifying a block device from a label with a non-0
89745b8439SSascha Wildner# partition blocksize.  The default is PAGE_SIZE.
90745b8439SSascha Wildner#
91745b8439SSascha Wildneroptions 	BLKDEV_IOSIZE=8192
92745b8439SSascha Wildner
93745b8439SSascha Wildner# This allows you to actually store this configuration file into
94745b8439SSascha Wildner# the kernel binary itself, where it may be later read by saying:
95745b8439SSascha Wildner#    strings -n 3 /kernel | sed -n 's/^___//p' > MYKERNEL
96745b8439SSascha Wildner#
97745b8439SSascha Wildneroptions 	INCLUDE_CONFIG_FILE     # Include this file in kernel
98745b8439SSascha Wildner
99745b8439SSascha Wildner#
100745b8439SSascha Wildner# The root device and filesystem type can be compiled in;
101745b8439SSascha Wildner# this provides a fallback option if the root device cannot
102745b8439SSascha Wildner# be correctly guessed by the bootstrap code, or an override if
103745b8439SSascha Wildner# the RB_DFLTROOT flag (-r) is specified when booting the kernel.
104745b8439SSascha Wildner#
105745b8439SSascha Wildneroptions 	ROOTDEVNAME=\"ufs:da0s2e\"
106745b8439SSascha Wildner
107745b8439SSascha Wildner#####################################################################
108745b8439SSascha Wildner# SMP OPTIONS:
109745b8439SSascha Wildner#
110e93ca50aSSascha Wildner# SMP enables building of a Symmetric MultiProcessor Kernel. It will
111e93ca50aSSascha Wildner# boot on both SMP and UP boxes.
112745b8439SSascha Wildner#
113745b8439SSascha Wildner# Notes:
114745b8439SSascha Wildner#
115745b8439SSascha Wildner#  An SMP kernel will ONLY run on an Intel MP spec. qualified motherboard.
116745b8439SSascha Wildner#
117745b8439SSascha Wildner#  Check the 'Rogue SMP hardware' section to see if additional options
118745b8439SSascha Wildner#   are required by your hardware.
119745b8439SSascha Wildner#
120e93ca50aSSascha Wildner#options 	SMP			# Symmetric MultiProcessor Kernel
121745b8439SSascha Wildner
122745b8439SSascha Wildner#####################################################################
123745b8439SSascha Wildner# CPU OPTIONS
124745b8439SSascha Wildner
125745b8439SSascha Wildnercpu		HAMMER_CPU
126745b8439SSascha Wildner
127745b8439SSascha Wildner#
128745b8439SSascha Wildner# Options for CPU features.
129745b8439SSascha Wildner#
130745b8439SSascha Wildner# CPU_DISABLE_SSE disables SSE/MMX2 instructions support.
131745b8439SSascha Wildner#
132dbe005bbSSascha Wildner# CPU_ENABLE_EST enables support for Enhanced SpeedStep technology
133dbe005bbSSascha Wildner# found in Pentium(tm) M processors.
134dbe005bbSSascha Wildner#
135745b8439SSascha Wildner#options 	CPU_DISABLE_SSE
136dbe005bbSSascha Wildneroptions		CPU_ENABLE_EST
137ebea24c3SSascha Wildner
138745b8439SSascha Wildner#####################################################################
139745b8439SSascha Wildner# COMPATIBILITY OPTIONS
140745b8439SSascha Wildner
141745b8439SSascha Wildner#
142745b8439SSascha Wildner# Implement system calls compatible with 4.3BSD and older versions of
143745b8439SSascha Wildner# FreeBSD.  You probably do NOT want to remove this as much current code
144745b8439SSascha Wildner# still relies on the 4.3 emulation.
145745b8439SSascha Wildner#
146745b8439SSascha Wildneroptions 	COMPAT_43
147745b8439SSascha Wildner
148efba76b4SSascha Wildner# Enable NDIS binary driver support
149efba76b4SSascha Wildneroptions 	NDISAPI
150efba76b4SSascha Wildnerdevice		ndis
151efba76b4SSascha Wildner
152745b8439SSascha Wildner#
153745b8439SSascha Wildner# These three options provide support for System V Interface
154745b8439SSascha Wildner# Definition-style interprocess communication, in the form of shared
155745b8439SSascha Wildner# memory, semaphores, and message queues, respectively.
156745b8439SSascha Wildner#
157745b8439SSascha Wildner# System V shared memory and tunable parameters
158745b8439SSascha Wildneroptions 	SYSVSHM		# include support for shared memory
159745b8439SSascha Wildneroptions 	SHMMAXPGS=1025	# max amount of shared memory pages (4k on i386)
160745b8439SSascha Wildneroptions 	SHMALL=1025	# max amount of shared memory (bytes)
161745b8439SSascha Wildneroptions 	SHMMAX="(SHMMAXPGS*PAGE_SIZE+1)"
162745b8439SSascha Wildner				# max shared memory segment size (bytes)
163745b8439SSascha Wildneroptions 	SHMMIN=2	# min shared memory segment size (bytes)
164745b8439SSascha Wildneroptions 	SHMMNI=33	# max number of shared memory identifiers
165745b8439SSascha Wildneroptions 	SHMSEG=9	# max shared memory segments per process
166745b8439SSascha Wildner
167745b8439SSascha Wildner# System V semaphores and tunable parameters
168745b8439SSascha Wildneroptions 	SYSVSEM		# include support for semaphores
169745b8439SSascha Wildneroptions 	SEMMAP=31	# amount of entries in semaphore map
170745b8439SSascha Wildneroptions 	SEMMNI=11	# number of semaphore identifiers in the system
171745b8439SSascha Wildneroptions 	SEMMNS=61	# number of semaphores in the system
172745b8439SSascha Wildneroptions 	SEMMNU=31	# number of undo structures in the system
173745b8439SSascha Wildneroptions 	SEMMSL=61	# max number of semaphores per id
174745b8439SSascha Wildneroptions 	SEMOPM=101	# max number of operations per semop call
175745b8439SSascha Wildneroptions 	SEMUME=11	# max number of undo entries per process
176745b8439SSascha Wildner
177745b8439SSascha Wildner# System V message queues and tunable parameters
178745b8439SSascha Wildneroptions 	SYSVMSG		# include support for message queues
179745b8439SSascha Wildneroptions 	MSGMNB=2049	# max characters per message queue
180745b8439SSascha Wildneroptions 	MSGMNI=41	# max number of message queue identifiers
181745b8439SSascha Wildneroptions 	MSGSEG=2049	# max number of message segments in the system
182745b8439SSascha Wildneroptions 	MSGSSZ=16	# size of a message segment MUST be power of 2
183745b8439SSascha Wildneroptions 	MSGTQL=41	# max amount of messages in the system
184745b8439SSascha Wildner
185745b8439SSascha Wildner#####################################################################
186745b8439SSascha Wildner# DEBUGGING OPTIONS
187745b8439SSascha Wildner
188745b8439SSascha Wildner#
189745b8439SSascha Wildner# Enable the kernel debugger.
190745b8439SSascha Wildner#
191745b8439SSascha Wildneroptions 	DDB
192745b8439SSascha Wildner
193745b8439SSascha Wildner#
194745b8439SSascha Wildner# Print a stack trace on kernel panic.
195745b8439SSascha Wildner#
196745b8439SSascha Wildneroptions 	DDB_TRACE
197745b8439SSascha Wildner
198745b8439SSascha Wildner#
199745b8439SSascha Wildner# Don't drop into DDB for a panic. Intended for unattended operation
200745b8439SSascha Wildner# where you may want to drop to DDB from the console, but still want
201745b8439SSascha Wildner# the machine to recover from a panic
202745b8439SSascha Wildner#
203745b8439SSascha Wildneroptions 	DDB_UNATTENDED
204745b8439SSascha Wildner
205745b8439SSascha Wildner#
206745b8439SSascha Wildner# If using GDB remote mode to debug the kernel, there's a non-standard
207745b8439SSascha Wildner# extension to the remote protocol that can be used to use the serial
208745b8439SSascha Wildner# port as both the debugging port and the system console.  It's non-
209745b8439SSascha Wildner# standard and you're on your own if you enable it.  See also the
210745b8439SSascha Wildner# "remotechat" variables in the DragonFly specific version of gdb.
211745b8439SSascha Wildner#
212745b8439SSascha Wildneroptions 	GDB_REMOTE_CHAT
213745b8439SSascha Wildner
214745b8439SSascha Wildner#
215745b8439SSascha Wildner# KTRACE enables the system-call tracing facility ktrace(2).
216745b8439SSascha Wildner#
217745b8439SSascha Wildneroptions 	KTRACE			#kernel tracing
218745b8439SSascha Wildner
219745b8439SSascha Wildner#
220745b8439SSascha Wildner# The INVARIANTS option is used in a number of source files to enable
221745b8439SSascha Wildner# extra sanity checking of internal structures.  This support is not
222745b8439SSascha Wildner# enabled by default because of the extra time it would take to check
223745b8439SSascha Wildner# for these conditions, which can only occur as a result of
224745b8439SSascha Wildner# programming errors.
225745b8439SSascha Wildner#
226745b8439SSascha Wildneroptions 	INVARIANTS
227745b8439SSascha Wildner
228745b8439SSascha Wildner#
229745b8439SSascha Wildner# The DIAGNOSTIC option is used to enable extra debugging information
230745b8439SSascha Wildner# from some parts of the kernel.  As this makes everything more noisy,
231745b8439SSascha Wildner# it is disabled by default.
232745b8439SSascha Wildner#
233745b8439SSascha Wildneroptions 	DIAGNOSTIC
234745b8439SSascha Wildner
235745b8439SSascha Wildner#
236745b8439SSascha Wildner# PERFMON causes the driver for Pentium/Pentium Pro performance counters
237745b8439SSascha Wildner# to be compiled.  See perfmon(4) for more information.
238745b8439SSascha Wildner#
239745b8439SSascha Wildneroptions 	PERFMON
240745b8439SSascha Wildner
241745b8439SSascha Wildner
242745b8439SSascha Wildner#
243745b8439SSascha Wildner# This option let some drivers co-exist that can't co-exist in a running
244745b8439SSascha Wildner# system.  This is used to be able to compile all kernel code in one go for
245745b8439SSascha Wildner# quality assurance purposes (like this file, which the option takes it name
246745b8439SSascha Wildner# from.)
247745b8439SSascha Wildner#
248745b8439SSascha Wildneroptions 	COMPILING_LINT
249745b8439SSascha Wildner
250745b8439SSascha Wildner
251745b8439SSascha Wildner# XXX - this doesn't belong here.
252745b8439SSascha Wildner# Allow ordinary users to take the console - this is useful for X.
253745b8439SSascha Wildneroptions 	UCONSOLE
254745b8439SSascha Wildner
255745b8439SSascha Wildner#####################################################################
256745b8439SSascha Wildner# NETWORKING OPTIONS
257745b8439SSascha Wildner
258745b8439SSascha Wildner#
259745b8439SSascha Wildner# Protocol families:
260745b8439SSascha Wildner#  Only the INET (Internet) family is officially supported in DragonFly.
261745b8439SSascha Wildner#  Source code for the NS (Xerox Network Service) is provided for amusement
262745b8439SSascha Wildner#  value.
263745b8439SSascha Wildner#
264745b8439SSascha Wildneroptions 	INET			#Internet communications protocols
265745b8439SSascha Wildneroptions 	INET6			#IPv6 communications protocols
266745b8439SSascha Wildneroptions 	IPSEC			#IP security
267745b8439SSascha Wildneroptions 	IPSEC_ESP		#IP security (crypto; define w/ IPSEC)
268745b8439SSascha Wildneroptions 	IPSEC_DEBUG		#debug for IP security
269745b8439SSascha Wildner#
270745b8439SSascha Wildner# Set IPSEC_FILTERGIF to force packets coming through a gif tunnel
271745b8439SSascha Wildner# to be processed by any configured packet filtering (ipfw, ipf).
272745b8439SSascha Wildner# The default is that packets coming from a tunnel are _not_ processed;
273745b8439SSascha Wildner# they are assumed trusted.
274745b8439SSascha Wildner#
275745b8439SSascha Wildner# Note that enabling this can be problematic as there are no mechanisms
276745b8439SSascha Wildner# in place for distinguishing packets coming out of a tunnel (e.g. no
277745b8439SSascha Wildner# encX devices as found on openbsd).
278745b8439SSascha Wildner#
279745b8439SSascha Wildner#options 	IPSEC_FILTERGIF		#filter ipsec packets from a tunnel
280745b8439SSascha Wildner
281745b8439SSascha Wildner#
282745b8439SSascha Wildner# Experimental IPsec implementation that uses the kernel crypto
283745b8439SSascha Wildner# framework.  This cannot be configured together with IPSEC and
284745b8439SSascha Wildner# (currently) supports only IPv4.  To use this you must also
285745b8439SSascha Wildner# configure the crypto device (see below).  Note that with this
286745b8439SSascha Wildner# you get all the IPsec protocols (e.g. there is no FAST_IPSEC_ESP).
287745b8439SSascha Wildner# IPSEC_DEBUG is used, as above, to configure debugging support
288745b8439SSascha Wildner# within the IPsec protocols.
289745b8439SSascha Wildner#
290745b8439SSascha Wildner#options 	FAST_IPSEC		#new IPsec
291745b8439SSascha Wildner
292745b8439SSascha Wildneroptions 	IPX			#IPX/SPX communications protocols
293745b8439SSascha Wildneroptions 	IPXIP			#IPX in IP encapsulation (not available)
294745b8439SSascha Wildneroptions 	IPTUNNEL		#IP in IPX encapsulation (not available)
295745b8439SSascha Wildner
296745b8439SSascha Wildneroptions 	NCP			#NetWare Core protocol
297745b8439SSascha Wildner
298745b8439SSascha Wildneroptions 	MPLS			#Multi-Protocol Label Switching
299745b8439SSascha Wildner
3007902ca8cSSascha Wildner#
3017902ca8cSSascha Wildner# SMB/CIFS requester
3027902ca8cSSascha Wildner# NETSMB enables support for SMB protocol, it requires LIBMCHAIN and LIBICONV
3037902ca8cSSascha Wildner# options.
3047902ca8cSSascha Wildner# NETSMBCRYPTO enables support for encrypted passwords.
3057902ca8cSSascha Wildneroptions 	NETSMB			#SMB/CIFS requester
3067902ca8cSSascha Wildneroptions 	NETSMBCRYPTO		#encrypted password support for SMB
3077902ca8cSSascha Wildner
308745b8439SSascha Wildner# mchain library. It can be either loaded as KLD or compiled into kernel
309745b8439SSascha Wildneroptions 	LIBMCHAIN		#mbuf management library
310745b8439SSascha Wildner
311745b8439SSascha Wildner# netgraph(4). Enable the base netgraph code with the NETGRAPH option.
312745b8439SSascha Wildner# Individual node types can be enabled with the corresponding option
313745b8439SSascha Wildner# listed below; however, this is not strictly necessary as netgraph
314745b8439SSascha Wildner# will automatically load the corresponding KLD module if the node type
315745b8439SSascha Wildner# is not already compiled into the kernel. Each type below has a
316745b8439SSascha Wildner# corresponding man page, e.g., ng_async(4).
317745b8439SSascha Wildneroptions 	NETGRAPH		#netgraph(4) system
318745b8439SSascha Wildneroptions 	NETGRAPH_ASYNC
319745b8439SSascha Wildneroptions 	NETGRAPH_BPF
320745b8439SSascha Wildneroptions 	NETGRAPH_BRIDGE
321745b8439SSascha Wildneroptions 	NETGRAPH_CISCO
322745b8439SSascha Wildneroptions 	NETGRAPH_ECHO
323745b8439SSascha Wildneroptions		NETGRAPH_EIFACE
324745b8439SSascha Wildneroptions 	NETGRAPH_ETHER
325745b8439SSascha Wildneroptions 	NETGRAPH_FRAME_RELAY
326745b8439SSascha Wildneroptions 	NETGRAPH_HOLE
327745b8439SSascha Wildneroptions 	NETGRAPH_IFACE
328745b8439SSascha Wildneroptions 	NETGRAPH_KSOCKET
329745b8439SSascha Wildneroptions 	NETGRAPH_L2TP
330745b8439SSascha Wildneroptions 	NETGRAPH_LMI
331745b8439SSascha Wildner# MPPC compression requires proprietary files (not included)
332745b8439SSascha Wildner#options 	NETGRAPH_MPPC_COMPRESSION
333745b8439SSascha Wildneroptions 	NETGRAPH_MPPC_ENCRYPTION
334745b8439SSascha Wildneroptions 	NETGRAPH_ONE2MANY
335745b8439SSascha Wildneroptions 	NETGRAPH_PPP
336745b8439SSascha Wildneroptions 	NETGRAPH_PPPOE
337745b8439SSascha Wildneroptions 	NETGRAPH_PPTPGRE
338745b8439SSascha Wildneroptions 	NETGRAPH_RFC1490
339745b8439SSascha Wildneroptions 	NETGRAPH_SOCKET
340745b8439SSascha Wildneroptions 	NETGRAPH_TEE
341745b8439SSascha Wildneroptions 	NETGRAPH_TTY
342745b8439SSascha Wildneroptions 	NETGRAPH_UI
343745b8439SSascha Wildneroptions 	NETGRAPH_VJC
344745b8439SSascha Wildner
345745b8439SSascha Wildnerdevice		mn	# Munich32x/Falc54 Nx64kbit/sec cards.
346745b8439SSascha Wildner
347745b8439SSascha Wildner#
348745b8439SSascha Wildner# Network interfaces:
349745b8439SSascha Wildner#  The `loop' pseudo-device is MANDATORY when networking is enabled.
350745b8439SSascha Wildner#  The `ether' pseudo-device provides generic code to handle
351745b8439SSascha Wildner#  Ethernets; it is MANDATORY when a Ethernet device driver is
352745b8439SSascha Wildner#  configured.
353745b8439SSascha Wildner#  The `sppp' pseudo-device serves a similar role for certain types
354745b8439SSascha Wildner#  of synchronous PPP links (like `ar').
355745b8439SSascha Wildner#  The `sl' pseudo-device implements the Serial Line IP (SLIP) service.
356745b8439SSascha Wildner#  The `ppp' pseudo-device implements the Point-to-Point Protocol.
357745b8439SSascha Wildner#  The `bpf' pseudo-device enables the Berkeley Packet Filter.  Be
358745b8439SSascha Wildner#  aware of the legal and administrative consequences of enabling this
359745b8439SSascha Wildner#  option.  The number of devices determines the maximum number of
360745b8439SSascha Wildner#  simultaneous BPF clients programs runnable.
361745b8439SSascha Wildner#  The `disc' pseudo-device implements a minimal network interface,
362745b8439SSascha Wildner#  which throws away all packets sent and never receives any.  It is
363745b8439SSascha Wildner#  included for testing purposes.  This shows up as the 'ds' interface.
364745b8439SSascha Wildner#  The `tun' pseudo-device implements (user-)ppp and nos-tun
365745b8439SSascha Wildner#  The `gif' pseudo-device implements IPv6 over IP4 tunneling,
366745b8439SSascha Wildner#  IPv4 over IPv6 tunneling, IPv4 over IPv4 tunneling and
367745b8439SSascha Wildner#  IPv6 over IPv6 tunneling.
368745b8439SSascha Wildner#  The `gre' device implements two types of IP4 over IP4 tunneling:
369745b8439SSascha Wildner#  GRE and MOBILE, as specified in the RFC1701 and RFC2004.
370745b8439SSascha Wildner#  The `faith' pseudo-device captures packets sent to it and diverts them
371745b8439SSascha Wildner#  to the IPv4/IPv6 translation daemon.
372745b8439SSascha Wildner#  The `stf' device implements 6to4 encapsulation.
373745b8439SSascha Wildner#  The `ef' pseudo-device provides support for multiple ethernet frame types
374745b8439SSascha Wildner#  specified via ETHER_* options. See ef(4) for details.
375745b8439SSascha Wildner#
376745b8439SSascha Wildner# The PPP_BSDCOMP option enables support for compress(1) style entire
377745b8439SSascha Wildner# packet compression, the PPP_DEFLATE is for zlib/gzip style compression.
378745b8439SSascha Wildner# PPP_FILTER enables code for filtering the ppp data stream and selecting
379745b8439SSascha Wildner# events for resetting the demand dial activity timer - requires bpf.
380745b8439SSascha Wildner# See pppd(8) for more details.
381745b8439SSascha Wildner#
382745b8439SSascha Wildnerpseudo-device	ether			#Generic Ethernet
383745b8439SSascha Wildnerpseudo-device	vlan	1		#VLAN support
384745b8439SSascha Wildnerpseudo-device	bridge			#Bridging support
385745b8439SSascha Wildnerpseudo-device	sppp			#Generic Synchronous PPP
386745b8439SSascha Wildnerpseudo-device	loop			#Network loopback device
387745b8439SSascha Wildnerpseudo-device	bpf			#Berkeley packet filter
388745b8439SSascha Wildnerpseudo-device	disc			#Discard device (ds0, ds1, etc)
389745b8439SSascha Wildnerpseudo-device	tun			#Tunnel driver (ppp(8), nos-tun(8))
390745b8439SSascha Wildnerpseudo-device	sl	2		#Serial Line IP
391745b8439SSascha Wildnerpseudo-device	gre			#IP over IP tunneling
392745b8439SSascha Wildnerpseudo-device	ppp	2		#Point-to-point protocol
393745b8439SSascha Wildneroptions 	PPP_BSDCOMP		#PPP BSD-compress support
394745b8439SSascha Wildneroptions 	PPP_DEFLATE		#PPP zlib/deflate/gzip support
395745b8439SSascha Wildneroptions 	PPP_FILTER		#enable bpf filtering (needs bpf)
396745b8439SSascha Wildner
397745b8439SSascha Wildnerpseudo-device	ef			# Multiple ethernet frames support
398745b8439SSascha Wildneroptions 	ETHER_II		# enable Ethernet_II frame
399745b8439SSascha Wildneroptions 	ETHER_8023		# enable Ethernet_802.3 (Novell) frame
400745b8439SSascha Wildneroptions 	ETHER_8022		# enable Ethernet_802.2 frame
401745b8439SSascha Wildneroptions 	ETHER_SNAP		# enable Ethernet_802.2/SNAP frame
402745b8439SSascha Wildner
403745b8439SSascha Wildner# for IPv6
404745b8439SSascha Wildnerpseudo-device	gif			#IPv6 and IPv4 tunneling
405745b8439SSascha Wildnerpseudo-device	faith	1		#for IPv6 and IPv4 translation
406745b8439SSascha Wildnerpseudo-device	stf			#6to4 IPv6 over IPv4 encapsulation
407745b8439SSascha Wildner
408745b8439SSascha Wildner#
409745b8439SSascha Wildner# Internet family options:
410745b8439SSascha Wildner#
411745b8439SSascha Wildner# MROUTING enables the kernel multicast packet forwarder, which works
412745b8439SSascha Wildner# with mrouted(8).
413745b8439SSascha Wildner#
414745b8439SSascha Wildner# PIM enables Protocol Independent Multicast in the kernel.
415745b8439SSascha Wildner# Requires MROUTING enabled.
416745b8439SSascha Wildner#
417745b8439SSascha Wildner# IPFIREWALL enables support for IP firewall construction, in
418745b8439SSascha Wildner# conjunction with the `ipfw' program.  IPFIREWALL_VERBOSE sends
419745b8439SSascha Wildner# logged packets to the system logger.  IPFIREWALL_VERBOSE_LIMIT
420745b8439SSascha Wildner# limits the number of times a matching entry can be logged.
421745b8439SSascha Wildner#
422745b8439SSascha Wildner# WARNING:  IPFIREWALL defaults to a policy of "deny ip from any to any"
423745b8439SSascha Wildner# and if you do not add other rules during startup to allow access,
424745b8439SSascha Wildner# YOU WILL LOCK YOURSELF OUT.  It is suggested that you set firewall_type=open
425745b8439SSascha Wildner# in /etc/rc.conf when first enabling this feature, then refining the
426745b8439SSascha Wildner# firewall rules in /etc/rc.firewall after you've tested that the new kernel
427745b8439SSascha Wildner# feature works properly.
428745b8439SSascha Wildner#
429745b8439SSascha Wildner# IPFIREWALL_DEFAULT_TO_ACCEPT causes the default rule (at boot) to
430745b8439SSascha Wildner# allow everything.  Use with care, if a cracker can crash your
431745b8439SSascha Wildner# firewall machine, they can get to your protected machines.  However,
432745b8439SSascha Wildner# if you are using it as an as-needed filter for specific problems as
433745b8439SSascha Wildner# they arise, then this may be for you.  Changing the default to 'allow'
434745b8439SSascha Wildner# means that you won't get stuck if the kernel and /sbin/ipfw binary get
435745b8439SSascha Wildner# out of sync.
436745b8439SSascha Wildner#
437745b8439SSascha Wildner# IPDIVERT enables the divert IP sockets, used by ``ipfw divert''
438745b8439SSascha Wildner#
439745b8439SSascha Wildner# IPSTEALTH enables code to support stealth forwarding (i.e., forwarding
440745b8439SSascha Wildner# packets without touching the ttl).  This can be useful to hide firewalls
441745b8439SSascha Wildner# from traceroute and similar tools.
442745b8439SSascha Wildner#
443745b8439SSascha Wildner# TCPDEBUG is undocumented.
444745b8439SSascha Wildner#
445745b8439SSascha Wildneroptions 	MROUTING		# Multicast routing
446745b8439SSascha Wildneroptions 	PIM			# Protocol Independent Multicast
447745b8439SSascha Wildneroptions 	IPFIREWALL		#firewall
448745b8439SSascha Wildneroptions		IPFIREWALL_DEBUG	#debug prints
449745b8439SSascha Wildneroptions 	IPFIREWALL_VERBOSE	#enable logging to syslogd(8)
450745b8439SSascha Wildneroptions 	IPFIREWALL_FORWARD	#enable transparent proxy support
451745b8439SSascha Wildneroptions 	IPFIREWALL_VERBOSE_LIMIT=100	#limit verbosity
452745b8439SSascha Wildneroptions 	IPFIREWALL_DEFAULT_TO_ACCEPT	#allow everything by default
453745b8439SSascha Wildneroptions 	IPV6FIREWALL		#firewall for IPv6
454745b8439SSascha Wildneroptions 	IPV6FIREWALL_VERBOSE
455745b8439SSascha Wildneroptions 	IPV6FIREWALL_VERBOSE_LIMIT=100
456745b8439SSascha Wildneroptions 	IPV6FIREWALL_DEFAULT_TO_ACCEPT
457745b8439SSascha Wildneroptions 	IPDIVERT		#divert sockets
458745b8439SSascha Wildneroptions 	IPSTEALTH		#support for stealth forwarding
459745b8439SSascha Wildneroptions 	TCPDEBUG
460745b8439SSascha Wildner
461745b8439SSascha Wildnerdevice		pf
462745b8439SSascha Wildnerdevice		pflog
463745b8439SSascha Wildner
464745b8439SSascha Wildner#CARP
465745b8439SSascha Wildnerpseudo-device carp
466745b8439SSascha Wildneroptions CARP
467745b8439SSascha Wildner
468745b8439SSascha Wildner# The MBUF_STRESS_TEST option enables options which create
469745b8439SSascha Wildner# various random failures / extreme cases related to mbuf
470745b8439SSascha Wildner# functions.  See the mbuf(9) manpage for a list of available
471745b8439SSascha Wildner# test cases.
472745b8439SSascha Wildneroptions         MBUF_STRESS_TEST
473745b8439SSascha Wildner
474745b8439SSascha Wildner# Statically link in accept filters
475745b8439SSascha Wildneroptions                ACCEPT_FILTER_DATA
476745b8439SSascha Wildneroptions                ACCEPT_FILTER_HTTP
477745b8439SSascha Wildner
478745b8439SSascha Wildner# TCP_SIGNATURE adds support for RFC 2385 (TCP-MD5) digests. These are
479745b8439SSascha Wildner# carried in TCP option 19. This option is commonly used to protect
480745b8439SSascha Wildner# TCP sessions (e.g. BGP) where IPSEC is not available nor desirable.
481745b8439SSascha Wildner# This is enabled on a per-socket basis using the TCP_MD5SIG socket option.
482745b8439SSascha Wildner# This requires the use of 'device crypto', 'options IPSEC'
483745b8439SSascha Wildner# or 'device cryptodev'.
484745b8439SSascha Wildneroptions   TCP_SIGNATURE   #include support for RFC 2385
485745b8439SSascha Wildner
486745b8439SSascha Wildner#
487745b8439SSascha Wildner# TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This
488745b8439SSascha Wildner# prevents nmap et al. from identifying the TCP/IP stack, but breaks support
489745b8439SSascha Wildner# for RFC1644 extensions and is not recommended for web servers.
490745b8439SSascha Wildner#
491745b8439SSascha Wildneroptions 	TCP_DROP_SYNFIN		#drop TCP packets with SYN+FIN
492745b8439SSascha Wildner
493745b8439SSascha Wildner# ICMP_BANDLIM enables icmp error response bandwidth limiting.   You
494745b8439SSascha Wildner# typically want this option as it will help protect the machine from
495745b8439SSascha Wildner# D.O.S. packet attacks.
496745b8439SSascha Wildner#
497745b8439SSascha Wildneroptions 	ICMP_BANDLIM
498745b8439SSascha Wildner
499745b8439SSascha Wildner# DUMMYNET enables the "dummynet" bandwidth limiter. You need
500745b8439SSascha Wildner# IPFIREWALL as well. See the dummynet(4) and ipfw(8) manpages for more info.
501745b8439SSascha Wildner#
502745b8439SSascha Wildneroptions 	DUMMYNET
503745b8439SSascha Wildneroptions		DUMMYNET_DEBUG
504745b8439SSascha Wildner
505745b8439SSascha Wildner#
506745b8439SSascha Wildner# ATM (HARP version) options
507745b8439SSascha Wildner#
508745b8439SSascha Wildner# ATM_CORE includes the base ATM functionality code.  This must be included
509745b8439SSascha Wildner#	for ATM support.
510745b8439SSascha Wildner#
511745b8439SSascha Wildner# ATM_IP includes support for running IP over ATM.
512745b8439SSascha Wildner#
513745b8439SSascha Wildner# At least one (and usually only one) of the following signalling managers
514745b8439SSascha Wildner# must be included (note that all signalling managers include PVC support):
515745b8439SSascha Wildner# ATM_SIGPVC includes support for the PVC-only signalling manager `sigpvc'.
516745b8439SSascha Wildner# ATM_SPANS includes support for the `spans' signalling manager, which runs
517745b8439SSascha Wildner#	the FORE Systems's proprietary SPANS signalling protocol.
518745b8439SSascha Wildner# ATM_UNI includes support for the `uni30' and `uni31' signalling managers,
519745b8439SSascha Wildner#	which run the ATM Forum UNI 3.x signalling protocols.
520745b8439SSascha Wildner#
521745b8439SSascha Wildner# The `hea' driver provides support for the Efficient Networks, Inc.
522745b8439SSascha Wildner# ENI-155p ATM PCI Adapter.
523745b8439SSascha Wildner#
524745b8439SSascha Wildner# The `hfa' driver provides support for the FORE Systems, Inc.
525745b8439SSascha Wildner# PCA-200E ATM PCI Adapter.
526745b8439SSascha Wildner#
527745b8439SSascha Wildner#options 	ATM_CORE		#core ATM protocol family
528745b8439SSascha Wildner#options 	ATM_IP			#IP over ATM support
529745b8439SSascha Wildner#options 	ATM_SIGPVC		#SIGPVC signalling manager
530745b8439SSascha Wildner#options 	ATM_SPANS		#SPANS signalling manager
531745b8439SSascha Wildner#options 	ATM_UNI			#UNI signalling manager
532745b8439SSascha Wildner#device		hea			#Efficient ENI-155p ATM PCI
533745b8439SSascha Wildner#device		hfa			#FORE PCA-200E ATM PCI
534745b8439SSascha Wildner
535745b8439SSascha Wildner# DEVICE_POLLING adds support for mixed interrupt-polling handling
536745b8439SSascha Wildner# of network device drivers, which has significant benefits in terms
537745b8439SSascha Wildner# of robustness to overloads and responsivity, as well as permitting
538745b8439SSascha Wildner# accurate scheduling of the CPU time between kernel network processing
539745b8439SSascha Wildner# and other activities. The drawback is a moderate (up to 1/pollhz seconds)
540745b8439SSascha Wildner# potential increase in response times. See polling(4) for further details.
541745b8439SSascha Wildner#
542745b8439SSascha Wildneroptions         DEVICE_POLLING
543745b8439SSascha Wildner
544745b8439SSascha Wildner# IFPOLL_ENABLE adds hardware queues' based polling
545745b8439SSascha Wildneroptions		IFPOLL_ENABLE
546745b8439SSascha Wildner
547745b8439SSascha Wildner#####################################################################
548745b8439SSascha Wildner# FILESYSTEM OPTIONS
549745b8439SSascha Wildner
550745b8439SSascha Wildner#
551745b8439SSascha Wildner# Only the root, /usr, and /tmp filesystems need be statically
552745b8439SSascha Wildner# compiled; everything else will be automatically loaded at mount
553745b8439SSascha Wildner# time.  (Exception: the UFS family --- FFS, and MFS ---
554745b8439SSascha Wildner# cannot currently be demand-loaded.)  Some people still prefer
555745b8439SSascha Wildner# to statically compile other filesystems as well.
556745b8439SSascha Wildner#
557745b8439SSascha Wildner# NB: The PORTAL and UNION filesystems are known to be
558745b8439SSascha Wildner# buggy, and WILL panic your system if you attempt to do anything with
559745b8439SSascha Wildner# them.  They are included here as an incentive for some enterprising
560745b8439SSascha Wildner# soul to sit down and fix them.
561745b8439SSascha Wildner#
562745b8439SSascha Wildner
563745b8439SSascha Wildner# One of these is mandatory:
564745b8439SSascha Wildneroptions 	FFS			#Fast filesystem
565745b8439SSascha Wildneroptions 	MFS			#Memory filesystem
566745b8439SSascha Wildneroptions 	NFS			#Network filesystem
567745b8439SSascha Wildner
568745b8439SSascha Wildner# The rest are optional:
569745b8439SSascha Wildner#options 	NFS_NOSERVER		#Disable the NFS-server code.
570745b8439SSascha Wildneroptions 	CD9660			#ISO 9660 filesystem
571745b8439SSascha Wildneroptions 	FDESC			#File descriptor filesystem
5728124268fSSascha Wildneroptions		HAMMER			#HAMMER filesystem
573745b8439SSascha Wildneroptions 	HPFS			#OS/2 File system
574745b8439SSascha Wildneroptions 	MSDOSFS			#MS DOS filesystem
575745b8439SSascha Wildneroptions 	NTFS			#NT filesystem
576745b8439SSascha Wildneroptions 	NULLFS			#NULL filesystem
577745b8439SSascha Wildneroptions 	NWFS			#NetWare filesystem
578745b8439SSascha Wildneroptions 	PORTAL			#Portal filesystem
579745b8439SSascha Wildneroptions 	PROCFS			#Process filesystem
5807902ca8cSSascha Wildneroptions 	SMBFS			#SMB/CIFS filesystem
581745b8439SSascha Wildneroptions 	TMPFS			#Temporary filesystem
5828124268fSSascha Wildneroptions		UDF			#UDF filesystem
583745b8439SSascha Wildner
584745b8439SSascha Wildner# YYY-DR Till we rework the VOP methods for this filesystem
585745b8439SSascha Wildner#options 	UNION			#Union filesystem
586745b8439SSascha Wildner# The xFS_ROOT options REQUIRE the associated ``options xFS''
587745b8439SSascha Wildneroptions 	FFS_ROOT		#FFS usable as root device
588745b8439SSascha Wildneroptions 	NFS_ROOT		#NFS usable as root device
589745b8439SSascha Wildner
590745b8439SSascha Wildner# Soft updates is technique for improving UFS filesystem speed and
591745b8439SSascha Wildner# making abrupt shutdown less risky.
592745b8439SSascha Wildneroptions 	SOFTUPDATES
593745b8439SSascha Wildner
594745b8439SSascha Wildner# Directory hashing improves the speed of operations on very large
595745b8439SSascha Wildner# directories at the expense of some memory.
596745b8439SSascha Wildneroptions 	UFS_DIRHASH
597745b8439SSascha Wildner
598745b8439SSascha Wildner# Make space in the kernel for a root filesystem on a md device.
599745b8439SSascha Wildner# Define to the number of kilobytes to reserve for the filesystem.
600745b8439SSascha Wildneroptions 	MD_ROOT_SIZE=10
601745b8439SSascha Wildner
602745b8439SSascha Wildner# Make the md device a potential root device, either with preloaded
603745b8439SSascha Wildner# images of type mfs_root or md_root.
604745b8439SSascha Wildneroptions 	MD_ROOT
605745b8439SSascha Wildner
606745b8439SSascha Wildner# Specify double the default maximum size for malloc(9)-backed md devices.
607745b8439SSascha Wildneroptions 	MD_NSECT=40000
608745b8439SSascha Wildner
609745b8439SSascha Wildner# Allow this many swap-devices.
610745b8439SSascha Wildner#
611745b8439SSascha Wildner# In order to manage swap, the system must reserve bitmap space that
612745b8439SSascha Wildner# scales with the largest mounted swap device multiplied by NSWAPDEV,
613745b8439SSascha Wildner# regardless of whether other swap devices exist or not.  So it
614745b8439SSascha Wildner# is not a good idea to make this value too large.
615745b8439SSascha Wildneroptions 	NSWAPDEV=5
616745b8439SSascha Wildner
617745b8439SSascha Wildner# Disk quotas are supported when this option is enabled.
618745b8439SSascha Wildneroptions 	QUOTA			#enable disk quotas
619745b8439SSascha Wildner
620745b8439SSascha Wildner# If you are running a machine just as a fileserver for PC and MAC
621d22a69a4SSascha Wildner# users, e.g. using SAMBA, you may consider setting this option
622745b8439SSascha Wildner# and keeping all those users' directories on a filesystem that is
623745b8439SSascha Wildner# mounted with the suiddir option. This gives new files the same
624745b8439SSascha Wildner# ownership as the directory (similar to group). It's a security hole
625745b8439SSascha Wildner# if you let these users run programs, so confine it to file-servers
626745b8439SSascha Wildner# (but it'll save you lots of headaches in those cases). Root owned
627745b8439SSascha Wildner# directories are exempt and X bits are cleared. The suid bit must be
628745b8439SSascha Wildner# set on the directory as well; see chmod(1) PC owners can't see/set
629745b8439SSascha Wildner# ownerships so they keep getting their toes trodden on. This saves
630745b8439SSascha Wildner# you all the support calls as the filesystem it's used on will act as
631745b8439SSascha Wildner# they expect: "It's my dir so it must be my file".
632745b8439SSascha Wildner#
633745b8439SSascha Wildneroptions 	SUIDDIR
634745b8439SSascha Wildner
635745b8439SSascha Wildner# NFS options:
636745b8439SSascha Wildneroptions 	NFS_MINATTRTIMO=3	# VREG attrib cache timeout in sec
637745b8439SSascha Wildneroptions 	NFS_MAXATTRTIMO=60
638745b8439SSascha Wildneroptions 	NFS_MINDIRATTRTIMO=30	# VDIR attrib cache timeout in sec
639745b8439SSascha Wildneroptions 	NFS_MAXDIRATTRTIMO=60
640745b8439SSascha Wildneroptions 	NFS_GATHERDELAY=10	# Default write gather delay (msec)
641745b8439SSascha Wildneroptions 	NFS_UIDHASHSIZ=29	# Tune the size of nfssvc_sock with this
642745b8439SSascha Wildneroptions 	NFS_WDELAYHASHSIZ=16	# and with this
643745b8439SSascha Wildneroptions 	NFS_MUIDHASHSIZ=63	# Tune the size of nfsmount with this
644745b8439SSascha Wildneroptions 	NFS_DEBUG		# Enable NFS Debugging
645745b8439SSascha Wildner
646745b8439SSascha Wildner# MSDOSFS options:
647745b8439SSascha Wildneroptions		MSDOSFS_DEBUG		# Enable MSDOSFS Debugging
648745b8439SSascha Wildner
649745b8439SSascha Wildner#
650745b8439SSascha Wildner# Add support for the EXT2FS filesystem of Linux fame.  Be a bit
651745b8439SSascha Wildner# careful with this - the ext2fs code has a tendency to lag behind
652745b8439SSascha Wildner# changes and not be exercised very much, so mounting read/write could
653745b8439SSascha Wildner# be dangerous (and even mounting read only could result in panics.)
654745b8439SSascha Wildner#
655745b8439SSascha Wildneroptions 	EXT2FS
656745b8439SSascha Wildner
657745b8439SSascha Wildner# Optional character code conversion support with LIBICONV.
658745b8439SSascha Wildner# Each option requires their base file system and LIBICONV.
659745b8439SSascha Wildneroptions 	CD9660_ICONV
660745b8439SSascha Wildneroptions 	MSDOSFS_ICONV
661745b8439SSascha Wildneroptions 	NTFS_ICONV
662745b8439SSascha Wildner
663745b8439SSascha Wildner#####################################################################
664745b8439SSascha Wildner# POSIX P1003.1B
665745b8439SSascha Wildner
666745b8439SSascha Wildner# Real time extensions added in the 1993 Posix
667745b8439SSascha Wildner# P1003_1B: Infrastructure
668745b8439SSascha Wildner# _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING
669745b8439SSascha Wildner# _KPOSIX_VERSION:             Version kernel is built for
670745b8439SSascha Wildner
671745b8439SSascha Wildneroptions 	P1003_1B
672745b8439SSascha Wildneroptions 	_KPOSIX_PRIORITY_SCHEDULING
673745b8439SSascha Wildneroptions 	_KPOSIX_VERSION=199309L
674745b8439SSascha Wildner
675745b8439SSascha Wildner#####################################################################
676745b8439SSascha Wildner# CLOCK OPTIONS
677745b8439SSascha Wildner
678745b8439SSascha Wildner# The granularity of operation is controlled by the kernel option HZ whose
679745b8439SSascha Wildner# default value (100) means a granularity of 10ms (1s/HZ).
680745b8439SSascha Wildner# Consider, however, that reducing the granularity too much might
681745b8439SSascha Wildner# cause excessive overhead in clock interrupt processing,
682745b8439SSascha Wildner# potentially causing ticks to be missed and thus actually reducing
683745b8439SSascha Wildner# the accuracy of operation.
684745b8439SSascha Wildner
685745b8439SSascha Wildneroptions 	HZ=100
686745b8439SSascha Wildner
687745b8439SSascha Wildner# The following options are used for debugging clock behavior only, and
688745b8439SSascha Wildner# should not be used for production systems.
689745b8439SSascha Wildner#
690745b8439SSascha Wildner# CLK_CALIBRATION_LOOP will run the clock calibration loop at startup
691745b8439SSascha Wildner# until the user presses a key.
692745b8439SSascha Wildner
693745b8439SSascha Wildner#options 	CLK_CALIBRATION_LOOP
694745b8439SSascha Wildner
695745b8439SSascha Wildner# The following two options measure the frequency of the corresponding
696745b8439SSascha Wildner# clock relative to the RTC (onboard mc146818a).
697745b8439SSascha Wildner
698745b8439SSascha Wildner#options 	CLK_USE_I8254_CALIBRATION
699745b8439SSascha Wildner#options 	CLK_USE_TSC_CALIBRATION
700745b8439SSascha Wildner
701745b8439SSascha Wildner#####################################################################
702745b8439SSascha Wildner# SCSI DEVICES
703745b8439SSascha Wildner
704745b8439SSascha Wildner# SCSI DEVICE CONFIGURATION
705745b8439SSascha Wildner
706745b8439SSascha Wildner# The SCSI subsystem consists of the `base' SCSI code, a number of
707745b8439SSascha Wildner# high-level SCSI device `type' drivers, and the low-level host-adapter
708745b8439SSascha Wildner# device drivers.  The host adapters are listed in the ISA and PCI
709745b8439SSascha Wildner# device configuration sections below.
710745b8439SSascha Wildner#
711745b8439SSascha Wildner# Beginning with FreeBSD 2.0.5 you can wire down your SCSI devices so
712745b8439SSascha Wildner# that a given bus, target, and LUN always come on line as the same
713745b8439SSascha Wildner# device unit.  In earlier versions the unit numbers were assigned
714745b8439SSascha Wildner# in the order that the devices were probed on the SCSI bus.  This
715745b8439SSascha Wildner# means that if you removed a disk drive, you may have had to rewrite
716745b8439SSascha Wildner# your /etc/fstab file, and also that you had to be careful when adding
717745b8439SSascha Wildner# a new disk as it may have been probed earlier and moved your device
718745b8439SSascha Wildner# configuration around.
719745b8439SSascha Wildner
720745b8439SSascha Wildner# This old behavior is maintained as the default behavior.  The unit
721745b8439SSascha Wildner# assignment begins with the first non-wired down unit for a device
722745b8439SSascha Wildner# type.  For example, if you wire a disk as "da3" then the first
723745b8439SSascha Wildner# non-wired disk will be assigned da4.
724745b8439SSascha Wildner
725745b8439SSascha Wildner# The syntax for wiring down devices is:
726745b8439SSascha Wildner
727745b8439SSascha Wildner# device	scbus0 at ahc0		# Single bus device
728745b8439SSascha Wildner# device	scbus1 at ahc1 bus 0	# Single bus device
729745b8439SSascha Wildner# device	scbus3 at ahc2 bus 0	# Twin bus device
730745b8439SSascha Wildner# device	scbus2 at ahc2 bus 1	# Twin bus device
731745b8439SSascha Wildner# device 	da0 at scbus0 target 0 unit 0
732745b8439SSascha Wildner# device	da1 at scbus3 target 1
733745b8439SSascha Wildner# device	da2 at scbus2 target 3
734745b8439SSascha Wildner# device	sa1 at scbus1 target 6
735745b8439SSascha Wildner# device	cd
736745b8439SSascha Wildner
737745b8439SSascha Wildner# "units" (SCSI logical unit number) that are not specified are
738745b8439SSascha Wildner# treated as if specified as LUN 0.
739745b8439SSascha Wildner
740745b8439SSascha Wildner# All SCSI devices allocate as many units as are required.
741745b8439SSascha Wildner
742745b8439SSascha Wildner# The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI
743745b8439SSascha Wildner# configuration and doesn't have to be explicitly configured.
744745b8439SSascha Wildner
745745b8439SSascha Wildnerdevice		scbus			#base SCSI code
746745b8439SSascha Wildnerdevice		ch			#SCSI media changers
747745b8439SSascha Wildnerdevice		da			#SCSI direct access devices (aka disks)
748745b8439SSascha Wildnerdevice		sa			#SCSI tapes
749745b8439SSascha Wildnerdevice		cd			#SCSI CD-ROMs
750745b8439SSascha Wildnerdevice		pass			#CAM passthrough driver
751745b8439SSascha Wildnerdevice		sg			#Passthrough device (linux scsi generic)
752745b8439SSascha Wildnerdevice		pt			#SCSI processor type
753745b8439SSascha Wildnerdevice		ses			#SCSI SES/SAF-TE driver
754745b8439SSascha Wildner
755745b8439SSascha Wildner# Options for device mapper
756745b8439SSascha Wildnerdevice		dm
757745b8439SSascha Wildnerdevice		dm_target_crypt
758745b8439SSascha Wildnerdevice		dm_target_linear
759745b8439SSascha Wildnerdevice		dm_target_striped
760745b8439SSascha Wildner
761745b8439SSascha Wildner# Options for iSCSI
762745b8439SSascha Wildnerdevice	        iscsi_initiator
763745b8439SSascha Wildneroptions		ISCSI_INITIATOR_DEBUG=8
764745b8439SSascha Wildner
765745b8439SSascha Wildner# CAM OPTIONS:
766745b8439SSascha Wildner# debugging options:
767745b8439SSascha Wildner# -- NOTE --  If you specify one of the bus/target/lun options, you must
768745b8439SSascha Wildner#             specify them all!
769745b8439SSascha Wildner# CAMDEBUG: When defined enables debugging macros
770745b8439SSascha Wildner# CAM_DEBUG_BUS:  Debug the given bus.  Use -1 to debug all busses.
771745b8439SSascha Wildner# CAM_DEBUG_TARGET:  Debug the given target.  Use -1 to debug all targets.
772745b8439SSascha Wildner# CAM_DEBUG_LUN:  Debug the given lun.  Use -1 to debug all luns.
773745b8439SSascha Wildner# CAM_DEBUG_FLAGS:  OR together CAM_DEBUG_INFO, CAM_DEBUG_TRACE,
774745b8439SSascha Wildner#                   CAM_DEBUG_SUBTRACE, and CAM_DEBUG_CDB
775745b8439SSascha Wildner#
776745b8439SSascha Wildner# CAM_MAX_HIGHPOWER: Maximum number of concurrent high power (start unit) cmds
777745b8439SSascha Wildner# SCSI_NO_SENSE_STRINGS: When defined disables sense descriptions
778745b8439SSascha Wildner# SCSI_NO_OP_STRINGS: When defined disables opcode descriptions
779745b8439SSascha Wildner# SCSI_DELAY: The number of MILLISECONDS to freeze the SIM (scsi adapter)
780745b8439SSascha Wildner#             queue after a bus reset, and the number of milliseconds to
781745b8439SSascha Wildner#             freeze the device queue after a bus device reset.  This
782745b8439SSascha Wildner#             can be changed at boot and runtime with the
783745b8439SSascha Wildner#             kern.cam.scsi_delay tunable/sysctl.
784745b8439SSascha Wildneroptions 	CAMDEBUG
785745b8439SSascha Wildneroptions 	CAM_DEBUG_BUS=-1
786745b8439SSascha Wildneroptions 	CAM_DEBUG_TARGET=-1
787745b8439SSascha Wildneroptions 	CAM_DEBUG_LUN=-1
788745b8439SSascha Wildneroptions 	CAM_DEBUG_FLAGS="CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB"
789745b8439SSascha Wildneroptions 	CAM_MAX_HIGHPOWER=4
790745b8439SSascha Wildneroptions 	SCSI_NO_SENSE_STRINGS
791745b8439SSascha Wildneroptions 	SCSI_NO_OP_STRINGS
792745b8439SSascha Wildneroptions 	SCSI_DELAY=8000	# Be pessimistic about Joe SCSI device
793745b8439SSascha Wildner
794745b8439SSascha Wildner# Options for the CAM CDROM driver:
795745b8439SSascha Wildner# CHANGER_MIN_BUSY_SECONDS: Guaranteed minimum time quantum for a changer LUN
796745b8439SSascha Wildner# CHANGER_MAX_BUSY_SECONDS: Maximum time quantum per changer LUN, only
797745b8439SSascha Wildner#                           enforced if there is I/O waiting for another LUN
798745b8439SSascha Wildner# The compiled in defaults for these variables are 2 and 10 seconds,
799745b8439SSascha Wildner# respectively.
800745b8439SSascha Wildner#
801745b8439SSascha Wildner# These can also be changed on the fly with the following sysctl variables:
802745b8439SSascha Wildner# kern.cam.cd.changer.min_busy_seconds
803745b8439SSascha Wildner# kern.cam.cd.changer.max_busy_seconds
804745b8439SSascha Wildner#
805745b8439SSascha Wildneroptions 	CHANGER_MIN_BUSY_SECONDS=2
806745b8439SSascha Wildneroptions 	CHANGER_MAX_BUSY_SECONDS=10
807745b8439SSascha Wildner
808745b8439SSascha Wildner# Options for the CAM sequential access driver:
809745b8439SSascha Wildner# SA_IO_TIMEOUT: Timeout for read/write/wfm  operations, in minutes
810745b8439SSascha Wildner# SA_SPACE_TIMEOUT: Timeout for space operations, in minutes
811745b8439SSascha Wildner# SA_REWIND_TIMEOUT: Timeout for rewind operations, in minutes
812745b8439SSascha Wildner# SA_ERASE_TIMEOUT: Timeout for erase operations, in minutes
813745b8439SSascha Wildner# SA_1FM_AT_EOD: Default to model which only has a default one filemark at EOT.
814745b8439SSascha Wildneroptions 	SA_IO_TIMEOUT="(4)"
815745b8439SSascha Wildneroptions 	SA_SPACE_TIMEOUT="(60)"
816745b8439SSascha Wildneroptions 	SA_REWIND_TIMEOUT="(2*60)"
817745b8439SSascha Wildneroptions 	SA_ERASE_TIMEOUT="(4*60)"
818745b8439SSascha Wildneroptions 	SA_1FM_AT_EOD
819745b8439SSascha Wildner
820745b8439SSascha Wildner# Optional timeout for the CAM processor target (pt) device
821745b8439SSascha Wildner# This is specified in seconds.  The default is 60 seconds.
822745b8439SSascha Wildneroptions 	SCSI_PT_DEFAULT_TIMEOUT="60"
823745b8439SSascha Wildner
824745b8439SSascha Wildner# Optional enable of doing SES passthrough on other devices (e.g., disks)
825745b8439SSascha Wildner#
826745b8439SSascha Wildner# Normally disabled because a lot of newer SCSI disks report themselves
827745b8439SSascha Wildner# as having SES capabilities, but this can then clot up attempts to build
828745b8439SSascha Wildner# build a topology with the SES device that's on the box these drives
829745b8439SSascha Wildner# are in....
830745b8439SSascha Wildneroptions 	SES_ENABLE_PASSTHROUGH
831745b8439SSascha Wildner
832745b8439SSascha Wildner#####################################################################
833745b8439SSascha Wildner# MISCELLANEOUS DEVICES AND OPTIONS
834745b8439SSascha Wildner
835745b8439SSascha Wildner# The `pty' device usually turns out to be ``effectively mandatory'',
836745b8439SSascha Wildner# as it is required for `telnetd', `rlogind', `screen', `emacs', and
837745b8439SSascha Wildner# `xterm', among others.
838745b8439SSascha Wildner
839745b8439SSascha Wildnerpseudo-device	pty		#Pseudo ttys
840745b8439SSascha Wildnerpseudo-device	gzip		#Exec gzipped a.out's
841745b8439SSascha Wildnerpseudo-device	vn		#Vnode driver (turns a file into a device)
842745b8439SSascha Wildnerpseudo-device	md		#Memory/malloc disk
843745b8439SSascha Wildnerpseudo-device	snp		#Snoop device - to look at pty/vty/etc..
844745b8439SSascha Wildnerpseudo-device	ccd	4	#Concatenated disk driver
845745b8439SSascha Wildner
846745b8439SSascha Wildner# Configuring Vinum into the kernel is not necessary, since the kld
847745b8439SSascha Wildner# module gets started automatically when vinum(8) starts.  This
848745b8439SSascha Wildner# device is also untested.  Use at your own risk.
849745b8439SSascha Wildner#
850745b8439SSascha Wildner# The option VINUMDEBUG must match the value set in CFLAGS
851745b8439SSascha Wildner# in src/sbin/vinum/Makefile.  Failure to do so will result in
852745b8439SSascha Wildner# the following message from vinum(8):
853745b8439SSascha Wildner#
854745b8439SSascha Wildner# Can't get vinum config: Invalid argument
855745b8439SSascha Wildner#
856745b8439SSascha Wildner# see vinum(4) for more reasons not to use these options.
85710de45ebSSascha Wildnerpseudo-device	vinum		#Vinum concat/mirror/raid driver
858745b8439SSascha Wildner#options 	VINUMDEBUG	#enable Vinum debugging hooks
859745b8439SSascha Wildner
860745b8439SSascha Wildner# Kernel side iconv library
861745b8439SSascha Wildneroptions 	LIBICONV
862745b8439SSascha Wildner
863745b8439SSascha Wildner# Size of the kernel message buffer.  Should be N * pagesize.
864745b8439SSascha Wildneroptions 	MSGBUF_SIZE=40960
865745b8439SSascha Wildner
866745b8439SSascha Wildner#####################################################################
867745b8439SSascha Wildner# HARDWARE DEVICE CONFIGURATION
868745b8439SSascha Wildner
869745b8439SSascha Wildner# ISA devices:
870745b8439SSascha Wildner
871745b8439SSascha Wildner#
872745b8439SSascha Wildner# Mandatory ISA devices: isa
873745b8439SSascha Wildner#
874745b8439SSascha Wildnerdevice		isa
875745b8439SSascha Wildner
876745b8439SSascha Wildner#
877745b8439SSascha Wildner# Options for `isa':
878745b8439SSascha Wildner#
879745b8439SSascha Wildner# AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A
880745b8439SSascha Wildner# interrupt controller.  This saves about 0.7-1.25 usec for each interrupt.
881745b8439SSascha Wildner# This option breaks suspend/resume on some portables.
882745b8439SSascha Wildner#
883745b8439SSascha Wildner# AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A
884745b8439SSascha Wildner# interrupt controller.  This saves about 0.7-1.25 usec for each interrupt.
885745b8439SSascha Wildner# Automatic EOI is documented not to work for for the slave with the
886745b8439SSascha Wildner# original i8259A, but it works for some clones and some integrated
887745b8439SSascha Wildner# versions.
888745b8439SSascha Wildner#
889745b8439SSascha Wildner# MAXMEM specifies the amount of RAM on the machine; if this is not
890745b8439SSascha Wildner# specified, DragonFly will first read the amount of memory from the CMOS
891745b8439SSascha Wildner# RAM, so the amount of memory will initially be limited to 64MB or 16MB
892745b8439SSascha Wildner# depending on the BIOS.  If the BIOS reports 64MB, a memory probe will
893745b8439SSascha Wildner# then attempt to detect the installed amount of RAM.  If this probe
894745b8439SSascha Wildner# fails to detect >64MB RAM you will have to use the MAXMEM option.
895745b8439SSascha Wildner# The amount is in kilobytes, so for a machine with 128MB of RAM, it would
896745b8439SSascha Wildner# be 131072 (128 * 1024).
897745b8439SSascha Wildner#
898745b8439SSascha Wildner# BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to
899745b8439SSascha Wildner# reset the CPU for reboot.  This is needed on some systems with broken
900745b8439SSascha Wildner# keyboard controllers.
901745b8439SSascha Wildner
902745b8439SSascha Wildneroptions 	AUTO_EOI_1
903745b8439SSascha Wildner#options 	AUTO_EOI_2
904745b8439SSascha Wildneroptions 	MAXMEM="(128*1024)"
905745b8439SSascha Wildner#options 	BROKEN_KEYBOARD_RESET
906745b8439SSascha Wildner
907745b8439SSascha Wildner# Enable support for the kernel PLL to use an external PPS signal,
908745b8439SSascha Wildner# under supervision of [x]ntpd(8)
909745b8439SSascha Wildner# More info in ntpd documentation: http://www.eecis.udel.edu/~ntp
910745b8439SSascha Wildner
911745b8439SSascha Wildneroptions 	PPS_SYNC
912745b8439SSascha Wildner
913745b8439SSascha Wildner# The keyboard controller; it controls the keyboard and the PS/2 mouse.
914745b8439SSascha Wildnerdevice		atkbdc0	at isa? port IO_KBD
915745b8439SSascha Wildner
916745b8439SSascha Wildner# The AT keyboard
917745b8439SSascha Wildnerdevice		atkbd0	at atkbdc? irq 1
918745b8439SSascha Wildner
919745b8439SSascha Wildner# Options for atkbd:
920745b8439SSascha Wildneroptions 	ATKBD_DFLT_KEYMAP	# specify the built-in keymap
921745b8439SSascha Wildnermakeoptions	ATKBD_DFLT_KEYMAP="jp.106"
922745b8439SSascha Wildner
923745b8439SSascha Wildner# These options are valid for other keyboard drivers as well.
924745b8439SSascha Wildneroptions 	KBD_DISABLE_KEYMAP_LOAD	# refuse to load a keymap
925745b8439SSascha Wildneroptions 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
926745b8439SSascha Wildner
927745b8439SSascha Wildner# `flags' for atkbd:
928745b8439SSascha Wildner#       0x01    Force detection of keyboard, else we always assume a keyboard
929745b8439SSascha Wildner#       0x02    Don't reset keyboard, useful for some newer ThinkPads
930745b8439SSascha Wildner#	0x03	Force detection and avoid reset, might help with certain
931745b8439SSascha Wildner#		dockingstations
932745b8439SSascha Wildner#       0x04    Old-style (XT) keyboard support, useful for older ThinkPads
933745b8439SSascha Wildner
934745b8439SSascha Wildner# PS/2 mouse
935745b8439SSascha Wildnerdevice		psm0	at atkbdc? irq 12
936745b8439SSascha Wildner
937745b8439SSascha Wildner# Options for psm:
938745b8439SSascha Wildneroptions 	PSM_HOOKRESUME		#hook the system resume event, useful
939745b8439SSascha Wildner					#for some laptops
940745b8439SSascha Wildneroptions 	PSM_RESETAFTERSUSPEND	#reset the device at the resume event
941745b8439SSascha Wildner
942745b8439SSascha Wildnerdevice		kbdmux			# keyboard multiplexer
943745b8439SSascha Wildner
944745b8439SSascha Wildner# The video card driver.
945745b8439SSascha Wildnerdevice		vga0	at isa?
946745b8439SSascha Wildner
947745b8439SSascha Wildner# Options for vga:
948745b8439SSascha Wildner# Try the following option if the mouse pointer is not drawn correctly
949745b8439SSascha Wildner# or font does not seem to be loaded properly.  May cause flicker on
950745b8439SSascha Wildner# some systems.
951745b8439SSascha Wildneroptions 	VGA_ALT_SEQACCESS
952745b8439SSascha Wildner
953745b8439SSascha Wildneroptions		VGA_DEBUG=2		# enable VGA debug output
954745b8439SSascha Wildner
955745b8439SSascha Wildner# If you experience problems switching back to 80x25 (or a derived mode),
956745b8439SSascha Wildner# the following option might help.
957745b8439SSascha Wildner#options	VGA_KEEP_POWERON_MODE	# use power-on settings for 80x25
958745b8439SSascha Wildner
959745b8439SSascha Wildner# If you can dispense with some vga driver features, you may want to
960745b8439SSascha Wildner# use the following options to save some memory.
961745b8439SSascha Wildner#options 	VGA_NO_FONT_LOADING	# don't save/load font
962745b8439SSascha Wildner#options 	VGA_NO_MODE_CHANGE	# don't change video modes
963745b8439SSascha Wildner
964745b8439SSascha Wildner# The following option probably won't work with the LCD displays.
965745b8439SSascha Wildneroptions 	VGA_WIDTH90		# support 90 column modes
966745b8439SSascha Wildner
967745b8439SSascha Wildner# Splash screen at start up!  Screen savers require this too.
968745b8439SSascha Wildnerpseudo-device	splash
969745b8439SSascha Wildner
970745b8439SSascha Wildner# The syscons console driver (sco color console compatible).
971745b8439SSascha Wildnerdevice		sc0	at isa?
972745b8439SSascha Wildneroptions 	MAXCONS=16		# number of virtual consoles
973745b8439SSascha Wildneroptions 	SC_ALT_MOUSE_IMAGE	# simplified mouse cursor in text mode
974745b8439SSascha Wildneroptions 	SC_DEBUG_LEVEL=5	# enable debug output
975745b8439SSascha Wildneroptions 	SC_DFLT_FONT		# compile font in
976745b8439SSascha Wildnermakeoptions	SC_DFLT_FONT=cp850
977745b8439SSascha Wildneroptions 	SC_DISABLE_DDBKEY	# disable `debug' key
978745b8439SSascha Wildneroptions 	SC_DISABLE_REBOOT	# disable reboot key sequence
979745b8439SSascha Wildneroptions 	SC_HISTORY_SIZE=200	# number of history buffer lines
980745b8439SSascha Wildneroptions 	SC_MOUSE_CHAR=0x3	# char code for text mode mouse cursor
981745b8439SSascha Wildneroptions 	SC_PIXEL_MODE		# add support for the raster text mode
982745b8439SSascha Wildner
983745b8439SSascha Wildner# The following options will let you change the default colors of syscons.
984745b8439SSascha Wildneroptions 	SC_NORM_ATTR="(FG_GREEN|BG_BLACK)"
985745b8439SSascha Wildneroptions 	SC_NORM_REV_ATTR="(FG_YELLOW|BG_GREEN)"
986745b8439SSascha Wildneroptions 	SC_KERNEL_CONS_ATTR="(FG_RED|BG_BLACK)"
987745b8439SSascha Wildneroptions 	SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_RED)"
988745b8439SSascha Wildner
989745b8439SSascha Wildner# If you have a two button mouse, you may want to add the following option
990745b8439SSascha Wildner# to use the right button of the mouse to paste text.
991745b8439SSascha Wildneroptions 	SC_TWOBUTTON_MOUSE
992745b8439SSascha Wildner
993745b8439SSascha Wildner# You can selectively disable features in syscons.
994745b8439SSascha Wildner#options 	SC_NO_CUTPASTE
995745b8439SSascha Wildner#options 	SC_NO_FONT_LOADING
996745b8439SSascha Wildner#options 	SC_NO_HISTORY
997745b8439SSascha Wildner#options 	SC_NO_SYSMOUSE
998745b8439SSascha Wildner
999745b8439SSascha Wildner#
1000745b8439SSascha Wildner# Optional ISA devices:
1001745b8439SSascha Wildner#
1002745b8439SSascha Wildner
1003745b8439SSascha Wildner#
1004ad9f8794SSascha Wildner# SCSI host adapters: `aic' and `bt'
1005745b8439SSascha Wildner#
1006745b8439SSascha Wildner# adv: All Narrow SCSI bus AdvanSys controllers.
1007745b8439SSascha Wildner# adw: Second Generation AdvanSys controllers including the ADV940UW.
1008745b8439SSascha Wildner# ahc: Adaptec 274x/284x/294x
1009745b8439SSascha Wildner# aic: Adaptec 152x
1010745b8439SSascha Wildner# bt: Most Buslogic controllers
1011745b8439SSascha Wildner# ncv: NCR 53C500 based SCSI host adapters.
1012745b8439SSascha Wildner# nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters.
1013745b8439SSascha Wildner# stg: TMC 18C30, 18C50 based ISA/PC Card SCSI host adapters.
1014745b8439SSascha Wildner#
1015745b8439SSascha Wildner# Note that the order is important in order for Buslogic cards to be
1016745b8439SSascha Wildner# probed correctly.
1017745b8439SSascha Wildner#
1018745b8439SSascha Wildner
1019745b8439SSascha Wildnerdevice		bt0	at isa? port IO_BT0
1020745b8439SSascha Wildnerdevice		adv0	at isa?
1021745b8439SSascha Wildnerdevice		adw
1022745b8439SSascha Wildnerdevice		aic0	at isa?
1023745b8439SSascha Wildnerdevice		ncv
1024745b8439SSascha Wildnerdevice		nsp
1025745b8439SSascha Wildnerdevice		stg0	at isa? port 0x140 irq 11
1026745b8439SSascha Wildner
1027745b8439SSascha Wildner#
1028745b8439SSascha Wildner# Adaptec FSA RAID controllers, including integrated DELL controller,
1029745b8439SSascha Wildner# the Dell PERC 2/QC and the HP NetRAID-4M
1030745b8439SSascha Wildner#
1031745b8439SSascha Wildnerdevice		aac
1032745b8439SSascha Wildneroptions		AAC_DEBUG
1033745b8439SSascha Wildnerdevice		aacp	# SCSI Passthrough interface (optional, CAM required)
1034745b8439SSascha Wildner
1035745b8439SSascha Wildner#
1036745b8439SSascha Wildner# Compaq Smart RAID, Mylex DAC960 and AMI MegaRAID controllers.  Only
1037745b8439SSascha Wildner# one entry is needed; the code will find and configure all supported
1038745b8439SSascha Wildner# controllers.
1039745b8439SSascha Wildner#
1040745b8439SSascha Wildnerdevice		ida		# Compaq Smart RAID
1041745b8439SSascha Wildnerdevice		mlx		# Mylex DAC960
1042745b8439SSascha Wildnerdevice		amr		# AMI MegaRAID
1043745b8439SSascha Wildnerdevice		amrp		# SCSI Passthrough interface (optional, CAM req.)
1044745b8439SSascha Wildnerdevice		mfi		# LSI MegaRAID SAS
1045745b8439SSascha Wildnerdevice		mfip		# LSI MegaRAID SAS passthrough, requires CAM
1046745b8439SSascha Wildneroptions 	MFI_DEBUG
1047745b8439SSascha Wildner
1048745b8439SSascha Wildner#
1049745b8439SSascha Wildner# Areca RAID (CAM is required).
1050745b8439SSascha Wildner#
1051745b8439SSascha Wildnerdevice		arcmsr		# Areca SATA II RAID
1052745b8439SSascha Wildner
1053745b8439SSascha Wildner#
1054745b8439SSascha Wildner# Highpoint RocketRAID 182x.
1055745b8439SSascha Wildnerdevice		hptmv
1056745b8439SSascha Wildner
1057745b8439SSascha Wildner#
1058745b8439SSascha Wildner# Highpoint RocketRaid 3xxx series SATA RAID
1059745b8439SSascha Wildnerdevice		hptiop
1060745b8439SSascha Wildner
1061745b8439SSascha Wildner#
1062745b8439SSascha Wildner# 3ware ATA RAID
1063745b8439SSascha Wildner#
1064745b8439SSascha Wildnerdevice		twe		# 3ware ATA RAID
1065745b8439SSascha Wildnerdevice		twa		# 3ware 9000 series PATA/SATA RAID
1066745b8439SSascha Wildneroptions 	TWA_DEBUG=10	# enable debug messages
1067745b8439SSascha Wildnerdevice		tws		# 3ware 9750 series SATA/SAS RAID
1068745b8439SSascha Wildner
1069745b8439SSascha Wildner#
1070745b8439SSascha Wildner# Promise Supertrack SX6000
1071745b8439SSascha Wildner#
1072745b8439SSascha Wildner#device		pst
1073745b8439SSascha Wildner
1074745b8439SSascha Wildner#
1075745b8439SSascha Wildner# IBM ServeRAID
1076745b8439SSascha Wildner#
1077745b8439SSascha Wildnerdevice	ips
1078745b8439SSascha Wildner
1079745b8439SSascha Wildner#
1080745b8439SSascha Wildner# The 'ATA' driver supports all ATA and ATAPI devices.
1081745b8439SSascha Wildner# You only need one "device ata" for it to find all
1082745b8439SSascha Wildner# PCI ATA/ATAPI devices on modern machines.
1083745b8439SSascha Wildner#device		ata
1084745b8439SSascha Wildner#device		atadisk		# ATA disk drives
1085745b8439SSascha Wildner#device		atapicd		# ATAPI CDROM drives
1086745b8439SSascha Wildner#device		atapifd		# ATAPI floppy drives
1087745b8439SSascha Wildner#device		atapist		# ATAPI tape drives
1088745b8439SSascha Wildner#device		atapicam	# emulate ATAPI devices as SCSI ditto via CAM
1089745b8439SSascha Wildner				# needs CAM to be present (scbus & pass)
1090745b8439SSascha Wildner# AHCI driver, this will override NATA for AHCI devices,
1091745b8439SSascha Wildner# both drivers may be included.
1092745b8439SSascha Wildner#
1093745b8439SSascha Wildnerdevice		ahci
1094745b8439SSascha Wildner
1095745b8439SSascha Wildner# SiI3124/3132 driver
1096745b8439SSascha Wildner#
1097745b8439SSascha Wildnerdevice		sili
1098745b8439SSascha Wildner
1099745b8439SSascha Wildner# The 'NATA' set of drivers are set to replace the previous ATA drivers,
1100745b8439SSascha Wildner# and this set of drivers is mutually exclusive with the old ones. This means,
1101745b8439SSascha Wildner# you can't have both at the same time!
1102745b8439SSascha Wildnerdevice		nata
1103745b8439SSascha Wildnerdevice		natadisk	# ATA disk drives
1104745b8439SSascha Wildnerdevice		natapicd	# ATAPI CD/DVD drives
1105745b8439SSascha Wildnerdevice		natapifd	# ATAPI floppy drives
1106745b8439SSascha Wildnerdevice		natapist	# ATAPI tape drives
1107745b8439SSascha Wildnerdevice		natapicam	# ATAPI CAM layer emulation
1108745b8439SSascha Wildnerdevice		nataraid	# support for ATA software RAID controllers
1109745b8439SSascha Wildnerdevice		natausb		# ATA-over-USB support
1110745b8439SSascha Wildner
1111745b8439SSascha Wildner#The following options are valid on the ATA & NATA drivers:
1112745b8439SSascha Wildner#
1113745b8439SSascha Wildner# ATA_STATIC_ID:	controller numbering is static (like the old driver)
1114745b8439SSascha Wildner#			else the device numbers are dynamically allocated.
1115745b8439SSascha Wildneroptions 	ATA_STATIC_ID
1116745b8439SSascha Wildner
1117745b8439SSascha Wildner#
1118745b8439SSascha Wildner# For older non-PCI systems, these are the lines to use:
1119745b8439SSascha Wildner#device		ata0	at isa? port IO_WD1 irq 14
1120745b8439SSascha Wildner#device		ata1	at isa? port IO_WD2 irq 15
1121745b8439SSascha Wildner
1122745b8439SSascha Wildner#
1123745b8439SSascha Wildner# Standard floppy disk controllers: `fdc' and `fd'
1124745b8439SSascha Wildner#
1125745b8439SSascha Wildner#device		fdc0	at isa? port IO_FD1 irq 6 drq 2
1126745b8439SSascha Wildner#
1127745b8439SSascha Wildner# FDC_DEBUG enables floppy debugging.  Since the debug output is huge, you
1128745b8439SSascha Wildner# gotta turn it actually on by setting the variable fd_debug with DDB,
1129745b8439SSascha Wildner# however.
1130745b8439SSascha Wildner#options 	FDC_DEBUG
1131745b8439SSascha Wildner
1132745b8439SSascha Wildner#device		fd0	at fdc0 drive 0
1133745b8439SSascha Wildner#device		fd1	at fdc0 drive 1
1134745b8439SSascha Wildner
1135745b8439SSascha Wildner#
1136745b8439SSascha Wildner# Other standard PC hardware: `sio', etc.
1137745b8439SSascha Wildner#
1138745b8439SSascha Wildner# sio: serial ports (see sio(4))
1139745b8439SSascha Wildner
1140745b8439SSascha Wildnerdevice		sio0	at isa? port IO_COM1 flags 0x10 irq 4
1141745b8439SSascha Wildner
1142745b8439SSascha Wildner#
1143745b8439SSascha Wildner# `flags' for serial drivers that support consoles (only for sio now):
1144745b8439SSascha Wildner#	0x10	enable console support for this unit.  The other console flags
1145745b8439SSascha Wildner#		are ignored unless this is set.  Enabling console support does
1146745b8439SSascha Wildner#		not make the unit the preferred console - boot with -h or set
1147745b8439SSascha Wildner#		the 0x20 flag for that.  Currently, at most one unit can have
1148745b8439SSascha Wildner#		console support; the first one (in config file order) with
1149745b8439SSascha Wildner#		this flag set is preferred.  Setting this flag for sio0 gives
1150745b8439SSascha Wildner#		the old behaviour.
1151745b8439SSascha Wildner#	0x20	force this unit to be the console (unless there is another
1152745b8439SSascha Wildner#		higher priority console).  This replaces the COMCONSOLE option.
1153745b8439SSascha Wildner#	0x40	reserve this unit for low level console operations.  Do not
1154745b8439SSascha Wildner#		access the device in any normal way.
1155745b8439SSascha Wildner#	0x80	use this port for serial line gdb support in ddb.
1156745b8439SSascha Wildner#
1157745b8439SSascha Wildner# PnP `flags' (set via userconfig using pnp x flags y)
1158745b8439SSascha Wildner#	0x1	disable probing of this device.  Used to prevent your modem
1159745b8439SSascha Wildner#		from being attached as a PnP modem.
1160745b8439SSascha Wildner#
1161745b8439SSascha Wildner
1162745b8439SSascha Wildner# Options for serial drivers that support consoles (only for sio now):
1163745b8439SSascha Wildneroptions 	BREAK_TO_DEBUGGER	#a BREAK on a comconsole goes to
1164745b8439SSascha Wildner					#DDB, if available.
1165745b8439SSascha Wildneroptions 	CONSPEED=115200		# speed for serial console
1166745b8439SSascha Wildner					# (default 9600)
1167745b8439SSascha Wildner
1168745b8439SSascha Wildner# Solaris implements a new BREAK which is initiated by a character
1169745b8439SSascha Wildner# sequence CR ~ ^b which is similar to a familiar pattern used on
1170745b8439SSascha Wildner# Sun servers by the Remote Console.
1171745b8439SSascha Wildneroptions 	ALT_BREAK_TO_DEBUGGER
1172745b8439SSascha Wildner
1173745b8439SSascha Wildner# Options for sio:
1174745b8439SSascha Wildneroptions 	COM_ESP			#code for Hayes ESP
1175745b8439SSascha Wildneroptions 	COM_MULTIPORT		#code for some cards with shared IRQs
1176745b8439SSascha Wildner
1177745b8439SSascha Wildner# Other flags for sio that aren't documented in the man page.
1178745b8439SSascha Wildner#	0x20000	enable hardware RTS/CTS and larger FIFOs.  Only works for
1179745b8439SSascha Wildner#		ST16650A-compatible UARTs.
1180745b8439SSascha Wildner
1181745b8439SSascha Wildner#
1182ad9f8794SSascha Wildner# Network interfaces: `ed', `ep', `is', `lnc'
1183745b8439SSascha Wildner#
1184745b8439SSascha Wildner# cs: IBM Etherjet and other Crystal Semi CS89x0-based adapters
1185745b8439SSascha Wildner# ed: Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503
1186745b8439SSascha Wildner# ep: 3Com 3C509
1187745b8439SSascha Wildner# ex: Intel EtherExpress Pro/10 and other i82595-based adapters
1188745b8439SSascha Wildner# fe: Fujitsu MB86960A/MB86965A Ethernet
1189745b8439SSascha Wildner# lnc: Lance/PCnet cards (Isolan, Novell NE2100, NE32-VL, AMD Am7990 & Am79C960)
1190745b8439SSascha Wildner# sbsh: Granch SBNI16 SHDSL modem PCI adapters
1191745b8439SSascha Wildner# wi: Lucent WaveLAN/IEEE 802.11 PCMCIA adapters. Note: this supports both
1192745b8439SSascha Wildner#     the PCMCIA and ISA cards: the ISA card is really a PCMCIA to ISA
1193745b8439SSascha Wildner#     bridge with a PCMCIA adapter plugged into it.
1194745b8439SSascha Wildner# an: Aironet 4500/4800 802.11 wireless adapters. Supports the PCMCIA,
1195745b8439SSascha Wildner#     PCI and ISA varieties.
1196745b8439SSascha Wildner# xe: Xircom/Intel EtherExpress Pro100/16 PC Card ethernet controller.
1197745b8439SSascha Wildner#
1198745b8439SSascha Wildnerdevice cs0 at isa? port 0x300
1199745b8439SSascha Wildnerdevice ed0 at isa? port 0x280 irq 5 iomem 0xd8000
1200745b8439SSascha Wildnerdevice ep
1201745b8439SSascha Wildnerdevice ex
1202745b8439SSascha Wildnerdevice lnc0 at isa? port 0x280 irq 10 drq 0
1203745b8439SSascha Wildnerdevice sln
1204745b8439SSascha Wildnerdevice sn0 at isa? port 0x300 irq 10
1205745b8439SSascha Wildner
1206745b8439SSascha Wildner# Wlan support is mandatory for some wireless LAN devices.
1207745b8439SSascha Wildneroptions 	IEEE80211_DEBUG		#enable debugging msgs
1208745b8439SSascha Wildneroptions 	IEEE80211_AMPDU_AGE	#age frames in AMPDU reorder q's
1209745b8439SSascha Wildneroptions 	IEEE80211_SUPPORT_MESH	#enable 802.11s D3.0 support
1210745b8439SSascha Wildneroptions 	IEEE80211_SUPPORT_TDMA	#enable TDMA support
1211745b8439SSascha Wildnerdevice		wlan		# 802.11 support
1212745b8439SSascha Wildnerdevice		wlan_acl	# 802.11 MAC-based access control for AP
1213745b8439SSascha Wildnerdevice		wlan_ccmp	# 802.11 CCMP support
1214745b8439SSascha Wildnerdevice		wlan_tkip	# 802.11 TKIP support
1215745b8439SSascha Wildnerdevice		wlan_wep	# 802.11 WEP support
1216745b8439SSascha Wildnerdevice		wlan_xauth	# 802.11 WPA or 802.1x authentication for AP
1217745b8439SSascha Wildnerdevice		wlan_amrr	# 802.11 AMRR TX rate control algorithm
1218745b8439SSascha Wildnerdevice		an		# Aironet Communications 4500/4800
1219745b8439SSascha Wildnerdevice		ath		# Atheros AR521x
1220745b8439SSascha Wildneroptions 	AH_SUPPORT_AR5416
1221745b8439SSascha Wildnerdevice		ath_hal		# Atheros Hardware Access Layer
1222745b8439SSascha Wildner#device		ath_rate_amrr	# Atheros AMRR TX rate control algorithm
1223745b8439SSascha Wildner#device		ath_rate_onoe	# Atheros Onoe TX rate control algorithm
1224745b8439SSascha Wildnerdevice		ath_rate_sample	# Atheros Sample TX rate control algorithm
1225745b8439SSascha Wildneroptions		ATH_DEBUG	# turn on debugging output (see hw.ath.debug)
1226745b8439SSascha Wildneroptions		ATH_DIAGAPI	# diagnostic interface to the HAL
1227745b8439SSascha Wildneroptions		ATH_RXBUF=80	# number of RX buffers to allocate
1228745b8439SSascha Wildneroptions		ATH_TXBUF=400	# number of TX buffers to allocate
1229745b8439SSascha Wildner#device		iwl		# Intel PRO/Wireless 2100
1230745b8439SSascha Wildnerdevice		iwi		# Intel PRO/Wireless 2200BG/2915ABG
1231745b8439SSascha Wildnerdevice		iwn		# Intel WiFi Link 4965/1000/5000/5150/5300/6000/6050
1232745b8439SSascha Wildnerdevice		wi		# WaveLAN/IEEE, PRISM-II, Spectrum24 802.11DS
1233745b8439SSascha Wildner#device		rtw		# RealTek 8180
1234745b8439SSascha Wildner#device		acx		# TI ACX100/ACX111.
1235745b8439SSascha Wildnerdevice		xe		# Xircom PCMCIA
1236745b8439SSascha Wildnerdevice		ral		# Ralink Technology 802.11 wireless NIC
1237745b8439SSascha Wildnerdevice		wpi
1238745b8439SSascha Wildner
1239745b8439SSascha Wildner# IEEE 802.11 adapter firmware modules
1240745b8439SSascha Wildner
1241745b8439SSascha Wildner# iwifw:	Intel PRO/Wireless 2200BG/2225BG/2915ABG firmware
1242745b8439SSascha Wildner# iwnfw:	Intel WiFi Link 4965/1000/5000/5150/5300/6000/6050
1243745b8439SSascha Wildner# ralfw:	Ralink Technology RT25xx and RT26xx firmware
1244745b8439SSascha Wildner# wpifw:	Intel 3945ABG Wireless LAN Controller firmware
1245745b8439SSascha Wildner
1246745b8439SSascha Wildnerdevice		iwifw
1247745b8439SSascha Wildnerdevice		iwnfw
1248745b8439SSascha Wildnerdevice		ralfw
1249745b8439SSascha Wildnerdevice		wpifw
1250745b8439SSascha Wildner
1251745b8439SSascha Wildner# Bluetooth Protocols
1252745b8439SSascha Wildnerdevice		bluetooth
1253745b8439SSascha Wildner
1254745b8439SSascha Wildner#
1255745b8439SSascha Wildner# ATM related options
1256745b8439SSascha Wildner#
1257745b8439SSascha Wildner# The `en' device provides support for Efficient Networks (ENI)
1258745b8439SSascha Wildner# ENI-155 PCI midway cards, and the Adaptec 155Mbps PCI ATM cards (ANA-59x0).
1259745b8439SSascha Wildner#
1260745b8439SSascha Wildner# atm pseudo-device provides generic atm functions and is required for
1261745b8439SSascha Wildner# atm devices.
1262745b8439SSascha Wildner# NATM enables the netnatm protocol family that can be used to
1263745b8439SSascha Wildner# bypass TCP/IP.
1264745b8439SSascha Wildner#
1265745b8439SSascha Wildner# the current driver supports only PVC operations (no atm-arp, no multicast).
1266745b8439SSascha Wildner# for more details, please read the original documents at
1267745b8439SSascha Wildner# http://www.ccrc.wustl.edu/pub/chuck/tech/bsdatm/bsdatm.html
1268745b8439SSascha Wildner#
1269745b8439SSascha Wildnerpseudo-device	atm
1270745b8439SSascha Wildnerdevice		en
1271745b8439SSascha Wildneroptions 	NATM			#native ATM
1272745b8439SSascha Wildner
1273745b8439SSascha Wildner# Sound drivers
1274745b8439SSascha Wildner#
1275745b8439SSascha Wildner# The flags of the device tells the device a bit more info about the
1276745b8439SSascha Wildner# device that normally is obtained through the PnP interface.
1277745b8439SSascha Wildner#	bit  2..0   secondary DMA channel;
1278745b8439SSascha Wildner#	bit  4      set if the board uses two dma channels;
1279745b8439SSascha Wildner#	bit 15..8   board type, overrides autodetection; leave it
1280745b8439SSascha Wildner#		    zero if don't know what to put in (and you don't,
1281745b8439SSascha Wildner#		    since this is unsupported at the moment...).
1282745b8439SSascha Wildner#
1283745b8439SSascha Wildner# This driver will use the new PnP code if it's available. You might
1284745b8439SSascha Wildner# need PNPBIOS for ISA devices.
1285745b8439SSascha Wildner#
1286745b8439SSascha Wildner# If you have a GUS-MAX card and want to use the CS4231 codec on the
1287745b8439SSascha Wildner# card the drqs for the gus max must be 8 bit (1, 2, or 3).
1288745b8439SSascha Wildner#
1289745b8439SSascha Wildner# If you would like to use the full duplex option on the gus, then define
1290745b8439SSascha Wildner# flags to be the ``read dma channel''.
1291745b8439SSascha Wildner#
1292745b8439SSascha Wildner
1293745b8439SSascha Wildner# Basic sound card support:
1294745b8439SSascha Wildnerdevice		pcm
1295745b8439SSascha Wildner# For PnP/PCI sound cards:
1296745b8439SSascha Wildnerdevice		"snd_ad1816"
1297745b8439SSascha Wildnerdevice		"snd_als4000"
1298745b8439SSascha Wildnerdevice		"snd_atiixp"
1299745b8439SSascha Wildnerdevice		"snd_cmi"
1300745b8439SSascha Wildnerdevice		"snd_cs4281"
1301745b8439SSascha Wildnerdevice		"snd_csa"
1302745b8439SSascha Wildnerdevice		"snd_ds1"
1303745b8439SSascha Wildnerdevice		"snd_emu10k1"
1304745b8439SSascha Wildnerdevice		"snd_es137x"
1305745b8439SSascha Wildnerdevice		"snd_ess"
1306745b8439SSascha Wildnerdevice		"snd_fm801"
1307*b9ad643dSSascha Wildnerdevice		"snd_gusc"
1308745b8439SSascha Wildnerdevice		"snd_hda"
1309745b8439SSascha Wildnerdevice		"snd_ich"
1310745b8439SSascha Wildnerdevice		"snd_maestro"
1311745b8439SSascha Wildnerdevice		"snd_maestro3"
1312745b8439SSascha Wildnerdevice		"snd_mss"
1313745b8439SSascha Wildnerdevice		"snd_neomagic"
1314745b8439SSascha Wildnerdevice		"snd_sb16"
1315745b8439SSascha Wildnerdevice		"snd_sb8"
1316745b8439SSascha Wildnerdevice		"snd_sbc"
1317745b8439SSascha Wildnerdevice		"snd_solo"
1318745b8439SSascha Wildnerdevice		"snd_t4dwave"
1319745b8439SSascha Wildnerdevice		"snd_via8233"
1320745b8439SSascha Wildnerdevice		"snd_via82c686"
1321745b8439SSascha Wildnerdevice		"snd_vibes"
1322745b8439SSascha Wildner# For non-pnp sound cards:
1323745b8439SSascha Wildnerdevice		pcm0 at isa? irq 10 drq 1 flags 0x0
1324745b8439SSascha Wildner# USB
1325745b8439SSascha Wildnerdevice		"snd_uaudio"
1326745b8439SSascha Wildner
1327745b8439SSascha Wildner#
1328745b8439SSascha Wildner# Miscellaneous hardware:
1329745b8439SSascha Wildner#
1330745b8439SSascha Wildner# bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board
1331e147701eSSascha Wildner# ecc: ECC memory controller
1332745b8439SSascha Wildner# joy: joystick
1333745b8439SSascha Wildner# rp: Comtrol Rocketport(ISA) - single card
1334745b8439SSascha Wildner# si: Specialix SI/XIO 4-32 port terminal multiplexor
1335745b8439SSascha Wildner# nmdm: nullmodem terminal driver (see nmdm(4))
1336745b8439SSascha Wildner
1337745b8439SSascha Wildner# Notes on the Comtrol Rocketport driver:
1338745b8439SSascha Wildner#
1339745b8439SSascha Wildner# The exact values used for rp0 depend on how many boards you have
1340745b8439SSascha Wildner# in the system.  The manufacturer's sample configs are listed as:
1341745b8439SSascha Wildner#
1342745b8439SSascha Wildner#   Comtrol Rocketport ISA single card
1343745b8439SSascha Wildner#               device  rp0     at isa? port 0x280
1344745b8439SSascha Wildner#
1345745b8439SSascha Wildner#   If instead you have two ISA cards, one installed at 0x100 and the
1346745b8439SSascha Wildner#   second installed at 0x180, then you should add the following to
1347745b8439SSascha Wildner#   your kernel configuration file:
1348745b8439SSascha Wildner#
1349745b8439SSascha Wildner#               device  rp0     at isa? port 0x100
1350745b8439SSascha Wildner#               device  rp1     at isa? port 0x180
1351745b8439SSascha Wildner#
1352745b8439SSascha Wildner#   For 4 ISA cards, it might be something like this:
1353745b8439SSascha Wildner#
1354745b8439SSascha Wildner#               device  rp0     at isa? port 0x180
1355745b8439SSascha Wildner#               device  rp1     at isa? port 0x100
1356745b8439SSascha Wildner#               device  rp2     at isa? port 0x340
1357745b8439SSascha Wildner#               device  rp3     at isa? port 0x240
1358745b8439SSascha Wildner#
1359745b8439SSascha Wildner#   And for PCI cards, you only need say:
1360745b8439SSascha Wildner#
1361745b8439SSascha Wildner#               device rp
1362745b8439SSascha Wildner
1363745b8439SSascha Wildner# Notes on the Specialix SI/XIO driver:
1364745b8439SSascha Wildner#  **This is NOT a Specialix supported Driver!**
1365745b8439SSascha Wildner#  The host card is memory, not IO mapped.
1366745b8439SSascha Wildner#  The Rev 1 host cards use a 64K chunk, on a 32K boundary.
1367745b8439SSascha Wildner#  The Rev 2 host cards use a 32K chunk, on a 32K boundary.
1368745b8439SSascha Wildner#  The cards can use an IRQ of 11, 12 or 15.
1369745b8439SSascha Wildner
1370e147701eSSascha Wildnerdevice		ecc
1371745b8439SSascha Wildnerdevice		joy0	at isa? port IO_GAME
1372745b8439SSascha Wildnerdevice		nrp
1373745b8439SSascha Wildner#device		rp0	at isa? port 0x280
1374745b8439SSascha Wildnerdevice		si0	at isa? iomem 0xd0000 irq 12
1375745b8439SSascha Wildner# nullmodem terminal driver
1376745b8439SSascha Wildnerdevice		nmdm
1377745b8439SSascha Wildner
1378745b8439SSascha Wildner# The `ahc' device provides support for the Adaptec 274X and 284X
1379745b8439SSascha Wildner# adapters.
1380745b8439SSascha Wildnerdevice		ahc
1381745b8439SSascha Wildner
1382745b8439SSascha Wildner# The aic7xxx driver will attempt to use memory mapped I/O for all PCI
1383745b8439SSascha Wildner# controllers that have it configured only if this option is set. Unfortunately,
1384745b8439SSascha Wildner# this doesn't work on some motherboards, which prevents it from being the
1385745b8439SSascha Wildner# default.
1386745b8439SSascha Wildneroptions 	AHC_ALLOW_MEMIO
1387745b8439SSascha Wildner
1388745b8439SSascha Wildner# The adw driver will attempt to use memory mapped I/O for all PCI
1389745b8439SSascha Wildner# controllers that have it configured only if this option is set.
1390745b8439SSascha Wildneroptions 	ADW_ALLOW_MEMIO
1391745b8439SSascha Wildner
1392745b8439SSascha Wildner#
1393745b8439SSascha Wildner# PCI devices & PCI options:
1394745b8439SSascha Wildner#
1395745b8439SSascha Wildner# The main PCI bus device is `pci'.  It provides auto-detection and
1396745b8439SSascha Wildner# configuration support for all devices on the PCI bus, using either
1397745b8439SSascha Wildner# configuration mode defined in the PCI specification.
1398745b8439SSascha Wildner
1399745b8439SSascha Wildnerdevice		pci
1400745b8439SSascha Wildner
1401745b8439SSascha Wildner# PCI options
1402745b8439SSascha Wildner#
1403745b8439SSascha Wildner#Enable pci resources left off by a "lazy" BIOS.
1404745b8439SSascha Wildner#
1405745b8439SSascha Wildneroptions 	COMPAT_OLDPCI	#FreeBSD 2.2 and 3.x compatibility shims
1406745b8439SSascha Wildner
1407745b8439SSascha Wildner# AGP GART support
1408745b8439SSascha Wildner#
1409745b8439SSascha Wildnerdevice		agp
1410745b8439SSascha Wildner
1411745b8439SSascha Wildner
1412745b8439SSascha Wildner# The `ahc' device provides support for the Adaptec 29/3940(U)(W)
1413745b8439SSascha Wildner# and motherboard based AIC7870/AIC7880 adapters.
1414745b8439SSascha Wildneroptions 	AHC_DEBUG
1415745b8439SSascha Wildneroptions 	AHC_DEBUG_OPTS=0xffffffff
1416745b8439SSascha Wildneroptions 	AHC_REG_PRETTY_PRINT
1417745b8439SSascha Wildneroptions 	AHC_TMODE_ENABLE
1418745b8439SSascha Wildner#
1419745b8439SSascha Wildner# The 'ahd' device provides support for the Adaptec 79xx Ultra320
1420745b8439SSascha Wildner# SCSI adapters. Options are documented in the ahd(4) manpage:
1421745b8439SSascha Wildneroptions 	AHD_DEBUG
1422745b8439SSascha Wildneroptions 	AHD_DEBUG_OPTS=0xffffffff
1423745b8439SSascha Wildneroptions 	AHD_REG_PRETTY_PRINT
1424745b8439SSascha Wildner#options 	AHD_TMODE_ENABLE=0xff
1425745b8439SSascha Wildner#
1426745b8439SSascha Wildner# The `amd' device provides support for the AMD 53C974 SCSI host
1427745b8439SSascha Wildner# adapter chip as found on devices such as the Tekram DC-390(T).
1428745b8439SSascha Wildner#
1429745b8439SSascha Wildner# The `bge' device provides support for gigabit ethernet adapters
1430745b8439SSascha Wildner# based on the Broadcom BCM570x family of controllers, including the
1431745b8439SSascha Wildner# 3Com 3c996-T, the Netgear GA302T, the SysKonnect SK-9D21 and SK-9D41,
1432745b8439SSascha Wildner# and the embedded gigE NICs on Dell PowerEdge 2550 servers.
1433745b8439SSascha Wildner#
1434745b8439SSascha Wildner# The `ncr' device provides support for the NCR 53C810 and 53C825
1435745b8439SSascha Wildner# self-contained SCSI host adapters.
1436745b8439SSascha Wildner#
1437745b8439SSascha Wildner# The `isp' device provides support for the Qlogic ISP 1020, 1040
1438745b8439SSascha Wildner# nd 1040B PCI SCSI host adapters, ISP 1240 Dual Ultra SCSI,
1439745b8439SSascha Wildner# ISP 1080 and 1280 (Dual) Ultra2, ISP 12160 Ultra3 SCSI, as well as
1440745b8439SSascha Wildner# the Qlogic ISP 2100 and ISP 2200 Fibre Channel Host Adapters.
1441745b8439SSascha Wildner#
1442745b8439SSascha Wildner# The `dc' device provides support for PCI fast ethernet adapters
1443745b8439SSascha Wildner# based on the DEC/Intel 21143 and various workalikes including:
1444745b8439SSascha Wildner# the ADMtek AL981 Comet and AN985 Centaur, the ASIX Electronics
1445745b8439SSascha Wildner# AX88140A and AX88141, the Davicom DM9100 and DM9102, the Lite-On
1446745b8439SSascha Wildner# 82c168 and 82c169 PNIC, the Lite-On/Macronix LC82C115 PNIC II
1447745b8439SSascha Wildner# and the Macronix 98713/98713A/98715/98715A/98725 PMAC. This driver
1448745b8439SSascha Wildner# replaces the old al, ax, dm, pn and mx drivers.  List of brands:
1449745b8439SSascha Wildner# Digital DE500-BA, Kingston KNE100TX, D-Link DFE-570TX, SOHOware SFA110,
1450745b8439SSascha Wildner# SVEC PN102-TX, CNet Pro110B, 120A, and 120B, Compex RL100-TX,
1451745b8439SSascha Wildner# LinkSys LNE100TX, LNE100TX V2.0, Jaton XpressNet, Alfa Inc GFC2204,
1452745b8439SSascha Wildner# KNE110TX.
1453745b8439SSascha Wildner#
1454745b8439SSascha Wildner# The `de' device provides support for the Digital Equipment DC21040
1455745b8439SSascha Wildner# self-contained Ethernet adapter.
1456745b8439SSascha Wildner#
1457745b8439SSascha Wildner# The `em' device provides support for the Intel Pro/1000 Family of Gigabit
1458745b8439SSascha Wildner# adapters (82542, 82543, 82544, 82540).
1459745b8439SSascha Wildner#
1460745b8439SSascha Wildner# The `et' device provides support for the Agere ET1310 10/100/1000 PCIe
1461745b8439SSascha Wildner# adapters.
1462745b8439SSascha Wildner#
1463745b8439SSascha Wildner# The `fxp' device provides support for the Intel EtherExpress Pro/100B
1464745b8439SSascha Wildner# PCI Fast Ethernet adapters.
1465745b8439SSascha Wildner#
1466745b8439SSascha Wildner# The 'lge' device provides support for PCI gigabit ethernet adapters
1467745b8439SSascha Wildner# based on the Level 1 LXT1001 NetCellerator chipset. This includes the
1468745b8439SSascha Wildner# D-Link DGE-500SX, SMC TigerCard 1000 (SMC9462SX), and some Addtron cards.
1469745b8439SSascha Wildner#
1470745b8439SSascha Wildner# The 'my' device provides support for the Myson MTD80X and MTD89X PCI
1471745b8439SSascha Wildner# Fast Ethernet adapters.
1472745b8439SSascha Wildner#
1473745b8439SSascha Wildner# The 'nge' device provides support for PCI gigabit ethernet adapters
1474745b8439SSascha Wildner# based on the National Semiconductor DP83820 and DP83821 chipset. This
1475745b8439SSascha Wildner# includes the SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante
1476745b8439SSascha Wildner# FriendlyNet GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the
1477745b8439SSascha Wildner# LinkSys EG1032 and EG1064, the Surecom EP-320G-TX and the Netgear GA622T.
1478745b8439SSascha Wildner#
1479745b8439SSascha Wildner# The 'pcn' device provides support for PCI fast ethernet adapters based
1480745b8439SSascha Wildner# on the AMD Am79c97x chipsets, including the PCnet/FAST, PCnet/FAST+,
1481745b8439SSascha Wildner# PCnet/PRO and PCnet/Home. These were previously handled by the lnc
1482745b8439SSascha Wildner# driver (and still will be if you leave this driver out of the kernel).
1483745b8439SSascha Wildner#
1484745b8439SSascha Wildner# Te 're' device provides support for PCI GigaBit ethernet adapters based
1485745b8439SSascha Wildner# on the RealTek 8169 chipset. It also supports the 8139C+ and is the
1486745b8439SSascha Wildner# preferred driver for that chip.
1487745b8439SSascha Wildner#
1488745b8439SSascha Wildner# The 'rl' device provides support for PCI fast ethernet adapters based
1489745b8439SSascha Wildner# on the RealTek 8129/8139 chipset. Note that the RealTek driver defaults
1490745b8439SSascha Wildner# to using programmed I/O to do register accesses because memory mapped
1491745b8439SSascha Wildner# mode seems to cause severe lockups on SMP hardware. This driver also
1492745b8439SSascha Wildner# supports the Accton EN1207D `Cheetah' adapter, which uses a chip called
1493745b8439SSascha Wildner# the MPX 5030/5038, which is either a RealTek in disguise or a RealTek
1494745b8439SSascha Wildner# workalike.  Note that the D-Link DFE-530TX+ uses the RealTek chipset
1495745b8439SSascha Wildner# and is supported by this driver, not the 'vr' driver.
1496745b8439SSascha Wildner#
1497745b8439SSascha Wildner# The 'sf' device provides support for Adaptec Duralink PCI fast
1498745b8439SSascha Wildner# ethernet adapters based on the Adaptec AIC-6915 "starfire" controller.
1499745b8439SSascha Wildner# This includes dual and quad port cards, as well as one 100baseFX card.
1500745b8439SSascha Wildner# Most of these are 64-bit PCI devices, except for one single port
1501745b8439SSascha Wildner# card which is 32-bit.
1502745b8439SSascha Wildner#
1503745b8439SSascha Wildner# The 'ste' device provides support for adapters based on the Sundance
1504745b8439SSascha Wildner# Technologies ST201 PCI fast ethernet controller. This includes the
1505745b8439SSascha Wildner# D-Link DFE-550TX.
1506745b8439SSascha Wildner#
1507745b8439SSascha Wildner# The 'sis' device provides support for adapters based on the Silicon
1508745b8439SSascha Wildner# Integrated Systems SiS 900 and SiS 7016 PCI fast ethernet controller
1509745b8439SSascha Wildner# chips.
1510745b8439SSascha Wildner#
1511745b8439SSascha Wildner# The 'sk' device provides support for the SysKonnect SK-984x series
1512745b8439SSascha Wildner# PCI gigabit ethernet NICs. This includes the SK-9841 and SK-9842
1513745b8439SSascha Wildner# single port cards (single mode and multimode fiber) and the
1514745b8439SSascha Wildner# SK-9843 and SK-9844 dual port cards (also single mode and multimode).
1515745b8439SSascha Wildner# The driver will autodetect the number of ports on the card and
1516745b8439SSascha Wildner# attach each one as a separate network interface.
1517745b8439SSascha Wildner#
1518745b8439SSascha Wildner# The 'ti' device provides support for PCI gigabit ethernet NICs based
1519745b8439SSascha Wildner# on the Alteon Networks Tigon 1 and Tigon 2 chipsets. This includes the
1520745b8439SSascha Wildner# Alteon AceNIC, the 3Com 3c985, the Netgear GA620 and various others.
1521745b8439SSascha Wildner# Note that you will probably want to bump up NMBCLUSTERS a lot to use
1522745b8439SSascha Wildner# this driver.
1523745b8439SSascha Wildner#
1524745b8439SSascha Wildner# The 'tl' device provides support for the Texas Instruments TNETE100
1525745b8439SSascha Wildner# series 'ThunderLAN' cards and integrated ethernet controllers. This
1526745b8439SSascha Wildner# includes several Compaq Netelligent 10/100 cards and the built-in
1527745b8439SSascha Wildner# ethernet controllers in several Compaq Prosignia, Proliant and
1528745b8439SSascha Wildner# Deskpro systems. It also supports several Olicom 10Mbps and 10/100
1529745b8439SSascha Wildner# boards.
1530745b8439SSascha Wildner#
1531745b8439SSascha Wildner# The `tx' device provides support for the SMC 9432 TX, BTX and FTX cards.
1532745b8439SSascha Wildner#
1533745b8439SSascha Wildner# The `txp' device provides support for the 3Com 3cR990 "Typhoon"
1534745b8439SSascha Wildner# 10/100 adapters.
1535745b8439SSascha Wildner#
1536745b8439SSascha Wildner# The `vr' device provides support for various fast ethernet adapters
1537745b8439SSascha Wildner# based on the VIA Technologies VT3043 `Rhine I' and VT86C100A `Rhine II'
1538745b8439SSascha Wildner# chips, including the D-Link DFE530TX (see 'rl' for DFE530TX+), the Hawking
1539745b8439SSascha Wildner# Technologies PN102TX, and the AOpen/Acer ALN-320.
1540745b8439SSascha Wildner#
1541745b8439SSascha Wildner# The `vx' device provides support for the 3Com 3C590 and 3C595
1542745b8439SSascha Wildner# early support
1543745b8439SSascha Wildner#
1544745b8439SSascha Wildner# The `wb' device provides support for various fast ethernet adapters
1545745b8439SSascha Wildner# based on the Winbond W89C840F chip. Note: this is not the same as
1546745b8439SSascha Wildner# the Winbond W89C940F, which is an NE2000 clone.
1547745b8439SSascha Wildner#
1548745b8439SSascha Wildner# The `xl' device provides support for the 3Com 3c900, 3c905 and
1549745b8439SSascha Wildner# 3c905B (Fast) Etherlink XL cards and integrated controllers. This
1550745b8439SSascha Wildner# includes the integrated 3c905B-TX chips in certain Dell Optiplex and
1551745b8439SSascha Wildner# Dell Precision desktop machines and the integrated 3c905-TX chips
1552745b8439SSascha Wildner# in Dell Latitude laptop docking stations.
1553745b8439SSascha Wildner#
1554745b8439SSascha Wildner# The 'bktr' device is a PCI video capture device using the Brooktree
1555745b8439SSascha Wildner# bt848/bt848a/bt849a/bt878/bt879 chipset. When used with a TV Tuner it forms a
1556745b8439SSascha Wildner# TV card, eg Miro PC/TV, Hauppauge WinCast/TV WinTV, VideoLogic Captivator,
1557745b8439SSascha Wildner# Intel Smart Video III, AverMedia, IMS Turbo, FlyVideo.
1558745b8439SSascha Wildner#
1559745b8439SSascha Wildner# options 	OVERRIDE_CARD=xxx
1560745b8439SSascha Wildner# options 	OVERRIDE_TUNER=xxx
1561745b8439SSascha Wildner# options 	OVERRIDE_MSP=1
1562745b8439SSascha Wildner# options 	OVERRIDE_DBX=1
1563745b8439SSascha Wildner# These options can be used to override the auto detection
1564745b8439SSascha Wildner# The current values for xxx are found in src/sys/dev/video/bktr/bktr_card.h
1565745b8439SSascha Wildner# Using sysctl(8) run-time overrides on a per-card basis can be made
1566745b8439SSascha Wildner#
1567745b8439SSascha Wildner# options 	BKTR_SYSTEM_DEFAULT=BROOKTREE_PAL
1568745b8439SSascha Wildner# or
1569745b8439SSascha Wildner# options 	BKTR_SYSTEM_DEFAULT=BROOKTREE_NTSC
1570745b8439SSascha Wildner# Specifes the default video capture mode.
1571745b8439SSascha Wildner# This is required for Dual Crystal (28&35Mhz) boards where PAL is used
1572745b8439SSascha Wildner# to prevent hangs during initialisation.  eg VideoLogic Captivator PCI.
1573745b8439SSascha Wildner#
1574745b8439SSascha Wildner# options 	BKTR_USE_PLL
1575745b8439SSascha Wildner# PAL or SECAM users who have a 28Mhz crystal (and no 35Mhz crystal)
1576745b8439SSascha Wildner# must enable PLL mode with this option. eg some new Bt878 cards.
1577745b8439SSascha Wildner#
1578745b8439SSascha Wildner# options 	BKTR_GPIO_ACCESS
1579745b8439SSascha Wildner# This enable IOCTLs which give user level access to the GPIO port.
1580745b8439SSascha Wildner#
1581745b8439SSascha Wildner# options 	BKTR_NO_MSP_RESET
1582745b8439SSascha Wildner# Prevents the MSP34xx reset. Good if you initialise the MSP in another OS first
1583745b8439SSascha Wildner#
1584745b8439SSascha Wildner# options 	BKTR_430_FX_MODE
1585745b8439SSascha Wildner# Switch Bt878/879 cards into Intel 430FX chipset compatibility mode.
1586745b8439SSascha Wildner#
1587745b8439SSascha Wildner# options 	BKTR_SIS_VIA_MODE
1588745b8439SSascha Wildner# Switch Bt878/879 cards into SIS/VIA chipset compatibility mode which is
1589745b8439SSascha Wildner# needed for some old SiS and VIA chipset motherboards.
1590745b8439SSascha Wildner# This also allows Bt878/879 chips to work on old OPTi (<1997) chipset
1591745b8439SSascha Wildner# motherboards and motherboards with bad or incomplete PCI 2.1 support.
1592745b8439SSascha Wildner# As a rough guess, old = before 1998
1593745b8439SSascha Wildner#
1594745b8439SSascha Wildner# options 	BKTR_NEW_MSP34XX_DRIVER
1595745b8439SSascha Wildner# Use new, more complete initialization scheme for the msp34* soundchip.
1596745b8439SSascha Wildner# Should fix stereo autodetection if the old driver does only output
1597745b8439SSascha Wildner# mono sound.
1598745b8439SSascha Wildner#
1599745b8439SSascha Wildner# options	BKTR_OVERRIDE_CARD=xxx
1600745b8439SSascha Wildner# options	BKTR_OVERRIDE_DBX=xxx
1601745b8439SSascha Wildner# options	BKTR_OVERRIDE_MSP=xxx
1602745b8439SSascha Wildner# options	BKTR_OVERRIDE_TUNER=xxx
1603745b8439SSascha Wildner# These options can be used to select a specific device, regardless of
1604745b8439SSascha Wildner# the autodetection and i2c device checks (see comments in bktr_card.c).
1605745b8439SSascha Wildner#
1606745b8439SSascha Wildnerdevice		ahc		# AHA2940 and onboard AIC7xxx devices
1607745b8439SSascha Wildnerdevice		ahd		# AIC79xx devices
1608745b8439SSascha Wildnerdevice		amd		# AMD 53C974 (Tekram DC-390(T))
1609745b8439SSascha Wildnerdevice		isp		# Qlogic family
1610745b8439SSascha Wildnerdevice		ispfw		# Firmware for QLogic HBAs
1611745b8439SSascha Wildnerdevice		mpt		# LSI '909 FC adapters
1612745b8439SSascha Wildnerdevice		mps		# LSI-Logic MPT-Fusion 2
1613745b8439SSascha Wildnerdevice		ncr		# NCR/Symbios Logic
1614745b8439SSascha Wildnerdevice		sym		# NCR/Symbios Logic (newer chipsets)
1615745b8439SSascha Wildnerdevice		trm		# Tekram DC395U/UW/F and DC315U
1616745b8439SSascha Wildner#
1617745b8439SSascha Wildner# Options for ISP
1618745b8439SSascha Wildner#
1619745b8439SSascha Wildner#	ISP_TARGET_MODE		-	enable target mode operation
1620745b8439SSascha Wildner#options 	ISP_TARGET_MODE=1
1621745b8439SSascha Wildner
1622745b8439SSascha Wildner# Options used in dev/sym/ (Symbios SCSI driver).
1623745b8439SSascha Wildner#options 	SYM_SETUP_LP_PROBE_MAP	#-Low Priority Probe Map (bits)
1624745b8439SSascha Wildner					# Allows the ncr to take precedence
1625745b8439SSascha Wildner					# 1 (1<<0) -> 810a, 860
1626745b8439SSascha Wildner					# 2 (1<<1) -> 825a, 875, 885, 895
1627745b8439SSascha Wildner					# 4 (1<<2) -> 895a, 896, 1510d
1628745b8439SSascha Wildner#options 	SYM_SETUP_SCSI_DIFF	#-HVD support for 825a, 875, 885
1629745b8439SSascha Wildner					# disabled:0 (default), enabled:1
1630745b8439SSascha Wildner#options 	SYM_SETUP_PCI_PARITY	#-PCI parity checking
1631745b8439SSascha Wildner					# disabled:0, enabled:1 (default)
1632745b8439SSascha Wildner#options 	SYM_SETUP_MAX_LUN	#-Number of LUNs supported
1633745b8439SSascha Wildner					# default:8, range:[1..64]
1634745b8439SSascha Wildner
1635745b8439SSascha Wildner
1636745b8439SSascha Wildner# MII bus support is required for some PCI 10/100 ethernet NICs,
1637745b8439SSascha Wildner# namely those which use MII-compliant transceivers or implement
1638745b8439SSascha Wildner# transceiver control interfaces that operate like an MII. Adding
1639745b8439SSascha Wildner# "device miibus0" to the kernel config pulls in support for
1640745b8439SSascha Wildner# the generic miibus API and all of the PHY drivers, including a
1641745b8439SSascha Wildner# generic one for PHYs that aren't specifically handled by an
1642745b8439SSascha Wildner# individual driver.
1643745b8439SSascha Wildnerdevice		miibus
1644745b8439SSascha Wildner
1645745b8439SSascha Wildner# PCI Ethernet NICs that use the common MII bus controller code.
1646745b8439SSascha Wildnerdevice		ae		# Attansic/Atheros L2 Fast Ethernet
1647745b8439SSascha Wildnerdevice		alc		# Atheros AR8131/AR8132
1648745b8439SSascha Wildnerdevice		ale		# Atheros AR8121/AR8113/AR8114
1649745b8439SSascha Wildnerdevice		age		# Attansic/Atheros L1 Gigabit Ethernet
1650745b8439SSascha Wildnerdevice		bce		# Broadcom NetXtreme II Gigabit Ethernet
1651745b8439SSascha Wildnerdevice		bfe		# Broadcom BCM440x 10/100 Ethernet
1652745b8439SSascha Wildnerdevice		dc		# DEC/Intel 21143 and various workalikes
1653745b8439SSascha Wildnerdevice		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
1654745b8439SSascha Wildnerdevice		my		# Myson Fast Ethernet (MTD80X, MTD89X)
1655745b8439SSascha Wildnerdevice		pcn		# AMD Am79C97x PCI 10/100 NICs
1656745b8439SSascha Wildnerdevice		re		# RealTek 8139C+/8169
1657745b8439SSascha Wildnerdevice		rl		# RealTek 8129/8139
1658745b8439SSascha Wildnerdevice		sbsh		# Granch SBNI16 SHDSL modem
1659745b8439SSascha Wildnerdevice		sf		# Adaptec AIC-6915 (``Starfire'')
1660745b8439SSascha Wildnerdevice		sis		# Silicon Integrated Systems SiS 900/SiS 7016
1661745b8439SSascha Wildnerdevice		ste		# Sundance ST201 (D-Link DFE-550TX)
1662745b8439SSascha Wildnerdevice		tl		# Texas Instruments ThunderLAN
1663745b8439SSascha Wildnerdevice		tx		# SMC EtherPower II (83c17x ``EPIC'')
1664745b8439SSascha Wildnerdevice		vge		# VIA 612x GigE
1665745b8439SSascha Wildnerdevice		vr		# VIA Rhine, Rhine II
1666745b8439SSascha Wildnerdevice		wb		# Winbond W89C840F
1667745b8439SSascha Wildnerdevice		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
1668745b8439SSascha Wildner
1669745b8439SSascha Wildner# PCI Ethernet NICs.
1670745b8439SSascha Wildnerdevice		de		# DEC/Intel DC21x4x (``Tulip'')
1671745b8439SSascha Wildnerdevice		txp		# 3Com 3cR990 (``Typhoon'')
1672745b8439SSascha Wildnerdevice		vx		# 3Com 3c590, 3c595 (``Vortex'')
1673745b8439SSascha Wildner
1674745b8439SSascha Wildner# Gigabit Ethernet NICs.
1675745b8439SSascha Wildnerdevice		bge		# Broadcom BCM570x (``Tigon III'')
1676745b8439SSascha Wildnerdevice		em		# Intel Pro/1000 (8254x,8257x)
1677745b8439SSascha Wildner				# Requires ig_hal
1678745b8439SSascha Wildnerdevice		emx		# Intel Pro/1000 (8257{1,2,3,4})
1679745b8439SSascha Wildner				# Requires ig_hal
1680745b8439SSascha Wildnerdevice		ig_hal		# Intel Pro/1000 hardware abstraction layer
1681745b8439SSascha Wildnerdevice		et		# Agere ET1310 10/100/1000 Ethernet
1682745b8439SSascha Wildnerdevice		lge		# Level 1 LXT1001 (``Mercury'')
1683745b8439SSascha Wildnerdevice		mxge		# Myricom Myri-10G 10GbE NIC
1684745b8439SSascha Wildnerdevice		nfe		# nVidia nForce2/3 MCP04/51/55 CK804
1685745b8439SSascha Wildnerdevice		nge		# NatSemi DP83820 and DP83821
1686745b8439SSascha Wildnerdevice		sk		# SysKonnect GEnesis, LinkSys EG1023, D-Link
1687745b8439SSascha Wildnerdevice		ti		# Alteon (``Tigon I'', ``Tigon II'')
1688745b8439SSascha Wildnerdevice		stge		# Sundance/Tamarack TC9021 Gigabit Ethernet
1689745b8439SSascha Wildnerdevice		msk		# Marvell/SysKonnect Yukon II Gigabit Ethernet
1690745b8439SSascha Wildnerdevice		jme		# JMicron Gigabit/Fast Ethernet
1691745b8439SSascha Wildner
1692745b8439SSascha Wildner# Brooktree driver has been ported to the new I2C framework. Thus,
1693745b8439SSascha Wildner# you'll need to have the following 3 lines in the kernel config.
1694745b8439SSascha Wildner#     device smbus
1695745b8439SSascha Wildner#     device iicbus
1696745b8439SSascha Wildner#     device iicbb
1697745b8439SSascha Wildner# The iic and smb devices are only needed if you want to control other
1698745b8439SSascha Wildner# I2C slaves connected to the external connector of some cards.
1699745b8439SSascha Wildner#
1700745b8439SSascha Wildnerdevice		bktr
1701745b8439SSascha Wildneroptions 	BKTR_NEW_MSP34XX_DRIVER
1702745b8439SSascha Wildner
1703745b8439SSascha Wildner# WinTV PVR-250/350 driver
1704745b8439SSascha Wildnerdevice		cxm
1705745b8439SSascha Wildner
1706745b8439SSascha Wildner#
1707745b8439SSascha Wildner# PCCARD/PCMCIA
1708745b8439SSascha Wildner#
1709745b8439SSascha Wildner# pccard: pccard slots
1710745b8439SSascha Wildner# cardbus/cbb: cardbus bridge
1711745b8439SSascha Wildnerdevice		pccard
1712745b8439SSascha Wildnerdevice		cardbus
1713745b8439SSascha Wildnerdevice		cbb
1714745b8439SSascha Wildner
1715745b8439SSascha Wildner# For older notebooks that signal a powerfail condition (external
1716745b8439SSascha Wildner# power supply dropped, or battery state low) by issuing an NMI:
1717745b8439SSascha Wildner
1718745b8439SSascha Wildneroptions 	POWERFAIL_NMI	# make it beep instead of panicing
1719745b8439SSascha Wildner
1720745b8439SSascha Wildner#
1721745b8439SSascha Wildner# MMC/SD
1722745b8439SSascha Wildner#
1723745b8439SSascha Wildner# mmc 		MMC/SD bus
1724745b8439SSascha Wildner# mmcsd		MMC/SD memory card
1725745b8439SSascha Wildner# sdhci		Generic PCI SD Host Controller
1726745b8439SSascha Wildner#
1727745b8439SSascha Wildnerdevice		mmc
1728745b8439SSascha Wildnerdevice		mmcsd
1729745b8439SSascha Wildnerdevice		sdhci
1730745b8439SSascha Wildner
1731745b8439SSascha Wildner#
1732745b8439SSascha Wildner# SMB bus
1733745b8439SSascha Wildner#
1734745b8439SSascha Wildner# System Management Bus support is provided by the 'smbus' device.
1735745b8439SSascha Wildner# Access to the SMBus device is via the 'smb' device (/dev/smb*),
1736745b8439SSascha Wildner# which is a child of the 'smbus' device.
1737745b8439SSascha Wildner#
1738745b8439SSascha Wildner# Supported devices:
1739745b8439SSascha Wildner# smb		standard io through /dev/smb*
1740745b8439SSascha Wildner#
1741745b8439SSascha Wildner# Supported SMB interfaces:
1742745b8439SSascha Wildner# iicsmb	I2C to SMB bridge with any iicbus interface
1743745b8439SSascha Wildner# bktr		brooktree848 I2C hardware interface
1744745b8439SSascha Wildner# intpm		Intel PIIX4 (82371AB, 82443MX) Power Management Unit
1745745b8439SSascha Wildner# alpm		Acer Aladdin-IV/V/Pro2 Power Management Unit
1746745b8439SSascha Wildner# ichsmb	Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA)
1747745b8439SSascha Wildner# viapm		VIA VT82C586B,596,686A and VT8233 SMBus controllers
1748745b8439SSascha Wildner# amdpm		AMD 756 Power Management Unit
1749745b8439SSascha Wildner# amdsmb	AMD 8111 SMBus 2.0 Controller
1750745b8439SSascha Wildner#
1751745b8439SSascha Wildnerdevice		smbus		# Bus support, required for smb below.
1752745b8439SSascha Wildner
1753745b8439SSascha Wildnerdevice		intpm
1754745b8439SSascha Wildnerdevice		alpm
1755745b8439SSascha Wildnerdevice		ichsmb
1756745b8439SSascha Wildnerdevice		viapm
1757745b8439SSascha Wildnerdevice		amdpm
1758745b8439SSascha Wildnerdevice		amdsmb
1759745b8439SSascha Wildner
1760745b8439SSascha Wildnerdevice		smb
1761745b8439SSascha Wildner
1762745b8439SSascha Wildner#
1763745b8439SSascha Wildner# I2C Bus
1764745b8439SSascha Wildner#
1765745b8439SSascha Wildner# Philips i2c bus support is provided by the `iicbus' device.
1766745b8439SSascha Wildner#
1767745b8439SSascha Wildner# Supported devices:
1768745b8439SSascha Wildner# ic	i2c network interface
1769745b8439SSascha Wildner# iic	i2c standard io
1770745b8439SSascha Wildner# iicsmb i2c to smb bridge. Allow i2c i/o with smb commands.
1771745b8439SSascha Wildner#
1772745b8439SSascha Wildner# Supported interfaces:
1773745b8439SSascha Wildner# pcf	Philips PCF8584 ISA-bus controller
1774745b8439SSascha Wildner# bktr	brooktree848 I2C software interface
1775745b8439SSascha Wildner#
1776745b8439SSascha Wildner# Other:
1777745b8439SSascha Wildner# iicbb	generic I2C bit-banging code (needed by lpbb, bktr)
1778745b8439SSascha Wildner#
1779745b8439SSascha Wildnerdevice		iicbus		# Bus support, required for ic/iic/iicsmb below.
1780745b8439SSascha Wildnerdevice		iicbb
1781745b8439SSascha Wildner
1782745b8439SSascha Wildnerdevice		ic
1783745b8439SSascha Wildnerdevice		iic
1784745b8439SSascha Wildnerdevice		iicsmb		# smb over i2c bridge
1785745b8439SSascha Wildner
1786745b8439SSascha Wildnerdevice		pcf0	at isa? port 0x320 irq 5
1787745b8439SSascha Wildner
1788745b8439SSascha Wildner# Intel Core and newer CPUs on-die digital thermal sensor support
1789745b8439SSascha Wildnerdevice		coretemp
1790745b8439SSascha Wildner
1791745b8439SSascha Wildner# AMD Family 0Fh, 10h and 11h temperature sensors
1792745b8439SSascha Wildnerdevice		kate
1793745b8439SSascha Wildnerdevice		km
1794745b8439SSascha Wildner
1795745b8439SSascha Wildner# ThinkPad Active Protection System accelerometer
1796745b8439SSascha Wildnerdevice		aps0	at isa? port 0x1600
1797745b8439SSascha Wildner
1798745b8439SSascha Wildner# HW monitoring devices lm(4), it(4) and nsclpcsio.
1799745b8439SSascha Wildnerdevice		lm0	at isa? port 0x290
1800745b8439SSascha Wildnerdevice		it0	at isa? port 0x290
1801745b8439SSascha Wildnerdevice		it1	at isa? port 0xc00
1802745b8439SSascha Wildnerdevice		it2	at isa? port 0xd00
1803745b8439SSascha Wildnerdevice		it3	at isa?	port 0x228
1804745b8439SSascha Wildnerdevice		nsclpcsio0 at isa? port 0x2e
1805745b8439SSascha Wildnerdevice		nsclpcsio1 at isa? port 0x4e
1806745b8439SSascha Wildnerdevice		wbsio0	at isa? port 0x2e
1807745b8439SSascha Wildnerdevice		wbsio1	at isa? port 0x4e
1808745b8439SSascha Wildnerdevice		lm#3	at wbsio?
1809745b8439SSascha Wildnerdevice		uguru0	at isa? port 0xe0	# ABIT uGuru
1810745b8439SSascha Wildner
1811745b8439SSascha Wildner#---------------------------------------------------------------------------
1812745b8439SSascha Wildner# ISDN4BSD
1813745b8439SSascha Wildner#
1814745b8439SSascha Wildner# See /usr/share/examples/isdn/ROADMAP for an introduction to isdn4bsd.
1815745b8439SSascha Wildner#
1816745b8439SSascha Wildner# i4b passive ISDN cards support contains the following hardware drivers:
1817745b8439SSascha Wildner#
1818745b8439SSascha Wildner#       isic  - Siemens/Infineon ISDN ISAC/HSCX/IPAC chipset driver
1819745b8439SSascha Wildner#       iwic  - Winbond W6692 PCI bus ISDN S/T interface controller
1820745b8439SSascha Wildner#       ifpi  - AVM Fritz!Card PCI driver
1821745b8439SSascha Wildner#       ifpi2 - AVM Fritz!Card PCI driver Version 2
1822745b8439SSascha Wildner#       ihfc  - Cologne Chip HFC ISA/ISA-PnP chipset driver
1823745b8439SSascha Wildner#       ifpnp - AVM Fritz!Card PnP driver
1824745b8439SSascha Wildner#       itjc  - Siemens ISAC / TJNet Tiger300/320 chipset
1825745b8439SSascha Wildner#
1826745b8439SSascha Wildner# i4b active ISDN cards support contains the following hardware drivers:
1827745b8439SSascha Wildner#
1828745b8439SSascha Wildner#       iavc  - AVM B1 PCI, AVM B1 ISA, AVM T1
1829745b8439SSascha Wildner#
1830745b8439SSascha Wildner# Note that the ``options'' (if given) and ``device'' lines must BOTH
1831745b8439SSascha Wildner# be uncommented to enable support for a given card !
1832745b8439SSascha Wildner#
1833745b8439SSascha Wildner# In addition to a hardware driver (and probably an option) the mandatory
1834745b8439SSascha Wildner# ISDN protocol stack devices and the mandatory support device must be
1835745b8439SSascha Wildner# enabled as well as one or more devices from the optional devices section.
1836745b8439SSascha Wildner#
1837745b8439SSascha Wildner#---------------------------------------------------------------------------
1838745b8439SSascha Wildner# isic driver (Siemens/Infineon chipsets)
1839745b8439SSascha Wildner#---------------------------------------------------------------------------
1840745b8439SSascha Wildner#
1841745b8439SSascha Wildner# ISA bus non-PnP Cards:
1842745b8439SSascha Wildner# ----------------------
1843745b8439SSascha Wildner#
1844745b8439SSascha Wildner# Teles S0/8 or Niccy 1008
1845745b8439SSascha Wildner#options 	TEL_S0_8
1846745b8439SSascha Wildner#device		isic0	at isa? iomem 0xd0000 irq 5 flags 1
1847745b8439SSascha Wildner#
1848745b8439SSascha Wildner# Teles S0/16 or Creatix ISDN-S0 or Niccy 1016
1849745b8439SSascha Wildner#options 	TEL_S0_16
1850745b8439SSascha Wildner#device		isic0	at isa? port 0xd80 iomem 0xd0000 irq 5 flags 2
1851745b8439SSascha Wildner#
1852745b8439SSascha Wildner# Teles S0/16.3
1853745b8439SSascha Wildner#options 	TEL_S0_16_3
1854745b8439SSascha Wildner#device		isic0	at isa? port 0xd80 irq 5 flags 3
1855745b8439SSascha Wildner#
1856745b8439SSascha Wildner# AVM A1 or AVM Fritz!Card
1857745b8439SSascha Wildner#options 	AVM_A1
1858745b8439SSascha Wildner#device		isic0	at isa? port 0x340 irq 5 flags 4
1859745b8439SSascha Wildner#
1860745b8439SSascha Wildner# USRobotics Sportster ISDN TA intern
1861745b8439SSascha Wildner#options 	USR_STI
1862745b8439SSascha Wildner#device		isic0	at isa? port 0x268 irq 5 flags 7
1863745b8439SSascha Wildner#
1864745b8439SSascha Wildner# ITK ix1 Micro ( < V.3, non-PnP version )
1865745b8439SSascha Wildner#options 	ITKIX1
1866745b8439SSascha Wildner#device		isic0	at isa? port 0x398 irq 10 flags 18
1867745b8439SSascha Wildner#
1868745b8439SSascha Wildner# ELSA PCC-16
1869745b8439SSascha Wildner#options 	ELSA_PCC16
1870745b8439SSascha Wildner#device		isic0	at isa? port 0x360 irq 10 flags 20
1871745b8439SSascha Wildner#
1872745b8439SSascha Wildner# ISA bus PnP Cards:
1873745b8439SSascha Wildner# ------------------
1874745b8439SSascha Wildner#
1875745b8439SSascha Wildner# Teles S0/16.3 PnP
1876745b8439SSascha Wildner#options 	TEL_S0_16_3_P
1877745b8439SSascha Wildner#device		isic
1878745b8439SSascha Wildner#
1879745b8439SSascha Wildner# Creatix ISDN-S0 P&P
1880745b8439SSascha Wildner#options 	CRTX_S0_P
1881745b8439SSascha Wildner#device		isic
1882745b8439SSascha Wildner#
1883745b8439SSascha Wildner# Dr. Neuhaus Niccy Go@
1884745b8439SSascha Wildner#options 	DRN_NGO
1885745b8439SSascha Wildner#device		isic
1886745b8439SSascha Wildner#
1887745b8439SSascha Wildner# Sedlbauer Win Speed
1888745b8439SSascha Wildner#options 	SEDLBAUER
1889745b8439SSascha Wildner#device		isic
1890745b8439SSascha Wildner#
1891745b8439SSascha Wildner# Dynalink IS64PH
1892745b8439SSascha Wildner#options 	DYNALINK
1893745b8439SSascha Wildner#device		isic
1894745b8439SSascha Wildner#
1895745b8439SSascha Wildner# ELSA QuickStep 1000pro ISA
1896745b8439SSascha Wildner#options 	ELSA_QS1ISA
1897745b8439SSascha Wildner#device		isic
1898745b8439SSascha Wildner#
1899745b8439SSascha Wildner# ITK ix1 Micro ( V.3, PnP version )
1900745b8439SSascha Wildner#options 	ITKIX1
1901745b8439SSascha Wildner#device		isic
1902745b8439SSascha Wildner#
1903745b8439SSascha Wildner# Siemens I-Surf 2.0
1904745b8439SSascha Wildner#options 	SIEMENS_ISURF2
1905745b8439SSascha Wildner#device		isic
1906745b8439SSascha Wildner#
1907745b8439SSascha Wildner# Asuscom ISDNlink 128K ISAC
1908745b8439SSascha Wildner#options 	ASUSCOM_IPAC
1909745b8439SSascha Wildner#device 	isic
1910745b8439SSascha Wildner#
1911745b8439SSascha Wildner# Eicon Diehl DIVA 2.0 and 2.02
1912745b8439SSascha Wildner#options       EICON_DIVA
1913745b8439SSascha Wildner#device 	isic
1914745b8439SSascha Wildner#
1915745b8439SSascha Wildner# Compaq Microcom 610
1916745b8439SSascha Wildner#options       COMPAQ_M610
1917745b8439SSascha Wildner#device 	isic
1918745b8439SSascha Wildner#
1919745b8439SSascha Wildner# PCI bus Cards:
1920745b8439SSascha Wildner# --------------
1921745b8439SSascha Wildner#
1922745b8439SSascha Wildner# ELSA MicroLink ISDN/PCI (same as ELSA QuickStep 1000pro PCI)
1923745b8439SSascha Wildner#options 	ELSA_QS1PCI
1924745b8439SSascha Wildner#device		isic
1925745b8439SSascha Wildner#
1926745b8439SSascha Wildner#---------------------------------------------------------------------------
1927745b8439SSascha Wildner#       ifpnp driver for AVM Fritz!Card ISA PnP
1928745b8439SSascha Wildner#---------------------------------------------------------------------------
1929745b8439SSascha Wildner#
1930745b8439SSascha Wildner# AVM Fritz!Card ISA PnP
1931745b8439SSascha Wildner#device ifpnp
1932745b8439SSascha Wildner#
1933745b8439SSascha Wildner#---------------------------------------------------------------------------
1934745b8439SSascha Wildner#       ihfc driver for Cologne Chip ISA chipsets (experimental!)
1935745b8439SSascha Wildner#---------------------------------------------------------------------------
1936745b8439SSascha Wildner#
1937745b8439SSascha Wildner# Teles 16.3c ISA PnP
1938745b8439SSascha Wildner# AcerISDN P10 ISA PnP
1939745b8439SSascha Wildner# TELEINT ISDN SPEED No.1
1940745b8439SSascha Wildner#device ihfc
1941745b8439SSascha Wildner#
1942745b8439SSascha Wildner#---------------------------------------------------------------------------
1943745b8439SSascha Wildner#       ifpi driver for AVM Fritz!Card PCI 1.0 (2.0 unsupported!)
1944745b8439SSascha Wildner#---------------------------------------------------------------------------
1945745b8439SSascha Wildner#
1946745b8439SSascha Wildner# AVM Fritz!Card PCI 1.0
1947745b8439SSascha Wildner#device  ifpi
1948745b8439SSascha Wildner#
1949745b8439SSascha Wildner#---------------------------------------------------------------------------
1950745b8439SSascha Wildner#       ifpi2 driver for AVM Fritz!Card PCI 2.0
1951745b8439SSascha Wildner#---------------------------------------------------------------------------
1952745b8439SSascha Wildner#
1953745b8439SSascha Wildner# AVM Fritz!Card PCI 2.0
1954745b8439SSascha Wildner#device  "ifpi2"
1955745b8439SSascha Wildner#
1956745b8439SSascha Wildner#---------------------------------------------------------------------------
1957745b8439SSascha Wildner#       iwic driver for Winbond W6692 chipset
1958745b8439SSascha Wildner#---------------------------------------------------------------------------
1959745b8439SSascha Wildner#
1960745b8439SSascha Wildner# ASUSCOM P-IN100-ST-D (and other Winbond W6692 based cards)
1961745b8439SSascha Wildner#device  iwic
1962745b8439SSascha Wildner#
1963745b8439SSascha Wildner#---------------------------------------------------------------------------
1964745b8439SSascha Wildner#       itjc driver for Siemens ISAC / TJNet Tiger300/320 chipset
1965745b8439SSascha Wildner#---------------------------------------------------------------------------
1966745b8439SSascha Wildner#
1967745b8439SSascha Wildner# Traverse Technologies NETjet-S
1968745b8439SSascha Wildner# Teles PCI-TJ
1969745b8439SSascha Wildner#device  itjc
1970745b8439SSascha Wildner#
1971745b8439SSascha Wildner#---------------------------------------------------------------------------
1972745b8439SSascha Wildner#       iavc driver (AVM active cards, needs i4bcapi driver!)
1973745b8439SSascha Wildner#---------------------------------------------------------------------------
1974745b8439SSascha Wildner#
1975745b8439SSascha Wildner#pseudo-device   "i4bcapi"	2
1976745b8439SSascha Wildner#
1977745b8439SSascha Wildner# AVM B1 PCI
1978745b8439SSascha Wildner#device          iavc0
1979745b8439SSascha Wildner#
1980745b8439SSascha Wildner# AVM B1 ISA bus (PnP mode not supported!)
1981745b8439SSascha Wildner#device  iavc0 at isa? port 0x150 irq 5
1982745b8439SSascha Wildner#
1983745b8439SSascha Wildner#
1984745b8439SSascha Wildner# ISDN Protocol Stack (mandatory)
1985745b8439SSascha Wildner# -------------------------------
1986745b8439SSascha Wildner#
1987745b8439SSascha Wildner# Q.921 / layer 2 - i4b passive cards D channel handling
1988745b8439SSascha Wildner#pseudo-device	"i4bq921"
1989745b8439SSascha Wildner#
1990745b8439SSascha Wildner# Q.931 / layer 3 - i4b passive cards D channel handling
1991745b8439SSascha Wildner#pseudo-device	"i4bq931"
1992745b8439SSascha Wildner#
1993745b8439SSascha Wildner# layer 4 - i4b common passive and active card handling
1994745b8439SSascha Wildner#pseudo-device	"i4b"
1995745b8439SSascha Wildner#
1996745b8439SSascha Wildner# ISDN devices
1997745b8439SSascha Wildner# ------------
1998745b8439SSascha Wildner#
1999745b8439SSascha Wildner# userland driver to do ISDN tracing (for passive cards only)
2000745b8439SSascha Wildner#pseudo-device	"i4btrc"	4
2001745b8439SSascha Wildner#
2002745b8439SSascha Wildner# userland driver to control the whole thing (mandatory)
2003745b8439SSascha Wildner#pseudo-device	"i4bctl"
2004745b8439SSascha Wildner#
2005745b8439SSascha Wildner# userland driver for access to raw B channel
2006745b8439SSascha Wildner#pseudo-device	"i4brbch"	4
2007745b8439SSascha Wildner#
2008745b8439SSascha Wildner# userland driver for telephony
2009745b8439SSascha Wildner#pseudo-device	"i4btel"	2
2010745b8439SSascha Wildner#
2011745b8439SSascha Wildner# network driver for IP over raw HDLC ISDN
2012745b8439SSascha Wildner#pseudo-device	"i4bipr"	4
2013745b8439SSascha Wildner# enable VJ header compression detection for ipr i/f
2014745b8439SSascha Wildner#options 	IPR_VJ
2015745b8439SSascha Wildner# enable logging of the first n IP packets to isdnd (n=32 here)
2016745b8439SSascha Wildner#options 	IPR_LOG=32
2017745b8439SSascha Wildner#
2018745b8439SSascha Wildner# network driver for sync PPP over ISDN - requires sppp
2019745b8439SSascha Wildner#pseudo-device	"i4bisppp"	4
2020745b8439SSascha Wildner
2021745b8439SSascha Wildner
2022745b8439SSascha Wildner# Parallel-Port Bus
2023745b8439SSascha Wildner#
2024745b8439SSascha Wildner# Parallel port bus support is provided by the `ppbus' device.
2025745b8439SSascha Wildner# Multiple devices may be attached to the parallel port, devices
2026745b8439SSascha Wildner# are automatically probed and attached when found.
2027745b8439SSascha Wildner#
2028745b8439SSascha Wildner# Supported devices:
2029745b8439SSascha Wildner# vpo	Iomega Zip Drive
2030745b8439SSascha Wildner#	Requires SCSI disk support ('scbus' and 'da'); the best
2031745b8439SSascha Wildner#	performance is achieved with ports in EPP 1.9 mode.
2032745b8439SSascha Wildner# lpt	Parallel Printer
2033745b8439SSascha Wildner# plip	Parallel network interface
2034745b8439SSascha Wildner# ppi	General-purpose I/O ("Geek Port") + IEEE1284 I/O
2035745b8439SSascha Wildner# pps	Pulse per second Timing Interface
2036745b8439SSascha Wildner# lpbb	Philips official parallel port I2C bit-banging interface
2037745b8439SSascha Wildner#
2038745b8439SSascha Wildner# Supported interfaces:
2039745b8439SSascha Wildner# ppc	ISA-bus parallel port interfaces.
2040745b8439SSascha Wildner#
2041745b8439SSascha Wildner
2042745b8439SSascha Wildneroptions 	PPC_PROBE_CHIPSET # Enable chipset specific detection
2043745b8439SSascha Wildner				  # (see flags in ppc(4))
2044745b8439SSascha Wildneroptions 	DEBUG_1284	# IEEE1284 signaling protocol debug
2045745b8439SSascha Wildneroptions 	PERIPH_1284	# Makes your computer act as a IEEE1284
2046745b8439SSascha Wildner				# compliant peripheral
2047745b8439SSascha Wildneroptions 	DONTPROBE_1284	# Avoid boot detection of PnP parallel devices
2048745b8439SSascha Wildneroptions 	VP0_DEBUG	# ZIP/ZIP+ debug
2049745b8439SSascha Wildneroptions 	LPT_DEBUG	# Printer driver debug
2050745b8439SSascha Wildneroptions 	PPC_DEBUG=2	# Parallel chipset level debug
2051745b8439SSascha Wildneroptions 	PLIP_DEBUG	# Parallel network IP interface debug
2052745b8439SSascha Wildneroptions 	PCFCLOCK_VERBOSE         # Verbose pcfclock driver
2053745b8439SSascha Wildneroptions 	PCFCLOCK_MAX_RETRIES=5   # Maximum read tries (default 10)
2054745b8439SSascha Wildner
2055745b8439SSascha Wildnerdevice		ppc0	at isa? irq 7
2056745b8439SSascha Wildnerdevice		ppbus
2057745b8439SSascha Wildnerdevice		vpo
2058745b8439SSascha Wildnerdevice		lpt
2059745b8439SSascha Wildnerdevice		plip
2060745b8439SSascha Wildnerdevice		ppi
2061745b8439SSascha Wildnerdevice		pps
2062745b8439SSascha Wildnerdevice		lpbb
2063745b8439SSascha Wildnerdevice		pcfclock
2064745b8439SSascha Wildner
2065745b8439SSascha Wildner# Kernel BOOTP support
2066745b8439SSascha Wildner
2067745b8439SSascha Wildneroptions 	BOOTP		# Use BOOTP to obtain IP address/hostname
2068745b8439SSascha Wildneroptions 	BOOTP_NFSROOT	# NFS mount root filesystem using BOOTP info
2069745b8439SSascha Wildneroptions 	BOOTP_NFSV3	# Use NFS v3 to NFS mount root
2070745b8439SSascha Wildneroptions 	BOOTP_COMPAT	# Workaround for broken bootp daemons.
2071745b8439SSascha Wildneroptions 	BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP
2072745b8439SSascha Wildner
2073745b8439SSascha Wildner#
2074745b8439SSascha Wildner# Add tie-ins for a hardware watchdog.  This only enable the hooks;
2075745b8439SSascha Wildner# the user must still supply the actual driver.
2076745b8439SSascha Wildner#
2077745b8439SSascha Wildneroptions 	HW_WDOG
2078745b8439SSascha Wildner
2079745b8439SSascha Wildner#
2080745b8439SSascha Wildner# Set the number of PV entries per process.  Increasing this can
2081745b8439SSascha Wildner# stop panics related to heavy use of shared memory. However, that can
2082745b8439SSascha Wildner# (combined with large amounts of physical memory) cause panics at
2083745b8439SSascha Wildner# boot time due the kernel running out of VM space.
2084745b8439SSascha Wildner#
2085745b8439SSascha Wildner# If you're tweaking this, you might also want to increase the sysctls
2086745b8439SSascha Wildner# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target".
2087745b8439SSascha Wildner#
2088745b8439SSascha Wildner# The value below is the one more than the default.
2089745b8439SSascha Wildner#
2090745b8439SSascha Wildneroptions 	PMAP_SHPGPERPROC=201
2091745b8439SSascha Wildner
2092745b8439SSascha Wildner#
2093745b8439SSascha Wildner# Disable swapping. This option removes all code which actually performs
2094745b8439SSascha Wildner# swapping, so it's not possible to turn it back on at run-time.
2095745b8439SSascha Wildner#
2096745b8439SSascha Wildner# This is sometimes usable for systems which don't have any swap space
2097745b8439SSascha Wildner# (see also sysctls "vm.defer_swapspace_pageouts" and
2098745b8439SSascha Wildner# "vm.disable_swapspace_pageouts")
2099745b8439SSascha Wildner#
2100745b8439SSascha Wildner#options 	NO_SWAPPING
2101745b8439SSascha Wildner
2102745b8439SSascha Wildner# Set the size of the buffer cache KVM reservation, in buffers.  This is
2103745b8439SSascha Wildner# scaled by approximately 16384 bytes.  The system will auto-size the buffer
2104745b8439SSascha Wildner# cache if this option is not specified.
2105745b8439SSascha Wildner#
2106745b8439SSascha Wildneroptions 	NBUF=512
2107745b8439SSascha Wildner
2108745b8439SSascha Wildner# Set the size of the mbuf KVM reservation, in clusters.  This is scaled
2109745b8439SSascha Wildner# by approximately 2048 bytes.  The system will auto-size the mbuf area
2110745b8439SSascha Wildner# to (512 + maxusers*16) if this option is not specified.
2111745b8439SSascha Wildner# maxusers is in turn computed at boot time depending on available memory
2112745b8439SSascha Wildner# or set to the value specified by "options MAXUSERS=x" (x=0 means
2113745b8439SSascha Wildner# autoscaling).
2114745b8439SSascha Wildner# So, to take advantage of autoscaling, you have to remove both
2115745b8439SSascha Wildner# NMBCLUSTERS and MAXUSERS (and NMBUFS) from your kernel config.
2116745b8439SSascha Wildner#
2117745b8439SSascha Wildneroptions 	NMBCLUSTERS=1024
2118745b8439SSascha Wildner
2119745b8439SSascha Wildner# Set the number of mbufs available in the system. Each mbuf
2120745b8439SSascha Wildner# consumes 256 bytes. The system will autosize this (to 4 times
2121745b8439SSascha Wildner# the number of NMBCLUSTERS, depending on other constraints)
2122745b8439SSascha Wildner# if this option is not specified.
2123745b8439SSascha Wildner#
2124745b8439SSascha Wildneroptions 	NMBUFS=4096
2125745b8439SSascha Wildner
2126745b8439SSascha Wildner# Tune the buffer cache maximum KVA reservation, in bytes.  The maximum is
2127745b8439SSascha Wildner# usually capped at 200 MB, effecting machines with > 1GB of ram.  Note
2128745b8439SSascha Wildner# that the buffer cache only really governs write buffering and disk block
2129745b8439SSascha Wildner# translations.  The VM page cache is our primary disk cache and is not
2130745b8439SSascha Wildner# effected by the size of the buffer cache.
2131745b8439SSascha Wildner#
2132745b8439SSascha Wildneroptions 	VM_BCACHE_SIZE_MAX="(100*1024*1024)"
2133745b8439SSascha Wildner
2134745b8439SSascha Wildner# Tune the swap zone KVA reservation, in bytes.  The default is typically
2135745b8439SSascha Wildner# 70 MB, giving the system the ability to manage a maximum of 28GB worth
2136745b8439SSascha Wildner# of swapped out data.
2137745b8439SSascha Wildner#
2138745b8439SSascha Wildneroptions 	VM_SWZONE_SIZE_MAX="(50*1024*1024)"
2139745b8439SSascha Wildner
2140745b8439SSascha Wildner#
2141745b8439SSascha Wildner# Enable extra debugging code for locks.  This stores the filename and
2142745b8439SSascha Wildner# line of whatever acquired the lock in the lock itself, and change a
2143745b8439SSascha Wildner# number of function calls to pass around the relevant data.  This is
2144745b8439SSascha Wildner# not at all useful unless you are debugging lock code.  Also note
2145745b8439SSascha Wildner# that it is likely to break e.g. fstat(1) unless you recompile your
2146745b8439SSascha Wildner# userland with -DDEBUG_LOCKS as well.
2147745b8439SSascha Wildner#
2148745b8439SSascha Wildneroptions 	DEBUG_LOCKS
2149745b8439SSascha Wildner
2150745b8439SSascha Wildner# Set the amount of time (in seconds) the system will wait before
2151745b8439SSascha Wildner# rebooting automatically when a kernel panic occurs.  If set to (-1),
2152745b8439SSascha Wildner# the system will wait indefinitely until a key is pressed on the
2153745b8439SSascha Wildner# console.
2154745b8439SSascha Wildneroptions 	PANIC_REBOOT_WAIT_TIME=16
2155745b8439SSascha Wildner
2156745b8439SSascha Wildner# Attempt to bypass the buffer cache and put data directly into the
2157745b8439SSascha Wildner# userland buffer for read operation when O_DIRECT flag is set on the
2158745b8439SSascha Wildner# file.  Both offset and length of the read operation must be
2159745b8439SSascha Wildner# multiples of the physical media sector size.
2160745b8439SSascha Wildner#
2161745b8439SSascha Wildneroptions		DIRECTIO
2162745b8439SSascha Wildner
2163745b8439SSascha Wildner# Specify a lower limit for the number of swap I/O buffers.  They are
2164745b8439SSascha Wildner# (among other things) used when bypassing the buffer cache due to
2165745b8439SSascha Wildner# DIRECTIO kernel option enabled and O_DIRECT flag set on file.
2166745b8439SSascha Wildner#
2167745b8439SSascha Wildner#options		NSWBUF_MIN=120
2168745b8439SSascha Wildner
2169745b8439SSascha Wildner# The 'asr' driver provides support for current DPT/Adaptec SCSI RAID
2170745b8439SSascha Wildner# controllers (SmartRAID V and VI and later).
2171745b8439SSascha Wildner# These controllers require the CAM infrastructure.
2172745b8439SSascha Wildner#
2173745b8439SSascha Wildnerdevice		asr
2174745b8439SSascha Wildner
2175745b8439SSascha Wildner# The 'dpt' driver provides support for DPT controllers (http://www.dpt.com/).
2176745b8439SSascha Wildner# These have hardware RAID-{0,1,5} support, and do multi-initiator I/O.
2177745b8439SSascha Wildner# The DPT controllers are commonly re-licensed under other brand-names -
2178745b8439SSascha Wildner# some controllers by Olivetti, Dec, HP, AT&T, SNI, AST, Alphatronic, NEC and
2179745b8439SSascha Wildner# Compaq are actually DPT controllers.
2180745b8439SSascha Wildner#
2181745b8439SSascha Wildner# See src/sys/dev/raid/dpt for debugging and other subtle options.
2182745b8439SSascha Wildner#   DPT_MEASURE_PERFORMANCE Enables a set of (semi)invasive metrics. Various
2183745b8439SSascha Wildner#                           instruments are enabled.  The tools in
2184745b8439SSascha Wildner#                           /usr/sbin/dpt_* assume these to be enabled.
2185745b8439SSascha Wildner#   DPT_HANDLE_TIMEOUTS     Normally device timeouts are handled by the DPT.
2186745b8439SSascha Wildner#                           If you ant the driver to handle timeouts, enable
2187745b8439SSascha Wildner#                           this option.  If your system is very busy, this
2188745b8439SSascha Wildner#                           option will create more trouble than solve.
2189745b8439SSascha Wildner#   DPT_TIMEOUT_FACTOR      Used to compute the excessive amount of time to
2190745b8439SSascha Wildner#                           wait when timing out with the above option.
2191745b8439SSascha Wildner#  DPT_DEBUG_xxxx           These are controllable from sys/dev/dpt/raid/dpt.h
2192745b8439SSascha Wildner#  DPT_LOST_IRQ             When enabled, will try, once per second, to catch
2193745b8439SSascha Wildner#                           any interrupt that got lost.  Seems to help in some
2194745b8439SSascha Wildner#                           DPT-firmware/Motherboard combinations.  Minimal
2195745b8439SSascha Wildner#                           cost, great benefit.
2196745b8439SSascha Wildner#  DPT_RESET_HBA            Make "reset" actually reset the controller
2197745b8439SSascha Wildner#                           instead of fudging it.  Only enable this if you
2198745b8439SSascha Wildner#			    are 100% certain you need it.
2199745b8439SSascha Wildner
2200745b8439SSascha Wildnerdevice		dpt
2201745b8439SSascha Wildner
2202745b8439SSascha Wildner# DPT options
2203745b8439SSascha Wildner#!CAM# options 	DPT_MEASURE_PERFORMANCE
2204745b8439SSascha Wildner#!CAM# options 	DPT_HANDLE_TIMEOUTS
2205745b8439SSascha Wildneroptions 	DPT_TIMEOUT_FACTOR=4
2206745b8439SSascha Wildneroptions 	DPT_LOST_IRQ
2207745b8439SSascha Wildneroptions 	DPT_RESET_HBA
2208745b8439SSascha Wildner
2209745b8439SSascha Wildner#
2210745b8439SSascha Wildner# Compaq "CISS" RAID controllers (SmartRAID 5* series)
2211745b8439SSascha Wildner# These controllers have a SCSI-like interface, and require the
2212745b8439SSascha Wildner# CAM infrastructure.
2213745b8439SSascha Wildner#
2214745b8439SSascha Wildnerdevice		ciss
2215745b8439SSascha Wildner
2216745b8439SSascha Wildner#
2217745b8439SSascha Wildner# Intel Integrated RAID controllers.
2218745b8439SSascha Wildner# This driver is supported and maintained by
2219745b8439SSascha Wildner# "Leubner, Achim" <Achim_Leubner@adaptec.com>.
2220745b8439SSascha Wildner#
2221745b8439SSascha Wildnerdevice          iir
2222745b8439SSascha Wildner
2223745b8439SSascha Wildner#
2224745b8439SSascha Wildner# Mylex AcceleRAID and eXtremeRAID controllers with v6 and later
2225745b8439SSascha Wildner# firmware.  These controllers have a SCSI-like interface, and require
2226745b8439SSascha Wildner# the CAM infrastructure.
2227745b8439SSascha Wildner#
2228745b8439SSascha Wildnerdevice          mly
2229745b8439SSascha Wildner
2230745b8439SSascha Wildner# USB support
2231745b8439SSascha Wildner# UHCI controller
2232745b8439SSascha Wildnerdevice		uhci
2233745b8439SSascha Wildner# OHCI controller
2234745b8439SSascha Wildnerdevice		ohci
2235745b8439SSascha Wildner# EHCI controller
2236745b8439SSascha Wildnerdevice 		ehci
2237745b8439SSascha Wildner# General USB code (mandatory for USB)
2238745b8439SSascha Wildnerdevice		usb
2239745b8439SSascha Wildner#
2240745b8439SSascha Wildner# USB Bluetooth
2241745b8439SSascha Wildnerdevice		ubt
2242745b8439SSascha Wildner# Fm Radio
2243745b8439SSascha Wildnerdevice		ufm
2244745b8439SSascha Wildner# Generic USB device driver
2245745b8439SSascha Wildnerdevice		ugen
2246745b8439SSascha Wildner# Human Interface Device (anything with buttons and dials)
2247745b8439SSascha Wildnerdevice		uhid
2248745b8439SSascha Wildner# USB keyboard
2249745b8439SSascha Wildnerdevice		ukbd
2250745b8439SSascha Wildner# USB printer
2251745b8439SSascha Wildnerdevice		ulpt
2252745b8439SSascha Wildner# USB Iomega Zip 100 Drive (Requires scbus and da)
2253745b8439SSascha Wildnerdevice		umass
2254745b8439SSascha Wildner# USB modem support
2255745b8439SSascha Wildnerdevice		umodem
2256745b8439SSascha Wildner# USB mouse
2257745b8439SSascha Wildnerdevice		ums
2258745b8439SSascha Wildner# USB Rio (MP3 Player)
2259745b8439SSascha Wildnerdevice		urio
2260745b8439SSascha Wildner# USB scanners
2261745b8439SSascha Wildnerdevice		uscanner
2262745b8439SSascha Wildner# USB com devices
2263745b8439SSascha Wildnerdevice		moscom
2264745b8439SSascha Wildnerdevice		uark
2265745b8439SSascha Wildnerdevice		ubsa
2266745b8439SSascha Wildnerdevice		uchcom
2267745b8439SSascha Wildnerdevice		ucom
2268745b8439SSascha Wildnerdevice		uftdi
2269745b8439SSascha Wildnerdevice		ugensa
2270745b8439SSascha Wildnerdevice		umct
2271745b8439SSascha Wildnerdevice		uplcom
2272745b8439SSascha Wildnerdevice		uslcom
2273745b8439SSascha Wildnerdevice		uticom
2274745b8439SSascha Wildnerdevice		uvisor
2275745b8439SSascha Wildnerdevice		uvscom
2276745b8439SSascha Wildner
2277745b8439SSascha Wildner#
2278745b8439SSascha Wildner# ADMtek USB ethernet. Supports the LinkSys USB100TX,
2279745b8439SSascha Wildner# the Billionton USB100, the Melco LU-ATX, the D-Link DSB-650TX
2280745b8439SSascha Wildner# and the SMC 2202USB. Also works with the ADMtek AN986 Pegasus
2281745b8439SSascha Wildner# eval board.
2282745b8439SSascha Wildnerdevice		aue
2283745b8439SSascha Wildner#
2284745b8439SSascha Wildner# ASIX Electronics AX88172 USB 2.0 ethernet driver. Used in the
2285745b8439SSascha Wildner# LinkSys USB200M and various other adapters.
2286745b8439SSascha Wildnerdevice		axe
2287745b8439SSascha Wildner#
2288745b8439SSascha Wildner# CATC USB-EL1201A USB ethernet. Supports the CATC Netmate
2289745b8439SSascha Wildner# and Netmate II, and the Belkin F5U111.
2290745b8439SSascha Wildnerdevice		cue
2291745b8439SSascha Wildner#
2292745b8439SSascha Wildner# Kawasaki LSI ethernet. Supports the LinkSys USB10T,
2293745b8439SSascha Wildner# Entrega USB-NET-E45, Peracom Ethernet Adapter, the
2294745b8439SSascha Wildner# 3Com 3c19250, the ADS Technologies USB-10BT, the ATen UC10T,
2295745b8439SSascha Wildner# the Netgear EA101, the D-Link DSB-650, the SMC 2102USB
2296745b8439SSascha Wildner# and 2104USB, and the Corega USB-T.
2297745b8439SSascha Wildnerdevice		kue
2298745b8439SSascha Wildner#
2299a700a71bSSascha Wildner# USB CDC ethernet. Supports the LG P-500 smartphone.
2300a700a71bSSascha Wildnerdevice		lgue
2301a700a71bSSascha Wildner#
2302745b8439SSascha Wildner# RealTek 8150 based USB ethernet device:
2303745b8439SSascha Wildner#   Melco LUA-KTX
2304745b8439SSascha Wildner#   GREEN HOUSE GH-USB100B
2305745b8439SSascha Wildner#   Billionton ThumbLAN USBKR2-100B
2306745b8439SSascha Wildnerdevice		rue
2307745b8439SSascha Wildner
2308745b8439SSascha Wildner# USB wireless NICs, requires wlan_amrr
2309745b8439SSascha Wildner#
2310745b8439SSascha Wildner# Ralink Technology RT2501USB/RT2601USB
2311745b8439SSascha Wildner#device		rum
2312745b8439SSascha Wildner#
2313745b8439SSascha Wildner# Ralink Technology RT2500USB
2314745b8439SSascha Wildner#device		ural
2315745b8439SSascha Wildner
2316745b8439SSascha Wildner# debugging options for the USB subsystem
2317745b8439SSascha Wildner#
2318745b8439SSascha Wildneroptions 	USB_DEBUG
2319745b8439SSascha Wildner
2320745b8439SSascha Wildner# options for ukbd:
2321745b8439SSascha Wildneroptions 	UKBD_DFLT_KEYMAP	# specify the built-in keymap
2322745b8439SSascha Wildnermakeoptions	UKBD_DFLT_KEYMAP=it.iso
2323745b8439SSascha Wildner
2324745b8439SSascha Wildner# Firewire support
2325745b8439SSascha Wildnerdevice		firewire	# Firewire bus code
2326745b8439SSascha Wildnerdevice		sbp		# SCSI over Firewire (Requires scbus and da)
2327745b8439SSascha Wildnerdevice		fwe		# Ethernet over Firewire (non-standard!)
2328745b8439SSascha Wildner
2329745b8439SSascha Wildner# dcons support (Dumb Console Device)
2330745b8439SSascha Wildnerdevice		dcons			# dumb console driver
2331745b8439SSascha Wildnerdevice		dcons_crom		# FireWire attachment
2332745b8439SSascha Wildneroptions		DCONS_BUF_SIZE=16384	# buffer size
2333745b8439SSascha Wildneroptions		DCONS_POLL_HZ=100	# polling rate
2334745b8439SSascha Wildneroptions		DCONS_FORCE_CONSOLE=1	# force to be the primary console
2335745b8439SSascha Wildneroptions		DCONS_FORCE_GDB=1	# force to be the gdb device
2336745b8439SSascha Wildner
2337745b8439SSascha Wildner#####################################################################
2338745b8439SSascha Wildner# crypto subsystem
2339745b8439SSascha Wildner#
2340745b8439SSascha Wildner# This is a port of the openbsd crypto framework.  Include this when
2341745b8439SSascha Wildner# configuring IPsec and when you have a h/w crypto device to accelerate
2342745b8439SSascha Wildner# user applications that link to openssl.
2343745b8439SSascha Wildner#
2344745b8439SSascha Wildner# Drivers are ports from openbsd with some simple enhancements that have
2345745b8439SSascha Wildner# been fed back to openbsd (and hopefully will be included).
2346745b8439SSascha Wildner
2347745b8439SSascha Wildnerpseudo-device	crypto		# core crypto support
2348745b8439SSascha Wildnerpseudo-device	cryptodev	# /dev/crypto for access to h/w
2349745b8439SSascha Wildner
2350745b8439SSascha Wildnerdevice		rndtest		# FIPS 140-2 entropy tester
2351745b8439SSascha Wildner
2352745b8439SSascha Wildnerdevice		hifn		# Hifn 7951, 7781, etc.
2353745b8439SSascha Wildneroptions		HIFN_DEBUG	# enable debugging support: hw.hifn.debug
2354745b8439SSascha Wildner#options	HIFN_NO_RNG	# for devices without RNG
2355745b8439SSascha Wildneroptions		HIFN_RNDTEST	# enable rndtest support
2356745b8439SSascha Wildner
235725638cf4SSascha Wildnerdevice		safe		# SafeNet 1141
235825638cf4SSascha Wildneroptions 	SAFE_DEBUG	# enable debugging support: hw.safe.debug
23598690ff8fSSascha Wildner#options	SAFE_NO_RNG	# for devices without RNG
236025638cf4SSascha Wildneroptions 	SAFE_RNDTEST	# enable rndtest support
236125638cf4SSascha Wildner
2362745b8439SSascha Wildnerdevice		ubsec		# Broadcom 5501, 5601, 58xx
2363745b8439SSascha Wildneroptions		UBSEC_DEBUG	# enable debugging support: hw.ubsec.debug
2364745b8439SSascha Wildner#options	UBSEC_NO_RNG	# for devices without RNG
2365745b8439SSascha Wildneroptions		UBSEC_RNDTEST	# enable rndtest support
2366745b8439SSascha Wildner
2367745b8439SSascha Wildnerdevice		aesni		# hardware crypto/RNG for AES-NI
2368745b8439SSascha Wildnerdevice		padlock		# hardware crypto/RNG for VIA C3/C7/Eden
2369745b8439SSascha Wildner
2370745b8439SSascha Wildner#
2371745b8439SSascha Wildner# ACPI support using the Intel ACPI Component Architecture reference
2372745b8439SSascha Wildner# implementation.
2373745b8439SSascha Wildner#
2374745b8439SSascha Wildner# ACPI_DEBUG enables the use of the debug.acpi.level and debug.acpi.layer
2375745b8439SSascha Wildner# kernel environment variables to select initial debugging levels for the
2376745b8439SSascha Wildner# Intel ACPICA code.
2377745b8439SSascha Wildner#
2378745b8439SSascha Wildner# Note that building ACPI into the kernel is deprecated; the module is
2379745b8439SSascha Wildner# normally loaded automatically by the loader.
2380745b8439SSascha Wildner
2381745b8439SSascha Wildnerdevice		acpi
2382745b8439SSascha Wildneroptions 	ACPI_DEBUG
2383745b8439SSascha Wildner
2384745b8439SSascha Wildner# ACPI Asus Extras (LCD backlight/brightness, video output, etc.)
2385745b8439SSascha Wildnerdevice		acpi_asus
2386745b8439SSascha Wildner
2387745b8439SSascha Wildner# ACPI Fujitsu Extras (Buttons)
2388745b8439SSascha Wildnerdevice		acpi_fujitsu
2389745b8439SSascha Wildner
2390745b8439SSascha Wildner# ACPI extras driver for HP laptops
2391745b8439SSascha Wildner#device		acpi_hp
2392745b8439SSascha Wildner
2393745b8439SSascha Wildner# ACPI Panasonic Extras (LCD backlight/brightness, video output, etc.)
2394745b8439SSascha Wildnerdevice		acpi_panasonic
2395745b8439SSascha Wildner
2396745b8439SSascha Wildner# ACPI Sony extra (LCD brightness)
2397745b8439SSascha Wildnerdevice		acpi_sony
2398745b8439SSascha Wildner
2399745b8439SSascha Wildner# ACPI extras driver for ThinkPad laptops
2400745b8439SSascha Wildnerdevice		acpi_thinkpad
2401745b8439SSascha Wildner
2402745b8439SSascha Wildner# ACPI Toshiba Extras (LCD backlight/brightness, video output, etc.)
2403745b8439SSascha Wildnerdevice		acpi_toshiba
2404745b8439SSascha Wildner
2405745b8439SSascha Wildner# ACPI Video Extensions (LCD backlight/brightness, video output, etc.)
2406745b8439SSascha Wildnerdevice		acpi_video
2407745b8439SSascha Wildner
2408745b8439SSascha Wildnerdevice		aibs		# ASUSTeK AI Booster (ACPI ASOC ATK0110)
2409745b8439SSascha Wildner
2410745b8439SSascha Wildner# DRM options:
2411745b8439SSascha Wildner# drm:		General DRM code
2412745b8439SSascha Wildner# i915drm:	Intel i830, i845, i915, i945, i965, G33/35
2413745b8439SSascha Wildner# mach64drm:	ATI Mach64 cards - Rage and 3D Rage series
2414745b8439SSascha Wildner# mgadrm:	AGP Matrox G200, G400, G450, G550
2415745b8439SSascha Wildner# r128drm:	ATI Rage 128 cards
2416745b8439SSascha Wildner# radeondrm:	ATI Radeon cards
2417745b8439SSascha Wildner# savagedrm:	Savage cards
2418745b8439SSascha Wildner# sisdrm:	Sis cards
2419745b8439SSascha Wildner# tdfxdrm:	3dfx Voodoo 3/4/5 and Banshee
2420745b8439SSascha Wildner#
2421745b8439SSascha Wildner# DRM_DEBUG:	include debug printfs, very slow
2422745b8439SSascha Wildner#
2423745b8439SSascha Wildner# DRM requires AGP in the kernel.
2424745b8439SSascha Wildner
2425745b8439SSascha Wildnerdevice		drm
2426745b8439SSascha Wildnerdevice		"i915drm"
2427745b8439SSascha Wildnerdevice		"mach64drm"
2428745b8439SSascha Wildnerdevice		mgadrm
2429745b8439SSascha Wildnerdevice		"r128drm"
2430745b8439SSascha Wildnerdevice		radeondrm
2431745b8439SSascha Wildnerdevice		savagedrm
2432745b8439SSascha Wildnerdevice		sisdrm
2433745b8439SSascha Wildnerdevice		tdfxdrm
2434745b8439SSascha Wildner
2435745b8439SSascha Wildneroptions 	DRM_DEBUG
2436745b8439SSascha Wildneroptions 	DRM_LINUX
2437745b8439SSascha Wildner
2438745b8439SSascha Wildner#
2439745b8439SSascha Wildner# Misc devices
2440745b8439SSascha Wildner#
2441745b8439SSascha Wildnerdevice		cmx		# Omnikey CardMan 4040 smartcard reader
2442745b8439SSascha Wildnerdevice		gpio		# Enable support for the gpio framework
2443ea2c6782SSascha Wildnerdevice		tbridge		# regression testing
2444745b8439SSascha Wildner
2445745b8439SSascha Wildner#
2446745b8439SSascha Wildner# Embedded system options:
2447745b8439SSascha Wildner#
2448745b8439SSascha Wildner# An embedded system might want to run something other than init.
2449745b8439SSascha Wildneroptions 	INIT_PATH="/sbin/init:/sbin/oinit"
2450745b8439SSascha Wildner
2451745b8439SSascha Wildner# Debug options
2452745b8439SSascha Wildneroptions 	BUS_DEBUG       # enable newbus debugging
2453745b8439SSascha Wildneroptions		RSS_DEBUG	# enable RSS (Receive Side Scaling) debugging
2454745b8439SSascha Wildner
2455745b8439SSascha Wildner# Record the program counter of the code interrupted by the statistics
2456745b8439SSascha Wildner# clock interrupt.  Use pctrack(8) to dump this information.
2457745b8439SSascha Wildneroptions		DEBUG_PCTRACK
2458745b8439SSascha Wildner
2459745b8439SSascha Wildner# More undocumented options for linting.
2460745b8439SSascha Wildner# Note that documenting these are not considered an affront.
2461745b8439SSascha Wildner
2462745b8439SSascha Wildner#options	ACPI_NO_SEMAPHORES
2463745b8439SSascha Wildneroptions 	AHC_DUMP_EEPROM
2464745b8439SSascha Wildner#options 	BKTR_ALLOC_PAGES=xxx
2465745b8439SSascha Wildneroptions 	CAM_DEBUG_DELAY
2466745b8439SSascha Wildneroptions 	CLUSTERDEBUG
2467745b8439SSascha Wildner#options 	COMPAT_LINUX
2468745b8439SSascha Wildneroptions 	COMPAT_SUNOS
2469745b8439SSascha Wildneroptions 	DEBUG
2470745b8439SSascha Wildneroptions 	DEBUG_CRIT_SECTIONS
2471745b8439SSascha Wildneroptions 	DEBUG_INTERRUPTS
2472745b8439SSascha Wildner#options 	DISABLE_PSE
2473745b8439SSascha Wildneroptions		BCE_DEBUG
2474745b8439SSascha Wildneroptions		EMX_RSS_DEBUG
2475745b8439SSascha Wildneroptions		JME_RSS_DEBUG
2476745b8439SSascha Wildner#options	ED_NO_MIIBUS
2477745b8439SSascha Wildneroptions 	ENABLE_ALART
2478745b8439SSascha Wildneroptions 	FB_DEBUG=2
2479745b8439SSascha Wildneroptions 	FB_INSTALL_CDEV
2480745b8439SSascha Wildner#options 	I4B_SMP_WORKAROUND
2481745b8439SSascha Wildneroptions 	I586_PMC_GUPROF=0x70000
2482745b8439SSascha Wildner#options	IEEE80211_DEBUG_REFCNT
2483745b8439SSascha Wildneroptions		IEEE80211_SUPPORT_SUPERG
2484745b8439SSascha Wildneroptions 	KBDIO_DEBUG=10
2485745b8439SSascha Wildneroptions 	KBD_MAXRETRY=4
2486745b8439SSascha Wildneroptions 	KBD_MAXWAIT=6
2487745b8439SSascha Wildneroptions 	KBD_RESETDELAY=201
2488745b8439SSascha Wildner#options 	KERN_TIMESTAMP
2489745b8439SSascha Wildneroptions 	KEY
2490745b8439SSascha Wildner#options 	LINPROCFS
2491745b8439SSascha Wildneroptions 	LOCKF_DEBUG
2492745b8439SSascha Wildner#options	MAXFILES=xxx
2493745b8439SSascha Wildneroptions		MBUF_DEBUG
2494745b8439SSascha Wildneroptions 	PANIC_DEBUG
2495745b8439SSascha Wildneroptions 	PMAP_DEBUG
2496745b8439SSascha Wildneroptions 	PSM_DEBUG=4
2497745b8439SSascha Wildneroptions 	SCSI_NCR_DEBUG
2498745b8439SSascha Wildneroptions 	SCSI_NCR_MAX_SYNC=10000
2499745b8439SSascha Wildneroptions 	SCSI_NCR_MAX_WIDE=1
2500745b8439SSascha Wildneroptions 	SCSI_NCR_MYADDR=7
2501745b8439SSascha Wildneroptions 	SHOW_BUSYBUFS	# List buffers that prevent root unmount
2502745b8439SSascha Wildneroptions 	SI_DEBUG
2503603198e6SSascha Wildneroptions		SLAB_DEBUG
2504745b8439SSascha Wildneroptions 	SLIP_IFF_OPTS
2505745b8439SSascha Wildneroptions 	SOCKBUF_DEBUG
2506745b8439SSascha Wildneroptions		TDMA_BINTVAL_DEFAULT=5
2507745b8439SSascha Wildneroptions		TDMA_SLOTCNT_DEFAULT=2
2508745b8439SSascha Wildneroptions		TDMA_SLOTLEN_DEFAULT=10*1000
2509745b8439SSascha Wildneroptions		TDMA_TXRATE_11A_DEFAULT=2*24
2510745b8439SSascha Wildneroptions		TDMA_TXRATE_11B_DEFAULT=2*11
2511745b8439SSascha Wildneroptions		TDMA_TXRATE_11G_DEFAULT=2*24
2512745b8439SSascha Wildneroptions		TDMA_TXRATE_11NA_DEFAULT="(4|IEEE80211_RATE_MCS)"
2513745b8439SSascha Wildneroptions		TDMA_TXRATE_11NG_DEFAULT="(4|IEEE80211_RATE_MCS)"
2514745b8439SSascha Wildneroptions		TDMA_TXRATE_HALF_DEFAULT=2*12
2515745b8439SSascha Wildneroptions		TDMA_TXRATE_QUARTER_DEFAULT=2*6
2516745b8439SSascha Wildneroptions		TDMA_TXRATE_TURBO_DEFAULT=2*24
2517745b8439SSascha Wildner#options 	TIMER_FREQ="((14318182+6)/12)"
2518745b8439SSascha Wildneroptions 	VFS_BIO_DEBUG
2519603198e6SSascha Wildneroptions		VM_PAGE_DEBUG
2520745b8439SSascha Wildneroptions 	XBONEHACK
2521745b8439SSascha Wildner
2522745b8439SSascha Wildneroptions	KTR
2523243308a2SSascha Wildneroptions KTR_ALL
2524243308a2SSascha Wildneroptions	KTR_ENTRIES=1024
2525243308a2SSascha Wildneroptions	KTR_VERBOSE=1
2526745b8439SSascha Wildner#options KTR_CTXSW
2527243308a2SSascha Wildner#options KTR_DMCRYPT
2528745b8439SSascha Wildner#options KTR_ETHERNET
2529745b8439SSascha Wildner#options KTR_HAMMER
2530243308a2SSascha Wildner#options KTR_IFQ
2531745b8439SSascha Wildner#options KTR_IF_BGE
2532745b8439SSascha Wildner#options KTR_IF_EM
2533745b8439SSascha Wildner#options KTR_IF_EMX
2534745b8439SSascha Wildner#options KTR_IF_START
2535745b8439SSascha Wildner#options KTR_IPIQ
2536745b8439SSascha Wildner#options KTR_KERNENTRY
2537745b8439SSascha Wildner#options KTR_MEMORY
2538745b8439SSascha Wildner#options KTR_POLLING
2539745b8439SSascha Wildner#options KTR_SERIALIZER
2540745b8439SSascha Wildner#options KTR_SPIN_CONTENTION
2541745b8439SSascha Wildner#options KTR_TESTLOG
2542745b8439SSascha Wildner#options KTR_TOKENS
254395a12b8bSSascha Wildner#options KTR_TSLEEP
2544745b8439SSascha Wildner#options KTR_USB_MEMORY
2545745b8439SSascha Wildner
2546745b8439SSascha Wildner# ALTQ
2547745b8439SSascha Wildneroptions 	ALTQ		#alternate queueing
2548745b8439SSascha Wildneroptions 	ALTQ_CBQ	#class based queueing
2549745b8439SSascha Wildneroptions 	ALTQ_RED	#random early detection
2550745b8439SSascha Wildneroptions 	ALTQ_RIO	#triple red for diffserv (needs RED)
2551745b8439SSascha Wildneroptions 	ALTQ_HFSC	#hierarchical fair service curve
2552745b8439SSascha Wildneroptions 	ALTQ_PRIQ	#priority queue
2553745b8439SSascha Wildneroptions 	ALTQ_FAIRQ	#fair queue
2554745b8439SSascha Wildner#options 	ALTQ_NOPCC	#don't use processor cycle counter
2555745b8439SSascha Wildneroptions 	ALTQ_DEBUG	#for debugging
2556745b8439SSascha Wildner# you might want to set kernel timer to 1kHz if you use CBQ,
2557745b8439SSascha Wildner# especially with 100baseT
2558745b8439SSascha Wildner#options 	HZ=1000
2559745b8439SSascha Wildner
2560745b8439SSascha Wildner# SCTP
2561745b8439SSascha Wildneroptions		SCTP
2562745b8439SSascha Wildneroptions		SCTP_DEBUG
2563745b8439SSascha Wildneroptions		SCTP_USE_ADLER32
2564745b8439SSascha Wildneroptions		SCTP_HIGH_SPEED
2565745b8439SSascha Wildneroptions		SCTP_STAT_LOGGING
2566745b8439SSascha Wildneroptions		SCTP_CWND_LOGGING
2567745b8439SSascha Wildneroptions		SCTP_BLK_LOGGING
2568745b8439SSascha Wildneroptions		SCTP_STR_LOGGING
2569745b8439SSascha Wildneroptions		SCTP_FR_LOGGING
2570745b8439SSascha Wildneroptions		SCTP_MAP_LOGGING
2571745b8439SSascha Wildner
2572745b8439SSascha Wildner# DSCHED stuff
2573745b8439SSascha Wildneroptions		DSCHED_FQ
2574745b8439SSascha Wildner
2575745b8439SSascha Wildner# WATCHDOG
2576745b8439SSascha Wildneroptions		WATCHDOG_ENABLE		# Enable watchdog support framework
2577745b8439SSascha Wildneroptions		WDOG_DISABLE_ON_PANIC	# Automatically disable watchdogs on panic
2578745b8439SSascha Wildner
2579745b8439SSascha Wildner# LED
2580745b8439SSascha Wildneroptions		ERROR_LED_ON_PANIC	# If an error led is present, light it up on panic
2581