]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/conf/GENERIC
Import lua 5.3.4 to contrib
[FreeBSD/FreeBSD.git] / sys / arm64 / conf / GENERIC
1 #
2 # GENERIC -- Generic kernel configuration file for FreeBSD/arm64
3 #
4 # For more information on this file, please read the config(5) manual page,
5 # and/or the handbook section on 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
21 cpu             ARM64
22 ident           GENERIC
23
24 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
25 makeoptions     WITH_CTF=1              # Run ctfconvert(1) for DTrace support
26
27 options         SCHED_ULE               # ULE scheduler
28 options         PREEMPTION              # Enable kernel thread preemption
29 #options        VIMAGE                  # Subsystem virtualization, e.g. VNET
30 options         INET                    # InterNETworking
31 options         INET6                   # IPv6 communications protocols
32 options         IPSEC                   # IP (v4/v6) security
33 options         IPSEC_SUPPORT           # Allow kldload of ipsec and tcpmd5
34 options         TCP_HHOOK               # hhook(9) framework for TCP
35 options         TCP_OFFLOAD             # TCP offload
36 options         SCTP                    # Stream Control Transmission Protocol
37 options         FFS                     # Berkeley Fast Filesystem
38 options         SOFTUPDATES             # Enable FFS soft updates support
39 options         UFS_ACL                 # Support for access control lists
40 options         UFS_DIRHASH             # Improve performance on big directories
41 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
42 options         QUOTA                   # Enable disk quotas for UFS
43 options         MD_ROOT                 # MD is a potential root device
44 options         NFSCL                   # Network Filesystem Client
45 options         NFSD                    # Network Filesystem Server
46 options         NFSLOCKD                # Network Lock Manager
47 options         NFS_ROOT                # NFS usable as /, requires NFSCL
48 options         MSDOSFS                 # MSDOS Filesystem
49 options         CD9660                  # ISO 9660 Filesystem
50 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
51 options         PSEUDOFS                # Pseudo-filesystem framework
52 options         GEOM_PART_GPT           # GUID Partition Tables.
53 options         GEOM_RAID               # Soft RAID functionality.
54 options         GEOM_LABEL              # Provides labelization
55 options         COMPAT_FREEBSD11        # Compatible with FreeBSD11
56 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
57 options         KTRACE                  # ktrace(1) support
58 options         STACK                   # stack(9) support
59 options         SYSVSHM                 # SYSV-style shared memory
60 options         SYSVMSG                 # SYSV-style message queues
61 options         SYSVSEM                 # SYSV-style semaphores
62 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
63 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
64 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
65 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
66 options         AUDIT                   # Security event auditing
67 options         CAPABILITY_MODE         # Capsicum capability mode
68 options         CAPABILITIES            # Capsicum capabilities
69 options         MAC                     # TrustedBSD MAC Framework
70 options         KDTRACE_FRAME           # Ensure frames are compiled in
71 options         KDTRACE_HOOKS           # Kernel DTrace hooks
72 options         VFP                     # Floating-point support
73 options         RACCT                   # Resource accounting framework
74 options         RACCT_DEFAULT_TO_DISABLED # Set kern.racct.enable=0 by default
75 options         RCTL                    # Resource limits
76 options         SMP
77 options         INTRNG
78
79 # Debugging support.  Always need this:
80 options         KDB                     # Enable kernel debugger support.
81 options         KDB_TRACE               # Print a stack trace for a panic.
82 # For full debugger support use (turn off in stable branch):
83 options         DDB                     # Support DDB.
84 #options        GDB                     # Support remote GDB.
85 options         DEADLKRES               # Enable the deadlock resolver
86 options         INVARIANTS              # Enable calls of extra sanity checking
87 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
88 options         WITNESS                 # Enable checks to detect deadlocks and cycles
89 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
90 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
91
92 # SoC support
93 options         SOC_ALLWINNER_A64
94 options         SOC_ALLWINNER_H5
95 options         SOC_CAVM_THUNDERX
96 options         SOC_HISI_HI6220
97 options         SOC_BRCM_BCM2837
98
99 # Annapurna Alpine drivers
100 device          al_ccu                  # Alpine Cache Coherency Unit
101 device          al_nb_service           # Alpine North Bridge Service
102 device          al_iofic                # I/O Fabric Interrupt Controller
103 device          al_serdes               # Serializer/Deserializer
104 device          al_udma                 # Universal DMA
105
106 # VirtIO support
107 device          virtio
108 device          virtio_pci
109 device          virtio_mmio
110 device          virtio_blk
111 device          vtnet
112
113 # CPU frequency control
114 device          cpufreq
115
116 # Bus drivers
117 device          pci
118 device          al_pci          # Annapurna Alpine PCI-E
119 options         PCI_HP                  # PCI-Express native HotPlug
120 options         PCI_IOV         # PCI SR-IOV support
121
122 # Ethernet NICs
123 device          mdio
124 device          mii
125 device          miibus          # MII bus support
126 device          awg             # Allwinner EMAC Gigabit Ethernet
127 device          axgbe           # AMD Opteron A1100 integrated NIC
128 device          em              # Intel PRO/1000 Gigabit Ethernet Family
129 device          ix              # Intel 10Gb Ethernet Family
130 device          msk             # Marvell/SysKonnect Yukon II Gigabit Ethernet
131 device          neta            # Marvell Armada 370/38x/XP/3700 NIC
132 device          smc             # SMSC LAN91C111
133 device          vnic            # Cavium ThunderX NIC
134 device          al_eth          # Annapurna Alpine Ethernet NIC
135
136 # Block devices
137 device          ahci
138 device          scbus
139 device          da
140
141 # ATA/SCSI peripherals
142 device          pass            # Passthrough device (direct ATA/SCSI access)
143
144 # MMC/SD/SDIO Card slot support
145 device          sdhci
146 device          aw_mmc                  # Allwinner SD/MMC controller
147 device          mmc                     # mmc/sd bus
148 device          mmcsd                   # mmc/sd flash cards
149 device          dwmmc
150
151 # Serial (COM) ports
152 device          uart            # Generic UART driver
153 device          uart_mvebu      # Armada 3700 UART driver
154 device          uart_ns8250     # ns8250-type UART driver
155 device          uart_snps
156 device          pl011
157
158 # USB support
159 options         USB_DEBUG               # enable debug msgs
160 device          aw_ehci                 # Allwinner EHCI USB interface (USB 2.0)
161 device          aw_usbphy               # Allwinner USB PHY
162 device          dwcotg                  # DWC OTG controller
163 device          ohci                    # OHCI USB interface
164 device          ehci                    # EHCI USB interface (USB 2.0)
165 device          ehci_mv                 # Marvell EHCI USB interface
166 device          xhci                    # XHCI PCI->USB interface (USB 3.0)
167 device          xhci_mv                 # Marvell XHCI USB interface
168 device          usb                     # USB Bus (required)
169 device          ukbd                    # Keyboard
170 device          umass                   # Disks/Mass storage - Requires scbus and da
171
172 # USB ethernet support
173 device          smcphy
174 device          smsc
175
176 # GPIO
177 device          aw_gpio         # Allwinner GPIO controller
178 device          gpio
179 device          gpioled
180 device          fdt_pinctrl
181
182 # I2C
183 device          aw_rsb          # Allwinner Reduced Serial Bus
184 device          bcm2835_bsc     # Broadcom BCM283x I2C bus
185 device          iicbus
186 device          iic
187 device          twsi            # Allwinner I2C controller
188
189 # Clock and reset controllers
190 device          aw_ccu          # Allwinner clock controller
191
192 # Interrupt controllers
193 device          aw_nmi          # Allwinner NMI support
194
195 # Real-time clock support
196 device          aw_rtc          # Allwinner Real-time Clock
197 device          mv_rtc          # Marvell Real-time Clock
198
199 # Watchdog controllers
200 device          aw_wdog         # Allwinner Watchdog
201
202 # Power management controllers
203 device          axp81x          # X-Powers AXP81x PMIC
204
205 # EFUSE
206 device          aw_sid          # Allwinner Secure ID EFUSE
207
208 # Thermal sensors
209 device          aw_thermal      # Allwinner Thermal Sensor Controller
210
211 # SPI
212 device          spibus
213 device          bcm2835_spi     # Broadcom BCM283x SPI bus
214
215 # Console
216 device          vt
217 device          kbdmux
218
219 # Pseudo devices.
220 device          loop            # Network loopback
221 device          random          # Entropy device
222 device          ether           # Ethernet support
223 device          vlan            # 802.1Q VLAN support
224 device          tun             # Packet tunnel.
225 device          md              # Memory "disks"
226 device          gif             # IPv6 and IPv4 tunneling
227 device          firmware        # firmware assist module
228 device          psci            # Support for ARM PSCI
229 options         EFIRT           # EFI Runtime Services
230
231 # EXT_RESOURCES pseudo devices
232 options         EXT_RESOURCES
233 device          clk
234 device          phy
235 device          hwreset
236 device          regulator
237
238 # The `bpf' device enables the Berkeley Packet Filter.
239 # Be aware of the administrative consequences of enabling this!
240 # Note that 'bpf' is required for DHCP.
241 device          bpf             # Berkeley packet filter
242
243 # Chip-specific errata
244 options         THUNDERX_PASS_1_1_ERRATA
245
246 options         FDT
247 device          acpi
248
249 # The crypto framework is required by IPSEC
250 device          crypto                  # Required by IPSEC