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