2009-07-12 01:25:44 +02:00
|
|
|
/** @file
|
|
|
|
This file contains the boot script defintions that are shared between the
|
|
|
|
Boot Script Executor PPI and the Boot Script Save Protocol.
|
|
|
|
|
2010-03-16 02:53:11 +01:00
|
|
|
Copyright (c) 2009 - 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.
|
2009-07-12 01:25:44 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
2009-07-13 11:28:00 +02:00
|
|
|
#ifndef _BOOT_SCRIPT_H_
|
|
|
|
#define _BOOT_SCRIPT_H_
|
2009-07-12 01:25:44 +02:00
|
|
|
|
2009-11-26 06:31:49 +01:00
|
|
|
#include <PiDxe.h>
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// The framework implementation defines follow opcode that are different from the PI specification:
|
|
|
|
/// Add FRAMEWORK_ prefix to avoid naming conflict.
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// S3 Boot Script Table identifier.
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2009-11-26 06:31:49 +01:00
|
|
|
#define FRAMEWORK_EFI_ACPI_S3_RESUME_SCRIPT_TABLE 0x00
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// The opcode is used to add a record for memory reads of the memory location and continues when the
|
|
|
|
/// exit criteria is satisfied, or after a defined duration.
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2009-11-26 06:31:49 +01:00
|
|
|
#define FRAMEWORK_EFI_BOOT_SCRIPT_MEM_POLL_OPCODE 0x09
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// The opcode is used to add a record for dispatching specified arbitrary code into a specified
|
2009-07-12 01:25:44 +02:00
|
|
|
/// boot script table.
|
|
|
|
///
|
2009-11-26 06:31:49 +01:00
|
|
|
#define FRAMEWORK_EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE 0x0D
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// The opcode indicates the start of the boot script table.
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2009-11-26 06:31:49 +01:00
|
|
|
#define FRAMEWORK_EFI_BOOT_SCRIPT_TABLE_OPCODE 0xAA
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2010-03-16 02:53:11 +01:00
|
|
|
/// The opcode indicates the end of the boot script table.
|
2009-07-12 01:25:44 +02:00
|
|
|
///
|
2009-11-26 06:31:49 +01:00
|
|
|
#define FRAMEWORK_EFI_BOOT_SCRIPT_TERMINATE_OPCODE 0xFF
|
2009-07-12 01:25:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|