Name Date Size #Lines LOC

..--

Board/H--64

Cpu/H--5251

Dimm/H--2120

PersistentMemory/H--7168

Accelerator.interface.yamlH A D06-Dec-2022875 3128

Battery.interface.yamlH A D05-Jun-2021236 54

Bmc.interface.yamlH A D06-Dec-2022535 1412

Board.interface.yamlH A D05-Jun-202158 32

Cable.interface.yamlH A D27-Oct-20211.1 KiB2827

Chassis.interface.yamlH A D19-Jan-20232.2 KiB6258

Connector.interface.yamlH A D06-Dec-2022149 43

Cpu.interface.yamlH A D17-Jul-20233.2 KiB9895

CpuCore.interface.yamlH A D02-Nov-2022207 98

Dimm.interface.yamlH A D29-May-20238.8 KiB272270

DiskBackplane.interface.yamlH A D06-Dec-2022164 43

Drive.interface.yamlH A D26-Feb-20243.5 KiB110107

Ethernet.interface.yamlH A D05-Jun-202166 32

FabricAdapter.interface.yamlH A D26-Apr-2023544 1412

Fan.interface.yamlH A D06-Dec-2022357 1210

Global.interface.yamlH A D05-Jun-202159 32

NetworkInterface.interface.yamlH A D05-Jun-2021179 87

PCIeDevice.interface.yamlH A D14-Mar-20249.2 KiB310297

PCIeSlot.interface.yamlH A D29-Apr-20242.6 KiB10987

PCIeSwitch.interface.yamlH A D29-Apr-2024467 1311

Panel.interface.yamlH A D06-Dec-2022203 54

PersistentMemory.interface.yamlH A D06-Dec-20223.8 KiB110108

PowerSupply.interface.yamlH A D09-Nov-2022376 1210

README.mdH A D17-Jun-20241.4 KiB3225

Rotor.interface.yamlH A D06-Dec-2022562 2117

Storage.interface.yamlH A D29-Jun-202160 32

StorageController.interface.yamlH A D05-Jun-202171 32

System.interface.yamlH A D05-Jun-2021292 65

Tpm.interface.yamlH A D05-Jun-202181 32

TrustedComponent.interface.yamlH A D12-Jun-20231.7 KiB5045

Volume.interface.yamlH A D14-Mar-20224.2 KiB125116

Vrm.interface.yamlH A D02-Apr-2024101 43

README.md

1# Representing Inventory Items on DBus
2
3## Overview
4
5Inventory refers to physical objects. Some of the objects can be physically
6accessed, such as a board, a chassis and a drive. Some objects are embedded in
7other objects, such as a BMC embedded in a board, or a core in a CPU. The DBus
8interfaces in this directory describe the DBus representation of those physical
9objects. A graph consisting of Inventory objects as vertices and Association as
10edges can be constructed that represents the relationship between different
11parts (such as chassis, drive, sensors, etc) of the system.
12
13## Inventory Association
14
15DBus objects with `xyz.opebmc_project.Inventory.Item.${ItemType}` interface
16might be associated with other inventory objects. Such association can be
17translated to Redfish schemas and then indicate the system topology.
18
19Document ObjectMapper association forward and reverse names as follows:
20
21- Item and Item: `{containing, contained_by}`
22- Sensor.Value and Bmc: `{monitoring, monitored_by}`
23- Fan and Item: `{cooling, cooled_by}`
24- Led.Group and Item: `{identifying, identified_by}`
25  `{fault_identifying, fault_identified_by}`
26- PowerSupply and Item: `{powering, powered_by}`
27- FabricAdapter and Connector.Port: `{connecting, connected_to}`
28- Cpu and PCIeSlot: `{connecting, connected_to}`
29- PCIeSwitch and PCIeSlot: `{connecting, connected_to}`
30- Control.Throttle and Item: `{throttling, throttled_by}`
31- Cable and Item: `{connecting, connected_to}`
32