xref: /openbmc/bmcweb/features/redfish/lib/pcie_slots.hpp (revision d87fdd9e37c975de8efebb298249b559ecf6969b)
17691cc2fSChicago Duan #pragma once
27691cc2fSChicago Duan 
33ccb3adbSEd Tanous #include "app.hpp"
4e99073f5SGeorge Liu #include "dbus_utility.hpp"
57691cc2fSChicago Duan #include "error_messages.hpp"
64ce2c1b5SEd Tanous #include "generated/enums/pcie_slots.hpp"
73ccb3adbSEd Tanous #include "pcie.hpp"
83ccb3adbSEd Tanous #include "registries/privilege_registry.hpp"
97691cc2fSChicago Duan #include "utility.hpp"
103ccb3adbSEd Tanous #include "utils/dbus_utils.hpp"
113ccb3adbSEd Tanous #include "utils/json_utils.hpp"
127691cc2fSChicago Duan 
13e99073f5SGeorge Liu #include <boost/system/error_code.hpp>
14ef4c65b7SEd Tanous #include <boost/url/format.hpp>
15d1bde9e5SKrzysztof Grobelny #include <sdbusplus/asio/property.hpp>
16d1bde9e5SKrzysztof Grobelny #include <sdbusplus/unpack_properties.hpp>
177691cc2fSChicago Duan 
18e99073f5SGeorge Liu #include <array>
19e99073f5SGeorge Liu #include <string_view>
20e99073f5SGeorge Liu 
217691cc2fSChicago Duan namespace redfish
227691cc2fSChicago Duan {
237691cc2fSChicago Duan 
24*d87fdd9eSLakshmi Yadlapati inline std::optional<pcie_slots::SlotTypes>
25*d87fdd9eSLakshmi Yadlapati     dbusSlotTypeToRf(const std::string& slotType)
267691cc2fSChicago Duan {
277691cc2fSChicago Duan     if (slotType ==
287691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.FullLength")
297691cc2fSChicago Duan     {
304ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::FullLength;
317691cc2fSChicago Duan     }
327691cc2fSChicago Duan     if (slotType ==
337691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.HalfLength")
347691cc2fSChicago Duan     {
354ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::HalfLength;
367691cc2fSChicago Duan     }
377691cc2fSChicago Duan     if (slotType ==
387691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.LowProfile")
397691cc2fSChicago Duan     {
404ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::LowProfile;
417691cc2fSChicago Duan     }
427691cc2fSChicago Duan     if (slotType ==
437691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.Mini")
447691cc2fSChicago Duan     {
454ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::Mini;
467691cc2fSChicago Duan     }
477691cc2fSChicago Duan     if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.M_2")
487691cc2fSChicago Duan     {
494ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::M2;
507691cc2fSChicago Duan     }
517691cc2fSChicago Duan     if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OEM")
527691cc2fSChicago Duan     {
534ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::OEM;
547691cc2fSChicago Duan     }
557691cc2fSChicago Duan     if (slotType ==
567691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OCP3Small")
577691cc2fSChicago Duan     {
584ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::OCP3Small;
597691cc2fSChicago Duan     }
607691cc2fSChicago Duan     if (slotType ==
617691cc2fSChicago Duan         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.OCP3Large")
627691cc2fSChicago Duan     {
634ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::OCP3Large;
647691cc2fSChicago Duan     }
657691cc2fSChicago Duan     if (slotType == "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.U_2")
667691cc2fSChicago Duan     {
674ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::U2;
687691cc2fSChicago Duan     }
69*d87fdd9eSLakshmi Yadlapati     if (slotType ==
70*d87fdd9eSLakshmi Yadlapati         "xyz.openbmc_project.Inventory.Item.PCIeSlot.SlotTypes.Unknown")
71*d87fdd9eSLakshmi Yadlapati     {
724ce2c1b5SEd Tanous         return pcie_slots::SlotTypes::Invalid;
737691cc2fSChicago Duan     }
747691cc2fSChicago Duan 
75*d87fdd9eSLakshmi Yadlapati     // Unspecified slotType should return an internal error.
76*d87fdd9eSLakshmi Yadlapati     return std::nullopt;
77*d87fdd9eSLakshmi Yadlapati }
78*d87fdd9eSLakshmi Yadlapati 
797691cc2fSChicago Duan inline void
807691cc2fSChicago Duan     onPcieSlotGetAllDone(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
815e7e2dc5SEd Tanous                          const boost::system::error_code& ec,
827691cc2fSChicago Duan                          const dbus::utility::DBusPropertiesMap& propertiesList)
837691cc2fSChicago Duan {
847691cc2fSChicago Duan     if (ec)
857691cc2fSChicago Duan     {
867691cc2fSChicago Duan         BMCWEB_LOG_ERROR << "Can't get PCIeSlot properties!";
877691cc2fSChicago Duan         messages::internalError(asyncResp->res);
887691cc2fSChicago Duan         return;
897691cc2fSChicago Duan     }
907691cc2fSChicago Duan 
917691cc2fSChicago Duan     nlohmann::json& slots = asyncResp->res.jsonValue["Slots"];
927691cc2fSChicago Duan 
937691cc2fSChicago Duan     nlohmann::json::array_t* slotsPtr =
947691cc2fSChicago Duan         slots.get_ptr<nlohmann::json::array_t*>();
957691cc2fSChicago Duan     if (slotsPtr == nullptr)
967691cc2fSChicago Duan     {
977691cc2fSChicago Duan         BMCWEB_LOG_ERROR << "Slots key isn't an array???";
987691cc2fSChicago Duan         messages::internalError(asyncResp->res);
997691cc2fSChicago Duan         return;
1007691cc2fSChicago Duan     }
1017691cc2fSChicago Duan 
1027691cc2fSChicago Duan     nlohmann::json::object_t slot;
1037691cc2fSChicago Duan 
104d1bde9e5SKrzysztof Grobelny     const std::string* generation = nullptr;
105d1bde9e5SKrzysztof Grobelny     const size_t* lanes = nullptr;
106d1bde9e5SKrzysztof Grobelny     const std::string* slotType = nullptr;
107d1bde9e5SKrzysztof Grobelny     const bool* hotPluggable = nullptr;
1087691cc2fSChicago Duan 
109d1bde9e5SKrzysztof Grobelny     const bool success = sdbusplus::unpackPropertiesNoThrow(
110d1bde9e5SKrzysztof Grobelny         dbus_utils::UnpackErrorPrinter(), propertiesList, "Generation",
111d1bde9e5SKrzysztof Grobelny         generation, "Lanes", lanes, "SlotType", slotType, "HotPluggable",
112d1bde9e5SKrzysztof Grobelny         hotPluggable);
113d1bde9e5SKrzysztof Grobelny 
114d1bde9e5SKrzysztof Grobelny     if (!success)
1157691cc2fSChicago Duan     {
1167691cc2fSChicago Duan         messages::internalError(asyncResp->res);
1177691cc2fSChicago Duan         return;
1187691cc2fSChicago Duan     }
119d1bde9e5SKrzysztof Grobelny 
120d1bde9e5SKrzysztof Grobelny     if (generation != nullptr)
121d1bde9e5SKrzysztof Grobelny     {
1220ec8b83dSEd Tanous         std::optional<pcie_device::PCIeTypes> pcieType =
123d1bde9e5SKrzysztof Grobelny             redfishPcieGenerationFromDbus(*generation);
1247691cc2fSChicago Duan         if (!pcieType)
1257691cc2fSChicago Duan         {
1267691cc2fSChicago Duan             messages::internalError(asyncResp->res);
1277691cc2fSChicago Duan             return;
1287691cc2fSChicago Duan         }
129bbf372a6SLakshmi Yadlapati         if (*pcieType != pcie_device::PCIeTypes::Invalid)
130bbf372a6SLakshmi Yadlapati         {
131bbf372a6SLakshmi Yadlapati             slot["PCIeType"] = *pcieType;
132bbf372a6SLakshmi Yadlapati         }
1337691cc2fSChicago Duan     }
134d1bde9e5SKrzysztof Grobelny 
135d1bde9e5SKrzysztof Grobelny     if (lanes != nullptr)
1367691cc2fSChicago Duan     {
137d1bde9e5SKrzysztof Grobelny         slot["Lanes"] = *lanes;
1387691cc2fSChicago Duan     }
139d1bde9e5SKrzysztof Grobelny 
140d1bde9e5SKrzysztof Grobelny     if (slotType != nullptr)
1417691cc2fSChicago Duan     {
142*d87fdd9eSLakshmi Yadlapati         std::optional<pcie_slots::SlotTypes> redfishSlotType =
143*d87fdd9eSLakshmi Yadlapati             dbusSlotTypeToRf(*slotType);
144*d87fdd9eSLakshmi Yadlapati         if (!redfishSlotType)
1457691cc2fSChicago Duan         {
1467691cc2fSChicago Duan             messages::internalError(asyncResp->res);
1477691cc2fSChicago Duan             return;
1487691cc2fSChicago Duan         }
149*d87fdd9eSLakshmi Yadlapati         if (*redfishSlotType != pcie_slots::SlotTypes::Invalid)
150*d87fdd9eSLakshmi Yadlapati         {
151*d87fdd9eSLakshmi Yadlapati             slot["SlotType"] = *redfishSlotType;
152*d87fdd9eSLakshmi Yadlapati         }
1537691cc2fSChicago Duan     }
154d1bde9e5SKrzysztof Grobelny 
155d1bde9e5SKrzysztof Grobelny     if (hotPluggable != nullptr)
1567691cc2fSChicago Duan     {
157d1bde9e5SKrzysztof Grobelny         slot["HotPluggable"] = *hotPluggable;
1587691cc2fSChicago Duan     }
159d1bde9e5SKrzysztof Grobelny 
1607691cc2fSChicago Duan     slots.emplace_back(std::move(slot));
1617691cc2fSChicago Duan }
1627691cc2fSChicago Duan 
1637691cc2fSChicago Duan inline void onMapperAssociationDone(
1647691cc2fSChicago Duan     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1657691cc2fSChicago Duan     const std::string& chassisID, const std::string& pcieSlotPath,
1665e7e2dc5SEd Tanous     const std::string& connectionName, const boost::system::error_code& ec,
1676c3e9451SGeorge Liu     const dbus::utility::MapperEndPoints& pcieSlotChassis)
1687691cc2fSChicago Duan {
1697691cc2fSChicago Duan     if (ec)
1707691cc2fSChicago Duan     {
1717691cc2fSChicago Duan         if (ec.value() == EBADR)
1727691cc2fSChicago Duan         {
1737691cc2fSChicago Duan             // This PCIeSlot have no chassis association.
1747691cc2fSChicago Duan             return;
1757691cc2fSChicago Duan         }
1767691cc2fSChicago Duan         BMCWEB_LOG_ERROR << "DBUS response error";
1777691cc2fSChicago Duan         messages::internalError(asyncResp->res);
1787691cc2fSChicago Duan         return;
1797691cc2fSChicago Duan     }
1807691cc2fSChicago Duan 
1816c3e9451SGeorge Liu     if (pcieSlotChassis.size() != 1)
1827691cc2fSChicago Duan     {
1837691cc2fSChicago Duan         BMCWEB_LOG_ERROR << "PCIe Slot association error! ";
1847691cc2fSChicago Duan         messages::internalError(asyncResp->res);
1857691cc2fSChicago Duan         return;
1867691cc2fSChicago Duan     }
1877691cc2fSChicago Duan 
1886c3e9451SGeorge Liu     sdbusplus::message::object_path path(pcieSlotChassis[0]);
1897691cc2fSChicago Duan     std::string chassisName = path.filename();
1907691cc2fSChicago Duan     if (chassisName != chassisID)
1917691cc2fSChicago Duan     {
1927691cc2fSChicago Duan         // The pcie slot doesn't belong to the chassisID
1937691cc2fSChicago Duan         return;
1947691cc2fSChicago Duan     }
1957691cc2fSChicago Duan 
196d1bde9e5SKrzysztof Grobelny     sdbusplus::asio::getAllProperties(
197d1bde9e5SKrzysztof Grobelny         *crow::connections::systemBus, connectionName, pcieSlotPath,
198d1bde9e5SKrzysztof Grobelny         "xyz.openbmc_project.Inventory.Item.PCIeSlot",
1995e7e2dc5SEd Tanous         [asyncResp](const boost::system::error_code& ec2,
2007691cc2fSChicago Duan                     const dbus::utility::DBusPropertiesMap& propertiesList) {
2014ce2c1b5SEd Tanous         onPcieSlotGetAllDone(asyncResp, ec2, propertiesList);
202d1bde9e5SKrzysztof Grobelny         });
2037691cc2fSChicago Duan }
2047691cc2fSChicago Duan 
2057691cc2fSChicago Duan inline void
2067691cc2fSChicago Duan     onMapperSubtreeDone(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2077691cc2fSChicago Duan                         const std::string& chassisID,
2085e7e2dc5SEd Tanous                         const boost::system::error_code& ec,
2097691cc2fSChicago Duan                         const dbus::utility::MapperGetSubTreeResponse& subtree)
2107691cc2fSChicago Duan {
2117691cc2fSChicago Duan     if (ec)
2127691cc2fSChicago Duan     {
2137691cc2fSChicago Duan         BMCWEB_LOG_ERROR << "D-Bus response error on GetSubTree " << ec;
2147691cc2fSChicago Duan         messages::internalError(asyncResp->res);
2157691cc2fSChicago Duan         return;
2167691cc2fSChicago Duan     }
2177691cc2fSChicago Duan     if (subtree.empty())
2187691cc2fSChicago Duan     {
219d8a5d5d8SJiaqing Zhao         messages::resourceNotFound(asyncResp->res, "Chassis", chassisID);
2207691cc2fSChicago Duan         return;
2217691cc2fSChicago Duan     }
2227691cc2fSChicago Duan 
2237691cc2fSChicago Duan     BMCWEB_LOG_DEBUG << "Get properties for PCIeSlots associated to chassis = "
2247691cc2fSChicago Duan                      << chassisID;
2257691cc2fSChicago Duan 
2267691cc2fSChicago Duan     asyncResp->res.jsonValue["@odata.type"] = "#PCIeSlots.v1_4_1.PCIeSlots";
2277691cc2fSChicago Duan     asyncResp->res.jsonValue["Name"] = "PCIe Slot Information";
228ef4c65b7SEd Tanous     asyncResp->res.jsonValue["@odata.id"] =
229ef4c65b7SEd Tanous         boost::urls::format("/redfish/v1/Chassis/{}/PCIeSlots", chassisID);
2307691cc2fSChicago Duan     asyncResp->res.jsonValue["Id"] = "1";
2317691cc2fSChicago Duan     asyncResp->res.jsonValue["Slots"] = nlohmann::json::array();
2327691cc2fSChicago Duan 
2337691cc2fSChicago Duan     for (const auto& pathServicePair : subtree)
2347691cc2fSChicago Duan     {
2357691cc2fSChicago Duan         const std::string& pcieSlotPath = pathServicePair.first;
2367691cc2fSChicago Duan         for (const auto& connectionInterfacePair : pathServicePair.second)
2377691cc2fSChicago Duan         {
2387691cc2fSChicago Duan             const std::string& connectionName = connectionInterfacePair.first;
2397691cc2fSChicago Duan             sdbusplus::message::object_path pcieSlotAssociationPath(
2407691cc2fSChicago Duan                 pcieSlotPath);
2417691cc2fSChicago Duan             pcieSlotAssociationPath /= "chassis";
2427691cc2fSChicago Duan 
2437691cc2fSChicago Duan             // The association of this PCIeSlot is used to determine whether
2447691cc2fSChicago Duan             // it belongs to this ChassisID
2456c3e9451SGeorge Liu             dbus::utility::getAssociationEndPoints(
2466c3e9451SGeorge Liu                 std::string{pcieSlotAssociationPath},
2477691cc2fSChicago Duan                 [asyncResp, chassisID, pcieSlotPath, connectionName](
2484ce2c1b5SEd Tanous                     const boost::system::error_code& ec2,
2496c3e9451SGeorge Liu                     const dbus::utility::MapperEndPoints& endpoints) {
2507691cc2fSChicago Duan                 onMapperAssociationDone(asyncResp, chassisID, pcieSlotPath,
2514ce2c1b5SEd Tanous                                         connectionName, ec2, endpoints);
2526c3e9451SGeorge Liu                 });
2537691cc2fSChicago Duan         }
2547691cc2fSChicago Duan     }
2557691cc2fSChicago Duan }
2567691cc2fSChicago Duan 
2577691cc2fSChicago Duan inline void handlePCIeSlotCollectionGet(
2587691cc2fSChicago Duan     crow::App& app, const crow::Request& req,
2597691cc2fSChicago Duan     const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2607691cc2fSChicago Duan     const std::string& chassisID)
2617691cc2fSChicago Duan {
2622aacf856SEd Tanous     if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2637691cc2fSChicago Duan     {
2647691cc2fSChicago Duan         return;
2657691cc2fSChicago Duan     }
2667691cc2fSChicago Duan 
267e99073f5SGeorge Liu     constexpr std::array<std::string_view, 1> interfaces = {
268e99073f5SGeorge Liu         "xyz.openbmc_project.Inventory.Item.PCIeSlot"};
269e99073f5SGeorge Liu     dbus::utility::getSubTree(
270e99073f5SGeorge Liu         "/xyz/openbmc_project/inventory", 0, interfaces,
2717691cc2fSChicago Duan         [asyncResp,
272e99073f5SGeorge Liu          chassisID](const boost::system::error_code& ec,
2737691cc2fSChicago Duan                     const dbus::utility::MapperGetSubTreeResponse& subtree) {
2747691cc2fSChicago Duan         onMapperSubtreeDone(asyncResp, chassisID, ec, subtree);
275e99073f5SGeorge Liu         });
2767691cc2fSChicago Duan }
2777691cc2fSChicago Duan 
2787691cc2fSChicago Duan inline void requestRoutesPCIeSlots(App& app)
2797691cc2fSChicago Duan {
2807691cc2fSChicago Duan     BMCWEB_ROUTE(app, "/redfish/v1/Chassis/<str>/PCIeSlots/")
2817691cc2fSChicago Duan         .privileges(redfish::privileges::getPCIeSlots)
2827691cc2fSChicago Duan         .methods(boost::beast::http::verb::get)(
2837691cc2fSChicago Duan             std::bind_front(handlePCIeSlotCollectionGet, std::ref(app)));
2847691cc2fSChicago Duan }
2857691cc2fSChicago Duan 
2867691cc2fSChicago Duan } // namespace redfish
287