]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdePkg: Add a set of PcdSetXXS APIs into PcdLib and remove the ASSERT in original...
authorStar Zeng <star.zeng@intel.com>
Fri, 10 Apr 2015 10:05:11 +0000 (10:05 +0000)
committerlzeng14 <lzeng14@Edk2>
Fri, 10 Apr 2015 10:05:11 +0000 (10:05 +0000)
And also use DISABLE_NEW_DEPRECATED_INTERFACES macro to include the old PcdSetXX APIs.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17162 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Library/PcdLib.h
MdePkg/Library/BasePcdLibNull/PcdLib.c
MdePkg/Library/DxePcdLib/DxePcdLib.c
MdePkg/Library/PeiPcdLib/PeiPcdLib.c

index ea39bb53bfa2f45a2b3233e3c06f94dc96d2d115..a7e1e626da0ec51b25832d78e3a6130354a313d7 100644 (file)
@@ -14,7 +14,7 @@
   There are no restrictions on the use of FeaturePcd(), FixedPcdGetXX(),\r
   PatchPcdGetXX(), and PatchPcdSetXX().\r
 \r
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -433,14 +433,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #define PcdGetBool(TokenName)               _PCD_GET_MODE_BOOL_##TokenName\r
 \r
 \r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   Sets an 8-bit PCD token value based on a token name.\r
 \r
   Sets the 8-bit value for the token specified by TokenName. Value is returned.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
   @param   Value      The 8-bit value to set.\r
   \r
@@ -456,8 +455,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   Sets the 16-bit value for the token specified by TokenName. Value is returned.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
   @param   Value      The 16-bit value to set.\r
 \r
@@ -473,8 +470,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   Sets the 32-bit value for the token specified by TokenName. Value is returned.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
   @param   Value      The 32-bit value to set.\r
 \r
@@ -507,7 +502,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then set SizeOfBuffer to the maximum size supported by TokenName and return NULL \r
   to indicate that the set operation was not actually performed.  If SizeOfBuffer \r
   is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size supported \r
-  by TokenName and NULL must be returned, or ASSERT() if the set operation was not corretly performed.\r
+  by TokenName and NULL must be returned.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
   \r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -529,8 +524,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   Sets the Boolean value for the token specified by TokenName. Value is returned. \r
   If TokenName is not a valid token in the token space, then the module will not build.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param   TokenName      The name of the PCD token to set the current value for.\r
   @param   Buffer         The Boolean value to set.\r
 \r
@@ -538,7 +531,103 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
 **/\r
 #define PcdSetBool(TokenName, Value)        _PCD_SET_MODE_BOOL_##TokenName  ((Value))\r
+#endif\r
+\r
+/**\r
+  Sets a 8-bit PCD token value based on a token name.\r
+\r
+  Sets the 8-bit value for the token specified by TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  @param TokenName  The name of the PCD token to retrieve a current value for.\r
+  @param Value      The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSet8S(TokenName, Value)          _PCD_SET_MODE_8_S_##TokenName    ((Value))\r
+\r
+/**\r
+  Sets a 16-bit PCD token value based on a token name.\r
+\r
+  Sets the 16-bit value for the token specified by TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  @param TokenName  The name of the PCD token to retrieve a current value for.\r
+  @param Value      The 16-bit value to set.\r
 \r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSet16S(TokenName, Value)         _PCD_SET_MODE_16_S_##TokenName    ((Value))\r
+\r
+/**\r
+  Sets a 32-bit PCD token value based on a token name.\r
+\r
+  Sets the 32-bit value for the token specified by TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  @param TokenName  The name of the PCD token to retrieve a current value for.\r
+  @param Value      The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSet32S(TokenName, Value)         _PCD_SET_MODE_32_S_##TokenName    ((Value))\r
+\r
+/**\r
+  Sets a 64-bit PCD token value based on a token name.\r
+\r
+  Sets the 64-bit value for the token specified by TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  @param TokenName  The name of the PCD token to retrieve a current value for.\r
+  @param Value      The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSet64S(TokenName, Value)         _PCD_SET_MODE_64_S_##TokenName    ((Value))\r
+\r
+/**\r
+  Sets a pointer to a PCD token buffer based on a token name.\r
+\r
+  Sets the buffer for the token specified by TokenName.\r
+  If SizeOfBuffer is greater than the maximum size supported by TokenName,\r
+  then set SizeOfBuffer to the maximum size supported by TokenName and return\r
+  RETURN_INVALID_PARAMETER to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size\r
+  supported by TokenName and RETURN_INVALID_PARAMETER must be returned.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param TokenName      The name of the PCD token to set the current value for.\r
+  @param SizeOfBuffer   A pointer to the size, in bytes, of Buffer.\r
+  @param Buffer         A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetPtrS(TokenName, SizeOfBuffer, Buffer) \\r
+                                            _PCD_SET_MODE_PTR_S_##TokenName   ((SizeOfBuffer), (Buffer))\r
+\r
+\r
+\r
+/**\r
+  Sets a boolean PCD token value based on a token name.\r
+\r
+  Sets the boolean value for the token specified by TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\r
+\r
+  @param TokenName  The name of the PCD token to retrieve a current value for.\r
+  @param Value      The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetBoolS(TokenName, Value)       _PCD_SET_MODE_BOOL_S_##TokenName    ((Value))\r
 \r
 /**\r
   Retrieves a token number based on a GUID and a token name.\r
@@ -667,6 +756,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #define PcdGetExBool(Guid, TokenName)       LibPcdGetExBool  ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 \r
+\r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   Sets an 8-bit PCD token value based on a GUID and a token name.\r
 \r
@@ -675,7 +766,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then the module will not build.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param   Guid        Pointer to a 128-bit unique value that designates \r
                        which namespace to retrieve a value from.\r
@@ -696,7 +786,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then the module will not build.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param   Guid        Pointer to a 128-bit unique value that designates \r
                        which namespace to retrieve a value from.\r
@@ -717,7 +806,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then the module will not build.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param   Guid        Pointer to a 128-bit unique value that designates \r
                        which namespace to retrieve a value from.\r
@@ -738,7 +826,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then the module will not build.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param   Guid        Pointer to a 128-bit unique value that designates \r
   which namespace to retrieve a value from.\r
@@ -759,7 +846,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then set SizeOfBuffer to the maximum size supported by Guid and TokenName and return \r
   NULL to indicate that the set operation was not actually performed. If SizeOfBuffer \r
   is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size supported by\r
-  Guid and TokenName and NULL must be returned, or ASSERT() if the set operation was not corretly performed.\r
+  Guid and TokenName and NULL must be returned.\r
   If TokenName is not a valid token in the token space specified by Guid, \r
   then the module will not build.\r
   \r
@@ -788,7 +875,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   then the module will not build.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param   Guid           Pointer to a 128-bit unique value that designates \r
                           which namespace to retrieve a value from.\r
@@ -800,7 +886,132 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 **/                                         \r
 #define PcdSetExBool(Guid, TokenName, Value) \\r
                                             LibPcdSetExBool((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
+#endif\r
+\r
+/**\r
+  Sets an 8-bit PCD token value based on a GUID and a token name.\r
+\r
+  Sets the 8-bit value for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param Guid       Pointer to a 128-bit unique value that designates\r
+                    which namespace to retrieve a value from.\r
+  @param TokenName  The name of the PCD token to set the current value for.\r
+  @param Value      The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetEx8S(Guid, TokenName, Value)     LibPcdSetEx8S ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
+\r
+/**\r
+  Sets an 16-bit PCD token value based on a GUID and a token name.\r
+\r
+  Sets the 16-bit value for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param Guid       Pointer to a 128-bit unique value that designates\r
+                    which namespace to retrieve a value from.\r
+  @param TokenName  The name of the PCD token to set the current value for.\r
+  @param Value      The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetEx16S(Guid, TokenName, Value)    LibPcdSetEx16S ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
+\r
+/**\r
+  Sets an 32-bit PCD token value based on a GUID and a token name.\r
+\r
+  Sets the 32-bit value for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param Guid       Pointer to a 128-bit unique value that designates\r
+                    which namespace to retrieve a value from.\r
+  @param TokenName  The name of the PCD token to set the current value for.\r
+  @param Value      The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetEx32S(Guid, TokenName, Value)    LibPcdSetEx32S ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
+/**\r
+  Sets an 64-bit PCD token value based on a GUID and a token name.\r
+\r
+  Sets the 64-bit value for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param Guid       Pointer to a 128-bit unique value that designates\r
+                    which namespace to retrieve a value from.\r
+  @param TokenName  The name of the PCD token to set the current value for.\r
+  @param Value      The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetEx64S(Guid, TokenName, Value)    LibPcdSetEx64S ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
+\r
+/**\r
+  Sets a pointer to a PCD token buffer based on a GUID and a token name.\r
+\r
+  Sets the buffer for the token specified by Guid and TokenName.\r
+  If SizeOfBuffer is greater than the maximum size supported by Guid and TokenName,\r
+  then set SizeOfBuffer to the maximum size supported by Guid and TokenName and return\r
+  RETURN_INVALID_PARAMETER to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size\r
+  supported by Guid and TokenName and RETURN_INVALID_PARAMETER must be returned.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param Guid           Pointer to a 128-bit unique value that designates\r
+                        which namespace to retrieve a value from.\r
+  @param TokenName      The name of the PCD token to set the current value for.\r
+  @param SizeOfBuffer   A pointer to the size, in bytes, of Buffer.\r
+  @param Buffer         Pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetExPtrS(Guid, TokenName, SizeOfBuffer, Buffer) \\r
+                                            LibPcdSetExPtrS ((Guid), PcdTokenEx(Guid,TokenName), (SizeOfBuffer), (Buffer))\r
+\r
+\r
+/**\r
+  Sets an boolean PCD token value based on a GUID and a token name.\r
+\r
+  Sets the boolean value for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space specified by Guid,\r
+  then the module will not build.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param Guid       Pointer to a 128-bit unique value that designates\r
+                    which namespace to retrieve a value from.\r
+  @param TokenName  The name of the PCD token to set the current value for.\r
+  @param Value      The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+#define PcdSetExBoolS(Guid, TokenName, Value) \\r
+                                            LibPcdSetExBoolS ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
 /**\r
   This function provides a means by which SKU support can be established in the PCD infrastructure.\r
@@ -1089,14 +1300,13 @@ LibPcdGetExSize (
   );\r
 \r
 \r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   This function provides a means by which to set a value for a given PCD token.\r
   \r
   Sets the 8-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 8-bit value to set.\r
 \r
@@ -1117,8 +1327,6 @@ LibPcdSet8 (
   Sets the 16-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 16-bit value to set.\r
 \r
@@ -1139,8 +1347,6 @@ LibPcdSet16 (
   Sets the 32-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 32-bit value to set.\r
 \r
@@ -1161,8 +1367,6 @@ LibPcdSet32 (
   Sets the 64-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 64-bit value to set.\r
 \r
@@ -1184,8 +1388,7 @@ LibPcdSet64 (
   specified by Buffer and SizeOfBuffer.  Buffer is returned.  \r
   If SizeOfBuffer is greater than the maximum size support by TokenNumber, \r
   then set SizeOfBuffer to the maximum size supported by TokenNumber and \r
-  return NULL to indicate that the set operation was not actually performed,\r
-  or ASSERT() if the set operation was not corretly performed.\r
+  return NULL to indicate that the set operation was not actually performed.\r
 \r
   If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the \r
   maximum size supported by TokenName and NULL must be returned.\r
@@ -1215,8 +1418,6 @@ LibPcdSetPtr (
   Sets the Boolean value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The boolean value to set.\r
 \r
@@ -1238,7 +1439,6 @@ LibPcdSetBool (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -1264,7 +1464,6 @@ LibPcdSetEx8 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -1290,7 +1489,6 @@ LibPcdSetEx16 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -1316,7 +1514,6 @@ LibPcdSetEx32 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -1342,7 +1539,7 @@ LibPcdSetEx64 (
   Buffer and SizeOfBuffer.  Buffer is returned.  If SizeOfBuffer is greater than \r
   the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size \r
   supported by TokenNumber and return NULL to indicate that the set operation \r
-  was not actually performed, or ASSERT() if the set operation was not corretly performed.\r
+  was not actually performed.\r
   \r
   If Guid is NULL, then ASSERT().\r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -1374,7 +1571,6 @@ LibPcdSetExPtr (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -1391,7 +1587,283 @@ LibPcdSetExBool (
   IN UINTN             TokenNumber,\r
   IN BOOLEAN           Value\r
   );\r
+#endif\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet8S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet16S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet32S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet64S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return RETURN_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the\r
+  maximum size supported by TokenName and RETURN_INVALID_PARAMETER must be returned.\r
+\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetPtrS (\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetBoolS (\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx8S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx16S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx32S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
 \r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx64S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified by\r
+  Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return RETURN_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      Guid          Pointer to a 128-bit unique value that\r
+                                designates which namespace to set a value from.\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExPtrS (\r
+  IN CONST GUID     *Guid,\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN       VOID     *Buffer\r
+  );\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExBoolS (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  );\r
 \r
 /**\r
   This notification function serves two purposes.\r
@@ -1546,6 +2018,38 @@ LibPatchPcdSetPtr (
   IN CONST  VOID        *Buffer\r
   );\r
 \r
+/**\r
+  Sets a value of a patchable PCD entry that is type pointer.\r
+\r
+  Sets the PCD entry specified by PatchVariable to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than MaximumDatumSize,\r
+  then set SizeOfBuffer to MaximumDatumSize and return RETURN_INVALID_PARAMETER\r
+  to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to\r
+  MaximumDatumSize and RETURN_INVALID_PARAMETER must be returned.\r
+\r
+  If PatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in] PatchVariable      A pointer to the global variable in a module that is\r
+                                the target of the set operation.\r
+  @param[in] MaximumDatumSize   The maximum size allowed for the PCD entry specified by PatchVariable.\r
+  @param[in, out] SizeOfBuffer  A pointer to the size, in bytes, of Buffer.\r
+  @param[in] Buffer             A pointer to the buffer to used to set the target variable.\r
+  \r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPatchPcdSetPtrS (\r
+  IN       VOID     *PatchVariable,\r
+  IN       UINTN    MaximumDatumSize,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  );\r
+\r
 typedef enum {\r
   PCD_TYPE_8,\r
   PCD_TYPE_16,\r
index e03c01da5fbe7750fac6c1ab49a98af10f7c0bf9..e5d1627fed13f8d66b4677aa5ef3fbbdf0a50caf 100644 (file)
@@ -395,14 +395,13 @@ LibPcdGetExSize (
 \r
 \r
 \r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   This function provides a means by which to set a value for a given PCD token.\r
   \r
   Sets the 8-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 8-bit value to set.\r
 \r
@@ -429,8 +428,6 @@ LibPcdSet8 (
   Sets the 16-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 16-bit value to set.\r
 \r
@@ -457,8 +454,6 @@ LibPcdSet16 (
   Sets the 32-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 32-bit value to set.\r
 \r
@@ -485,8 +480,6 @@ LibPcdSet32 (
   Sets the 64-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 64-bit value to set.\r
 \r
@@ -514,8 +507,7 @@ LibPcdSet64 (
   specified by Buffer and SizeOfBuffer.  Buffer is returned.  \r
   If SizeOfBuffer is greater than the maximum size support by TokenNumber, \r
   then set SizeOfBuffer to the maximum size supported by TokenNumber and \r
-  return NULL to indicate that the set operation was not actually performed,\r
-  or ASSERT() if the set operation was not corretly performed.\r
+  return NULL to indicate that the set operation was not actually performed.\r
 \r
   If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the \r
   maximum size supported by TokenName and NULL must be returned.\r
@@ -551,8 +543,6 @@ LibPcdSetPtr (
   Sets the Boolean value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The boolean value to set.\r
 \r
@@ -580,7 +570,6 @@ LibPcdSetBool (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -612,7 +601,6 @@ LibPcdSetEx8 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -644,7 +632,6 @@ LibPcdSetEx16 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -676,7 +663,6 @@ LibPcdSetEx32 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -708,7 +694,7 @@ LibPcdSetEx64 (
   Buffer and SizeOfBuffer.  Buffer is returned.  If SizeOfBuffer is greater than \r
   the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size \r
   supported by TokenNumber and return NULL to indicate that the set operation \r
-  was not actually performed, or ASSERT() if the set operation was not corretly performed.\r
+  was not actually performed.\r
   \r
   If Guid is NULL, then ASSERT().\r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -746,7 +732,6 @@ LibPcdSetExPtr (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -768,8 +753,343 @@ LibPcdSetExBool (
 \r
   return FALSE;\r
 }\r
+#endif\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet8S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet16S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet32S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet64S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the\r
+  maximum size supported by TokenName and EFI_INVALID_PARAMETER must be returned.\r
+\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
 \r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetPtrS (\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
 \r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetBoolS (\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx8S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx16S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx32S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx64S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified by\r
+  Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      Guid          Pointer to a 128-bit unique value that\r
+                                designates which namespace to set a value from.\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExPtrS (\r
+  IN CONST GUID     *Guid,\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN       VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExBoolS (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  ASSERT (FALSE);\r
+\r
+  return RETURN_INVALID_PARAMETER;\r
+}\r
 \r
 /**\r
   Set up a notification function that is called when a specified token is set.\r
@@ -936,6 +1256,56 @@ LibPatchPcdSetPtr (
   return (VOID *) Buffer;\r
 }\r
 \r
+/**\r
+  Sets a value of a patchable PCD entry that is type pointer.\r
+\r
+  Sets the PCD entry specified by PatchVariable to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than MaximumDatumSize,\r
+  then set SizeOfBuffer to MaximumDatumSize and return RETURN_INVALID_PARAMETER\r
+  to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to\r
+  MaximumDatumSize and RETURN_INVALID_PARAMETER must be returned.\r
+\r
+  If PatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in] PatchVariable      A pointer to the global variable in a module that is\r
+                                the target of the set operation.\r
+  @param[in] MaximumDatumSize   The maximum size allowed for the PCD entry specified by PatchVariable.\r
+  @param[in, out] SizeOfBuffer  A pointer to the size, in bytes, of Buffer.\r
+  @param[in] Buffer             A pointer to the buffer to used to set the target variable.\r
+  \r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPatchPcdSetPtrS (\r
+  IN       VOID     *PatchVariable,\r
+  IN       UINTN    MaximumDatumSize,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (PatchVariable != NULL);\r
+  ASSERT (SizeOfBuffer  != NULL);\r
+  \r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  if ((*SizeOfBuffer > MaximumDatumSize) ||\r
+      (*SizeOfBuffer == MAX_ADDRESS)) {\r
+    *SizeOfBuffer = MaximumDatumSize;\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  CopyMem (PatchVariable, Buffer, *SizeOfBuffer);\r
+\r
+  return RETURN_SUCCESS;\r
+}\r
+\r
 /**\r
   Retrieve additional information associated with a PCD token.\r
 \r
index 6f3a1b28613504d1a632e9318b302f8b5f106e43..431ee7206aa07a2074f6efd7574687ea4c4c9f5b 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
 Implementation of PcdLib class library for DXE phase.\r
 \r
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -484,14 +484,13 @@ LibPcdGetExSize (
 \r
 \r
 \r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   This function provides a means by which to set a value for a given PCD token.\r
   \r
   Sets the 8-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 8-bit value to set.\r
 \r
@@ -505,10 +504,7 @@ LibPcdSet8 (
   IN UINT8             Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = GetPcdProtocol()->Set8 (TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPcdProtocol()->Set8 (TokenNumber, Value);\r
   \r
   return Value;\r
 }\r
@@ -521,8 +517,6 @@ LibPcdSet8 (
   Sets the 16-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 16-bit value to set.\r
 \r
@@ -536,10 +530,7 @@ LibPcdSet16 (
   IN UINT16            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = GetPcdProtocol()->Set16 (TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPcdProtocol()->Set16 (TokenNumber, Value);\r
   \r
   return Value;\r
 }\r
@@ -552,8 +543,6 @@ LibPcdSet16 (
   Sets the 32-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 32-bit value to set.\r
 \r
@@ -567,10 +556,7 @@ LibPcdSet32 (
   IN UINT32            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-  \r
-  Status = GetPcdProtocol()->Set32 (TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPcdProtocol()->Set32 (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -582,8 +568,6 @@ LibPcdSet32 (
   \r
   Sets the 64-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
-\r
-  If the set operation was not correctly performed, then ASSERT().\r
   \r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 64-bit value to set.\r
@@ -598,10 +582,7 @@ LibPcdSet64 (
   IN UINT64            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = GetPcdProtocol()->Set64 (TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPcdProtocol()->Set64 (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -615,8 +596,7 @@ LibPcdSet64 (
   specified by Buffer and SizeOfBuffer.  Buffer is returned.  \r
   If SizeOfBuffer is greater than the maximum size support by TokenNumber, \r
   then set SizeOfBuffer to the maximum size supported by TokenNumber and \r
-  return NULL to indicate that the set operation was not actually performed,\r
-  or ASSERT() if the set operation was not correctly performed.\r
+  return NULL to indicate that the set operation was not actually performed.\r
 \r
   If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the \r
   maximum size supported by TokenName and NULL must be returned.\r
@@ -653,7 +633,6 @@ LibPcdSetPtr (
   if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) {\r
     return NULL;\r
   }\r
-  ASSERT_EFI_ERROR (Status);\r
 \r
   return (VOID *)Buffer;\r
 }\r
@@ -666,8 +645,6 @@ LibPcdSetPtr (
   Sets the Boolean value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The boolean value to set.\r
 \r
@@ -681,10 +658,7 @@ LibPcdSetBool (
   IN BOOLEAN           Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = GetPcdProtocol()->SetBool (TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPcdProtocol()->SetBool (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -698,7 +672,6 @@ LibPcdSetBool (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -716,12 +689,9 @@ LibPcdSetEx8 (
   IN UINT8             Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = GetPiPcdProtocol()->Set8 (Guid, TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPiPcdProtocol()->Set8 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -735,7 +705,6 @@ LibPcdSetEx8 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -753,12 +722,9 @@ LibPcdSetEx16 (
   IN UINT16            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = GetPiPcdProtocol()->Set16 (Guid, TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPiPcdProtocol()->Set16 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -772,7 +738,6 @@ LibPcdSetEx16 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -790,12 +755,9 @@ LibPcdSetEx32 (
   IN UINT32            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = GetPiPcdProtocol()->Set32 (Guid, TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPiPcdProtocol()->Set32 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -809,7 +771,6 @@ LibPcdSetEx32 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -827,12 +788,9 @@ LibPcdSetEx64 (
   IN UINT64            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = GetPiPcdProtocol()->Set64 (Guid, TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPiPcdProtocol()->Set64 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -846,7 +804,7 @@ LibPcdSetEx64 (
   Buffer and SizeOfBuffer.  Buffer is returned.  If SizeOfBuffer is greater than \r
   the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size \r
   supported by TokenNumber and return NULL to indicate that the set operation \r
-  was not actually performed, or ASSERT() if the set operation was not corretly performed.\r
+  was not actually performed.\r
   \r
   If Guid is NULL, then ASSERT().\r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -886,7 +844,6 @@ LibPcdSetExPtr (
   if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) {\r
     return NULL;\r
   }\r
-  ASSERT_EFI_ERROR (Status);\r
 \r
   return Buffer;\r
 }\r
@@ -900,7 +857,6 @@ LibPcdSetExPtr (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -918,17 +874,349 @@ LibPcdSetExBool (
   IN BOOLEAN           Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = GetPiPcdProtocol()->SetBool (Guid, TokenNumber, Value);\r
-  ASSERT_EFI_ERROR (Status);\r
+  GetPiPcdProtocol()->SetBool (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
+#endif\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet8S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  return GetPcdProtocol()->Set8 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet16S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  return GetPcdProtocol()->Set16 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet32S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  return GetPcdProtocol()->Set32 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
 \r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
 \r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet64S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  return GetPcdProtocol()->Set64 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the\r
+  maximum size supported by TokenName and EFI_INVALID_PARAMETER must be returned.\r
+\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetPtrS (\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (SizeOfBuffer != NULL);\r
+\r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  return GetPcdProtocol()->SetPtr (TokenNumber, SizeOfBuffer, (VOID *) Buffer);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetBoolS (\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  return GetPcdProtocol()->SetBool (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx8S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return GetPiPcdProtocol()->Set8 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx16S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return GetPiPcdProtocol()->Set16 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx32S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return GetPiPcdProtocol()->Set32 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx64S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return GetPiPcdProtocol()->Set64 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified by\r
+  Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      Guid          Pointer to a 128-bit unique value that\r
+                                designates which namespace to set a value from.\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExPtrS (\r
+  IN CONST GUID     *Guid,\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN       VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  ASSERT (SizeOfBuffer != NULL);\r
+\r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  return GetPiPcdProtocol()->SetPtr (Guid, TokenNumber, SizeOfBuffer, Buffer);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExBoolS (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return GetPiPcdProtocol()->SetBool (Guid, TokenNumber, Value);\r
+}\r
 \r
 /**\r
   Set up a notification function that is called when a specified token is set.\r
@@ -1110,6 +1398,56 @@ LibPatchPcdSetPtr (
   return (VOID *) Buffer;\r
 }\r
 \r
+/**\r
+  Sets a value of a patchable PCD entry that is type pointer.\r
+\r
+  Sets the PCD entry specified by PatchVariable to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than MaximumDatumSize,\r
+  then set SizeOfBuffer to MaximumDatumSize and return RETURN_INVALID_PARAMETER\r
+  to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to\r
+  MaximumDatumSize and RETURN_INVALID_PARAMETER must be returned.\r
+\r
+  If PatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in] PatchVariable      A pointer to the global variable in a module that is\r
+                                the target of the set operation.\r
+  @param[in] MaximumDatumSize   The maximum size allowed for the PCD entry specified by PatchVariable.\r
+  @param[in, out] SizeOfBuffer  A pointer to the size, in bytes, of Buffer.\r
+  @param[in] Buffer             A pointer to the buffer to used to set the target variable.\r
+  \r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPatchPcdSetPtrS (\r
+  IN       VOID     *PatchVariable,\r
+  IN       UINTN    MaximumDatumSize,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (PatchVariable != NULL);\r
+  ASSERT (SizeOfBuffer  != NULL);\r
+  \r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  if ((*SizeOfBuffer > MaximumDatumSize) ||\r
+      (*SizeOfBuffer == MAX_ADDRESS)) {\r
+    *SizeOfBuffer = MaximumDatumSize;\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  CopyMem (PatchVariable, Buffer, *SizeOfBuffer);\r
+\r
+  return RETURN_SUCCESS;\r
+}\r
+\r
 /**\r
   Retrieve additional information associated with a PCD token.\r
 \r
index 536e1d05d9e9c42bbcd9285abbaf1ebefdfd9859..3d7139682a00efaece47e9ba978c377d70ec764a 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
 Implementation of PcdLib class library for PEI phase.\r
 \r
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -485,14 +485,13 @@ LibPcdGetExSize (
 \r
 \r
 \r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   This function provides a means by which to set a value for a given PCD token.\r
   \r
   Sets the 8-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 8-bit value to set.\r
 \r
@@ -506,11 +505,7 @@ LibPcdSet8 (
   IN UINT8             Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = (GetPcdPpiPointer ())->Set8 (TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPcdPpiPointer ())->Set8 (TokenNumber, Value);\r
   \r
   return Value;\r
 }\r
@@ -523,8 +518,6 @@ LibPcdSet8 (
   Sets the 16-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 16-bit value to set.\r
 \r
@@ -538,11 +531,7 @@ LibPcdSet16 (
   IN UINT16            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = (GetPcdPpiPointer ())->Set16 (TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPcdPpiPointer ())->Set16 (TokenNumber, Value);\r
   \r
   return Value;\r
 }\r
@@ -555,8 +544,6 @@ LibPcdSet16 (
   Sets the 32-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 32-bit value to set.\r
 \r
@@ -570,11 +557,7 @@ LibPcdSet32 (
   IN UINT32            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = (GetPcdPpiPointer ())->Set32 (TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPcdPpiPointer ())->Set32 (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -587,8 +570,6 @@ LibPcdSet32 (
   Sets the 64-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The 64-bit value to set.\r
 \r
@@ -602,11 +583,7 @@ LibPcdSet64 (
   IN UINT64            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = (GetPcdPpiPointer ())->Set64 (TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPcdPpiPointer ())->Set64 (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -620,8 +597,7 @@ LibPcdSet64 (
   specified by Buffer and SizeOfBuffer.  Buffer is returned.  \r
   If SizeOfBuffer is greater than the maximum size support by TokenNumber, \r
   then set SizeOfBuffer to the maximum size supported by TokenNumber and \r
-  return NULL to indicate that the set operation was not actually performed,\r
-  or ASSERT() if the set operation was not corretly performed.\r
+  return NULL to indicate that the set operation was not actually performed.\r
 \r
   If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the \r
   maximum size supported by TokenName and NULL must be returned.\r
@@ -658,7 +634,6 @@ LibPcdSetPtr (
   if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) {\r
     return NULL;\r
   }\r
-  ASSERT_EFI_ERROR (Status);\r
 \r
   return (VOID *) Buffer;\r
 }\r
@@ -671,8 +646,6 @@ LibPcdSetPtr (
   Sets the Boolean value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
 \r
-  If the set operation was not correctly performed, then ASSERT().\r
-\r
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The boolean value to set.\r
 \r
@@ -686,11 +659,7 @@ LibPcdSetBool (
   IN BOOLEAN           Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
-  Status = (GetPcdPpiPointer ())->SetBool (TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPcdPpiPointer ())->SetBool (TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -704,7 +673,6 @@ LibPcdSetBool (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -722,13 +690,9 @@ LibPcdSetEx8 (
   IN UINT8             Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = (GetPiPcdPpiPointer ())->Set8 (Guid, TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPiPcdPpiPointer ())->Set8 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -742,7 +706,6 @@ LibPcdSetEx8 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -760,11 +723,9 @@ LibPcdSetEx16 (
   IN UINT16            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
   ASSERT (Guid != NULL);\r
-  Status = (GetPiPcdPpiPointer ())->Set16 (Guid, TokenNumber, Value);\r
 \r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPiPcdPpiPointer ())->Set16 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -778,7 +739,6 @@ LibPcdSetEx16 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -796,13 +756,9 @@ LibPcdSetEx32 (
   IN UINT32            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = (GetPiPcdPpiPointer ())->Set32 (Guid, TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPiPcdPpiPointer ())->Set32 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -816,7 +772,6 @@ LibPcdSetEx32 (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -834,12 +789,9 @@ LibPcdSetEx64 (
   IN UINT64            Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
   ASSERT (Guid != NULL);\r
 \r
-  Status = (GetPiPcdPpiPointer ())->Set64 (Guid, TokenNumber, Value);\r
-\r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPiPcdPpiPointer ())->Set64 (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
@@ -853,7 +805,7 @@ LibPcdSetEx64 (
   Buffer and SizeOfBuffer.  Buffer is returned.  If SizeOfBuffer is greater than \r
   the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size \r
   supported by TokenNumber and return NULL to indicate that the set operation \r
-  was not actually performed, or ASSERT() if the set operation was not corretly performed.\r
+  was not actually performed.\r
   \r
   If Guid is NULL, then ASSERT().\r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -880,7 +832,6 @@ LibPcdSetExPtr (
   EFI_STATUS      Status;\r
   UINTN           InputSizeOfBuffer;\r
 \r
-\r
   ASSERT (SizeOfBuffer != NULL);\r
   if (*SizeOfBuffer > 0) {\r
     ASSERT (Buffer != NULL);\r
@@ -892,7 +843,6 @@ LibPcdSetExPtr (
   if (EFI_ERROR (Status) && (*SizeOfBuffer < InputSizeOfBuffer)) {\r
     return NULL;\r
   }\r
-  ASSERT_EFI_ERROR (Status);\r
 \r
   return Buffer;\r
 }\r
@@ -906,7 +856,6 @@ LibPcdSetExPtr (
   Guid to the value specified by Value. Value is returned.\r
 \r
   If Guid is NULL, then ASSERT().\r
-  If the set operation was not correctly performed, then ASSERT().\r
 \r
   @param[in]  Guid          The pointer to a 128-bit unique value that \r
                             designates which namespace to set a value from.\r
@@ -924,17 +873,349 @@ LibPcdSetExBool (
   IN BOOLEAN           Value\r
   )\r
 {\r
-  EFI_STATUS Status;\r
-\r
   ASSERT (Guid != NULL);\r
-  Status = (GetPiPcdPpiPointer ())->SetBool (Guid, TokenNumber, Value);\r
 \r
-  ASSERT_EFI_ERROR (Status);\r
+  (GetPiPcdPpiPointer ())->SetBool (Guid, TokenNumber, Value);\r
 \r
   return Value;\r
 }\r
+#endif\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet8S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  return (GetPcdPpiPointer ())->Set8 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet16S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  return (GetPcdPpiPointer ())->Set16 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet32S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  return (GetPcdPpiPointer ())->Set32 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSet64S (\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  return (GetPcdPpiPointer ())->Set64 (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the\r
+  maximum size supported by TokenName and EFI_INVALID_PARAMETER must be returned.\r
+\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetPtrS (\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (SizeOfBuffer != NULL);\r
+\r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  return (GetPcdPpiPointer ())->SetPtr (TokenNumber, SizeOfBuffer, (VOID *) Buffer);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetBoolS (\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  return (GetPcdPpiPointer ())->SetBool (TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 8-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 8-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx8S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT8          Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return (GetPiPcdPpiPointer ())->Set8 (Guid, TokenNumber, Value);\r
+}\r
 \r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
 \r
+  Sets the 16-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 16-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx16S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT16         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return (GetPiPcdPpiPointer ())->Set16 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 32-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 32-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx32S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT32         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return (GetPiPcdPpiPointer ())->Set32 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the 64-bit value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The 64-bit value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetEx64S (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN UINT64         Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return (GetPiPcdPpiPointer ())->Set64 (Guid, TokenNumber, Value);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets a buffer for the token specified by TokenNumber to the value specified by\r
+  Buffer and SizeOfBuffer. If SizeOfBuffer is greater than the maximum size\r
+  support by TokenNumber, then set SizeOfBuffer to the maximum size supported by\r
+  TokenNumber and return EFI_INVALID_PARAMETER to indicate that the set operation\r
+  was not actually performed.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in]      Guid          Pointer to a 128-bit unique value that\r
+                                designates which namespace to set a value from.\r
+  @param[in]      TokenNumber   The PCD token number to set a current value for.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExPtrS (\r
+  IN CONST GUID     *Guid,\r
+  IN       UINTN    TokenNumber,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN       VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  ASSERT (SizeOfBuffer != NULL);\r
+\r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  return (GetPiPcdPpiPointer ())->SetPtr (Guid, TokenNumber, SizeOfBuffer, Buffer);\r
+}\r
+\r
+/**\r
+  This function provides a means by which to set a value for a given PCD token.\r
+\r
+  Sets the boolean value for the token specified by TokenNumber\r
+  to the value specified by Value.\r
+\r
+  If Guid is NULL, then ASSERT().\r
+\r
+  @param[in] Guid           The pointer to a 128-bit unique value that\r
+                            designates which namespace to set a value from.\r
+  @param[in] TokenNumber    The PCD token number to set a current value for.\r
+  @param[in] Value          The boolean value to set.\r
+\r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPcdSetExBoolS (\r
+  IN CONST GUID     *Guid,\r
+  IN UINTN          TokenNumber,\r
+  IN BOOLEAN        Value\r
+  )\r
+{\r
+  ASSERT (Guid != NULL);\r
+\r
+  return (GetPiPcdPpiPointer ())->SetBool (Guid, TokenNumber, Value);\r
+}\r
 \r
 /**\r
   Set up a notification function that is called when a specified token is set.\r
@@ -1118,6 +1399,56 @@ LibPatchPcdSetPtr (
   return (VOID *) Buffer;\r
 }\r
 \r
+/**\r
+  Sets a value of a patchable PCD entry that is type pointer.\r
+\r
+  Sets the PCD entry specified by PatchVariable to the value specified\r
+  by Buffer and SizeOfBuffer. If SizeOfBuffer is greater than MaximumDatumSize,\r
+  then set SizeOfBuffer to MaximumDatumSize and return RETURN_INVALID_PARAMETER\r
+  to indicate that the set operation was not actually performed.\r
+  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to\r
+  MaximumDatumSize and RETURN_INVALID_PARAMETER must be returned.\r
+\r
+  If PatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[in] PatchVariable      A pointer to the global variable in a module that is\r
+                                the target of the set operation.\r
+  @param[in] MaximumDatumSize   The maximum size allowed for the PCD entry specified by PatchVariable.\r
+  @param[in, out] SizeOfBuffer  A pointer to the size, in bytes, of Buffer.\r
+  @param[in] Buffer             A pointer to the buffer to used to set the target variable.\r
+  \r
+  @return The status of the set operation.\r
+\r
+**/\r
+RETURN_STATUS\r
+EFIAPI\r
+LibPatchPcdSetPtrS (\r
+  IN       VOID     *PatchVariable,\r
+  IN       UINTN    MaximumDatumSize,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  )\r
+{\r
+  ASSERT (PatchVariable != NULL);\r
+  ASSERT (SizeOfBuffer  != NULL);\r
+  \r
+  if (*SizeOfBuffer > 0) {\r
+    ASSERT (Buffer != NULL);\r
+  }\r
+\r
+  if ((*SizeOfBuffer > MaximumDatumSize) ||\r
+      (*SizeOfBuffer == MAX_ADDRESS)) {\r
+    *SizeOfBuffer = MaximumDatumSize;\r
+    return RETURN_INVALID_PARAMETER;\r
+  }\r
+\r
+  CopyMem (PatchVariable, Buffer, *SizeOfBuffer);\r
+\r
+  return RETURN_SUCCESS;\r
+}\r
+\r
 /**\r
   Retrieve additional information associated with a PCD token.\r
 \r