]> git.proxmox.com Git - mirror_edk2.git/blame - QuarkSocPkg/QuarkNorthCluster/Include/Protocol/PchInfo.h
QuarkSocPkg/QncSmmDispatcher: Fix context passed to SMI handlers
[mirror_edk2.git] / QuarkSocPkg / QuarkNorthCluster / Include / Protocol / PchInfo.h
CommitLineData
9b6bbcdb
MK
1/** @file\r
2This file defines the QNC Info Protocol.\r
3\r
4Copyright (c) 2013-2015 Intel Corporation.\r
5\r
6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14\r
15**/\r
16#ifndef _PCH_INFO_H_\r
17#define _PCH_INFO_H_\r
18\r
19//\r
20// Extern the GUID for protocol users.\r
21//\r
22extern EFI_GUID gEfiQncInfoProtocolGuid;\r
23\r
24//\r
25// Forward reference for ANSI C compatibility\r
26//\r
27typedef struct _EFI_QNC_INFO_PROTOCOL EFI_QNC_INFO_PROTOCOL;\r
28\r
29//\r
30// Protocol revision number\r
31// Any backwards compatible changes to this protocol will result in an update in the revision number\r
32// Major changes will require publication of a new protocol\r
33//\r
34// Revision 1: Original version\r
35// Revision 2: Add RCVersion item to EFI_QNC_INFO_PROTOCOL\r
36//\r
37#define QNC_INFO_PROTOCOL_REVISION_1 1\r
38#define QNC_INFO_PROTOCOL_REVISION_2 2\r
39\r
40//\r
41// RCVersion[7:0] is the release number.\r
42//\r
43#define QNC_RC_VERSION 0x01020000\r
44\r
45//\r
46// Protocol definition\r
47//\r
48struct _EFI_QNC_INFO_PROTOCOL {\r
49 UINT8 Revision;\r
50 UINT8 BusNumber;\r
51 UINT32 RCVersion;\r
52};\r
53\r
54#endif\r