Get CPU Capabilities
更新时间: 2026/08/06
在Gitcode上查看源码

Get CPU Capabilities

Change History

openUBMC VersionRevision DateDescription
25.062025/06/26Initial draft: add command details

Basic Information

Function Description

Obtains CPU capability information.

Privilege

Command Information

Request Information

ByteData Field
NetFn30h
CMD92h
1:3Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
4Subcommand.Subcommand=5Fh
5BIOS ID: This parameter is reserved for multi-host scenarios. In single-host scenarios, this parameter has a fixed value of 0.
6For details, see the feature type in CPU feature type..
0: ARM architecture acceleration type

Response Information

ByteData Field
1Completion Code
2:4Manufacturer ID, LS Byte first. The length is fixed to three bytes. For example, if the vendor ID is 2011 and the corresponding hexadecimal value is 0x0007DB, the first byte is DBh, the second byte is 07h, and the third byte is 00h.
5Length: L
6:5+LFor details, see the feature information in CPU feature type..

CPU feature type.

Obtained Feature TypeFeature Information (Response Field 6:5+L)No. (Decimal)
Acceleration Type of the ARM ArchitectureIf the value is 0, the sixth byte is defined as follows:
Bit0: SECEnable SEC accelerator enable. 1: enabled; 0: disabled
Bit 1: HPREEnable HPRE accelerator enable. 1: enabled; 0: disabled
Bit 2: RDEEnable RDE accelerator enable. 1: enabled; 0: disabled
Bit 3: ZIPEnable ZIP accelerator enable. 1: enabled; 0: disabled.
Other values are reserved.
0

Command Example

Obtain the Arm architecture acceleration type.

Request:

bash
ipmicmd -k "0f 00 30 92 db 07 00 5f 00 00" smi 0

Response:

text
0f 31 00 92 00 db 07 00 01 00

Back to Index