commit | 00c8382c202b82dfea901a9e9f1001a5d1bc17df | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Thu Jun 12 12:22:39 2025 -0400 |
committer | Patrick Williams <patrick@stwcx.xyz> | Thu Jun 12 12:22:39 2025 -0400 |
tree | 9e8982a1c8cb8a17406a97b990987fcdc4e960f1 | |
parent | 35e1485f76a1562d0782a3a0dc003d0a7ac76ed9 [diff] |
markdownlint: minor fixes Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I4c06c11f4f3405df6f0951db9ca9106488c83045
Sample config options available to configure :
Single channel with one me and ipmb :
{ "channels": [ { "type": "me", "slave-path": "/dev/ipmb-4", "bmc-addr": 32, "remote-addr": 44 }, { "type": "ipmb", "slave-path": "/dev/ipmb-9", "bmc-addr": 32, "remote-addr": 96 } ] }
Multiple sub channels with me and ipmb :
{ "channels": [ { "type": "me", "slave-path": "/dev/ipmb-1", "bmc-addr": 32, "remote-addr": 64, "devIndex": 0 }, { "type": "ipmb", "slave-path": "/dev/ipmb-3", "bmc-addr": 32, "remote-addr": 64, "devIndex": 0 }, { "type": "me", "slave-path": "/dev/ipmb-5", "bmc-addr": 32, "remote-addr": 64, "devIndex": 1 }, { "type": "ipmb", "slave-path": "/dev/ipmb-7", "bmc-addr": 32, "remote-addr": 64, "devIndex": 1 } ] }
Config fields : type : This points to the ChannelType. It can be ME or ipmb channel. slave-path : The ipmb device path. bmc-addr : This is BMC target address to communicate between BMC and device. remote-addr : This is Remote/requester target address to communicate between BMC and device. devIndex : This devIndex used to identify the particular device/host.