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
|
//*************************************************************************
//*************************************************************************
//** **
//** (C)Copyright 1985-2011, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//*************************************************************************
//*************************************************************************
//*************************************************************************
// $Header: /Alaska/SOURCE/Modules/SharkBayRefCodes/Platform/PlatformSetup.h 4 1/15/13 5:47a Alanlin $
//
// $Revision: 4 $
//
// $Date: 1/15/13 5:47a $
//*************************************************************************
// Revision History
// ----------------
// $Log: /Alaska/SOURCE/Modules/SharkBayRefCodes/Platform/PlatformSetup.h $
//
// 4 1/15/13 5:47a Alanlin
// [TAG] None
// [Category] Normal
// [Severity] Normal
// [Description] Add setup item and setting for DPTF
// [Files] Acpiplatform.c, Acpiplatform.sd, Acpiplatform.uni,
// PlatformSetup.h
//
// 3 10/31/12 4:43a Alanlin
// [TAG] None
// [Category] Improvement
// [Severity] Normal
// [Description] Fine tune Platform Board Information.
//
// 2 7/27/12 5:11a Yurenlai
// [TAG] None
// [Category] Improvement
// [Description] Create DPTF and CPPC setup item.
// [Files] AcpiPlatform.c, AcpiPlatform.sd, AcpiPlatform.uni,
// PlatformSetup.h
//
// 1 2/09/12 12:31a Yurenlai
// Initial check in.
//
//*************************************************************************
//<AMI_FHDR_START>
//
// Name: PlatformSetup.h
//
// Description: OEM Specific Setup Variables and Structures
//
//<AMI_FHDR_END>
//*************************************************************************
#ifndef _OEMSETUP_H_
#define _OEMSETUP_H_
#ifdef __cplusplus
extern "C" {
#endif
#pragma pack(1)
typedef struct _SETUP_PLATFORM_DATA
{
UINT8 GbePciePortNum;
UINT8 PlatformFlavor;
UINT8 PcieSBDE;
UINT8 PegPresent[4];
UINT8 DimmPresent[4];
UINT8 IGFXAvailable;
UINT8 VTdAvailable;
UINT8 PlatformSupportCppc;
UINT8 PlatformSupportRtD3;
UINT8 LPMSupport;
}SETUP_PLATFORM_DATA;
#pragma pack()
/****** DO NOT WRITE BELOW THIS LINE *******/
#ifdef __cplusplus
}
#endif
#endif
//*************************************************************************
//*************************************************************************
//** **
//** (C)Copyright 1985-2011, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//*************************************************************************
//*************************************************************************
|