VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc@ 100680

Last change on this file since 100680 was 100680, checked in by vboxsync, 17 months ago

Devices/EFI/Firmware: Add skeleton for a VMware SVGA 3 video controller driver required for ARM as there is no legacy VGA support, bugref:10490

  • Property svn:eol-style set to native
File size: 6.5 KB
Line 
1#
2# Copyright (c) 2011-2015, ARM Limited. All rights reserved.
3# Copyright (c) 2014-2016, Linaro Limited. All rights reserved.
4# Copyright (c) 2015 - 2017, Intel Corporation. All rights reserved.
5#
6# SPDX-License-Identifier: BSD-2-Clause-Patent
7#
8
9################################################################################
10#
11# FV Section
12#
13# [FV] section is used to define what components or modules are placed within a flash
14# device file. This section also defines order the components and modules are positioned
15# within the image. The [FV] section consists of define statements, set statements and
16# module statements.
17#
18################################################################################
19
20[FV.FvMain]
21FvNameGuid = 64074afe-340a-4be6-94ba-91b5b4d0f71e
22BlockSize = 0x40
23NumBlocks = 0 # This FV gets compressed so make it just big enough
24FvAlignment = 16 # FV alignment and FV attributes setting.
25ERASE_POLARITY = 1
26MEMORY_MAPPED = TRUE
27STICKY_WRITE = TRUE
28LOCK_CAP = TRUE
29LOCK_STATUS = TRUE
30WRITE_DISABLED_CAP = TRUE
31WRITE_ENABLED_CAP = TRUE
32WRITE_STATUS = TRUE
33WRITE_LOCK_CAP = TRUE
34WRITE_LOCK_STATUS = TRUE
35READ_DISABLED_CAP = TRUE
36READ_ENABLED_CAP = TRUE
37READ_STATUS = TRUE
38READ_LOCK_CAP = TRUE
39READ_LOCK_STATUS = TRUE
40
41 INF MdeModulePkg/Core/Dxe/DxeMain.inf
42 INF MdeModulePkg/Universal/PCD/Dxe/Pcd.inf
43 INF OvmfPkg/Fdt/VirtioFdtDxe/VirtioFdtDxe.inf
44 INF EmbeddedPkg/Drivers/FdtClientDxe/FdtClientDxe.inf
45 INF OvmfPkg/Fdt/HighMemDxe/HighMemDxe.inf
46
47 #
48 # PI DXE Drivers producing Architectural Protocols (EFI Services)
49 #
50 INF ArmPkg/Drivers/CpuDxe/CpuDxe.inf
51 INF MdeModulePkg/Core/RuntimeDxe/RuntimeDxe.inf
52 INF MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf
53 INF MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf
54 INF MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
55 INF MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf
56!if $(SECURE_BOOT_ENABLE) == TRUE
57 INF SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/SecureBootConfigDxe.inf
58!endif
59 INF MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/MonotonicCounterRuntimeDxe.inf
60 INF MdeModulePkg/Universal/ResetSystemRuntimeDxe/ResetSystemRuntimeDxe.inf
61 INF EmbeddedPkg/RealTimeClockRuntimeDxe/RealTimeClockRuntimeDxe.inf
62 INF EmbeddedPkg/MetronomeDxe/MetronomeDxe.inf
63 INF MdeModulePkg/Universal/HiiDatabaseDxe/HiiDatabaseDxe.inf
64
65 #
66 # Multiple Console IO support
67 #
68 INF MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatformDxe.inf
69 INF MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
70 INF MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsoleDxe.inf
71 INF MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
72 INF MdeModulePkg/Universal/SerialDxe/SerialDxe.inf
73
74 INF ArmPkg/Drivers/ArmGic/ArmGicDxe.inf
75 INF ArmPkg/Drivers/TimerDxe/TimerDxe.inf
76 INF OvmfPkg/VirtNorFlashDxe/VirtNorFlashDxe.inf
77 INF MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.inf
78
79 #
80 # FAT filesystem + GPT/MBR partitioning + UDF filesystem + virtio-fs
81 #
82 INF MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIoDxe.inf
83 INF MdeModulePkg/Universal/Disk/PartitionDxe/PartitionDxe.inf
84 INF FatPkg/EnhancedFatDxe/Fat.inf
85 INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
86 INF MdeModulePkg/Universal/Disk/UdfDxe/UdfDxe.inf
87 INF OvmfPkg/VirtioFsDxe/VirtioFsDxe.inf
88
89 #
90 # Status Code Routing
91 #
92 INF MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/ReportStatusCodeRouterRuntimeDxe.inf
93
94 #
95 # Platform Driver
96 #
97 INF OvmfPkg/VirtioBlkDxe/VirtioBlk.inf
98 INF OvmfPkg/VirtioNetDxe/VirtioNet.inf
99 INF OvmfPkg/VirtioScsiDxe/VirtioScsi.inf
100 INF OvmfPkg/VirtioRngDxe/VirtioRng.inf
101
102!ifdef $(VBOX)
103 INF OvmfPkg/SataControllerDxe/SataControllerDxe.inf
104 INF VBoxPkg/VmwSvga3Dxe/VmwSvga3VideoDxe.inf
105!endif
106
107
108 INF ShellPkg/Application/Shell/Shell.inf
109 INF ShellPkg/DynamicCommand/TftpDynamicCommand/TftpDynamicCommand.inf
110 INF ShellPkg/DynamicCommand/HttpDynamicCommand/HttpDynamicCommand.inf
111 INF OvmfPkg/LinuxInitrdDynamicShellCommand/LinuxInitrdDynamicShellCommand.inf
112
113 #
114 # Bds
115 #
116 INF MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
117 INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
118 INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
119 INF MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
120 INF MdeModulePkg/Universal/BdsDxe/BdsDxe.inf
121 INF MdeModulePkg/Application/UiApp/UiApp.inf
122 INF OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.inf
123
124 #
125 # Networking stack
126 #
127!include NetworkPkg/Network.fdf.inc
128
129
130 #
131 # SCSI Bus and Disk Driver
132 #
133 INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
134 INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
135
136 #
137 # NVME Driver
138 #
139 INF MdeModulePkg/Bus/Pci/NvmExpressDxe/NvmExpressDxe.inf
140
141 #
142 # SMBIOS Support
143 #
144 INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
145 INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
146
147 #
148 # ACPI Support
149 #
150 INF OvmfPkg/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf
151!if $(ARCH) == AARCH64
152 INF MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
153 INF MdeModulePkg/Universal/Acpi/BootGraphicsResourceTableDxe/BootGraphicsResourceTableDxe.inf
154 INF OvmfPkg/AcpiPlatformDxe/AcpiPlatformDxe.inf
155!endif
156
157 #
158 # PCI support
159 #
160 INF ArmPkg/Drivers/ArmPciCpuIo2Dxe/ArmPciCpuIo2Dxe.inf
161 INF MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf
162 INF MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
163 INF OvmfPkg/PciHotPlugInitDxe/PciHotPlugInit.inf
164 INF OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
165 INF OvmfPkg/Virtio10Dxe/Virtio10.inf
166
167 #
168 # Video support
169 #
170 INF OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf
171 INF OvmfPkg/VirtioGpuDxe/VirtioGpu.inf
172 INF OvmfPkg/PlatformDxe/Platform.inf
173
174 #
175 # USB Support
176 #
177 INF MdeModulePkg/Bus/Pci/UhciDxe/UhciDxe.inf
178 INF MdeModulePkg/Bus/Pci/EhciDxe/EhciDxe.inf
179 INF MdeModulePkg/Bus/Pci/XhciDxe/XhciDxe.inf
180 INF MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBusDxe.inf
181 INF MdeModulePkg/Bus/Usb/UsbKbDxe/UsbKbDxe.inf
182 INF MdeModulePkg/Bus/Usb/UsbMassStorageDxe/UsbMassStorageDxe.inf
183
184 #
185 # TPM2 support
186 #
187!if $(TPM2_ENABLE) == TRUE
188 INF SecurityPkg/Tcg/Tcg2Dxe/Tcg2Dxe.inf
189!if $(TPM2_CONFIG_ENABLE) == TRUE
190 INF SecurityPkg/Tcg/Tcg2Config/Tcg2ConfigDxe.inf
191!endif
192!endif
193
194 #
195 # TianoCore logo (splash screen)
196 #
197!ifndef $(VBOX)
198 INF MdeModulePkg/Logo/LogoDxe.inf
199!else
200 INF VBoxPkg/Logo/LogoDxe.inf
201!endif
202
203 #
204 # Ramdisk support
205 #
206 INF MdeModulePkg/Universal/Disk/RamDiskDxe/RamDiskDxe.inf
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette