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