]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Library/PcdLib.h
MdePkg/BaseSafeIntLib: Add SafeIntLib class and instance
[mirror_edk2.git] / MdePkg / Include / Library / PcdLib.h
index 6187935bf6562d6554ab6d222d2affc64ea22ba8..9e7e09f52cdc3dc7d2c0b474f5804c06b0d410a3 100644 (file)
@@ -6,7 +6,7 @@
   PCD, module should be linked to a PEIM/DXE library instance to access that PCD.\r
   If a module uses PatchableInModule type PCD, it also needs the library instance to produce\r
   LibPatchPcdSetPtr() interface. For FeatureFlag/Fixed PCD, the macro interface is\r
-  translated to n variable or macro that is auto-generated by build tool in\r
+  translated to a variable or macro that is auto-generated by build tool in\r
   module's autogen.h/autogen.c.\r
   The PcdGetXX(), PcdSetXX(), PcdToken(), and PcdGetNextTokenSpace() operations are \r
   only available prior to ExitBootServices().  If access to PCD values are required \r
@@ -14,8 +14,8 @@
   There are no restrictions on the use of FeaturePcd(), FixedPcdGetXX(),\r
   PatchPcdGetXX(), and PatchPcdSetXX().\r
 \r
-Copyright (c) 2006 - 2008, Intel Corporation\r
-All rights reserved. This program and the accompanying materials\r
+Copyright (c) 2006 - 2017, 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
 http://opensource.org/licenses/bsd-license.php\r
@@ -28,15 +28,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #ifndef __PCD_LIB_H__\r
 #define __PCD_LIB_H__\r
 \r
-#define PCD_MAX_SKU_ID           0x100\r
-\r
 \r
 /**\r
   Retrieves a token number based on a token name.\r
 \r
- Returns the token number associated with the PCD token specified by TokenName.\r
 Returns the token number associated with the PCD token specified by TokenName.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
-  If TokenName is not a feature flag, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve the token number for.\r
 \r
@@ -51,7 +48,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns the Boolean value for the PCD feature flag specified by TokenName.\r
   If TokenName is not a valid token in the token space, then the module will not build.\r
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a feature flag PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -66,7 +63,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -81,7 +78,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -96,7 +93,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -111,7 +108,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -126,7 +123,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -141,7 +138,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns a pointer to the buffer 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a fixed at build PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -156,7 +153,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -170,7 +167,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -185,7 +182,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -200,7 +197,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -215,7 +212,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -230,7 +227,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Returns a pointer to the buffer 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the PCD token to retrieve a current value for.\r
 \r
@@ -245,12 +242,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the binary patchable PCD token to set the current value for.\r
   @param   Value      The 8-bit value to set.\r
   \r
-  @return  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PatchPcdSet8(TokenName, Value)      (_gPcd_BinaryPatch_##TokenName = (Value))\r
@@ -261,12 +258,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the binary patchable PCD token to set the current value for.\r
   @param   Value      The 16-bit value to set.\r
 \r
-  @return  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PatchPcdSet16(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
@@ -277,12 +274,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the binary patchable PCD token to set the current value for.\r
   @param   Value      The 32-bit value to set.\r
 \r
-  @return  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PatchPcdSet32(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
@@ -293,12 +290,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   Sets the 64-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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the binary patchable PCD token to set the current value for.\r
   @param   Value      The 64-bit value to set.\r
 \r
-  @return  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PatchPcdSet64(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
@@ -309,12 +306,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, then the module will not build.\r
 \r
   @param   TokenName  The name of the binary patchable PCD token to set the current value for.\r
   @param   Value      The boolean value to set.\r
 \r
-  @return  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PatchPcdSetBool(TokenName, Value)   (_gPcd_BinaryPatch_##TokenName = (Value))\r
@@ -329,7 +326,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   was not actually performed.  If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be \r
   set to the maximum size supported 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
-  If TokenName is not a feature flag, then the module will not build.\r
+  If TokenName is not a patchable in module PCD, 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
@@ -338,17 +335,17 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @param   SizeOfBuffer   A pointer to the size, in bytes, of Buffer.\r
   @param   Buffer         Pointer to the value to set.\r
 \r
-  @return  Value.\r
+  @return Return the pointer to the Buffer that was set.\r
 \r
 **/\r
 #define PatchPcdSetPtr(TokenName, Size, Buffer) \\r
-                                            LibPatchPcdSetPtr (                        \\r
-                                              _gPcd_BinaryPatch_##TokenName,           \\r
+                                            LibPatchPcdSetPtrAndSize (                 \\r
+                                              (VOID *)_gPcd_BinaryPatch_##TokenName,   \\r
+                                              &_gPcd_BinaryPatch_Size_##TokenName,     \\r
                                               (UINTN)_PCD_PATCHABLE_##TokenName##_SIZE, \\r
                                               (Size),                                  \\r
                                               (Buffer)                                 \\r
                                               )\r
-\r
 /**\r
   Retrieves an 8-bit PCD token value based on a token name.\r
   \r
@@ -433,6 +430,64 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #define PcdGetBool(TokenName)               _PCD_GET_MODE_BOOL_##TokenName\r
 \r
 \r
+/**\r
+  Retrieves the size of a fixed PCD token based on a token name.\r
+\r
+  Returns the size of 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[in]  TokenName  The name of the PCD token to retrieve a current value size for.\r
+\r
+  @return     Return the size\r
+\r
+**/\r
+#define FixedPcdGetSize(TokenName)    _PCD_SIZE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves the size of a binary patchable PCD token based on a token name.\r
+\r
+  Returns the size of 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[in]  TokenName  The name of the PCD token to retrieve a current value size for.\r
+\r
+  @return     Return the size\r
+\r
+**/\r
+#define PatchPcdGetSize(TokenName)    _gPcd_BinaryPatch_Size_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves the size of the PCD token based on a token name.\r
+  \r
+  Returns the size of 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[in]   TokenName  The name of the PCD token to retrieve a current value size for.\r
+\r
+  @return      Return the size\r
+\r
+**/\r
+#define PcdGetSize(TokenName)         _PCD_GET_MODE_SIZE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieve the size of a given PCD token.\r
+  \r
+  Returns the size of the token specified by TokenNumber and Guid. \r
+  If Guid is NULL, then ASSERT(). \r
+\r
+  @param[in]  Guid          Pointer to a 128-bit unique value that designates \r
+                            which namespace to retrieve a value from.\r
+  @param[in]  TokenNumber   The PCD token number to retrieve a current value size for.\r
+\r
+  @return     Return the size.\r
+\r
+**/\r
+#define PcdGetExSize(Guid, TokenName) LibPcdGetExSize ((Guid), PcdTokenEx(Guid,TokenName))\r
+\r
+#ifndef DISABLE_NEW_DEPRECATED_INTERFACES\r
 /**\r
   Sets an 8-bit PCD token value based on a token name.\r
 \r
@@ -442,7 +497,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PcdSet8(TokenName, Value)           _PCD_SET_MODE_8_##TokenName     ((Value))\r
@@ -457,7 +512,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PcdSet16(TokenName, Value)          _PCD_SET_MODE_16_##TokenName    ((Value))\r
@@ -472,7 +527,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PcdSet32(TokenName, Value)          _PCD_SET_MODE_32_##TokenName    ((Value))\r
@@ -487,7 +542,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value.\r
+  @return Return the Value that was set.\r
 \r
 **/\r
 #define PcdSet64(TokenName, Value)          _PCD_SET_MODE_64_##TokenName    ((Value))\r
@@ -511,7 +566,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @param   SizeOfBuffer   A pointer to the size, in bytes, of Buffer.\r
   @param   Buffer         A pointer to the buffer to set.\r
 \r
-  @return  Buffer.\r
+  @return Return the pointer to the Buffer that was set.\r
 \r
 **/\r
 #define PcdSetPtr(TokenName, SizeOfBuffer, Buffer) \\r
@@ -526,11 +581,122 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @param   TokenName      The name of the PCD token to set the current value for.\r
   @param   Buffer         The Boolean value to set.\r
 \r
-  @return  Value. \r
+  @return Return the Value that was set.\r
 \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
+\r
+  Returns the token number for the token specified by Guid and TokenName.\r
+  If TokenName is not a valid token in the token space, then the module will not build.\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 retrieve a current value for.                 \r
+\r
+  @return  Return the token number.\r
+\r
+**/\r
+#define PcdTokenEx(Guid,TokenName)  _PCD_TOKEN_EX_##TokenName(Guid)\r
 \r
 /**\r
   Retrieves an 8-bit PCD token value based on a GUID and a token name.\r
@@ -548,8 +714,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  An 8-bit PCD token value.\r
 \r
 **/\r
-#define PcdGetEx8(Guid, TokenName)          LibPcdGetEx8    ((Guid), _PCD_TOKEN_##TokenName)\r
-\r
+#define PcdGetEx8(Guid, TokenName)          LibPcdGetEx8 ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 /**\r
   Retrieves a 16-bit PCD token value based on a GUID and a token name.\r
@@ -567,7 +732,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  A 16-bit PCD token value.\r
 \r
 **/\r
-#define PcdGetEx16(Guid, TokenName)         LibPcdGetEx16   ((Guid), _PCD_TOKEN_##TokenName)\r
+#define PcdGetEx16(Guid, TokenName)         LibPcdGetEx16 ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 \r
 /**\r
@@ -586,7 +751,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  A 32-bit PCD token value.\r
 \r
 **/\r
-#define PcdGetEx32(Guid, TokenName)         LibPcdGetEx32   ((Guid), _PCD_TOKEN_##TokenName)\r
+#define PcdGetEx32(Guid, TokenName)         LibPcdGetEx32 ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 \r
 /**\r
@@ -605,7 +770,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  A 64-bit PCD token value.\r
 \r
 **/\r
-#define PcdGetEx64(Guid, TokenName)         LibPcdGetEx64   ((Guid), _PCD_TOKEN_##TokenName)\r
+#define PcdGetEx64(Guid, TokenName)         LibPcdGetEx64 ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 \r
 /**\r
@@ -624,7 +789,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  A pointer to a PCD token buffer.\r
 \r
 **/\r
-#define PcdGetExPtr(Guid, TokenName)        LibPcdGetExPtr  ((Guid), _PCD_TOKEN_##TokenName)\r
+#define PcdGetExPtr(Guid, TokenName)        LibPcdGetExPtr ((Guid), PcdTokenEx(Guid,TokenName))\r
 \r
 \r
 /**\r
@@ -643,9 +808,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @return  A Boolean PCD token value.\r
 \r
 **/\r
-#define PcdGetExBool(Guid, TokenName)       LibPcdGetExBool ((Guid), _PCD_TOKEN_##TokenName)\r
+#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
@@ -660,10 +827,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value. \r
+  @return Return the Value that was set.\r
 \r
 **/\r
-#define PcdSetEx8(Guid, TokenName, Value)   LibPcdSetEx8   ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+#define PcdSetEx8(Guid, TokenName, Value)   LibPcdSetEx8   ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
 \r
 /**\r
@@ -680,10 +847,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value. \r
+  @return Return the Value that was set.\r
 \r
 **/\r
-#define PcdSetEx16(Guid, TokenName, Value)  LibPcdSetEx16  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+#define PcdSetEx16(Guid, TokenName, Value)  LibPcdSetEx16  ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
 \r
 /**\r
@@ -700,10 +867,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value. \r
+  @return Return the Value that was set.\r
 \r
 **/\r
-#define PcdSetEx32(Guid, TokenName, Value)  LibPcdSetEx32  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+#define PcdSetEx32(Guid, TokenName, Value)  LibPcdSetEx32  ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
 \r
 /**\r
@@ -720,10 +887,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value. \r
+  @return Return the Value that was set.\r
 \r
 **/\r
-#define PcdSetEx64(Guid, TokenName, Value)  LibPcdSetEx64  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+#define PcdSetEx64(Guid, TokenName, Value)  LibPcdSetEx64  ((Guid), PcdTokenEx(Guid,TokenName), (Value))\r
 \r
 \r
 /**\r
@@ -746,13 +913,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
                           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   Value          Pointer to the buffer to set.\r
+  @param   Buffer         Pointer to the buffer to set.\r
     \r
-  @return  Buffer. \r
+  @return Return the pointer to the Buffer that was set.\r
 \r
 **/\r
 #define PcdSetExPtr(Guid, TokenName, SizeOfBuffer, Buffer) \\r
-                                            LibPcdSetExPtr ((Guid), _PCD_TOKEN_##TokenName, (SizeOfBuffer), (Buffer))\r
+                                            LibPcdSetExPtr ((Guid), PcdTokenEx(Guid,TokenName), (SizeOfBuffer), (Buffer))\r
 \r
 \r
 /**\r
@@ -769,18 +936,142 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
   @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  Value. \r
+  @return Return the Value that was set.\r
 \r
 **/                                         \r
 #define PcdSetExBool(Guid, TokenName, Value) \\r
-                                            LibPcdSetExBool((Guid), _PCD_TOKEN_##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
 \r
   Sets the current SKU in the PCD database to the value specified by SkuId.  SkuId is returned.\r
-  If SkuId >= PCD_MAX_SKU_ID, then ASSERT(). \r
 \r
   @param  SkuId   The SKU value that will be used when the PCD service retrieves and sets values\r
                   associated with a PCD token.\r
@@ -1063,12 +1354,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
+\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
@@ -1088,7 +1380,7 @@ LibPcdSet8 (
   \r
   Sets the 16-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
-  \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
@@ -1108,7 +1400,7 @@ LibPcdSet16 (
   \r
   Sets the 32-bit value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
-  \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
@@ -1128,7 +1420,7 @@ 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
+\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
@@ -1150,7 +1442,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
+  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
@@ -1179,7 +1471,7 @@ LibPcdSetPtr (
   \r
   Sets the Boolean value for the token specified by TokenNumber \r
   to the value specified by Value.  Value is returned.\r
-  \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
@@ -1199,9 +1491,9 @@ LibPcdSetBool (
   \r
   Sets the 8-bit value for the token specified by TokenNumber and \r
   Guid to the value specified by Value. Value is returned.\r
-  \r
+\r
   If Guid is NULL, then ASSERT().\r
-  \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
@@ -1224,9 +1516,9 @@ LibPcdSetEx8 (
   \r
   Sets the 16-bit value for the token specified by TokenNumber and \r
   Guid to the value specified by Value. Value is returned.\r
-  \r
+\r
   If Guid is NULL, then ASSERT().\r
-  \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
@@ -1249,9 +1541,9 @@ LibPcdSetEx16 (
   \r
   Sets the 32-bit value for the token specified by TokenNumber and \r
   Guid to the value specified by Value. Value is returned.\r
-  \r
+\r
   If Guid is NULL, then ASSERT().\r
-  \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
@@ -1274,8 +1566,9 @@ LibPcdSetEx32 (
   \r
   Sets the 64-bit value for the token specified by TokenNumber and \r
   Guid to the value specified by Value. Value is returned.\r
+\r
   If Guid is NULL, then ASSERT().\r
-  \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
@@ -1300,7 +1593,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. \r
+  was not actually performed.\r
   \r
   If Guid is NULL, then ASSERT().\r
   If SizeOfBuffer is NULL, then ASSERT().\r
@@ -1330,9 +1623,9 @@ LibPcdSetExPtr (
   \r
   Sets the Boolean value for the token specified by TokenNumber and \r
   Guid to the value specified by Value. Value is returned.\r
-  \r
+\r
   If Guid is NULL, then ASSERT().\r
-  \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
@@ -1348,7 +1641,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
@@ -1485,7 +2054,7 @@ LibPcdGetNextTokenSpace (
   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
+  @param[out] 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
@@ -1497,10 +2066,195 @@ LibPcdGetNextTokenSpace (
 VOID *\r
 EFIAPI\r
 LibPatchPcdSetPtr (\r
-  IN        VOID        *PatchVariable,\r
+  OUT        VOID       *PatchVariable,\r
   IN        UINTN       MaximumDatumSize,\r
   IN OUT    UINTN       *SizeOfBuffer,\r
   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[out] 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
+  OUT      VOID     *PatchVariable,\r
+  IN       UINTN    MaximumDatumSize,\r
+  IN OUT   UINTN    *SizeOfBuffer,\r
+  IN CONST VOID     *Buffer\r
+  );\r
+\r
+/**\r
+  Sets a value and size of a patchable PCD entry that is type pointer.\r
+  \r
+  Sets the PCD entry specified by PatchVariable to the value specified by Buffer \r
+  and SizeOfBuffer. Buffer is returned.  If SizeOfBuffer is greater than \r
+  MaximumDatumSize, then set SizeOfBuffer to MaximumDatumSize and return \r
+  NULL 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 NULL must be returned.\r
+  \r
+  If PatchVariable is NULL, then ASSERT().\r
+  If SizeOfPatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[out] PatchVariable     A pointer to the global variable in a module that is \r
+                                the target of the set operation.\r
+  @param[out] SizeOfPatchVariable A pointer to the size, in bytes, of PatchVariable.\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 Return the pointer to the Buffer that was set.\r
+\r
+**/\r
+VOID *\r
+EFIAPI\r
+LibPatchPcdSetPtrAndSize (\r
+  OUT       VOID        *PatchVariable,\r
+  OUT       UINTN       *SizeOfPatchVariable,\r
+  IN        UINTN       MaximumDatumSize,\r
+  IN OUT    UINTN       *SizeOfBuffer,\r
+  IN CONST  VOID        *Buffer\r
+  );\r
+\r
+/**\r
+  Sets a value and size 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 SizeOfPatchVariable is NULL, then ASSERT().\r
+  If SizeOfBuffer is NULL, then ASSERT().\r
+  If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().\r
+\r
+  @param[out] PatchVariable     A pointer to the global variable in a module that is\r
+                                the target of the set operation.\r
+  @param[out] SizeOfPatchVariable A pointer to the size, in bytes, of PatchVariable.\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
+LibPatchPcdSetPtrAndSizeS (\r
+  OUT      VOID     *PatchVariable,\r
+  OUT      UINTN    *SizeOfPatchVariable,\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
+  PCD_TYPE_32,\r
+  PCD_TYPE_64,\r
+  PCD_TYPE_BOOL,\r
+  PCD_TYPE_PTR\r
+} PCD_TYPE;\r
+\r
+typedef struct {\r
+  ///\r
+  /// The returned information associated with the requested TokenNumber. If\r
+  /// TokenNumber is 0, then PcdType is set to PCD_TYPE_8.\r
+  ///\r
+  PCD_TYPE          PcdType;\r
+  ///\r
+  /// The size of the data in bytes associated with the TokenNumber specified. If\r
+  /// TokenNumber is 0, then PcdSize is set 0.\r
+  ///\r
+  UINTN             PcdSize;\r
+  ///\r
+  /// The null-terminated ASCII string associated with a given token. If the\r
+  /// TokenNumber specified was 0, then this field corresponds to the null-terminated\r
+  /// ASCII string associated with the token's namespace Guid. If NULL, there is no\r
+  /// name associated with this request.\r
+  ///\r
+  CHAR8             *PcdName;\r
+} PCD_INFO;\r
+\r
+\r
+/**\r
+  Retrieve additional information associated with a PCD token.\r
+\r
+  This includes information such as the type of value the TokenNumber is associated with as well as possible\r
+  human readable name that is associated with the token.\r
+\r
+  If TokenNumber is not in the default token space specified, then ASSERT().\r
+\r
+  @param[in]    TokenNumber The PCD token number.\r
+  @param[out]   PcdInfo     The returned information associated with the requested TokenNumber.\r
+                            The caller is responsible for freeing the buffer that is allocated by callee for PcdInfo->PcdName.\r
+**/\r
+VOID\r
+EFIAPI\r
+LibPcdGetInfo (\r
+  IN        UINTN           TokenNumber,\r
+  OUT       PCD_INFO        *PcdInfo\r
+  );\r
+\r
+/**\r
+  Retrieve additional information associated with a PCD token.\r
+\r
+  This includes information such as the type of value the TokenNumber is associated with as well as possible\r
+  human readable name that is associated with the token.\r
+\r
+  If TokenNumber is not in the token space specified by Guid, then ASSERT().\r
+\r
+  @param[in]    Guid        The 128-bit unique value that designates the namespace from which to extract the value.\r
+  @param[in]    TokenNumber The PCD token number.\r
+  @param[out]   PcdInfo     The returned information associated with the requested TokenNumber.\r
+                            The caller is responsible for freeing the buffer that is allocated by callee for PcdInfo->PcdName.\r
+**/\r
+VOID\r
+EFIAPI\r
+LibPcdGetInfoEx (\r
+  IN CONST  GUID            *Guid,\r
+  IN        UINTN           TokenNumber,\r
+  OUT       PCD_INFO        *PcdInfo\r
+  );\r
+\r
+/**\r
+  Retrieve the currently set SKU Id.\r
+\r
+  @return   The currently set SKU Id. If the platform has not set at a SKU Id, then the\r
+            default SKU Id value of 0 is returned. If the platform has set a SKU Id, then the currently set SKU\r
+            Id is returned.\r
+**/\r
+UINTN\r
+EFIAPI\r
+LibPcdGetSku (\r
+  VOID\r
+  );\r
+\r
 #endif\r