1ac6a4445SGunnar Mills /* 2ac6a4445SGunnar Mills // Copyright (c) 2018 Intel Corporation 3ac6a4445SGunnar Mills // 4ac6a4445SGunnar Mills // Licensed under the Apache License, Version 2.0 (the "License"); 5ac6a4445SGunnar Mills // you may not use this file except in compliance with the License. 6ac6a4445SGunnar Mills // You may obtain a copy of the License at 7ac6a4445SGunnar Mills // 8ac6a4445SGunnar Mills // http://www.apache.org/licenses/LICENSE-2.0 9ac6a4445SGunnar Mills // 10ac6a4445SGunnar Mills // Unless required by applicable law or agreed to in writing, software 11ac6a4445SGunnar Mills // distributed under the License is distributed on an "AS IS" BASIS, 12ac6a4445SGunnar Mills // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13ac6a4445SGunnar Mills // See the License for the specific language governing permissions and 14ac6a4445SGunnar Mills // limitations under the License. 15ac6a4445SGunnar Mills */ 16ac6a4445SGunnar Mills #pragma once 17ac6a4445SGunnar Mills 181e1e598dSJonathan Doman #include "dbus_singleton.hpp" 191e1e598dSJonathan Doman #include "error_messages.hpp" 20ac6a4445SGunnar Mills #include "health.hpp" 21ac6a4445SGunnar Mills 227e860f15SJohn Edward Broadbent #include <app.hpp> 23ac6a4445SGunnar Mills #include <boost/container/flat_map.hpp> 24168e20c1SEd Tanous #include <dbus_utility.hpp> 25ed398213SEd Tanous #include <registries/privilege_registry.hpp> 261e1e598dSJonathan Doman #include <sdbusplus/asio/property.hpp> 27dba0c291SJonathan Doman #include <sdbusplus/message/native_types.hpp> 28dba0c291SJonathan Doman #include <sdbusplus/utility/dedup_variant.hpp> 29ac6a4445SGunnar Mills #include <utils/collection.hpp> 30ac6a4445SGunnar Mills #include <utils/json_utils.hpp> 31ac6a4445SGunnar Mills 32ac6a4445SGunnar Mills namespace redfish 33ac6a4445SGunnar Mills { 34ac6a4445SGunnar Mills 35ac6a4445SGunnar Mills using InterfacesProperties = boost::container::flat_map< 36ac6a4445SGunnar Mills std::string, 37ac6a4445SGunnar Mills boost::container::flat_map<std::string, dbus::utility::DbusVariantType>>; 38ac6a4445SGunnar Mills 39c951448aSJonathan Doman // Interfaces which imply a D-Bus object represents a Processor 40c951448aSJonathan Doman constexpr std::array<const char*, 2> processorInterfaces = { 41c951448aSJonathan Doman "xyz.openbmc_project.Inventory.Item.Cpu", 42c951448aSJonathan Doman "xyz.openbmc_project.Inventory.Item.Accelerator"}; 432bab9831SJonathan Doman 4471b82f26SSharad Yadav /** 4571b82f26SSharad Yadav * @brief Fill out uuid info of a processor by 4671b82f26SSharad Yadav * requesting data from the given D-Bus object. 4771b82f26SSharad Yadav * 4871b82f26SSharad Yadav * @param[in,out] aResp Async HTTP response. 4971b82f26SSharad Yadav * @param[in] service D-Bus service to query. 5071b82f26SSharad Yadav * @param[in] objPath D-Bus object to query. 5171b82f26SSharad Yadav */ 5271b82f26SSharad Yadav inline void getProcessorUUID(std::shared_ptr<bmcweb::AsyncResp> aResp, 5371b82f26SSharad Yadav const std::string& service, 5471b82f26SSharad Yadav const std::string& objPath) 5571b82f26SSharad Yadav { 5671b82f26SSharad Yadav BMCWEB_LOG_DEBUG << "Get Processor UUID"; 571e1e598dSJonathan Doman sdbusplus::asio::getProperty<std::string>( 581e1e598dSJonathan Doman *crow::connections::systemBus, service, objPath, 591e1e598dSJonathan Doman "xyz.openbmc_project.Common.UUID", "UUID", 601e1e598dSJonathan Doman [objPath, aResp{std::move(aResp)}](const boost::system::error_code ec, 611e1e598dSJonathan Doman const std::string& property) { 6271b82f26SSharad Yadav if (ec) 6371b82f26SSharad Yadav { 6471b82f26SSharad Yadav BMCWEB_LOG_DEBUG << "DBUS response error"; 6571b82f26SSharad Yadav messages::internalError(aResp->res); 6671b82f26SSharad Yadav return; 6771b82f26SSharad Yadav } 681e1e598dSJonathan Doman aResp->res.jsonValue["UUID"] = property; 691e1e598dSJonathan Doman }); 7071b82f26SSharad Yadav } 7171b82f26SSharad Yadav 72711ac7a9SEd Tanous inline void getCpuDataByInterface( 73711ac7a9SEd Tanous const std::shared_ptr<bmcweb::AsyncResp>& aResp, 74711ac7a9SEd Tanous const dbus::utility::DBusInteracesMap& cpuInterfacesProperties) 75ac6a4445SGunnar Mills { 76ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "Get CPU resources by interface."; 77ac6a4445SGunnar Mills 78a1649ec6SChicago Duan // Set the default value of state 79a1649ec6SChicago Duan aResp->res.jsonValue["Status"]["State"] = "Enabled"; 80a1649ec6SChicago Duan aResp->res.jsonValue["Status"]["Health"] = "OK"; 81ac6a4445SGunnar Mills 82ac6a4445SGunnar Mills for (const auto& interface : cpuInterfacesProperties) 83ac6a4445SGunnar Mills { 84ac6a4445SGunnar Mills for (const auto& property : interface.second) 85ac6a4445SGunnar Mills { 86a1649ec6SChicago Duan if (property.first == "Present") 87ac6a4445SGunnar Mills { 88a1649ec6SChicago Duan const bool* cpuPresent = std::get_if<bool>(&property.second); 89a1649ec6SChicago Duan if (cpuPresent == nullptr) 90ac6a4445SGunnar Mills { 91ac6a4445SGunnar Mills // Important property not in desired type 92ac6a4445SGunnar Mills messages::internalError(aResp->res); 93ac6a4445SGunnar Mills return; 94ac6a4445SGunnar Mills } 95e05aec50SEd Tanous if (!*cpuPresent) 96ac6a4445SGunnar Mills { 97a1649ec6SChicago Duan // Slot is not populated 98ac6a4445SGunnar Mills aResp->res.jsonValue["Status"]["State"] = "Absent"; 99a1649ec6SChicago Duan } 100a1649ec6SChicago Duan } 101a1649ec6SChicago Duan else if (property.first == "Functional") 102a1649ec6SChicago Duan { 103a1649ec6SChicago Duan const bool* cpuFunctional = std::get_if<bool>(&property.second); 104a1649ec6SChicago Duan if (cpuFunctional == nullptr) 105a1649ec6SChicago Duan { 106a1649ec6SChicago Duan messages::internalError(aResp->res); 107ac6a4445SGunnar Mills return; 108ac6a4445SGunnar Mills } 109e05aec50SEd Tanous if (!*cpuFunctional) 110a1649ec6SChicago Duan { 111a1649ec6SChicago Duan aResp->res.jsonValue["Status"]["Health"] = "Critical"; 112a1649ec6SChicago Duan } 113a1649ec6SChicago Duan } 114a1649ec6SChicago Duan else if (property.first == "CoreCount") 115a1649ec6SChicago Duan { 116a1649ec6SChicago Duan const uint16_t* coresCount = 117a1649ec6SChicago Duan std::get_if<uint16_t>(&property.second); 118a1649ec6SChicago Duan if (coresCount == nullptr) 119a1649ec6SChicago Duan { 120a1649ec6SChicago Duan messages::internalError(aResp->res); 121a1649ec6SChicago Duan return; 122a1649ec6SChicago Duan } 123ac6a4445SGunnar Mills aResp->res.jsonValue["TotalCores"] = *coresCount; 124ac6a4445SGunnar Mills } 125dc3fa667SJonathan Doman else if (property.first == "MaxSpeedInMhz") 126dc3fa667SJonathan Doman { 127dc3fa667SJonathan Doman const uint32_t* value = std::get_if<uint32_t>(&property.second); 128dc3fa667SJonathan Doman if (value != nullptr) 129dc3fa667SJonathan Doman { 130dc3fa667SJonathan Doman aResp->res.jsonValue["MaxSpeedMHz"] = *value; 131dc3fa667SJonathan Doman } 132dc3fa667SJonathan Doman } 133ac6a4445SGunnar Mills else if (property.first == "Socket") 134ac6a4445SGunnar Mills { 135ac6a4445SGunnar Mills const std::string* value = 136ac6a4445SGunnar Mills std::get_if<std::string>(&property.second); 137ac6a4445SGunnar Mills if (value != nullptr) 138ac6a4445SGunnar Mills { 139ac6a4445SGunnar Mills aResp->res.jsonValue["Socket"] = *value; 140ac6a4445SGunnar Mills } 141ac6a4445SGunnar Mills } 142ac6a4445SGunnar Mills else if (property.first == "ThreadCount") 143ac6a4445SGunnar Mills { 144dc3fa667SJonathan Doman const uint16_t* value = std::get_if<uint16_t>(&property.second); 145ac6a4445SGunnar Mills if (value != nullptr) 146ac6a4445SGunnar Mills { 147ac6a4445SGunnar Mills aResp->res.jsonValue["TotalThreads"] = *value; 148ac6a4445SGunnar Mills } 149ac6a4445SGunnar Mills } 1501930fbd4SBrandon Kim else if (property.first == "EffectiveFamily") 151ac6a4445SGunnar Mills { 1521930fbd4SBrandon Kim const uint16_t* value = std::get_if<uint16_t>(&property.second); 153ac6a4445SGunnar Mills if (value != nullptr) 154ac6a4445SGunnar Mills { 155ac6a4445SGunnar Mills aResp->res.jsonValue["ProcessorId"]["EffectiveFamily"] = 156*866e4862SEd Tanous "0x" + intToHexString(*value, 4); 157ac6a4445SGunnar Mills } 158ac6a4445SGunnar Mills } 1591930fbd4SBrandon Kim else if (property.first == "EffectiveModel") 1601930fbd4SBrandon Kim { 1611930fbd4SBrandon Kim const uint16_t* value = std::get_if<uint16_t>(&property.second); 1621930fbd4SBrandon Kim if (value == nullptr) 1631930fbd4SBrandon Kim { 1641930fbd4SBrandon Kim messages::internalError(aResp->res); 1651930fbd4SBrandon Kim return; 1661930fbd4SBrandon Kim } 1671930fbd4SBrandon Kim aResp->res.jsonValue["ProcessorId"]["EffectiveModel"] = 168*866e4862SEd Tanous "0x" + intToHexString(*value, 4); 1691930fbd4SBrandon Kim } 170ac6a4445SGunnar Mills else if (property.first == "Id") 171ac6a4445SGunnar Mills { 172ac6a4445SGunnar Mills const uint64_t* value = std::get_if<uint64_t>(&property.second); 173ac6a4445SGunnar Mills if (value != nullptr && *value != 0) 174ac6a4445SGunnar Mills { 175ac6a4445SGunnar Mills aResp->res 176ac6a4445SGunnar Mills .jsonValue["ProcessorId"]["IdentificationRegisters"] = 177*866e4862SEd Tanous "0x" + intToHexString(*value, 16); 178ac6a4445SGunnar Mills } 179ac6a4445SGunnar Mills } 1801930fbd4SBrandon Kim else if (property.first == "Microcode") 1811930fbd4SBrandon Kim { 1821930fbd4SBrandon Kim const uint32_t* value = std::get_if<uint32_t>(&property.second); 1831930fbd4SBrandon Kim if (value == nullptr) 1841930fbd4SBrandon Kim { 1851930fbd4SBrandon Kim messages::internalError(aResp->res); 1861930fbd4SBrandon Kim return; 1871930fbd4SBrandon Kim } 1881930fbd4SBrandon Kim aResp->res.jsonValue["ProcessorId"]["MicrocodeInfo"] = 189*866e4862SEd Tanous "0x" + intToHexString(*value, 8); 1901930fbd4SBrandon Kim } 1911930fbd4SBrandon Kim else if (property.first == "Step") 1921930fbd4SBrandon Kim { 1931930fbd4SBrandon Kim const uint16_t* value = std::get_if<uint16_t>(&property.second); 1941930fbd4SBrandon Kim if (value == nullptr) 1951930fbd4SBrandon Kim { 1961930fbd4SBrandon Kim messages::internalError(aResp->res); 1971930fbd4SBrandon Kim return; 1981930fbd4SBrandon Kim } 1991930fbd4SBrandon Kim aResp->res.jsonValue["ProcessorId"]["Step"] = 200*866e4862SEd Tanous "0x" + intToHexString(*value, 4); 2011930fbd4SBrandon Kim } 202ac6a4445SGunnar Mills } 203ac6a4445SGunnar Mills } 204ac6a4445SGunnar Mills } 205ac6a4445SGunnar Mills 2068d1b46d7Szhanghch05 inline void getCpuDataByService(std::shared_ptr<bmcweb::AsyncResp> aResp, 207ac6a4445SGunnar Mills const std::string& cpuId, 208ac6a4445SGunnar Mills const std::string& service, 209ac6a4445SGunnar Mills const std::string& objPath) 210ac6a4445SGunnar Mills { 211ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "Get available system cpu resources by service."; 212ac6a4445SGunnar Mills 213ac6a4445SGunnar Mills crow::connections::systemBus->async_method_call( 214ac6a4445SGunnar Mills [cpuId, service, objPath, aResp{std::move(aResp)}]( 215ac6a4445SGunnar Mills const boost::system::error_code ec, 216ac6a4445SGunnar Mills const dbus::utility::ManagedObjectType& dbusData) { 217ac6a4445SGunnar Mills if (ec) 218ac6a4445SGunnar Mills { 219ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "DBUS response error"; 220ac6a4445SGunnar Mills messages::internalError(aResp->res); 221ac6a4445SGunnar Mills return; 222ac6a4445SGunnar Mills } 223ac6a4445SGunnar Mills aResp->res.jsonValue["Id"] = cpuId; 224ac6a4445SGunnar Mills aResp->res.jsonValue["Name"] = "Processor"; 225ac6a4445SGunnar Mills aResp->res.jsonValue["ProcessorType"] = "CPU"; 226ac6a4445SGunnar Mills 227ac6a4445SGunnar Mills bool slotPresent = false; 228ac6a4445SGunnar Mills std::string corePath = objPath + "/core"; 229ac6a4445SGunnar Mills size_t totalCores = 0; 230ac6a4445SGunnar Mills for (const auto& object : dbusData) 231ac6a4445SGunnar Mills { 232ac6a4445SGunnar Mills if (object.first.str == objPath) 233ac6a4445SGunnar Mills { 234ac6a4445SGunnar Mills getCpuDataByInterface(aResp, object.second); 235ac6a4445SGunnar Mills } 236ac6a4445SGunnar Mills else if (boost::starts_with(object.first.str, corePath)) 237ac6a4445SGunnar Mills { 238ac6a4445SGunnar Mills for (const auto& interface : object.second) 239ac6a4445SGunnar Mills { 240ac6a4445SGunnar Mills if (interface.first == 241ac6a4445SGunnar Mills "xyz.openbmc_project.Inventory.Item") 242ac6a4445SGunnar Mills { 243ac6a4445SGunnar Mills for (const auto& property : interface.second) 244ac6a4445SGunnar Mills { 245ac6a4445SGunnar Mills if (property.first == "Present") 246ac6a4445SGunnar Mills { 247ac6a4445SGunnar Mills const bool* present = 248ac6a4445SGunnar Mills std::get_if<bool>(&property.second); 249ac6a4445SGunnar Mills if (present != nullptr) 250ac6a4445SGunnar Mills { 251e05aec50SEd Tanous if (*present) 252ac6a4445SGunnar Mills { 253ac6a4445SGunnar Mills slotPresent = true; 254ac6a4445SGunnar Mills totalCores++; 255ac6a4445SGunnar Mills } 256ac6a4445SGunnar Mills } 257ac6a4445SGunnar Mills } 258ac6a4445SGunnar Mills } 259ac6a4445SGunnar Mills } 260ac6a4445SGunnar Mills } 261ac6a4445SGunnar Mills } 262ac6a4445SGunnar Mills } 263ac6a4445SGunnar Mills // In getCpuDataByInterface(), state and health are set 264ac6a4445SGunnar Mills // based on the present and functional status. If core 265ac6a4445SGunnar Mills // count is zero, then it has a higher precedence. 266ac6a4445SGunnar Mills if (slotPresent) 267ac6a4445SGunnar Mills { 268ac6a4445SGunnar Mills if (totalCores == 0) 269ac6a4445SGunnar Mills { 270ac6a4445SGunnar Mills // Slot is not populated, set status end return 271ac6a4445SGunnar Mills aResp->res.jsonValue["Status"]["State"] = "Absent"; 272ac6a4445SGunnar Mills aResp->res.jsonValue["Status"]["Health"] = "OK"; 273ac6a4445SGunnar Mills } 274ac6a4445SGunnar Mills aResp->res.jsonValue["TotalCores"] = totalCores; 275ac6a4445SGunnar Mills } 276ac6a4445SGunnar Mills return; 277ac6a4445SGunnar Mills }, 278ac6a4445SGunnar Mills service, "/xyz/openbmc_project/inventory", 279ac6a4445SGunnar Mills "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); 280ac6a4445SGunnar Mills } 281ac6a4445SGunnar Mills 2828d1b46d7Szhanghch05 inline void getCpuAssetData(std::shared_ptr<bmcweb::AsyncResp> aResp, 283ac6a4445SGunnar Mills const std::string& service, 284ac6a4445SGunnar Mills const std::string& objPath) 285ac6a4445SGunnar Mills { 286ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "Get Cpu Asset Data"; 287ac6a4445SGunnar Mills crow::connections::systemBus->async_method_call( 288ac6a4445SGunnar Mills [objPath, aResp{std::move(aResp)}]( 289ac6a4445SGunnar Mills const boost::system::error_code ec, 290ac6a4445SGunnar Mills const boost::container::flat_map< 291168e20c1SEd Tanous std::string, dbus::utility::DbusVariantType>& properties) { 292ac6a4445SGunnar Mills if (ec) 293ac6a4445SGunnar Mills { 294ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "DBUS response error"; 295ac6a4445SGunnar Mills messages::internalError(aResp->res); 296ac6a4445SGunnar Mills return; 297ac6a4445SGunnar Mills } 298ac6a4445SGunnar Mills 299ac6a4445SGunnar Mills for (const auto& property : properties) 300ac6a4445SGunnar Mills { 301ac6a4445SGunnar Mills if (property.first == "SerialNumber") 302ac6a4445SGunnar Mills { 303ac6a4445SGunnar Mills const std::string* sn = 304ac6a4445SGunnar Mills std::get_if<std::string>(&property.second); 305ac6a4445SGunnar Mills if (sn != nullptr && !sn->empty()) 306ac6a4445SGunnar Mills { 307ac6a4445SGunnar Mills aResp->res.jsonValue["SerialNumber"] = *sn; 308ac6a4445SGunnar Mills } 309ac6a4445SGunnar Mills } 310ac6a4445SGunnar Mills else if (property.first == "Model") 311ac6a4445SGunnar Mills { 312ac6a4445SGunnar Mills const std::string* model = 313ac6a4445SGunnar Mills std::get_if<std::string>(&property.second); 314ac6a4445SGunnar Mills if (model != nullptr && !model->empty()) 315ac6a4445SGunnar Mills { 316ac6a4445SGunnar Mills aResp->res.jsonValue["Model"] = *model; 317ac6a4445SGunnar Mills } 318ac6a4445SGunnar Mills } 319ac6a4445SGunnar Mills else if (property.first == "Manufacturer") 320ac6a4445SGunnar Mills { 321ac6a4445SGunnar Mills 322ac6a4445SGunnar Mills const std::string* mfg = 323ac6a4445SGunnar Mills std::get_if<std::string>(&property.second); 324ac6a4445SGunnar Mills if (mfg != nullptr) 325ac6a4445SGunnar Mills { 326ac6a4445SGunnar Mills aResp->res.jsonValue["Manufacturer"] = *mfg; 327ac6a4445SGunnar Mills 328ac6a4445SGunnar Mills // Otherwise would be unexpected. 329ac6a4445SGunnar Mills if (mfg->find("Intel") != std::string::npos) 330ac6a4445SGunnar Mills { 331ac6a4445SGunnar Mills aResp->res.jsonValue["ProcessorArchitecture"] = 332ac6a4445SGunnar Mills "x86"; 333ac6a4445SGunnar Mills aResp->res.jsonValue["InstructionSet"] = "x86-64"; 334ac6a4445SGunnar Mills } 335ac6a4445SGunnar Mills else if (mfg->find("IBM") != std::string::npos) 336ac6a4445SGunnar Mills { 337ac6a4445SGunnar Mills aResp->res.jsonValue["ProcessorArchitecture"] = 338ac6a4445SGunnar Mills "Power"; 339ac6a4445SGunnar Mills aResp->res.jsonValue["InstructionSet"] = "PowerISA"; 340ac6a4445SGunnar Mills } 341ac6a4445SGunnar Mills } 342ac6a4445SGunnar Mills } 343cba4f448SSunnySrivastava1984 else if (property.first == "PartNumber") 344cba4f448SSunnySrivastava1984 { 345cba4f448SSunnySrivastava1984 const std::string* partNumber = 346cba4f448SSunnySrivastava1984 std::get_if<std::string>(&property.second); 347cba4f448SSunnySrivastava1984 348cba4f448SSunnySrivastava1984 if (partNumber == nullptr) 349cba4f448SSunnySrivastava1984 { 350cba4f448SSunnySrivastava1984 messages::internalError(aResp->res); 351cba4f448SSunnySrivastava1984 return; 352cba4f448SSunnySrivastava1984 } 353cba4f448SSunnySrivastava1984 aResp->res.jsonValue["PartNumber"] = *partNumber; 354cba4f448SSunnySrivastava1984 } 355cba4f448SSunnySrivastava1984 else if (property.first == "SparePartNumber") 356cba4f448SSunnySrivastava1984 { 357cba4f448SSunnySrivastava1984 const std::string* sparePartNumber = 358cba4f448SSunnySrivastava1984 std::get_if<std::string>(&property.second); 359cba4f448SSunnySrivastava1984 360cba4f448SSunnySrivastava1984 if (sparePartNumber == nullptr) 361cba4f448SSunnySrivastava1984 { 362cba4f448SSunnySrivastava1984 messages::internalError(aResp->res); 363cba4f448SSunnySrivastava1984 return; 364cba4f448SSunnySrivastava1984 } 365cba4f448SSunnySrivastava1984 aResp->res.jsonValue["SparePartNumber"] = *sparePartNumber; 366cba4f448SSunnySrivastava1984 } 367ac6a4445SGunnar Mills } 368ac6a4445SGunnar Mills }, 369ac6a4445SGunnar Mills service, objPath, "org.freedesktop.DBus.Properties", "GetAll", 370ac6a4445SGunnar Mills "xyz.openbmc_project.Inventory.Decorator.Asset"); 371ac6a4445SGunnar Mills } 372ac6a4445SGunnar Mills 3738d1b46d7Szhanghch05 inline void getCpuRevisionData(std::shared_ptr<bmcweb::AsyncResp> aResp, 374ac6a4445SGunnar Mills const std::string& service, 375ac6a4445SGunnar Mills const std::string& objPath) 376ac6a4445SGunnar Mills { 377ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "Get Cpu Revision Data"; 378ac6a4445SGunnar Mills crow::connections::systemBus->async_method_call( 379ac6a4445SGunnar Mills [objPath, aResp{std::move(aResp)}]( 380ac6a4445SGunnar Mills const boost::system::error_code ec, 381ac6a4445SGunnar Mills const boost::container::flat_map< 382168e20c1SEd Tanous std::string, dbus::utility::DbusVariantType>& properties) { 383ac6a4445SGunnar Mills if (ec) 384ac6a4445SGunnar Mills { 385ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "DBUS response error"; 386ac6a4445SGunnar Mills messages::internalError(aResp->res); 387ac6a4445SGunnar Mills return; 388ac6a4445SGunnar Mills } 389ac6a4445SGunnar Mills 390ac6a4445SGunnar Mills for (const auto& property : properties) 391ac6a4445SGunnar Mills { 392ac6a4445SGunnar Mills if (property.first == "Version") 393ac6a4445SGunnar Mills { 394ac6a4445SGunnar Mills const std::string* ver = 395ac6a4445SGunnar Mills std::get_if<std::string>(&property.second); 396ac6a4445SGunnar Mills if (ver != nullptr) 397ac6a4445SGunnar Mills { 398ac6a4445SGunnar Mills aResp->res.jsonValue["Version"] = *ver; 399ac6a4445SGunnar Mills } 400ac6a4445SGunnar Mills break; 401ac6a4445SGunnar Mills } 402ac6a4445SGunnar Mills } 403ac6a4445SGunnar Mills }, 404ac6a4445SGunnar Mills service, objPath, "org.freedesktop.DBus.Properties", "GetAll", 405ac6a4445SGunnar Mills "xyz.openbmc_project.Inventory.Decorator.Revision"); 406ac6a4445SGunnar Mills } 407ac6a4445SGunnar Mills 4088d1b46d7Szhanghch05 inline void getAcceleratorDataByService( 4098d1b46d7Szhanghch05 std::shared_ptr<bmcweb::AsyncResp> aResp, const std::string& acclrtrId, 4108d1b46d7Szhanghch05 const std::string& service, const std::string& objPath) 411ac6a4445SGunnar Mills { 412ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG 413ac6a4445SGunnar Mills << "Get available system Accelerator resources by service."; 414ac6a4445SGunnar Mills crow::connections::systemBus->async_method_call( 415ac6a4445SGunnar Mills [acclrtrId, aResp{std::move(aResp)}]( 416ac6a4445SGunnar Mills const boost::system::error_code ec, 417ac6a4445SGunnar Mills const boost::container::flat_map< 418168e20c1SEd Tanous std::string, dbus::utility::DbusVariantType>& properties) { 419ac6a4445SGunnar Mills if (ec) 420ac6a4445SGunnar Mills { 421ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "DBUS response error"; 422ac6a4445SGunnar Mills messages::internalError(aResp->res); 423ac6a4445SGunnar Mills return; 424ac6a4445SGunnar Mills } 425ac6a4445SGunnar Mills aResp->res.jsonValue["Id"] = acclrtrId; 426ac6a4445SGunnar Mills aResp->res.jsonValue["Name"] = "Processor"; 427ac6a4445SGunnar Mills const bool* accPresent = nullptr; 428ac6a4445SGunnar Mills const bool* accFunctional = nullptr; 429ac6a4445SGunnar Mills 430ac6a4445SGunnar Mills for (const auto& property : properties) 431ac6a4445SGunnar Mills { 432ac6a4445SGunnar Mills if (property.first == "Functional") 433ac6a4445SGunnar Mills { 434ac6a4445SGunnar Mills accFunctional = std::get_if<bool>(&property.second); 435ac6a4445SGunnar Mills } 436ac6a4445SGunnar Mills else if (property.first == "Present") 437ac6a4445SGunnar Mills { 438ac6a4445SGunnar Mills accPresent = std::get_if<bool>(&property.second); 439ac6a4445SGunnar Mills } 440ac6a4445SGunnar Mills } 441ac6a4445SGunnar Mills 442ac6a4445SGunnar Mills std::string state = "Enabled"; 443ac6a4445SGunnar Mills std::string health = "OK"; 444ac6a4445SGunnar Mills 445e05aec50SEd Tanous if (accPresent != nullptr && !*accPresent) 446ac6a4445SGunnar Mills { 447ac6a4445SGunnar Mills state = "Absent"; 448ac6a4445SGunnar Mills } 449ac6a4445SGunnar Mills 450e05aec50SEd Tanous if ((accFunctional != nullptr) && !*accFunctional) 451ac6a4445SGunnar Mills { 452ac6a4445SGunnar Mills if (state == "Enabled") 453ac6a4445SGunnar Mills { 454ac6a4445SGunnar Mills health = "Critical"; 455ac6a4445SGunnar Mills } 456ac6a4445SGunnar Mills } 457ac6a4445SGunnar Mills 458ac6a4445SGunnar Mills aResp->res.jsonValue["Status"]["State"] = state; 459ac6a4445SGunnar Mills aResp->res.jsonValue["Status"]["Health"] = health; 460ac6a4445SGunnar Mills aResp->res.jsonValue["ProcessorType"] = "Accelerator"; 461ac6a4445SGunnar Mills }, 462ac6a4445SGunnar Mills service, objPath, "org.freedesktop.DBus.Properties", "GetAll", ""); 463ac6a4445SGunnar Mills } 464ac6a4445SGunnar Mills 465dba0c291SJonathan Doman // OperatingConfig D-Bus Types 466dba0c291SJonathan Doman using TurboProfileProperty = std::vector<std::tuple<uint32_t, size_t>>; 467dba0c291SJonathan Doman using BaseSpeedPrioritySettingsProperty = 468dba0c291SJonathan Doman std::vector<std::tuple<uint32_t, std::vector<uint32_t>>>; 469dba0c291SJonathan Doman // uint32_t and size_t may or may not be the same type, requiring a dedup'd 470dba0c291SJonathan Doman // variant 471168e20c1SEd Tanous using OperatingConfigProperties = 472168e20c1SEd Tanous std::vector<std::pair<std::string, dbus::utility::DbusVariantType>>; 473dba0c291SJonathan Doman 474dba0c291SJonathan Doman /** 475dba0c291SJonathan Doman * Fill out the HighSpeedCoreIDs in a Processor resource from the given 476dba0c291SJonathan Doman * OperatingConfig D-Bus property. 477dba0c291SJonathan Doman * 478dba0c291SJonathan Doman * @param[in,out] aResp Async HTTP response. 479dba0c291SJonathan Doman * @param[in] baseSpeedSettings Full list of base speed priority groups, 480dba0c291SJonathan Doman * to use to determine the list of high 481dba0c291SJonathan Doman * speed cores. 482dba0c291SJonathan Doman */ 483dba0c291SJonathan Doman inline void highSpeedCoreIdsHandler( 4848d1b46d7Szhanghch05 const std::shared_ptr<bmcweb::AsyncResp>& aResp, 485dba0c291SJonathan Doman const BaseSpeedPrioritySettingsProperty& baseSpeedSettings) 486dba0c291SJonathan Doman { 487dba0c291SJonathan Doman // The D-Bus property does not indicate which bucket is the "high 488dba0c291SJonathan Doman // priority" group, so let's discern that by looking for the one with 489dba0c291SJonathan Doman // highest base frequency. 490dba0c291SJonathan Doman auto highPriorityGroup = baseSpeedSettings.cend(); 491dba0c291SJonathan Doman uint32_t highestBaseSpeed = 0; 492dba0c291SJonathan Doman for (auto it = baseSpeedSettings.cbegin(); it != baseSpeedSettings.cend(); 493dba0c291SJonathan Doman ++it) 494dba0c291SJonathan Doman { 495dba0c291SJonathan Doman const uint32_t baseFreq = std::get<uint32_t>(*it); 496dba0c291SJonathan Doman if (baseFreq > highestBaseSpeed) 497dba0c291SJonathan Doman { 498dba0c291SJonathan Doman highestBaseSpeed = baseFreq; 499dba0c291SJonathan Doman highPriorityGroup = it; 500dba0c291SJonathan Doman } 501dba0c291SJonathan Doman } 502dba0c291SJonathan Doman 503dba0c291SJonathan Doman nlohmann::json& jsonCoreIds = aResp->res.jsonValue["HighSpeedCoreIDs"]; 504dba0c291SJonathan Doman jsonCoreIds = nlohmann::json::array(); 505dba0c291SJonathan Doman 506dba0c291SJonathan Doman // There may not be any entries in the D-Bus property, so only populate 507dba0c291SJonathan Doman // if there was actually something there. 508dba0c291SJonathan Doman if (highPriorityGroup != baseSpeedSettings.cend()) 509dba0c291SJonathan Doman { 510dba0c291SJonathan Doman jsonCoreIds = std::get<std::vector<uint32_t>>(*highPriorityGroup); 511dba0c291SJonathan Doman } 512dba0c291SJonathan Doman } 513dba0c291SJonathan Doman 514dba0c291SJonathan Doman /** 515dba0c291SJonathan Doman * Fill out OperatingConfig related items in a Processor resource by requesting 516dba0c291SJonathan Doman * data from the given D-Bus object. 517dba0c291SJonathan Doman * 518dba0c291SJonathan Doman * @param[in,out] aResp Async HTTP response. 519dba0c291SJonathan Doman * @param[in] cpuId CPU D-Bus name. 520dba0c291SJonathan Doman * @param[in] service D-Bus service to query. 521dba0c291SJonathan Doman * @param[in] objPath D-Bus object to query. 522dba0c291SJonathan Doman */ 5238d1b46d7Szhanghch05 inline void getCpuConfigData(const std::shared_ptr<bmcweb::AsyncResp>& aResp, 524dba0c291SJonathan Doman const std::string& cpuId, 525dba0c291SJonathan Doman const std::string& service, 526dba0c291SJonathan Doman const std::string& objPath) 527dba0c291SJonathan Doman { 528dba0c291SJonathan Doman BMCWEB_LOG_INFO << "Getting CPU operating configs for " << cpuId; 529dba0c291SJonathan Doman 530dba0c291SJonathan Doman // First, GetAll CurrentOperatingConfig properties on the object 531dba0c291SJonathan Doman crow::connections::systemBus->async_method_call( 532dba0c291SJonathan Doman [aResp, cpuId, service]( 533dba0c291SJonathan Doman const boost::system::error_code ec, 534168e20c1SEd Tanous const std::vector<std::pair< 535168e20c1SEd Tanous std::string, dbus::utility::DbusVariantType>>& properties) { 536dba0c291SJonathan Doman if (ec) 537dba0c291SJonathan Doman { 538dba0c291SJonathan Doman BMCWEB_LOG_WARNING << "D-Bus error: " << ec << ", " 539dba0c291SJonathan Doman << ec.message(); 540dba0c291SJonathan Doman messages::internalError(aResp->res); 541dba0c291SJonathan Doman return; 542dba0c291SJonathan Doman } 543dba0c291SJonathan Doman 544dba0c291SJonathan Doman nlohmann::json& json = aResp->res.jsonValue; 545dba0c291SJonathan Doman 546dba0c291SJonathan Doman for (const auto& [dbusPropName, variantVal] : properties) 547dba0c291SJonathan Doman { 548dba0c291SJonathan Doman if (dbusPropName == "AppliedConfig") 549dba0c291SJonathan Doman { 550dba0c291SJonathan Doman const sdbusplus::message::object_path* dbusPathWrapper = 551dba0c291SJonathan Doman std::get_if<sdbusplus::message::object_path>( 552dba0c291SJonathan Doman &variantVal); 553dba0c291SJonathan Doman if (dbusPathWrapper == nullptr) 554dba0c291SJonathan Doman { 555dba0c291SJonathan Doman continue; 556dba0c291SJonathan Doman } 557dba0c291SJonathan Doman 558dba0c291SJonathan Doman const std::string& dbusPath = dbusPathWrapper->str; 559dba0c291SJonathan Doman std::string uri = "/redfish/v1/Systems/system/Processors/" + 560dba0c291SJonathan Doman cpuId + "/OperatingConfigs"; 561dba0c291SJonathan Doman json["OperatingConfigs"] = {{"@odata.id", uri}}; 562dba0c291SJonathan Doman 563dba0c291SJonathan Doman // Reuse the D-Bus config object name for the Redfish 564dba0c291SJonathan Doman // URI 565dba0c291SJonathan Doman size_t baseNamePos = dbusPath.rfind('/'); 566dba0c291SJonathan Doman if (baseNamePos == std::string::npos || 567dba0c291SJonathan Doman baseNamePos == (dbusPath.size() - 1)) 568dba0c291SJonathan Doman { 569dba0c291SJonathan Doman // If the AppliedConfig was somehow not a valid path, 570dba0c291SJonathan Doman // skip adding any more properties, since everything 571dba0c291SJonathan Doman // else is tied to this applied config. 572dba0c291SJonathan Doman messages::internalError(aResp->res); 573dba0c291SJonathan Doman break; 574dba0c291SJonathan Doman } 575dba0c291SJonathan Doman uri += '/'; 576dba0c291SJonathan Doman uri += dbusPath.substr(baseNamePos + 1); 577dba0c291SJonathan Doman json["AppliedOperatingConfig"] = {{"@odata.id", uri}}; 578dba0c291SJonathan Doman 579dba0c291SJonathan Doman // Once we found the current applied config, queue another 580dba0c291SJonathan Doman // request to read the base freq core ids out of that 581dba0c291SJonathan Doman // config. 5821e1e598dSJonathan Doman sdbusplus::asio::getProperty< 5831e1e598dSJonathan Doman BaseSpeedPrioritySettingsProperty>( 5841e1e598dSJonathan Doman *crow::connections::systemBus, service, dbusPath, 5851e1e598dSJonathan Doman "xyz.openbmc_project.Inventory.Item.Cpu." 5861e1e598dSJonathan Doman "OperatingConfig", 5871e1e598dSJonathan Doman "BaseSpeedPrioritySettings", 5881e1e598dSJonathan Doman [aResp](const boost::system::error_code ec, 5891e1e598dSJonathan Doman const BaseSpeedPrioritySettingsProperty& 5901e1e598dSJonathan Doman baseSpeedList) { 591dba0c291SJonathan Doman if (ec) 592dba0c291SJonathan Doman { 593dba0c291SJonathan Doman BMCWEB_LOG_WARNING 594dba0c291SJonathan Doman << "D-Bus Property Get error: " << ec; 595dba0c291SJonathan Doman messages::internalError(aResp->res); 596dba0c291SJonathan Doman return; 597dba0c291SJonathan Doman } 5981e1e598dSJonathan Doman 5991e1e598dSJonathan Doman highSpeedCoreIdsHandler(aResp, baseSpeedList); 6001e1e598dSJonathan Doman }); 601dba0c291SJonathan Doman } 602dba0c291SJonathan Doman else if (dbusPropName == "BaseSpeedPriorityEnabled") 603dba0c291SJonathan Doman { 604dba0c291SJonathan Doman const bool* state = std::get_if<bool>(&variantVal); 605dba0c291SJonathan Doman if (state != nullptr) 606dba0c291SJonathan Doman { 607dba0c291SJonathan Doman json["BaseSpeedPriorityState"] = 608dba0c291SJonathan Doman *state ? "Enabled" : "Disabled"; 609dba0c291SJonathan Doman } 610dba0c291SJonathan Doman } 611dba0c291SJonathan Doman } 612dba0c291SJonathan Doman }, 613dba0c291SJonathan Doman service, objPath, "org.freedesktop.DBus.Properties", "GetAll", 614dba0c291SJonathan Doman "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig"); 615dba0c291SJonathan Doman } 616dba0c291SJonathan Doman 617cba4f448SSunnySrivastava1984 /** 618cba4f448SSunnySrivastava1984 * @brief Fill out location info of a processor by 619cba4f448SSunnySrivastava1984 * requesting data from the given D-Bus object. 620cba4f448SSunnySrivastava1984 * 621cba4f448SSunnySrivastava1984 * @param[in,out] aResp Async HTTP response. 622cba4f448SSunnySrivastava1984 * @param[in] service D-Bus service to query. 623cba4f448SSunnySrivastava1984 * @param[in] objPath D-Bus object to query. 624cba4f448SSunnySrivastava1984 */ 6258d1b46d7Szhanghch05 inline void getCpuLocationCode(std::shared_ptr<bmcweb::AsyncResp> aResp, 626cba4f448SSunnySrivastava1984 const std::string& service, 627cba4f448SSunnySrivastava1984 const std::string& objPath) 628cba4f448SSunnySrivastava1984 { 629cba4f448SSunnySrivastava1984 BMCWEB_LOG_DEBUG << "Get Cpu Location Data"; 6301e1e598dSJonathan Doman sdbusplus::asio::getProperty<std::string>( 6311e1e598dSJonathan Doman *crow::connections::systemBus, service, objPath, 6321e1e598dSJonathan Doman "xyz.openbmc_project.Inventory.Decorator.LocationCode", "LocationCode", 6331e1e598dSJonathan Doman [objPath, aResp{std::move(aResp)}](const boost::system::error_code ec, 6341e1e598dSJonathan Doman const std::string& property) { 635cba4f448SSunnySrivastava1984 if (ec) 636cba4f448SSunnySrivastava1984 { 637cba4f448SSunnySrivastava1984 BMCWEB_LOG_DEBUG << "DBUS response error"; 638cba4f448SSunnySrivastava1984 messages::internalError(aResp->res); 639cba4f448SSunnySrivastava1984 return; 640cba4f448SSunnySrivastava1984 } 641cba4f448SSunnySrivastava1984 642cba4f448SSunnySrivastava1984 aResp->res.jsonValue["Location"]["PartLocation"]["ServiceLabel"] = 6431e1e598dSJonathan Doman property; 6441e1e598dSJonathan Doman }); 645cba4f448SSunnySrivastava1984 } 646cba4f448SSunnySrivastava1984 647c951448aSJonathan Doman /** 64849e429caSJonathan Doman * Populate the unique identifier in a Processor resource by requesting data 64949e429caSJonathan Doman * from the given D-Bus object. 65049e429caSJonathan Doman * 65149e429caSJonathan Doman * @param[in,out] aResp Async HTTP response. 65249e429caSJonathan Doman * @param[in] service D-Bus service to query. 65349e429caSJonathan Doman * @param[in] objPath D-Bus object to query. 65449e429caSJonathan Doman */ 65549e429caSJonathan Doman inline void getCpuUniqueId(const std::shared_ptr<bmcweb::AsyncResp>& aResp, 65649e429caSJonathan Doman const std::string& service, 65749e429caSJonathan Doman const std::string& objectPath) 65849e429caSJonathan Doman { 65949e429caSJonathan Doman BMCWEB_LOG_DEBUG << "Get CPU UniqueIdentifier"; 6601e1e598dSJonathan Doman sdbusplus::asio::getProperty<std::string>( 6611e1e598dSJonathan Doman *crow::connections::systemBus, service, objectPath, 6621e1e598dSJonathan Doman "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier", 6631e1e598dSJonathan Doman "UniqueIdentifier", 6641e1e598dSJonathan Doman [aResp](boost::system::error_code ec, const std::string& id) { 6651e1e598dSJonathan Doman if (ec) 66649e429caSJonathan Doman { 66749e429caSJonathan Doman BMCWEB_LOG_ERROR << "Failed to read cpu unique id: " << ec; 66849e429caSJonathan Doman messages::internalError(aResp->res); 66949e429caSJonathan Doman return; 67049e429caSJonathan Doman } 67149e429caSJonathan Doman aResp->res 6721e1e598dSJonathan Doman .jsonValue["ProcessorId"]["ProtectedIdentificationNumber"] = id; 6731e1e598dSJonathan Doman }); 67449e429caSJonathan Doman } 67549e429caSJonathan Doman 67649e429caSJonathan Doman /** 677c951448aSJonathan Doman * Find the D-Bus object representing the requested Processor, and call the 678c951448aSJonathan Doman * handler with the results. If matching object is not found, add 404 error to 679c951448aSJonathan Doman * response and don't call the handler. 680c951448aSJonathan Doman * 681c951448aSJonathan Doman * @param[in,out] resp Async HTTP response. 682c951448aSJonathan Doman * @param[in] processorId Redfish Processor Id. 683c951448aSJonathan Doman * @param[in] handler Callback to continue processing request upon 684c951448aSJonathan Doman * successfully finding object. 685c951448aSJonathan Doman */ 686c951448aSJonathan Doman template <typename Handler> 6878d1b46d7Szhanghch05 inline void getProcessorObject(const std::shared_ptr<bmcweb::AsyncResp>& resp, 688c951448aSJonathan Doman const std::string& processorId, 689c951448aSJonathan Doman Handler&& handler) 690ac6a4445SGunnar Mills { 691ac6a4445SGunnar Mills BMCWEB_LOG_DEBUG << "Get available system processor resources."; 692ac6a4445SGunnar Mills 693c951448aSJonathan Doman // GetSubTree on all interfaces which provide info about a Processor 694ac6a4445SGunnar Mills crow::connections::systemBus->async_method_call( 695c951448aSJonathan Doman [resp, processorId, handler = std::forward<Handler>(handler)]( 696c951448aSJonathan Doman boost::system::error_code ec, 6975df6eda2SShantappa Teekappanavar const dbus::utility::MapperGetSubTreeResponse& subtree) mutable { 698ac6a4445SGunnar Mills if (ec) 699ac6a4445SGunnar Mills { 700c951448aSJonathan Doman BMCWEB_LOG_DEBUG << "DBUS response error: " << ec; 701c951448aSJonathan Doman messages::internalError(resp->res); 702ac6a4445SGunnar Mills return; 703ac6a4445SGunnar Mills } 7042bab9831SJonathan Doman for (const auto& [objectPath, serviceMap] : subtree) 705ac6a4445SGunnar Mills { 7062bab9831SJonathan Doman // Ignore any objects which don't end with our desired cpu name 7072bab9831SJonathan Doman if (!boost::ends_with(objectPath, processorId)) 708ac6a4445SGunnar Mills { 7092bab9831SJonathan Doman continue; 710ac6a4445SGunnar Mills } 7112bab9831SJonathan Doman 712c951448aSJonathan Doman bool found = false; 713c951448aSJonathan Doman // Filter out objects that don't have the CPU-specific 714c951448aSJonathan Doman // interfaces to make sure we can return 404 on non-CPUs 715c951448aSJonathan Doman // (e.g. /redfish/../Processors/dimm0) 7162bab9831SJonathan Doman for (const auto& [serviceName, interfaceList] : serviceMap) 717ac6a4445SGunnar Mills { 718c951448aSJonathan Doman if (std::find_first_of( 719c951448aSJonathan Doman interfaceList.begin(), interfaceList.end(), 720c951448aSJonathan Doman processorInterfaces.begin(), 721c951448aSJonathan Doman processorInterfaces.end()) != interfaceList.end()) 7222bab9831SJonathan Doman { 723c951448aSJonathan Doman found = true; 724c951448aSJonathan Doman break; 725c951448aSJonathan Doman } 726c951448aSJonathan Doman } 727c951448aSJonathan Doman 728c951448aSJonathan Doman if (!found) 7292bab9831SJonathan Doman { 730c951448aSJonathan Doman continue; 731ac6a4445SGunnar Mills } 732c951448aSJonathan Doman 733c951448aSJonathan Doman // Process the first object which does match our cpu name and 734c951448aSJonathan Doman // required interfaces, and potentially ignore any other 735c951448aSJonathan Doman // matching objects. Assume all interfaces we want to process 736c951448aSJonathan Doman // must be on the same object path. 737c951448aSJonathan Doman 738c951448aSJonathan Doman handler(resp, processorId, objectPath, serviceMap); 739ac6a4445SGunnar Mills return; 740ac6a4445SGunnar Mills } 741c951448aSJonathan Doman messages::resourceNotFound(resp->res, "Processor", processorId); 742ac6a4445SGunnar Mills }, 743ac6a4445SGunnar Mills "xyz.openbmc_project.ObjectMapper", 744ac6a4445SGunnar Mills "/xyz/openbmc_project/object_mapper", 745ac6a4445SGunnar Mills "xyz.openbmc_project.ObjectMapper", "GetSubTree", 7462bab9831SJonathan Doman "/xyz/openbmc_project/inventory", 0, 74749e429caSJonathan Doman std::array<const char*, 8>{ 74871b82f26SSharad Yadav "xyz.openbmc_project.Common.UUID", 7492bab9831SJonathan Doman "xyz.openbmc_project.Inventory.Decorator.Asset", 7502bab9831SJonathan Doman "xyz.openbmc_project.Inventory.Decorator.Revision", 7512bab9831SJonathan Doman "xyz.openbmc_project.Inventory.Item.Cpu", 752cba4f448SSunnySrivastava1984 "xyz.openbmc_project.Inventory.Decorator.LocationCode", 753dba0c291SJonathan Doman "xyz.openbmc_project.Inventory.Item.Accelerator", 75449e429caSJonathan Doman "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig", 75549e429caSJonathan Doman "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier"}); 756ac6a4445SGunnar Mills } 757ac6a4445SGunnar Mills 7588d1b46d7Szhanghch05 inline void getProcessorData(const std::shared_ptr<bmcweb::AsyncResp>& aResp, 759c951448aSJonathan Doman const std::string& processorId, 760c951448aSJonathan Doman const std::string& objectPath, 7615df6eda2SShantappa Teekappanavar const dbus::utility::MapperServiceMap& serviceMap) 762c951448aSJonathan Doman { 763c951448aSJonathan Doman for (const auto& [serviceName, interfaceList] : serviceMap) 764c951448aSJonathan Doman { 765c951448aSJonathan Doman for (const auto& interface : interfaceList) 766c951448aSJonathan Doman { 767c951448aSJonathan Doman if (interface == "xyz.openbmc_project.Inventory.Decorator.Asset") 768c951448aSJonathan Doman { 769c951448aSJonathan Doman getCpuAssetData(aResp, serviceName, objectPath); 770c951448aSJonathan Doman } 7710fda0f12SGeorge Liu else if (interface == 7720fda0f12SGeorge Liu "xyz.openbmc_project.Inventory.Decorator.Revision") 773c951448aSJonathan Doman { 774c951448aSJonathan Doman getCpuRevisionData(aResp, serviceName, objectPath); 775c951448aSJonathan Doman } 776c951448aSJonathan Doman else if (interface == "xyz.openbmc_project.Inventory.Item.Cpu") 777c951448aSJonathan Doman { 778c951448aSJonathan Doman getCpuDataByService(aResp, processorId, serviceName, 779c951448aSJonathan Doman objectPath); 780c951448aSJonathan Doman } 7810fda0f12SGeorge Liu else if (interface == 7820fda0f12SGeorge Liu "xyz.openbmc_project.Inventory.Item.Accelerator") 783c951448aSJonathan Doman { 784c951448aSJonathan Doman getAcceleratorDataByService(aResp, processorId, serviceName, 785c951448aSJonathan Doman objectPath); 786c951448aSJonathan Doman } 7870fda0f12SGeorge Liu else if ( 7880fda0f12SGeorge Liu interface == 7890fda0f12SGeorge Liu "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig") 790c951448aSJonathan Doman { 791c951448aSJonathan Doman getCpuConfigData(aResp, processorId, serviceName, objectPath); 792c951448aSJonathan Doman } 7930fda0f12SGeorge Liu else if (interface == 7940fda0f12SGeorge Liu "xyz.openbmc_project.Inventory.Decorator.LocationCode") 795c951448aSJonathan Doman { 796c951448aSJonathan Doman getCpuLocationCode(aResp, serviceName, objectPath); 797c951448aSJonathan Doman } 79871b82f26SSharad Yadav else if (interface == "xyz.openbmc_project.Common.UUID") 79971b82f26SSharad Yadav { 80071b82f26SSharad Yadav getProcessorUUID(aResp, serviceName, objectPath); 80171b82f26SSharad Yadav } 8020fda0f12SGeorge Liu else if (interface == 8030fda0f12SGeorge Liu "xyz.openbmc_project.Inventory.Decorator.UniqueIdentifier") 80449e429caSJonathan Doman { 80549e429caSJonathan Doman getCpuUniqueId(aResp, serviceName, objectPath); 80649e429caSJonathan Doman } 807c951448aSJonathan Doman } 808c951448aSJonathan Doman } 809c951448aSJonathan Doman } 810c951448aSJonathan Doman 811dba0c291SJonathan Doman /** 812dba0c291SJonathan Doman * Request all the properties for the given D-Bus object and fill out the 813dba0c291SJonathan Doman * related entries in the Redfish OperatingConfig response. 814dba0c291SJonathan Doman * 815dba0c291SJonathan Doman * @param[in,out] aResp Async HTTP response. 816dba0c291SJonathan Doman * @param[in] service D-Bus service name to query. 817dba0c291SJonathan Doman * @param[in] objPath D-Bus object to query. 818dba0c291SJonathan Doman */ 8198d1b46d7Szhanghch05 inline void 8208d1b46d7Szhanghch05 getOperatingConfigData(const std::shared_ptr<bmcweb::AsyncResp>& aResp, 821dba0c291SJonathan Doman const std::string& service, 822dba0c291SJonathan Doman const std::string& objPath) 823dba0c291SJonathan Doman { 824dba0c291SJonathan Doman crow::connections::systemBus->async_method_call( 825914e2d5dSEd Tanous [aResp](const boost::system::error_code ec, 826dba0c291SJonathan Doman const OperatingConfigProperties& properties) { 827dba0c291SJonathan Doman if (ec) 828dba0c291SJonathan Doman { 829dba0c291SJonathan Doman BMCWEB_LOG_WARNING << "D-Bus error: " << ec << ", " 830dba0c291SJonathan Doman << ec.message(); 831dba0c291SJonathan Doman messages::internalError(aResp->res); 832dba0c291SJonathan Doman return; 833dba0c291SJonathan Doman } 834dba0c291SJonathan Doman 835dba0c291SJonathan Doman nlohmann::json& json = aResp->res.jsonValue; 836dba0c291SJonathan Doman for (const auto& [key, variant] : properties) 837dba0c291SJonathan Doman { 838dba0c291SJonathan Doman if (key == "AvailableCoreCount") 839dba0c291SJonathan Doman { 840dba0c291SJonathan Doman const size_t* cores = std::get_if<size_t>(&variant); 841dba0c291SJonathan Doman if (cores != nullptr) 842dba0c291SJonathan Doman { 843dba0c291SJonathan Doman json["TotalAvailableCoreCount"] = *cores; 844dba0c291SJonathan Doman } 845dba0c291SJonathan Doman } 846dba0c291SJonathan Doman else if (key == "BaseSpeed") 847dba0c291SJonathan Doman { 848dba0c291SJonathan Doman const uint32_t* speed = std::get_if<uint32_t>(&variant); 849dba0c291SJonathan Doman if (speed != nullptr) 850dba0c291SJonathan Doman { 851dba0c291SJonathan Doman json["BaseSpeedMHz"] = *speed; 852dba0c291SJonathan Doman } 853dba0c291SJonathan Doman } 854dba0c291SJonathan Doman else if (key == "MaxJunctionTemperature") 855dba0c291SJonathan Doman { 856dba0c291SJonathan Doman const uint32_t* temp = std::get_if<uint32_t>(&variant); 857dba0c291SJonathan Doman if (temp != nullptr) 858dba0c291SJonathan Doman { 859dba0c291SJonathan Doman json["MaxJunctionTemperatureCelsius"] = *temp; 860dba0c291SJonathan Doman } 861dba0c291SJonathan Doman } 862dba0c291SJonathan Doman else if (key == "MaxSpeed") 863dba0c291SJonathan Doman { 864dba0c291SJonathan Doman const uint32_t* speed = std::get_if<uint32_t>(&variant); 865dba0c291SJonathan Doman if (speed != nullptr) 866dba0c291SJonathan Doman { 867dba0c291SJonathan Doman json["MaxSpeedMHz"] = *speed; 868dba0c291SJonathan Doman } 869dba0c291SJonathan Doman } 870dba0c291SJonathan Doman else if (key == "PowerLimit") 871dba0c291SJonathan Doman { 872dba0c291SJonathan Doman const uint32_t* tdp = std::get_if<uint32_t>(&variant); 873dba0c291SJonathan Doman if (tdp != nullptr) 874dba0c291SJonathan Doman { 875dba0c291SJonathan Doman json["TDPWatts"] = *tdp; 876dba0c291SJonathan Doman } 877dba0c291SJonathan Doman } 878dba0c291SJonathan Doman else if (key == "TurboProfile") 879dba0c291SJonathan Doman { 880dba0c291SJonathan Doman const auto* turboList = 881dba0c291SJonathan Doman std::get_if<TurboProfileProperty>(&variant); 882dba0c291SJonathan Doman if (turboList == nullptr) 883dba0c291SJonathan Doman { 884dba0c291SJonathan Doman continue; 885dba0c291SJonathan Doman } 886dba0c291SJonathan Doman 887dba0c291SJonathan Doman nlohmann::json& turboArray = json["TurboProfile"]; 888dba0c291SJonathan Doman turboArray = nlohmann::json::array(); 889dba0c291SJonathan Doman for (const auto& [turboSpeed, coreCount] : *turboList) 890dba0c291SJonathan Doman { 891dba0c291SJonathan Doman turboArray.push_back({{"ActiveCoreCount", coreCount}, 892dba0c291SJonathan Doman {"MaxSpeedMHz", turboSpeed}}); 893dba0c291SJonathan Doman } 894dba0c291SJonathan Doman } 895dba0c291SJonathan Doman else if (key == "BaseSpeedPrioritySettings") 896dba0c291SJonathan Doman { 897dba0c291SJonathan Doman const auto* baseSpeedList = 898dba0c291SJonathan Doman std::get_if<BaseSpeedPrioritySettingsProperty>( 899dba0c291SJonathan Doman &variant); 900dba0c291SJonathan Doman if (baseSpeedList == nullptr) 901dba0c291SJonathan Doman { 902dba0c291SJonathan Doman continue; 903dba0c291SJonathan Doman } 904dba0c291SJonathan Doman 905dba0c291SJonathan Doman nlohmann::json& baseSpeedArray = 906dba0c291SJonathan Doman json["BaseSpeedPrioritySettings"]; 907dba0c291SJonathan Doman baseSpeedArray = nlohmann::json::array(); 908dba0c291SJonathan Doman for (const auto& [baseSpeed, coreList] : *baseSpeedList) 909dba0c291SJonathan Doman { 910dba0c291SJonathan Doman baseSpeedArray.push_back( 911dba0c291SJonathan Doman {{"CoreCount", coreList.size()}, 912dba0c291SJonathan Doman {"CoreIDs", coreList}, 913dba0c291SJonathan Doman {"BaseSpeedMHz", baseSpeed}}); 914dba0c291SJonathan Doman } 915dba0c291SJonathan Doman } 916dba0c291SJonathan Doman } 917dba0c291SJonathan Doman }, 918dba0c291SJonathan Doman service, objPath, "org.freedesktop.DBus.Properties", "GetAll", 919dba0c291SJonathan Doman "xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig"); 920dba0c291SJonathan Doman } 921dba0c291SJonathan Doman 9223cde86f1SJonathan Doman /** 9233cde86f1SJonathan Doman * Handle the D-Bus response from attempting to set the CPU's AppliedConfig 9243cde86f1SJonathan Doman * property. Main task is to translate error messages into Redfish errors. 9253cde86f1SJonathan Doman * 9263cde86f1SJonathan Doman * @param[in,out] resp HTTP response. 9273cde86f1SJonathan Doman * @param[in] setPropVal Value which we attempted to set. 9283cde86f1SJonathan Doman * @param[in] ec D-Bus response error code. 9293cde86f1SJonathan Doman * @param[in] msg D-Bus response message. 9303cde86f1SJonathan Doman */ 9313cde86f1SJonathan Doman inline void 9323cde86f1SJonathan Doman handleAppliedConfigResponse(const std::shared_ptr<bmcweb::AsyncResp>& resp, 9333cde86f1SJonathan Doman const std::string& setPropVal, 9343cde86f1SJonathan Doman boost::system::error_code ec, 9353cde86f1SJonathan Doman const sdbusplus::message::message& msg) 9363cde86f1SJonathan Doman { 9373cde86f1SJonathan Doman if (!ec) 9383cde86f1SJonathan Doman { 9393cde86f1SJonathan Doman BMCWEB_LOG_DEBUG << "Set Property succeeded"; 9403cde86f1SJonathan Doman return; 9413cde86f1SJonathan Doman } 9423cde86f1SJonathan Doman 9433cde86f1SJonathan Doman BMCWEB_LOG_DEBUG << "Set Property failed: " << ec; 9443cde86f1SJonathan Doman 9453cde86f1SJonathan Doman const sd_bus_error* dbusError = msg.get_error(); 9463cde86f1SJonathan Doman if (dbusError == nullptr) 9473cde86f1SJonathan Doman { 9483cde86f1SJonathan Doman messages::internalError(resp->res); 9493cde86f1SJonathan Doman return; 9503cde86f1SJonathan Doman } 9513cde86f1SJonathan Doman 9523cde86f1SJonathan Doman // The asio error code doesn't know about our custom errors, so we have to 9533cde86f1SJonathan Doman // parse the error string. Some of these D-Bus -> Redfish translations are a 9543cde86f1SJonathan Doman // stretch, but it's good to try to communicate something vaguely useful. 9553cde86f1SJonathan Doman if (strcmp(dbusError->name, 9563cde86f1SJonathan Doman "xyz.openbmc_project.Common.Error.InvalidArgument") == 0) 9573cde86f1SJonathan Doman { 9583cde86f1SJonathan Doman // Service did not like the object_path we tried to set. 9593cde86f1SJonathan Doman messages::propertyValueIncorrect( 9603cde86f1SJonathan Doman resp->res, "AppliedOperatingConfig/@odata.id", setPropVal); 9613cde86f1SJonathan Doman } 9623cde86f1SJonathan Doman else if (strcmp(dbusError->name, 9633cde86f1SJonathan Doman "xyz.openbmc_project.Common.Error.NotAllowed") == 0) 9643cde86f1SJonathan Doman { 9653cde86f1SJonathan Doman // Service indicates we can never change the config for this processor. 9663cde86f1SJonathan Doman messages::propertyNotWritable(resp->res, "AppliedOperatingConfig"); 9673cde86f1SJonathan Doman } 9683cde86f1SJonathan Doman else if (strcmp(dbusError->name, 9693cde86f1SJonathan Doman "xyz.openbmc_project.Common.Error.Unavailable") == 0) 9703cde86f1SJonathan Doman { 9713cde86f1SJonathan Doman // Service indicates the config cannot be changed right now, but maybe 9723cde86f1SJonathan Doman // in a different system state. 9733cde86f1SJonathan Doman messages::resourceInStandby(resp->res); 9743cde86f1SJonathan Doman } 9753cde86f1SJonathan Doman else if (strcmp(dbusError->name, 9763cde86f1SJonathan Doman "xyz.openbmc_project.Common.Device.Error.WriteFailure") == 9773cde86f1SJonathan Doman 0) 9783cde86f1SJonathan Doman { 9793cde86f1SJonathan Doman // Service tried to change the config, but it failed. 9803cde86f1SJonathan Doman messages::operationFailed(resp->res); 9813cde86f1SJonathan Doman } 9823cde86f1SJonathan Doman else 9833cde86f1SJonathan Doman { 9843cde86f1SJonathan Doman messages::internalError(resp->res); 9853cde86f1SJonathan Doman } 9863cde86f1SJonathan Doman } 9873cde86f1SJonathan Doman 9883cde86f1SJonathan Doman /** 9893cde86f1SJonathan Doman * Handle the PATCH operation of the AppliedOperatingConfig property. Do basic 9903cde86f1SJonathan Doman * validation of the input data, and then set the D-Bus property. 9913cde86f1SJonathan Doman * 9923cde86f1SJonathan Doman * @param[in,out] resp Async HTTP response. 9933cde86f1SJonathan Doman * @param[in] processorId Processor's Id. 9943cde86f1SJonathan Doman * @param[in] appliedConfigUri New property value to apply. 9953cde86f1SJonathan Doman * @param[in] cpuObjectPath Path of CPU object to modify. 9963cde86f1SJonathan Doman * @param[in] serviceMap Service map for CPU object. 9973cde86f1SJonathan Doman */ 9983cde86f1SJonathan Doman inline void patchAppliedOperatingConfig( 9993cde86f1SJonathan Doman const std::shared_ptr<bmcweb::AsyncResp>& resp, 10003cde86f1SJonathan Doman const std::string& processorId, const std::string& appliedConfigUri, 10015df6eda2SShantappa Teekappanavar const std::string& cpuObjectPath, 10025df6eda2SShantappa Teekappanavar const dbus::utility::MapperServiceMap& serviceMap) 10033cde86f1SJonathan Doman { 10043cde86f1SJonathan Doman // Check that the property even exists by checking for the interface 10053cde86f1SJonathan Doman const std::string* controlService = nullptr; 10063cde86f1SJonathan Doman for (const auto& [serviceName, interfaceList] : serviceMap) 10073cde86f1SJonathan Doman { 10083cde86f1SJonathan Doman if (std::find(interfaceList.begin(), interfaceList.end(), 10093cde86f1SJonathan Doman "xyz.openbmc_project.Control.Processor." 10103cde86f1SJonathan Doman "CurrentOperatingConfig") != interfaceList.end()) 10113cde86f1SJonathan Doman { 10123cde86f1SJonathan Doman controlService = &serviceName; 10133cde86f1SJonathan Doman break; 10143cde86f1SJonathan Doman } 10153cde86f1SJonathan Doman } 10163cde86f1SJonathan Doman 10173cde86f1SJonathan Doman if (controlService == nullptr) 10183cde86f1SJonathan Doman { 10193cde86f1SJonathan Doman messages::internalError(resp->res); 10203cde86f1SJonathan Doman return; 10213cde86f1SJonathan Doman } 10223cde86f1SJonathan Doman 10233cde86f1SJonathan Doman // Check that the config URI is a child of the cpu URI being patched. 10243cde86f1SJonathan Doman std::string expectedPrefix("/redfish/v1/Systems/system/Processors/"); 10253cde86f1SJonathan Doman expectedPrefix += processorId; 10263cde86f1SJonathan Doman expectedPrefix += "/OperatingConfigs/"; 10273cde86f1SJonathan Doman if (!boost::starts_with(appliedConfigUri, expectedPrefix) || 10283cde86f1SJonathan Doman expectedPrefix.size() == appliedConfigUri.size()) 10293cde86f1SJonathan Doman { 10303cde86f1SJonathan Doman messages::propertyValueIncorrect( 10313cde86f1SJonathan Doman resp->res, "AppliedOperatingConfig/@odata.id", appliedConfigUri); 10323cde86f1SJonathan Doman return; 10333cde86f1SJonathan Doman } 10343cde86f1SJonathan Doman 10353cde86f1SJonathan Doman // Generate the D-Bus path of the OperatingConfig object, by assuming it's a 10363cde86f1SJonathan Doman // direct child of the CPU object. 10373cde86f1SJonathan Doman // Strip the expectedPrefix from the config URI to get the "filename", and 10383cde86f1SJonathan Doman // append to the CPU's path. 10393cde86f1SJonathan Doman std::string configBaseName = appliedConfigUri.substr(expectedPrefix.size()); 10403cde86f1SJonathan Doman sdbusplus::message::object_path configPath(cpuObjectPath); 10413cde86f1SJonathan Doman configPath /= configBaseName; 10423cde86f1SJonathan Doman 10433cde86f1SJonathan Doman BMCWEB_LOG_INFO << "Setting config to " << configPath.str; 10443cde86f1SJonathan Doman 10453cde86f1SJonathan Doman // Set the property, with handler to check error responses 10463cde86f1SJonathan Doman crow::connections::systemBus->async_method_call( 1047914e2d5dSEd Tanous [resp, appliedConfigUri](const boost::system::error_code ec, 1048914e2d5dSEd Tanous const sdbusplus::message::message& msg) { 10493cde86f1SJonathan Doman handleAppliedConfigResponse(resp, appliedConfigUri, ec, msg); 10503cde86f1SJonathan Doman }, 10513cde86f1SJonathan Doman *controlService, cpuObjectPath, "org.freedesktop.DBus.Properties", 10523cde86f1SJonathan Doman "Set", "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig", 1053168e20c1SEd Tanous "AppliedConfig", dbus::utility::DbusVariantType(std::move(configPath))); 10543cde86f1SJonathan Doman } 10553cde86f1SJonathan Doman 10567e860f15SJohn Edward Broadbent inline void requestRoutesOperatingConfigCollection(App& app) 1057dba0c291SJonathan Doman { 1058dba0c291SJonathan Doman 10597e860f15SJohn Edward Broadbent BMCWEB_ROUTE( 10607e860f15SJohn Edward Broadbent app, "/redfish/v1/Systems/system/Processors/<str>/OperatingConfigs/") 1061ed398213SEd Tanous .privileges(redfish::privileges::getOperatingConfigCollection) 10620fda0f12SGeorge Liu .methods( 10630fda0f12SGeorge Liu boost::beast::http::verb::get)([](const crow::Request& req, 10640fda0f12SGeorge Liu const std::shared_ptr< 10650fda0f12SGeorge Liu bmcweb::AsyncResp>& asyncResp, 10667e860f15SJohn Edward Broadbent const std::string& cpuName) { 10678d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.type"] = 1068dba0c291SJonathan Doman "#OperatingConfigCollection.OperatingConfigCollection"; 10698d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.id"] = req.url; 10700fda0f12SGeorge Liu asyncResp->res.jsonValue["Name"] = "Operating Config Collection"; 1071dba0c291SJonathan Doman 10727e860f15SJohn Edward Broadbent // First find the matching CPU object so we know how to 10737e860f15SJohn Edward Broadbent // constrain our search for related Config objects. 1074dba0c291SJonathan Doman crow::connections::systemBus->async_method_call( 10750fda0f12SGeorge Liu [asyncResp, cpuName](const boost::system::error_code ec, 1076dba0c291SJonathan Doman const std::vector<std::string>& objects) { 1077dba0c291SJonathan Doman if (ec) 1078dba0c291SJonathan Doman { 1079dba0c291SJonathan Doman BMCWEB_LOG_WARNING << "D-Bus error: " << ec << ", " 1080dba0c291SJonathan Doman << ec.message(); 1081dba0c291SJonathan Doman messages::internalError(asyncResp->res); 1082dba0c291SJonathan Doman return; 1083dba0c291SJonathan Doman } 1084dba0c291SJonathan Doman 1085dba0c291SJonathan Doman for (const std::string& object : objects) 1086dba0c291SJonathan Doman { 1087dba0c291SJonathan Doman if (!boost::ends_with(object, cpuName)) 1088dba0c291SJonathan Doman { 1089dba0c291SJonathan Doman continue; 1090dba0c291SJonathan Doman } 1091dba0c291SJonathan Doman 10927e860f15SJohn Edward Broadbent // Not expected that there will be multiple matching 10937e860f15SJohn Edward Broadbent // CPU objects, but if there are just use the first 10947e860f15SJohn Edward Broadbent // one. 1095dba0c291SJonathan Doman 10967e860f15SJohn Edward Broadbent // Use the common search routine to construct the 10977e860f15SJohn Edward Broadbent // Collection of all Config objects under this CPU. 1098dba0c291SJonathan Doman collection_util::getCollectionMembers( 1099dba0c291SJonathan Doman asyncResp, 11000fda0f12SGeorge Liu "/redfish/v1/Systems/system/Processors/" + cpuName + 11010fda0f12SGeorge Liu "/OperatingConfigs", 11020fda0f12SGeorge Liu {"xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig"}, 1103dba0c291SJonathan Doman object.c_str()); 1104dba0c291SJonathan Doman return; 1105dba0c291SJonathan Doman } 1106dba0c291SJonathan Doman }, 1107dba0c291SJonathan Doman "xyz.openbmc_project.ObjectMapper", 1108dba0c291SJonathan Doman "/xyz/openbmc_project/object_mapper", 1109dba0c291SJonathan Doman "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", 1110dba0c291SJonathan Doman "/xyz/openbmc_project/inventory", 0, 11117e860f15SJohn Edward Broadbent std::array<const char*, 1>{ 11120fda0f12SGeorge Liu "xyz.openbmc_project.Control.Processor.CurrentOperatingConfig"}); 11137e860f15SJohn Edward Broadbent }); 1114dba0c291SJonathan Doman } 1115dba0c291SJonathan Doman 11167e860f15SJohn Edward Broadbent inline void requestRoutesOperatingConfig(App& app) 1117dba0c291SJonathan Doman { 11187e860f15SJohn Edward Broadbent BMCWEB_ROUTE( 11197e860f15SJohn Edward Broadbent app, 11207e860f15SJohn Edward Broadbent "/redfish/v1/Systems/system/Processors/<str>/OperatingConfigs/<str>/") 1121ed398213SEd Tanous .privileges(redfish::privileges::getOperatingConfig) 11227e860f15SJohn Edward Broadbent .methods( 11237e860f15SJohn Edward Broadbent boost::beast::http::verb::get)([](const crow::Request& req, 11247e860f15SJohn Edward Broadbent const std::shared_ptr< 11257e860f15SJohn Edward Broadbent bmcweb::AsyncResp>& asyncResp, 11267e860f15SJohn Edward Broadbent const std::string& cpuName, 11277e860f15SJohn Edward Broadbent const std::string& configName) { 11287e860f15SJohn Edward Broadbent // Ask for all objects implementing OperatingConfig so we can search 11297e860f15SJohn Edward Broadbent // for one with a matching name 1130dba0c291SJonathan Doman crow::connections::systemBus->async_method_call( 11315df6eda2SShantappa Teekappanavar [asyncResp, cpuName, configName, reqUrl{req.url}]( 11325df6eda2SShantappa Teekappanavar boost::system::error_code ec, 11335df6eda2SShantappa Teekappanavar const dbus::utility::MapperGetSubTreeResponse& subtree) { 1134dba0c291SJonathan Doman if (ec) 1135dba0c291SJonathan Doman { 1136dba0c291SJonathan Doman BMCWEB_LOG_WARNING << "D-Bus error: " << ec << ", " 1137dba0c291SJonathan Doman << ec.message(); 1138dba0c291SJonathan Doman messages::internalError(asyncResp->res); 1139dba0c291SJonathan Doman return; 1140dba0c291SJonathan Doman } 11417e860f15SJohn Edward Broadbent const std::string expectedEnding = 11427e860f15SJohn Edward Broadbent cpuName + '/' + configName; 1143dba0c291SJonathan Doman for (const auto& [objectPath, serviceMap] : subtree) 1144dba0c291SJonathan Doman { 1145dba0c291SJonathan Doman // Ignore any configs without matching cpuX/configY 1146dba0c291SJonathan Doman if (!boost::ends_with(objectPath, expectedEnding) || 1147dba0c291SJonathan Doman serviceMap.empty()) 1148dba0c291SJonathan Doman { 1149dba0c291SJonathan Doman continue; 1150dba0c291SJonathan Doman } 1151dba0c291SJonathan Doman 1152dba0c291SJonathan Doman nlohmann::json& json = asyncResp->res.jsonValue; 1153dba0c291SJonathan Doman json["@odata.type"] = 1154dba0c291SJonathan Doman "#OperatingConfig.v1_0_0.OperatingConfig"; 1155dba0c291SJonathan Doman json["@odata.id"] = reqUrl; 1156dba0c291SJonathan Doman json["Name"] = "Processor Profile"; 1157dba0c291SJonathan Doman json["Id"] = configName; 1158dba0c291SJonathan Doman 1159dba0c291SJonathan Doman // Just use the first implementation of the object - not 11607e860f15SJohn Edward Broadbent // expected that there would be multiple matching 11617e860f15SJohn Edward Broadbent // services 11627e860f15SJohn Edward Broadbent getOperatingConfigData( 11637e860f15SJohn Edward Broadbent asyncResp, serviceMap.begin()->first, objectPath); 1164dba0c291SJonathan Doman return; 1165dba0c291SJonathan Doman } 11667e860f15SJohn Edward Broadbent messages::resourceNotFound(asyncResp->res, 11677e860f15SJohn Edward Broadbent "OperatingConfig", configName); 1168dba0c291SJonathan Doman }, 1169dba0c291SJonathan Doman "xyz.openbmc_project.ObjectMapper", 1170dba0c291SJonathan Doman "/xyz/openbmc_project/object_mapper", 1171dba0c291SJonathan Doman "xyz.openbmc_project.ObjectMapper", "GetSubTree", 1172dba0c291SJonathan Doman "/xyz/openbmc_project/inventory", 0, 1173dba0c291SJonathan Doman std::array<const char*, 1>{ 1174dba0c291SJonathan Doman "xyz.openbmc_project.Inventory.Item.Cpu.OperatingConfig"}); 11757e860f15SJohn Edward Broadbent }); 1176ac6a4445SGunnar Mills } 1177ac6a4445SGunnar Mills 11787e860f15SJohn Edward Broadbent inline void requestRoutesProcessorCollection(App& app) 11797e860f15SJohn Edward Broadbent { 1180ac6a4445SGunnar Mills /** 1181ac6a4445SGunnar Mills * Functions triggers appropriate requests on DBus 1182ac6a4445SGunnar Mills */ 11837e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/Processors/") 1184ed398213SEd Tanous .privileges(redfish::privileges::getProcessorCollection) 11857e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 11867e860f15SJohn Edward Broadbent [](const crow::Request&, 11877e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) { 11888d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.type"] = 1189ac6a4445SGunnar Mills "#ProcessorCollection.ProcessorCollection"; 11908d1b46d7Szhanghch05 asyncResp->res.jsonValue["Name"] = "Processor Collection"; 1191ac6a4445SGunnar Mills 11928d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.id"] = 11938d1b46d7Szhanghch05 "/redfish/v1/Systems/system/Processors"; 1194ac6a4445SGunnar Mills 119505030b8eSGunnar Mills collection_util::getCollectionMembers( 119605030b8eSGunnar Mills asyncResp, "/redfish/v1/Systems/system/Processors", 1197c951448aSJonathan Doman std::vector<const char*>(processorInterfaces.begin(), 1198c951448aSJonathan Doman processorInterfaces.end())); 11997e860f15SJohn Edward Broadbent }); 1200ac6a4445SGunnar Mills } 1201ac6a4445SGunnar Mills 12027e860f15SJohn Edward Broadbent inline void requestRoutesProcessor(App& app) 12037e860f15SJohn Edward Broadbent { 1204ac6a4445SGunnar Mills /** 1205ac6a4445SGunnar Mills * Functions triggers appropriate requests on DBus 1206ac6a4445SGunnar Mills */ 12077e860f15SJohn Edward Broadbent 12087e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/Processors/<str>/") 1209ed398213SEd Tanous .privileges(redfish::privileges::getProcessor) 12107e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::get)( 12117e860f15SJohn Edward Broadbent [](const crow::Request&, 12127e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 12137e860f15SJohn Edward Broadbent const std::string& processorId) { 12148d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.type"] = 12158d1b46d7Szhanghch05 "#Processor.v1_11_0.Processor"; 12168d1b46d7Szhanghch05 asyncResp->res.jsonValue["@odata.id"] = 1217ac6a4445SGunnar Mills "/redfish/v1/Systems/system/Processors/" + processorId; 1218ac6a4445SGunnar Mills 1219c951448aSJonathan Doman getProcessorObject(asyncResp, processorId, getProcessorData); 12207e860f15SJohn Edward Broadbent }); 12213cde86f1SJonathan Doman 12227e860f15SJohn Edward Broadbent BMCWEB_ROUTE(app, "/redfish/v1/Systems/system/Processors/<str>/") 1223ed398213SEd Tanous .privileges(redfish::privileges::patchProcessor) 12247e860f15SJohn Edward Broadbent .methods(boost::beast::http::verb::patch)( 12257e860f15SJohn Edward Broadbent [](const crow::Request& req, 12267e860f15SJohn Edward Broadbent const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 12277e860f15SJohn Edward Broadbent const std::string& processorId) { 12283cde86f1SJonathan Doman std::optional<nlohmann::json> appliedConfigJson; 122915ed6780SWilly Tu if (!json_util::readJsonPatch(req, asyncResp->res, 12307e860f15SJohn Edward Broadbent "AppliedOperatingConfig", 12313cde86f1SJonathan Doman appliedConfigJson)) 12323cde86f1SJonathan Doman { 12333cde86f1SJonathan Doman return; 12343cde86f1SJonathan Doman } 12353cde86f1SJonathan Doman 12363cde86f1SJonathan Doman std::string appliedConfigUri; 12373cde86f1SJonathan Doman if (appliedConfigJson) 12383cde86f1SJonathan Doman { 12393cde86f1SJonathan Doman if (!json_util::readJson(*appliedConfigJson, asyncResp->res, 12403cde86f1SJonathan Doman "@odata.id", appliedConfigUri)) 12413cde86f1SJonathan Doman { 12423cde86f1SJonathan Doman return; 12433cde86f1SJonathan Doman } 12447e860f15SJohn Edward Broadbent // Check for 404 and find matching D-Bus object, then run 12457e860f15SJohn Edward Broadbent // property patch handlers if that all succeeds. 12463cde86f1SJonathan Doman getProcessorObject( 12477e860f15SJohn Edward Broadbent asyncResp, processorId, 12483cde86f1SJonathan Doman [appliedConfigUri = std::move(appliedConfigUri)]( 12493cde86f1SJonathan Doman const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, 12503cde86f1SJonathan Doman const std::string& processorId, 12513cde86f1SJonathan Doman const std::string& objectPath, 12525df6eda2SShantappa Teekappanavar const dbus::utility::MapperServiceMap& serviceMap) { 12533cde86f1SJonathan Doman patchAppliedOperatingConfig(asyncResp, processorId, 12547e860f15SJohn Edward Broadbent appliedConfigUri, 12557e860f15SJohn Edward Broadbent objectPath, serviceMap); 12563cde86f1SJonathan Doman }); 12573cde86f1SJonathan Doman } 12587e860f15SJohn Edward Broadbent }); 12593cde86f1SJonathan Doman } 1260ac6a4445SGunnar Mills 1261ac6a4445SGunnar Mills } // namespace redfish 1262