Home | History | Annotate | Line # | Download | only in conf
GENERIC64 revision 1.201
      1 #
      2 #	$NetBSD: GENERIC64,v 1.201 2022/05/10 08:09:57 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 applesmc*	at fdt? pass 3		# Apple RTKIT based SMC
    186 bcmmbox*	at fdt?			# Broadcom VideoCore IV mailbox
    187 bcmmbox*	at acpi?
    188 vcmbox* 	at bcmmbox?
    189 qemufwcfg*	at fdt?			# QEMU Firmware Configuration device
    190 qemufwcfg*	at acpi?
    191 
    192 # DMA controller
    193 bcmdmac*	at fdt?			# Broadcom BCM283x DMA controller
    194 sun6idma*	at fdt?	pass 4		# Allwinner DMA controller (sun6i)
    195 tegraapbdma*	at fdt? pass 4		# NVIDIA Tegra APB DMA
    196 
    197 # FUSE controller
    198 sunxisid*	at fdt? pass 4		# Allwinner SID
    199 tegrafuse*	at fdt? pass 4		# NVIDIA Tegra FUSE
    200 
    201 # Power management controller
    202 tegrapmc*	at fdt? pass 4		# NVIDIA Tegra PMC
    203 
    204 # Mailbox controller
    205 applembox*	at fdt? pass 2		# Apple Mailbox
    206 
    207 # Clock and Reset controller
    208 bcmcprman*	at fdt? pass 1		# Broadcom BCM283x Clock Manager
    209 bcmaux* 	at fdt? pass 1		# Broadcom BCM283x Aux Periph Clocks
    210 g12aoclkc*	at fdt? pass 2		# Amlogic Meson G12 AO clock controller
    211 g12clkc*	at fdt? pass 2		# Amlogic Meson G12 EE clock controller
    212 gxbbaoclkc*	at fdt? pass 2		# Amlogic Meson GXBB AO clock controller
    213 gxbbclkc*	at fdt? pass 2		# Amlogic Meson GXBB/GXL EE clock controller
    214 imx8mqccm*	at fdt? pass 2		# NXP iMX8MQ CCM
    215 mesonresets*	at fdt? pass 2		# Amlogic Meson misc. clock resets
    216 rkcru*		at fdt? pass 2		# Rockchip RK3328 CRU
    217 sun8ih3ccu*	at fdt? pass 2		# Allwinner H3/H5 CCU
    218 sun8ih3rccu*	at fdt? pass 2		# Allwinner H3/H5 CCU (PRCM)
    219 sun50ia64ccu*	at fdt? pass 2		# Allwinner A64 CCU
    220 sun50ia64rccu*	at fdt? pass 2		# Allwinner A64 CCU (PRCM)
    221 sun50ih6ccu*	at fdt? pass 2		# Allwinner H6 CCU
    222 sun50ih6rccu*	at fdt? pass 2		# Allwinner H6 CCU (PRCM)
    223 sunxide2ccu*	at fdt? pass 3		# Allwinner DE2 clock controller
    224 sunxiresets*	at fdt? pass 1		# Allwinner misc. resets
    225 sunxigates*	at fdt? pass 1		# Allwinner misc. gates
    226 sunxigmacclk*	at fdt? pass 2		# Allwinner GMAC MII/RGMII clock mux
    227 tegra210car*	at fdt? pass 3		# NVIDIA Tegra CAR (T210)
    228 
    229 # GPIO controller
    230 applepinctrl*	at fdt?			# Apple GPIO
    231 bcmgpio*	at fdt? pass 3		# Broadcom BCM283x GPIO
    232 imxgpio*	at fdt? pass 3		# IMX GPIO
    233 mesonpinctrl*	at fdt? pass 2		# Amlogic Meson GPIO
    234 plgpio* 	at fdt?			# ARM PrimeCell PL061 GPIO
    235 plgpio* 	at acpi?
    236 sunxigpio*	at fdt? pass 3		# Allwinner GPIO
    237 tegragpio*	at fdt? pass 2		# NVIDIA Tegra GPIO
    238 rkgpio* 	at rkiomux?		# Rockchip GPIO
    239 gpio*		at gpiobus?
    240 
    241 # PWM controller
    242 mesonpwm*	at fdt? pass 3		# Amlogic PWM
    243 rkpwm*		at fdt? pass 3		# Rockchip PWM
    244 sunxipwm*	at fdt? pass 3		# Allwinner PWM
    245 
    246 # MPIO / Pinmux
    247 imxiomux*	at fdt? pass 2		# IMX IOMUX
    248 rkiomux*	at fdt?	pass 3		# Rockchip IOMUX
    249 tegrapinmux*	at fdt?			# NVIDIA Tegra MPIO
    250 
    251 # XUSB PADCTL
    252 tegra210xpad*	at fdt?			# NVIDIA Tegra XUSB PADCTL (T210)
    253 tegra210xphy*	at tegra210xpad?
    254 
    255 # PCIE
    256 applepcie*	at fdt?			# Apple PCIe
    257 pcihost*	at fdt?			# Generic PCI host controller
    258 acpipchb*	at acpi?		# ACPI PCIe host bridge
    259 rkpcie* 	at fdt?			# Rockchip AXI PCIE
    260 rkpciephy*	at fdt? pass 9		# Rockchip AXI PCIE PHY
    261 tegrapcie0	at fdt?			# NVIDIA Tegra PCIE
    262 pci*		at pcibus?
    263 ppb*		at pci? dev ? function ?
    264 pci*		at ppb?
    265 
    266 # Ethernet
    267 awge*		at fdt?				# DesignWare Gigabit Ethernet
    268 emac*		at fdt?				# Allwinner Gigabit Ethernet (EMAC)
    269 enet*		at fdt?				# IMX FEC
    270 eqos*		at acpi?			# DesignWare Ethernet QoS
    271 genet*		at acpi?			# Broadcom GENET v5
    272 genet*		at fdt?
    273 #scx*		at acpi?			# Socionext Gigabit Ethernet
    274 #scx*		at fdt?
    275 aq*		at pci? dev ? function ?	# Aquantia AQC 10 gigabit
    276 bge*		at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    277 ena*		at pci? dev ? function ?	# Amazon.com Elastic Network Adapter
    278 ixg* 		at pci? dev ? function ?	# Intel 8259x 10 gigabit
    279 ixv* 		at pci? dev ? function ?	# Intel 8259x 10G virtual function
    280 mcx*		at pci? dev ? function ?	# Mellanox 5th generation Ethernet
    281 mskc*		at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
    282 msk*		at mskc?
    283 re*		at pci? dev ? function ?	# Realtek RTL8111GS
    284 rge*		at pci? dev ? function ?	# Realtek 8125
    285 vmx*		at pci? dev ? function ?	# VMware VMXNET3
    286 wm*		at pci? dev ? function ?	# Intel Gigabit Ethernet
    287 
    288 # MII/PHY support
    289 atphy*		at mii? phy ?		# Attansic/Atheros PHYs
    290 brgphy* 	at mii? phy ?		# Broadcom BCM5400-family PHYs
    291 exphy* 		at mii? phy ?		# 3Com internal PHYs
    292 gentbi* 	at mii? phy ?		# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    293 glxtphy*	at mii? phy ?		# Level One LXT-1000 PHYs
    294 gphyter* 	at mii? phy ?		# NS83861 Gig-E PHY
    295 gxlphy* 	at mii? phy ?		# Amlogic Meson GX internal PHY
    296 icsphy* 	at mii? phy ?		# Integrated Circuit Systems ICS189x
    297 igphy*		at mii? phy ?		# Intel IGP01E1000
    298 ihphy*		at mii? phy ?		# Intel 82577 PHYs
    299 ikphy*		at mii? phy ?		# Intel 82563 PHYs
    300 inphy*		at mii? phy ?		# Intel 82555 PHYs
    301 iophy*		at mii? phy ?		# Intel 82553 PHYs
    302 lxtphy* 	at mii? phy ?		# Level One LXT-970 PHYs
    303 makphy* 	at mii? phy ?		# Marvell Semiconductor 88E1000 PHYs
    304 mcommphy*	at mii? phy ?		# Motorcomm YT8511C/YT8511H PHYs
    305 nsphy*		at mii? phy ?		# NS83840 PHYs
    306 nsphyter*	at mii? phy ? 		# NS83843 PHYs
    307 pnaphy* 	at mii? phy ?		# generic HomePNA PHYs
    308 rdcphy* 	at mii? phy ?		# RDC R6040 10/100 PHY
    309 rgephy* 	at mii? phy ?		# Realtek 8169S/8110S internal PHYs
    310 rlphy*		at mii? phy ?		# Realtek 8139/8201L PHYs
    311 smscphy*	at mii? phy ?		# SMSC LAN87xx PHYs
    312 sqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
    313 tlphy*		at mii? phy ?		# ThunderLAN PHYs
    314 tqphy*		at mii? phy ?		# TDK Semiconductor PHYs
    315 urlphy* 	at mii? phy ?		# Realtek RTL8150L internal PHYs
    316 ukphy*		at mii? phy ?		# generic unknown PHYs
    317 
    318 # Mini-PCIe Wireless
    319 #options 	ATHHAL_AR5212,ATHHAL_RF2425	# AR5BHB63
    320 #ath*		at pci? dev ? function ?	# Atheros IEEE 802.11
    321 #athn*		at pci? dev ? function ?	# Atheros IEEE 802.11
    322 
    323 # UART
    324 com*		at fdt?	pass 4			# UART
    325 com*		at acpi?
    326 exuart*		at fdt? pass 4			# SSCOM UART
    327 imxuart*	at fdt? pass 4			# IMX UART
    328 options 	IMXUARTCONSOLE
    329 mesonuart*	at fdt? pass 4			# Amlogic Meson UART
    330 plcom*		at fdt?	pass 4			# ARM PL011 UART
    331 plcom*		at acpi?
    332 puc*		at pci? dev ? function ?	# PCI "universal" comm. cards
    333 com*		at puc? port ?
    334 
    335 # I2C controllers
    336 options 	I2C_MAX_ADDR=0xfff
    337 appleiic*	at fdt?			# Apple I2C
    338 bsciic* 	at fdt?			# Broadcom BCM283x Serial Control
    339 bsciic* 	at acpi?
    340 dwiic*		at fdt?			# Designware I2C
    341 dwiic*		at acpi?
    342 imxi2c* 	at fdt? pass 4		# IMX I2C
    343 nxpiic* 	at acpi?		# NXP Layerscape I2C
    344 rkiic*		at fdt? pass 4		# Rockchip I2C
    345 sunxirsb*	at fdt?	pass 4		# Allwinner RSB
    346 sunxitwi*	at fdt?			# Allwinner TWI
    347 tegrai2c*	at fdt? pass 4		# NVIDIA Tegra I2C
    348 #sniiic*	at fdt?			# Socionext SC2A11 I2C
    349 #sniiic*	at acpi?
    350 iicmux* 	at fdt? pass 5		# I2C mux virtual controllers
    351 iic*		at i2cbus?
    352 
    353 # I2C devices
    354 titemp* 	at iic?
    355 seeprom*	at iic?
    356 spdmem* 	at iic?			# memory module SPD EEPROM decoder
    357 as3722pmic*	at iic?
    358 as3722reg*	at as3722pmic?
    359 axppmic*	at iic?			# X-Powers AXP Power Management IC
    360 axpreg* 	at axppmic?
    361 cwfg*		at iic?			# CellWise CW2015 Fuel Gauge IC
    362 dsrtc*		at iic?			# Dallas Semiconductor RTCs
    363 es8316ac*	at iic?			# Everest Semi ES8316 Audio CODEC
    364 fan53555reg*	at iic?			# FAN53555 / SY82x regulator
    365 max77620pmic*	at iic?
    366 pcaiicmux*	at iic?			# PCA954x / PCA984x I2C switch / mux
    367 pcf8563rtc*	at iic?			# PCF8563 RTC
    368 rkpmic* 	at iic?			# Rockchip Power Management IC
    369 rkreg*		at rkpmic?
    370 tcagpio*	at iic?
    371 
    372 # Power Domain controllers
    373 applepmgr* 	at fdt? pass 0
    374 
    375 # Random number generators
    376 amdccp* 	at fdt?			# AMD Cryptograhic Coprocessor RNG
    377 amdccp* 	at acpi?
    378 bcmrng* 	at fdt?			# Broadcom BCM283x RNG
    379 mesonrng*	at fdt?			# Amlogic Meson RNG
    380 sun8icrypto* 	at fdt?			# Allwinner Crypto Engine
    381 rkv1crypto* 	at fdt?			# Rockchip Crypto v1
    382 
    383 # RTC
    384 plrtc*		at fdt?			# ARM PrimeCell RTC
    385 sunxirtc*	at fdt? pass 4		# Allwinner RTC
    386 tegrartc*	at fdt?			# NVIDIA Tegra RTC
    387 
    388 # SDMMC
    389 bcmsdhost*	at fdt?			# Broadcom BCM283x SD Host Interface
    390 dwcmmc*		at acpi?		# DesignWare SD/MMC
    391 dwcmmc* 	at fdt?
    392 mesongxmmc*	at fdt?			# Amlogic Meson GX eMMC/SD/SDIO controller
    393 mmcpwrseq*	at fdt? pass 5		# Simple MMC power sequence provider
    394 rkemmcphy*	at fdt?			# Rockchip eMMC PHY
    395 sdhc*		at fdt?			# SD Host Controller Interface
    396 sdhc*		at acpi?
    397 sunximmc*	at fdt?			# Allwinner SD/MMC
    398 #sniemmc*	at fdt?			# Socionext SC2A11 eMMC
    399 #sniemmc*	at acpi?
    400 sdmmc*		at sdmmcbus?
    401 ld0		at sdmmc0
    402 ld1		at sdmmc1
    403 ld2		at sdmmc2
    404 ld3		at sdmmc3
    405 ld*		at sdmmc?
    406 bwfm*		at sdmmc?		# Broadcom BCM43xxx WiFi Interface
    407 
    408 # SATA
    409 ahcisata*	at fdt?			# AHCI SATA
    410 ahcisata*	at acpi?
    411 ahcisata*	at pci? dev ? function ?
    412 atabus* 	at ata?
    413 atapibus*	at atapi?
    414 wd*		at atabus? drive ?
    415 cd*		at atapibus? drive ?
    416 
    417 # NVMe
    418 nvme*		at fdt?			# Apple M1
    419 nvme*		at pci? dev ? function ?
    420 ld*		at nvme? nsid ?
    421 
    422 # SPI controllers
    423 bcmspi* 	at fdt?			# Broadcom BCM283x SPI
    424 rkspi*		at fdt?			# Rockchip SPI
    425 sun6ispi*	at fdt?			# Allwinner SPI
    426 spi*		at spibus?
    427 m25p*		at spi?
    428 spiflash*	at spiflashbus?
    429 
    430 # Broadcom VCHIQ, etc
    431 vchiq0		at fdt?
    432 vcaudio0 	at vchiq0
    433 
    434 # Audio support
    435 hdaudio*	at fdt?			# Intel HDA
    436 hdaudio*	at pci? dev ? function ?
    437 hdafg*		at hdaudiobus?
    438 options 	HDAUDIOVERBOSE
    439 ausoc*		at fdt?			# Simple SoC audio card
    440 simpleamp*	at fdt?			# Simple amplifier
    441 spdiftx*	at fdt?			# SPDIF transmitter
    442 rki2s*		at fdt?			# Rockchip I2S/PCM
    443 sunxicodec*	at fdt?			# Allwinner audio codec
    444 sun8icodec*	at fdt?			# Allwinner audio codec (sun8i/sun50i)
    445 h3codec*	at fdt?			# Allwinner H3 audio codec (analog part)
    446 a64acodec*	at fdt?			# Allwinner A64 audio codec (analog part)
    447 sunxii2s*	at fdt?			# Allwinner I2S/PCM
    448 audio*		at audiobus?
    449 
    450 spkr*		at audio?		# PC speaker (synthesized)
    451 
    452 # HDMI CEC
    453 tegracec0	at fdt?			# NVIDIA Tegra HDMI CEC
    454 hdmicec*	at hdmicecbus?
    455 
    456 # Display
    457 anxdp*		at fdt?			# Analogix-based (e)DP
    458 anxedp* 	at iic?			# Analogix eDP TX
    459 dispcon*	at fdt?			# Display connector devices
    460 panel*		at fdt?			# Display panels
    461 dwhdmi* 	at fdt?			# Designware HDMI TX
    462 rkdrm*		at fdt? pass 5		# Rockchip DRM master
    463 rkfb*		at rkdrm?		# Rockchip DRM framebuffer
    464 rkvop*		at fdt?			# Rockchip Visual Output Processor
    465 sunxide2bus*	at fdt? pass 4		# Allwinner DE2 bus
    466 sunxidrm*	at fdt?	pass 5		# Allwinner Display Pipeline
    467 sunxifb*	at sunxidrm?		# Allwinner DRM framebuffer
    468 sunxihdmiphy*	at fdt? pass 9		# Allwinner HDMI TX PHY
    469 sunxilcdc*	at fdt?			# Allwinner DE2 timing controller
    470 sunximixer*	at fdt?			# Allwinner DE2 mixer
    471 #tegradrm*	at fdt?			# NVIDIA Tegra Display
    472 #tegrafb*	at tegrafbbus?
    473 genfb*		at fdt?			# Simple Framebuffer
    474 wsdisplay*	at wsemuldisplaydev?
    475 options 	VCONS_DRAW_INTR
    476 options 	WSEMUL_VT100
    477 options 	WSDISPLAY_CUSTOM_OUTPUT
    478 options 	WS_DEFAULT_FG=WSCOL_WHITE
    479 options 	WS_DEFAULT_BG=WSCOL_BLACK
    480 options 	WS_KERNEL_FG=WSCOL_GREEN
    481 options 	WS_KERNEL_BG=WSCOL_BLACK
    482 options 	WSDISPLAY_COMPAT_PCVT
    483 options 	WSDISPLAY_COMPAT_SYSCONS
    484 options 	WSDISPLAY_COMPAT_USL
    485 options 	WSDISPLAY_COMPAT_RAWKBD
    486 options 	WSDISPLAY_DEFAULTSCREENS=4
    487 options 	WSDISPLAY_MULTICONS
    488 options 	WSDISPLAY_SCROLLSUPPORT
    489 pseudo-device	wsmux
    490 pseudo-device	wsfont
    491 options 	FONT_BOLD8x16
    492 options 	FONT_BOLD16x32
    493 
    494 # GPU
    495 #nouveau*	at fdt?			# NVIDIA GPU
    496 #nouveau*	at pci? dev ? function ?
    497 #nouveaufb*	at nouveaufbbus?
    498 radeon* 	at pci? dev ? function ? # AMD Radeon
    499 radeondrmkmsfb*	at radeonfbbus?
    500 
    501 # Backlight
    502 pwmbacklight*	at fdt?			# PWM Backlight controls
    503 
    504 # Fan
    505 pwmfan* 	at fdt?			# PWM Fan controls
    506 
    507 # Thermal throttling controller
    508 mesonthermal*	at fdt?			# Amlogic thermal sensor controller
    509 sunxithermal*	at fdt?			# Allwinner thermal sensor controller
    510 tegrasoctherm*	at fdt?			# NVIDIA Tegra SOC_THERM
    511 rktsadc*	at fdt?			# RockChip TSASC
    512 
    513 # USB
    514 imx8mqusbphy*	at fdt? pass 9		# IMX USB PHY
    515 mesonusbctrl*	at fdt?			# Amlogic Meson USB-Glue (dwc2 and dwc3)
    516 mesonusbphy*	at fdt? pass 9		# Amlogic Meson USB2 PHY
    517 mesong12u2phy*	at fdt? pass 9		# Amlogic Meson G12 USB2 PHY
    518 mesong12u3pphy*	at fdt? pass 9		# Amlogic Meson G12 USB3/PCIe PHY
    519 mesongxlu2phy*	at fdt? pass 9		# Amlogic Meson GXL USB2 PHY
    520 mesongxlu3phy*	at fdt? pass 9		# Amlogic Meson GXL USB3 PHY
    521 rkusb*		at fdt? pass 9		# Rockchip USB PHY
    522 rkusbphy*	at rkusb?
    523 sunxiusbphy*	at fdt? pass 9		# Allwinner USB PHY
    524 sunxiusb3phy*	at fdt? pass 9		# Allwinner USB3 PHY
    525 tegrausbphy*	at fdt?			# NVIDIA Tegra USB PHY
    526 dwctwo* 	at fdt?			# Designware USB DRD
    527 ehci*		at fdt?			# EHCI
    528 ehci*		at pci?			# EHCI
    529 ehci*		at acpi?		# EHCI
    530 motg*		at fdt?			# Mentor Graphics USB OTG
    531 ohci*		at fdt?			# OHCI
    532 ohci*		at pci?			# OHCI
    533 ohci*		at acpi?		# OHCI
    534 xhci*		at fdt?			# XHCI
    535 xhci*		at pci?			# XHCI
    536 xhci*		at acpi?		# XHCI
    537 usb*		at usbus?
    538 
    539 include "dev/usb/usbdevices.config"
    540 midi*		at midibus?
    541 pseudo-device	sequencer			# MIDI sequencer
    542 
    543 # Virtio devices
    544 virtio* 	at fdt?			# Virtio MMIO device
    545 virtio* 	at acpi?
    546 virtio* 	at pci? dev ? function ?
    547 #viomb*		at virtio?		# Virtio memory balloon device
    548 ld*		at virtio?		# Virtio disk device
    549 vioif*		at virtio?		# Virtio network device
    550 viornd* 	at virtio?		# Virtio entropy device
    551 vioscsi*	at virtio?		# Virtio SCSI device
    552 
    553 # SCSI controllers
    554 mpt*		at pci? dev ? function ?
    555 
    556 # SCSI bus support
    557 scsibus*	at scsi?
    558 sd*		at scsibus? target ? lun ?	# SCSI disk drives
    559 
    560 cinclude "arch/evbarm/conf/GENERIC64.local"
    561