Home | History | Annotate | Line # | Download | only in conf
GENERIC64 revision 1.206.2.6
      1 #
      2 #	$NetBSD: GENERIC64,v 1.206.2.6 2025/08/08 14:21:39 martin Exp $
      3 #
      4 #	GENERIC ARM (aarch64) kernel
      5 #
      6 
      7 include	"arch/evbarm/conf/std.generic64"
      8 include "arch/evbarm/conf/files.generic64"
      9 include	"arch/evbarm/conf/GENERIC.common"
     10 
     11 maxusers	64
     12 
     13 options 	CPU_CORTEX
     14 options 	CPU_THUNDERX
     15 options 	SOC_APPLE
     16 options 	SOC_BCM2837
     17 options 	SOC_MESONG12
     18 options 	SOC_MESONGXBB
     19 options 	SOC_MESONGXL
     20 options 	SOC_RK3328
     21 options 	SOC_RK3399
     22 options 	SOC_RK3588
     23 options 	SOC_SUN50I_A64
     24 options 	SOC_SUN50I_H5
     25 options 	SOC_SUN50I_H6
     26 options 	SOC_TEGRA210
     27 options 	MULTIPROCESSOR
     28 
     29 pseudo-device 	openfirm	# /dev/openfirm
     30 
     31 #options 	DIAGNOSTIC	# internal consistency checks
     32 #options 	DEBUG
     33 #options 	LOCKDEBUG
     34 #options 	VERBOSE_INIT_ARM # verbose bootstrapping messages
     35 options 	INCLUDE_CONFIG_FILE
     36 #options 	UVMHIST		# kernhist for uvm/pmap subsystems
     37 #options 	UVMHIST_PRINT,KERNHIST_DELAY=0
     38 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     39 
     40 # EARLYCONS is required for early init messages from VERBOSE_INIT_ARM.
     41 #options 	EARLYCONS=bcm2837, CONSADDR=0x3f215040
     42 #options 	EARLYCONS=bcm2711, CONSADDR=0xfe215040
     43 #options 	EARLYCONS=meson, CONSADDR=0xc81004c0
     44 #options 	EARLYCONS=rk3328, CONSADDR=0xff130000
     45 #options 	EARLYCONS=rk3399, CONSADDR=0xff1a0000
     46 #options 	EARLYCONS=rk3588, CONSADDR=0xfeb50000
     47 #options 	EARLYCONS=sunxi, CONSADDR=0x01c28000
     48 #options 	EARLYCONS=tegra, CONSADDR=0x70006000
     49 #options 	EARLYCONS=thunderx, CONSADDR=0x87e024000000
     50 #options 	EARLYCONS=virt, CONSADDR=0x09000000
     51 
     52 # Hardware management of the Access flag and dirty state (HAFDBS).
     53 options 	ARMV81_HAFDBS
     54 
     55 # Privileged Access Never (PAN).
     56 options 	ARMV81_PAN
     57 
     58 # Pointer Authentication (PAC).
     59 #makeoptions 	ARMV83_PAC=1
     60 #options 	ARMV83_PAC
     61 
     62 # Branch Target Identification (BTI).
     63 #makeoptions 	ARMV85_BTI=1
     64 #options 	ARMV85_BTI
     65 
     66 # Kernel Undefined Behavior Sanitizer (kUBSan). Use UBSAN_ALWAYS_FATAL
     67 # if you want panics instead of warnings.
     68 #options 	KUBSAN			# mandatory
     69 #options 	UBSAN_ALWAYS_FATAL	# optional
     70 
     71 # Kernel Address Sanitizer (kASan). The quarantine is optional and can
     72 # help KASAN find more use-after-frees. Use KASAN_PANIC if you want panics
     73 # instead of warnings.
     74 #makeoptions 	KASAN=1		# mandatory
     75 #options 	KASAN		# mandatory
     76 #options 	POOL_QUARANTINE	# optional
     77 #options 	KASAN_PANIC	# optional
     78 
     79 # These options enable verbose messages for several subsystems.
     80 # Warning, these may compile large string tables into the kernel!
     81 #options 	ACPIVERBOSE	# verbose ACPI configuration messages
     82 #options 	MIIVERBOSE	# verbose PHY autoconfig messages
     83 #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
     84 #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
     85 #options 	SCSIVERBOSE	# human readable SCSI error messages
     86 #options 	USBVERBOSE	# verbose USB device autoconfig messages
     87 
     88 makeoptions	DEBUG="-g"	# compile full symbol table
     89 makeoptions	COPY_SYMTAB=1
     90 
     91 config		netbsd		root on ? type ?
     92 
     93 #options 	COMPAT_NETBSD32	# already defined in GENERIC.common (there
     94 options 	EXEC_ELF32	# for a.out, but here we need it for elf32)
     95 
     96 #options 	COMPAT_LINUX	# binary compatibility with Linux
     97 #options 	COMPAT_LINUX32	# binary compatibility with Linux 32-bit
     98 #options 	COMPAT_50	# COMPAT_LINUX depends on
     99 #options 	COMPAT_OSSAUDIO # binary compatibility with Linux
    100 
    101 # EFI runtime support
    102 options 	EFI_RUNTIME
    103 pseudo-device	efi		# /dev/efi
    104 
    105 # Device tree support
    106 armfdt0 	at root
    107 simplebus*	at fdt? pass 0
    108 
    109 # ACPI support
    110 acpifdt*	at fdt? pass 1
    111 acpi*		at acpifdt?
    112 acpiacad*	at acpi?
    113 acpibat*	at acpi?
    114 acpibut*	at acpi?
    115 acpicppc*	at acpi?
    116 acpipcd*	at acpi?
    117 acpipcc*	at acpi?
    118 acpifan*	at acpi?
    119 acpiged*	at acpi?
    120 acpilid*	at acpi?
    121 acpitz* 	at acpi?
    122 acpivmgenid*	at acpi?
    123 
    124 # CPUs
    125 cpus*		at fdt? pass 0
    126 cpu*		at fdt? pass 0
    127 cpu*		at acpi?
    128 
    129 vmt*		at fdt?			# VMware Tools
    130 
    131 # Performance monitors
    132 armpmu* 	at fdt?
    133 pseudo-device	tprof
    134 
    135 # CPU frequency scaling
    136 cpufreqdt*	at cpu?
    137 
    138 # Power State Coordination Interface (PSCI)
    139 psci*		at fdt? pass 0
    140 
    141 fclock* 	at fdt? pass 1
    142 ffclock*	at fdt? pass 1
    143 fregulator*	at fdt? pass 4
    144 gregulator*	at fdt? pass 4
    145 pregulator*	at fdt? pass 4
    146 gpiokeys*	at fdt?
    147 wskbd*		at gpiokeys? console ? mux 1
    148 gpioleds*	at fdt?
    149 
    150 # System Controller
    151 syscon* 	at fdt? pass 1		# Generic System Controller
    152 sunxisramc*	at fdt? pass 1		# Allwinner System Control
    153 
    154 # Timer
    155 gtmr*		at fdt? pass 2		# ARM Generic Timer
    156 gtmr*		at acpi?
    157 armgtmr0	at gtmr?
    158 tegratimer*	at fdt?			# Timers
    159 
    160 # Watchdog
    161 applewdog*	at fdt?			# Apple watchdog
    162 bcmpmwdog*	at fdt?			# Broadcom BCM283x watchdog
    163 dwcwdt* 	at fdt?			# DesignWare watchdog
    164 mesongxwdt*	at fdt?			# Amlogic Meson GX watchdog
    165 sbsawdt*	at acpi?		# ARM SBSA-compliant watchdog
    166 sunxiwdt*	at fdt?			# Allwinner watchdog
    167 
    168 # Interrupt controller
    169 appleintc*	at fdt? pass 1		# Apple AIC
    170 bcmicu* 	at fdt? pass 1		# Broadcom BCM283x ICU
    171 tegralic*	at fdt? pass 1		# NVIDIA Tegra LIC
    172 gic*		at fdt? pass 1		# ARM GICv2
    173 gic*		at acpi?
    174 armgic0 	at gic?
    175 gicvthree*	at fdt? pass 1		# ARM GICv3
    176 gicvthree*	at acpi?
    177 imx7gpc*	at fdt? pass 2		# IMX GPCv2
    178 sunxinmi*	at fdt? pass 2		# Allwinner NMI / R_INTC
    179 
    180 # IOMMU
    181 appledart*	at fdt? pass 3		# Apple DART
    182 
    183 # Memory controller
    184 tegramc*	at fdt?	pass 4		# NVIDIA Tegra MC
    185 
    186 # Firmware devices
    187 applesmc*	at fdt? pass 3		# Apple RTKIT based SMC
    188 bcmmbox*	at fdt?			# Broadcom VideoCore IV mailbox
    189 bcmmbox*	at acpi?
    190 vcmbox* 	at bcmmbox?
    191 qemufwcfg*	at fdt?			# QEMU Firmware Configuration device
    192 qemufwcfg*	at acpi?
    193 
    194 # DMA controller
    195 bcmdmac*	at fdt?			# Broadcom BCM283x DMA controller
    196 sun6idma*	at fdt?	pass 4		# Allwinner DMA controller (sun6i)
    197 tegraapbdma*	at fdt? pass 4		# NVIDIA Tegra APB DMA
    198 
    199 # FUSE controller
    200 sunxisid*	at fdt? pass 4		# Allwinner SID
    201 tegrafuse*	at fdt? pass 4		# NVIDIA Tegra FUSE
    202 
    203 # Power management controller
    204 tegrapmc*	at fdt? pass 4		# NVIDIA Tegra PMC
    205 
    206 # Mailbox controller
    207 applembox*	at fdt? pass 2		# Apple Mailbox
    208 
    209 # Clock and Reset controller
    210 bcmcprman*	at fdt? pass 1		# Broadcom BCM283x Clock Manager
    211 bcmaux* 	at fdt? pass 1		# Broadcom BCM283x Aux Periph Clocks
    212 g12aoclkc*	at fdt? pass 2		# Amlogic Meson G12 AO clock controller
    213 g12clkc*	at fdt? pass 2		# Amlogic Meson G12 EE clock controller
    214 gxbbaoclkc*	at fdt? pass 2		# Amlogic Meson GXBB AO clock controller
    215 gxbbclkc*	at fdt? pass 2		# Amlogic Meson GXBB/GXL EE clock controller
    216 imx8mqccm*	at fdt? pass 2		# NXP iMX8MQ CCM
    217 mesonresets*	at fdt? pass 2		# Amlogic Meson misc. clock resets
    218 rkcru*		at fdt? pass 2		# Rockchip RK3328 CRU
    219 sun8ih3ccu*	at fdt? pass 2		# Allwinner H3/H5 CCU
    220 sun8ih3rccu*	at fdt? pass 2		# Allwinner H3/H5 CCU (PRCM)
    221 sun50ia64ccu*	at fdt? pass 2		# Allwinner A64 CCU
    222 sun50ia64rccu*	at fdt? pass 2		# Allwinner A64 CCU (PRCM)
    223 sun50ih6ccu*	at fdt? pass 2		# Allwinner H6 CCU
    224 sun50ih6rccu*	at fdt? pass 2		# Allwinner H6 CCU (PRCM)
    225 sunxide2ccu*	at fdt? pass 3		# Allwinner DE2 clock controller
    226 sunxiresets*	at fdt? pass 1		# Allwinner misc. resets
    227 sunxigates*	at fdt? pass 1		# Allwinner misc. gates
    228 sunxigmacclk*	at fdt? pass 2		# Allwinner GMAC MII/RGMII clock mux
    229 tegra210car*	at fdt? pass 3		# NVIDIA Tegra CAR (T210)
    230 
    231 # GPIO controller
    232 applepinctrl*	at fdt?			# Apple GPIO
    233 bcmgpio*	at fdt? pass 3		# Broadcom BCM283x GPIO
    234 imxgpio*	at fdt? pass 3		# IMX GPIO
    235 mesonpinctrl*	at fdt? pass 2		# Amlogic Meson GPIO
    236 plgpio* 	at fdt?			# ARM PrimeCell PL061 GPIO
    237 plgpio* 	at acpi?
    238 sunxigpio*	at fdt? pass 3		# Allwinner GPIO
    239 tegragpio*	at fdt? pass 2		# NVIDIA Tegra GPIO
    240 rkgpio* 	at rkiomux?		# Rockchip GPIO
    241 gpio*		at gpiobus?
    242 
    243 # PWM controller
    244 mesonpwm*	at fdt? pass 3		# Amlogic PWM
    245 rkpwm*		at fdt? pass 3		# Rockchip PWM
    246 sunxipwm*	at fdt? pass 3		# Allwinner PWM
    247 
    248 # MPIO / Pinmux
    249 imxiomux*	at fdt? pass 2		# IMX IOMUX
    250 rkiomux*	at fdt?	pass 3		# Rockchip IOMUX
    251 tegrapinmux*	at fdt?			# NVIDIA Tegra MPIO
    252 
    253 # XUSB PADCTL
    254 tegra210xpad*	at fdt?			# NVIDIA Tegra XUSB PADCTL (T210)
    255 tegra210xphy*	at tegra210xpad?
    256 
    257 # PCIE
    258 applepcie*	at fdt?			# Apple PCIe
    259 pcihost*	at fdt?			# Generic PCI host controller
    260 acpipchb*	at acpi?		# ACPI PCIe host bridge
    261 rkpcie* 	at fdt?			# Rockchip AXI PCIE
    262 rkpciephy*	at fdt? pass 9		# Rockchip AXI PCIE PHY
    263 tegrapcie0	at fdt?			# NVIDIA Tegra PCIE
    264 pci*		at pcibus?
    265 ppb*		at pci? dev ? function ?
    266 pci*		at ppb?
    267 
    268 # Ethernet
    269 awge*		at fdt?				# DesignWare Gigabit Ethernet
    270 emac*		at fdt?				# Allwinner Gigabit Ethernet (EMAC)
    271 enet*		at fdt?				# IMX FEC
    272 eqos*		at acpi?			# DesignWare Ethernet QoS
    273 eqos*		at fdt?
    274 genet*		at acpi?			# Broadcom GENET v5
    275 genet*		at fdt?
    276 #scx*		at acpi?			# Socionext Gigabit Ethernet
    277 #scx*		at fdt?
    278 aq*		at pci? dev ? function ?	# Aquantia AQC 10 gigabit
    279 bge*		at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    280 ena*		at pci? dev ? function ?	# Amazon.com Elastic Network Adapter
    281 igc*		at pci? dev ? function ?	# Intel 22x 2.5 gigabit
    282 ixg* 		at pci? dev ? function ?	# Intel 8259x 10 gigabit
    283 ixl* 		at pci? dev ? function ?	# Intel Ethernet 700 series
    284 ixv* 		at pci? dev ? function ?	# Intel 8259x 10G virtual function
    285 mcx*		at pci? dev ? function ?	# Mellanox 5th generation Ethernet
    286 mskc*		at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
    287 msk*		at mskc?
    288 re*		at pci? dev ? function ?	# Realtek RTL8111GS
    289 rge*		at pci? dev ? function ?	# Realtek 8125
    290 vmx*		at pci? dev ? function ?	# VMware VMXNET3
    291 wm*		at pci? dev ? function ?	# Intel Gigabit Ethernet
    292 
    293 # MII/PHY support
    294 atphy*		at mii? phy ?		# Attansic/Atheros PHYs
    295 brgphy* 	at mii? phy ?		# Broadcom BCM5400-family PHYs
    296 exphy* 		at mii? phy ?		# 3Com internal PHYs
    297 gentbi* 	at mii? phy ?		# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    298 glxtphy*	at mii? phy ?		# Level One LXT-1000 PHYs
    299 gphyter* 	at mii? phy ?		# NS83861 Gig-E PHY
    300 gxlphy* 	at mii? phy ?		# Amlogic Meson GX internal PHY
    301 icsphy* 	at mii? phy ?		# Integrated Circuit Systems ICS189x
    302 igphy*		at mii? phy ?		# Intel IGP01E1000
    303 ihphy*		at mii? phy ?		# Intel 82577 PHYs
    304 ikphy*		at mii? phy ?		# Intel 82563 PHYs
    305 inphy*		at mii? phy ?		# Intel 82555 PHYs
    306 iophy*		at mii? phy ?		# Intel 82553 PHYs
    307 lxtphy* 	at mii? phy ?		# Level One LXT-970 PHYs
    308 makphy* 	at mii? phy ?		# Marvell Semiconductor 88E1000 PHYs
    309 mcommphy*	at mii? phy ?		# Motorcomm YT8511C/YT8511H PHYs
    310 nsphy*		at mii? phy ?		# NS83840 PHYs
    311 nsphyter*	at mii? phy ? 		# NS83843 PHYs
    312 pnaphy* 	at mii? phy ?		# generic HomePNA PHYs
    313 rdcphy* 	at mii? phy ?		# RDC R6040 10/100 PHY
    314 rgephy* 	at mii? phy ?		# Realtek 8169S/8110S internal PHYs
    315 rlphy*		at mii? phy ?		# Realtek 8139/8201L PHYs
    316 smscphy*	at mii? phy ?		# SMSC LAN87xx PHYs
    317 sqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
    318 tlphy*		at mii? phy ?		# ThunderLAN PHYs
    319 tqphy*		at mii? phy ?		# TDK Semiconductor PHYs
    320 urlphy* 	at mii? phy ?		# Realtek RTL8150L internal PHYs
    321 ukphy*		at mii? phy ?		# generic unknown PHYs
    322 
    323 # Mini-PCIe Wireless
    324 #options 	ATHHAL_AR5212,ATHHAL_RF2425	# AR5BHB63
    325 #ath*		at pci? dev ? function ?	# Atheros IEEE 802.11
    326 #athn*		at pci? dev ? function ?	# Atheros IEEE 802.11
    327 
    328 # UART
    329 com*		at fdt?	pass 4			# UART
    330 com*		at acpi?
    331 exuart*		at fdt? pass 4			# SSCOM UART
    332 imxuart*	at fdt? pass 4			# IMX UART
    333 options 	IMXUARTCONSOLE
    334 mesonuart*	at fdt? pass 4			# Amlogic Meson UART
    335 plcom*		at fdt?	pass 4			# ARM PL011 UART
    336 plcom*		at acpi?
    337 puc*		at pci? dev ? function ?	# PCI "universal" comm. cards
    338 com*		at puc? port ?
    339 
    340 # I2C controllers
    341 options 	I2C_MAX_ADDR=0xfff
    342 appleiic*	at fdt?			# Apple I2C
    343 bsciic* 	at fdt?			# Broadcom BCM283x Serial Control
    344 bsciic* 	at acpi?
    345 dwiic*		at fdt?			# Designware I2C
    346 dwiic*		at acpi?
    347 imxi2c* 	at fdt? pass 4		# IMX I2C
    348 nxpiic* 	at acpi?		# NXP Layerscape I2C
    349 rkiic*		at fdt? pass 4		# Rockchip I2C
    350 sunxirsb*	at fdt?	pass 4		# Allwinner RSB
    351 sunxitwi*	at fdt?			# Allwinner TWI
    352 tegrai2c*	at fdt? pass 4		# NVIDIA Tegra I2C
    353 #sniiic*	at fdt?			# Socionext SC2A11 I2C
    354 #sniiic*	at acpi?
    355 iicmux* 	at fdt? pass 5		# I2C mux virtual controllers
    356 iic*		at i2cbus?
    357 
    358 # I2C devices
    359 titemp* 	at iic?
    360 seeprom*	at iic?
    361 spdmem* 	at iic?			# memory module SPD EEPROM decoder
    362 as3722pmic*	at iic?
    363 as3722reg*	at as3722pmic?
    364 axppmic*	at iic?			# X-Powers AXP Power Management IC
    365 axpreg* 	at axppmic?
    366 cwfg*		at iic?			# CellWise CW2015 Fuel Gauge IC
    367 dsrtc*		at iic?			# Dallas Semiconductor RTCs
    368 es8316ac*	at iic?			# Everest Semi ES8316 Audio CODEC
    369 fan53555reg*	at iic?			# FAN53555 / SY82x regulator
    370 max77620pmic*	at iic?
    371 pcaiicmux*	at iic?			# PCA954x / PCA984x I2C switch / mux
    372 pcf8563rtc*	at iic?			# PCF8563 RTC
    373 rkpmic* 	at iic?			# Rockchip Power Management IC
    374 rkreg*		at rkpmic?
    375 tcagpio*	at iic?
    376 
    377 # Power Domain controllers
    378 applepmgr* 	at fdt? pass 0
    379 
    380 # Random number generators and security devices
    381 amdccp* 	at fdt?			# AMD Cryptograhic Coprocessor RNG
    382 amdccp* 	at acpi?
    383 bcmrng* 	at fdt?			# Broadcom BCM283x RNG
    384 mesonrng*	at fdt?			# Amlogic Meson RNG
    385 rkv1crypto* 	at fdt?			# Rockchip Crypto v1
    386 sun8icrypto* 	at fdt?			# Allwinner Crypto Engine
    387 tpm*		at acpi?		# Trusted Platform Module
    388 
    389 # RTC
    390 plrtc*		at fdt?			# ARM PrimeCell RTC
    391 sunxirtc*	at fdt? pass 4		# Allwinner RTC
    392 tegrartc*	at fdt?			# NVIDIA Tegra RTC
    393 
    394 # SDMMC
    395 bcmsdhost*	at fdt?			# Broadcom BCM283x SD Host Interface
    396 dwcmmc*		at acpi?		# DesignWare SD/MMC
    397 dwcmmc* 	at fdt?
    398 mesongxmmc*	at fdt?			# Amlogic Meson GX eMMC/SD/SDIO controller
    399 mmcpwrseq*	at fdt? pass 5		# Simple MMC power sequence provider
    400 rkemmcphy*	at fdt?			# Rockchip eMMC PHY
    401 sdhc*		at fdt?			# SD Host Controller Interface
    402 sdhc*		at acpi?
    403 sunximmc*	at fdt?			# Allwinner SD/MMC
    404 #sniemmc*	at fdt?			# Socionext SC2A11 eMMC
    405 #sniemmc*	at acpi?
    406 sdmmc*		at sdmmcbus?
    407 ld0		at sdmmc0
    408 ld1		at sdmmc1
    409 ld2		at sdmmc2
    410 ld3		at sdmmc3
    411 ld*		at sdmmc?
    412 bwfm*		at sdmmc?		# Broadcom BCM43xxx WiFi Interface
    413 
    414 # SATA
    415 ahcisata*	at fdt?			# AHCI SATA
    416 ahcisata*	at acpi?
    417 ahcisata*	at pci? dev ? function ?
    418 atabus* 	at ata?
    419 atapibus*	at atapi?
    420 wd*		at atabus? drive ?
    421 cd*		at atapibus? drive ?
    422 
    423 # NVMe
    424 nvme*		at fdt?			# Apple M1
    425 nvme*		at pci? dev ? function ?
    426 ld*		at nvme? nsid ?
    427 
    428 # SPI controllers
    429 bcmspi* 	at fdt?			# Broadcom BCM283x SPI
    430 rkspi*		at fdt?			# Rockchip SPI
    431 sun6ispi*	at fdt?			# Allwinner SPI
    432 spi*		at spibus?
    433 m25p*		at spi?
    434 spiflash*	at spiflashbus?
    435 
    436 # Broadcom VCHIQ, etc
    437 vchiq*		at fdt?
    438 vchiq*		at acpi?
    439 vcaudio0 	at vchiq?
    440 
    441 # Audio support
    442 hdaudio*	at fdt?			# Intel HDA
    443 hdaudio*	at pci? dev ? function ?
    444 auich*		at pci? dev ? function ?	# Intel AC'97 Audio (QEMU)
    445 eap*		at pci? dev ? function ?	# Ensoniq AudioPCI (QEMU)
    446 hdafg*		at hdaudiobus?
    447 options 	HDAUDIOVERBOSE
    448 ausoc*		at fdt?			# Simple SoC audio card
    449 simpleamp*	at fdt?			# Simple amplifier
    450 spdiftx*	at fdt?			# SPDIF transmitter
    451 rki2s*		at fdt?			# Rockchip I2S/PCM
    452 sunxicodec*	at fdt?			# Allwinner audio codec
    453 sun8icodec*	at fdt?			# Allwinner audio codec (sun8i/sun50i)
    454 h3codec*	at fdt?			# Allwinner H3 audio codec (analog part)
    455 a64acodec*	at fdt?			# Allwinner A64 audio codec (analog part)
    456 sunxii2s*	at fdt?			# Allwinner I2S/PCM
    457 audio*		at audiobus?
    458 
    459 spkr*		at audio?		# PC speaker (synthesized)
    460 
    461 # HDMI CEC
    462 tegracec0	at fdt?			# NVIDIA Tegra HDMI CEC
    463 hdmicec*	at hdmicecbus?
    464 
    465 # Display
    466 anxdp*		at fdt?			# Analogix-based (e)DP
    467 anxedp* 	at iic?			# Analogix eDP TX
    468 dispcon*	at fdt?			# Display connector devices
    469 panel*		at fdt?			# Display panels
    470 dwhdmi* 	at fdt?			# Designware HDMI TX
    471 rkdrm*		at fdt? pass 5		# Rockchip DRM master
    472 rkfb*		at rkdrm?		# Rockchip DRM framebuffer
    473 rkvop*		at fdt?			# Rockchip Visual Output Processor
    474 sunxide2bus*	at fdt? pass 4		# Allwinner DE2 bus
    475 sunxidrm*	at fdt?	pass 5		# Allwinner Display Pipeline
    476 sunxifb*	at sunxidrm?		# Allwinner DRM framebuffer
    477 sunxihdmiphy*	at fdt? pass 9		# Allwinner HDMI TX PHY
    478 sunxilcdc*	at fdt?			# Allwinner DE2 timing controller
    479 sunximixer*	at fdt?			# Allwinner DE2 mixer
    480 #tegradrm*	at fdt?			# NVIDIA Tegra Display
    481 #tegrafb*	at tegrafbbus?
    482 genfb*		at fdt?			# Simple Framebuffer
    483 wsdisplay*	at wsemuldisplaydev?
    484 options 	VCONS_DRAW_INTR
    485 options 	WSEMUL_VT100
    486 options 	WSDISPLAY_CUSTOM_OUTPUT
    487 options 	WS_DEFAULT_FG=WSCOL_WHITE
    488 options 	WS_DEFAULT_BG=WSCOL_BLACK
    489 options 	WS_KERNEL_FG=WSCOL_GREEN
    490 options 	WS_KERNEL_BG=WSCOL_BLACK
    491 options 	WSDISPLAY_COMPAT_PCVT
    492 options 	WSDISPLAY_COMPAT_SYSCONS
    493 options 	WSDISPLAY_COMPAT_USL
    494 options 	WSDISPLAY_COMPAT_RAWKBD
    495 options 	WSDISPLAY_DEFAULTSCREENS=4
    496 options 	WSDISPLAY_MULTICONS
    497 options 	WSDISPLAY_SCROLLSUPPORT
    498 pseudo-device	wsmux
    499 pseudo-device	wsfont
    500 options 	FONT_BOLD8x16
    501 options 	FONT_BOLD16x32
    502 
    503 # GPU
    504 #nouveau*	at fdt?			# NVIDIA GPU
    505 #nouveau*	at pci? dev ? function ?
    506 #nouveaufb*	at nouveaufbbus?
    507 radeon* 	at pci? dev ? function ? # AMD Radeon
    508 radeondrmkmsfb*	at radeonfbbus?
    509 
    510 # Backlight
    511 pwmbacklight*	at fdt?			# PWM Backlight controls
    512 
    513 # Fan
    514 pwmfan* 	at fdt?			# PWM Fan controls
    515 
    516 # Thermal throttling controller
    517 mesonthermal*	at fdt?			# Amlogic thermal sensor controller
    518 sunxithermal*	at fdt?			# Allwinner thermal sensor controller
    519 tegrasoctherm*	at fdt?			# NVIDIA Tegra SOC_THERM
    520 rktsadc*	at fdt?			# RockChip TSASC
    521 
    522 # USB
    523 imx8mqusbphy*	at fdt? pass 9		# IMX USB PHY
    524 mesonusbctrl*	at fdt?			# Amlogic Meson USB-Glue (dwc2 and dwc3)
    525 mesonusbphy*	at fdt? pass 9		# Amlogic Meson USB2 PHY
    526 mesong12u2phy*	at fdt? pass 9		# Amlogic Meson G12 USB2 PHY
    527 mesong12u3pphy*	at fdt? pass 9		# Amlogic Meson G12 USB3/PCIe PHY
    528 mesongxlu2phy*	at fdt? pass 9		# Amlogic Meson GXL USB2 PHY
    529 mesongxlu3phy*	at fdt? pass 9		# Amlogic Meson GXL USB3 PHY
    530 rkusb*		at fdt? pass 9		# Rockchip USB PHY
    531 rkusbphy*	at rkusb?
    532 sunxiusbphy*	at fdt? pass 9		# Allwinner USB PHY
    533 sunxiusb3phy*	at fdt? pass 9		# Allwinner USB3 PHY
    534 tegrausbphy*	at fdt?			# NVIDIA Tegra USB PHY
    535 dwctwo* 	at fdt?			# Designware USB DRD
    536 ehci*		at fdt?			# EHCI
    537 ehci*		at pci?			# EHCI
    538 ehci*		at acpi?		# EHCI
    539 motg*		at fdt?			# Mentor Graphics USB OTG
    540 ohci*		at fdt?			# OHCI
    541 ohci*		at pci?			# OHCI
    542 ohci*		at acpi?		# OHCI
    543 xhci*		at fdt?			# XHCI
    544 xhci*		at pci?			# XHCI
    545 xhci*		at acpi?		# XHCI
    546 usb*		at usbus?
    547 
    548 include "dev/usb/usbdevices.config"
    549 midi*		at midibus?
    550 pseudo-device	sequencer			# MIDI sequencer
    551 
    552 # Virtio devices
    553 virtio* 	at fdt?			# Virtio MMIO device
    554 virtio* 	at acpi?
    555 virtio* 	at pci? dev ? function ?
    556 #viomb*		at virtio?		# Virtio memory balloon device
    557 ld*		at virtio?		# Virtio disk device
    558 vioif*		at virtio?		# Virtio network device
    559 viornd* 	at virtio?		# Virtio entropy device
    560 vioscsi*	at virtio?		# Virtio SCSI device
    561 
    562 # VMWare devices
    563 pvscsi* 	at pci? dev ? function?	# PV SCSI device
    564 
    565 # SCSI controllers
    566 mpt*		at pci? dev ? function ?
    567 
    568 # SCSI bus support
    569 scsibus*	at scsi?
    570 sd*		at scsibus? target ? lun ?	# SCSI disk drives
    571 
    572 cinclude "arch/evbarm/conf/GENERIC64.local"
    573