Name Date Size #Lines LOC

..Today-

subprojects/H12-Apr-2024-3122

.clang-formatH A D17-Aug-20243.7 KiB137135

LICENSEH A D07-Mar-202111.1 KiB202169

OWNERSH A D06-Sep-20221.6 KiB4944

README.mdH A D10-Oct-20241.3 KiB7063

ipmb-channels.jsonH A D08-Dec-2022321 1716

ipmb.serviceH A D07-Mar-2021195 1310

ipmbbridged.cppH A D17-Aug-202432.9 KiB1,014789

ipmbbridged.hppH A D18-Jun-20248.4 KiB359214

ipmbdefines.hppH A D03-May-20242.9 KiB7741

ipmbutils.cppH A D31-Mar-20232.2 KiB9152

ipmbutils.hppH A D31-Mar-2023896 305

meson.buildH A D12-Apr-20241.8 KiB7869

README.md

1Sample config options available to configure :
2
31. Single channel with one me and ipmb :
4
5```json
6{
7  "channels": [
8    {
9      "type": "me",
10      "slave-path": "/dev/ipmb-4",
11      "bmc-addr": 32,
12      "remote-addr": 44
13    },
14    {
15      "type": "ipmb",
16      "slave-path": "/dev/ipmb-9",
17      "bmc-addr": 32,
18      "remote-addr": 96
19    }
20  ]
21}
22```
23
242. Multiple sub channels with me and ipmb :
25
26```json
27{
28  "channels": [
29    {
30      "type": "me",
31      "slave-path": "/dev/ipmb-1",
32      "bmc-addr": 32,
33      "remote-addr": 64,
34      "devIndex": 0
35    },
36    {
37      "type": "ipmb",
38      "slave-path": "/dev/ipmb-3",
39      "bmc-addr": 32,
40      "remote-addr": 64,
41      "devIndex": 0
42    },
43    {
44      "type": "me",
45      "slave-path": "/dev/ipmb-5",
46      "bmc-addr": 32,
47      "remote-addr": 64,
48      "devIndex": 1
49    },
50    {
51      "type": "ipmb",
52      "slave-path": "/dev/ipmb-7",
53      "bmc-addr": 32,
54      "remote-addr": 64,
55      "devIndex": 1
56    }
57  ]
58}
59```
60
61```text
62Config fields :
63
64type          : This points to the ChannelType. It can be ME or ipmb channel.
65slave-path    : The ipmb device path.
66bmc-addr      : This is BMC target address to communicate between BMC and device.
67remote-addr   : This is Remote/requester target address to communicate between BMC and device.
68devIndex      : This devIndex used to identify the particular device/host.
69```
70