mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
91646fe575
Most options in kernel config files use "options<space><tab>OPTION". This allows the option to be commented out without shifting columns. A few options had two tabs, and some had spaces. Make them consistent.
82 lines
1.3 KiB
Plaintext
82 lines
1.3 KiB
Plaintext
#
|
|
# QCA SoC support (32 bit)
|
|
#
|
|
|
|
machine arm armv7
|
|
cpu CPU_CORTEXA
|
|
makeoptions CONF_CFLAGS="-march=armv7a"
|
|
|
|
files "../qualcomm/std.ipq4018"
|
|
|
|
# Serial (COM) ports
|
|
device uart
|
|
device uart_msm # Qualcomm MSM UART driver
|
|
|
|
# pseudo devices
|
|
device clk
|
|
device phy
|
|
device hwreset
|
|
device nvmem
|
|
device regulator
|
|
device syscon
|
|
|
|
# Random
|
|
device qcom_rnd
|
|
|
|
# SPI
|
|
device spibus
|
|
device qcom_qup_spi
|
|
device mx25l
|
|
|
|
# interrupt controller
|
|
device gic
|
|
|
|
# cpu frequency
|
|
device cpufreq
|
|
|
|
# MMC/SD/SDIO Card slot support
|
|
device mmc
|
|
device sdhci
|
|
|
|
# Timers
|
|
device generic_timer
|
|
device mpcore_timer
|
|
|
|
# PSCI - SMC calls, needed for qualcomm SCM
|
|
device psci
|
|
|
|
# Clock/Reset provider
|
|
device qcom_gcc_ipq4018
|
|
|
|
# TLMM (gpio/pinmux)
|
|
device gpio
|
|
device qcom_tlmm_ipq4018
|
|
device fdt_pinctrl
|
|
|
|
# TCSR (core top control and status registers)
|
|
device qcom_tcsr
|
|
|
|
options FDT
|
|
|
|
# Disable CP14 work in DDB as TZ won't let us by default
|
|
options ARM_FORCE_DBG_MONITOR_DISABLE
|
|
|
|
# USB PHY support
|
|
device qcom_ipq4018_hs_usbphy
|
|
device qcom_ipq4018_ss_usbphy
|
|
|
|
# USB support
|
|
device usb
|
|
device xhci
|
|
device dwc3
|
|
device qcom_dwc3
|
|
options USB_HOST_ALIGN=64
|
|
|
|
# Ethernet support
|
|
device mdio
|
|
device mii
|
|
device miibus
|
|
device qcom_mdio_ipq4018
|
|
device etherswitch
|
|
device ar40xx_switch
|