summaryrefslogtreecommitdiffstats
path: root/IntelFsp2WrapperPkg/Include
diff options
context:
space:
mode:
Diffstat (limited to 'IntelFsp2WrapperPkg/Include')
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h19
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h10
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h8
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h4
-rw-r--r--IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h10
-rw-r--r--IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h6
-rw-r--r--IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h2
7 files changed, 30 insertions, 29 deletions
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h b/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h
index 4620b4b08e..db599cc1f8 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspMeasurementLib.h
@@ -9,11 +9,11 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
#ifndef _FSP_MEASUREMENT_LIB_H_
#define _FSP_MEASUREMENT_LIB_H_
-#define FSP_MEASURE_FSP BIT0
-#define FSP_MEASURE_FSPT BIT1
-#define FSP_MEASURE_FSPM BIT2
-#define FSP_MEASURE_FSPS BIT3
-#define FSP_MEASURE_FSPUPD BIT31
+#define FSP_MEASURE_FSP BIT0
+#define FSP_MEASURE_FSPT BIT1
+#define FSP_MEASURE_FSPM BIT2
+#define FSP_MEASURE_FSPS BIT3
+#define FSP_MEASURE_FSPUPD BIT31
/**
Measure a FSP FirmwareBlob.
@@ -31,9 +31,10 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
EFI_STATUS
EFIAPI
MeasureFspFirmwareBlob (
- IN UINT32 PcrIndex,
- IN CHAR8 *Description OPTIONAL,
- IN EFI_PHYSICAL_ADDRESS FirmwareBlobBase,
- IN UINT64 FirmwareBlobLength
+ IN UINT32 PcrIndex,
+ IN CHAR8 *Description OPTIONAL,
+ IN EFI_PHYSICAL_ADDRESS FirmwareBlobBase,
+ IN UINT64 FirmwareBlobLength
);
+
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h b/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h
index 11a3faaad8..d38582d3e5 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiLib.h
@@ -34,7 +34,7 @@ FspFindFspHeader (
EFI_STATUS
EFIAPI
CallFspNotifyPhase (
- IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams
+ IN NOTIFY_PHASE_PARAMS *NotifyPhaseParams
);
/**
@@ -48,8 +48,8 @@ CallFspNotifyPhase (
EFI_STATUS
EFIAPI
CallFspMemoryInit (
- IN VOID *FspmUpdDataPtr,
- OUT VOID **HobListPtr
+ IN VOID *FspmUpdDataPtr,
+ OUT VOID **HobListPtr
);
/**
@@ -62,7 +62,7 @@ CallFspMemoryInit (
EFI_STATUS
EFIAPI
CallTempRamExit (
- IN VOID *TempRamExitParam
+ IN VOID *TempRamExitParam
);
/**
@@ -75,7 +75,7 @@ CallTempRamExit (
EFI_STATUS
EFIAPI
CallFspSiliconInit (
- IN VOID *FspsUpdDataPtr
+ IN VOID *FspsUpdDataPtr
);
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h b/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h
index 62bb73bab4..2ff2d0cbce 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspWrapperApiTestLib.h
@@ -22,8 +22,8 @@
EFI_STATUS
EFIAPI
TestFspMemoryInitApiOutput (
- IN VOID *FspmUpdDataPtr,
- IN VOID **HobListPtr
+ IN VOID *FspmUpdDataPtr,
+ IN VOID **HobListPtr
);
/**
@@ -36,7 +36,7 @@ TestFspMemoryInitApiOutput (
EFI_STATUS
EFIAPI
TestFspTempRamExitApiOutput (
- IN VOID *TempRamExitParam
+ IN VOID *TempRamExitParam
);
/**
@@ -49,7 +49,7 @@ TestFspTempRamExitApiOutput (
EFI_STATUS
EFIAPI
TestFspSiliconInitApiOutput (
- IN VOID *FspsUpdDataPtr
+ IN VOID *FspsUpdDataPtr
);
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h b/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h
index 6df9223433..c91dbb5ea2 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspWrapperHobProcessLib.h
@@ -19,7 +19,7 @@
EFI_STATUS
EFIAPI
PostFspmHobProcess (
- IN VOID *FspHobList
+ IN VOID *FspHobList
);
/**
@@ -32,7 +32,7 @@ PostFspmHobProcess (
EFI_STATUS
EFIAPI
PostFspsHobProcess (
- IN VOID *FspHobList
+ IN VOID *FspHobList
);
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h b/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
index 2aa14c92fd..a6ade2551e 100644
--- a/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
+++ b/IntelFsp2WrapperPkg/Include/Library/FspWrapperPlatformLib.h
@@ -18,7 +18,7 @@
VOID
EFIAPI
UpdateFspmUpdData (
- IN OUT VOID *FspUpdRgnPtr
+ IN OUT VOID *FspUpdRgnPtr
);
/**
@@ -30,7 +30,7 @@ UpdateFspmUpdData (
VOID
EFIAPI
UpdateFspsUpdData (
- IN OUT VOID *FspUpdRgnPtr
+ IN OUT VOID *FspUpdRgnPtr
);
/**
@@ -60,8 +60,8 @@ UpdateTempRamExitParam (
EFI_STATUS
EFIAPI
GetS3MemoryInfo (
- OUT UINT64 *S3PeiMemSize,
- OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
+ OUT UINT64 *S3PeiMemSize,
+ OUT EFI_PHYSICAL_ADDRESS *S3PeiMemBase
);
/**
@@ -74,7 +74,7 @@ GetS3MemoryInfo (
VOID
EFIAPI
CallFspWrapperResetSystem (
- IN UINT32 FspStatusResetType
+ IN UINT32 FspStatusResetType
);
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h b/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h
index 006733915d..addd86cf89 100644
--- a/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h
+++ b/IntelFsp2WrapperPkg/Include/Ppi/FspSiliconInitDone.h
@@ -9,7 +9,7 @@
#ifndef _FSP_SILICON_INIT_DONE_H_
#define _FSP_SILICON_INIT_DONE_H_
-typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_INIT_DONE_PPI;
+typedef struct _FSP_SILICON_INIT_DONE_PPI FSP_SILICON_INIT_DONE_PPI;
/**
Return Hob list produced by FSP.
@@ -29,9 +29,9 @@ EFI_STATUS
);
struct _FSP_SILICON_INIT_DONE_PPI {
- FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList;
+ FSP_SILICON_INIT_DONE_GET_FSP_HOB_LIST GetFspHobList;
};
-extern EFI_GUID gFspSiliconInitDonePpiGuid;
+extern EFI_GUID gFspSiliconInitDonePpiGuid;
#endif
diff --git a/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h b/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h
index 7d38e3b5b7..0dfdbb079c 100644
--- a/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h
+++ b/IntelFsp2WrapperPkg/Include/Ppi/TopOfTemporaryRam.h
@@ -9,6 +9,6 @@
#ifndef _TOP_OF_TEMPORARY_RAM_H_
#define _TOP_OF_TEMPORARY_RAM_H_
-extern EFI_GUID gTopOfTemporaryRamPpiGuid;
+extern EFI_GUID gTopOfTemporaryRamPpiGuid;
#endif