xref: /freebsd/sys/powerpc/conf/GENERIC64LE (revision 231633a2e9000d67b09f132ee26951a4621c778a)
16e5dbfb2SBrandon Bergren#
26e5dbfb2SBrandon Bergren# GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
36e5dbfb2SBrandon Bergren#
46e5dbfb2SBrandon Bergren# For more information on this file, please read the handbook section on
56e5dbfb2SBrandon Bergren# Kernel Configuration Files:
66e5dbfb2SBrandon Bergren#
76e5dbfb2SBrandon Bergren#    https://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
86e5dbfb2SBrandon Bergren#
96e5dbfb2SBrandon Bergren# The handbook is also available locally in /usr/share/doc/handbook
106e5dbfb2SBrandon Bergren# if you've installed the doc distribution, otherwise always see the
116e5dbfb2SBrandon Bergren# FreeBSD World Wide Web server (https://www.FreeBSD.org/) for the
126e5dbfb2SBrandon Bergren# latest information.
136e5dbfb2SBrandon Bergren#
146e5dbfb2SBrandon Bergren# An exhaustive list of options and more detailed explanations of the
156e5dbfb2SBrandon Bergren# device lines is also present in the ../../conf/NOTES and NOTES files.
166e5dbfb2SBrandon Bergren# If you are in doubt as to the purpose or necessity of a line, check first
176e5dbfb2SBrandon Bergren# in NOTES.
186e5dbfb2SBrandon Bergren#
196e5dbfb2SBrandon Bergren# $FreeBSD$
206e5dbfb2SBrandon Bergren
216e5dbfb2SBrandon Bergrencpu		AIM
226e5dbfb2SBrandon Bergrenident		GENERIC
236e5dbfb2SBrandon Bergren
246e5dbfb2SBrandon Bergrenmachine 	powerpc	powerpc64le
256e5dbfb2SBrandon Bergren
266e5dbfb2SBrandon Bergrenmakeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
276e5dbfb2SBrandon Bergrenmakeoptions	WITH_CTF=1
286e5dbfb2SBrandon Bergren
296e5dbfb2SBrandon Bergren# Platform support
306e5dbfb2SBrandon Bergrenoptions 	MAMBO			#IBM Mambo Full System Simulator
316e5dbfb2SBrandon Bergrenoptions		QEMU			#QEMU processor emulator
326e5dbfb2SBrandon Bergrenoptions 	PSERIES			#PAPR-compliant systems (e.g. IBM p)
336e5dbfb2SBrandon Bergrenoptions 	POWERNV			#Non-virtualized OpenPOWER systems
346e5dbfb2SBrandon Bergren
356e5dbfb2SBrandon Bergrenoptions		FDT			#Flattened Device Tree
366e5dbfb2SBrandon Bergrenoptions 	SCHED_ULE		#ULE scheduler
376e5dbfb2SBrandon Bergrenoptions 	NUMA			#Non-Uniform Memory Architecture support
386e5dbfb2SBrandon Bergrenoptions 	PREEMPTION		#Enable kernel thread preemption
396e5dbfb2SBrandon Bergrenoptions 	VIMAGE			# Subsystem virtualization, e.g. VNET
406e5dbfb2SBrandon Bergrenoptions 	INET			#InterNETworking
416e5dbfb2SBrandon Bergrenoptions 	INET6			#IPv6 communications protocols
426e5dbfb2SBrandon Bergrenoptions 	IPSEC_SUPPORT		# Allow kldload of ipsec and tcpmd5
436e5dbfb2SBrandon Bergrenoptions 	TCP_OFFLOAD		# TCP offload
446e5dbfb2SBrandon Bergrenoptions 	TCP_BLACKBOX		# Enhanced TCP event logging
456e5dbfb2SBrandon Bergrenoptions 	TCP_HHOOK		# hhook(9) framework for TCP
466e5dbfb2SBrandon Bergrenoptions 	TCP_RFC7413		# TCP Fast Open
476e5dbfb2SBrandon Bergrenoptions 	SCTP_SUPPORT		# Allow kldload of SCTP
486e5dbfb2SBrandon Bergrenoptions 	FFS			#Berkeley Fast Filesystem
496e5dbfb2SBrandon Bergrenoptions 	SOFTUPDATES		#Enable FFS soft updates support
506e5dbfb2SBrandon Bergrenoptions 	UFS_ACL			#Support for access control lists
516e5dbfb2SBrandon Bergrenoptions 	UFS_DIRHASH		#Improve performance on big directories
526e5dbfb2SBrandon Bergrenoptions 	UFS_GJOURNAL		#Enable gjournal-based UFS journaling
536e5dbfb2SBrandon Bergrenoptions 	QUOTA			#Enable disk quotas for UFS
546e5dbfb2SBrandon Bergrenoptions 	MD_ROOT			#MD is a potential root device
556e5dbfb2SBrandon Bergrenoptions 	MD_ROOT_MEM		#Enable use of initrd as MD root
566e5dbfb2SBrandon Bergrenoptions 	NFSCL			#Network Filesystem Client
576e5dbfb2SBrandon Bergrenoptions 	NFSD			#Network Filesystem Server
586e5dbfb2SBrandon Bergrenoptions 	NFSLOCKD		#Network Lock Manager
596e5dbfb2SBrandon Bergrenoptions 	NFS_ROOT		#NFS usable as root device
606e5dbfb2SBrandon Bergrenoptions 	MSDOSFS			#MSDOS Filesystem
616e5dbfb2SBrandon Bergrenoptions 	CD9660			#ISO 9660 Filesystem
626e5dbfb2SBrandon Bergrenoptions 	PROCFS			#Process filesystem (requires PSEUDOFS)
636e5dbfb2SBrandon Bergrenoptions 	PSEUDOFS		#Pseudo-filesystem framework
646e5dbfb2SBrandon Bergrenoptions 	TMPFS			#Efficient memory filesystem
656e5dbfb2SBrandon Bergrenoptions 	GEOM_PART_APM		#Apple Partition Maps.
666e5dbfb2SBrandon Bergrenoptions 	GEOM_PART_GPT		#GUID Partition Tables.
676e5dbfb2SBrandon Bergrenoptions 	GEOM_LABEL		#Provides labelization
688b804ee6SPiotr Kubaj#options 	COMPAT_FREEBSD32	#Compatible with FreeBSD/powerpcle binaries
698b804ee6SPiotr Kubajoptions		COMPAT_FREEBSD11	# Compatible with FreeBSD11
708b804ee6SPiotr Kubajoptions		COMPAT_FREEBSD12	# Compatible with FreeBSD12
716e5dbfb2SBrandon Bergrenoptions 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
726e5dbfb2SBrandon Bergrenoptions 	KTRACE			#ktrace(1) syscall trace support
736e5dbfb2SBrandon Bergrenoptions 	STACK			#stack(9) support
746e5dbfb2SBrandon Bergrenoptions 	SYSVSHM			#SYSV-style shared memory
756e5dbfb2SBrandon Bergrenoptions 	SYSVMSG			#SYSV-style message queues
766e5dbfb2SBrandon Bergrenoptions 	SYSVSEM			#SYSV-style semaphores
776e5dbfb2SBrandon Bergrenoptions 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
786e5dbfb2SBrandon Bergrenoptions		PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
796e5dbfb2SBrandon Bergrenoptions 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
806e5dbfb2SBrandon Bergrenoptions 	AUDIT			# Security event auditing
816e5dbfb2SBrandon Bergrenoptions 	CAPABILITY_MODE		# Capsicum capability mode
826e5dbfb2SBrandon Bergrenoptions 	CAPABILITIES		# Capsicum capabilities
836e5dbfb2SBrandon Bergrenoptions 	MAC			# TrustedBSD MAC Framework
846e5dbfb2SBrandon Bergrenoptions 	KDTRACE_HOOKS		# Kernel DTrace hooks
856e5dbfb2SBrandon Bergrenoptions 	DDB_CTF			# Kernel ELF linker loads CTF data
866e5dbfb2SBrandon Bergrenoptions 	INCLUDE_CONFIG_FILE     # Include this file in kernel
876e5dbfb2SBrandon Bergrenoptions 	RACCT			# Resource accounting framework
886e5dbfb2SBrandon Bergrenoptions 	RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
896e5dbfb2SBrandon Bergrenoptions 	RCTL			# Resource limits
906e5dbfb2SBrandon Bergren
916e5dbfb2SBrandon Bergren# Debugging support.  Always need this:
926e5dbfb2SBrandon Bergrenoptions 	KDB			# Enable kernel debugger support.
936e5dbfb2SBrandon Bergrenoptions 	KDB_TRACE		# Print a stack trace for a panic.
946e5dbfb2SBrandon Bergren# For full debugger support use (turn off in stable branch):
956e5dbfb2SBrandon Bergrenoptions 	DDB			#Support DDB
966e5dbfb2SBrandon Bergren#options 	DEADLKRES		#Enable the deadlock resolver
976e5dbfb2SBrandon Bergrenoptions 	INVARIANTS		#Enable calls of extra sanity checking
986e5dbfb2SBrandon Bergrenoptions 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
996e5dbfb2SBrandon Bergrenoptions 	WITNESS			#Enable checks to detect deadlocks and cycles
1006e5dbfb2SBrandon Bergrenoptions 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
1016e5dbfb2SBrandon Bergrenoptions 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
1026e5dbfb2SBrandon Bergrenoptions 	VERBOSE_SYSINIT=0	# Support debug.verbose_sysinit, off by default
1036e5dbfb2SBrandon Bergren
1046e5dbfb2SBrandon Bergren# Kernel dump features.
1056e5dbfb2SBrandon Bergrenoptions 	EKCD			# Support for encrypted kernel dumps
1066e5dbfb2SBrandon Bergrenoptions 	GZIO			# gzip-compressed kernel and user dumps
1076e5dbfb2SBrandon Bergrenoptions 	ZSTDIO			# zstd-compressed kernel and user dumps
1086e5dbfb2SBrandon Bergrenoptions 	DEBUGNET		# debugnet networking
1096e5dbfb2SBrandon Bergrenoptions 	NETDUMP			# netdump(4) client support
1106e5dbfb2SBrandon Bergren
1116e5dbfb2SBrandon Bergren# Make an SMP-capable kernel by default
1126e5dbfb2SBrandon Bergrenoptions 	SMP			# Symmetric MultiProcessor Kernel
1136e5dbfb2SBrandon Bergren
1146e5dbfb2SBrandon Bergren# CPU frequency control
1156e5dbfb2SBrandon Bergrendevice		cpufreq
1166e5dbfb2SBrandon Bergren
1176e5dbfb2SBrandon Bergren# Standard busses
1186e5dbfb2SBrandon Bergrendevice		pci
1196e5dbfb2SBrandon Bergrenoptions 	PCI_HP			# PCI-Express native HotPlug
1206e5dbfb2SBrandon Bergrendevice		agp
1216e5dbfb2SBrandon Bergren
1226e5dbfb2SBrandon Bergren# ATA controllers
1236e5dbfb2SBrandon Bergrendevice		ahci		# AHCI-compatible SATA controllers
1246e5dbfb2SBrandon Bergrendevice		ata		# Legacy ATA/SATA controllers
1256e5dbfb2SBrandon Bergrendevice		mvs		# Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
1266e5dbfb2SBrandon Bergrendevice		siis		# SiliconImage SiI3124/SiI3132/SiI3531 SATA
1276e5dbfb2SBrandon Bergren
1286e5dbfb2SBrandon Bergren# NVM Express (NVMe) support
1296e5dbfb2SBrandon Bergrendevice		nvme		# base NVMe driver
1306e5dbfb2SBrandon Bergrenoptions		NVME_USE_NVD=0	# prefer the cam(4) based nda(4) driver
1316e5dbfb2SBrandon Bergrendevice		nvd		# expose NVMe namespaces as disks, depends on nvme
1326e5dbfb2SBrandon Bergren
1336e5dbfb2SBrandon Bergren# SCSI Controllers
1346e5dbfb2SBrandon Bergrendevice		aacraid		# Adaptec by PMC RAID
1356e5dbfb2SBrandon Bergrendevice		ahc		# AHA2940 and onboard AIC7xxx devices
1366e5dbfb2SBrandon Bergrenoptions 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
1376e5dbfb2SBrandon Bergrendevice		isp		# Qlogic family
1386e5dbfb2SBrandon Bergrendevice		ispfw		# Firmware module for Qlogic host adapters
139eaffd270SAlfredo Dal'Ava Juniordevice		mrsas		# LSI/Avago MegaRAID SAS/SATA, 6Gb/s and 12Gb/s
1406e5dbfb2SBrandon Bergrendevice		mpt		# LSI-Logic MPT-Fusion
1416e5dbfb2SBrandon Bergrendevice		mps		# LSI-Logic MPT-Fusion 2
142*231633a2SAlfredo Dal'Ava Juniordevice		mpr		# LSI SAS3008 MPT-Fusion SAS-3
1436e5dbfb2SBrandon Bergrendevice		sym		# NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
1446e5dbfb2SBrandon Bergren
1456e5dbfb2SBrandon Bergren# ATA/SCSI peripherals
1466e5dbfb2SBrandon Bergrendevice		scbus		# SCSI bus (required for ATA/SCSI)
1476e5dbfb2SBrandon Bergrendevice		ch		# SCSI media changers
1486e5dbfb2SBrandon Bergrendevice		da		# Direct Access (disks)
1496e5dbfb2SBrandon Bergrendevice		sa		# Sequential Access (tape etc)
1506e5dbfb2SBrandon Bergrendevice		cd		# CD
1516e5dbfb2SBrandon Bergrendevice		pass		# Passthrough device (direct ATA/SCSI access)
1526e5dbfb2SBrandon Bergrendevice		ses		# Enclosure Service (SES and SAF-TE)
1536e5dbfb2SBrandon Bergren
1546e5dbfb2SBrandon Bergren# vt is the default console driver, resembling an SCO console
1556e5dbfb2SBrandon Bergrendevice		vt		# Core console driver
1566e5dbfb2SBrandon Bergrendevice		kbdmux
1576e5dbfb2SBrandon Bergren
1586e5dbfb2SBrandon Bergren# Serial (COM) ports
1596e5dbfb2SBrandon Bergrendevice		scc
1606e5dbfb2SBrandon Bergrendevice		uart
1616e5dbfb2SBrandon Bergrendevice		uart_z8530
1626e5dbfb2SBrandon Bergren
1636e5dbfb2SBrandon Bergrendevice		iflib
1646e5dbfb2SBrandon Bergren
1656e5dbfb2SBrandon Bergren# Ethernet hardware
1666e5dbfb2SBrandon Bergrendevice		em		# Intel PRO/1000 Gigabit Ethernet Family
1676e5dbfb2SBrandon Bergrendevice		ix		# Intel PRO/10GbE PCIE PF Ethernet Family
1686e5dbfb2SBrandon Bergrendevice		ixl		# Intel 700 Series Physical Function
1696e5dbfb2SBrandon Bergrendevice		ixv		# Intel PRO/10GbE PCIE VF Ethernet Family
1706e5dbfb2SBrandon Bergrendevice		llan		# IBM pSeries Virtual Ethernet
1716e5dbfb2SBrandon Bergrendevice		cxgbe		# Chelsio 10/25G NIC
1726e5dbfb2SBrandon Bergren
1736e5dbfb2SBrandon Bergren# PCI Ethernet NICs that use the common MII bus controller code.
1746e5dbfb2SBrandon Bergrendevice		miibus		# MII bus support
1756e5dbfb2SBrandon Bergrendevice		bge		# Broadcom BCM570xx Gigabit Ethernet
1766e5dbfb2SBrandon Bergrendevice		gem		# Sun GEM/Sun ERI/Apple GMAC
1776e5dbfb2SBrandon Bergrendevice		dc		# DEC/Intel 21143 and various workalikes
1786e5dbfb2SBrandon Bergrendevice		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
1796e5dbfb2SBrandon Bergrendevice		re		# RealTek 8139C+/8169/8169S/8110S
1806e5dbfb2SBrandon Bergrendevice		rl		# RealTek 8129/8139
1816e5dbfb2SBrandon Bergren
1826e5dbfb2SBrandon Bergren# Pseudo devices.
1836e5dbfb2SBrandon Bergrendevice		crypto		# core crypto support
1846e5dbfb2SBrandon Bergrendevice		loop		# Network loopback
1856e5dbfb2SBrandon Bergrendevice		ether		# Ethernet support
1866e5dbfb2SBrandon Bergrendevice		vlan		# 802.1Q VLAN support
1876e5dbfb2SBrandon Bergrendevice		tuntap		# Packet tunnel.
1886e5dbfb2SBrandon Bergrendevice		md		# Memory "disks"
1896e5dbfb2SBrandon Bergrendevice		ofwd		# Open Firmware disks
1906e5dbfb2SBrandon Bergrendevice		gif		# IPv6 and IPv4 tunneling
1916e5dbfb2SBrandon Bergrendevice		firmware	# firmware assist module
1926e5dbfb2SBrandon Bergren
1936e5dbfb2SBrandon Bergren# The `bpf' device enables the Berkeley Packet Filter.
1946e5dbfb2SBrandon Bergren# Be aware of the administrative consequences of enabling this!
1956e5dbfb2SBrandon Bergren# Note that 'bpf' is required for DHCP.
1966e5dbfb2SBrandon Bergrendevice		bpf		#Berkeley packet filter
1976e5dbfb2SBrandon Bergren
1986e5dbfb2SBrandon Bergren# USB support
1996e5dbfb2SBrandon Bergrenoptions 	USB_DEBUG	# enable debug msgs
2006e5dbfb2SBrandon Bergrendevice		uhci		# UHCI PCI->USB interface
2016e5dbfb2SBrandon Bergrendevice		ohci		# OHCI PCI->USB interface
2026e5dbfb2SBrandon Bergrendevice		ehci		# EHCI PCI->USB interface
2036e5dbfb2SBrandon Bergrendevice		xhci		# XHCI PCI->USB interface
2046e5dbfb2SBrandon Bergrendevice		usb		# USB Bus (required)
2056e5dbfb2SBrandon Bergrendevice		uhid		# "Human Interface Devices"
2066e5dbfb2SBrandon Bergrendevice		ukbd		# Keyboard
2076e5dbfb2SBrandon Bergrenoptions 	KBD_INSTALL_CDEV # install a CDEV entry in /dev
2086e5dbfb2SBrandon Bergrendevice		umass		# Disks/Mass storage - Requires scbus and da0
2096e5dbfb2SBrandon Bergrendevice		ums		# Mouse
2106e5dbfb2SBrandon Bergren# USB Ethernet
2116e5dbfb2SBrandon Bergrendevice		aue		# ADMtek USB Ethernet
2126e5dbfb2SBrandon Bergrendevice		axe		# ASIX Electronics USB Ethernet
2136e5dbfb2SBrandon Bergrendevice		cdce		# Generic USB over Ethernet
2146e5dbfb2SBrandon Bergrendevice		cue		# CATC USB Ethernet
2156e5dbfb2SBrandon Bergrendevice		kue		# Kawasaki LSI USB Ethernet
2166e5dbfb2SBrandon Bergren
2176e5dbfb2SBrandon Bergren# Wireless NIC cards
2186e5dbfb2SBrandon Bergrenoptions 	IEEE80211_SUPPORT_MESH
2196e5dbfb2SBrandon Bergren
2206e5dbfb2SBrandon Bergren# FireWire support
2216e5dbfb2SBrandon Bergrendevice		firewire	# FireWire bus code
2226e5dbfb2SBrandon Bergrendevice		sbp		# SCSI over FireWire (Requires scbus and da)
2236e5dbfb2SBrandon Bergrendevice		fwe		# Ethernet over FireWire (non-standard!)
2246e5dbfb2SBrandon Bergren
2256e5dbfb2SBrandon Bergren# Misc
2266e5dbfb2SBrandon Bergrendevice		iicbus		# I2C bus code
2276e5dbfb2SBrandon Bergrendevice		iic
2286e5dbfb2SBrandon Bergrendevice		opalflash	# PowerNV embedded flash memory
2296e5dbfb2SBrandon Bergren
2306e5dbfb2SBrandon Bergren# Sound support
2316e5dbfb2SBrandon Bergrendevice		sound		# Generic sound driver (required)
2326e5dbfb2SBrandon Bergrendevice		snd_hda		# Intel High Definition Audio
2336e5dbfb2SBrandon Bergrendevice		snd_uaudio	# USB Audio
2346e5dbfb2SBrandon Bergren
2356e5dbfb2SBrandon Bergren# Netmap provides direct access to TX/RX rings on supported NICs
2366e5dbfb2SBrandon Bergrendevice		netmap		# netmap(4) support
2376e5dbfb2SBrandon Bergren
2386e5dbfb2SBrandon Bergren# evdev interface
2396e5dbfb2SBrandon Bergrenoptions 	EVDEV_SUPPORT		# evdev support in legacy drivers
2406e5dbfb2SBrandon Bergrendevice		evdev			# input event device support
2416e5dbfb2SBrandon Bergrendevice		uinput			# install /dev/uinput cdev
2426e5dbfb2SBrandon Bergren
2436e5dbfb2SBrandon Bergren# VirtIO support
2446e5dbfb2SBrandon Bergrendevice          virtio                  # Generic VirtIO bus (required)
2456e5dbfb2SBrandon Bergrendevice          virtio_pci              # VirtIO PCI device
2466e5dbfb2SBrandon Bergrendevice          vtnet                   # VirtIO Ethernet device
2476e5dbfb2SBrandon Bergrendevice          virtio_blk              # VirtIO Block device
2486e5dbfb2SBrandon Bergrendevice          virtio_scsi             # VirtIO SCSI device
2496e5dbfb2SBrandon Bergrendevice          virtio_balloon          # VirtIO Memory Balloon device
2506e5dbfb2SBrandon Bergren
25167de2db2SVladimir Kondratyev# HID support
25219758786SVladimir Kondratyevoptions 	HID_DEBUG		# enable debug msgs
25367de2db2SVladimir Kondratyevdevice		hid			# Generic HID support
254