summaryrefslogtreecommitdiff
path: root/ReferenceCode/Haswell/CpuS3/Pei/MtrrSync.c
blob: 96e47ee843b34dbbac72a01128be6dd2c2146b75 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
/** @file
  Synchronization of MTRRs on S3 boot path.

@copyright
  Copyright (c) 2005 - 2012 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 a 'Sample Driver' and is licensed as such
  under the terms of your license agreement with Intel or your
  vendor.  This file may be modified by the user, subject to
  the additional terms of the license agreement
**/

///
/// 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 "CpuAccess.h"
#include "MpCommon.h"
#endif

UINTN
MpMtrrSynchUpEntry (
  VOID
  );

VOID
MpMtrrSynchUpExit (
  UINTN Cr4
  );

UINT16 mFixedMtrrIndex[] = {
  IA32_MTRR_FIX64K_00000,
  IA32_MTRR_FIX16K_80000,
  IA32_MTRR_FIX16K_A0000,
  IA32_MTRR_FIX4K_C0000,
  IA32_MTRR_FIX4K_C8000,
  IA32_MTRR_FIX4K_D0000,
  IA32_MTRR_FIX4K_D8000,
  IA32_MTRR_FIX4K_E0000,
  IA32_MTRR_FIX4K_E8000,
  IA32_MTRR_FIX4K_F0000,
  IA32_MTRR_FIX4K_F8000,
};

UINT16 mMtrrDefType[] = { CACHE_IA32_MTRR_DEF_TYPE };

UINT16 mVariableMtrrIndex[] = {
  CACHE_VARIABLE_MTRR_BASE,
  CACHE_VARIABLE_MTRR_BASE + 1,
  CACHE_VARIABLE_MTRR_BASE + 2,
  CACHE_VARIABLE_MTRR_BASE + 3,
  CACHE_VARIABLE_MTRR_BASE + 4,
  CACHE_VARIABLE_MTRR_BASE + 5,
  CACHE_VARIABLE_MTRR_BASE + 6,
  CACHE_VARIABLE_MTRR_BASE + 7,
  CACHE_VARIABLE_MTRR_BASE + 8,
  CACHE_VARIABLE_MTRR_BASE + 9,
  CACHE_VARIABLE_MTRR_BASE + 10,
  CACHE_VARIABLE_MTRR_BASE + 11,
  CACHE_VARIABLE_MTRR_BASE + 12,
  CACHE_VARIABLE_MTRR_BASE + 13,
  CACHE_VARIABLE_MTRR_BASE + 14,
  CACHE_VARIABLE_MTRR_BASE + 15,
  CACHE_VARIABLE_MTRR_BASE + 16,
  CACHE_VARIABLE_MTRR_BASE + 17,
  CACHE_VARIABLE_MTRR_BASE + 18,
  CACHE_VARIABLE_MTRR_BASE + 19,
  ///
  /// CACHE_VARIABLE_MTRR_END,
  ///
};

UINTN FixedMtrrNumber   = sizeof (mFixedMtrrIndex) / sizeof (UINT16);
UINTN MtrrDefTypeNumber = sizeof (mMtrrDefType) / sizeof (UINT16);

/**
  Save the MTRR registers to global variables

  @param[in] PeiServices   - Indirect reference to the PEI Services Table
  @param[in] MtrrValues    - pointer to the buffer which stores MTRR settings
**/
VOID
ReadMtrrRegisters (
  IN EFI_PEI_SERVICES **PeiServices,
  IN UINT64           *MtrrValues
  )
{
  UINT32 Index;
  UINT32 VariableMtrrNumber;
  ///
  /// Read all Mtrrs
  ///
  for (Index = 0; Index < FixedMtrrNumber; Index++) {
    *MtrrValues = AsmReadMsr64 (mFixedMtrrIndex[Index]);
    MtrrValues++;
  }

  for (Index = 0; Index < MtrrDefTypeNumber; Index++) {
    *MtrrValues = AsmReadMsr64 (mMtrrDefType[Index]);
    MtrrValues++;
  }

  VariableMtrrNumber = ((UINT32) (AsmReadMsr64 (IA32_MTRR_CAP) & B_IA32_MTRR_VARIABLE_SUPPORT));
  if (VariableMtrrNumber > V_MAXIMUM_VARIABLE_MTRR_NUMBER) {
    VariableMtrrNumber = V_MAXIMUM_VARIABLE_MTRR_NUMBER;
  }

  DEBUG ((EFI_D_INFO, "MTRR: VariableMtrrNumber = %x\n", VariableMtrrNumber));
  for (Index = 0; Index < VariableMtrrNumber * 2; Index++) {
    *MtrrValues = AsmReadMsr64 (mVariableMtrrIndex[Index]);
    MtrrValues++;
    DEBUG (
            (EFI_D_INFO,
             "MTRR: Index = %x   AsmReadMsr64(%x) = %x\n",
             Index,
             mVariableMtrrIndex[Index],
             AsmReadMsr64 (mVariableMtrrIndex[Index]))
            );
  }

  return;
}

/**
  Synch up the MTRR values for all processors

  @param[in] MtrrValues    - pointer to the buffer which stores MTRR settings
**/
VOID
MpMtrrSynchUp (
  UINT64 *MtrrValues
  )
{
  UINT32             Index;
  UINT32             VariableMtrrNumber;
  UINTN              Cr4;
  UINT64             *FixedMtrr;
  UINT64             *MtrrDefType;
  UINT64             *VariableMtrr;
  UINT64             ValidMtrrAddressMask;
  EFI_CPUID_REGISTER FeatureInfo;
  EFI_CPUID_REGISTER FunctionInfo;
  UINT8              PhysicalAddressBits;

  ///
  /// Get physical CPU MTRR width in case of difference from BSP
  ///
  AsmCpuid (
          CPUID_EXTENDED_FUNCTION,
          &FunctionInfo.RegEax,
          &FunctionInfo.RegEbx,
          &FunctionInfo.RegEcx,
          &FunctionInfo.RegEdx
          );
  PhysicalAddressBits = 36;
  if (FunctionInfo.RegEax >= CPUID_VIR_PHY_ADDRESS_SIZE) {
    AsmCpuid (
            CPUID_VIR_PHY_ADDRESS_SIZE,
            &FeatureInfo.RegEax,
            &FeatureInfo.RegEbx,
            &FeatureInfo.RegEcx,
            &FeatureInfo.RegEdx
            );
    PhysicalAddressBits = (UINT8) FeatureInfo.RegEax;
  }

  ValidMtrrAddressMask  = (LShiftU64 (1, PhysicalAddressBits) - 1) & 0xfffffffffffff000ULL;

  FixedMtrr             = MtrrValues;
  MtrrDefType           = MtrrValues + FixedMtrrNumber;
  VariableMtrr          = MtrrValues + FixedMtrrNumber + MtrrDefTypeNumber;

  ///
  /// ASM code to setup processor register before synching up the MTRRs
  ///
  Cr4 = MpMtrrSynchUpEntry ();

  ///
  /// Disable Fixed Mtrrs
  ///
  AsmWriteMsr64 (CACHE_IA32_MTRR_DEF_TYPE, MtrrDefType[0] & 0xFFFFF7FF);

  ///
  /// Update Fixed Mtrrs
  ///
  for (Index = 0; Index < FixedMtrrNumber; Index++) {
    AsmWriteMsr64 (mFixedMtrrIndex[Index], FixedMtrr[Index]);
  }
  ///
  /// Synchup Base Variable Mtrr
  ///
  VariableMtrrNumber = (UINT32) (AsmReadMsr64 (IA32_MTRR_CAP) & B_IA32_MTRR_VARIABLE_SUPPORT);
  if (VariableMtrrNumber > V_MAXIMUM_VARIABLE_MTRR_NUMBER) {
    VariableMtrrNumber = V_MAXIMUM_VARIABLE_MTRR_NUMBER;
  }

  for (Index = 0; Index < VariableMtrrNumber * 2; Index++) {
    AsmWriteMsr64 (
            mVariableMtrrIndex[Index],
            (VariableMtrr[Index] & 0x0FFF) | (VariableMtrr[Index] & ValidMtrrAddressMask)
            );
  }
  ///
  /// Synchup def type Fixed Mtrrs
  ///
  AsmWriteMsr64 (CACHE_IA32_MTRR_DEF_TYPE, MtrrDefType[0]);

  ///
  /// ASM code to setup processor register after synching up the MTRRs
  ///
  MpMtrrSynchUpExit (Cr4);

  return;
}

/**
  Set MTRR registers

  @param[in] PeiServices - General purpose services available to every PEIM.
  @param[in] MtrrArray   - buffer with MTRR settings
**/
VOID
SetMtrrRegisters (
  IN EFI_PEI_SERVICES **PeiServices,
  IN EFI_MTRR_VALUES  *MtrrArray
  )
{
  UINT32 Index;
  UINTN  Cr4;

  ///
  /// ASM code to setup processor register before synching up the MTRRs
  ///
  Cr4   = MpMtrrSynchUpEntry ();

  Index = 0;
  while ((MtrrArray[Index].Index != 0) && (MtrrArray[Index].Index >= CACHE_VARIABLE_MTRR_BASE)) {
    AsmWriteMsr64 (MtrrArray[Index].Index, MtrrArray[Index].Value);
    Index++;
  }
  ///
  /// ASM code to setup processor register after synching up the MTRRs
  ///
  MpMtrrSynchUpExit (Cr4);
}

#ifdef EFI_DEBUG
/**
  Print MTRR settings in debug build BIOS

  @param[in] PeiServices - General purpose services available to every PEIM.
  @param[in] MtrrArray   - buffer with MTRR settings
**/
VOID
ShowMtrrRegisters (
  IN EFI_PEI_SERVICES **PeiServices,
  IN EFI_MTRR_VALUES  *MtrrArray
  )
{
  UINT32 Index;

  Index = 0;
  while ((MtrrArray[Index].Index != 0) && (MtrrArray[Index].Index >= CACHE_VARIABLE_MTRR_BASE)) {

    DEBUG ((EFI_D_INFO, "MTRR: MtrrArray Index = %x\n", Index));
    DEBUG (
            (EFI_D_INFO,
             "MTRR: MtrrArray[%x].Index = %x    MtrrArray[%x].Value = %x\n",
             Index,
             MtrrArray[Index].Index,
             Index,
             MtrrArray[Index].Value)
            );
    Index++;
  }

  DEBUG ((EFI_D_INFO, "MTRR: Total Index = %x\n", Index));
}
#endif