mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: drivers/intel/fsp2_0: Use tabs for indent
Fix the following warning detected by checkpatch.pl:
WARNING: please, no spaces at the start of a line
TEST=Build and run on Galileo Gen2
Change-Id: I1c318762b99d0a14520c2caa0e5a4a4cce28dd81
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 30bdb52e4c
Original-Change-Id: I7cb35c8b5d7ff97849e666ce7f75d4e4763bb2a7
Original-Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Original-Reviewed-on: https://review.coreboot.org/18742
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/453362
This commit is contained in:
parent
4d4655f184
commit
f96a2cd575
1 changed files with 43 additions and 43 deletions
|
@ -13,52 +13,52 @@
|
|||
#define _FSP2_0_UPD_H_
|
||||
|
||||
struct FSP_UPD_HEADER {
|
||||
///
|
||||
/// UPD Region Signature. This signature will be
|
||||
/// "XXXXXX_T" for FSP-T
|
||||
/// "XXXXXX_M" for FSP-M
|
||||
/// "XXXXXX_S" for FSP-S
|
||||
/// Where XXXXXX is an unique signature
|
||||
///
|
||||
uint64_t Signature;
|
||||
///
|
||||
/// Revision of the Data structure. For FSP v2.0 value is 1.
|
||||
///
|
||||
uint8_t Revision;
|
||||
uint8_t Reserved[23];
|
||||
///
|
||||
/// UPD Region Signature. This signature will be
|
||||
/// "XXXXXX_T" for FSP-T
|
||||
/// "XXXXXX_M" for FSP-M
|
||||
/// "XXXXXX_S" for FSP-S
|
||||
/// Where XXXXXX is an unique signature
|
||||
///
|
||||
uint64_t Signature;
|
||||
///
|
||||
/// Revision of the Data structure. For FSP v2.0 value is 1.
|
||||
///
|
||||
uint8_t Revision;
|
||||
uint8_t Reserved[23];
|
||||
} __attribute__((packed));
|
||||
|
||||
struct FSPM_ARCH_UPD {
|
||||
///
|
||||
/// Revision of the structure. For FSP v2.0 value is 1.
|
||||
///
|
||||
uint8_t Revision;
|
||||
uint8_t Reserved[3];
|
||||
///
|
||||
/// Pointer to the non-volatile storage (NVS) data buffer.
|
||||
/// If it is NULL it indicates the NVS data is not available.
|
||||
///
|
||||
void *NvsBufferPtr;
|
||||
///
|
||||
/// Pointer to the temporary stack base address to be
|
||||
/// consumed inside FspMemoryInit() API.
|
||||
///
|
||||
void *StackBase;
|
||||
///
|
||||
/// Temporary stack size to be consumed inside
|
||||
/// FspMemoryInit() API.
|
||||
///
|
||||
uint32_t StackSize;
|
||||
///
|
||||
/// Size of memory to be reserved by FSP below "top
|
||||
/// of low usable memory" for bootloader usage.
|
||||
///
|
||||
uint32_t BootLoaderTolumSize;
|
||||
///
|
||||
/// Current boot mode.
|
||||
///
|
||||
uint32_t BootMode;
|
||||
uint8_t Reserved1[8];
|
||||
///
|
||||
/// Revision of the structure. For FSP v2.0 value is 1.
|
||||
///
|
||||
uint8_t Revision;
|
||||
uint8_t Reserved[3];
|
||||
///
|
||||
/// Pointer to the non-volatile storage (NVS) data buffer.
|
||||
/// If it is NULL it indicates the NVS data is not available.
|
||||
///
|
||||
void *NvsBufferPtr;
|
||||
///
|
||||
/// Pointer to the temporary stack base address to be
|
||||
/// consumed inside FspMemoryInit() API.
|
||||
///
|
||||
void *StackBase;
|
||||
///
|
||||
/// Temporary stack size to be consumed inside
|
||||
/// FspMemoryInit() API.
|
||||
///
|
||||
uint32_t StackSize;
|
||||
///
|
||||
/// Size of memory to be reserved by FSP below "top
|
||||
/// of low usable memory" for bootloader usage.
|
||||
///
|
||||
uint32_t BootLoaderTolumSize;
|
||||
///
|
||||
/// Current boot mode.
|
||||
///
|
||||
uint32_t BootMode;
|
||||
uint8_t Reserved1[8];
|
||||
} __attribute__((packed));
|
||||
|
||||
#endif /* _FSP2_0_UPD_H_ */
|
||||
|
|
Loading…
Add table
Reference in a new issue