summaryrefslogtreecommitdiff
path: root/Board/CPU/TxtDxe/AmiTxtInfoSetup.sd
blob: b42126ec2f4ac7ef32e44e4ce9774f564002523e (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1987-2013, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093        **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************

//**********************************************************************
// $Header: /Alaska/SOURCE/Modules/SharkBayRefCodes/Haswell/AMI Cpu PKG/AMI TXT DXE/AmiTxtInfoSetup.sd 2     1/17/14 4:02a Crystallee $
//
// $Revision: 2 $
//
// $Date: 1/17/14 4:02a $
//**********************************************************************
// Revision History
// ----------------
// $Log:
//
//
//**********************************************************************

//<AMI_FHDR_START>
//---------------------------------------------------------------------------
// Name:	AmiTxtInfoSetup.sd.sd
//
// Description:	Setup definition for Intel Txt Info.
//
//---------------------------------------------------------------------------
//<AMI_FHDR_END>

#ifdef SETUP_DATA_DEFINITION
/***********************************************************/
/* Put NVRAM data definitions here.
/* For example:	UINT8 Data1;
/* These definitions will be converted by the build process
/* to a definitions of SETUP_DATA fields.
/***********************************************************/
//    UINT8   XDBit;
#endif

//---------------------------------------------------------------------------
#if defined(VFRCOMPILE) && !defined(CONTROLS_ARE_DEFINED)
#define CONTROL_DEFINITION
#endif
//---------------------------------------------------------------------------

//---------------------------------------------------------------------------
#ifdef CONTROL_DEFINITION

#endif //#ifdef CONTROL_DEFINITION

#ifdef CONTROLS_WITH_DEFAULTS

#endif //#ifdef CONTROLS_WITH_DEFAULTS

#ifdef ADVANCED_FORM_SET

    #ifndef SUPPRESS_GRAYOUT_ENDIF
        #define SUPPRESS_GRAYOUT_ENDIF endif;
    #endif

    #ifdef FORM_SET_TYPEDEF        
      
    #endif

    #ifdef FORM_SET_VARSTORE

    #endif

    #ifdef FORM_SET_ITEM
        //	Define controls to be added to the main page of the formset
    #endif

    #ifdef FORM_SET_GOTO
        // Define goto commands for the forms defined in this file
		goto CPUTXT_FORM_ID, 
        prompt = STRING_TOKEN(STR_CPUTXT_FORM),
        help = STRING_TOKEN(STR_CPUTXT_HELP);
    #endif

    #ifdef FORM_SET_FORM


    // Define forms
    form formid = AUTO_ID(CPUTXT_FORM_ID),
     title = STRING_TOKEN(STR_CPUTXT_FORM);
 
     SUBTITLE(STRING_TOKEN(STR_CPUTXT_FORM))
     SEPARATOR
 
     text 
       help   = STRING_TOKEN(STR_CPUTXT_CHIP_FUSE_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_CHIP_FUSE_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_CHIP_FUSE_VALUE);

     text 
       help   = STRING_TOKEN(STR_CPUTXT_CHIP_SUPPORT_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_CHIP_SUPPORT_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_CHIP_SUPPORT_VALUE);

     text
       help   = STRING_TOKEN(STR_CPUTXT_CPU_SUPPORT_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_CPU_SUPPORT_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_CPU_SUPPORT_VALUE);

     text 
       help   = STRING_TOKEN(STR_CPUTXT_ERROR_CODE_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_ERROR_CODE_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_ERROR_CODE_VALUE);

	 text 
       help   = STRING_TOKEN(STR_CPUTXT_CLASS_CODE_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_CLASS_CODE_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_CLASS_CODE_VALUE);

	 text
       help   = STRING_TOKEN(STR_CPUTXT_MAJOR_CODE_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_MAJOR_CODE_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_MAJOR_CODE_VALUE);

	 text
       help   = STRING_TOKEN(STR_CPUTXT_MINOR_CODE_HELP),
       text   = STRING_TOKEN(STR_CPUTXT_MINOR_CODE_STRING),
       text   = STRING_TOKEN(STR_CPUTXT_MINOR_CODE_VALUE); 

    endform;    
    #endif
#endif

//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1987-2013, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**      5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093        **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************