Get System Interface Capabilities
更新时间: 2025/06/26
在Gitcode上查看源码

57h-获取系统接口功能(Get-System-Interface-Capabilities)

修订记录

openUBMC版本号修订日期修订内容
25.062025/06/26初稿,新增命令详情

基本信息

功能说明

获取系统接口功能。

权限

ReadOnly

命令信息

请求信息

字节顺序域取值说明
NetFnApp 06h
CMD57h
1System Interface Type
[7:4]-reserved
[3:0]-System Interface Type (For BT use the Get BT Interface Capabilities command)
0h=SSIF
1h=KCS
2h=SMIC
all other=reserved

响应信息

字节顺序域取值说明
1Completion Code
2Reserved, Returned as 00h
For System Interface Type=SSIF:
3[7:6]-Transaction support
00b=only single-part reads/writes supported
01b=multi-part reads/writes supported. Start and End transactions only.
10b=multi-part reads/writes supported. Start, Middle, and End transactions supported
11b=reserved
[5:4]-reserved
[3]-PEC support
1b=implements PEC. BMC will start using PEC in read transactions after it receives any SSIF write transaction that includes a valid PEC. The BMC ceases using PEC if it receives an SSIF write transaction that does not include PEC
0b=does not support PEC. Note that a BMC implementation may reject write transactions that include a PEC byte
[2:0]-SSIF Version
000b=version 1 (version defined in this specification)
4
Input message size in bytes. (1 based)
Number of bytes of IPMI message data that the BMC can accept
This number does not include slave address, SMBus length, PEC, or SMBus CMD bytes, just the IPMI message data
A BMC that just supports single-part writes would return 32 (20h) for this value
A BMC that supports multi-part Start and End would return a value from 33 to 64. A BMC that supports multi-part with Middle transactions would return a value from 65 to 255
5Output message size in bytes. (1 based)
Maximum number of bytes of IPMI message data that can be read from the BMC. This number does not include slave address, SMBus length, PEC, SMBus CMD bytes, special bytes (such as the special bytes following the length byte in the multi-part read middle and end transactions) just the IPMI message data
A BMC that just supports single-part reads would return 20h (32) for this value
A BMC that supports multi-part Start and End would return a value from 33 to 62 (the reason this is 62 instead of 64 is that there are two special bytes after the length byte.)
A BMC that supports multi-part with Middle transactions would return a value from 63 to 255
For System Interface Type=KCS or SMIC
3
[7:3]-reserved
[2:0]-System Interface Version
000b= version 1 (conformant with KCS or SMIC interface as defined in this specification)
4Input maximum message size in bytes. (1 based)
Largest number of bytes that can be transferred in a KCS FFh means 255 or more

命令样例

获取系统接口功能

请求:

ipmicmd -k "0f 00 06 57 01" smi 0

响应:

0f 07 00 57 00 00 00 28

返回到索引