]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2TbltDevicePkg/PlatformInitPei/CpuInitPeim.c
a3a3d5cbc944eefba5d3f2e54170b151d762c8e9
[mirror_edk2.git] / Vlv2TbltDevicePkg / PlatformInitPei / CpuInitPeim.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 CpuInitPeim.c
13
14 Abstract:
15
16 Functions for LpcSio initilization
17 It is needed for early onboard LAN controller disable/enable in platform setup.
18
19 --*/
20
21 #include "PlatformEarlyInit.h"
22
23
24 EFI_STATUS
25 PlatformCpuInit (
26 IN CONST EFI_PEI_SERVICES **PeiServices,
27 IN SYSTEM_CONFIGURATION *SystemConfiguration,
28 IN EFI_PLATFORM_CPU_INFO *PlatformCpuInfo
29 )
30 {
31 BOOLEAN ResetRequired;
32
33 //
34 // Variable initialization
35 //
36 ResetRequired = FALSE;
37
38
39 if (ResetRequired) {
40 CpuOnlyReset(PeiServices);
41 }
42
43 return EFI_SUCCESS;
44 }