]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/PlatformInitPei/MchInit.c
7d1a20c104f65e3261a0e20cd6333e46cc9c1c05
[mirror_edk2.git] / Vlv2TbltDevicePkg / PlatformInitPei / MchInit.c
1 /** @file
2
3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8
9 Module Name:
10
11
12 MchInit.c
13
14 Abstract:
15
16
17 --*/
18
19
20 #include "PlatformEarlyInit.h"
21
22 #define PSE_PAGE_SIZE 0x400000 // 4MB
23
24 extern BOOLEAN ImageInMemory;
25
26
27 VOID
28 EfiCommonLibEnablePsePaging (
29 IN UINT32 PDBR
30 );
31
32 VOID
33 EfiCommonLibDisablePsePaging (
34 );
35
36 /**
37
38 Initialize the MCH Thermal Sensor
39
40 **/
41 VOID
42 InitMchThermalSensor()
43 {
44 }
45
46 /**
47
48 Programs and enables the CRID for MCH and ICH
49
50 **/
51 VOID
52 ProgramMchCRID(
53 IN CONST EFI_PEI_SERVICES **PeiServices
54 )
55 {
56 }
57
58 /**
59
60 Initialize the GPIO IO selection, GPIO USE selection, and GPIO signal inversion registers
61
62 **/
63 VOID
64 MchInit (
65 IN CONST EFI_PEI_SERVICES **PeiServices
66 )
67 {
68
69 return;
70 }
71
72