mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
MdePkg: SMBIOS: add RiscV processor specific block structure
Add definitions for RiscV processor specific block structure. Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com>
This commit is contained in:
parent
071b0778d9
commit
143e4441ed
1 changed files with 20 additions and 0 deletions
|
|
@ -3030,6 +3030,26 @@ typedef struct X86ProcessorSpecificBlock {
|
|||
UINT32 UseConditionAttributes;
|
||||
} X86_PROCESSOR_SPECIFIC_BLOCK;
|
||||
|
||||
///
|
||||
/// RiscV processor specific Block.
|
||||
///
|
||||
typedef struct RiscVProcessorSpecificBlock {
|
||||
/// Revision
|
||||
UINT16 Revision;
|
||||
|
||||
/// The ID of this RISC-V hart.
|
||||
UINT64 HartId;
|
||||
|
||||
/// Vendor ID.
|
||||
UINT64 VendorId;
|
||||
|
||||
/// Machine Architecture ID.
|
||||
UINT64 ArchId;
|
||||
|
||||
/// Machine Implementation ID.
|
||||
UINT64 ImplId;
|
||||
} RISCV_PROCESSOR_SPECIFIC_BLOCK;
|
||||
|
||||
///
|
||||
/// Processor Additional Information(Type 44).
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue