Home | History | Annotate | Line # | Download | only in conf
GENERIC64 revision 1.211
      1 #
      2 #	$NetBSD: GENERIC64,v 1.211 2023/04/16 16:55:01 jmcneill 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 
     51 # The QEMU virt machine
     52 #options 	EARLYCONS=plcom, CONSADDR=0x09000000
     53 
     54 # Hardware management of the Access flag and dirty state (HAFDBS).
     55 options 	ARMV81_HAFDBS
     56 
     57 # Privileged Access Never (PAN).
     58 options 	ARMV81_PAN
     59 
     60 # Pointer Authentication (PAC).
     61 #makeoptions 	ARMV83_PAC=1
     62 #options 	ARMV83_PAC
     63 
     64 # Branch Target Identification (BTI).
     65 #makeoptions 	ARMV85_BTI=1
     66 #options 	ARMV85_BTI
     67 
     68 # Kernel Undefined Behavior Sanitizer (kUBSan). Use UBSAN_ALWAYS_FATAL
     69 # if you want panics instead of warnings.
     70 #options 	KUBSAN			# mandatory
     71 #options 	UBSAN_ALWAYS_FATAL	# optional
     72 
     73 # Kernel Address Sanitizer (kASan). The quarantine is optional and can
     74 # help KASAN find more use-after-frees. Use KASAN_PANIC if you want panics
     75 # instead of warnings.
     76 #makeoptions 	KASAN=1		# mandatory
     77 #options 	KASAN		# mandatory
     78 #options 	POOL_QUARANTINE	# optional
     79 #options 	KASAN_PANIC	# optional
     80 
     81 # These options enable verbose messages for several subsystems.
     82 # Warning, these may compile large string tables into the kernel!
     83 #options 	ACPIVERBOSE	# verbose ACPI configuration messages
     84 #options 	MIIVERBOSE	# verbose PHY autoconfig messages
     85 #options 	PCIVERBOSE	# verbose PCI device autoconfig messages
     86 #options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
     87 #options 	SCSIVERBOSE	# human readable SCSI error messages
     88 #options 	USBVERBOSE	# verbose USB device autoconfig messages
     89 
     90 makeoptions	DEBUG="-g"	# compile full symbol table
     91 makeoptions	COPY_SYMTAB=1
     92 
     93 config		netbsd		root on ? type ?
     94 
     95 #options 	COMPAT_NETBSD32	# already defined in GENERIC.common (there
     96 options 	EXEC_ELF32	# for a.out, but here we need it for elf32)
     97 
     98 #options 	COMPAT_LINUX	# binary compatibility with Linux
     99 #options 	COMPAT_LINUX32	# binary compatibility with Linux 32-bit
    100 #options 	COMPAT_50	# COMPAT_LINUX depends on
    101 #options 	COMPAT_OSSAUDIO # binary compatibility with Linux
    102 
    103 # EFI runtime support
    104 options 	EFI_RUNTIME
    105 pseudo-device	efi		# /dev/efi
    106 
    107 # Device tree support
    108 armfdt0 	at root
    109 simplebus*	at fdt? pass 0
    110 
    111 # ACPI support
    112 acpifdt*	at fdt? pass 1
    113 acpi*		at acpifdt?
    114 acpiacad*	at acpi?
    115 acpibat*	at acpi?
    116 acpibut*	at acpi?
    117 acpicppc*	at acpi?
    118 acpipcd*	at acpi?
    119 acpipcc*	at acpi?
    120 acpifan*	at acpi?
    121 acpiged*	at acpi?
    122 acpilid*	at acpi?
    123 acpitz* 	at acpi?
    124 
    125 # CPUs
    126 cpus*		at fdt? pass 0
    127 cpu*		at fdt? pass 0
    128 cpu*		at acpi?
    129 
    130 vmt*		at fdt?			# VMware Tools
    131 
    132 # Performance monitors
    133 armpmu* 	at fdt?
    134 pseudo-device	tprof
    135 
    136 # CPU frequency scaling
    137 cpufreqdt*	at cpu?
    138 
    139 # Power State Coordination Interface (PSCI)
    140 psci*		at fdt? pass 0
    141 
    142 fclock* 	at fdt? pass 1
    143 ffclock*	at fdt? pass 1
    144 fregulator*	at fdt? pass 4
    145 gregulator*	at fdt? pass 4
    146 pregulator*	at fdt? pass 4
    147 gpiokeys*	at fdt?
    148 wskbd*		at gpiokeys? console ? mux 1
    149 gpioleds*	at fdt?
    150 
    151 # System Controller
    152 syscon* 	at fdt? pass 1		# Generic System Controller
    153 sunxisramc*	at fdt? pass 1		# Allwinner System Control
    154 
    155 # Timer
    156 gtmr*		at fdt? pass 2		# ARM Generic Timer
    157 gtmr*		at acpi?
    158 armgtmr0	at gtmr?
    159 tegratimer*	at fdt?			# Timers
    160 
    161 # Watchdog
    162 applewdog*	at fdt?			# Apple watchdog
    163 bcmpmwdog*	at fdt?			# Broadcom BCM283x watchdog
    164 dwcwdt* 	at fdt?			# DesignWare watchdog
    165 dwcwdt*		at acpi?
    166 mesongxwdt*	at fdt?			# Amlogic Meson GX watchdog
    167 sbsawdt*	at acpi?		# ARM SBSA-compliant watchdog
    168 sunxiwdt*	at fdt?			# Allwinner watchdog
    169 
    170 # Interrupt controller
    171 appleintc*	at fdt? pass 1		# Apple AIC
    172 bcmicu* 	at fdt? pass 1		# Broadcom BCM283x ICU
    173 tegralic*	at fdt? pass 1		# NVIDIA Tegra LIC
    174 gic*		at fdt? pass 1		# ARM GICv2
    175 gic*		at acpi?
    176 armgic0 	at gic?
    177 gicvthree*	at fdt? pass 1		# ARM GICv3
    178 gicvthree*	at acpi?
    179 imx7gpc*	at fdt? pass 2		# IMX GPCv2
    180 sunxinmi*	at fdt? pass 2		# Allwinner NMI / R_INTC
    181 
    182 # IOMMU
    183 appledart*	at fdt? pass 3		# Apple DART
    184 
    185 # Memory controller
    186 tegramc*	at fdt?	pass 4		# NVIDIA Tegra MC
    187 
    188 # Firmware devices
    189 applesmc*	at fdt? pass 3		# Apple RTKIT based SMC
    190 bcmmbox*	at fdt?			# Broadcom VideoCore IV mailbox
    191 bcmmbox*	at acpi?
    192 vcmbox* 	at bcmmbox?
    193 qemufwcfg*	at fdt?			# QEMU Firmware Configuration device
    194 qemufwcfg*	at acpi?
    195 
    196 # DMA controller
    197 bcmdmac*	at fdt?			# Broadcom BCM283x DMA controller
    198 sun6idma*	at fdt?	pass 4		# Allwinner DMA controller (sun6i)
    199 tegraapbdma*	at fdt? pass 4		# NVIDIA Tegra APB DMA
    200 
    201 # FUSE controller
    202 sunxisid*	at fdt? pass 4		# Allwinner SID
    203 tegrafuse*	at fdt? pass 4		# NVIDIA Tegra FUSE
    204 
    205 # Power management controller
    206 tegrapmc*	at fdt? pass 4		# NVIDIA Tegra PMC
    207 
    208 # Mailbox controller
    209 applembox*	at fdt? pass 2		# Apple Mailbox
    210 
    211 # Clock and Reset controller
    212 bcmcprman*	at fdt? pass 1		# Broadcom BCM283x Clock Manager
    213 bcmaux* 	at fdt? pass 1		# Broadcom BCM283x Aux Periph Clocks
    214 g12aoclkc*	at fdt? pass 2		# Amlogic Meson G12 AO clock controller
    215 g12clkc*	at fdt? pass 2		# Amlogic Meson G12 EE clock controller
    216 gxbbaoclkc*	at fdt? pass 2		# Amlogic Meson GXBB AO clock controller
    217 gxbbclkc*	at fdt? pass 2		# Amlogic Meson GXBB/GXL EE clock controller
    218 imx8mqccm*	at fdt? pass 2		# NXP iMX8MQ CCM
    219 mesonresets*	at fdt? pass 2		# Amlogic Meson misc. clock resets
    220 rkcru*		at fdt? pass 2		# Rockchip RK3328 CRU
    221 sun8ih3ccu*	at fdt? pass 2		# Allwinner H3/H5 CCU
    222 sun8ih3rccu*	at fdt? pass 2		# Allwinner H3/H5 CCU (PRCM)
    223 sun50ia64ccu*	at fdt? pass 2		# Allwinner A64 CCU
    224 sun50ia64rccu*	at fdt? pass 2		# Allwinner A64 CCU (PRCM)
    225 sun50ih6ccu*	at fdt? pass 2		# Allwinner H6 CCU
    226 sun50ih6rccu*	at fdt? pass 2		# Allwinner H6 CCU (PRCM)
    227 sunxide2ccu*	at fdt? pass 3		# Allwinner DE2 clock controller
    228 sunxiresets*	at fdt? pass 1		# Allwinner misc. resets
    229 sunxigates*	at fdt? pass 1		# Allwinner misc. gates
    230 sunxigmacclk*	at fdt? pass 2		# Allwinner GMAC MII/RGMII clock mux
    231 tegra210car*	at fdt? pass 3		# NVIDIA Tegra CAR (T210)
    232 
    233 # GPIO controller
    234 applepinctrl*	at fdt?			# Apple GPIO
    235 bcmgpio*	at fdt? pass 3		# Broadcom BCM283x GPIO
    236 imxgpio*	at fdt? pass 3		# IMX GPIO
    237 mesonpinctrl*	at fdt? pass 2		# Amlogic Meson GPIO
    238 plgpio* 	at fdt?			# ARM PrimeCell PL061 GPIO
    239 plgpio* 	at acpi?
    240 sunxigpio*	at fdt? pass 3		# Allwinner GPIO
    241 tegragpio*	at fdt? pass 2		# NVIDIA Tegra GPIO
    242 rkgpio* 	at rkiomux?		# Rockchip GPIO
    243 gpio*		at gpiobus?
    244 
    245 # PWM controller
    246 mesonpwm*	at fdt? pass 3		# Amlogic PWM
    247 rkpwm*		at fdt? pass 3		# Rockchip PWM
    248 sunxipwm*	at fdt? pass 3		# Allwinner PWM
    249 
    250 # MPIO / Pinmux
    251 imxiomux*	at fdt? pass 2		# IMX IOMUX
    252 rkiomux*	at fdt?	pass 3		# Rockchip IOMUX
    253 tegrapinmux*	at fdt?			# NVIDIA Tegra MPIO
    254 
    255 # XUSB PADCTL
    256 tegra210xpad*	at fdt?			# NVIDIA Tegra XUSB PADCTL (T210)
    257 tegra210xphy*	at tegra210xpad?
    258 
    259 # PCIE
    260 applepcie*	at fdt?			# Apple PCIe
    261 pcihost*	at fdt?			# Generic PCI host controller
    262 acpipchb*	at acpi?		# ACPI PCIe host bridge
    263 rkpcie* 	at fdt?			# Rockchip AXI PCIE
    264 rkpciephy*	at fdt? pass 9		# Rockchip AXI PCIE PHY
    265 tegrapcie0	at fdt?			# NVIDIA Tegra PCIE
    266 pci*		at pcibus?
    267 ppb*		at pci? dev ? function ?
    268 pci*		at ppb?
    269 
    270 # Ethernet
    271 awge*		at fdt?				# DesignWare Gigabit Ethernet
    272 emac*		at fdt?				# Allwinner Gigabit Ethernet (EMAC)
    273 enet*		at fdt?				# IMX FEC
    274 eqos*		at acpi?			# DesignWare Ethernet QoS
    275 eqos*		at fdt?
    276 genet*		at acpi?			# Broadcom GENET v5
    277 genet*		at fdt?
    278 #scx*		at acpi?			# Socionext Gigabit Ethernet
    279 #scx*		at fdt?
    280 aq*		at pci? dev ? function ?	# Aquantia AQC 10 gigabit
    281 bge*		at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    282 ena*		at pci? dev ? function ?	# Amazon.com Elastic Network Adapter
    283 ixg* 		at pci? dev ? function ?	# Intel 8259x 10 gigabit
    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 siisata*	at pci? dev ? function ?
    419 atabus* 	at ata?
    420 atapibus*	at atapi?
    421 wd*		at atabus? drive ?
    422 cd*		at atapibus? drive ?
    423 
    424 # NVMe
    425 nvme*		at fdt?			# Apple M1
    426 nvme*		at pci? dev ? function ?
    427 ld*		at nvme? nsid ?
    428 
    429 # SPI controllers
    430 bcmspi* 	at fdt?			# Broadcom BCM283x SPI
    431 rkspi*		at fdt?			# Rockchip SPI
    432 sun6ispi*	at fdt?			# Allwinner SPI
    433 spi*		at spibus?
    434 m25p*		at spi?
    435 spiflash*	at spiflashbus?
    436 
    437 # Broadcom VCHIQ, etc
    438 vchiq*		at fdt?
    439 vchiq*		at acpi?
    440 vcaudio0 	at vchiq?
    441 
    442 # Audio support
    443 hdaudio*	at fdt?			# Intel HDA
    444 hdaudio*	at pci? dev ? function ?
    445 hdafg*		at hdaudiobus?
    446 options 	HDAUDIOVERBOSE
    447 ausoc*		at fdt?			# Simple SoC audio card
    448 simpleamp*	at fdt?			# Simple amplifier
    449 spdiftx*	at fdt?			# SPDIF transmitter
    450 rki2s*		at fdt?			# Rockchip I2S/PCM
    451 sunxicodec*	at fdt?			# Allwinner audio codec
    452 sun8icodec*	at fdt?			# Allwinner audio codec (sun8i/sun50i)
    453 h3codec*	at fdt?			# Allwinner H3 audio codec (analog part)
    454 a64acodec*	at fdt?			# Allwinner A64 audio codec (analog part)
    455 sunxii2s*	at fdt?			# Allwinner I2S/PCM
    456 audio*		at audiobus?
    457 
    458 spkr*		at audio?		# PC speaker (synthesized)
    459 
    460 # HDMI CEC
    461 tegracec0	at fdt?			# NVIDIA Tegra HDMI CEC
    462 hdmicec*	at hdmicecbus?
    463 
    464 # Display
    465 anxdp*		at fdt?			# Analogix-based (e)DP
    466 anxedp* 	at iic?			# Analogix eDP TX
    467 dispcon*	at fdt?			# Display connector devices
    468 panel*		at fdt?			# Display panels
    469 dwhdmi* 	at fdt?			# Designware HDMI TX
    470 rkdrm*		at fdt? pass 5		# Rockchip DRM master
    471 rkfb*		at rkdrm?		# Rockchip DRM framebuffer
    472 rkvop*		at fdt?			# Rockchip Visual Output Processor
    473 sunxide2bus*	at fdt? pass 4		# Allwinner DE2 bus
    474 sunxidrm*	at fdt?	pass 5		# Allwinner Display Pipeline
    475 sunxifb*	at sunxidrm?		# Allwinner DRM framebuffer
    476 sunxihdmiphy*	at fdt? pass 9		# Allwinner HDMI TX PHY
    477 sunxilcdc*	at fdt?			# Allwinner DE2 timing controller
    478 sunximixer*	at fdt?			# Allwinner DE2 mixer
    479 #tegradrm*	at fdt?			# NVIDIA Tegra Display
    480 #tegrafb*	at tegrafbbus?
    481 genfb*		at fdt?			# Simple Framebuffer
    482 wsdisplay*	at wsemuldisplaydev?
    483 options 	VCONS_DRAW_INTR
    484 options 	WSEMUL_VT100
    485 options 	WSDISPLAY_CUSTOM_OUTPUT
    486 options 	WS_DEFAULT_FG=WSCOL_WHITE
    487 options 	WS_DEFAULT_BG=WSCOL_BLACK
    488 options 	WS_KERNEL_FG=WSCOL_GREEN
    489 options 	WS_KERNEL_BG=WSCOL_BLACK
    490 options 	WSDISPLAY_COMPAT_PCVT
    491 options 	WSDISPLAY_COMPAT_SYSCONS
    492 options 	WSDISPLAY_COMPAT_USL
    493 options 	WSDISPLAY_COMPAT_RAWKBD
    494 options 	WSDISPLAY_DEFAULTSCREENS=4
    495 options 	WSDISPLAY_MULTICONS
    496 options 	WSDISPLAY_SCROLLSUPPORT
    497 pseudo-device	wsmux
    498 pseudo-device	wsfont
    499 options 	FONT_BOLD8x16
    500 options 	FONT_BOLD16x32
    501 
    502 # GPU
    503 #nouveau*	at fdt?			# NVIDIA GPU
    504 #nouveau*	at pci? dev ? function ?
    505 #nouveaufb*	at nouveaufbbus?
    506 radeon* 	at pci? dev ? function ? # AMD Radeon
    507 radeondrmkmsfb*	at radeonfbbus?
    508 
    509 # Backlight
    510 pwmbacklight*	at fdt?			# PWM Backlight controls
    511 
    512 # Fan
    513 pwmfan* 	at fdt?			# PWM Fan controls
    514 
    515 # Thermal throttling controller
    516 mesonthermal*	at fdt?			# Amlogic thermal sensor controller
    517 sunxithermal*	at fdt?			# Allwinner thermal sensor controller
    518 tegrasoctherm*	at fdt?			# NVIDIA Tegra SOC_THERM
    519 rktsadc*	at fdt?			# RockChip TSASC
    520 
    521 # USB
    522 imx8mqusbphy*	at fdt? pass 9		# IMX USB PHY
    523 mesonusbctrl*	at fdt?			# Amlogic Meson USB-Glue (dwc2 and dwc3)
    524 mesonusbphy*	at fdt? pass 9		# Amlogic Meson USB2 PHY
    525 mesong12u2phy*	at fdt? pass 9		# Amlogic Meson G12 USB2 PHY
    526 mesong12u3pphy*	at fdt? pass 9		# Amlogic Meson G12 USB3/PCIe PHY
    527 mesongxlu2phy*	at fdt? pass 9		# Amlogic Meson GXL USB2 PHY
    528 mesongxlu3phy*	at fdt? pass 9		# Amlogic Meson GXL USB3 PHY
    529 rkusb*		at fdt? pass 9		# Rockchip USB PHY
    530 rkusbphy*	at rkusb?
    531 sunxiusbphy*	at fdt? pass 9		# Allwinner USB PHY
    532 sunxiusb3phy*	at fdt? pass 9		# Allwinner USB3 PHY
    533 tegrausbphy*	at fdt?			# NVIDIA Tegra USB PHY
    534 dwctwo* 	at fdt?			# Designware USB DRD
    535 ehci*		at fdt?			# EHCI
    536 ehci*		at pci?			# EHCI
    537 ehci*		at acpi?		# EHCI
    538 motg*		at fdt?			# Mentor Graphics USB OTG
    539 ohci*		at fdt?			# OHCI
    540 ohci*		at pci?			# OHCI
    541 ohci*		at acpi?		# OHCI
    542 xhci*		at fdt?			# XHCI
    543 xhci*		at pci?			# XHCI
    544 xhci*		at acpi?		# XHCI
    545 usb*		at usbus?
    546 
    547 include "dev/usb/usbdevices.config"
    548 midi*		at midibus?
    549 pseudo-device	sequencer			# MIDI sequencer
    550 
    551 # Virtio devices
    552 virtio* 	at fdt?			# Virtio MMIO device
    553 virtio* 	at acpi?
    554 virtio* 	at pci? dev ? function ?
    555 #viomb*		at virtio?		# Virtio memory balloon device
    556 ld*		at virtio?		# Virtio disk device
    557 vioif*		at virtio?		# Virtio network device
    558 viornd* 	at virtio?		# Virtio entropy device
    559 vioscsi*	at virtio?		# Virtio SCSI device
    560 
    561 # SCSI controllers
    562 mpt*		at pci? dev ? function ?
    563 
    564 # SCSI bus support
    565 scsibus*	at scsi?
    566 sd*		at scsibus? target ? lun ?	# SCSI disk drives
    567 
    568 # Pull in optional local configuration - always at end
    569 cinclude	"arch/evbarm/conf/GENERIC64.local"
    570