Sync EDKII BaseTools to BaseTools project r1903.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10123 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
138
BaseTools/Source/Python/Eot/EotGlobalData.py
Normal file
138
BaseTools/Source/Python/Eot/EotGlobalData.py
Normal file
@ -0,0 +1,138 @@
|
||||
## @file
|
||||
# This file is used to save global datas
|
||||
#
|
||||
# Copyright (c) 2008 - 2010, Intel Corporation
|
||||
# All rights reserved. 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.
|
||||
#
|
||||
|
||||
from Common.Misc import sdict
|
||||
|
||||
gEFI_SOURCE = ''
|
||||
gEDK_SOURCE = ''
|
||||
gWORKSPACE = ''
|
||||
gSHELL_INF = 'Application\Shell'
|
||||
gMAKE_FILE = ''
|
||||
gDSC_FILE = ''
|
||||
gFV_FILE = []
|
||||
gFV = []
|
||||
gMAP_FILE = []
|
||||
gMap = {}
|
||||
|
||||
|
||||
gDb = ''
|
||||
gIdentifierTableList = []
|
||||
|
||||
# Global macro
|
||||
gMACRO = {}
|
||||
gMACRO['EFI_SOURCE'] = gEFI_SOURCE
|
||||
gMACRO['EDK_SOURCE'] = gEDK_SOURCE
|
||||
gMACRO['SHELL_INF'] = gSHELL_INF
|
||||
gMACRO['CAPSULE_INF'] = ''
|
||||
|
||||
gNOT_FOUND_FILES = []
|
||||
gSOURCE_FILES = []
|
||||
gINF_FILES = {}
|
||||
gDEC_FILES = []
|
||||
|
||||
# Log file for unmatched variables
|
||||
gUN_MATCHED_LOG = 'Log_UnMatched.log'
|
||||
gOP_UN_MATCHED = open(gUN_MATCHED_LOG, 'w+')
|
||||
|
||||
# Log file for all INF files
|
||||
gINF_FILES = 'Log_Inf_File.log'
|
||||
gOP_INF = open(gINF_FILES, 'w+')
|
||||
|
||||
# Log file for not dispatched PEIM/DRIVER
|
||||
gUN_DISPATCHED_LOG = 'Log_UnDispatched.log'
|
||||
gOP_UN_DISPATCHED = open(gUN_DISPATCHED_LOG, 'w+')
|
||||
|
||||
# Log file for unmatched variables in function calling
|
||||
gUN_MATCHED_IN_LIBRARY_CALLING_LOG = 'Log_UnMatchedInLibraryCalling.log'
|
||||
gOP_UN_MATCHED_IN_LIBRARY_CALLING = open(gUN_MATCHED_IN_LIBRARY_CALLING_LOG, 'w+')
|
||||
|
||||
# Log file for order of dispatched PEIM/DRIVER
|
||||
gDISPATCH_ORDER_LOG = 'Log_DispatchOrder.log'
|
||||
gOP_DISPATCH_ORDER = open(gDISPATCH_ORDER_LOG, 'w+')
|
||||
|
||||
# Log file for source files not found
|
||||
gUN_FOUND_FILES = 'Log_UnFoundSourceFiles.log'
|
||||
gOP_UN_FOUND_FILES = open(gUN_FOUND_FILES, 'w+')
|
||||
|
||||
# Log file for found source files
|
||||
gSOURCE_FILES = 'Log_SourceFiles.log'
|
||||
gOP_SOURCE_FILES = open(gSOURCE_FILES, 'w+')
|
||||
|
||||
# Dict for GUID found in DEC files
|
||||
gGuidDict = sdict()
|
||||
|
||||
# Dict for hard coded GUID Macros
|
||||
# {GuidName : [GuidMacro : GuidValue]}
|
||||
gGuidMacroDict = sdict()
|
||||
|
||||
# Dict for PPI
|
||||
gPpiList = {}
|
||||
|
||||
# Dict for PROTOCOL
|
||||
gProtocolList = {}
|
||||
|
||||
# Dict for consumed PPI function calling
|
||||
gConsumedPpiLibrary = sdict()
|
||||
gConsumedPpiLibrary['EfiCommonLocateInterface'] = 0
|
||||
gConsumedPpiLibrary['PeiServicesLocatePpi'] = 0
|
||||
|
||||
# Dict for produced PROTOCOL function calling
|
||||
gProducedProtocolLibrary = sdict()
|
||||
gProducedProtocolLibrary['RegisterEsalClass'] = 0
|
||||
gProducedProtocolLibrary['CoreInstallProtocolInterface'] = 1
|
||||
gProducedProtocolLibrary['CoreInstallMultipleProtocolInterfaces'] = -1
|
||||
gProducedProtocolLibrary['EfiInstallProtocolInterface'] = 1
|
||||
gProducedProtocolLibrary['EfiReinstallProtocolInterface'] = 1
|
||||
gProducedProtocolLibrary['EfiLibNamedEventSignal'] = 0
|
||||
gProducedProtocolLibrary['LibInstallProtocolInterfaces'] = 1
|
||||
gProducedProtocolLibrary['LibReinstallProtocolInterfaces'] = 1
|
||||
|
||||
# Dict for consumed PROTOCOL function calling
|
||||
gConsumedProtocolLibrary = sdict()
|
||||
gConsumedProtocolLibrary['EfiHandleProtocol'] = 0
|
||||
gConsumedProtocolLibrary['EfiLocateProtocolHandleBuffers'] = 0
|
||||
gConsumedProtocolLibrary['EfiLocateProtocolInterface'] = 0
|
||||
gConsumedProtocolLibrary['EfiHandleProtocol'] = 1
|
||||
|
||||
# Dict for callback PROTOCOL function callling
|
||||
gCallbackProtocolLibrary = sdict()
|
||||
gCallbackProtocolLibrary['EfiRegisterProtocolCallback'] = 2
|
||||
|
||||
# Dict for ARCH PROTOCOL
|
||||
gArchProtocols = ['gEfiBdsArchProtocolGuid',
|
||||
'gEfiCapsuleArchProtocolGuid',
|
||||
'gEfiCpuArchProtocolGuid', #5053697e-2cbc-4819-90d9-0580deee5754
|
||||
'gEfiMetronomeArchProtocolGuid',
|
||||
'gEfiMonotonicCounterArchProtocolGuid',
|
||||
'gEfiRealTimeClockArchProtocolGuid',
|
||||
'gEfiResetArchProtocolGuid',
|
||||
'gEfiRuntimeArchProtocolGuid',
|
||||
'gEfiSecurityArchProtocolGuid',
|
||||
'gEfiStatusCodeRuntimeProtocolGuid',
|
||||
'gEfiTimerArchProtocolGuid',
|
||||
'gEfiVariableArchProtocolGuid',
|
||||
'gEfiVariableWriteArchProtocolGuid',
|
||||
'gEfiWatchdogTimerArchProtocolGuid']
|
||||
gArchProtocolGuids = ['665e3ff6-46cc-11d4-9a38-0090273fc14d',
|
||||
'26baccb1-6f42-11d4-bce7-0080c73c8881',
|
||||
'26baccb2-6f42-11d4-bce7-0080c73c8881',
|
||||
'1da97072-bddc-4b30-99f1-72a0b56fff2a',
|
||||
'27cfac87-46cc-11d4-9a38-0090273fc14d',
|
||||
'27cfac88-46cc-11d4-9a38-0090273fc14d',
|
||||
'b7dfb4e1-052f-449f-87be-9818fc91b733',
|
||||
'a46423e3-4617-49f1-b9ff-d1bfa9115839',
|
||||
'd2b2b828-0826-48a7-b3df-983c006024f0',
|
||||
'26baccb3-6f42-11d4-bce7-0080c73c8881',
|
||||
'1e5668e2-8481-11d4-bcf1-0080c73c8881',
|
||||
'6441f818-6362-4e44-b570-7dba31dd2453',
|
||||
'665e3ff5-46cc-11d4-9a38-0090273fc14d']
|
Reference in New Issue
Block a user