]> git.proxmox.com Git - mirror_edk2.git/blame - OvmfPkg/README
Fix VS2013 build failure.
[mirror_edk2.git] / OvmfPkg / README
CommitLineData
49ba9447 1\r
2=== OVMF OVERVIEW ===\r
3\r
4The Open Virtual Machine Firmware (OVMF) project aims\r
5to support firmware for Virtual Machines using the edk2\r
6code base. More information can be found at:\r
7\r
c315da0a 8http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=OVMF\r
49ba9447 9\r
10=== STATUS ===\r
11\r
49ba9447 12Current capabilities:\r
13* IA32 and X64 architectures\r
73f4a1c0 14* QEMU (0.10.0 or later)\r
49ba9447 15 - Video, keyboard, IDE, CD-ROM, serial\r
16 - Runs UEFI shell\r
7416f4eb 17 - Optional NIC support. Requires QEMU (0.12.2 or later)\r
73f4a1c0 18* UEFI Linux boots\r
19* UEFI Windows 8 boots\r
90803342 20* UEFI Windows 7 & Windows 2008 Server boot (see important notes below!)\r
49ba9447 21\r
22=== FUTURE PLANS ===\r
23\r
49ba9447 24* Test/Stabilize UEFI Self-Certification Tests (SCT) results\r
25\r
37e97c51 26=== BUILDING OVMF ===\r
27\r
28Pre-requisites:\r
29* Build environment capable of build the edk2 MdeModulePkg.\r
66325870 30* A properly configured ASL compiler:\r
31 - Intel ASL compiler: Available from http://www.acpica.org\r
32 - Microsoft ASL compiler: Available from http://www.acpi.info\r
37e97c51 33\r
34Update Conf/target.txt ACTIVE_PLATFORM for OVMF:\r
35 PEI arch DXE arch UEFI interfaces\r
36* OvmfPkg/OvmfPkgIa32.dsc IA32 IA32 IA32\r
37* OvmfPkg/OvmfPkgIa32X64.dsc IA32 X64 X64\r
38* OvmfPkg/OvmfPkgX64.dsc X64 X64 X64\r
39\r
2dae09a5 40Update Conf/target.txt TARGET_ARCH based on the .dsc file:\r
41 TARGET_ARCH\r
42* OvmfPkg/OvmfPkgIa32.dsc IA32\r
43* OvmfPkg/OvmfPkgIa32X64.dsc IA32 X64\r
44* OvmfPkg/OvmfPkgX64.dsc X64\r
45\r
46Following the edk2 build process, you will find the OVMF binaries\r
47under the $WORKSPACE/Build/*/*/FV directory. The actual path will\r
48depend on how your build is configured. You can expect to find\r
49these binary outputs:\r
7416f4eb 50* OVMF.FD\r
66325870 51 - Please note! This filename has changed. Older releases used OVMF.Fv.\r
922f593a 52* OvmfVideo.rom\r
e79095b7 53 - This file is not built separately any longer, starting with svn r13520.\r
2dae09a5 54\r
55More information on building OVMF can be found at:\r
c315da0a 56\r
57http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=How_to_build_OVMF\r
37e97c51 58\r
59=== RUNNING OVMF on QEMU ===\r
60\r
210c880f 61* QEMU 0.12.2 or later is required.\r
37e97c51 62* Be sure to use qemu-system-x86_64, if you are using and X64 firmware.\r
63 (qemu-system-x86_64 works for the IA32 firmware as well, of course.)\r
210c880f
JJ
64* Use OVMF for QEMU firmware (3 options available)\r
65 - Option 1: QEMU 1.6 or newer; Use QEMU -pflash parameter\r
66 * QEMU/OVMF will use emulated flash, and fully support UEFI variables\r
67 * Run qemu with: -pflash path/to/OVMF.fd\r
68 - Option 2: Use QEMU -bios parameter\r
69 * Note that UEFI variables will be partially emulated, and non-volatile\r
70 variables may lose their contents after a reboot\r
71 * Run qemu with: -bios path/to/OVMF.fd\r
72 - Option 3: Use QEMU -L parameter\r
73 * Note that UEFI variables will be partially emulated, and non-volatile\r
74 variables may lose their contents after a reboot\r
75 * Either copy, rename or symlink OVMF.fd => bios.bin\r
76 * Use the QEMU -L parameter to specify the directory where the bios.bin\r
77 file is located.\r
37e97c51 78* The EFI shell is built into OVMF builds at this time, so it should\r
79 run automatically if a UEFI boot application is not found on the\r
80 removable media.\r
aed8e2ec 81* On Linux, newer version of QEMU may enable KVM feature, and this might\r
82 cause OVMF to fail to boot. The QEMU '-no-kvm' may allow OVMF to boot.\r
bf23b44d 83* Capturing OVMF debug messages on qemu:\r
84 - The default OVMF build writes debug messages to IO port 0x402. The\r
85 following qemu command line options save them in the file called\r
86 debug.log: '-debugcon file:debug.log -global isa-debugcon.iobase=0x402'.\r
87 - It is possible to revert to the original behavior, when debug messages were\r
88 written to the emulated serial port (potentially intermixing OVMF debug\r
89 output with UEFI serial console output). For this the\r
90 '-D DEBUG_ON_SERIAL_PORT' option has to be passed to the build command (see\r
91 the next section), and in order to capture the serial output qemu needs to\r
92 be started with eg. '-serial file:serial.log'.\r
93 - Debug messages fall into several categories. Logged vs. suppressed\r
94 categories are controlled at OVMF build time by the\r
95 'gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel' bitmask (an UINT32\r
96 value) in the selected .dsc file. Individual bits of this bitmask are\r
97 defined in <MdePkg/Include/Library/DebugLib.h>. One non-default bit (with\r
98 some performance impact) that is frequently set for debugging is 0x00400000\r
99 (DEBUG_VERBOSE).\r
100 - The RELEASE build target ('-b RELEASE' build option, see below) disables\r
101 all debug messages. The default build target is DEBUG.\r
5a9745b9 102\r
103=== Build Scripts ===\r
104\r
66325870 105On systems with the bash shell you can use OvmfPkg/build.sh to simplify\r
106building and running OVMF.\r
5a9745b9 107\r
108So, for example, to build + run OVMF X64:\r
66325870 109$ OvmfPkg/build.sh -a X64\r
110$ OvmfPkg/build.sh -a X64 qemu\r
5a9745b9 111\r
112And to run a 64-bit UEFI bootable ISO image:\r
66325870 113$ OvmfPkg/build.sh -a X64 qemu -cdrom /path/to/disk-image.iso\r
114\r
bf23b44d 115To build a 32-bit OVMF without debug messages using GCC 4.5:\r
66325870 116$ OvmfPkg/build.sh -a IA32 -b RELEASE -t GCC45\r
5a9745b9 117\r
aed8e2ec 118=== Network Support ===\r
119\r
7a1f5947
LE
120OVMF provides a UEFI network stack by default. Its lowest level driver is the\r
121NIC driver, higher levels are generic. In order to make DHCP, PXE Boot, and eg.\r
122socket test utilities from the StdLib edk2 package work, (1) qemu has to be\r
123configured to emulate a NIC, (2) a matching UEFI NIC driver must be available\r
124when OVMF boots.\r
7628b0f5 125\r
126(If a NIC is configured for the virtual machine, and -- dependent on boot order\r
127-- PXE booting is attempted, but no DHCP server responds to OVMF's DHCP\r
128DISCOVER message at startup, the boot process may take approx. 3 seconds\r
129longer.)\r
130\r
131* For each NIC emulated by qemu, a GPLv2 licensed UEFI driver is available from\r
132 the iPXE project. The qemu source distribution, starting with version 1.5,\r
133 contains prebuilt binaries of these drivers (and of course allows one to\r
7a1f5947 134 rebuild them from source as well). This is the recommended set of drivers.\r
7628b0f5 135\r
136* Use the qemu -netdev and -device options, or the legacy -net option, to\r
137 enable NIC support: <http://wiki.qemu.org/Documentation/Networking>.\r
138\r
139* For a qemu >= 1.5 binary running *without* any "-M machine" option where\r
140 "machine" would identify a < qemu-1.5 configuration (for example: "-M\r
7a1f5947
LE
141 pc-i440fx-1.4" or "-M pc-0.13"), the iPXE drivers are automatically available\r
142 to and configured for OVMF in the default qemu installation.\r
7628b0f5 143\r
144* For a qemu binary in [0.13, 1.5), or a qemu >= 1.5 binary with an "-M\r
145 machine" option where "machine" selects a < qemu-1.5 configuration:\r
146\r
147 - download a >= 1.5.0-rc1 source tarball from <http://wiki.qemu.org/Download>,\r
148\r
7a1f5947
LE
149 - extract the following iPXE driver files from the tarball and install them\r
150 in a location that is accessible to qemu processes (this may depend on your\r
7628b0f5 151 SELinux configuration, for example):\r
152\r
153 qemu-VERSION/pc-bios/efi-e1000.rom\r
154 qemu-VERSION/pc-bios/efi-ne2k_pci.rom\r
155 qemu-VERSION/pc-bios/efi-pcnet.rom\r
156 qemu-VERSION/pc-bios/efi-rtl8139.rom\r
157 qemu-VERSION/pc-bios/efi-virtio.rom\r
158\r
159 - extend the NIC's -device option on the qemu command line with a matching\r
160 "romfile=" optarg:\r
161\r
162 -device e1000,...,romfile=/full/path/to/efi-e1000.rom\r
163 -device ne2k_pci,...,romfile=/full/path/to/efi-ne2k_pci.rom\r
164 -device pcnet,...,romfile=/full/path/to/efi-pcnet.rom\r
165 -device rtl8139,...,romfile=/full/path/to/efi-rtl8139.rom\r
166 -device virtio-net-pci,...,romfile=/full/path/to/efi-virtio.rom\r
167\r
7a1f5947
LE
168* Independently of the iPXE NIC drivers, the default OVMF build provides a\r
169 basic virtio-net driver, located in OvmfPkg/VirtioNetDxe.\r
170\r
171* Also independently of the iPXE NIC drivers, Intel's proprietary E1000 NIC\r
172 driver (PROEFI) can be embedded in the OVMF image at build time:\r
7628b0f5 173\r
174 - Download UEFI drivers for the e1000 NIC\r
175 - http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=17515&lang=eng\r
176 - Install the drivers into a directory called Intel3.5 in your WORKSPACE.\r
177\r
178 - Include the driver in OVMF during the build:\r
179 - Add "-D E1000_ENABLE -D FD_SIZE_2MB" to your build command,\r
180 - For example: "build -D E1000_ENABLE -D FD_SIZE_2MB".\r
aed8e2ec 181\r
7a1f5947
LE
182* When a matching iPXE driver is configured for a NIC as described above, it\r
183 takes priority over other drivers that could possibly drive the card too:\r
184\r
185 | e1000 ne2k_pci pcnet rtl8139 virtio-net-pci\r
186 -------------+------------------------------------------------\r
187 iPXE | x x x x x\r
188 VirtioNetDxe | x\r
189 Intel PROEFI | x\r
190\r
e58e5bcd
JJ
191=== OVMF Flash Layout ===\r
192\r
193Like all current IA32/X64 system designs, OVMF's firmware\r
194device (rom/flash) appears in QEMU's physical address space\r
195just below 4GB (0x100000000).\r
196\r
197The layout of the firmware device in memory looks like:\r
198\r
199+--------------------------------------- 4GB (0x100000000)\r
200| VTF0 (16-bit reset code) and OVMF SEC\r
201| (SECFV)\r
202+--------------------------------------- varies based on flash size\r
203|\r
204| Compressed main firmware image\r
205| (FVMAIN_COMPACT)\r
206|\r
207+--------------------------------------- base + 0x20000\r
208| Fault-tolerant write (FTW)\r
209| Spare blocks (64KB/0x10000)\r
210+--------------------------------------- base + 0x10000\r
211| FTW Work block (4KB/0x1000)\r
212+--------------------------------------- base + 0x0f000\r
213| Event log area (4KB/0x1000)\r
214+--------------------------------------- base + 0x0e000\r
215| Non-volatile variable storage\r
216| area (56KB/0xe000)\r
217+--------------------------------------- base address\r
218\r
219OVMF supports building a 1MB or a 2MB flash image. The base address for\r
220a 1MB image in QEMU physical memory is 0xfff00000. The base address for\r
221a 2MB image is 0xffe00000.\r
222\r
223The code in SECFV locates FVMAIN_COMPACT, and decompresses the\r
224main firmware (MAINFV) into RAM memory at address 0x800000. The\r
225remaining OVMF firmware then uses this decompressed firmware\r
226volume image.\r
227\r
0b5a5022 228=== UNIXGCC Debug ===\r
229\r
230If you build with the UNIXGCC toolchain, then debugging will be disabled\r
231due to larger image sizes being produced by the UNIXGCC toolchain. The\r
232first choice recommendation is to use GCC44 or newer instead.\r
233\r
234If you must use UNIXGCC, then you can override the build options for\r
235particular libraries and modules in the .dsc to re-enable debugging\r
236selectively. For example:\r
237 [Components]\r
238 OvmfPkg/Library/PlatformBdsLib/PlatformBdsLib.inf {\r
239 <BuildOptions>\r
240 GCC:*_*_*_CC_FLAGS = -UMDEPKG_NDEBUG\r
241 }\r
242 IntelFrameworkModulePkg/Universal/BdsDxe/BdsDxe.inf {\r
243 <BuildOptions>\r
244 GCC:*_*_*_CC_FLAGS = -UMDEPKG_NDEBUG\r
245 }\r
246\r
90803342
LE
247=== UEFI Windows 7 & Windows 2008 Server ===\r
248\r
249* One of the '-vga std' and '-vga qxl' QEMU options should be used.\r
250* Only one video mode, 1024x768x32, is supported at OS runtime.\r
251* The '-vga qxl' QEMU option is recommended. After booting the installed\r
252 guest OS, select the video card in Device Manager, and upgrade its driver\r
253 to the QXL XDDM one. Download location:\r
254 <http://www.spice-space.org/download.html>, Guest | Windows binaries.\r
255 This enables further resolutions at OS runtime, and provides S3\r
256 (suspend/resume) capability.\r