git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9491 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file
 | 
						|
  This file contains the boot script defintions that are shared between the 
 | 
						|
  Boot Script Executor PPI and the Boot Script Save Protocol.
 | 
						|
 | 
						|
  Copyright (c) 2009, 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.
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#ifndef _BOOT_SCRIPT_H_
 | 
						|
#define _BOOT_SCRIPT_H_
 | 
						|
 | 
						|
#include <PiDxe.h>
 | 
						|
///
 | 
						|
/// The framework implementation defines follow opcode which is different from PI specification: 
 | 
						|
/// To add FRAMEWORK_ prefix to avoid naming conflict.
 | 
						|
///
 | 
						|
/// S3 Boot Script Table identifier
 | 
						|
///
 | 
						|
#define FRAMEWORK_EFI_ACPI_S3_RESUME_SCRIPT_TABLE               0x00
 | 
						|
///
 | 
						|
/// The opcode is to add a record for memory reads of the memory location and continues when the 
 | 
						|
/// exit criteria is satisfied or after a defined duration.
 | 
						|
///
 | 
						|
#define FRAMEWORK_EFI_BOOT_SCRIPT_MEM_POLL_OPCODE               0x09
 | 
						|
///
 | 
						|
/// The opcode is to add a record for dispatching specified arbitrary code into a specified
 | 
						|
/// boot script table.
 | 
						|
///
 | 
						|
#define FRAMEWORK_EFI_BOOT_SCRIPT_DISPATCH_2_OPCODE             0x0D
 | 
						|
///
 | 
						|
/// The opcode indicate the start of the boot script table.
 | 
						|
///
 | 
						|
#define FRAMEWORK_EFI_BOOT_SCRIPT_TABLE_OPCODE                  0xAA
 | 
						|
///
 | 
						|
/// The opcode indicate the end of the boot script table.
 | 
						|
///
 | 
						|
#define FRAMEWORK_EFI_BOOT_SCRIPT_TERMINATE_OPCODE              0xFF
 | 
						|
 | 
						|
 | 
						|
#endif
 |