summaryrefslogtreecommitdiffstats
path: root/SourceLevelDebugPkg/Include/SoftDebuggerDefinitions.h
blob: 4e2b638227d498a497beb78cc2b9143be010e122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/** @file
  Soft Debugger defintions. The definitions will also be used as part
  of debug transfer protocol. It is only intended to be used by Debug
  related module implementation.

  Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
  This program and the accompanying materials
  are licensed and made available under the terms and conditions of the BSD License
  which accompanies this distribution.  The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php.

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#ifndef __SOFT_DEBUGGER_DEFINITIONS_H__
#define __SOFT_DEBUGGER_DEFINITIONS_H__

//
// Definition for processor mode (IA16, IA32, X64, ...)
//
#define SOFT_DEBUGGER_PROCESSOR_IA16        0
#define SOFT_DEBUGGER_PROCESSOR_IA32        1
#define SOFT_DEBUGGER_PROCESSOR_X64         2

//
// Break cause defintions
//
#define SOFT_DEBUGGER_BREAK_CAUSE_UNKNOWN        0
#define SOFT_DEBUGGER_BREAK_CAUSE_HW_BREAKPOINT  1
#define SOFT_DEBUGGER_BREAK_CAUSE_STEPPING       2
#define SOFT_DEBUGGER_BREAK_CAUSE_SW_BREAKPOINT  3
#define SOFT_DEBUGGER_BREAK_CAUSE_USER_HALT      4
#define SOFT_DEBUGGER_BREAK_CAUSE_IMAGE_LOAD     5
#define SOFT_DEBUGGER_BREAK_CAUSE_IMAGE_UNLOAD   6
#define SOFT_DEBUGGER_BREAK_CAUSE_SYSTEM_RESET   7
#define SOFT_DEBUGGER_BREAK_CAUSE_EXCEPTION      8

#define SOFT_DEBUGGER_SETTING_SMM_ENTRY_BREAK    1

#endif