summaryrefslogtreecommitdiff
path: root/EdkCompatibilityPkg/Compatibility
diff options
context:
space:
mode:
authorxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2010-03-18 08:37:20 +0000
committerxli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524>2010-03-18 08:37:20 +0000
commit2ae0d1205f97037bb2ac5228ddbe7256048d14cb (patch)
treea5485e10dcddb44f1e653c03719dadb5c5ee7052 /EdkCompatibilityPkg/Compatibility
parenta04b8e81f9d689cc4ef00bb88fc326f87e4ef47b (diff)
downloadedk2-platforms-2ae0d1205f97037bb2ac5228ddbe7256048d14cb.tar.xz
Refine Legacy Region thunk to comply with PI 1.2.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10279 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Compatibility')
-rw-r--r--EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.c38
1 files changed, 27 insertions, 11 deletions
diff --git a/EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.c b/EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.c
index 79cc62aa6d..be5f8dee63 100644
--- a/EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.c
+++ b/EdkCompatibilityPkg/Compatibility/LegacyRegion2OnLegacyRegionThunk/LegacyRegion2OnLegacyRegionThunk.c
@@ -4,7 +4,7 @@
Intel's Framework Legacy Region Protocol is replaced by Legacy Region 2 Protocol in PI 1.2.
This module produces PI Legacy Region 2 Protocol on top of Framework Legacy Region Protocol.
-Copyright (c) 2009, Intel Corporation
+Copyright (c) 2009 - 2010, 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
@@ -63,6 +63,10 @@ LegacyRegion2Decode (
IN BOOLEAN *On
)
{
+ if ((Start < 0xC0000) || ((Start + Length - 1) > 0xFFFFF)) {
+ return EFI_INVALID_PARAMETER;
+ }
+
ASSERT (Granularity != NULL);
*Granularity = 0;
@@ -103,6 +107,10 @@ LegacyRegion2Lock (
OUT UINT32 *Granularity
)
{
+ if ((Start < 0xC0000) || ((Start + Length - 1) > 0xFFFFF)) {
+ return EFI_INVALID_PARAMETER;
+ }
+
ASSERT (Granularity != NULL);
return mLegacyRegion->Lock (
@@ -147,14 +155,18 @@ LegacyRegion2BootLock (
OUT UINT32 *Granularity
)
{
- ASSERT (Granularity != NULL);
+ if ((Start < 0xC0000) || ((Start + Length - 1) > 0xFFFFF)) {
+ return EFI_INVALID_PARAMETER;
+ }
- return mLegacyRegion->BootLock (
- mLegacyRegion,
- Start,
- Length,
- Granularity
- );
+ //
+ // PI Legacy Region 2 Protocol and Framework Legacy Region Protocol have different
+ // semantic of BootLock() API, so we cannot thunk to Framework Legacy Region Protocol
+ // to produce the functionality of PI version. In addition, this functionality is
+ // chipset dependent, so here we return EFI_UNSUPPORTED, which is a valid return status
+ // code specified by PI spec.
+ //
+ return EFI_UNSUPPORTED;
}
/**
@@ -186,6 +198,10 @@ LegacyRegion2Unlock (
OUT UINT32 *Granularity
)
{
+ if ((Start < 0xC0000) || ((Start + Length - 1) > 0xFFFFF)) {
+ return EFI_INVALID_PARAMETER;
+ }
+
ASSERT (Granularity != NULL);
return mLegacyRegion->UnLock (
@@ -203,7 +219,7 @@ LegacyRegion2Unlock (
region. Each attribute may have a different granularity and the granularity may not be the same
for all memory ranges in the legacy region.
- @param This[in] Indicates the EFI_LEGACY_REGION_PROTOCOL instance.
+ @param This[in] Indicates the EFI_LEGACY_REGION2_PROTOCOL instance.
@param DescriptorCount[out] The number of region descriptor entries returned in the Descriptor
buffer.
@param Descriptor[out] A pointer to a pointer used to return a buffer where the legacy
@@ -211,8 +227,8 @@ LegacyRegion2Unlock (
DescriptorCount number of region descriptors. This function will
provide the memory for the buffer.
- @retval EFI_SUCCESS The region's attributes were successfully modified.
- @retval EFI_INVALID_PARAMETER If Start or Length describe an address not in the Legacy Region.
+ @retval EFI_SUCCESS The information structure was returned.
+ @retval EFI_UNSUPPORTED This function is not supported.
**/
EFI_STATUS