2007-06-15 12:02:42 +02:00
|
|
|
/** @file
|
2010-03-16 02:53:11 +01:00
|
|
|
This protocol manages the legacy memory regions between 0xc0000 - 0xfffff.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved<BR>
|
|
|
|
This program and the accompanying materials are licensed and made available under
|
|
|
|
the terms and conditions of the BSD License that 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-15 12:02:42 +02:00
|
|
|
|
|
|
|
@par Revision Reference:
|
|
|
|
This protocol is defined in Framework for EFI Compatibility Support Module spec
|
2009-05-21 11:04:03 +02:00
|
|
|
Version 0.97.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _EFI_LEGACY_REGION_H_
|
|
|
|
#define _EFI_LEGACY_REGION_H_
|
|
|
|
|
2007-06-28 14:23:11 +02:00
|
|
|
|
2007-06-15 12:02:42 +02:00
|
|
|
#define EFI_LEGACY_REGION_PROTOCOL_GUID \
|
|
|
|
{ \
|
|
|
|
0xfc9013a, 0x568, 0x4ba9, {0x9b, 0x7e, 0xc9, 0xc3, 0x90, 0xa6, 0x60, 0x9b } \
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _EFI_LEGACY_REGION_PROTOCOL EFI_LEGACY_REGION_PROTOCOL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets hardware to decode or not decode a region.
|
|
|
|
|
|
|
|
@param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance
|
2010-03-16 02:53:11 +01:00
|
|
|
@param Start The start of the region to decode.
|
|
|
|
@param Length The size in bytes of the region.
|
|
|
|
@param On The decode/nondecode flag.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
@retval EFI_SUCCESS The decode range successfully changed.
|
2007-06-15 12:02:42 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_LEGACY_REGION_DECODE)(
|
2007-06-15 12:02:42 +02:00
|
|
|
IN EFI_LEGACY_REGION_PROTOCOL *This,
|
|
|
|
IN UINT32 Start,
|
|
|
|
IN UINT32 Length,
|
|
|
|
IN BOOLEAN *On
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a region to read only.
|
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
@param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance.
|
|
|
|
@param Start The start of region to lock.
|
|
|
|
@param Length The size in bytes of the region.
|
2007-06-15 12:02:42 +02:00
|
|
|
@param Granularity Lock attribute affects this granularity in bytes.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The region was made read only.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_LEGACY_REGION_LOCK)(
|
2007-06-15 12:02:42 +02:00
|
|
|
IN EFI_LEGACY_REGION_PROTOCOL *This,
|
|
|
|
IN UINT32 Start,
|
|
|
|
IN UINT32 Length,
|
|
|
|
OUT UINT32 *Granularity OPTIONAL
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a region to read only and ensures that flash is locked from being
|
|
|
|
inadvertently modified.
|
|
|
|
|
|
|
|
@param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance
|
2010-03-16 02:53:11 +01:00
|
|
|
@param Start The start of region to lock.
|
|
|
|
@param Length The size in bytes of the region.
|
2007-06-15 12:02:42 +02:00
|
|
|
@param Granularity Lock attribute affects this granularity in bytes.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The region was made read only and flash is locked.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_LEGACY_REGION_BOOT_LOCK)(
|
2007-06-15 12:02:42 +02:00
|
|
|
IN EFI_LEGACY_REGION_PROTOCOL *This,
|
|
|
|
IN UINT32 Start,
|
|
|
|
IN UINT32 Length,
|
|
|
|
OUT UINT32 *Granularity OPTIONAL
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Sets a region to read-write.
|
|
|
|
|
|
|
|
@param This Indicates the EFI_LEGACY_REGION_PROTOCOL instance
|
2010-03-16 02:53:11 +01:00
|
|
|
@param Start The start of region to lock.
|
|
|
|
@param Length The size in bytes of the region.
|
2007-06-15 12:02:42 +02:00
|
|
|
@param Granularity Lock attribute affects this granularity in bytes.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The region was successfully made read-write.
|
|
|
|
|
|
|
|
**/
|
|
|
|
typedef
|
|
|
|
EFI_STATUS
|
2008-07-31 09:44:54 +02:00
|
|
|
(EFIAPI *EFI_LEGACY_REGION_UNLOCK)(
|
2007-06-15 12:02:42 +02:00
|
|
|
IN EFI_LEGACY_REGION_PROTOCOL *This,
|
|
|
|
IN UINT32 Start,
|
|
|
|
IN UINT32 Length,
|
|
|
|
OUT UINT32 *Granularity OPTIONAL
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Abstracts the hardware control of the physical address region 0xC0000-C0xFFFFF
|
|
|
|
for the traditional BIOS.
|
|
|
|
**/
|
|
|
|
struct _EFI_LEGACY_REGION_PROTOCOL {
|
2010-03-16 02:53:11 +01:00
|
|
|
EFI_LEGACY_REGION_DECODE Decode; ///< Specifies a region for the chipset to decode.
|
2009-07-02 09:40:24 +02:00
|
|
|
EFI_LEGACY_REGION_LOCK Lock; ///< Makes the specified OpROM region read only or locked.
|
2010-03-16 02:53:11 +01:00
|
|
|
EFI_LEGACY_REGION_BOOT_LOCK BootLock; ///< Sets a region to read only and ensures tat flash is locked from.
|
2009-07-02 09:40:24 +02:00
|
|
|
///< inadvertent modification.
|
|
|
|
EFI_LEGACY_REGION_UNLOCK UnLock; ///< Makes the specified OpROM region read-write or unlocked.
|
2007-06-15 12:02:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern EFI_GUID gEfiLegacyRegionProtocolGuid;
|
|
|
|
|
|
|
|
#endif
|