summaryrefslogtreecommitdiff
path: root/BraswellPlatformPkg/Common/Silicon/IntelSiliconBasic/CpuInit/MtrrSync.c
blob: 7c0a357d72789388b8c40587adcf219a15c03105 (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
/** @file
  Code which support multi-processor.

  Copyright (c) 1999 - 2015, Intel Corporation. All rights reserved.<BR>

  This program and the accompanying materials
  are licensed and made available under the terms and conditions of the BSD License
  which accompanies this distribution.  The full text of the license may be found at
  http://opensource.org/licenses/bsd-license.php.

  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

**/

#include "PlatformMpService.h"
#include "MiscFuncs.h"
#include "CpuRegs.h"

extern MP_SYSTEM_DATA               *mMPSystemData;

EFI_MTRR_VALUES mFixedMtrrValues[] = {
  { EFI_MSR_IA32_MTRR_FIX64K_00000, 0 },
  { EFI_MSR_IA32_MTRR_FIX16K_80000, 0 },
  { EFI_MSR_IA32_MTRR_FIX16K_A0000, 0 },
  { EFI_MSR_IA32_MTRR_FIX4K_C0000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_C8000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_D0000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_D8000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_E0000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_E8000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_F0000,  0 },
  { EFI_MSR_IA32_MTRR_FIX4K_F8000,  0 }
};

EFI_MTRR_VALUES mMtrrDefType[] = { { EFI_MSR_CACHE_IA32_MTRR_DEF_TYPE, 0 } };

EFI_MTRR_VALUES mVariableMtrrValues[] = {
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE, 0      },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 1,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 2,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 3,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 4,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 5,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 6,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 7,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 8,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 9,  0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 10, 0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 11, 0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 12, 0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 13, 0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_BASE + 14, 0 },
  { EFI_MSR_CACHE_VARIABLE_MTRR_END, 0       }
};

/**
  Save the MTRR registers to global variables

**/
VOID
ReadMtrrRegisters (
  VOID
  )
{
  UINT32  Index, IndexEnd;

  //
  // Read Fixed Mtrrs
  //
  for (Index = 0; Index < sizeof (mFixedMtrrValues) / sizeof (EFI_MTRR_VALUES); Index++) {
    mFixedMtrrValues[Index].Value = AsmReadMsr64 (mFixedMtrrValues[Index].Index);
  }

  //
  // Read def type Fixed Mtrrs
  //
  mMtrrDefType[0].Value = AsmReadMsr64 (EFI_MSR_CACHE_IA32_MTRR_DEF_TYPE);

  //
  // Read Variable Mtrr
  //
  IndexEnd = 2 * (UINT32)(AsmReadMsr64(EFI_MSR_IA32_MTRR_CAP) & B_EFI_MSR_IA32_MTRR_CAP_VARIABLE_SUPPORT);
  for (Index = 0; Index < IndexEnd; Index++) {
    if (Index < (sizeof (mVariableMtrrValues) / sizeof (EFI_MTRR_VALUES))) {
      mVariableMtrrValues[Index].Value = AsmReadMsr64 (mVariableMtrrValues[Index].Index);
    }
  }

  return ;
}

/**
  Synch up the MTRR values for all processors

  @param[in]  Buffer - Not used.

**/
VOID
EFIAPI
MpMtrrSynchUp (
  IN VOID               *Buffer
  )
{
  UINT32              Index, IndexEnd;
  UINTN               Cr4;
  UINT64              MsrValue;
  UINT64              ValidMtrrAddressMask;
  EFI_CPUID_REGISTER  FeatureInfo;
  EFI_CPUID_REGISTER  FunctionInfo;
  UINT8               PhysicalAddressBits;

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

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

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

  //
  // Disable Fixed Mtrrs
  //
  AsmWriteMsr64 (EFI_MSR_CACHE_IA32_MTRR_DEF_TYPE, mMtrrDefType[0].Value & 0xFFFFF7FF);

  //
  // Update Fixed Mtrrs
  //
  for (Index = 0; Index < sizeof (mFixedMtrrValues) / sizeof (EFI_MTRR_VALUES); Index++) {
    AsmWriteMsr64 (mFixedMtrrValues[Index].Index, mFixedMtrrValues[Index].Value);
  }

  //
  // Synchup def type Fixed Mtrrs
  //
  AsmWriteMsr64 (EFI_MSR_CACHE_IA32_MTRR_DEF_TYPE, mMtrrDefType[0].Value);

  //
  // Synchup Base Variable Mtrr
  //
  IndexEnd = 2 * (UINT32)(AsmReadMsr64(EFI_MSR_IA32_MTRR_CAP) & B_EFI_MSR_IA32_MTRR_CAP_VARIABLE_SUPPORT);
  for (Index = 0; Index < IndexEnd; Index += 2) {
    if (Index < (sizeof (mVariableMtrrValues) / sizeof (EFI_MTRR_VALUES))) {
      MsrValue = (mVariableMtrrValues[Index].Value & 0x0FFF) | (mVariableMtrrValues[Index].Value & ValidMtrrAddressMask);
      AsmWriteMsr64 (mVariableMtrrValues[Index].Index, MsrValue);
    }
  }

  //
  // Synchup Mask Variable Mtrr including valid bit
  //
  for (Index = 1; Index < IndexEnd; Index += 2) {
    if (Index < (sizeof (mVariableMtrrValues) / sizeof (EFI_MTRR_VALUES))) {
      MsrValue = (mVariableMtrrValues[Index].Value & 0x0FFF) | (mVariableMtrrValues[Index].Value & ValidMtrrAddressMask);
      AsmWriteMsr64 (mVariableMtrrValues[Index].Index, MsrValue);
    }
  }

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

/**
  @todo  add description

**/
VOID
SaveBspMtrrForS3 (
  )
{
  UINTN  Index, IndexEnd;
  UINTN  TableIndex;

  TableIndex = 0;

  for (Index = 0; Index < sizeof (mFixedMtrrValues) / sizeof (mFixedMtrrValues[0]); Index++) {
    mMPSystemData->S3BspMtrrTable[TableIndex].Index = mFixedMtrrValues[Index].Index;
    mMPSystemData->S3BspMtrrTable[TableIndex].Value = mFixedMtrrValues[Index].Value;
    TableIndex++;
  }

  IndexEnd = 2 * (UINT32)(AsmReadMsr64(EFI_MSR_IA32_MTRR_CAP) & B_EFI_MSR_IA32_MTRR_CAP_VARIABLE_SUPPORT);
  for (Index = 0; Index < IndexEnd; Index ++) {
    if (TableIndex < (sizeof (mMPSystemData->S3BspMtrrTable) / sizeof (mMPSystemData->S3BspMtrrTable[0]))) {
      if (Index < (sizeof (mVariableMtrrValues) / sizeof (mVariableMtrrValues[0]))) {
        mMPSystemData->S3BspMtrrTable[TableIndex].Index = mVariableMtrrValues[Index].Index;
        mMPSystemData->S3BspMtrrTable[TableIndex].Value = mVariableMtrrValues[Index].Value;
        TableIndex++;
      }
    }
  }

  if( TableIndex < ( (sizeof(mMPSystemData->S3BspMtrrTable) / sizeof(mMPSystemData->S3BspMtrrTable[0]) - 2) )) {
    mMPSystemData->S3BspMtrrTable[TableIndex].Index = mMtrrDefType[0].Index;
    mMPSystemData->S3BspMtrrTable[TableIndex].Value = mMtrrDefType[0].Value;
    TableIndex++;

    //
    // To terminate the table during S3 resume for MTRR synch up
    //
    mMPSystemData->S3BspMtrrTable[TableIndex].Index = 0;
  } else if( TableIndex < ( (sizeof(mMPSystemData->S3BspMtrrTable) / sizeof(mMPSystemData->S3BspMtrrTable[0]) - 1) )) {
    //
    // To terminate the table during S3 resume for MTRR synch up
    //
    mMPSystemData->S3BspMtrrTable[TableIndex].Index = 0;
  }

  ASSERT (TableIndex < MAX_CPU_S3_MTRR_ENTRY);
}