]> git.proxmox.com Git - mirror_edk2.git/blame - SourceLevelDebugPkg/Include/TransferProtocol.h
Fix infinite loop bug in secure boot UI driver.
[mirror_edk2.git] / SourceLevelDebugPkg / Include / TransferProtocol.h
CommitLineData
18b144ea 1/** @file\r
2 Transfer protocol defintions used by debug agent and host. It is only\r
3 intended to be used by Debug related module implementation.\r
4\r
b4ebbaff 5 Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
18b144ea 6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php.\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef __TRANSFER_PROTOCOL_H__\r
17#define __TRANSFER_PROTOCOL_H__\r
18\r
19#include "ProcessorContext.h"\r
93c0bdec 20\r
21//\r
22// Current revision of transfer protocol\r
23//\r
24#define DEBUG_AGENT_REVISION ((0 << 16) | 02)\r
25#define DEBUG_AGENT_CAPABILITIES 0\r
18b144ea 26\r
27//\r
28// Definitions for break command.\r
29//\r
93c0bdec 30#define DEBUG_STARTING_SYMBOL_BREAK (0xFC)\r
31\r
32//\r
33// Definitions for attach command\r
34//\r
35#define DEBUG_STARTING_SYMBOL_ATTACH (0xFA)\r
18b144ea 36\r
37//\r
93c0bdec 38// Definition for starting symbol of a normal debug packet. Choose a non-ASCII to avoid conflict with other serial output.\r
18b144ea 39//\r
40#define DEBUG_STARTING_SYMBOL_NORMAL (0xFE)\r
41\r
42\r
43#pragma pack(1)\r
44\r
45//\r
93c0bdec 46// Definition for debug packet header for normal debug packets (not including break/attach command)\r
18b144ea 47//\r
48typedef struct {\r
49 UINT8 StartSymbol;\r
50 UINT8 Command;\r
93c0bdec 51 UINT8 Length; // Length of Debug Packet including header and payload in byte\r
52 UINT8 CheckSum;\r
53} DEBUG_PACKET_HEADER;\r
18b144ea 54\r
55//\r
56// Definition for Command field for debug packets\r
57//\r
58#define DEBUG_COMMAND_REQUEST (0 << 7)\r
59#define DEBUG_COMMAND_RESPONSE (1 << 7)\r
60\r
18b144ea 61//\r
93c0bdec 62// HOST initiated commands\r
63//\r
64#define DEBUG_COMMAND_RESET (DEBUG_COMMAND_REQUEST | 0x00)\r
65#define DEBUG_COMMAND_GO (DEBUG_COMMAND_REQUEST | 0x01)\r
66#define DEBUG_COMMAND_BREAK_CAUSE (DEBUG_COMMAND_REQUEST | 0x02)\r
67#define DEBUG_COMMAND_SET_HW_BREAKPOINT (DEBUG_COMMAND_REQUEST | 0x03)\r
68#define DEBUG_COMMAND_CLEAR_HW_BREAKPOINT (DEBUG_COMMAND_REQUEST | 0x04)\r
69#define DEBUG_COMMAND_SINGLE_STEPPING (DEBUG_COMMAND_REQUEST | 0x05)\r
70#define DEBUG_COMMAND_SET_SW_BREAKPOINT (DEBUG_COMMAND_REQUEST | 0x06)\r
71#define DEBUG_COMMAND_READ_MEMORY (DEBUG_COMMAND_REQUEST | 0x07)\r
72#define DEBUG_COMMAND_WRITE_MEMORY (DEBUG_COMMAND_REQUEST | 0x08)\r
73#define DEBUG_COMMAND_READ_IO (DEBUG_COMMAND_REQUEST | 0x09)\r
74#define DEBUG_COMMAND_WRITE_IO (DEBUG_COMMAND_REQUEST | 0x0A)\r
75#define DEBUG_COMMAND_READ_REGISTER (DEBUG_COMMAND_REQUEST | 0x0B)\r
76#define DEBUG_COMMAND_WRITE_REGISTER (DEBUG_COMMAND_REQUEST | 0x0C)\r
77#define DEBUG_COMMAND_READ_ALL_REGISTERS (DEBUG_COMMAND_REQUEST | 0x0D)\r
78#define DEBUG_COMMAND_ARCH_MODE (DEBUG_COMMAND_REQUEST | 0x0E)\r
79#define DEBUG_COMMAND_READ_MSR (DEBUG_COMMAND_REQUEST | 0x0F)\r
80#define DEBUG_COMMAND_WRITE_MSR (DEBUG_COMMAND_REQUEST | 0x10)\r
81#define DEBUG_COMMAND_SET_DEBUG_SETTING (DEBUG_COMMAND_REQUEST | 0x11)\r
82#define DEBUG_COMMAND_GET_REVISION (DEBUG_COMMAND_REQUEST | 0x12)\r
83#define DEBUG_COMMAND_GET_EXCEPTION (DEBUG_COMMAND_REQUEST | 0x13)\r
84#define DEBUG_COMMAND_SET_VIEWPOINT (DEBUG_COMMAND_REQUEST | 0x14)\r
85#define DEBUG_COMMAND_GET_VIEWPOINT (DEBUG_COMMAND_REQUEST | 0x15)\r
86#define DEBUG_COMMAND_DETACH (DEBUG_COMMAND_REQUEST | 0x16)\r
87#define DEBUG_COMMAND_CPUID (DEBUG_COMMAND_REQUEST | 0x17)\r
88#define DEBUG_COMMAND_SEARCH_SIGNATURE (DEBUG_COMMAND_REQUEST | 0x18)\r
89\r
90//\r
91// TARGET initiated commands\r
92//\r
93#define DEBUG_COMMAND_INIT_BREAK (DEBUG_COMMAND_REQUEST | 0x3F)\r
94#define DEBUG_COMMAND_BREAK_POINT (DEBUG_COMMAND_REQUEST | 0x3E)\r
95#define DEBUG_COMMAND_MEMORY_READY (DEBUG_COMMAND_REQUEST | 0x3D)\r
96#define DEBUG_COMMAND_PRINT_MESSAGE (DEBUG_COMMAND_REQUEST | 0x3C)\r
97\r
98//\r
99// Response commands\r
100//\r
101#define DEBUG_COMMAND_OK (DEBUG_COMMAND_RESPONSE | 0x00)\r
102#define DEBUG_COMMAND_RESEND (DEBUG_COMMAND_RESPONSE | 0x01)\r
103#define DEBUG_COMMAND_ABORT (DEBUG_COMMAND_RESPONSE | 0x02)\r
104//\r
105// The below 2 commands are used when transferring big data (like > ~250 bytes).\r
106// The sequence is:\r
107// HOST TARGET\r
108// Request =>\r
109// <= IN_PROGRESS with partial data\r
110// CONTINUE =>\r
111// (could have multiple IN_PROGRESS and CONTINUE interactions)\r
112// <= OK with the last part of data\r
113// OK (no data as ACK) =>\r
114//\r
115#define DEBUG_COMMAND_IN_PROGRESS (DEBUG_COMMAND_RESPONSE | 0x03)\r
116#define DEBUG_COMMAND_CONTINUE (DEBUG_COMMAND_RESPONSE | 0x04)\r
117//\r
118// The below 2 commands are used to support deferred halt:\r
119// TARGET returns HALT_DEFERRED when it receives a HALT request in inter-active mode.\r
120// TARGET returns HALT_PROCESSED when it receives a GO request and has a pending HALT request.\r
121//\r
122#define DEBUG_COMMAND_HALT_DEFERRED (DEBUG_COMMAND_RESPONSE | 0x05)\r
123#define DEBUG_COMMAND_HALT_PROCESSED (DEBUG_COMMAND_RESPONSE | 0x06)\r
124\r
125#define DEBUG_COMMAND_TIMEOUT (DEBUG_COMMAND_RESPONSE | 0x07)\r
126#define DEBUG_COMMAND_NOT_SUPPORTED (DEBUG_COMMAND_RESPONSE | 0x0F)\r
18b144ea 127\r
128//\r
129// Definition for data field for debug packets\r
130//\r
93c0bdec 131#define DEBUG_DATA_UPPER_LIMIT 0xff // Upper limit for the data size, by the limit of the packet header definition.\r
18b144ea 132\r
93c0bdec 133#define DEBUG_DATA_MAXIMUM_REAL_DATA (DEBUG_DATA_UPPER_LIMIT - sizeof (DEBUG_PACKET_HEADER))\r
18b144ea 134\r
135//\r
136// Response data for DEBUG_COMMAND_BREAK_CAUSE\r
137//\r
138typedef struct {\r
139 UINT8 Cause;\r
140 UINT64 StopAddress;\r
141} DEBUG_DATA_RESPONSE_BREAK_CAUSE;\r
18b144ea 142//\r
143// Break type defintions for DEBUG_DATA_BREAK_CAUSE\r
144//\r
145#define DEBUG_DATA_BREAK_CAUSE_UNKNOWN 0\r
146#define DEBUG_DATA_BREAK_CAUSE_HW_BREAKPOINT 1\r
147#define DEBUG_DATA_BREAK_CAUSE_STEPPING 2\r
148#define DEBUG_DATA_BREAK_CAUSE_SW_BREAKPOINT 3\r
149#define DEBUG_DATA_BREAK_CAUSE_USER_HALT 4\r
150#define DEBUG_DATA_BREAK_CAUSE_IMAGE_LOAD 5\r
151#define DEBUG_DATA_BREAK_CAUSE_IMAGE_UNLOAD 6\r
152#define DEBUG_DATA_BREAK_CAUSE_SYSTEM_RESET 7\r
153#define DEBUG_DATA_BREAK_CAUSE_EXCEPTION 8\r
154#define DEBUG_DATA_BREAK_CAUSE_MEMORY_READY 9\r
155\r
156//\r
157// Response data for DEBUG_COMMAND_ARCH_MODE, defined as SOFT_DEBUGGER_PROCESSOR_...\r
158//\r
159typedef struct {\r
160 UINT8 CpuMode;\r
161} DEBUG_DATA_RESPONSE_ARCH_MODE;\r
18b144ea 162//\r
163// Cpu architecture defintions for DEBUG_DATA_RESPONSE_ARCH_MODE\r
164//\r
165#define DEBUG_DATA_BREAK_CPU_ARCH_IA16 0\r
166#define DEBUG_DATA_BREAK_CPU_ARCH_IA32 1\r
167#define DEBUG_DATA_BREAK_CPU_ARCH_X64 2\r
168\r
18b144ea 169typedef struct {\r
170 UINT8 Length:2; // Refer to below DEBUG_DATA_BREAKPOINT_LENGTH_XX macros\r
171 UINT8 Access:2; // Refer to below DEBUG_DATA_BREAKPOINT_ACCESS_XX macros\r
172 UINT8 Index:2; // Index of debug register\r
173 UINT8 Reserved:2;\r
174} DEBUG_DATA_BREAKPOINT_TYPE;\r
93c0bdec 175#define DEBUG_DATA_BREAKPOINT_MEMORY_ACCESS (0x3)\r
176#define DEBUG_DATA_BREAKPOINT_IO_ACCESS (0x2)\r
177#define DEBUG_DATA_BREAKPOINT_MEMORY_WRITE (0x1)\r
178#define DEBUG_DATA_BREAKPOINT_MEMORY_EXECUTE (0x0)\r
179#define DEBUG_DATA_BREAKPOINT_LENGTH_32 (0x3)\r
180#define DEBUG_DATA_BREAKPOINT_LENGTH_64 (0x2)\r
181#define DEBUG_DATA_BREAKPOINT_LENGTH_16 (0x1)\r
182#define DEBUG_DATA_BREAKPOINT_LENGTH_8 (0x0)\r
18b144ea 183\r
184//\r
93c0bdec 185// Request data for DEBUG_COMMAND_SET_HW_BREAKPOINT\r
18b144ea 186//\r
187typedef struct {\r
188 DEBUG_DATA_BREAKPOINT_TYPE Type;\r
189 UINT64 Address;\r
190} DEBUG_DATA_SET_HW_BREAKPOINT;\r
191\r
192//\r
93c0bdec 193// Request data for DEBUG_COMMAND_CLEAR_HW_BREAKPOINT\r
18b144ea 194//\r
195typedef struct {\r
196 UINT8 IndexMask; // 0x0f will clear all hw breakpoints\r
197} DEBUG_DATA_CLEAR_HW_BREAKPOINT;\r
198\r
199//\r
93c0bdec 200// Request and response data for DEBUG_COMMAND_SET_SW_BREAKPOINT\r
18b144ea 201//\r
202typedef struct {\r
203 UINT64 Address;\r
204} DEBUG_DATA_SET_SW_BREAKPOINT;\r
205\r
18b144ea 206typedef struct {\r
207 UINT8 OriginalData;\r
208} DEBUG_DATA_RESPONSE_SET_SW_BREAKPOINT;\r
209\r
210//\r
93c0bdec 211// Request data for DEBUG_COMMAND_READ_MEMORY\r
18b144ea 212//\r
213typedef struct {\r
214 UINT64 Address;\r
93c0bdec 215 UINT8 Width;\r
18b144ea 216 UINT16 Count;\r
93c0bdec 217} DEBUG_DATA_READ_MEMORY;\r
18b144ea 218\r
219//\r
93c0bdec 220// Request data for DEBUG_COMMAND_WRITE_MEMORY\r
18b144ea 221//\r
222typedef struct {\r
223 UINT64 Address;\r
93c0bdec 224 UINT8 Width;\r
18b144ea 225 UINT16 Count;\r
93c0bdec 226 UINT8 Data[1]; // The actual length is (Width * Count)\r
227} DEBUG_DATA_WRITE_MEMORY;\r
18b144ea 228\r
229//\r
93c0bdec 230// Request and response data for DEBUG_COMMAND_READ_IO\r
18b144ea 231//\r
232typedef struct {\r
93c0bdec 233 UINT64 Port;\r
18b144ea 234 UINT8 Width;\r
235} DEBUG_DATA_READ_IO;\r
236\r
18b144ea 237typedef struct {\r
93c0bdec 238 UINT8 Data[1]; // The actual length depends on the packet header\r
18b144ea 239} DEBUG_DATA_RESPONSE_READ_IO;\r
240\r
241//\r
93c0bdec 242// Request data for DEBUG_COMMAND_WRITE_IO\r
18b144ea 243//\r
244typedef struct {\r
93c0bdec 245 UINT64 Port;\r
18b144ea 246 UINT8 Width;\r
93c0bdec 247 UINT8 Data[1]; // The actual length is Width\r
18b144ea 248} DEBUG_DATA_WRITE_IO;\r
249\r
250//\r
93c0bdec 251// Request data for DEBUG_COMMAND_READ_REGISTER\r
18b144ea 252//\r
253typedef struct {\r
93c0bdec 254 UINT8 Index; // defined as SOFT_DEBUGGER_REGISTER_XX\r
18b144ea 255} DEBUG_DATA_READ_REGISTER;\r
256\r
257//\r
93c0bdec 258// Request data for DEBUG_COMMAND_WRITE_REGISTER\r
18b144ea 259//\r
260typedef struct {\r
93c0bdec 261 UINT8 Index; // defined as SOFT_DEBUGGER_REGISTER_XX\r
262 UINT8 Length;\r
263 UINT8 Data[1]; // The actual length is Length\r
18b144ea 264} DEBUG_DATA_WRITE_REGISTER;\r
265\r
266//\r
93c0bdec 267// Request and response data for DEBUG_COMMAND_READ_MSR\r
18b144ea 268//\r
269typedef struct {\r
270 UINT32 Index;\r
271} DEBUG_DATA_READ_MSR;\r
272\r
18b144ea 273typedef struct {\r
274 UINT64 Value;\r
275} DEBUG_DATA_RESPONSE_READ_MSR;\r
276\r
277//\r
93c0bdec 278// Request data for DEBUG_COMMAND_WRITE_MSR\r
18b144ea 279//\r
280typedef struct {\r
281 UINT32 Index;\r
282 UINT64 Value;\r
283} DEBUG_DATA_WRITE_MSR;\r
284\r
18b144ea 285//\r
286// Response data for DEBUG_COMMAND_GET_REVISION\r
287//\r
288typedef struct {\r
289 UINT32 Revision;\r
290 UINT32 Capabilities;\r
291} DEBUG_DATA_RESPONSE_GET_REVISION;\r
292\r
293//\r
294// Response data for DEBUG_COMMAND_GET_EXCEPTION\r
295//\r
296typedef struct {\r
297 UINT8 ExceptionNum;\r
93c0bdec 298 UINT32 ExceptionData;\r
18b144ea 299} DEBUG_DATA_RESPONSE_GET_EXCEPTION;\r
300\r
18b144ea 301//\r
93c0bdec 302// Request data for DEBUG_DATA_SET_DEBUG_SETTING\r
18b144ea 303//\r
304typedef struct {\r
93c0bdec 305 UINT8 Key;\r
306 UINT8 Value;\r
307} DEBUG_DATA_SET_DEBUG_SETTING;\r
308//\r
309// Supported keys\r
310//\r
311#define DEBUG_AGENT_SETTING_SMM_ENTRY_BREAK 1\r
312#define DEBUG_AGENT_SETTING_PRINT_ERROR_LEVEL 2\r
313//\r
314// Bitmask of print error level for debug message\r
315//\r
316#define DEBUG_AGENT_ERROR BIT0\r
317#define DEBUG_AGENT_WARNING BIT1\r
318#define DEBUG_AGENT_INFO BIT2\r
319#define DEBUG_AGENT_VERBOSE BIT3\r
18b144ea 320\r
321//\r
93c0bdec 322// Request data for DEBUG_COMMAND_SET_VIEWPOINT\r
18b144ea 323//\r
324typedef struct {\r
325 UINT32 ViewPoint; // The index of viewpoint will be set\r
326} DEBUG_DATA_SET_VIEWPOINT;\r
327\r
328//\r
329// Response data for DEBUG_COMMAND_GET_VIEWPOINT\r
330//\r
331typedef struct {\r
332 UINT32 ViewPoint; // The index of viewpoint will be returned\r
333} DEBUG_DATA_RESPONSE_GET_VIEWPOINT;\r
334\r
93c0bdec 335//\r
336// Request and response data for DEBUG_COMMAND_CPUID\r
337//\r
338typedef struct {\r
339 UINT32 Eax; // The value of EAX prior to invoking the CPUID instruction\r
340 UINT32 Ecx; // The value of ECX prior to invoking the CPUID instruction\r
341} DEBUG_DATA_CPUID;\r
342\r
343typedef struct {\r
344 UINT32 Eax; // The value of EAX returned by the CPUID instruction\r
345 UINT32 Ebx; // The value of EBX returned by the CPUID instruction\r
346 UINT32 Ecx; // The value of ECX returned by the CPUID instruction\r
347 UINT32 Edx; // The value of EDX returned by the CPUID instruction\r
348} DEBUG_DATA_RESPONSE_CPUID;\r
18b144ea 349\r
93c0bdec 350//\r
351// Request and response data for DEBUG_COMMAND_SEARCH_SIGNATURE\r
352//\r
353typedef struct {\r
354 UINT64 Start;\r
355 UINT32 Count;\r
356 UINT32 Alignment;\r
357 BOOLEAN Positive; // TRUE to search in higher address memory\r
358 UINT8 DataLength;\r
359 UINT8 Data[1];\r
360} DEBUG_DATA_SEARCH_SIGNATURE;\r
361\r
362typedef struct {\r
363 UINT64 Address; // -1 indicates not found\r
364} DEBUG_DATA_RESPONSE_SEARCH_SIGNATURE;\r
365\r
366#pragma pack()\r
18b144ea 367\r
368#endif\r
369\r