33 lines
957 B
C
33 lines
957 B
C
//*****************************************************************************
|
|
//
|
|
//
|
|
// Copyright (c) 2012 - 2015, Hefei LCFC Information Technology Co.Ltd.
|
|
// And/or its affiliates. All rights reserved.
|
|
// Hefei LCFC Information Technology Co.Ltd. PROPRIETARY/CONFIDENTIAL.
|
|
// Use is subject to license terms.
|
|
//
|
|
//******************************************************************************
|
|
// LFC common header file, every one must include it
|
|
|
|
#ifndef _LFC_H_
|
|
#define _LFC_H_
|
|
|
|
#include <LfcCmos.h>
|
|
#include <LfcLog.h>
|
|
#include <LfcDefine.h>
|
|
#include <Library/LfcLib.h>
|
|
|
|
#define WAKE_BY_UNKNOWN 0
|
|
//#define WAKE_BY_POWER_BTN 1
|
|
#define WAKE_BY_NOVO_BTN 2
|
|
#define WAKE_BY_POWER_BTN_S4S5 3
|
|
//#define WAKE_BY_RTC_S4S5 4
|
|
#define WAKE_BY_POWER_BTN_S3 5
|
|
#define WAKE_BY_RTC_S3 6
|
|
//#define WAKE_BY_PCIE_S3 7
|
|
#define WAKE_BY_PME_S3 8
|
|
//#define WAKE_BY_EC_WAKE_LID 9
|
|
|
|
|
|
#endif
|