Clone this repo:

Branches

  1. 3ef588d Add delay between frame send retries by cchoux · 1 year, 8 months ago master
  2. 00c8382 markdownlint: minor fixes by Patrick Williams · 5 months ago
  3. 35e1485 Add dependency on boost::context by Ed Tanous · 7 months ago
  4. b922c2d ipmbbridged: Fix the issue with busy caused by incorrect requests by Tian Jingzai · 7 months ago
  5. 43d840e meson: reformat with meson formatter by Patrick Williams · 9 months ago

ipmbbridge

Sample config options available to configure :

  1. 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
        }
      ]
    }
    
  2. 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.