2 DebugSupport protocol and supporting definitions as defined in the EFI 1.1
5 The DebugSupport protocol is used by source level debuggers to abstract the
6 processor and handle context save and restore operations.
8 Copyright (c) 2006, Intel Corporation
9 All rights reserved. This program and the accompanying materials
10 are licensed and made available under the terms and conditions of the BSD License
11 which accompanies this distribution. The full text of the license may be found at
12 http://opensource.org/licenses/bsd-license.php
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 Module Name: DebugSupport.h
21 #ifndef __DEBUG_SUPPORT_H__
22 #define __DEBUG_SUPPORT_H__
24 typedef struct _EFI_DEBUG_SUPPORT_PROTOCOL EFI_DEBUG_SUPPORT_PROTOCOL
;
27 // Debug Support protocol {2755590C-6F3C-42FA-9EA4-A3BA543CDA25}
29 #define EFI_DEBUG_SUPPORT_PROTOCOL_GUID \
31 0x2755590C, 0x6F3C, 0x42FA, {0x9E, 0xA4, 0xA3, 0xBA, 0x54, 0x3C, 0xDA, 0x25 } \
35 // Debug Support definitions
37 typedef INTN EFI_EXCEPTION_TYPE
;
40 // IA-32 processor exception types
42 #define EXCEPT_IA32_DIVIDE_ERROR 0
43 #define EXCEPT_IA32_DEBUG 1
44 #define EXCEPT_IA32_NMI 2
45 #define EXCEPT_IA32_BREAKPOINT 3
46 #define EXCEPT_IA32_OVERFLOW 4
47 #define EXCEPT_IA32_BOUND 5
48 #define EXCEPT_IA32_INVALID_OPCODE 6
49 #define EXCEPT_IA32_DOUBLE_FAULT 8
50 #define EXCEPT_IA32_INVALID_TSS 10
51 #define EXCEPT_IA32_SEG_NOT_PRESENT 11
52 #define EXCEPT_IA32_STACK_FAULT 12
53 #define EXCEPT_IA32_GP_FAULT 13
54 #define EXCEPT_IA32_PAGE_FAULT 14
55 #define EXCEPT_IA32_FP_ERROR 16
56 #define EXCEPT_IA32_ALIGNMENT_CHECK 17
57 #define EXCEPT_IA32_MACHINE_CHECK 18
58 #define EXCEPT_IA32_SIMD 19
61 // IA-32 processor context definition
65 // FP / MMX / XMM registers (see fxrstor instruction definition)
78 UINT8 St0Mm0
[10], Reserved3
[6];
79 UINT8 St0Mm1
[10], Reserved4
[6];
80 UINT8 St0Mm2
[10], Reserved5
[6];
81 UINT8 St0Mm3
[10], Reserved6
[6];
82 UINT8 St0Mm4
[10], Reserved7
[6];
83 UINT8 St0Mm5
[10], Reserved8
[6];
84 UINT8 St0Mm6
[10], Reserved9
[6];
85 UINT8 St0Mm7
[10], Reserved10
[6];
86 UINT8 Reserved11
[22 * 16];
87 } EFI_FX_SAVE_STATE_IA32
;
91 EFI_FX_SAVE_STATE_IA32 FxSaveState
;
123 } EFI_SYSTEM_CONTEXT_IA32
;
126 // IPF processor exception types
128 #define EXCEPT_IPF_VHTP_TRANSLATION 0
129 #define EXCEPT_IPF_INSTRUCTION_TLB 1
130 #define EXCEPT_IPF_DATA_TLB 2
131 #define EXCEPT_IPF_ALT_INSTRUCTION_TLB 3
132 #define EXCEPT_IPF_ALT_DATA_TLB 4
133 #define EXCEPT_IPF_DATA_NESTED_TLB 5
134 #define EXCEPT_IPF_INSTRUCTION_KEY_MISSED 6
135 #define EXCEPT_IPF_DATA_KEY_MISSED 7
136 #define EXCEPT_IPF_DIRTY_BIT 8
137 #define EXCEPT_IPF_INSTRUCTION_ACCESS_BIT 9
138 #define EXCEPT_IPF_DATA_ACCESS_BIT 10
139 #define EXCEPT_IPF_BREAKPOINT 11
140 #define EXCEPT_IPF_EXTERNAL_INTERRUPT 12
144 #define EXCEPT_IPF_PAGE_NOT_PRESENT 20
145 #define EXCEPT_IPF_KEY_PERMISSION 21
146 #define EXCEPT_IPF_INSTRUCTION_ACCESS_RIGHTS 22
147 #define EXCEPT_IPF_DATA_ACCESS_RIGHTS 23
148 #define EXCEPT_IPF_GENERAL_EXCEPTION 24
149 #define EXCEPT_IPF_DISABLED_FP_REGISTER 25
150 #define EXCEPT_IPF_NAT_CONSUMPTION 26
151 #define EXCEPT_IPF_SPECULATION 27
155 #define EXCEPT_IPF_DEBUG 29
156 #define EXCEPT_IPF_UNALIGNED_REFERENCE 30
157 #define EXCEPT_IPF_UNSUPPORTED_DATA_REFERENCE 31
158 #define EXCEPT_IPF_FP_FAULT 32
159 #define EXCEPT_IPF_FP_TRAP 33
160 #define EXCEPT_IPF_LOWER_PRIVILEGE_TRANSFER_TRAP 34
161 #define EXCEPT_IPF_TAKEN_BRANCH 35
162 #define EXCEPT_IPF_SINGLE_STEP 36
166 #define EXCEPT_IPF_IA32_EXCEPTION 45
167 #define EXCEPT_IPF_IA32_INTERCEPT 46
168 #define EXCEPT_IPF_IA32_INTERRUPT 47
171 // IPF processor context definition
175 // The first reserved field is necessary to preserve alignment for the correct
176 // bits in UNAT and to insure F2 is 16 byte aligned..
254 // application registers
320 // virtual registers - nat bits for R1-R31
324 } EFI_SYSTEM_CONTEXT_IPF
;
327 // EBC processor exception types
329 #define EXCEPT_EBC_UNDEFINED 0
330 #define EXCEPT_EBC_DIVIDE_ERROR 1
331 #define EXCEPT_EBC_DEBUG 2
332 #define EXCEPT_EBC_BREAKPOINT 3
333 #define EXCEPT_EBC_OVERFLOW 4
334 #define EXCEPT_EBC_INVALID_OPCODE 5 // opcode out of range
335 #define EXCEPT_EBC_STACK_FAULT 6
336 #define EXCEPT_EBC_ALIGNMENT_CHECK 7
337 #define EXCEPT_EBC_INSTRUCTION_ENCODING 8 // malformed instruction
338 #define EXCEPT_EBC_BAD_BREAK 9 // BREAK 0 or undefined BREAK
339 #define EXCEPT_EBC_STEP 10 // to support debug stepping
341 // For coding convenience, define the maximum valid EBC exception.
343 #define MAX_EBC_EXCEPTION EXCEPT_EBC_STEP
346 // EBC processor context definition
360 } EFI_SYSTEM_CONTEXT_EBC
;
363 // Universal EFI_SYSTEM_CONTEXT definition
366 EFI_SYSTEM_CONTEXT_EBC
*SystemContextEbc
;
367 EFI_SYSTEM_CONTEXT_IA32
*SystemContextIa32
;
368 EFI_SYSTEM_CONTEXT_IPF
*SystemContextIpf
;
369 } EFI_SYSTEM_CONTEXT
;
372 // DebugSupport callback function prototypes
376 Registers and enables an exception callback function for the specified exception.
378 @param ExceptionType Exception types in EBC, IA-32, X64, or IPF
379 @param SystemContext Exception content.
384 (*EFI_EXCEPTION_CALLBACK
) (
385 IN EFI_EXCEPTION_TYPE ExceptionType
,
386 IN OUT EFI_SYSTEM_CONTEXT SystemContext
390 Registers and enables the on-target debug agent¡¯s periodic entry point.
392 @param SystemContext Exception content.
397 (*EFI_PERIODIC_CALLBACK
) (
398 IN OUT EFI_SYSTEM_CONTEXT SystemContext
402 // Machine type definition
405 IsaIa32
= IMAGE_FILE_MACHINE_I386
, // 0x014C
406 IsaX64
= IMAGE_FILE_MACHINE_X64
, // 0x8664
407 IsaIpf
= IMAGE_FILE_MACHINE_IA64
, // 0x0200
408 IsaEbc
= IMAGE_FILE_MACHINE_EBC
// 0x0EBC
409 } EFI_INSTRUCTION_SET_ARCHITECTURE
;
413 // DebugSupport member function definitions
417 Returns the maximum value that may be used for the ProcessorIndex parameter in
418 RegisterPeriodicCallback() and RegisterExceptionCallback().
420 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.
421 @param MaxProcessorIndex Pointer to a caller-allocated UINTN in which the maximum supported
422 processor index is returned.
424 @retval EFI_SUCCESS The function completed successfully.
429 (EFIAPI
*EFI_GET_MAXIMUM_PROCESSOR_INDEX
) (
430 IN EFI_DEBUG_SUPPORT_PROTOCOL
*This
,
431 OUT UINTN
*MaxProcessorIndex
435 Registers a function to be called back periodically in interrupt context.
437 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.
438 @param ProcessorIndex Specifies which processor the callback function applies to.
439 @param PeriodicCallback A pointer to a function of type PERIODIC_CALLBACK that is the main
440 periodic entry point of the debug agent.
442 @retval EFI_SUCCESS The function completed successfully.
443 @retval EFI_ALREADY_STARTED Non-NULL PeriodicCallback parameter when a callback
444 function was previously registered.
445 @retval EFI_OUT_OF_RESOURCES System has insufficient memory resources to register new callback
451 (EFIAPI
*EFI_REGISTER_PERIODIC_CALLBACK
) (
452 IN EFI_DEBUG_SUPPORT_PROTOCOL
*This
,
453 IN UINTN ProcessorIndex
,
454 IN EFI_PERIODIC_CALLBACK PeriodicCallback
458 Registers a function to be called when a given processor exception occurs.
460 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.
461 @param ProcessorIndex Specifies which processor the callback function applies to.
462 @param PeriodicCallback A pointer to a function of type EXCEPTION_CALLBACK that is called
463 when the processor exception specified by ExceptionType occurs.
464 @param ExceptionType Specifies which processor exception to hook.
466 @retval EFI_SUCCESS The function completed successfully.
467 @retval EFI_ALREADY_STARTED Non-NULL PeriodicCallback parameter when a callback
468 function was previously registered.
469 @retval EFI_OUT_OF_RESOURCES System has insufficient memory resources to register new callback
475 (EFIAPI
*EFI_REGISTER_EXCEPTION_CALLBACK
) (
476 IN EFI_DEBUG_SUPPORT_PROTOCOL
*This
,
477 IN UINTN ProcessorIndex
,
478 IN EFI_EXCEPTION_CALLBACK ExceptionCallback
,
479 IN EFI_EXCEPTION_TYPE ExceptionType
483 Invalidates processor instruction cache for a memory range. Subsequent execution in this range
484 causes a fresh memory fetch to retrieve code to be executed.
486 @param This A pointer to the EFI_DEBUG_SUPPORT_PROTOCOL instance.
487 @param ProcessorIndex Specifies which processor¡¯s instruction cache is to be invalidated.
488 @param Start Specifies the physical base of the memory range to be invalidated.
489 @param Length Specifies the minimum number of bytes in the processor¡¯s instruction
492 @retval EFI_SUCCESS The function completed successfully.
497 (EFIAPI
*EFI_INVALIDATE_INSTRUCTION_CACHE
) (
498 IN EFI_DEBUG_SUPPORT_PROTOCOL
*This
,
499 IN UINTN ProcessorIndex
,
505 // DebugSupport protocol definition
507 struct _EFI_DEBUG_SUPPORT_PROTOCOL
{
508 EFI_INSTRUCTION_SET_ARCHITECTURE Isa
;
509 EFI_GET_MAXIMUM_PROCESSOR_INDEX GetMaximumProcessorIndex
;
510 EFI_REGISTER_PERIODIC_CALLBACK RegisterPeriodicCallback
;
511 EFI_REGISTER_EXCEPTION_CALLBACK RegisterExceptionCallback
;
512 EFI_INVALIDATE_INSTRUCTION_CACHE InvalidateInstructionCache
;
515 extern EFI_GUID gEfiDebugSupportProtocolGuid
;