Home | History | Annotate | Download | only in Protocol
      1 /*++
      2 
      3 Copyright (c)  1999  - 2014, Intel Corporation. All rights reserved
      4 
      5   This program and the accompanying materials are licensed and made available under
      6   the terms and conditions of the BSD License that accompanies this distribution.
      7   The full text of the license may be found at
      8   http://opensource.org/licenses/bsd-license.php.
      9 
     10   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     11   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     12 
     13 
     14 
     15 Module Name:
     16 
     17   DxePchPolicyUpdateProtocol.h
     18 
     19 Abstract:
     20 
     21   PCH policy update protocol. This protocol is consumed by the PchDxePolicyInit driver
     22 
     23 --*/
     24 #ifndef _DXE_PCH_POLICY_UPDATE_PROTOCOL_H_
     25 #define _DXE_PCH_POLICY_UPDATE_PROTOCOL_H_
     26 
     27 #include "PchRegs.h"
     28 
     29 
     30 #ifdef ECP_FLAG
     31 #define DXE_PCH_POLICY_UPDATE_PROTOCOL_GUID \
     32   { \
     33     0x1a819e49, 0xd8ee, 0x48cb, 0x9a, 0x9c, 0xa, 0xa0, 0xd2, 0x81, 0xa, 0x38 \
     34   }
     35 #else
     36 #define DXE_PCH_POLICY_UPDATE_PROTOCOL_GUID \
     37   { \
     38     0x1a819e49, 0xd8ee, 0x48cb, \
     39     { \
     40         0x9a, 0x9c, 0xa, 0xa0, 0xd2, 0x81, 0xa, 0x38 \
     41     } \
     42   }
     43 #endif
     44 
     45 extern EFI_GUID                                   gDxePchPolicyUpdateProtocolGuid;
     46 #define DXE_PCH_POLICY_UPDATE_PROTOCOL_REVISION_1 1
     47 
     48 //
     49 // ------------ General PCH policy Update protocol definition ------------
     50 //
     51 struct _DXE_PCH_POLICY_UPDATE_PROTOCOL {
     52   UINT8                   Revision;
     53 };
     54 
     55 typedef struct _DXE_PCH_POLICY_UPDATE_PROTOCOL  DXE_PCH_POLICY_UPDATE_PROTOCOL;
     56 
     57 #endif
     58