1 | ## @file
|
---|
2 | # Debug Agent library instance for SMM modules.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # This program and the accompanying materials
|
---|
7 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
8 | # which accompanies this distribution. The full text of the license may be found at
|
---|
9 | # http://opensource.org/licenses/bsd-license.php.
|
---|
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 | #
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = SecDebugAgentLib
|
---|
19 | FILE_GUID = CB07D74C-598F-4268-A5D1-644FB4A481E8
|
---|
20 | MODULE_TYPE = DXE_SMM_DRIVER
|
---|
21 | VERSION_STRING = 0.7
|
---|
22 | LIBRARY_CLASS = DebugAgentLib|DXE_SMM_DRIVER
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources.common]
|
---|
31 | SmmDebugAgent/SmmDebugAgentLib.c
|
---|
32 | SmmDebugAgent/SmmDebugAgentLib.h
|
---|
33 | DebugAgentCommon/DebugAgent.c
|
---|
34 | DebugAgentCommon/DebugAgent.h
|
---|
35 | DebugAgentCommon/DebugTimer.c
|
---|
36 | DebugAgentCommon/DebugTimer.h
|
---|
37 | DebugAgentCommon/DebugMp.c
|
---|
38 | DebugAgentCommon/DebugMp.h
|
---|
39 |
|
---|
40 | [Sources.Ia32]
|
---|
41 | DebugAgentCommon/Ia32/AsmFuncs.S | GCC
|
---|
42 | DebugAgentCommon/Ia32/AsmFuncs.asm | MSFT
|
---|
43 | DebugAgentCommon/Ia32/ArchDebugSupport.h
|
---|
44 | DebugAgentCommon/Ia32/ArchDebugSupport.c
|
---|
45 | DebugAgentCommon/Ia32/ArchReadGroupRegister.c
|
---|
46 | DebugAgentCommon/Ia32/ArchRegisters.h
|
---|
47 | DebugAgentCommon/Ia32/DebugException.h
|
---|
48 |
|
---|
49 | [Sources.X64]
|
---|
50 | DebugAgentCommon/X64/AsmFuncs.S | GCC
|
---|
51 | DebugAgentCommon/X64/AsmFuncs.asm | MSFT
|
---|
52 | DebugAgentCommon/X64/ArchDebugSupport.h
|
---|
53 | DebugAgentCommon/X64/ArchDebugSupport.c
|
---|
54 | DebugAgentCommon/X64/ArchReadGroupRegister.c
|
---|
55 | DebugAgentCommon/X64/ArchRegisters.h
|
---|
56 | DebugAgentCommon/X64/DebugException.h
|
---|
57 |
|
---|
58 | [Packages]
|
---|
59 | MdePkg/MdePkg.dec
|
---|
60 | MdeModulePkg/MdeModulePkg.dec
|
---|
61 | UefiCpuPkg/UefiCpuPkg.dec
|
---|
62 | SourceLevelDebugPkg/SourceLevelDebugPkg.dec
|
---|
63 |
|
---|
64 | [LibraryClasses]
|
---|
65 | BaseLib
|
---|
66 | BaseMemoryLib
|
---|
67 | ResetSystemLib
|
---|
68 | IoLib
|
---|
69 | DebugCommunicationLib
|
---|
70 | UefiLib
|
---|
71 | PcdLib
|
---|
72 | SynchronizationLib
|
---|
73 | LocalApicLib
|
---|
74 |
|
---|
75 | [Guids]
|
---|
76 | gEfiDebugAgentGuid ## CONSUMES ## Configuration Table
|
---|
77 |
|
---|
78 | [Pcd]
|
---|
79 | gEfiMdePkgTokenSpaceGuid.PcdFSBClock ## CONSUMES
|
---|
80 | gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdExceptionsIgnoredByDebugger ## CONSUMES
|
---|
81 |
|
---|