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