]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Library/PcdLib.h
Second set of changes based on a review of the code comments in the Include directory...
[mirror_edk2.git] / MdePkg / Include / Library / PcdLib.h
index a856b3fbe1ee2cbe72d8333a20499ed0e78378d3..20c7765f418ccce3d3048d12967d5b20fc3d3842 100644 (file)
 /** @file\r
-PCD Library Class provides PCD usage macro interface for all PCD types. It should be \r
-included at any module who use PCD. \r
-\r
-If module use dynamic/dynamicex PCD, module should be linked to PEIM/DXE library \r
-instance to access that PCD.\r
-If module uses PatchableInModule type PCD, also need library instance produce LibPatchPcdSetPtr()\r
-interface.\r
-For FeatureFlag/Fixed PCD, macro interface is translated to an variable or macro\r
-which is auto-generated by build tool in module's autogen.h/autogen.c\r
-\r
-Copyright (c) 2006 - 2008, Intel Corporation. <BR>                                                         \r
-All rights reserved. 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
-                                                                                          \r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+  Provides library services to get and set Platform Configuration Database entries.\r
+\r
+  PCD Library Class provides a PCD usage macro interface for all PCD types.\r
+  It should be included in any module that uses PCD. If a module uses dynamic/dynamicex\r
+  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
+  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
+  at runtime, then their values must be collected prior to ExitBootServices().\r
+  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
+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
+\r
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
 **/\r
 \r
 #ifndef __PCD_LIB_H__\r
 #define __PCD_LIB_H__\r
 \r
-#include <Base.h>\r
-\r
-#define PCD_INVALID_TOKEN_NUMBER ((UINTN) 0)\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
+  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
+  @return  The token number associated with the PCD.\r
+\r
+**/\r
 #define PcdToken(TokenName)                 _PCD_TOKEN_##TokenName\r
 \r
 \r
-///\r
-/// Feature Flag is in the form of a global constant\r
-///\r
+/**\r
+  Retrieves a Boolean PCD feature flag based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  Boolean value for the PCD feature flag.\r
+\r
+**/\r
 #define FeaturePcdGet(TokenName)            _PCD_GET_MODE_BOOL_##TokenName\r
 \r
 \r
-//\r
-// Fixed is fixed at build time\r
-//\r
+/**\r
+  Retrieves an 8-bit fixed PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  8-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define FixedPcdGet8(TokenName)             _PCD_VALUE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 16-bit fixed PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  16-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define FixedPcdGet16(TokenName)            _PCD_VALUE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 32-bit fixed PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  32-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define FixedPcdGet32(TokenName)            _PCD_VALUE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 64-bit fixed PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  64-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define FixedPcdGet64(TokenName)            _PCD_VALUE_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a Boolean fixed PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  The Boolean value for the token. \r
+\r
+**/\r
 #define FixedPcdGetBool(TokenName)          _PCD_VALUE_##TokenName\r
 \r
 \r
+/**\r
+  Retrieves a pointer to a fixed PCD token buffer based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A pointer to the buffer. \r
+\r
+**/\r
 #define FixedPcdGetPtr(TokenName)           ((VOID *)_PCD_VALUE_##TokenName)\r
 \r
 \r
-//\r
-// (Binary) Patch is in the form of a global variable\r
-//\r
+/**\r
+  Retrieves an 8-bit binary patchable PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  An 8-bit binary patchable PCD token value.\r
+\r
+**/\r
 #define PatchPcdGet8(TokenName)             _gPcd_BinaryPatch_##TokenName\r
+\r
+/**\r
+  Retrieves a 16-bit binary patchable PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A 16-bit binary patchable PCD token value.\r
+\r
+**/\r
 #define PatchPcdGet16(TokenName)            _gPcd_BinaryPatch_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 32-bit binary patchable PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A 32-bit binary patchable PCD token value.\r
+\r
+**/\r
 #define PatchPcdGet32(TokenName)            _gPcd_BinaryPatch_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 64-bit binary patchable PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A 64-bit binary patchable PCD token value.\r
+\r
+**/\r
 #define PatchPcdGet64(TokenName)            _gPcd_BinaryPatch_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a Boolean binary patchable PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  The Boolean value for the token.\r
+\r
+**/\r
 #define PatchPcdGetBool(TokenName)          _gPcd_BinaryPatch_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a pointer to a binary patchable PCD token buffer based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A pointer to the buffer for the token.\r
+\r
+**/\r
 #define PatchPcdGetPtr(TokenName)           ((VOID *)_gPcd_BinaryPatch_##TokenName)\r
 \r
+\r
+/**\r
+  Sets an 8-bit binary patchable 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
+  If TokenName is not a feature flag, 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
+\r
+**/\r
 #define PatchPcdSet8(TokenName, Value)      (_gPcd_BinaryPatch_##TokenName = (Value))\r
+\r
+\r
+/**\r
+  Sets a 16-bit binary patchable PCD token value based on a token name.\r
+\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
+\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
+\r
+**/\r
 #define PatchPcdSet16(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
+\r
+\r
+/**\r
+  Sets a 32-bit binary patchable PCD token value based on a token name.\r
+\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
+\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
+\r
+**/\r
 #define PatchPcdSet32(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
+\r
+\r
+/**\r
+  Sets a 64-bit binary patchable PCD token value based on a token name.\r
+\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
+\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
+\r
+**/\r
 #define PatchPcdSet64(TokenName, Value)     (_gPcd_BinaryPatch_##TokenName = (Value))\r
+\r
+\r
+/**\r
+  Sets a Boolean binary patchable PCD token value based on a token name.\r
+\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
+\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
+\r
+**/\r
 #define PatchPcdSetBool(TokenName, Value)   (_gPcd_BinaryPatch_##TokenName = (Value))\r
+\r
+\r
+/**\r
+  Sets a pointer to a binary patchable PCD token buffer based on a token name.\r
+\r
+  Sets the buffer for the token specified by TokenName.  Buffer is returned.  \r
+  If SizeOfBuffer is greater than the maximum size supported by TokenName, then set SizeOfBuffer\r
+  to the maximum size supported by TokenName and return NULL to indicate that the set operation \r
+  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
+  \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 binary patchable 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 value to set.\r
+\r
+  @return  Value.\r
+\r
+**/\r
 #define PatchPcdSetPtr(TokenName, Size, Buffer) \\r
                                             LibPatchPcdSetPtr (                        \\r
                                               _gPcd_BinaryPatch_##TokenName,           \\r
@@ -73,58 +349,443 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
                                               (Buffer)                                 \\r
                                               )\r
 \r
-//\r
-// Dynamic is via the protocol with only the TokenNumber as argument\r
-//  It can also be Patch or Fixed type based on a build option\r
-//\r
+/**\r
+  Retrieves an 8-bit PCD token value based on a token name.\r
+  \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
+  \r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  8-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define PcdGet8(TokenName)                  _PCD_GET_MODE_8_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 16-bit PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  16-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define PcdGet16(TokenName)                 _PCD_GET_MODE_16_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 32-bit PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  32-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define PcdGet32(TokenName)                 _PCD_GET_MODE_32_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a 64-bit PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  64-bit value for the token specified by TokenName.\r
+\r
+**/\r
 #define PcdGet64(TokenName)                 _PCD_GET_MODE_64_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a pointer to a PCD token buffer based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A pointer to the buffer.\r
+\r
+**/\r
 #define PcdGetPtr(TokenName)                _PCD_GET_MODE_PTR_##TokenName\r
+\r
+\r
+/**\r
+  Retrieves a Boolean PCD token value based on a token name.\r
+\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
+\r
+  @param   TokenName  The name of the PCD token to retrieve a current value for.\r
+\r
+  @return  A Boolean PCD token value.\r
+\r
+**/\r
 #define PcdGetBool(TokenName)               _PCD_GET_MODE_BOOL_##TokenName\r
 \r
-//\r
-// Dynamic Set\r
-//\r
+\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
+  @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
+\r
+**/\r
 #define PcdSet8(TokenName, Value)           _PCD_SET_MODE_8_##TokenName     ((Value))\r
+\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. Value is returned.\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  Value.\r
+\r
+**/\r
 #define PcdSet16(TokenName, Value)          _PCD_SET_MODE_16_##TokenName    ((Value))\r
+\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. Value is returned.\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  Value.\r
+\r
+**/\r
 #define PcdSet32(TokenName, Value)          _PCD_SET_MODE_32_##TokenName    ((Value))\r
+\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. Value is returned.\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  Value.\r
+\r
+**/\r
 #define PcdSet64(TokenName, Value)          _PCD_SET_MODE_64_##TokenName    ((Value))\r
+\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. Buffer is returned.  \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 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.\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  Buffer.\r
+\r
+**/\r
 #define PcdSetPtr(TokenName, SizeOfBuffer, Buffer) \\r
                                             _PCD_SET_MODE_PTR_##TokenName   ((SizeOfBuffer), (Buffer))\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. Value is returned. \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 set the current value for.\r
+  @param   Buffer         The Boolean value to set.\r
+\r
+  @return  Value. \r
+\r
+**/\r
 #define PcdSetBool(TokenName, Value)        _PCD_SET_MODE_BOOL_##TokenName  ((Value))\r
 \r
-//\r
-// Dynamic Ex is to support binary distribution\r
-//\r
+\r
+/**\r
+  Retrieves an 8-bit PCD token value based on a GUID and a token name.\r
+\r
+  Returns 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 retrieve a current value for.                 \r
+\r
+  @return  An 8-bit PCD token value.\r
+\r
+**/\r
 #define PcdGetEx8(Guid, TokenName)          LibPcdGetEx8    ((Guid), _PCD_TOKEN_##TokenName)\r
+\r
+\r
+/**\r
+  Retrieves a 16-bit PCD token value based on a GUID and a token name.\r
+\r
+  Returns 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 retrieve a current value for.                 \r
+\r
+  @return  A 16-bit PCD token value.\r
+\r
+**/\r
 #define PcdGetEx16(Guid, TokenName)         LibPcdGetEx16   ((Guid), _PCD_TOKEN_##TokenName)\r
+\r
+\r
+/**\r
+  Retrieves a 32-bit PCD token value based on a GUID and a token name.\r
+\r
+  Returns 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 retrieve a current value for.                 \r
+\r
+  @return  A 32-bit PCD token value.\r
+\r
+**/\r
 #define PcdGetEx32(Guid, TokenName)         LibPcdGetEx32   ((Guid), _PCD_TOKEN_##TokenName)\r
+\r
+\r
+/**\r
+  Retrieves a 64-bit PCD token value based on a GUID and a token name.\r
+\r
+  Returns 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 retrieve a current value for.                 \r
+\r
+  @return  A 64-bit PCD token value.\r
+\r
+**/\r
 #define PcdGetEx64(Guid, TokenName)         LibPcdGetEx64   ((Guid), _PCD_TOKEN_##TokenName)\r
+\r
+\r
+/**\r
+  Retrieves a pointer to a PCD token buffer based on a GUID and a token name.\r
+\r
+  Returns a pointer to the buffer 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 retrieve a current value for.                 \r
+\r
+  @return  A pointer to a PCD token buffer.\r
+\r
+**/\r
 #define PcdGetExPtr(Guid, TokenName)        LibPcdGetExPtr  ((Guid), _PCD_TOKEN_##TokenName)\r
+\r
+\r
+/**\r
+  Retrieves a Boolean PCD token value based on a GUID and a token name.\r
+\r
+  Returns 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 retrieve a current value for.                 \r
+\r
+  @return  A Boolean PCD token value.\r
+\r
+**/\r
 #define PcdGetExBool(Guid, TokenName)       LibPcdGetExBool ((Guid), _PCD_TOKEN_##TokenName)\r
 \r
-//\r
-// Dynamic Set Ex\r
-//\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. Value is 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
+\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  Value. \r
+\r
+**/\r
 #define PcdSetEx8(Guid, TokenName, Value)   LibPcdSetEx8   ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+\r
+\r
+/**\r
+  Sets a 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. Value is 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
+\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  Value. \r
+\r
+**/\r
 #define PcdSetEx16(Guid, TokenName, Value)  LibPcdSetEx16  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+\r
+\r
+/**\r
+  Sets a 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. Value is 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
+\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  Value. \r
+\r
+**/\r
 #define PcdSetEx32(Guid, TokenName, Value)  LibPcdSetEx32  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+\r
+\r
+/**\r
+  Sets a 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. Value is 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
+\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  Value. \r
+\r
+**/\r
 #define PcdSetEx64(Guid, TokenName, Value)  LibPcdSetEx64  ((Guid), _PCD_TOKEN_##TokenName, (Value))\r
+\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. Buffer is returned.  \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
+  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.\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   Value          Pointer to the buffer to set.\r
+    \r
+  @return  Buffer. \r
+\r
+**/\r
 #define PcdSetExPtr(Guid, TokenName, SizeOfBuffer, Buffer) \\r
                                             LibPcdSetExPtr ((Guid), _PCD_TOKEN_##TokenName, (SizeOfBuffer), (Buffer))\r
+\r
+\r
+/**\r
+  Sets a 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. Value is 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
+\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  Value. \r
+\r
+**/                                         \r
 #define PcdSetExBool(Guid, TokenName, Value) \\r
                                             LibPcdSetExBool((Guid), _PCD_TOKEN_##TokenName, (Value))\r
 \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[in]  SkuId The SKU value that will be used when the PCD service will retrieve and \r
-                    set values associated with a PCD token.\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
 \r
-  @retval SKU_ID Return the SKU ID that just be set.\r
+  @return  Return the SKU ID that was set.\r
 \r
 **/\r
 UINTN\r
@@ -135,11 +796,13 @@ LibPcdSetSku (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 8-bit value for the token specified by TokenNumber. \r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval UINT8 Returns the 8-bit value for the token specified by TokenNumber. \r
+  @return Returns the 8-bit value for the token specified by TokenNumber. \r
 \r
 **/\r
 UINT8\r
@@ -150,11 +813,13 @@ LibPcdGet8 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 16-bit value for the token specified by TokenNumber. \r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval UINT16 Returns the 16-bit value for the token specified by TokenNumber. \r
+  @return Returns the 16-bit value for the token specified by TokenNumber. \r
 \r
 **/\r
 UINT16\r
@@ -165,11 +830,13 @@ LibPcdGet16 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 32-bit value for the token specified by TokenNumber. \r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval UINT32 Returns the 32-bit value for the token specified by TokenNumber.\r
+  @return Returns the 32-bit value for the token specified by TokenNumber.\r
 \r
 **/\r
 UINT32\r
@@ -180,11 +847,13 @@ LibPcdGet32 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 64-bit value for the token specified by TokenNumber.\r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval UINT64 Returns the 64-bit value for the token specified by TokenNumber.\r
+  @return Returns the 64-bit value for the token specified by TokenNumber.\r
 \r
 **/\r
 UINT64\r
@@ -195,11 +864,13 @@ LibPcdGet64 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the pointer to the buffer of the token specified by TokenNumber.\r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval VOID* Returns the pointer to the token specified by TokenNumber.\r
+  @return Returns the pointer to the token specified by TokenNumber.\r
 \r
 **/\r
 VOID *\r
@@ -210,11 +881,13 @@ LibPcdGetPtr (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the Boolean value of the token specified by TokenNumber. \r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval BOOLEAN Returns the Boolean value of the token specified by TokenNumber. \r
+  @return Returns the Boolean value of the token specified by TokenNumber. \r
 \r
 **/\r
 BOOLEAN \r
@@ -225,11 +898,11 @@ LibPcdGetBool (
 \r
 \r
 /**\r
-  Returns the size of the token specified by TokenNumber. \r
+  This function provides a means by which to retrieve the size of a given PCD token.\r
 \r
   @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
-  @retval UINTN Returns the size of the token specified by TokenNumber. \r
+  @return Returns the size of the token specified by TokenNumber. \r
 \r
 **/\r
 UINTN\r
@@ -240,14 +913,17 @@ LibPcdGetSize (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 8-bit value for the token specified by TokenNumber and Guid.\r
+  \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 for.\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 for.\r
 \r
-  @retval UINT8 Return the UINT8.\r
+  @return Return the UINT8.\r
 \r
 **/\r
 UINT8\r
@@ -259,14 +935,17 @@ LibPcdGetEx8 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+\r
   Returns the 16-bit value for the token specified by TokenNumber and Guid.\r
+  \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 for.\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 for.\r
 \r
-  @retval UINT16 Return the UINT16.\r
+  @return Return the UINT16.\r
 \r
 **/\r
 UINT16\r
@@ -281,11 +960,11 @@ LibPcdGetEx16 (
   Returns the 32-bit value for 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 for.\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 for.\r
 \r
-  @retval UINT32 Return the UINT32.\r
+  @return Return the UINT32.\r
 \r
 **/\r
 UINT32\r
@@ -297,14 +976,17 @@ LibPcdGetEx32 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the 64-bit value for the token specified by TokenNumber and Guid.\r
+  \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 for.\r
 \r
-  @retval UINT64 Return the UINT64.\r
+  @return Return the UINT64.\r
 \r
 **/\r
 UINT64\r
@@ -316,14 +998,17 @@ LibPcdGetEx64 (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the pointer to the buffer of token specified by TokenNumber and Guid.\r
+  \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 for.\r
 \r
-  @retval VOID* Return the VOID* pointer.\r
+  @return Return the VOID* pointer.\r
 \r
 **/\r
 VOID *\r
@@ -335,14 +1020,17 @@ LibPcdGetExPtr (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve a value for a given PCD token.\r
+  \r
   Returns the Boolean value of the token specified by TokenNumber and Guid. \r
+  \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 for.\r
 \r
-  @retval BOOLEAN Return the BOOLEAN.\r
+  @return Return the BOOLEAN.\r
 \r
 **/\r
 BOOLEAN\r
@@ -354,14 +1042,17 @@ LibPcdGetExBool (
 \r
 \r
 /**\r
+  This function provides a means by which to retrieve the size of a given PCD token.\r
+  \r
   Returns the size of the token specified by TokenNumber and Guid. \r
+  \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 for.\r
 \r
-  @retval UINTN Return the size.\r
+  @return Return the size.\r
 \r
 **/\r
 UINTN\r
@@ -373,13 +1064,15 @@ LibPcdGetExSize (
 \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.  Value is returned.\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
-  @retval UINT8 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT8\r
@@ -391,13 +1084,15 @@ LibPcdSet8 (
 \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.  Value is returned.\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
-  @retval UINT16 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT16\r
@@ -409,13 +1104,15 @@ LibPcdSet16 (
 \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.  Value is returned.\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
-  @retval UINT32 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT32\r
@@ -427,13 +1124,15 @@ LibPcdSet32 (
 \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.  Value is returned.\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
-  @retval UINT64 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT64\r
@@ -445,42 +1144,46 @@ LibPcdSet64 (
 \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 \r
-  specified by Buffer and SizeOfValue.  Buffer is returned.  \r
-  If SizeOfValue is greater than the maximum size support by TokenNumber, \r
-  then set SizeOfValue to the maximum size supported by TokenNumber and \r
+  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
 \r
-  If SizeOfValue is set to MAX_ADDRESS, then SizeOfValue must be set to the \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
   \r
-  If SizeOfValue is NULL, then ASSERT().\r
-  If SizeOfValue > 0 and Buffer 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]      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        Value A pointer to the buffer to set.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in]      Buffer        A pointer to the buffer to set.\r
 \r
-  @retval VOID* Return the pointer for the buffer been set.\r
+  @return Return the pointer for the buffer that was set.\r
 \r
 **/\r
-VOID*\r
+VOID *\r
 EFIAPI\r
 LibPcdSetPtr (\r
-  IN      UINTN             TokenNumber,\r
-  IN OUT  UINTN             *SizeOfBuffer,\r
-  IN      VOID              *Buffer\r
+  IN        UINTN             TokenNumber,\r
+  IN OUT    UINTN             *SizeOfBuffer,\r
+  IN CONST  VOID              *Buffer\r
   );\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.  Value is returned.\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
-  @retval BOOLEAN Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 BOOLEAN\r
@@ -492,8 +1195,11 @@ LibPcdSetBool (
 \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 and \r
   Guid to the value specified by Value. Value is returned.\r
+  \r
   If Guid is NULL, then ASSERT().\r
   \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
@@ -501,7 +1207,7 @@ LibPcdSetBool (
   @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
-  @retval UINT8 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT8\r
@@ -514,8 +1220,11 @@ LibPcdSetEx8 (
 \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 and \r
   Guid to the value specified by Value. Value is returned.\r
+  \r
   If Guid is NULL, then ASSERT().\r
   \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
@@ -523,7 +1232,7 @@ LibPcdSetEx8 (
   @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
-  @retval UINT8 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT16\r
@@ -536,8 +1245,11 @@ LibPcdSetEx16 (
 \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 and \r
   Guid to the value specified by Value. Value is returned.\r
+  \r
   If Guid is NULL, then ASSERT().\r
   \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
@@ -545,7 +1257,7 @@ LibPcdSetEx16 (
   @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
-  @retval UINT32 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT32\r
@@ -558,6 +1270,8 @@ LibPcdSetEx32 (
 \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 and \r
   Guid to the value specified by Value. Value is returned.\r
   If Guid is NULL, then ASSERT().\r
@@ -567,7 +1281,7 @@ LibPcdSetEx32 (
   @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
-  @retval UINT64 Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 UINT64\r
@@ -580,15 +1294,17 @@ LibPcdSetEx64 (
 \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 SizeOfValue.  Buffer is returned.  If SizeOfValue is greater than \r
-  the maximum size support by TokenNumber, then set SizeOfValue to the maximum size \r
+  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
   \r
   If Guid is NULL, then ASSERT().\r
-  If SizeOfValue is NULL, then ASSERT().\r
-  If SizeOfValue > 0 and Buffer 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
@@ -596,7 +1312,7 @@ LibPcdSetEx64 (
   @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
   @param[in]  Buffer            A pointer to the buffer to set.\r
 \r
-  @retval VOID * Return the pinter to the buffer been set.\r
+  @return Return the pointer to the buffer that was set.\r
 \r
 **/\r
 VOID *\r
@@ -610,8 +1326,11 @@ LibPcdSetExPtr (
 \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 and \r
   Guid to the value specified by Value. Value is returned.\r
+  \r
   If Guid is NULL, then ASSERT().\r
   \r
   @param[in]  Guid          Pointer to a 128-bit unique value that \r
@@ -619,7 +1338,7 @@ LibPcdSetExPtr (
   @param[in]  TokenNumber   The PCD token number to set a current value for.\r
   @param[in]  Value         The Boolean value to set.\r
 \r
-  @retval Boolean Return the value been set.\r
+  @return Return the value that was set.\r
 \r
 **/\r
 BOOLEAN\r
@@ -632,18 +1351,14 @@ LibPcdSetExBool (
 \r
 \r
 /**\r
-  When the token specified by TokenNumber and Guid is set, \r
-  then notification function specified by NotificationFunction is called.  \r
-  If Guid is NULL, then the default token space is used. \r
-  If NotificationFunction is NULL, then ASSERT().\r
-\r
-  This notification function serves two purposes. Firstly, it notifies the module which \r
-  did the registration that the value of this PCD token has been set. Secondly, \r
-  it provides a mechanism for the module which did the registration to intercept \r
-  the set operation and override the value been set if necessary. After the invocation \r
-  of the callback function, TokenData will be used by PCD service PEIM or driver to \r
-  modify the internal data in PCD database. \r
+  This notification function serves two purposes.\r
 \r
+  Firstly, it notifies the module that did the registration that the value of this\r
+  PCD token has been set.\r
+  Secondly, it provides a mechanism for the module that did the registration to intercept\r
+  the set operation and override the value been set if necessary. After the invocation of\r
+  the callback function, TokenData will be used by PCD service PEIM or driver to modify th\r
+  internal data in PCD database. \r
 \r
   @param[in]      CallBackGuid    The PCD token GUID being set.\r
   @param[in]      CallBackToken   The PCD token number being set.\r
@@ -662,15 +1377,17 @@ VOID
 \r
 \r
 /**\r
+  Set up a notification function that is called when a specified token is set.\r
+  \r
   When the token specified by TokenNumber and Guid is set, \r
   then notification function specified by NotificationFunction is called.  \r
-  If Guid is NULL, then the default token space is used. \r
+  If Guid is NULL, then the default token space is used.\r
   If NotificationFunction is NULL, then ASSERT().\r
 \r
-  @param[in]  Guid      Pointer to a 128-bit unique value that designates which \r
-                        namespace to set a value from.  If NULL, then the default \r
-                        token space is used.\r
-  @param[in]  TokenNumber   The PCD token number to monitor.\r
+  @param[in]  Guid                  Pointer to a 128-bit unique value that designates which \r
+                                    namespace to set a value from.  If NULL, then the default \r
+                                    token space is used.\r
+  @param[in]  TokenNumber           The PCD token number to monitor.\r
   @param[in]  NotificationFunction  The function to call when the token \r
                                     specified by Guid and TokenNumber is set.\r
 \r
@@ -686,9 +1403,14 @@ LibPcdCallbackOnSet (
 \r
 /**\r
   Disable a notification function that was established with LibPcdCallbackonSet().\r
-\r
-  @param[in]  Guid          Specify the GUID token space.\r
-  @param[in]  TokenNumber   Specify the token number.\r
+  \r
+  Disable a notification function that was previously established with LibPcdCallbackOnSet().\r
+  If NotificationFunction is NULL, then ASSERT().\r
+  If LibPcdCallbackOnSet() was not previously called with Guid, TokenNumber, \r
+  and NotificationFunction, then ASSERT().\r
+  \r
+  @param[in]  Guid                 Specify the GUID token space.\r
+  @param[in]  TokenNumber          Specify the token number.\r
   @param[in]  NotificationFunction The callback function to be unregistered.\r
 \r
 **/\r
@@ -702,19 +1424,22 @@ LibPcdCancelCallback (
 \r
 \r
 /**\r
+  Retrieves the next token in a token space.\r
+  \r
   Retrieves the next PCD token number from the token space specified by Guid.  \r
   If Guid is NULL, then the default token space is used.  If TokenNumber is 0, \r
   then the first token number is returned.  Otherwise, the token number that \r
   follows TokenNumber in the token space is returned.  If TokenNumber is the last \r
-  token number in the token space, then 0 is returned.  If TokenNumber is not 0 and \r
-  is not in the token space specified by Guid, then ASSERT().\r
+  token number in the token space, then 0 is returned.  \r
+  \r
+  If TokenNumber is not 0 and is not in the token space specified by Guid, then ASSERT().\r
 \r
   @param[in]  Guid        Pointer to a 128-bit unique value that designates which namespace \r
                           to set a value from.  If NULL, then the default token space is used.\r
   @param[in]  TokenNumber The previous PCD token number.  If 0, then retrieves the first PCD \r
                           token number.\r
 \r
-  @retval UINTN            The next valid token number.\r
+  @return The next valid token number.\r
 \r
 **/\r
 UINTN           \r
@@ -727,46 +1452,46 @@ LibPcdGetNextToken (
 \r
 \r
 /**\r
-  Retrieves the next PCD token space from a token space specified by Guid.\r
-  Guid of NULL is reserved to mark the default local token namespace on the current\r
-  platform. If Guid is NULL, then the GUID of the first non-local token space of the \r
-  current platform is returned. If Guid is the last non-local token space, \r
-  then NULL is returned. \r
-\r
-  If Guid is not NULL and is not a valid token space in the current platform, then ASSERT().\r
-\r
-\r
+  Used to retrieve the list of available PCD token space GUIDs.\r
   \r
-  @param[in]  Guid  Pointer to a 128-bit unique value that designates from which namespace \r
-                    to start the search.\r
+  Returns the PCD token space GUID that follows TokenSpaceGuid in the list of token spaces\r
+  in the platform.\r
+  If TokenSpaceGuid is NULL, then a pointer to the first PCD token spaces returned.\r
+  If TokenSpaceGuid is the last PCD token space GUID in the list, then NULL is returned.\r
+  \r
+  @param  TokenSpaceGuid  Pointer to the a PCD token space GUID\r
 \r
-  @retval CONST GUID *  The next valid token namespace.\r
+  @return The next valid token namespace.\r
 \r
 **/\r
-GUID *           \r
+GUID *\r
 EFIAPI\r
 LibPcdGetNextTokenSpace (\r
-  IN CONST GUID  *Guid\r
+  IN CONST GUID  *TokenSpaceGuid\r
   );\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 by Buffer \r
-  and SizeOfValue.  Buffer is returned.  If SizeOfValue is greater than \r
-  MaximumDatumSize, then set SizeOfValue to MaximumDatumSize and return \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 SizeOfValue is set to MAX_ADDRESS, then SizeOfValue must be set to \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 SizeOfValue is NULL, then ASSERT().\r
-  If SizeOfValue > 0 and Buffer 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 Return the pointer to the buffer that was set.\r
 \r
 **/\r
 VOID *\r