1#
2#	$NetBSD: GENERIC,v 1.121 2024/07/16 12:01:19 riastradh Exp $
3#
4#	GENERIC ARM (aarch32) kernel
5#
6
7include	"arch/evbarm/conf/std.generic"
8include "arch/evbarm/conf/files.generic"
9include	"arch/evbarm/conf/GENERIC.common"
10
11options 	CPU_CORTEX
12
13options 	SOC_AM33XX
14options 	SOC_BCM2836
15options 	SOC_EXYNOS5422
16options 	SOC_IMX6DL
17options 	SOC_IMX6Q
18options 	SOC_IMX6QDL
19options 	SOC_IMX6SX
20options 	SOC_IMX7D
21options 	SOC_MESON8B
22options 	SOC_OMAP3
23options 	SOC_RK3288
24options 	SOC_SUN4I_A10
25options 	SOC_SUN5I_A13
26options 	SOC_SUN6I_A31
27options 	SOC_SUN7I_A20
28options 	SOC_SUN8I_A83T
29options 	SOC_SUN8I_H3
30options 	SOC_SUN8I_V3S
31options 	SOC_SUN9I_A80
32options 	SOC_TEGRA124
33options 	SOC_ZYNQ7000
34
35options 	MULTIPROCESSOR
36
37pseudo-device 	openfirm	# /dev/openfirm
38
39#options 	DIAGNOSTIC	# internal consistency checks
40#options 	DEBUG
41#options 	LOCKDEBUG
42#options 	UVMHIST		# kernhist for uvm/pmap subsystems
43#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
44
45# Heartbeat checks
46options 	HEARTBEAT
47options 	HEARTBEAT_MAX_PERIOD_DEFAULT=15
48
49options 	MSGBUFSIZE=32768
50
51#options 	VERBOSE_INIT_ARM # verbose bootstrapping messages
52
53# EARLYCONS is required for early init messages from VERBOSE_INIT_ARM.
54
55#options 	EARLYCONS=am33xx, CONSADDR=0x44e09000
56
57# RaspberryPIs
58#options 	EARLYCONS=bcm2835, CONSADDR=0x20201000
59#options 	EARLYCONS=bcm2836, CONSADDR=0x3f201000
60#options 	EARLYCONS=bcm2837, CONSADDR=0x3f215040
61
62#options 	EARLYCONS=cycv, CONSADDR=0xffc02000
63
64# ODROID-U3
65#options 	EARLYCONS=exynos, CONSADDR=0x13810000
66
67# ODROID-XU lite
68#options 	EARLYCONS=exynos, CONSADDR=0x12c20000
69
70#options 	EARLYCONS=imx, CONSADDR=0x02020000
71
72# PICO-PI-IMX7
73#options	EARLYCONS=imx, CONSADDR=0x30a70000 # serial4
74
75# ODROID-C1
76#options 	EARLYCONS=meson, CONSADDR=0xc81004c0
77
78#options 	EARLYCONS=omap3, CONSADDR=0x49020000
79#options 	EARLYCONS=rk3328, CONSADDR=0xff130000
80#options 	EARLYCONS=sunxi, CONSADDR=0x01c28000
81
82# TEGRA TK1
83#options 	EARLYCONS=tegra, CONSADDR=0x70006300
84
85#options 	EARLYCONS=vexpress, CONSADDR=0x1c090000
86#options 	EARLYCONS=zynq, CONSADDR=0xe0001000
87#options 	EARLYCONS=rk3288, CONSADDR=0xff690000
88
89# The QEMU virt machine
90#options 	EARLYCONS=plcom, CONSADDR=0x09000000
91
92# Kernel Undefined Behavior Sanitizer (kUBSan). Use UBSAN_ALWAYS_FATAL
93# if you want panics instead of warnings.
94#options 	KUBSAN			# mandatory
95#options 	UBSAN_ALWAYS_FATAL	# optional
96
97# Kernel Address Sanitizer (kASan). The quarantine is optional and can
98# help KASAN find more use-after-frees. Use KASAN_PANIC if you want panics
99# instead of warnings.
100#makeoptions 	KASAN=1		# mandatory
101#options 	KASAN		# mandatory
102#options 	POOL_QUARANTINE	# optional
103#options 	KASAN_PANIC	# optional
104
105# These options enable verbose messages for several subsystems.
106# Warning, these may compile large string tables into the kernel!
107#options 	ACPIVERBOSE	# verbose ACPI configuration messages
108#options 	MIIVERBOSE	# verbose PHY autoconfig messages
109#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
110#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
111#options 	SCSIVERBOSE	# human readable SCSI error messages
112#options 	USBVERBOSE	# verbose USB device autoconfig messages
113
114makeoptions 	DEBUG="-g"	# compile full symbol table
115makeoptions 	COPY_SYMTAB=1
116
117config		netbsd		root on ? type ?
118
119# EFI runtime support
120options 	EFI_RUNTIME
121#pseudo-device	efi		# /dev/efi
122
123# Device tree support
124armfdt0		at root
125simplebus*	at fdt? pass 0
126
127# CPUs
128cpus*		at fdt? pass 0
129cpu*		at fdt? pass 0
130
131# CPU frequency scaling
132tegra124cpu* 	at cpu?
133cpufreqdt* 	at cpu?
134
135# Power State Coordination Interface (PSCI)
136psci* 		at fdt?
137
138# Clock and reset controllers
139am3prcm* 	at fdt? pass 1		# TI AM335x PRCM
140cycvclkmgr* 	at fdt? pass 1		# Cyclone V clock manager
141cycvrstmgr* 	at fdt? pass 0		# Cyclone V reset manager
142exy5410clk* 	at fdt? pass 3		# Exynos5410 clock controller
143exy5422clk* 	at fdt? pass 3		# Exynos5422 clock controller
144imx6ccm* 	at fdt? pass 1		# i.MX6Q* CCM
145imx6sxccm* 	at fdt? pass 1		# i.MX6SX CCM
146imx7dccm* 	at fdt? pass 2		# i.MX7D CCM
147meson8bclkc* 	at fdt? pass 2		# Amlogic Meson8b clock controller
148mesonresets* 	at fdt? pass 2		# Amlogic Meson misc. clock resets
149omap3cm* 	at fdt? pass 1		# TI OMAP3 CM
150omap3prm* 	at fdt? pass 1		# TI OMAP3 PRM
151rkcru*		at fdt? pass 2		# Rockchip RK3288 CRU
152sun4ia10ccu* 	at fdt? pass 2		# Allwinner A10/A20 CCU
153sun5ia13ccu* 	at fdt? pass 2		# Allwinner A13 CCU
154sun6ia31ccu* 	at fdt? pass 2		# Allwinner A31 CCU
155sun8ia83tccu* 	at fdt? pass 2		# Allwinner A83T CCU
156sun8ih3ccu* 	at fdt? pass 2		# Allwinner H3 CCU
157sun8ih3rccu* 	at fdt? pass 2		# Allwinner H3 CCU (PRCM)
158sun8iv3sccu* 	at fdt? pass 2		# Allwinner V3s CCU
159sun9ia80ccu* 	at fdt? pass 2		# Allwinner A80 CCU
160sunxiresets* 	at fdt? pass 1		# Allwinner Misc. clock resets
161sunxigates* 	at fdt? pass 1		# Allwinner Misc. clock gates
162sunxigmacclk* 	at fdt? pass 2		# Allwinner GMAC MII/RGMII clock mux
163sun8iapbclk* 	at fdt? pass 2		# Allwinner A23 APB0
164sun9icpusclk* 	at fdt? pass 2		# Allwinner A80 CPUS
165sun9immcclk* 	at fdt? pass 2		# Allwinner A80 SD/MMC-COMM
166sun9iusbclk* 	at fdt? pass 2		# Allwinner A80 USB HCI
167tegra124car* 	at fdt? pass 3		# NVIDIA Tegra CAR (T124)
168tegra210car* 	at fdt? pass 3		# NVIDIA Tegra CAR (T210)
169tidivclk* 	at fdt? pass 1		# TI divider clock
170tidpllclk* 	at fdt? pass 2		# TI DPLL clock
171timuxclk* 	at fdt? pass 1		# TI mux clock
172zynqclk*	at fdt? pass 1		# Xilinx Zynq PS clocks
173
174fclock* 	at fdt? pass 1
175ffclock* 	at fdt? pass 1
176fregulator* 	at fdt? pass 5
177gregulator* 	at fdt? pass 4
178gpiokeys* 	at fdt?
179wskbd* 		at gpiokeys? console ? mux 1
180gpioleds* 	at fdt?
181
182# 
183imxsnvs*	at fdt? pass 1		# Secure Non-Volatile Storage
184
185# ARM Motherboard Express uATX system registers
186vxsysreg* 	at fdt?
187
188# SRAM controller
189sunxisramc* 	at fdt? pass 4		# SRAM controller
190
191# System Controller
192imxocotp0 	at fdt? pass 2		# On-Chip OTP Controller
193syscon*		at fdt? pass 1		# Generic System Controller
194tisysc*		at fdt? pass 2		# TI sysc interconnect
195
196# Timer
197a9ptmr* 	at fdt? pass 2		# ARM Cortex A5/A9 Private Timer
198arma9ptmr* 	at a9ptmr?
199a9tmr* 		at fdt? pass 2		# ARM Cortex A5/A9 Timer
200arma9tmr* 	at a9tmr?
201gtmr* 		at fdt? pass 1		# ARM Generic Timer
202armgtmr0 	at gtmr?
203mct* 		at fdt? pass 2		# Exynos Multi Core Timer (MCT)
204armgtmr* 	at mct?
205omaptimer* 	at fdt?			# TI OMAP Timer
206meson6timer* 	at fdt?			# Amlogic Timer
207sunxitimer* 	at fdt?			# Allwinner async timer
208sunxihstimer* 	at fdt?			# Allwinner High-Speed timer
209tegratimer* 	at fdt?			# Timers
210
211# Watchdog
212a9wdt*  	at fdt? pass 2		# ARM Cortex A5/A9 Watchdog
213arma9wdt* 	at a9wdt?
214bcmpmwdog* 	at fdt?			# Broadcom BCM283x watchdog
215dwcwdt* 	at fdt?			# DesignWare watchdog
216imxwdog*	at fdt?			# NXP i.MX watchdog
217mesonwdt* 	at fdt?			# Amlogic Meson watchdog
218sunxiwdt* 	at fdt?			# Allwinner watchdog
219tiwdt* 		at fdt?			# TI OMAP watchdog
220
221# Interrupt controller
222gic* 		at fdt? pass 1		# ARM GIC
223armgic0 	at gic?
224bcmicu* 	at fdt? pass 1		# Broadcom BCM283x ICU
225exyointr* 	at fdt? pass 1		# Samsung Exynos ICU
226imxgpc* 	at fdt? pass 2		# i.MX General Power Controller INTC
227imx7gpc* 	at fdt? pass 2		# i.MX General Power Controller v2 INTC
228omapintc* 	at fdt? pass 2		# TI OMAP INTC
229tegralic* 	at fdt? pass 1		# NVIDIA Tegra LIC
230sunxiintc* 	at fdt? pass 1		# Allwinner INTC
231sunxinmi* 	at fdt? pass 2		# Allwinner NMI / R_INTC
232
233# Level 2 Cache Controller
234l2cc* 		at fdt? pass 2		# ARM Cortex A9 L2 Cache Controller
235arml2cc* 	at l2cc?
236
237# Memory controller
238tegramc* 	at fdt?	pass 4		# NVIDIA Tegra MC
239tigpmc* 	at fdt? pass 4		# TI OMAP2 GPMC
240
241# Firmware devices
242bcmmbox* 	at fdt?			# Broadcom VideoCore IV mailbox
243qemufwcfg* 	at fdt?			# QEMU Firmware Configuration device
244vcmbox* 	at bcmmbox?
245
246# DMA controller
247bcmdmac* 	at fdt?			# Broadcom BCM283x DMA controller
248sun4idma* 	at fdt? pass 4		# Allwinner DMA controller (sun4i)
249sun6idma* 	at fdt?	pass 4		# Allwinner DMA controller (sun6i)
250tegraapbdma* 	at fdt? pass 4		# NVIDIA Tegra APB DMA
251tiedma* 	at fdt? pass 4		# TI EDMA3 (TPCC)
252titptc* 	at fdt? pass 3		# TI EDMA3 (TPTC)
253
254# FUSE controller
255tegrafuse* 	at fdt? pass 4		# NVIDIA Tegra FUSE
256
257# Power management controller
258imxgpc*		at fdt? pass 2
259tegrapmc* 	at fdt? pass 4		# NVIDIA Tegra PMC
260
261# Performance monitors
262armpmu* 	at fdt?
263pseudo-device 	tprof
264
265# Clock and Reset controller
266bcmcprman* 	at fdt? pass 1		# Broadcom BCM283x Clock Manager
267bcmaux* 	at fdt? pass 1		# Broadcom BCM283x Aux Periph Clocks
268
269# GPIO controller
270bcmgpio* 	at fdt?			# Broadcom BCM283x GPIO
271exyopctl* 	at fdt? pass 2		# Samsung Exynos GPIO
272imxgpio* 	at fdt? pass 3		# i.MX GPIO
273mesonpinctrl* 	at fdt? pass 2		# Amlogic Meson GPIO
274plgpio* 	at fdt?			# ARM PrimeCell GPIO
275sunxigpio* 	at fdt? pass 3		# Allwinner GPIO
276rkgpio*		at rkiomux?		# Rockchip GPIO
277tegragpio* 	at fdt? pass 2		# NVIDIA Tegra GPIO
278tigpio* 	at fdt? pass 2		# TI GPIO
279zynqgpio*	at fdt? pass 2		# Xilinx Zynq GPIO
280gpio* 		at gpiobus?
281
282# IOMUX / MPIO / Pinmux
283pinctrl* 	at fdt? pass 2		# Generic pinctrl driver
284imxiomux* 	at fdt? pass 2		# i.MX IOMUX
285rkiomux*	at fdt? pass 3		# Rockchip IOMUX
286tegrapinmux* 	at fdt?			# NVIDIA Tegra MPIO
287
288# PWM controller
289expwm* 		at fdt? pass 4		# PWM
290imxpwm* 	at fdt?			# i.MX PWM
291rkpwm*		at fdt? pass 3		# Rockchip PWM
292sunxipwm* 	at fdt? pass 3		# Allwinner PWM
293
294# Backlight
295pwmbacklight* 	at fdt?			# PWM Backlight controls
296
297# Fan
298pwmfan* 	at fdt?			# PWM Fan controls
299
300# XUSB PADCTL
301tegra124xpad* 	at fdt?			# NVIDIA Tegra XUSB PADCTL (T124)
302tegra210xpad* 	at fdt?			# NVIDIA Tegra XUSB PADCTL (T210)
303tegra210xphy* 	at tegra210xpad?
304
305# PCIE
306imxpcie* 	at fdt?			# i.MX PCIE
307pcihost* 	at fdt?			# Generic PCI host controller
308tegrapcie0 	at fdt?			# NVIDIA Tegra PCIE
309pci* 		at pcibus?
310ppb* 		at pci? dev ? function ?
311pci* 		at ppb?
312
313# Ethernet
314awge* 		at fdt?			# Allwinner Gigabit Ethernet (GMAC)
315cemac* 		at fdt?			# Cadence EMAC/GEM ethernet controller
316cpsw*		at fdt?			# TI CPSW 3-port Ethernet Switch
317emac* 		at fdt?			# Allwinner Fast/Gigabit Ethernet (EMAC)
318enet*		at fdt?			# i.MX FEC
319smsh* 		at fdt?			# SMSC LAN9118
320
321# PCI Ethernet
322re* 		at pci? dev ? function ?	# Realtek RTL8111GS
323
324# MII/PHY support
325atphy* 		at mii? phy ?		# Attansic/Atheros PHYs
326exphy* 		at mii? phy ?		# 3Com internal PHYs
327gentbi* 	at mii? phy ?		# Generic Ten-Bit 1000BASE-[CLS]X PHYs
328glxtphy* 	at mii? phy ?		# Level One LXT-1000 PHYs
329gphyter* 	at mii? phy ?		# NS83861 Gig-E PHY
330icsphy* 	at mii? phy ?		# Integrated Circuit Systems ICS189x
331igphy* 		at mii? phy ?		# Intel IGP01E1000
332ihphy* 		at mii? phy ?		# Intel 82577 PHYs
333ikphy* 		at mii? phy ?		# Intel 82563 PHYs
334inphy* 		at mii? phy ?		# Intel 82555 PHYs
335iophy* 		at mii? phy ?		# Intel 82553 PHYs
336lxtphy* 	at mii? phy ?		# Level One LXT-970 PHYs
337makphy* 	at mii? phy ?		# Marvell Semiconductor 88E1000 PHYs
338micphy*		at mii? phy ?		# Micrel KSZ[89]xxx PHYs
339nsphy* 		at mii? phy ?		# NS83840 PHYs
340nsphyter* 	at mii? phy ?		# NS83843 PHYs
341pnaphy* 	at mii? phy ?		# generic HomePNA PHYs
342qsphy* 		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
343rdcphy* 	at mii? phy ?		# RDC R6040 10/100 PHY
344rgephy* 	at mii? phy ?		# Realtek 8169S/8110S internal PHYs
345rlphy* 		at mii? phy ?		# Realtek 8139/8201L PHYs
346smscphy* 	at mii? phy ?		# SMSC LAN87xx PHYs
347sqphy* 		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
348tlphy* 		at mii? phy ?		# ThunderLAN PHYs
349tqphy* 		at mii? phy ?		# TDK Semiconductor PHYs
350urlphy* 	at mii? phy ?		# Realtek RTL8150L internal PHYs
351ukphy* 		at mii? phy ?		# generic unknown PHYs
352
353# Mini-PCIe Wireless
354#options 	ATHHAL_AR5212,ATHHAL_RF2425	# AR5BHB63
355#ath* 		at pci? dev ? function ?	# Atheros IEEE 802.11
356#athn* 		at pci? dev ? function ?	# Atheros IEEE 802.11
357
358# UART
359com* 		at fdt?	pass 4		# UART
360exuart* 	at fdt?	pass 4		# SSCOM UART
361imxuart* 	at fdt?	pass 4		# i.MX UART
362options 	IMXUARTCONSOLE
363mesonuart* 	at fdt?	pass 4		# Amlogic Meson UART
364plcom* 		at fdt?	pass 4		# ARM PL011 UART
365zynquart* 	at fdt?	pass 4		# Cadence UART
366
367# I2C controllers
368options 	I2C_MAX_ADDR=0xfff
369bsciic* 	at fdt?			# Broadcom BCM283x Serial Control
370cdnsiic*	at fdt? pass 4		# Cadence I2C
371exyoi2c* 	at fdt?			# Samsung Exynos I2C
372imxi2c* 	at fdt? pass 4		# i.MX I2C
373rkiic*		at fdt? pass 4		# Rockchip I2C
374sunxirsb* 	at fdt? pass 4		# Allwinner RSB
375sunxitwi* 	at fdt?			# Allwinner TWI
376tegrai2c* 	at fdt? pass 4		# NVIDIA Tegra I2C
377tiiic* 		at fdt? pass 4		# TI OMAP I2C
378iicmux* 	at fdt? pass 5		# I2C mux virtual controllers
379iic* 		at i2cbus?
380
381# I2C devices
382ac100ic* 	at iic?			# AC100 integrated audio codec and RTC
383as3722pmic* 	at iic?
384as3722reg* 	at as3722pmic?
385axp20x* 	at iic?			# AXP209 Power Management IC
386axp20xreg* 	at axp20x?
387axp22x* 	at iic?			# AXP221 Power Management IC
388axppmic* 	at iic?			# X-Powers AXP Power Management IC
389axpreg* 	at axppmic?
390dsrtc*		at iic?			# Dallas Semiconductor RTCs
391em3027rtc* 	at iic?
392lmtemp*		at iic?			# National Semiconductor LM7x
393max77620pmic* 	at iic?
394pcaiicmux*	at iic?			# PCA954x / PCA984x I2C switch / mux
395pcf8563rtc* 	at iic?			# PCF8563 RTC
396rkpmic*		at iic?			# Rockchip Power Management IC
397seeprom* 	at iic?			# AT24Cxx Serial EEPROM
398sy8106a* 	at iic?			# Silergy SY81061 regulator
399tcakp* 		at iic?			# TI TCA8418 Keypad Scan IC
400tcagpio* 	at iic?
401tdahdmi* 	at iic?			# NXP TDA19988 HDMI encoder
402titemp* 	at iic?
403tps65217pmic* 	at iic?			# TI TPS65217 Power Management IC
404tps65217reg* 	at tps65217pmic?
405twl* 		at iic?			# TI TWL4030 Power Management IC
406wskbd* 		at tcakp? console ?
407
408# CAN bus
409options 	CAN			# Controller Area Network protocol
410pseudo-device 	canloop			# CAN loopback interface
411sunxican* 	at fdt?			# A10/A20 CAN controller
412
413# SPI
414imxspi* 	at fdt?			# i.MX SPI
415rkspi*		at fdt?			# Rockchip SPI
416sun4ispi* 	at fdt?
417sun6ispi* 	at fdt?
418spi* 		at spibus?
419spi* 		at imxspi?
420
421# SPI NOR-Flash
422spiflash* 	at spiflashbus?
423m25p* 		at spi? slave ?
424
425# Random number generators
426bcmrng* 	at fdt?			# Broadcom BCM283x RNG
427mesonrng* 	at fdt?			# Amlogic Meson RNG
428tirng* 		at fdt?			# TI RNG
429rkv1crypto*	at fdt?			# Rockchip Crypto v1
430sun8icrypto* 	at fdt?			# Allwinner Crypto Engine
431
432# Security ID EFUSE
433sunxisid* 	at fdt? pass 4		# SID
434
435# Low res ADC
436sunxilradc* 	at fdt?
437
438# RTC
439#exyortc* 	at fdt?			# RTC
440mesonrtc* 	at fdt?			# Amlogic Meson RTC
441plrtc* 		at fdt?			# ARM PrimeCell RTC
442sunxirtc* 	at fdt?			# Allwinner RTC
443tegrartc* 	at fdt?			# NVIDIA Tegra RTC
444
445# Thermal sensor
446sunxithermal* 	at fdt?			# Thermal sensor controller
447zynqxadc*	at fdt?			# Xilinx 7 series ADC
448
449# BCM2835 VCHIQ, etc
450vchiq0 		at fdt?
451vcaudio0 	at vchiq0
452
453# Audio
454a64acodec* 	at fdt?			# Allwinner A64 audio codec (analog part)
455aaci* 		at fdt?			# ARM PrimeCell AACI
456ausoc* 		at fdt?			# Simple SoC audio card
457h3codec* 	at fdt?			# Allwinner H3 audio codec (analog part)
458v3scodec* 	at fdt?			# Allwinner V3s audio codec (analog part)
459hdaudio* 	at fdt?			# Intel HDA
460hdafg* 		at hdaudiobus?
461options 	HDAUDIOVERBOSE
462sun8icodec* 	at fdt?			# Audio codec (sun8i)
463sunxicodec* 	at fdt?			# Allwinner audio codec
464sunxii2s* 	at fdt?			# I2S/PCM
465audio* 		at audiobus?
466spkr* 		at audio?
467
468# SDMMC
469bcmsdhost* 	at fdt?			# Broadcom BCM283x SD Host Interface
470dwcmmc* 	at fdt?			# DesignWare SDMMC
471mesonsdio* 	at fdt?			# Amlogic Meson SDIO controller
472mesonsdhc* 	at fdt?			# Amlogic Meson SDHC controller
473mmcpwrseq* 	at fdt?			# Simple MMC power sequence provider
474plmmc* 		at fdt?			# ARM PrimeCell MCI
475sdhc* 		at fdt?			# SD Host Controller Interface
476sunximmc* 	at fdt?			# Allwinner SD/MMC
477sdmmc* 		at sdmmcbus?
478ld0 		at sdmmc0
479ld1 		at sdmmc1
480ld2 		at sdmmc2
481ld3 		at sdmmc3
482ld* 		at sdmmc?
483bwfm* 		at sdmmc?		# Broadcom BCM43xxx WiFi Interface
484
485# NAND Flash
486sunxinand* 	at fdt?			# Allwinner NAND flash controller
487omapnand* 	at fdt?			# TI OMAP2 flash controller
488nand* 		at nandbus?
489flash* 		at nand? dynamic 1
490
491# SATA
492ahcisata* 	at fdt?			# AHCI SATA
493ahcisata* 	at pci? dev ? function ?
494atabus* 	at ata?
495atabus* 	at ahcisata? channel ?
496atapibus* 	at atapi?
497wd* 		at atabus? drive ?
498
499# ATAPI devices
500# flags have the same meaning as for IDE drives.
501cd* 		at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
502sd* 		at atapibus? drive ? flags 0x0000	# ATAPI disk drives
503st* 		at atapibus? drive ? flags 0x0000	# ATAPI tape drives
504uk* 		at atapibus? drive ? flags 0x0000	# ATAPI unknown
505
506# NVMe
507nvme* 		at pci? dev ? function ?
508ld* 		at nvme? nsid ?
509
510# SPI controllers
511bcmspi* 	at fdt?			# Broadcom BCM283x SPI
512spi* 		at spibus?
513
514# HDMI CEC
515tegracec0 	at fdt?			# NVIDIA Tegra HDMI CEC
516hdmicec* 	at hdmicecbus?
517
518# Display
519#tegradrm* 	at fdt?			# NVIDIA Tegra Display
520#tegrafb* 	at tegrafbbus?
521dwhdmi* 	at fdt?			# Designware HDMI TX
522genfb* 		at fdt?			# Simple Framebuffer
523mesonfb* 	at fdt?			# Amlogic Meson Framebuffer
524omapfb* 	at fdt?			# TI OMAP3 Framebuffer
525wsdisplay* 	at wsemuldisplaydev?
526sunxidebe* 	at fdt? pass 4		# Display Backend
527genfb* 		at sunxidebe?
528sunxitcon* 	at fdt? pass 4		# LCD LVDS/RGB controller
529sunxihdmi* 	at fdt? pass 4		# HDMI controller
530connector* 	at fdt? pass 4
531panel* 		at fdt? pass 4
532#sunxidep must be after display pipeline elements but before genfb@fdt
533sunxidep* 	at fdt? pass 5		# Display Engine Pipeline
534tilcdc* 	at fdt?			# TI OMAP4 LCDC
535tifb* 		at tilcdc?
536
537options 	VCONS_DRAW_INTR
538options 	WSEMUL_VT100
539options 	WSDISPLAY_CUSTOM_OUTPUT
540options 	WS_DEFAULT_FG=WSCOL_WHITE
541options 	WS_DEFAULT_BG=WSCOL_BLACK
542options 	WS_KERNEL_FG=WSCOL_GREEN
543options 	WS_KERNEL_BG=WSCOL_BLACK
544options 	WSDISPLAY_COMPAT_PCVT
545options 	WSDISPLAY_COMPAT_SYSCONS
546options 	WSDISPLAY_COMPAT_USL
547options 	WSDISPLAY_COMPAT_RAWKBD
548options 	WSDISPLAY_DEFAULTSCREENS=4
549options 	WSDISPLAY_MULTICONS
550options 	WSDISPLAY_SCROLLSUPPORT
551pseudo-device	wsmux
552pseudo-device	wsfont
553options 	FONT_BOLD8x16
554options 	FONT_BOLD16x32
555
556# GPU
557#nouveau* 	at fdt?			# NVIDIA GPU
558
559# PS/2 keyboard and mouse support
560plkmi* 		at fdt?
561pckbd* 		at pckbport?
562wskbd* 		at pckbd? console ?
563pms* 		at pckbport?
564wsmouse* 	at pms? mux 0
565
566# Touch Screen controller
567sunxits* 	at fdt?			# Touch Screen controller
568wsmouse* 	at sunxits? mux 0
569
570# Thermal throttling controller
571tegrasoctherm* 	at fdt?			# NVIDIA Tegra SOC_THERM
572
573# USB
574exusbphy* 	at fdt? pass 9		# Samsung Exynos USB2 PHY
575exusbdrdphy* 	at fdt? pass 9		# Samsung Exynos USB3 DRD PHY
576imxusbphy* 	at fdt? pass 9		# i.MX USB PHY
577mesonusbphy* 	at fdt? pass 9		# Amlogic Meson USB2 PHY
578rk3288usb*	at fdt? pass 9		# Rockchip USB PHY
579rk3288usbphy*	at rk3288usb?
580sun9iusbphy* 	at fdt? pass 9		# Allwinner A80 USB PHY
581sunxiusbphy* 	at fdt? pass 9		# Allwinner USB PHY
582sunxiusb3phy* 	at fdt? pass 9		# Allwinner USB3 PHY
583tegrausbphy* 	at fdt?			# NVIDIA Tegra USB PHY
584usbnopphy* 	at fdt? pass 9		# Generic USB PHY
585
586imxusbc* 	at fdt?
587tiotg* 		at fdt?			# TI dual port OTG
588tiusb* 		at fdt? pass 9		# TI HS USB host
589tiusbtll* 	at fdt? pass 8		# TI HS USB host TLL
590
591dwctwo* 	at fdt?			# Designware USB DRD
592ehci* 		at fdt?			# EHCI
593ehci* 		at imxusbc?
594motg* 		at fdt?			# Mentor Graphics USB OTG
595ohci* 		at fdt?			# OHCI
596xhci* 		at fdt?			# XHCI
597usb* 		at usbus?
598
599# Virtio devices
600virtio* 	at fdt?				# Virtio MMIO device
601virtio* 	at pci? dev ? function ?	# Virtio PCI device
602# the balloon driver cannot work on machines with non-4k pages
603#viomb* 	at virtio?			# Virtio memory balloon device
604ld* 		at virtio?			# Virtio disk device
605viocon*		at virtio?			# Virtio serial device
606vioif* 		at virtio?			# Virtio network device
607viornd* 	at virtio?			# Virtio entropy device
608vioscsi* 	at virtio?			# Virtio SCSI device
609
610# SCSI
611scsibus* at scsi?
612sd* 		at scsibus? target ? lun ?	# SCSI disks
613st* 		at scsibus? target ? lun ?	# SCSI tapes
614cd* 		at scsibus? target ? lun ?	# SCSI CD-ROMs
615ch* 		at scsibus? target ? lun ?	# SCSI changer devices
616ss* 		at scsibus? target ? lun ?	# SCSI scanners
617ses* 		at scsibus? target ? lun ?	# SCSI SES/SAF-TE devices
618uk* 		at scsibus? target ? lun ?	# unknown SCSI
619
620# SPI NOR flash support
621m25p* 		at spi?
622spiflash* 	at spiflashbus?
623
624include "dev/usb/usbdevices.config"
625midi* 		at midibus?
626pseudo-device	sequencer			# MIDI sequencer
627
628# Bluetooth USB Controllers
629ubt* at uhub? port ?
630
631# Bluetooth Device Hub
632bthub* at bcsp?
633bthub* at btuart?
634bthub* at bthfive?
635bthub* at ubt?
636
637include "dev/bluetooth/bluetoothdevices.config"
638
639# Pull in optional local configuration - always at end
640cinclude	"arch/evbarm/conf/GENERIC.local"
641