VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/DevEFI.h@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.0 KB
Line 
1/* $Id: DevEFI.h 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * EFI for VirtualBox Common Definitions.
4 *
5 * WARNING: This header is used by both firmware and VBox device,
6 * thus don't put anything here but numeric constants or helper
7 * inline functions.
8 */
9
10/*
11 * Copyright (C) 2009-2022 Oracle Corporation
12 *
13 * This file is part of VirtualBox Open Source Edition (OSE), as
14 * available from http://www.virtualbox.org. This file is free software;
15 * you can redistribute it and/or modify it under the terms of the GNU
16 * General Public License (GPL) as published by the Free Software
17 * Foundation, in version 2 as it comes in the "COPYING" file of the
18 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
19 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
20 *
21 * The contents of this file may alternatively be used under the terms
22 * of the Common Development and Distribution License Version 1.0
23 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
24 * VirtualBox OSE distribution, in which case the provisions of the
25 * CDDL are applicable instead of those of the GPL.
26 *
27 * You may elect to license modified versions of this file under the
28 * terms and conditions of either the GPL or the CDDL or both.
29 */
30
31#ifndef VBOX_INCLUDED_SRC_EFI_DevEFI_h
32#define VBOX_INCLUDED_SRC_EFI_DevEFI_h
33#ifndef RT_WITHOUT_PRAGMA_ONCE
34# pragma once
35#endif
36
37/** @defgroup grp_devefi DevEFI <-> Firmware Interfaces
38 * @{
39 */
40
41/** The base of the I/O ports used for interaction between the EFI firmware and DevEFI. */
42#define EFI_PORT_BASE 0xEF10 /**< @todo r=klaus stupid choice which causes trouble with PCI resource allocation in complex bridge setups, change to 0x0400 with appropriate saved state and reset handling */
43/** The number of ports. */
44#define EFI_PORT_COUNT 0x0008
45
46
47/** Information querying.
48 * 32-bit write sets the info index and resets the reading, see EfiInfoIndex.
49 * 32-bit read returns the size of the info (in bytes).
50 * 8-bit reads returns the info as a byte sequence. */
51#define EFI_INFO_PORT (EFI_PORT_BASE+0x0)
52/**
53 * Information requests.
54 */
55typedef enum
56{
57 EFI_INFO_INDEX_INVALID = 0,
58 EFI_INFO_INDEX_VOLUME_BASE,
59 EFI_INFO_INDEX_VOLUME_SIZE,
60 EFI_INFO_INDEX_TEMPMEM_BASE,
61 EFI_INFO_INDEX_TEMPMEM_SIZE,
62 EFI_INFO_INDEX_STACK_BASE,
63 EFI_INFO_INDEX_STACK_SIZE,
64 EFI_INFO_INDEX_BOOT_ARGS,
65 EFI_INFO_INDEX_DEVICE_PROPS,
66 EFI_INFO_INDEX_FSB_FREQUENCY,
67 EFI_INFO_INDEX_CPU_FREQUENCY,
68 EFI_INFO_INDEX_TSC_FREQUENCY,
69 EFI_INFO_INDEX_GRAPHICS_MODE,
70 EFI_INFO_INDEX_HORIZONTAL_RESOLUTION,
71 EFI_INFO_INDEX_VERTICAL_RESOLUTION,
72 EFI_INFO_INDEX_MCFG_BASE,
73 EFI_INFO_INDEX_MCFG_SIZE,
74 EFI_INFO_INDEX_APIC_MODE,
75 EFI_INFO_INDEX_END
76} EfiInfoIndex;
77
78/** @name APIC mode defines as returned by EFI_INFO_INDEX_APIC_MODE
79 * @{ */
80#define EFI_APIC_MODE_DISABLED 0
81#define EFI_APIC_MODE_APIC 1
82#define EFI_APIC_MODE_X2APIC 2
83/** @} */
84
85/** Panic port.
86 * Write causes action to be taken according to the value written,
87 * see the EFI_PANIC_CMD_* defines below.
88 * Reading from the port has no effect. */
89#define EFI_PANIC_PORT (EFI_PORT_BASE+0x1)
90
91/** @defgroup grp_devefi_panic_cmd Panic Commands for EFI_PANIC_PORT
92 * @{ */
93/** Used by the EfiThunk.asm to signal ORG inconsistency. */
94#define EFI_PANIC_CMD_BAD_ORG 1
95/** Used by the EfiThunk.asm to signal unexpected trap or interrupt. */
96#define EFI_PANIC_CMD_THUNK_TRAP 2
97/** Starts a panic message.
98 * Makes sure the panic message buffer is empty. */
99#define EFI_PANIC_CMD_START_MSG 3
100/** Ends a panic message and enters guru meditation state. */
101#define EFI_PANIC_CMD_END_MSG 4
102/** The first panic message command.
103 * The low byte of the command is the char to be added to the panic message. */
104#define EFI_PANIC_CMD_MSG_FIRST 0x4201
105/** The last panic message command. */
106#define EFI_PANIC_CMD_MSG_LAST 0x427f
107/** Makes a panic message command from a char. */
108#define EFI_PANIC_CMD_MSG_FROM_CHAR(ch) (0x4200 | ((ch) & 0x7f) )
109/** Extracts the char from a panic message command. */
110#define EFI_PANIC_CMD_MSG_GET_CHAR(u32) ((u32) & 0x7f)
111/** @} */
112
113/** Undefined port. */
114#define EFI_PORT_UNDEFINED (EFI_PORT_BASE+0x2)
115
116/** Debug logging.
117 * The chars written goes to the log.
118 * Reading has no effect.
119 * @remarks The port number is the same as on of those used by the PC BIOS. */
120#define EFI_DEBUG_PORT (EFI_PORT_BASE+0x3)
121
122#define VBOX_EFI_DEBUG_BUFFER 512
123/** The top of the EFI stack.
124 * The firmware expects a 128KB stack.
125 * @todo Move this to 1MB + 128KB and drop the stack relocation the firmware
126 * does. It expects the stack to be within the temporary memory that
127 * SEC hands to PEI and the VBoxAutoScan PEIM reports. */
128#define VBOX_EFI_TOP_OF_STACK 0x300000
129
130#define EFI_PORT_VARIABLE_OP (EFI_PORT_BASE+0x4)
131#define EFI_PORT_VARIABLE_PARAM (EFI_PORT_BASE+0x5)
132
133#define EFI_VARIABLE_OP_QUERY 0xdead0001
134#define EFI_VARIABLE_OP_QUERY_NEXT 0xdead0002
135#define EFI_VARIABLE_OP_QUERY_REWIND 0xdead0003
136#define EFI_VARIABLE_OP_ADD 0xdead0010
137
138#define EFI_VARIABLE_OP_STATUS_OK 0xcafe0000
139#define EFI_VARIABLE_OP_STATUS_ERROR 0xcafe0001
140#define EFI_VARIABLE_OP_STATUS_NOT_FOUND 0xcafe0002
141#define EFI_VARIABLE_OP_STATUS_WP 0xcafe0003
142#define EFI_VARIABLE_OP_STATUS_BSY 0xcafe0010
143
144/** The max number of variables allowed. */
145#define EFI_VARIABLE_MAX 128
146/** The max variable name length (in bytes, including the zero terminator). */
147#define EFI_VARIABLE_NAME_MAX 1024
148/** The max value length (in bytes). */
149#define EFI_VARIABLE_VALUE_MAX 1024
150
151typedef enum
152{
153 EFI_VM_VARIABLE_OP_START = 0,
154 EFI_VM_VARIABLE_OP_RESERVED_USED_TO_BE_END,
155 EFI_VM_VARIABLE_OP_RESERVED_USED_TO_BE_INDEX,
156 EFI_VM_VARIABLE_OP_GUID,
157 EFI_VM_VARIABLE_OP_ATTRIBUTE,
158 EFI_VM_VARIABLE_OP_NAME,
159 EFI_VM_VARIABLE_OP_NAME_LENGTH,
160 EFI_VM_VARIABLE_OP_VALUE,
161 EFI_VM_VARIABLE_OP_VALUE_LENGTH,
162 EFI_VM_VARIABLE_OP_ERROR,
163 EFI_VM_VARIABLE_OP_NAME_UTF16,
164 EFI_VM_VARIABLE_OP_NAME_LENGTH_UTF16,
165 EFI_VM_VARIABLE_OP_MAX,
166 EFI_VM_VARIABLE_OP_32BIT_HACK = 0x7fffffff
167} EFIVAROP;
168
169
170/** Debug point. */
171#define EFI_PORT_DEBUG_POINT (EFI_PORT_BASE + 0x6)
172
173/**
174 * EFI debug points.
175 */
176typedef enum EFIDBGPOINT
177{
178 /** Invalid. */
179 EFIDBGPOINT_INVALID = 0,
180 /** DEBUG_AGENT_INIT_PREMEM_SEC. */
181 EFIDBGPOINT_SEC_PREMEM = 1,
182 /** DEBUG_AGENT_INIT_POST_SEC. */
183 EFIDBGPOINT_SEC_POSTMEM,
184 /** DEBUG_AGENT_INIT_DXE_CORE. */
185 EFIDBGPOINT_DXE_CORE,
186 /** DEBUG_AGENT_INIT_. */
187 EFIDBGPOINT_SMM,
188 /** DEBUG_AGENT_INIT_ENTER_SMI. */
189 EFIDBGPOINT_SMI_ENTER,
190 /** DEBUG_AGENT_INIT_EXIT_SMI. */
191 EFIDBGPOINT_SMI_EXIT,
192 /** DEBUG_AGENT_INIT_S3. */
193 EFIDBGPOINT_GRAPHICS,
194 /** DEBUG_AGENT_INIT_DXE_AP. */
195 EFIDBGPOINT_DXE_AP,
196 /** End of valid points. */
197 EFIDBGPOINT_END,
198 /** Blow up the type to 32-bits. */
199 EFIDBGPOINT_32BIT_HACK = 0x7fffffff
200} EFIDBGPOINT;
201
202
203/** EFI image load or unload event. All writes are 32-bit writes. */
204#define EFI_PORT_IMAGE_EVENT (EFI_PORT_BASE + 0x7)
205
206/** @defgroup grp_devefi_image_evt EFI Image Events (EFI_PORT_IMAGE_EVENT).
207 *
208 * The lower 8-bit of the values written to EFI_PORT_IMAGE_EVENT can be seen as
209 * the command. The start and complete commands does not have any additional
210 * payload. The other commands uses bit 8 thru 23 or 8 thru 15 to pass a value.
211 *
212 * @{ */
213
214/** The command mask. */
215#define EFI_IMAGE_EVT_CMD_MASK UINT32_C(0x000000ff)
216/** Get the payload value. */
217#define EFI_IMAGE_EVT_GET_PAYLOAD(a_u32) ((a_u32) >> 8)
218/** Get the payload value as unsigned 16-bit. */
219#define EFI_IMAGE_EVT_GET_PAYLOAD_U16(a_u32) ( EFI_IMAGE_EVT_GET_PAYLOAD(a_u32) & UINT16_MAX )
220/** Get the payload value as unsigned 8-bit. */
221#define EFI_IMAGE_EVT_GET_PAYLOAD_U8(a_u32) ( EFI_IMAGE_EVT_GET_PAYLOAD(a_u32) & UINT8_MAX )
222/** Combines a command and a payload value. */
223#define EFI_IMAGE_EVT_MAKE(a_uCmd, a_uPayload) ( ((a_uCmd) & UINT32_C(0xff)) | (uint32_t)((a_uPayload) << 8) )
224
225/** Invalid. */
226#define EFI_IMAGE_EVT_CMD_INVALID UINT32_C(0x00000000)
227/** The event is complete. */
228#define EFI_IMAGE_EVT_CMD_COMPLETE UINT32_C(0x00000001)
229/** Starts a 32-bit load event. Requires name and address, size is optional. */
230#define EFI_IMAGE_EVT_CMD_START_LOAD32 UINT32_C(0x00000002)
231/** Starts a 64-bit load event. Requires name and address, size is optional. */
232#define EFI_IMAGE_EVT_CMD_START_LOAD64 UINT32_C(0x00000003)
233/** Starts a 32-bit unload event. Requires name and address. */
234#define EFI_IMAGE_EVT_CMD_START_UNLOAD32 UINT32_C(0x00000004)
235/** Starts a 64-bit unload event. Requires name and address. */
236#define EFI_IMAGE_EVT_CMD_START_UNLOAD64 UINT32_C(0x00000005)
237/** Starts a 32-bit relocation event. RRequires new and old base address. */
238#define EFI_IMAGE_EVT_CMD_START_RELOC32 UINT32_C(0x0000000A)
239/** Starts a 64-bit relocation event. Requires new and old base address. */
240#define EFI_IMAGE_EVT_CMD_START_RELOC64 UINT32_C(0x0000000B)
241
242/** The command for writing to the second address register (64-bit).
243 * Takes a 16-bit payload value. The register value is shifted 16-bits
244 * to the left and then the payload is ORed in. */
245#define EFI_IMAGE_EVT_CMD_ADDR0 UINT32_C(0x00000006)
246/** The command for writing to the second address register (64-bit).
247 * Takes a 16-bit payload value. The register value is shifted 16-bits
248 * to the left and then the payload is ORed in. */
249#define EFI_IMAGE_EVT_CMD_ADDR1 UINT32_C(0x00000007)
250/** The command for writing to the first size register (64-bit).
251 * Takes a 16-bit payload value. The register value is shifted 16-bits
252 * to the left and then the payload is ORed in. */
253#define EFI_IMAGE_EVT_CMD_SIZE0 UINT32_C(0x00000008)
254/** The command for appending a character to the module name.
255 * Takes a 7-bit payload value that. The value is appended to the field if
256 * there is room. */
257#define EFI_IMAGE_EVT_CMD_NAME UINT32_C(0x00000009)
258
259/** @} */
260
261
262/** @} */
263
264#endif /* !VBOX_INCLUDED_SRC_EFI_DevEFI_h */
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