Get CPU Uncore Freq
更新时间: 2026/07/28
在Gitcode上查看源码

72h — Get CPU Uncore Freq

Change History

openUBMC VersionRevision DateDescription
26.092026/07/28Initial draft, add command details

Basic Information

Function Description

Gets the CPU Uncore frequency.

Privilege

ReadOnly

Applicable Products

Command Information

Request Information

ByteData Field
NetFn30h
CMD92h
1:3Manufacturer ID, LS byte first. Fixed length of 3 bytes. For example, if the manufacturer ID is 2011, the hexadecimal value is 0x0007DB, where byte 1 = DBh, byte 2 = 07h, byte 3 = 00h.
4Sub command = 72h
5CPU ID, 0~N: single CPU

Response Information

ByteData Field
1Completion Code
2:4Manufacturer ID, LS byte first. Fixed length of 3 bytes. For example, if the manufacturer ID is 2011, the hexadecimal value is 0x0007DB, where byte 1 = DBh, byte 2 = 07h, byte 3 = 00h.
5Integer part of the frequency step in MHz. For example, for 50.0 MHz, this value is 0x32.
6Decimal part of the frequency step in MHz. For example, for 50.0 MHz, this value is 0x00.
7:8Freq, frequency value in MHz, LS byte first. For example, 1500 corresponds to 0xdc 0x05.

Command Examples

Request:

ipmitool raw 0x30 0x92 0xdb 0x07 0x00 0x72 0x01

Response:

db 07 00 32 00 dc 05

Back to Index