blob: 8552e72404c5514637cc81de518e175b599faba3 (
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
|
/** @file
NULL instances of SetCacheMtrr library functions.
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Uefi.h>
#include <Library/PcdLib.h>
#include <Library/DebugLib.h>
/**
Set Cache Mtrr.
**/
VOID
EFIAPI
SetCacheMtrr (
VOID
)
{
return;
}
/**
Update MTRR setting in EndOfPei phase.
This function will clear temporary memory (CAR) phase MTRR settings
and configure MTRR to cover permanent memory.
@retval EFI_SUCCESS The function completes successfully.
**/
EFI_STATUS
EFIAPI
SetCacheMtrrAfterEndOfPei (
VOID
)
{
return EFI_SUCCESS;
}
|