mirror of https://github.com/acidanthera/audk.git
39 lines
1014 B
C
39 lines
1014 B
C
|
/** @file
|
||
|
File to contain all the hardware specific stuff for the Smm Gpi dispatch protocol.
|
||
|
|
||
|
Copyright (c) 2013-2015 Intel Corporation.
|
||
|
|
||
|
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.
|
||
|
|
||
|
|
||
|
**/
|
||
|
|
||
|
//
|
||
|
// Include common header file for this module.
|
||
|
//
|
||
|
#include "CommonHeader.h"
|
||
|
|
||
|
#include "QNCSmmHelpers.h"
|
||
|
|
||
|
CONST QNC_SMM_SOURCE_DESC GPI_SOURCE_DESC = {
|
||
|
QNC_SMM_NO_FLAGS,
|
||
|
{
|
||
|
{
|
||
|
{GPE_ADDR_TYPE, {R_QNC_GPE0BLK_SMIE}}, S_QNC_GPE0BLK_SMIE, N_QNC_GPE0BLK_SMIE_GPIO
|
||
|
},
|
||
|
NULL_BIT_DESC_INITIALIZER
|
||
|
},
|
||
|
{
|
||
|
{
|
||
|
{GPE_ADDR_TYPE, {R_QNC_GPE0BLK_SMIS}}, S_QNC_GPE0BLK_SMIS, N_QNC_GPE0BLK_SMIS_GPIO
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|