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