X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=QuarkPlatformPkg%2FPlatform%2FPei%2FPlatformConfig%2FPlatformConfigPei.c;fp=QuarkPlatformPkg%2FPlatform%2FPei%2FPlatformConfig%2FPlatformConfigPei.c;h=0000000000000000000000000000000000000000;hp=024dff89dfc1a2451fb8bf2dd65f41e8979d554b;hb=5347c48016f27061475fdb053e867a06ce73492f;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5 diff --git a/QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.c b/QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.c deleted file mode 100644 index 024dff89df..0000000000 --- a/QuarkPlatformPkg/Platform/Pei/PlatformConfig/PlatformConfigPei.c +++ /dev/null @@ -1,81 +0,0 @@ -/** @file -Principle source module for Clanton Peak platform config PEIM driver. - -Copyright (c) 2013 Intel Corporation. - -SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include -#include -#include -#include - -VOID -EFIAPI -LegacySpiProtect ( - VOID - ) -{ - UINT32 RegVal; - - RegVal = PcdGet32 (PcdLegacyProtectedBIOSRange0Pei); - if (RegVal != 0) { - PlatformWriteFirstFreeSpiProtect ( - RegVal, - 0, - 0 - ); - } - RegVal = PcdGet32 (PcdLegacyProtectedBIOSRange1Pei); - if (RegVal != 0) { - PlatformWriteFirstFreeSpiProtect ( - RegVal, - 0, - 0 - ); - } - RegVal = PcdGet32 (PcdLegacyProtectedBIOSRange2Pei); - if (RegVal != 0) { - PlatformWriteFirstFreeSpiProtect ( - RegVal, - 0, - 0 - ); - } - - // - // Make legacy SPI READ/WRITE enabled if not a secure build - // - LpcPciCfg32And (R_QNC_LPC_BIOS_CNTL, ~B_QNC_LPC_BIOS_CNTL_BIOSWE); -} - -/** PlatformConfigPei driver entry point. - - Platform config in PEI stage. - - @param[in] FfsHeader Pointer to Firmware File System file header. - @param[in] PeiServices General purpose services available to every PEIM. - - @retval EFI_SUCCESS Platform config success. -*/ -EFI_STATUS -EFIAPI -PlatformConfigPeiInit ( - IN EFI_PEI_FILE_HANDLE FileHandle, - IN CONST EFI_PEI_SERVICES **PeiServices - ) -{ - // - // Do SOC Init Pre memory init. - // - PeiQNCPreMemInit (); - - // - // Protect areas specified by PCDs. - // - LegacySpiProtect (); - - return EFI_SUCCESS; -}