xref: /freebsd/sys/amd64/conf/NOTES (revision 3cbb4cc200f8a0ad7ed08233425ea54524a21f1c)
1#
2# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
3#
4# This file contains machine dependent kernel configuration notes.  For
5# machine independent notes, look in /sys/conf/NOTES.
6#
7# $FreeBSD$
8#
9
10#
11# We want LINT to cover profiling as well.
12profile         2
13
14#
15# Enable the kernel DTrace hooks which are required to load the DTrace
16# kernel modules.
17#
18options 	KDTRACE_HOOKS
19
20# DTrace core
21# NOTE: introduces CDDL-licensed components into the kernel
22#device		dtrace
23
24# DTrace modules
25#device		dtrace_profile
26#device		dtrace_sdt
27#device		dtrace_fbt
28#device		dtrace_systrace
29#device		dtrace_prototype
30#device		dtnfscl
31#device		dtmalloc
32
33# Alternatively include all the DTrace modules
34#device		dtraceall
35
36
37#####################################################################
38# SMP OPTIONS:
39#
40# Notes:
41#
42# IPI_PREEMPTION instructs the kernel to preempt threads running on other
43#	  CPUS if needed.  Relies on the PREEMPTION option
44
45# Optional:
46options 	IPI_PREEMPTION
47device		atpic			# Optional legacy pic support
48device		mptable			# Optional MPSPEC mptable support
49
50#
51# Watchdog routines.
52#
53options 	MP_WATCHDOG
54
55# Debugging options.
56#
57options 	COUNT_XINVLTLB_HITS	# Counters for TLB events
58options 	COUNT_IPIS		# Per-CPU IPI interrupt counters
59
60
61
62#####################################################################
63# CPU OPTIONS
64
65#
66# You must specify at least one CPU (the one you intend to run on);
67# deleting the specification for CPUs you don't need to use may make
68# parts of the system run faster.
69#
70cpu		HAMMER			# aka K8, aka Opteron & Athlon64
71
72#
73# Options for CPU features.
74#
75
76
77#####################################################################
78# NETWORKING OPTIONS
79
80#
81# DEVICE_POLLING adds support for mixed interrupt-polling handling
82# of network device drivers, which has significant benefits in terms
83# of robustness to overloads and responsivity, as well as permitting
84# accurate scheduling of the CPU time between kernel network processing
85# and other activities.  The drawback is a moderate (up to 1/HZ seconds)
86# potential increase in response times.
87# It is strongly recommended to use HZ=1000 or 2000 with DEVICE_POLLING
88# to achieve smoother behaviour.
89# Additionally, you can enable/disable polling at runtime with help of
90# the ifconfig(8) utility, and select the CPU fraction reserved to
91# userland with the sysctl variable kern.polling.user_frac
92# (default 50, range 0..100).
93#
94# Not all device drivers support this mode of operation at the time of
95# this writing.  See polling(4) for more details.
96
97options 	DEVICE_POLLING
98
99# BPF_JITTER adds support for BPF just-in-time compiler.
100
101options 	BPF_JITTER
102
103# OpenFabrics Enterprise Distribution (Infiniband).
104options 	OFED
105options 	OFED_DEBUG_INIT
106
107# Sockets Direct Protocol
108options 	SDP
109options 	SDP_DEBUG
110
111# IP over Infiniband
112options 	IPOIB
113options 	IPOIB_DEBUG
114options 	IPOIB_CM
115
116
117#####################################################################
118# CLOCK OPTIONS
119
120# Provide read/write access to the memory in the clock chip.
121device		nvram		# Access to rtc cmos via /dev/nvram
122
123
124#####################################################################
125# MISCELLANEOUS DEVICES AND OPTIONS
126
127device		speaker		#Play IBM BASIC-style noises out your speaker
128envvar		hint.speaker.0.at="isa"
129envvar		hint.speaker.0.port="0x61"
130
131
132#####################################################################
133# HARDWARE BUS CONFIGURATION
134
135#
136# ISA bus
137#
138device		isa
139
140#
141# Options for `isa':
142#
143# AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A
144# interrupt controller.  This saves about 0.7-1.25 usec for each interrupt.
145# This option breaks suspend/resume on some portables.
146#
147# AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A
148# interrupt controller.  This saves about 0.7-1.25 usec for each interrupt.
149# Automatic EOI is documented not to work for for the slave with the
150# original i8259A, but it works for some clones and some integrated
151# versions.
152#
153# MAXMEM specifies the amount of RAM on the machine; if this is not
154# specified, FreeBSD will first read the amount of memory from the CMOS
155# RAM, so the amount of memory will initially be limited to 64MB or 16MB
156# depending on the BIOS.  If the BIOS reports 64MB, a memory probe will
157# then attempt to detect the installed amount of RAM.  If this probe
158# fails to detect >64MB RAM you will have to use the MAXMEM option.
159# The amount is in kilobytes, so for a machine with 128MB of RAM, it would
160# be 131072 (128 * 1024).
161#
162# BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to
163# reset the CPU for reboot.  This is needed on some systems with broken
164# keyboard controllers.
165
166options 	AUTO_EOI_1
167#options 	AUTO_EOI_2
168
169options 	MAXMEM=(128*1024)
170#options 	BROKEN_KEYBOARD_RESET
171
172#
173# AGP GART support
174device		agp
175
176#
177# AGP debugging.
178#
179options 	AGP_DEBUG
180
181
182#####################################################################
183# HARDWARE DEVICE CONFIGURATION
184
185# To include support for VGA VESA video modes
186options 	VESA
187
188# Turn on extra debugging checks and output for VESA support.
189options 	VESA_DEBUG
190
191device		dpms		# DPMS suspend & resume via VESA BIOS
192
193# x86 real mode BIOS emulator, required by atkbdc/dpms/vesa
194options 	X86BIOS
195
196#
197# Optional devices:
198#
199
200# PS/2 mouse
201device		psm
202envvar		hint.psm.0.at="atkbdc"
203envvar		hint.psm.0.irq="12"
204
205# Options for psm:
206options 	PSM_HOOKRESUME		#hook the system resume event, useful
207					#for some laptops
208options 	PSM_RESETAFTERSUSPEND	#reset the device at the resume event
209
210# The keyboard controller; it controls the keyboard and the PS/2 mouse.
211device		atkbdc
212envvar		hint.atkbdc.0.at="isa"
213envvar		hint.atkbdc.0.port="0x060"
214
215# The AT keyboard
216device		atkbd
217envvar		hint.atkbd.0.at="atkbdc"
218envvar		hint.atkbd.0.irq="1"
219
220# Options for atkbd:
221options 	ATKBD_DFLT_KEYMAP	# specify the built-in keymap
222makeoptions	ATKBD_DFLT_KEYMAP=fr.dvorak
223
224# `flags' for atkbd:
225#       0x01    Force detection of keyboard, else we always assume a keyboard
226#       0x02    Don't reset keyboard, useful for some newer ThinkPads
227#	0x03	Force detection and avoid reset, might help with certain
228#		dockingstations
229#       0x04    Old-style (XT) keyboard support, useful for older ThinkPads
230
231# Video card driver for VGA adapters.
232device		vga
233envvar		hint.vga.0.at="isa"
234
235# Options for vga:
236# Try the following option if the mouse pointer is not drawn correctly
237# or font does not seem to be loaded properly.  May cause flicker on
238# some systems.
239options 	VGA_ALT_SEQACCESS
240
241# If you can dispense with some vga driver features, you may want to
242# use the following options to save some memory.
243#options 	VGA_NO_FONT_LOADING	# don't save/load font
244#options 	VGA_NO_MODE_CHANGE	# don't change video modes
245
246# Older video cards may require this option for proper operation.
247options 	VGA_SLOW_IOACCESS	# do byte-wide i/o's to TS and GDC regs
248
249# The following option probably won't work with the LCD displays.
250options 	VGA_WIDTH90		# support 90 column modes
251
252# Debugging.
253options 	VGA_DEBUG
254
255# vt(4) drivers.
256device		vt_vga		# VGA
257device		vt_efifb	# EFI framebuffer
258
259# Linear framebuffer driver for S3 VESA 1.2 cards. Works on top of VESA.
260device		s3pci
261
262# 3Dfx Voodoo Graphics, Voodoo II /dev/3dfx CDEV support.  This will create
263# the /dev/3dfx0 device to work with glide implementations.  This should get
264# linked to /dev/3dfx and /dev/voodoo.  Note that this is not the same as
265# the tdfx DRI module from XFree86 and is completely unrelated.
266#
267# To enable Linuxulator support, one must also include COMPAT_LINUX in the
268# config as well.  The other option is to load both as modules.
269
270device		tdfx			# Enable 3Dfx Voodoo support
271#XXX#device 	tdfx_linux		# Enable Linuxulator support
272
273#
274# ACPI support using the Intel ACPI Component Architecture reference
275# implementation.
276#
277# ACPI_DEBUG enables the use of the debug.acpi.level and debug.acpi.layer
278# kernel environment variables to select initial debugging levels for the
279# Intel ACPICA code.  (Note that the Intel code must also have USE_DEBUGGER
280# defined when it is built).
281
282device		acpi
283options 	ACPI_DEBUG
284
285# The cpufreq(4) driver provides support for non-ACPI CPU frequency control
286device		cpufreq
287
288#
289# Network interfaces:
290#
291
292# bxe:  Broadcom NetXtreme II (BCM5771X/BCM578XX) PCIe 10Gb Ethernet
293#       adapters.
294# ice:	Intel 800 Series Physical Function
295#	Requires the ice_ddp module for full functionality
296# ipw:	Intel PRO/Wireless 2100 IEEE 802.11 adapter
297#	Requires the ipw firmware module
298# iwi:	Intel PRO/Wireless 2200BG/2225BG/2915ABG IEEE 802.11 adapters
299#	Requires the iwi firmware module
300# iwn:	Intel Wireless WiFi Link 1000/105/135/2000/4965/5000/6000/6050 abgn
301#	802.11 network adapters
302#	Requires the iwn firmware module
303# mthca: Mellanox HCA InfiniBand
304# mlx4ib: Mellanox ConnectX HCA InfiniBand
305# mlx4en: Mellanox ConnectX HCA Ethernet
306# nfe:	nVidia nForce MCP on-board Ethernet Networking (BSD open source)
307# sfxge: Solarflare SFC9000 family 10Gb Ethernet adapters
308# vmx:	VMware VMXNET3 Ethernet (BSD open source)
309# wpi:	Intel 3945ABG Wireless LAN controller
310#	Requires the wpi firmware module
311
312device		bxe		# Broadcom NetXtreme II BCM5771X/BCM578XX 10GbE
313options 	ED_3C503
314options 	ED_HPP
315options 	ED_SIC
316device		ipw		# Intel 2100 wireless NICs.
317device		iwi		# Intel 2200BG/2225BG/2915ABG wireless NICs.
318device		iwn		# Intel 4965/1000/5000/6000 wireless NICs.
319device		ixl		# Intel 700 Series Physical Function
320device		iavf		# Intel Adaptive Virtual Function
321device		ice		# Intel 800 Series Physical Function
322device		ice_ddp		# Intel 800 Series DDP Package
323device  	mthca		# Mellanox HCA InfiniBand
324device  	mlx4		# Shared code module between IB and Ethernet
325device  	mlx4ib		# Mellanox ConnectX HCA InfiniBand
326device  	mlx4en		# Mellanox ConnectX HCA Ethernet
327device		nfe		# nVidia nForce MCP on-board Ethernet
328device		sfxge		# Solarflare SFC9000 10Gb Ethernet
329device		vmx		# VMware VMXNET3 Ethernet
330device		wpi		# Intel 3945ABG wireless NICs.
331device		axp		# AMD EPYC integrated NIC
332
333# IEEE 802.11 adapter firmware modules
334
335# Intel PRO/Wireless 2100 firmware:
336#   ipwfw:		BSS/IBSS/monitor mode firmware
337#   ipwbssfw:		BSS mode firmware
338#   ipwibssfw:		IBSS mode firmware
339#   ipwmonitorfw:	Monitor mode firmware
340# Intel PRO/Wireless 2200BG/2225BG/2915ABG firmware:
341#   iwifw:		BSS/IBSS/monitor mode firmware
342#   iwibssfw:		BSS mode firmware
343#   iwiibssfw:		IBSS mode firmware
344#   iwimonitorfw:	Monitor mode firmware
345# Intel Wireless WiFi Link 4965/1000/5000/6000 series firmware:
346#   iwnfw:		Single module to support all devices
347#   iwn1000fw:		Specific module for the 1000 only
348#   iwn105fw:		Specific module for the 105 only
349#   iwn135fw:		Specific module for the 135 only
350#   iwn2000fw:		Specific module for the 2000 only
351#   iwn2030fw:		Specific module for the 2030 only
352#   iwn4965fw:		Specific module for the 4965 only
353#   iwn5000fw:		Specific module for the 5000 only
354#   iwn5150fw:		Specific module for the 5150 only
355#   iwn6000fw:		Specific module for the 6000 only
356#   iwn6000g2afw:	Specific module for the 6000g2a only
357#   iwn6000g2bfw:	Specific module for the 6000g2b only
358#   iwn6050fw:		Specific module for the 6050 only
359# wpifw:	Intel 3945ABG Wireless LAN Controller firmware
360
361device		iwifw
362device		iwibssfw
363device		iwiibssfw
364device		iwimonitorfw
365device		ipwfw
366device		ipwbssfw
367device		ipwibssfw
368device		ipwmonitorfw
369device		iwnfw
370device		iwn1000fw
371device		iwn105fw
372device		iwn135fw
373device		iwn2000fw
374device		iwn2030fw
375device		iwn4965fw
376device		iwn5000fw
377device		iwn5150fw
378device		iwn6000fw
379device		iwn6000g2afw
380device		iwn6000g2bfw
381device		iwn6050fw
382device		wpifw
383
384#
385# Non-Transparent Bridge (NTB) drivers
386#
387device		if_ntb		# Virtual NTB network interface
388device		ntb_transport	# NTB packet transport driver
389device		ntb		# NTB hardware interface
390device		ntb_hw_amd	# AMD NTB hardware driver
391device		ntb_hw_intel	# Intel NTB hardware driver
392device		ntb_hw_plx	# PLX NTB hardware driver
393
394#
395#XXX this stores pointers in a 32bit field that is defined by the hardware
396#device	pst
397
398#
399# Areca 11xx and 12xx series of SATA II RAID controllers.
400# CAM is required.
401#
402device		arcmsr		# Areca SATA II RAID
403
404#
405# Microsemi smartpqi controllers.
406# These controllers have a SCSI-like interface, and require the
407# CAM infrastructure.
408#
409device		smartpqi
410
411#
412# 3ware 9000 series PATA/SATA RAID controller driver and options.
413# The driver is implemented as a SIM, and so, needs the CAM infrastructure.
414#
415options 	TWA_DEBUG		# 0-10; 10 prints the most messages.
416device		twa			# 3ware 9000 series PATA/SATA RAID
417
418#
419# Adaptec FSA RAID controllers, including integrated DELL controllers,
420# the Dell PERC 2/QC and the HP NetRAID-4M
421device		aac
422device		aacp	# SCSI Passthrough interface (optional, CAM required)
423
424#
425# Highpoint RocketRAID 27xx.
426device		hpt27xx
427
428#
429# Highpoint RocketRAID 182x.
430device		hptmv
431
432#
433# Highpoint DC7280 and R750.
434device		hptnr
435
436#
437# Highpoint RocketRAID.  Supports RR172x, RR222x, RR2240, RR232x, RR2340,
438# RR2210, RR174x, RR2522, RR231x, RR230x.
439device		hptrr
440
441#
442# Highpoint RocketRaid 3xxx series SATA RAID
443device		hptiop
444
445#
446# IBM (now Adaptec) ServeRAID controllers
447device		ips
448
449#
450# Intel integrated Memory Controller (iMC) SMBus controller
451#	Sandybridge-Xeon, Ivybridge-Xeon, Haswell-Xeon, Broadwell-Xeon
452device		imcsmb
453
454#
455# Intel C600 (Patsburg) integrated SAS controller
456device		isci
457options 	ISCI_LOGGING	# enable debugging in isci HAL
458
459#
460# NVM Express (NVMe) support
461device         nvme    # base NVMe driver
462device         nvd     # expose NVMe namespaces as disks, depends on nvme
463
464#
465# Intel Volume Management Device (VMD) support
466device		vmd		# base VMD device
467device		vmd_bus		# bus for VMD children
468
469#
470# PMC-Sierra SAS/SATA controller
471device		pmspcv
472
473#
474# Intel QuickAssist
475device		qat
476
477#
478# SafeNet crypto driver: can be moved to the MI NOTES as soon as
479# it's tested on a big-endian machine
480#
481device		safe		# SafeNet 1141
482options 	SAFE_DEBUG	# enable debugging support: hw.safe.debug
483options 	SAFE_RNDTEST	# enable rndtest support
484
485#
486# VirtIO support
487#
488# The virtio entry provides a generic bus for use by the device drivers.
489# It must be combined with an interface that communicates with the host.
490# Multiple such interfaces are defined by the VirtIO specification. FreeBSD
491# only has support for PCI. Therefore, virtio_pci must be statically
492# compiled in or loaded as a module for the device drivers to function.
493#
494device		virtio		# Generic VirtIO bus (required)
495device		virtio_pci	# VirtIO PCI Interface
496device		vtnet		# VirtIO Ethernet device
497device		virtio_blk	# VirtIO Block device
498device		virtio_scsi	# VirtIO SCSI device
499device		virtio_balloon	# VirtIO Memory Balloon device
500device		virtio_random	# VirtIO Entropy device
501device		virtio_console	# VirtIO Console device
502
503# Microsoft Hyper-V enhancement support
504device 		hyperv		# HyperV drivers
505
506# Xen HVM Guest Optimizations
507options 	XENHVM		# Xen HVM kernel infrastructure
508device 		xenpci		# Xen HVM Hypervisor services driver
509
510#####################################################################
511
512#
513# Miscellaneous hardware:
514#
515# ipmi: Intelligent Platform Management Interface
516# pbio: Parallel (8255 PPI) basic I/O (mode 0) port (e.g. Advantech PCL-724)
517# smbios: DMI/SMBIOS entry point
518# vpd: Vital Product Data kernel interface
519# asmc: Apple System Management Controller
520# si: Specialix International SI/XIO or SX intelligent serial card
521# tpm: Trusted Platform Module
522
523# Notes on the Specialix SI/XIO driver:
524#  The host card is memory, not IO mapped.
525#  The Rev 1 host cards use a 64K chunk, on a 32K boundary.
526#  The Rev 2 host cards use a 32K chunk, on a 32K boundary.
527#  The cards can use an IRQ of 11, 12 or 15.
528
529device		ipmi
530device		pbio
531envvar		hint.pbio.0.at="isa"
532envvar		hint.pbio.0.port="0x360"
533device		smbios
534device		vpd
535device		asmc
536device		tpm
537device		padlock_rng	# VIA Padlock RNG
538device		rdrand_rng	# Intel Bull Mountain RNG
539device		aesni		# AES-NI OpenCrypto module
540device		ossl		# OpenSSL OpenCrypto module
541device		ioat		# Intel I/OAT DMA engine
542
543#
544# Laptop/Notebook options:
545#
546
547device backlight
548
549#
550# I2C Bus
551#
552
553#
554# Hardware watchdog timers:
555#
556# ichwd: Intel ICH watchdog timer
557# amdsbwd: AMD SB7xx watchdog timer
558# viawd: VIA south bridge watchdog timer
559# wbwd: Winbond watchdog timer
560# itwd: ITE Super I/O watchdog timer
561#
562device		ichwd
563device		amdsbwd
564device		viawd
565device		wbwd
566device		itwd
567
568#
569# Temperature sensors:
570#
571# coretemp: on-die sensor on Intel Core and newer CPUs
572# amdtemp: on-die sensor on AMD K8/K10/K11 CPUs
573#
574device		coretemp
575device		amdtemp
576
577#
578# CPU control pseudo-device. Provides access to MSRs, CPUID info and
579# microcode update feature.
580#
581device		cpuctl
582
583#
584# SuperIO driver.
585#
586device		superio
587
588#
589# System Management Bus (SMB)
590#
591options 	ENABLE_ALART		# Control alarm on Intel intpm driver
592
593#
594# AMD System Management Network (SMN)
595#
596device		amdsmn
597
598#
599# Number of initial kernel page table pages used for early bootstrap.
600# This number should include enough pages to map the kernel and any
601# modules or other data loaded with the kernel by the loader.  Each
602# page table page maps 2MB.
603#
604options 	NKPT=31
605
606# EFI Runtime Services support
607options 	EFIRT
608
609
610#####################################################################
611# ABI Emulation
612
613#XXX keep these here for now and reactivate when support for emulating
614#XXX these 32 bit binaries is added.
615
616# Enable 32-bit runtime support for FreeBSD/i386 binaries.
617options 	COMPAT_FREEBSD32
618
619# Enable (32-bit) a.out binary support
620options 	COMPAT_AOUT
621
622# Enable 32-bit runtime support for CloudABI binaries.
623options 	COMPAT_CLOUDABI32
624
625# Enable 64-bit runtime support for CloudABI binaries.
626options 	COMPAT_CLOUDABI64
627
628# Enable Linux ABI emulation
629#XXX#options 	COMPAT_LINUX
630
631# Enable 32-bit Linux ABI emulation (requires COMPAT_FREEBSD32).
632options 	COMPAT_LINUX32
633
634# Enable the linux-like proc filesystem support (requires COMPAT_LINUX32
635# and PSEUDOFS)
636options 	LINPROCFS
637
638#Enable the linux-like sys filesystem support (requires COMPAT_LINUX32
639# and PSEUDOFS)
640options 	LINSYSFS
641
642#####################################################################
643# ZFS support
644
645# NB: This depends on crypto, cryptodev and ZSTDIO
646options		ZFS
647
648#####################################################################
649# VM OPTIONS
650
651# KSTACK_PAGES is the number of memory pages to assign to the kernel
652# stack of each thread.
653
654options 	KSTACK_PAGES=5
655
656# Enable detailed accounting by the PV entry allocator.
657
658options 	PV_STATS
659
660#####################################################################
661
662# More undocumented options for linting.
663# Note that documenting these are not considered an affront.
664
665options 	FB_INSTALL_CDEV		# install a CDEV entry in /dev
666
667options 	KBDIO_DEBUG=2
668options 	KBD_MAXRETRY=4
669options 	KBD_MAXWAIT=6
670options 	KBD_RESETDELAY=201
671
672options 	PSM_DEBUG=1
673
674options 	TIMER_FREQ=((14318182+6)/12)
675
676options 	VM_KMEM_SIZE
677options 	VM_KMEM_SIZE_MAX
678options 	VM_KMEM_SIZE_SCALE
679
680# Enable NDIS binary driver support
681options 	NDISAPI
682device		ndis
683
684
685# GCOV (code coverage) support
686
687options		LINDEBUGFS
688options		GCOV
689