2007-06-19 12:55:24 +02:00
|
|
|
/** @file
|
2008-11-14 04:45:34 +01:00
|
|
|
Provides library services to get and set Platform Configuration Database entries.
|
|
|
|
|
2009-06-04 18:16:15 +02:00
|
|
|
PCD Library Class provides a PCD usage macro interface for all PCD types.
|
|
|
|
It should be included in any module that uses PCD. If a module uses dynamic/dynamicex
|
|
|
|
PCD, module should be linked to a PEIM/DXE library instance to access that PCD.
|
|
|
|
If a module uses PatchableInModule type PCD, it also needs the library instance to produce
|
|
|
|
LibPatchPcdSetPtr() interface. For FeatureFlag/Fixed PCD, the macro interface is
|
2009-06-11 03:46:51 +02:00
|
|
|
translated to a variable or macro that is auto-generated by build tool in
|
2008-11-14 04:45:34 +01:00
|
|
|
module's autogen.h/autogen.c.
|
2008-11-21 08:07:12 +01:00
|
|
|
The PcdGetXX(), PcdSetXX(), PcdToken(), and PcdGetNextTokenSpace() operations are
|
|
|
|
only available prior to ExitBootServices(). If access to PCD values are required
|
|
|
|
at runtime, then their values must be collected prior to ExitBootServices().
|
|
|
|
There are no restrictions on the use of FeaturePcd(), FixedPcdGetXX(),
|
|
|
|
PatchPcdGetXX(), and PatchPcdSetXX().
|
2008-11-14 04:45:34 +01:00
|
|
|
|
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PCD_LIB_H__
|
|
|
|
#define __PCD_LIB_H__
|
|
|
|
|
2008-08-18 07:36:10 +02:00
|
|
|
#define PCD_MAX_SKU_ID 0x100
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a token number based on a token name.
|
|
|
|
|
|
|
|
Returns the token number associated with the PCD token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve the token number for.
|
|
|
|
|
|
|
|
@return The token number associated with the PCD.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdToken(TokenName) _PCD_TOKEN_##TokenName
|
|
|
|
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
/**
|
|
|
|
Retrieves a Boolean PCD feature flag based on a token name.
|
|
|
|
|
|
|
|
Returns the Boolean value for the PCD feature flag specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return Boolean value for the PCD feature flag.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FeaturePcdGet(TokenName) _PCD_GET_MODE_BOOL_##TokenName
|
|
|
|
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
/**
|
|
|
|
Retrieves an 8-bit fixed PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 8-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 8-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGet8(TokenName) _PCD_VALUE_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 16-bit fixed PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 16-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 16-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGet16(TokenName) _PCD_VALUE_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 32-bit fixed PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 32-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 32-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGet32(TokenName) _PCD_VALUE_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 64-bit fixed PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 64-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 64-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGet64(TokenName) _PCD_VALUE_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a Boolean fixed PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the Boolean value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return The Boolean value for the token.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGetBool(TokenName) _PCD_VALUE_##TokenName
|
|
|
|
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
/**
|
|
|
|
Retrieves a pointer to a fixed PCD token buffer based on a token name.
|
|
|
|
|
|
|
|
Returns a pointer to the buffer for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A pointer to the buffer.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define FixedPcdGetPtr(TokenName) ((VOID *)_PCD_VALUE_##TokenName)
|
|
|
|
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
/**
|
|
|
|
Retrieves an 8-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 8-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return An 8-bit binary patchable PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGet8(TokenName) _gPcd_BinaryPatch_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 16-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 16-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 16-bit binary patchable PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGet16(TokenName) _gPcd_BinaryPatch_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 32-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 32-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 32-bit binary patchable PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGet32(TokenName) _gPcd_BinaryPatch_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 64-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 64-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 64-bit binary patchable PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGet64(TokenName) _gPcd_BinaryPatch_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a Boolean binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the Boolean value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return The Boolean value for the token.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGetBool(TokenName) _gPcd_BinaryPatch_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a pointer to a binary patchable PCD token buffer based on a token name.
|
|
|
|
|
|
|
|
Returns a pointer to the buffer for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A pointer to the buffer for the token.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdGetPtr(TokenName) ((VOID *)_gPcd_BinaryPatch_##TokenName)
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets an 8-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 8-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param Value The 8-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSet8(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 16-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 16-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param Value The 16-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSet16(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 32-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 32-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param Value The 32-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSet32(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 64-bit binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 64-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param Value The 64-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSet64(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a Boolean binary patchable PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the Boolean value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param Value The boolean value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSetBool(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a pointer to a binary patchable PCD token buffer based on a token name.
|
|
|
|
|
|
|
|
Sets the buffer for the token specified by TokenName. Buffer is returned.
|
|
|
|
If SizeOfBuffer is greater than the maximum size supported by TokenName, then set SizeOfBuffer
|
|
|
|
to the maximum size supported by TokenName and return NULL to indicate that the set operation
|
|
|
|
was not actually performed. If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be
|
|
|
|
set to the maximum size supported by TokenName and NULL must be returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
If TokenName is not a feature flag, then the module will not build.
|
|
|
|
|
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param TokenName The name of the binary patchable PCD token to set the current value for.
|
|
|
|
@param SizeOfBuffer A pointer to the size, in bytes, of Buffer.
|
|
|
|
@param Buffer Pointer to the value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the pointer to the Buffer that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PatchPcdSetPtr(TokenName, Size, Buffer) \
|
|
|
|
LibPatchPcdSetPtr ( \
|
|
|
|
_gPcd_BinaryPatch_##TokenName, \
|
|
|
|
(UINTN)_PCD_PATCHABLE_##TokenName##_SIZE, \
|
|
|
|
(Size), \
|
|
|
|
(Buffer) \
|
|
|
|
)
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
/**
|
|
|
|
Retrieves an 8-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 8-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 8-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGet8(TokenName) _PCD_GET_MODE_8_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 16-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 16-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 16-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGet16(TokenName) _PCD_GET_MODE_16_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 32-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 32-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 32-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGet32(TokenName) _PCD_GET_MODE_32_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 64-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the 64-bit value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return 64-bit value for the token specified by TokenName.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGet64(TokenName) _PCD_GET_MODE_64_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a pointer to a PCD token buffer based on a token name.
|
|
|
|
|
|
|
|
Returns a pointer to the buffer for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A pointer to the buffer.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetPtr(TokenName) _PCD_GET_MODE_PTR_##TokenName
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a Boolean PCD token value based on a token name.
|
|
|
|
|
|
|
|
Returns the Boolean value for the token specified by TokenName.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A Boolean PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetBool(TokenName) _PCD_GET_MODE_BOOL_##TokenName
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets an 8-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 8-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
@param Value The 8-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSet8(TokenName, Value) _PCD_SET_MODE_8_##TokenName ((Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 16-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 16-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
@param Value The 16-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSet16(TokenName, Value) _PCD_SET_MODE_16_##TokenName ((Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 32-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 32-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
@param Value The 32-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSet32(TokenName, Value) _PCD_SET_MODE_32_##TokenName ((Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 64-bit PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the 64-bit value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
@param Value The 64-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSet64(TokenName, Value) _PCD_SET_MODE_64_##TokenName ((Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a pointer to a PCD token buffer based on a token name.
|
|
|
|
|
|
|
|
Sets the buffer for the token specified by TokenName. Buffer is returned.
|
|
|
|
If SizeOfBuffer is greater than the maximum size supported by TokenName,
|
|
|
|
then set SizeOfBuffer to the maximum size supported by TokenName and return NULL
|
|
|
|
to indicate that the set operation was not actually performed. If SizeOfBuffer
|
|
|
|
is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size supported
|
|
|
|
by TokenName and NULL must be returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param SizeOfBuffer A pointer to the size, in bytes, of Buffer.
|
|
|
|
@param Buffer A pointer to the buffer to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the pointer to the Buffer that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetPtr(TokenName, SizeOfBuffer, Buffer) \
|
|
|
|
_PCD_SET_MODE_PTR_##TokenName ((SizeOfBuffer), (Buffer))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a Boolean PCD token value based on a token name.
|
|
|
|
|
|
|
|
Sets the Boolean value for the token specified by TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space, then the module will not build.
|
|
|
|
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Buffer The Boolean value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetBool(TokenName, Value) _PCD_SET_MODE_BOOL_##TokenName ((Value))
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves an 8-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns the 8-bit value for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return An 8-bit PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetEx8(Guid, TokenName) LibPcdGetEx8 ((Guid), _PCD_TOKEN_##TokenName)
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 16-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns the 16-bit value for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 16-bit PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetEx16(Guid, TokenName) LibPcdGetEx16 ((Guid), _PCD_TOKEN_##TokenName)
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 32-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns the 32-bit value for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 32-bit PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetEx32(Guid, TokenName) LibPcdGetEx32 ((Guid), _PCD_TOKEN_##TokenName)
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a 64-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns the 64-bit value for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A 64-bit PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetEx64(Guid, TokenName) LibPcdGetEx64 ((Guid), _PCD_TOKEN_##TokenName)
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a pointer to a PCD token buffer based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns a pointer to the buffer for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A pointer to a PCD token buffer.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetExPtr(Guid, TokenName) LibPcdGetExPtr ((Guid), _PCD_TOKEN_##TokenName)
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Retrieves a Boolean PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Returns the Boolean value for the token specified by Guid and TokenName.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to retrieve a current value for.
|
|
|
|
|
|
|
|
@return A Boolean PCD token value.
|
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdGetExBool(Guid, TokenName) LibPcdGetExBool ((Guid), _PCD_TOKEN_##TokenName)
|
|
|
|
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Sets an 8-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the 8-bit value for the token specified by Guid and TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Value The 8-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetEx8(Guid, TokenName, Value) LibPcdSetEx8 ((Guid), _PCD_TOKEN_##TokenName, (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 16-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the 16-bit value for the token specified by Guid and TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Value The 16-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetEx16(Guid, TokenName, Value) LibPcdSetEx16 ((Guid), _PCD_TOKEN_##TokenName, (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 32-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the 32-bit value for the token specified by Guid and TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Value The 32-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetEx32(Guid, TokenName, Value) LibPcdSetEx32 ((Guid), _PCD_TOKEN_##TokenName, (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a 64-bit PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the 64-bit value for the token specified by Guid and TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Value The 64-bit value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetEx64(Guid, TokenName, Value) LibPcdSetEx64 ((Guid), _PCD_TOKEN_##TokenName, (Value))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a pointer to a PCD token buffer based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the buffer for the token specified by Guid and TokenName. Buffer is returned.
|
|
|
|
If SizeOfBuffer is greater than the maximum size supported by Guid and TokenName,
|
|
|
|
then set SizeOfBuffer to the maximum size supported by Guid and TokenName and return
|
|
|
|
NULL to indicate that the set operation was not actually performed. If SizeOfBuffer
|
|
|
|
is set to MAX_ADDRESS, then SizeOfBuffer must be set to the maximum size supported by
|
|
|
|
Guid and TokenName and NULL must be returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param SizeOfBuffer A pointer to the size, in bytes, of Buffer.
|
2009-06-05 07:13:55 +02:00
|
|
|
@param Buffer Pointer to the buffer to set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the pointer to the Buffer that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetExPtr(Guid, TokenName, SizeOfBuffer, Buffer) \
|
|
|
|
LibPcdSetExPtr ((Guid), _PCD_TOKEN_##TokenName, (SizeOfBuffer), (Buffer))
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a Boolean PCD token value based on a GUID and a token name.
|
|
|
|
|
|
|
|
Sets the Boolean value for the token specified by Guid and TokenName. Value is returned.
|
|
|
|
If TokenName is not a valid token in the token space specified by Guid,
|
|
|
|
then the module will not build.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
|
|
|
@param Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param TokenName The name of the PCD token to set the current value for.
|
|
|
|
@param Value The Boolean value to set.
|
|
|
|
|
2009-06-05 07:13:55 +02:00
|
|
|
@return Return the Value that was set.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
|
|
|
**/
|
2007-06-19 12:55:24 +02:00
|
|
|
#define PcdSetExBool(Guid, TokenName, Value) \
|
|
|
|
LibPcdSetExBool((Guid), _PCD_TOKEN_##TokenName, (Value))
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which SKU support can be established in the PCD infrastructure.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the current SKU in the PCD database to the value specified by SkuId. SkuId is returned.
|
2009-02-13 10:03:56 +01:00
|
|
|
If SkuId >= PCD_MAX_SKU_ID, then ASSERT().
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param SkuId The SKU value that will be used when the PCD service retrieves and sets values
|
|
|
|
associated with a PCD token.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-04 18:16:15 +02:00
|
|
|
@return Return the SKU ID that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetSku (
|
|
|
|
IN UINTN SkuId
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 8-bit value for the token specified by TokenNumber.
|
|
|
|
|
2008-04-22 07:16:14 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the 8-bit value for the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGet8 (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 16-bit value for the token specified by TokenNumber.
|
|
|
|
|
2008-04-22 07:16:14 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the 16-bit value for the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGet16 (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 32-bit value for the token specified by TokenNumber.
|
|
|
|
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the 32-bit value for the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGet32 (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 64-bit value for the token specified by TokenNumber.
|
|
|
|
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the 64-bit value for the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGet64 (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the pointer to the buffer of the token specified by TokenNumber.
|
|
|
|
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the pointer to the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetPtr (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the Boolean value of the token specified by TokenNumber.
|
|
|
|
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the Boolean value of the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetBool (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve the size of a given PCD token.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Returns the size of the token specified by TokenNumber.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetSize (
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 8-bit value for the token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the UINT8.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetEx8 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 16-bit value for the token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the UINT16.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetEx16 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the 32-bit value for the token specified by TokenNumber and Guid.
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the UINT32.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetEx32 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the 64-bit value for the token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the UINT64.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetEx64 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the pointer to the buffer of token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the VOID* pointer.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetExPtr (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the Boolean value of the token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the BOOLEAN.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetExBool (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to retrieve the size of a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Returns the size of the token specified by TokenNumber and Guid.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates
|
|
|
|
which namespace to retrieve a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to retrieve a current value for.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return Return the size.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetExSize (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 8-bit value for the token specified by TokenNumber
|
|
|
|
to the value specified by Value. Value is returned.
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 8-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSet8 (
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT8 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 16-bit value for the token specified by TokenNumber
|
|
|
|
to the value specified by Value. Value is returned.
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 16-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSet16 (
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT16 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 32-bit value for the token specified by TokenNumber
|
|
|
|
to the value specified by Value. Value is returned.
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 32-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSet32 (
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT32 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 64-bit value for the token specified by TokenNumber
|
|
|
|
to the value specified by Value. Value is returned.
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 64-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSet64 (
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT64 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets a buffer for the token specified by TokenNumber to the value
|
2008-10-21 19:53:08 +02:00
|
|
|
specified by Buffer and SizeOfBuffer. Buffer is returned.
|
|
|
|
If SizeOfBuffer is greater than the maximum size support by TokenNumber,
|
|
|
|
then set SizeOfBuffer to the maximum size supported by TokenNumber and
|
2007-06-19 12:55:24 +02:00
|
|
|
return NULL to indicate that the set operation was not actually performed.
|
|
|
|
|
2008-10-21 19:53:08 +02:00
|
|
|
If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to the
|
2007-06-19 12:55:24 +02:00
|
|
|
maximum size supported by TokenName and NULL must be returned.
|
|
|
|
|
2008-10-21 19:53:08 +02:00
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-04-22 07:16:14 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
2008-10-26 11:06:58 +01:00
|
|
|
@param[in, out] SizeOfBuffer The size, in bytes, of Buffer.
|
2008-11-21 08:07:12 +01:00
|
|
|
@param[in] Buffer A pointer to the buffer to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the pointer for the Buffer that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
2008-11-21 08:07:12 +01:00
|
|
|
VOID *
|
2007-06-19 12:55:24 +02:00
|
|
|
EFIAPI
|
|
|
|
LibPcdSetPtr (
|
2008-11-21 08:07:12 +01:00
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN OUT UINTN *SizeOfBuffer,
|
2008-12-03 16:38:24 +01:00
|
|
|
IN CONST VOID *Buffer
|
2007-06-19 12:55:24 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the Boolean value for the token specified by TokenNumber
|
|
|
|
to the value specified by Value. Value is returned.
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The boolean value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetBool (
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN BOOLEAN Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 8-bit value for the token specified by TokenNumber and
|
|
|
|
Guid to the value specified by Value. Value is returned.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 8-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT8
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetEx8 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT8 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 16-bit value for the token specified by TokenNumber and
|
|
|
|
Guid to the value specified by Value. Value is returned.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 16-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT16
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetEx16 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT16 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 32-bit value for the token specified by TokenNumber and
|
|
|
|
Guid to the value specified by Value. Value is returned.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 32-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT32
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetEx32 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT32 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the 64-bit value for the token specified by TokenNumber and
|
|
|
|
Guid to the value specified by Value. Value is returned.
|
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The 64-bit value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINT64
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetEx64 (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN UINT64 Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets a buffer for the token specified by TokenNumber to the value specified by
|
2008-10-21 19:53:08 +02:00
|
|
|
Buffer and SizeOfBuffer. Buffer is returned. If SizeOfBuffer is greater than
|
|
|
|
the maximum size support by TokenNumber, then set SizeOfBuffer to the maximum size
|
2007-06-19 12:55:24 +02:00
|
|
|
supported by TokenNumber and return NULL to indicate that the set operation
|
|
|
|
was not actually performed.
|
|
|
|
|
|
|
|
If Guid is NULL, then ASSERT().
|
2008-10-21 19:53:08 +02:00
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in, out] SizeOfBuffer The size, in bytes, of Buffer.
|
|
|
|
@param[in] Buffer A pointer to the buffer to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the pointer to the Buffer that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetExPtr (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN OUT UINTN *SizeOfBuffer,
|
|
|
|
IN VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
This function provides a means by which to set a value for a given PCD token.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the Boolean value for the token specified by TokenNumber and
|
|
|
|
Guid to the value specified by Value. Value is returned.
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
If Guid is NULL, then ASSERT().
|
|
|
|
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that
|
|
|
|
designates which namespace to set a value from.
|
|
|
|
@param[in] TokenNumber The PCD token number to set a current value for.
|
|
|
|
@param[in] Value The Boolean value to set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the Value that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdSetExBool (
|
|
|
|
IN CONST GUID *Guid,
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN BOOLEAN Value
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-02-13 10:03:56 +01:00
|
|
|
This notification function serves two purposes.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-06-04 18:16:15 +02:00
|
|
|
Firstly, it notifies the module that did the registration that the value of this
|
2009-02-13 10:03:56 +01:00
|
|
|
PCD token has been set.
|
2009-06-04 18:16:15 +02:00
|
|
|
Secondly, it provides a mechanism for the module that did the registration to intercept
|
2009-02-13 10:03:56 +01:00
|
|
|
the set operation and override the value been set if necessary. After the invocation of
|
|
|
|
the callback function, TokenData will be used by PCD service PEIM or driver to modify th
|
|
|
|
internal data in PCD database.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-04-22 07:16:14 +02:00
|
|
|
@param[in] CallBackGuid The PCD token GUID being set.
|
|
|
|
@param[in] CallBackToken The PCD token number being set.
|
|
|
|
@param[in, out] TokenData A pointer to the token data being set.
|
|
|
|
@param[in] TokenDataSize The size, in bytes, of the data being set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
VOID
|
2008-07-31 10:22:39 +02:00
|
|
|
(EFIAPI *PCD_CALLBACK)(
|
2007-06-19 12:55:24 +02:00
|
|
|
IN CONST GUID *CallBackGuid, OPTIONAL
|
|
|
|
IN UINTN CallBackToken,
|
|
|
|
IN OUT VOID *TokenData,
|
|
|
|
IN UINTN TokenDataSize
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
Set up a notification function that is called when a specified token is set.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
When the token specified by TokenNumber and Guid is set,
|
|
|
|
then notification function specified by NotificationFunction is called.
|
2009-02-13 10:03:56 +01:00
|
|
|
If Guid is NULL, then the default token space is used.
|
2007-06-19 12:55:24 +02:00
|
|
|
If NotificationFunction is NULL, then ASSERT().
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates which
|
|
|
|
namespace to set a value from. If NULL, then the default
|
|
|
|
token space is used.
|
|
|
|
@param[in] TokenNumber The PCD token number to monitor.
|
2008-07-21 09:42:51 +02:00
|
|
|
@param[in] NotificationFunction The function to call when the token
|
|
|
|
specified by Guid and TokenNumber is set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
LibPcdCallbackOnSet (
|
|
|
|
IN CONST GUID *Guid, OPTIONAL
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN PCD_CALLBACK NotificationFunction
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Disable a notification function that was established with LibPcdCallbackonSet().
|
2008-11-21 08:07:12 +01:00
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
Disable a notification function that was previously established with LibPcdCallbackOnSet().
|
2008-11-21 08:07:12 +01:00
|
|
|
If NotificationFunction is NULL, then ASSERT().
|
|
|
|
If LibPcdCallbackOnSet() was not previously called with Guid, TokenNumber,
|
|
|
|
and NotificationFunction, then ASSERT().
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param[in] Guid Specify the GUID token space.
|
|
|
|
@param[in] TokenNumber Specify the token number.
|
2007-06-19 12:55:24 +02:00
|
|
|
@param[in] NotificationFunction The callback function to be unregistered.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
|
|
|
LibPcdCancelCallback (
|
|
|
|
IN CONST GUID *Guid, OPTIONAL
|
|
|
|
IN UINTN TokenNumber,
|
|
|
|
IN PCD_CALLBACK NotificationFunction
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
Retrieves the next token in a token space.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Retrieves the next PCD token number from the token space specified by Guid.
|
|
|
|
If Guid is NULL, then the default token space is used. If TokenNumber is 0,
|
|
|
|
then the first token number is returned. Otherwise, the token number that
|
|
|
|
follows TokenNumber in the token space is returned. If TokenNumber is the last
|
2008-11-21 08:07:12 +01:00
|
|
|
token number in the token space, then 0 is returned.
|
|
|
|
|
|
|
|
If TokenNumber is not 0 and is not in the token space specified by Guid, then ASSERT().
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-04-22 07:16:14 +02:00
|
|
|
@param[in] Guid Pointer to a 128-bit unique value that designates which namespace
|
|
|
|
to set a value from. If NULL, then the default token space is used.
|
|
|
|
@param[in] TokenNumber The previous PCD token number. If 0, then retrieves the first PCD
|
|
|
|
token number.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return The next valid token number.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
LibPcdGetNextToken (
|
|
|
|
IN CONST GUID *Guid, OPTIONAL
|
|
|
|
IN UINTN TokenNumber
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
Used to retrieve the list of available PCD token space GUIDs.
|
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
Returns the PCD token space GUID that follows TokenSpaceGuid in the list of token spaces
|
|
|
|
in the platform.
|
|
|
|
If TokenSpaceGuid is NULL, then a pointer to the first PCD token spaces returned.
|
|
|
|
If TokenSpaceGuid is the last PCD token space GUID in the list, then NULL is returned.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2009-02-13 10:03:56 +01:00
|
|
|
@param TokenSpaceGuid Pointer to the a PCD token space GUID
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-09-16 08:01:21 +02:00
|
|
|
@return The next valid token namespace.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
2009-02-13 10:03:56 +01:00
|
|
|
GUID *
|
2007-06-19 12:55:24 +02:00
|
|
|
EFIAPI
|
|
|
|
LibPcdGetNextTokenSpace (
|
2008-11-21 08:07:12 +01:00
|
|
|
IN CONST GUID *TokenSpaceGuid
|
2007-06-19 12:55:24 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-21 08:07:12 +01:00
|
|
|
Sets a value of a patchable PCD entry that is type pointer.
|
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
Sets the PCD entry specified by PatchVariable to the value specified by Buffer
|
2008-10-21 19:53:08 +02:00
|
|
|
and SizeOfBuffer. Buffer is returned. If SizeOfBuffer is greater than
|
|
|
|
MaximumDatumSize, then set SizeOfBuffer to MaximumDatumSize and return
|
2007-06-19 12:55:24 +02:00
|
|
|
NULL to indicate that the set operation was not actually performed.
|
2008-10-21 19:53:08 +02:00
|
|
|
If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to
|
2007-06-19 12:55:24 +02:00
|
|
|
MaximumDatumSize and NULL must be returned.
|
|
|
|
|
|
|
|
If PatchVariable is NULL, then ASSERT().
|
2008-10-21 19:53:08 +02:00
|
|
|
If SizeOfBuffer is NULL, then ASSERT().
|
|
|
|
If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
@param[in] PatchVariable A pointer to the global variable in a module that is
|
|
|
|
the target of the set operation.
|
|
|
|
@param[in] MaximumDatumSize The maximum size allowed for the PCD entry specified by PatchVariable.
|
|
|
|
@param[in, out] SizeOfBuffer A pointer to the size, in bytes, of Buffer.
|
|
|
|
@param[in] Buffer A pointer to the buffer to used to set the target variable.
|
2008-09-16 08:01:21 +02:00
|
|
|
|
2009-06-05 04:36:13 +02:00
|
|
|
@return Return the pointer to the Buffer that was set.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
LibPatchPcdSetPtr (
|
|
|
|
IN VOID *PatchVariable,
|
|
|
|
IN UINTN MaximumDatumSize,
|
|
|
|
IN OUT UINTN *SizeOfBuffer,
|
|
|
|
IN CONST VOID *Buffer
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|