Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxePcdLib
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103761
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxePcdLib/DxePcdLib.c
r48674 r58459 2 2 Implementation of PcdLib class library for DXE phase. 3 3 4 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> 5 5 This program and the accompanying materials 6 6 are licensed and made available under the terms and conditions of the BSD License … … 19 19 #include <Protocol/Pcd.h> 20 20 #include <Protocol/PiPcd.h> 21 #include <Protocol/PcdInfo.h> 22 #include <Protocol/PiPcdInfo.h> 21 23 22 24 #include <Library/PcdLib.h> … … 25 27 #include <Library/BaseMemoryLib.h> 26 28 27 PCD_PROTOCOL *mPcd = NULL; 28 EFI_PCD_PROTOCOL *mPiPcd = NULL; 29 PCD_PROTOCOL *mPcd = NULL; 30 EFI_PCD_PROTOCOL *mPiPcd = NULL; 31 GET_PCD_INFO_PROTOCOL *mPcdInfo = NULL; 32 EFI_GET_PCD_INFO_PROTOCOL *mPiPcdInfo = NULL; 29 33 30 34 /** 31 35 Retrieves the PI PCD protocol from the handle database. 36 37 @retval EFI_PCD_PROTOCOL * The pointer to the EFI_PCD_PROTOCOL. 32 38 **/ 33 39 EFI_PCD_PROTOCOL * … … 53 59 /** 54 60 Retrieves the PCD protocol from the handle database. 61 62 @retval PCD_PROTOCOL * The pointer to the PCD_PROTOCOL. 55 63 **/ 56 64 PCD_PROTOCOL * … … 74 82 } 75 83 84 /** 85 Retrieves the PI PCD info protocol from the handle database. 86 87 @retval EFI_GET_PCD_INFO_PROTOCOL * The pointer to the EFI_GET_PCD_INFO_PROTOCOL defined in PI 1.2.1 Vol 3. 88 **/ 89 EFI_GET_PCD_INFO_PROTOCOL * 90 GetPiPcdInfoProtocolPointer ( 91 VOID 92 ) 93 { 94 EFI_STATUS Status; 95 96 if (mPiPcdInfo == NULL) { 97 Status = gBS->LocateProtocol (&gEfiGetPcdInfoProtocolGuid, NULL, (VOID **)&mPiPcdInfo); 98 ASSERT_EFI_ERROR (Status); 99 ASSERT (mPiPcdInfo != NULL); 100 } 101 return mPiPcdInfo; 102 } 103 104 /** 105 Retrieves the PCD info protocol from the handle database. 106 107 @retval GET_PCD_INFO_PROTOCOL * The pointer to the GET_PCD_INFO_PROTOCOL. 108 **/ 109 GET_PCD_INFO_PROTOCOL * 110 GetPcdInfoProtocolPointer ( 111 VOID 112 ) 113 { 114 EFI_STATUS Status; 115 116 if (mPcdInfo == NULL) { 117 Status = gBS->LocateProtocol (&gGetPcdInfoProtocolGuid, NULL, (VOID **)&mPcdInfo); 118 ASSERT_EFI_ERROR (Status); 119 ASSERT (mPcdInfo != NULL); 120 } 121 return mPcdInfo; 122 } 76 123 77 124 /** … … 443 490 Sets the 8-bit value for the token specified by TokenNumber 444 491 to the value specified by Value. Value is returned. 445 492 493 If the set operation was not correctly performed, then ASSERT(). 494 446 495 @param[in] TokenNumber The PCD token number to set a current value for. 447 496 @param[in] Value The 8-bit value to set. … … 472 521 Sets the 16-bit value for the token specified by TokenNumber 473 522 to the value specified by Value. Value is returned. 474 523 524 If the set operation was not correctly performed, then ASSERT(). 525 475 526 @param[in] TokenNumber The PCD token number to set a current value for. 476 527 @param[in] Value The 16-bit value to set. … … 501 552 Sets the 32-bit value for the token specified by TokenNumber 502 553 to the value specified by Value. Value is returned. 503 554 555 If the set operation was not correctly performed, then ASSERT(). 556 504 557 @param[in] TokenNumber The PCD token number to set a current value for. 505 558 @param[in] Value The 32-bit value to set. … … 530 583 Sets the 64-bit value for the token specified by TokenNumber 531 584 to the value specified by Value. Value is returned. 585 586 If the set operation was not correctly performed, then ASSERT(). 532 587 533 588 @param[in] TokenNumber The PCD token number to set a current value for. … … 561 616 If SizeOfBuffer is greater than the maximum size support by TokenNumber, 562 617 then set SizeOfBuffer to the maximum size supported by TokenNumber and 563 return NULL to indicate that the set operation was not actually performed. 618 return NULL to indicate that the set operation was not actually performed, 619 or ASSERT() if the set operation was not correctly performed. 564 620 565 621 If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the … … 585 641 { 586 642 EFI_STATUS Status; 643 UINTN InputSizeOfBuffer; 587 644 588 645 ASSERT (SizeOfBuffer != NULL); … … 592 649 } 593 650 651 InputSizeOfBuffer = *SizeOfBuffer; 594 652 Status = GetPcdProtocol()->SetPtr (TokenNumber, SizeOfBuffer, (VOID *) Buffer); 595 if (EFI_ERROR (Status) ) {653 if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) { 596 654 return NULL; 597 655 } 656 ASSERT_EFI_ERROR (Status); 598 657 599 658 return (VOID *)Buffer; … … 607 666 Sets the Boolean value for the token specified by TokenNumber 608 667 to the value specified by Value. Value is returned. 609 668 669 If the set operation was not correctly performed, then ASSERT(). 670 610 671 @param[in] TokenNumber The PCD token number to set a current value for. 611 672 @param[in] Value The boolean value to set. … … 636 697 Sets the 8-bit value for the token specified by TokenNumber and 637 698 Guid to the value specified by Value. Value is returned. 638 699 639 700 If Guid is NULL, then ASSERT(). 640 701 If the set operation was not correctly performed, then ASSERT(). 702 641 703 @param[in] Guid The pointer to a 128-bit unique value that 642 704 designates which namespace to set a value from. … … 672 734 Sets the 16-bit value for the token specified by TokenNumber and 673 735 Guid to the value specified by Value. Value is returned. 674 736 675 737 If Guid is NULL, then ASSERT(). 676 738 If the set operation was not correctly performed, then ASSERT(). 739 677 740 @param[in] Guid The pointer to a 128-bit unique value that 678 741 designates which namespace to set a value from. … … 708 771 Sets the 32-bit value for the token specified by TokenNumber and 709 772 Guid to the value specified by Value. Value is returned. 710 773 711 774 If Guid is NULL, then ASSERT(). 712 775 If the set operation was not correctly performed, then ASSERT(). 776 713 777 @param[in] Guid The pointer to a 128-bit unique value that 714 778 designates which namespace to set a value from. … … 744 808 Sets the 64-bit value for the token specified by TokenNumber and 745 809 Guid to the value specified by Value. Value is returned. 810 746 811 If Guid is NULL, then ASSERT(). 747 812 If the set operation was not correctly performed, then ASSERT(). 813 748 814 @param[in] Guid The pointer to a 128-bit unique value that 749 815 designates which namespace to set a value from. … … 781 847 the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size 782 848 supported by TokenNumber and return NULL to indicate that the set operation 783 was not actually performed .849 was not actually performed, or ASSERT() if the set operation was not corretly performed. 784 850 785 851 If Guid is NULL, then ASSERT(). … … 806 872 { 807 873 EFI_STATUS Status; 874 UINTN InputSizeOfBuffer; 808 875 809 876 ASSERT (Guid != NULL); … … 815 882 } 816 883 884 InputSizeOfBuffer = *SizeOfBuffer; 817 885 Status = GetPiPcdProtocol()->SetPtr (Guid, TokenNumber, SizeOfBuffer, Buffer); 818 if (EFI_ERROR (Status) ) {886 if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) { 819 887 return NULL; 820 888 } 889 ASSERT_EFI_ERROR (Status); 821 890 822 891 return Buffer; … … 830 899 Sets the Boolean value for the token specified by TokenNumber and 831 900 Guid to the value specified by Value. Value is returned. 832 901 833 902 If Guid is NULL, then ASSERT(). 834 903 If the set operation was not correctly performed, then ASSERT(). 904 835 905 @param[in] Guid The pointer to a 128-bit unique value that 836 906 designates which namespace to set a value from. … … 956 1026 ) 957 1027 { 958 EFI_STATUS Status;1028 EFI_STATUS Status; 959 1029 960 1030 Status = GetPiPcdProtocol()->GetNextToken (Guid, &TokenNumber); 961 ASSERT _EFI_ERROR (Status);1031 ASSERT (!EFI_ERROR (Status) || TokenNumber == 0); 962 1032 963 1033 return TokenNumber; … … 985 1055 ) 986 1056 { 987 EFI_STATUS Status; 988 989 Status = GetPiPcdProtocol()->GetNextTokenSpace (&TokenSpaceGuid); 990 ASSERT_EFI_ERROR (Status); 1057 GetPiPcdProtocol()->GetNextTokenSpace (&TokenSpaceGuid); 991 1058 992 1059 return (GUID *)TokenSpaceGuid; … … 1044 1111 } 1045 1112 1046 1047 1113 /** 1114 Retrieve additional information associated with a PCD token. 1115 1116 This includes information such as the type of value the TokenNumber is associated with as well as possible 1117 human readable name that is associated with the token. 1118 1119 If TokenNumber is not in the default token space specified, then ASSERT(). 1120 1121 @param[in] TokenNumber The PCD token number. 1122 @param[out] PcdInfo The returned information associated with the requested TokenNumber. 1123 The caller is responsible for freeing the buffer that is allocated by callee for PcdInfo->PcdName. 1124 **/ 1125 VOID 1126 EFIAPI 1127 LibPcdGetInfo ( 1128 IN UINTN TokenNumber, 1129 OUT PCD_INFO *PcdInfo 1130 ) 1131 { 1132 EFI_STATUS Status; 1133 1134 Status = GetPcdInfoProtocolPointer()->GetInfo (TokenNumber, (EFI_PCD_INFO *) PcdInfo); 1135 ASSERT_EFI_ERROR (Status); 1136 } 1137 1138 /** 1139 Retrieve additional information associated with a PCD token. 1140 1141 This includes information such as the type of value the TokenNumber is associated with as well as possible 1142 human readable name that is associated with the token. 1143 1144 If TokenNumber is not in the token space specified by Guid, then ASSERT(). 1145 1146 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value. 1147 @param[in] TokenNumber The PCD token number. 1148 @param[out] PcdInfo The returned information associated with the requested TokenNumber. 1149 The caller is responsible for freeing the buffer that is allocated by callee for PcdInfo->PcdName. 1150 **/ 1151 VOID 1152 EFIAPI 1153 LibPcdGetInfoEx ( 1154 IN CONST GUID *Guid, 1155 IN UINTN TokenNumber, 1156 OUT PCD_INFO *PcdInfo 1157 ) 1158 { 1159 EFI_STATUS Status; 1160 1161 Status = GetPiPcdInfoProtocolPointer()->GetInfo (Guid, TokenNumber, (EFI_PCD_INFO *) PcdInfo); 1162 ASSERT_EFI_ERROR (Status); 1163 } 1164 1165 /** 1166 Retrieve the currently set SKU Id. 1167 1168 If the sku id got >= PCD_MAX_SKU_ID, then ASSERT(). 1169 1170 @return The currently set SKU Id. If the platform has not set at a SKU Id, then the 1171 default SKU Id value of 0 is returned. If the platform has set a SKU Id, then the currently set SKU 1172 Id is returned. 1173 **/ 1174 UINTN 1175 EFIAPI 1176 LibPcdGetSku ( 1177 VOID 1178 ) 1179 { 1180 UINTN SkuId; 1181 1182 SkuId = GetPiPcdInfoProtocolPointer()->GetSku (); 1183 ASSERT (SkuId < PCD_MAX_SKU_ID); 1184 1185 return SkuId; 1186 } 1187 -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxePcdLib/DxePcdLib.inf
r48674 r58459 2 2 # Instance of PCD Library using PCD Protocol. 3 3 # 4 # There are two PCD PPIs as follows:4 # There are two PCD protocols as follows: 5 5 # 1) PCD_PROTOCOL 6 6 # It is EDKII implementation which support Dynamic/DynamicEx Pcds. … … 14 14 # EFI_PCD_PROTOCOL to handle dynamicEx type PCD. 15 15 # 16 # Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR> 16 # Note: A driver of type DXE_RUNTIME_DRIVER and DXE_SMM_DRIVER can only use this DxePcdLib 17 # in their initialization without any issues to access Dynamic and DynamicEx PCD. They can't 18 # access Dynamic and DynamicEx PCD in the implementation of runtime services and SMI handlers. 19 # Because EFI_PCD_PROTOCOL is DXE protocol that is not aviable in OS runtime phase. 20 # 21 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 17 22 # 18 23 # This program and the accompanying materials … … 29 34 INF_VERSION = 0x00010005 30 35 BASE_NAME = DxePcdLib 36 MODULE_UNI_FILE = DxePcdLib.uni 31 37 FILE_GUID = af97eb89-4cc6-45f8-a514-ca025b346480 32 38 MODULE_TYPE = DXE_DRIVER … … 53 59 54 60 [Protocols] 55 gPcdProtocolGuid ## CONSUMES61 gPcdProtocolGuid ## SOMETIMES_CONSUMES 56 62 gEfiPcdProtocolGuid ## CONSUMES 63 gGetPcdInfoProtocolGuid ## SOMETIMES_CONSUMES 64 gEfiGetPcdInfoProtocolGuid ## SOMETIMES_CONSUMES 57 65 58 66 [Depex.common.DXE_DRIVER, Depex.common.DXE_RUNTIME_DRIVER, Depex.common.DXE_SAL_DRIVER, Depex.common.DXE_SMM_DRIVER]
Note:
See TracChangeset
for help on using the changeset viewer.