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:
Yeoreum Yun 2026-07-05 18:39:48 +01:00 committed by mergify[bot]
parent 071b0778d9
commit 143e4441ed

View file

@ -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).
///