X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Vlv2DeviceRefCodePkg%2FValleyView2Soc%2FSouthCluster%2FInclude%2FPpi%2FPchInit.h;fp=Vlv2DeviceRefCodePkg%2FValleyView2Soc%2FSouthCluster%2FInclude%2FPpi%2FPchInit.h;h=0000000000000000000000000000000000000000;hb=5347c48016f27061475fdb053e867a06ce73492f;hp=c8aba9c5e62adc3ac0b8508ff120e314890ecf76;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5;p=mirror_edk2.git diff --git a/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/PchInit.h b/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/PchInit.h deleted file mode 100644 index c8aba9c5e6..0000000000 --- a/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/PchInit.h +++ /dev/null @@ -1,75 +0,0 @@ -/** -**/ -/** - -Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved - - SPDX-License-Identifier: BSD-2-Clause-Patent - - - - @file - PchInit.h - - @brief - This file defines the PCH Init PPI - -**/ -#ifndef _PCH_INIT_H_ -#define _PCH_INIT_H_ - -// -// Define the PCH Init PPI GUID -// - - -#include -#define PCH_INIT_PPI_GUID \ - { \ - 0x9ea894a, 0xbe0d, 0x4230, 0xa0, 0x3, 0xed, 0xc6, 0x93, 0xb4, 0x8e, 0x95 \ - } -extern EFI_GUID gPchInitPpiGuid; - -/// -/// Forward reference for ANSI C compatibility -/// -typedef struct _PCH_INIT_PPI PCH_INIT_PPI; - -/// -/// Data structure definitions -/// -typedef enum _CPU_STRAP_OPERATION { - GetCpuStrapSetData, - SetCpuStrapSetData, - LockCpuStrapSetData -} CPU_STRAP_OPERATION; - -typedef -EFI_STATUS -(EFIAPI *PCH_USB_INIT) ( - IN EFI_PEI_SERVICES **PeiServices - ) -/** - - @brief - The function performing USB init in PEI phase. This could be used by USB recovery - or debug features that need USB initialization during PEI phase. - Note: Before executing this function, please be sure that PCH_INIT_PPI.Initialize - has been done and PchUsbPolicyPpi has been installed. - - @param[in] PeiServices General purpose services available to every PEIM - - @retval EFI_SUCCESS The function completed successfully - @retval Others All other error conditions encountered result in an ASSERT. - -**/ -; - -/// -/// PCH_INIT_PPI Structure Definition -/// -struct _PCH_INIT_PPI { - PCH_USB_INIT UsbInit; -}; - -#endif