blob: 133904a7f9b4b64b35597e16be60e14deac1a134 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/** @file
This is the PEIM that performs the S3 resume tasks.
@copyright
Copyright (c) 2008 - 2015 Intel Corporation. All rights reserved
This software and associated documentation (if any) is furnished
under a license and may only be used or copied in accordance
with the terms of the license. Except as permitted by such
license, no part of this software or documentation may be
reproduced, stored in a retrieval system, or transmitted in any
form or by any means without the express written consent of
Intel Corporation.
This file contains an 'Intel Peripheral Driver' and uniquely
identified as "Intel Reference Module" and is
licensed for Intel CPUs and chipsets under the terms of your
license agreement with Intel or your vendor. This file may
be modified by the user, subject to additional terms of the
license agreement
**/
#ifndef _PCH_S3_PEIM_H_
#define _PCH_S3_PEIM_H_
//
// External include files do NOT need to be explicitly specified in real EDKII
// environment
//
#if !defined(EDK_RELEASE_VERSION) || (EDK_RELEASE_VERSION < 0x00020000)
#include "EdkIIGluePeim.h"
#include "PchAccess.h"
#include "PchPlatformLib.h"
#include "PchPlatformPolicy.h"
#include "PchPciExpressHelpersLib.h"
#include EFI_PROTOCOL_CONSUMER (PchS3Support)
#include EFI_PPI_DEPENDENCY (Variable)
#include EFI_PPI_DEPENDENCY (SmmAccess)
#endif
#define EFI_PCH_S3_STALL_INTERVAL 50 ///< us
/**
This routine is used to search SMRAM and get SmramCpuData point.
@param[in] PeiServices - PEI services global pointer
@param[in] SmmAccessPpi - SmmAccess PPI instance
@retval SmramCpuData - The pointer of CPU information in SMRAM.
**/
EFI_STATUS
CreateS3DataHob (
IN EFI_PEI_SERVICES **PeiServices,
IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor,
IN VOID *Interface
);
/**
Send Codec command on S3 resume
@param[in] Parameter Parameters passed in from DXE
@retval EFI_DEVICE_ERROR Device status error, operation failed
@retval EFI_SUCCESS The function completed successfully
**/
EFI_STATUS
PchS3SendCodecCommand (
EFI_PCH_S3_PARAMETER_SEND_CODEC_COMMAND *Parameter
);
/**
Perform Init Root Port Downstream devices on S3 resume
@param[in] Parameter Parameters passed in from DXE
@retval EFI_STATUS
**/
EFI_STATUS
PchS3InitPcieRootPortDownstream (
EFI_PCH_S3_PARAMETER_INIT_PCIE_ROOT_PORT_DOWNSTREAM *Parameter
);
/**
Perform Root Port Downstream devices PCIE ASPM and LTR override on S3 resume
@param[in] Parameter Parameters passed in from DXE
@retval EFI_STATUS
**/
EFI_STATUS
PchS3PcieSetPm (
EFI_PCH_S3_PARAMETER_PCIE_SET_PM *Parameter
);
/**
Perform PCH IOBP programming on S3 resume
@param[in] Parameter Parameters passed in from DXE
@retval EFI_STATUS
**/
EFI_STATUS
PchS3ProgramIobp (
EFI_PCH_S3_PARAMETER_PROG_IOBP *Parameter
);
#endif
|