xref: /freebsd/sys/powerpc/conf/GENERIC64 (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
3#
4# For more information on this file, please read the handbook section on
5# Kernel Configuration Files:
6#
7#    https://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (https://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
19# $FreeBSD$
20
21cpu		AIM
22ident		GENERIC
23
24machine 	powerpc	powerpc64
25
26makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
27makeoptions	WITH_CTF=1
28
29# Platform support
30options 	POWERMAC		#NewWorld Apple PowerMacs
31options 	PS3			#Sony Playstation 3
32options 	MAMBO			#IBM Mambo Full System Simulator
33options		QEMU			#QEMU processor emulator
34options 	PSERIES			#PAPR-compliant systems (e.g. IBM p)
35options 	POWERNV			#Non-virtualized OpenPOWER systems
36
37options		FDT			#Flattened Device Tree
38options 	SCHED_ULE		#ULE scheduler
39options 	NUMA			#Non-Uniform Memory Architecture support
40options 	PREEMPTION		#Enable kernel thread preemption
41options 	VIMAGE			# Subsystem virtualization, e.g. VNET
42options 	INET			#InterNETworking
43options 	INET6			#IPv6 communications protocols
44options 	IPSEC_SUPPORT		# Allow kldload of ipsec and tcpmd5
45options		ROUTE_MPATH		# Multipath routing support
46options 	TCP_OFFLOAD		# TCP offload
47options 	TCP_BLACKBOX		# Enhanced TCP event logging
48options 	TCP_HHOOK		# hhook(9) framework for TCP
49options 	TCP_RFC7413		# TCP Fast Open
50options 	SCTP_SUPPORT		# Allow kldload of SCTP
51options 	FFS			#Berkeley Fast Filesystem
52options 	SOFTUPDATES		#Enable FFS soft updates support
53options 	UFS_ACL			#Support for access control lists
54options 	UFS_DIRHASH		#Improve performance on big directories
55options 	UFS_GJOURNAL		#Enable gjournal-based UFS journaling
56options 	QUOTA			#Enable disk quotas for UFS
57options 	MD_ROOT			#MD is a potential root device
58options 	MD_ROOT_MEM		#Enable use of initrd as MD root
59options 	NFSCL			#Network Filesystem Client
60options 	NFSD			#Network Filesystem Server
61options 	NFSLOCKD		#Network Lock Manager
62options 	NFS_ROOT		#NFS usable as root device
63options 	MSDOSFS			#MSDOS Filesystem
64options 	CD9660			#ISO 9660 Filesystem
65options 	PROCFS			#Process filesystem (requires PSEUDOFS)
66options 	PSEUDOFS		#Pseudo-filesystem framework
67options 	TMPFS			#Efficient memory filesystem
68options 	GEOM_PART_APM		#Apple Partition Maps.
69options 	GEOM_PART_GPT		#GUID Partition Tables.
70options 	GEOM_LABEL		#Provides labelization
71options 	COMPAT_FREEBSD32	#Compatible with FreeBSD/powerpc binaries
72options 	COMPAT_FREEBSD5		#Compatible with FreeBSD5
73options 	COMPAT_FREEBSD6		#Compatible with FreeBSD6
74options 	COMPAT_FREEBSD7		#Compatible with FreeBSD7
75options 	COMPAT_FREEBSD9		# Compatible with FreeBSD9
76options 	COMPAT_FREEBSD10	# Compatible with FreeBSD10
77options 	COMPAT_FREEBSD11	# Compatible with FreeBSD11
78options 	COMPAT_FREEBSD12	# Compatible with FreeBSD12
79options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
80options 	KTRACE			#ktrace(1) syscall trace support
81options 	STACK			#stack(9) support
82options 	SYSVSHM			#SYSV-style shared memory
83options 	SYSVMSG			#SYSV-style message queues
84options 	SYSVSEM			#SYSV-style semaphores
85options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
86options		PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
87options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
88options 	AUDIT			# Security event auditing
89options 	CAPABILITY_MODE		# Capsicum capability mode
90options 	CAPABILITIES		# Capsicum capabilities
91options 	MAC			# TrustedBSD MAC Framework
92options 	KDTRACE_HOOKS		# Kernel DTrace hooks
93options 	DDB_CTF			# Kernel ELF linker loads CTF data
94options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
95options 	RACCT			# Resource accounting framework
96options 	RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
97options 	RCTL			# Resource limits
98
99# Debugging support.  Always need this:
100options 	KDB			# Enable kernel debugger support.
101options 	KDB_TRACE		# Print a stack trace for a panic.
102# For full debugger support use (turn off in stable branch):
103options 	DDB			#Support DDB
104#options 	DEADLKRES		#Enable the deadlock resolver
105options 	INVARIANTS		#Enable calls of extra sanity checking
106options 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
107options 	WITNESS			#Enable checks to detect deadlocks and cycles
108options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
109options 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
110options 	VERBOSE_SYSINIT=0	# Support debug.verbose_sysinit, off by default
111
112# Kernel dump features.
113options 	EKCD			# Support for encrypted kernel dumps
114options 	GZIO			# gzip-compressed kernel and user dumps
115options 	ZSTDIO			# zstd-compressed kernel and user dumps
116options 	DEBUGNET		# debugnet networking
117options 	NETDUMP			# netdump(4) client support
118
119# Make an SMP-capable kernel by default
120options 	SMP			# Symmetric MultiProcessor Kernel
121
122# CPU frequency control
123device		cpufreq
124
125# Standard busses
126device		pci
127options 	PCI_HP			# PCI-Express native HotPlug
128device		agp
129
130# ATA controllers
131device		ahci		# AHCI-compatible SATA controllers
132device		ata		# Legacy ATA/SATA controllers
133device		mvs		# Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
134device		siis		# SiliconImage SiI3124/SiI3132/SiI3531 SATA
135
136# NVM Express (NVMe) support
137device		nvme		# base NVMe driver
138options		NVME_USE_NVD=0	# prefer the cam(4) based nda(4) driver
139device		nvd		# expose NVMe namespaces as disks, depends on nvme
140
141# SCSI Controllers
142device		aacraid		# Adaptec by PMC RAID
143device		ahc		# AHA2940 and onboard AIC7xxx devices
144options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
145device		isp		# Qlogic family
146device		ispfw		# Firmware module for Qlogic host adapters
147device		mpt		# LSI-Logic MPT-Fusion
148device		mps		# LSI-Logic MPT-Fusion 2
149device		sym		# NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
150
151# ATA/SCSI peripherals
152device		scbus		# SCSI bus (required for ATA/SCSI)
153device		ch		# SCSI media changers
154device		da		# Direct Access (disks)
155device		sa		# Sequential Access (tape etc)
156device		cd		# CD
157device		pass		# Passthrough device (direct ATA/SCSI access)
158device		ses		# Enclosure Service (SES and SAF-TE)
159
160# vt is the default console driver, resembling an SCO console
161device		vt		# Core console driver
162device		kbdmux
163
164# Serial (COM) ports
165device		scc
166device		uart
167device		uart_z8530
168
169device		iflib
170
171# Ethernet hardware
172device		em		# Intel PRO/1000 Gigabit Ethernet Family
173device		ix		# Intel PRO/10GbE PCIE PF Ethernet Family
174device		ixl		# Intel 700 Series Physical Function
175device		ixv		# Intel PRO/10GbE PCIE VF Ethernet Family
176device		glc		# Sony Playstation 3 Ethernet
177device		llan		# IBM pSeries Virtual Ethernet
178device		cxgbe		# Chelsio 10/25G NIC
179
180# PCI Ethernet NICs that use the common MII bus controller code.
181device		miibus		# MII bus support
182device		bge		# Broadcom BCM570xx Gigabit Ethernet
183device		gem		# Sun GEM/Sun ERI/Apple GMAC
184device		dc		# DEC/Intel 21143 and various workalikes
185device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
186device		re		# RealTek 8139C+/8169/8169S/8110S
187device		rl		# RealTek 8129/8139
188
189# Pseudo devices.
190device		crypto		# core crypto support
191device		loop		# Network loopback
192device		ether		# Ethernet support
193device		vlan		# 802.1Q VLAN support
194device		tuntap		# Packet tunnel.
195device		md		# Memory "disks"
196device		ofwd		# Open Firmware disks
197device		gif		# IPv6 and IPv4 tunneling
198device		firmware	# firmware assist module
199
200# The `bpf' device enables the Berkeley Packet Filter.
201# Be aware of the administrative consequences of enabling this!
202# Note that 'bpf' is required for DHCP.
203device		bpf		#Berkeley packet filter
204
205# USB support
206options 	USB_DEBUG	# enable debug msgs
207device		uhci		# UHCI PCI->USB interface
208device		ohci		# OHCI PCI->USB interface
209device		ehci		# EHCI PCI->USB interface
210device		xhci		# XHCI PCI->USB interface
211device		usb		# USB Bus (required)
212device		uhid		# "Human Interface Devices"
213device		ukbd		# Keyboard
214options 	KBD_INSTALL_CDEV # install a CDEV entry in /dev
215device		umass		# Disks/Mass storage - Requires scbus and da0
216device		ums		# Mouse
217# USB Ethernet
218device		aue		# ADMtek USB Ethernet
219device		axe		# ASIX Electronics USB Ethernet
220device		cdce		# Generic USB over Ethernet
221device		cue		# CATC USB Ethernet
222device		kue		# Kawasaki LSI USB Ethernet
223
224# Wireless NIC cards
225options 	IEEE80211_SUPPORT_MESH
226
227# FireWire support
228device		firewire	# FireWire bus code
229device		sbp		# SCSI over FireWire (Requires scbus and da)
230device		fwe		# Ethernet over FireWire (non-standard!)
231
232# Misc
233device		iicbus		# I2C bus code
234device		iic
235device		kiic		# Keywest I2C
236device		ad7417		# PowerMac7,2 temperature sensor
237device		ds1631		# PowerMac11,2 temperature sensor
238device		ds1775		# PowerMac7,2 temperature sensor
239device		fcu		# Apple Fan Control Unit
240device		max6690		# PowerMac7,2 temperature sensor
241device		powermac_nvram	# Open Firmware configuration NVRAM
242device		smu		# Apple System Management Unit
243device		atibl		# ATI-based backlight driver for PowerBooks/iBooks
244device		nvbl		# nVidia-based backlight driver for PowerBooks/iBooks
245device		opalflash	# PowerNV embedded flash memory
246
247# ADB support
248device		adb
249device		pmu
250
251# Sound support
252device		sound		# Generic sound driver (required)
253device		snd_ai2s	# Apple I2S audio
254device		snd_hda		# Intel High Definition Audio
255device		snd_uaudio	# USB Audio
256
257# Netmap provides direct access to TX/RX rings on supported NICs
258device		netmap		# netmap(4) support
259
260# evdev interface
261options 	EVDEV_SUPPORT		# evdev support in legacy drivers
262device		evdev			# input event device support
263device		uinput			# install /dev/uinput cdev
264
265# VirtIO support
266device          virtio                  # Generic VirtIO bus (required)
267device          virtio_pci              # VirtIO PCI device
268device          vtnet                   # VirtIO Ethernet device
269device          virtio_blk              # VirtIO Block device
270device          virtio_scsi             # VirtIO SCSI device
271device          virtio_balloon          # VirtIO Memory Balloon device
272
273# HID support
274options 	HID_DEBUG		# enable debug msgs
275device		hid			# Generic HID support
276