host-bmc: Implement Chassis interface

Adding support to host Chassis dbus interface. Based on the PDRs
received from remote PLDM terminus, PLDM hosts the dbus interface based
on the entity type.  The Chassis interface is defined at [1].

Tested: Functional test passed

[1]: https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/yaml/xyz/openbmc_project/Inventory/Item/Chassis.interface.yaml

Change-Id: Ia07c5974ae78314e0812cb09fbc6c738b4853cb9
Signed-off-by: Archana Kakani <archana.kakani@ibm.com>
diff --git a/host-bmc/dbus/chassis.cpp b/host-bmc/dbus/chassis.cpp
new file mode 100644
index 0000000..74f7371
--- /dev/null
+++ b/host-bmc/dbus/chassis.cpp
@@ -0,0 +1,21 @@
+#include "chassis.hpp"
+
+namespace pldm
+{
+namespace dbus
+{
+
+auto ItemChassis::type() const -> ChassisType
+{
+    return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis::
+        type();
+}
+
+auto ItemChassis::type(ChassisType value) -> ChassisType
+{
+    return sdbusplus::xyz::openbmc_project::Inventory::Item::server::Chassis::
+        type(value);
+}
+
+} // namespace dbus
+} // namespace pldm