/openbmc/openpower-pnor-code-mgmt/ |
H A D | activation.hpp | 8 #include "xyz/openbmc_project/Software/RedundancyPriority/server.hpp" 34 sdbusplus::xyz::openbmc_project::Software::server::RedundancyPriority>; 55 class RedundancyPriority; 57 /** @class RedundancyPriority 58 * @brief OpenBMC RedundancyPriority implementation 60 * xyz.openbmc_project.Software.RedundancyPriority DBus API. 62 class RedundancyPriority : public RedundancyPriorityInherit class 65 /** @brief Constructs RedundancyPriority. 70 * @param[in] value - The redundancyPriority value 72 RedundancyPriority(sdbusplus::bus_t& bus, const std::string& path, in RedundancyPriority() function in openpower::software::updater::RedundancyPriority [all …]
|
H A D | activation.cpp | 232 uint8_t RedundancyPriority::priority(uint8_t value) in priority() 235 return softwareServer::RedundancyPriority::priority(value); in priority()
|
/openbmc/phosphor-bmc-code-mgmt/bmc/ |
H A D | activation.hpp | 8 #include "xyz/openbmc_project/Software/RedundancyPriority/server.hpp" 40 sdbusplus::server::xyz::openbmc_project::software::RedundancyPriority>; 57 class RedundancyPriority; 59 /** @class RedundancyPriority 60 * @brief OpenBMC RedundancyPriority implementation 62 * xyz.openbmc_project.Software.RedundancyPriority DBus API. 64 class RedundancyPriority : public RedundancyPriorityInherit class 67 /** @brief Constructs RedundancyPriority. 72 * @param[in] value - The redundancyPriority value 75 RedundancyPriority(sdbusplus::bus_t& bus, const std::string& path, in RedundancyPriority() function in phosphor::software::updater::RedundancyPriority [all …]
|
H A D | item_updater.cpp | 413 activations.find(id)->second->redundancyPriority = in processBMCImage() 414 std::make_unique<RedundancyPriority>( in processBMCImage() 418 // If Active, create RedundancyPriority instance for this in processBMCImage() 436 activations.find(id)->second->redundancyPriority = in processBMCImage() 437 std::make_unique<RedundancyPriority>( in processBMCImage() 613 if (intf.second->redundancyPriority) in freePriority() 616 intf.first, intf.second->redundancyPriority->priority())); in freePriority() 645 it->second->redundancyPriority->sdbusPriority(freePriorityValue); in freePriority() 799 if (intf.second->redundancyPriority) in isLowestPriority() 801 if (intf.second->redundancyPriority->priority() < value) in isLowestPriority() [all …]
|
H A D | activation.cpp | 88 redundancyPriority.reset(nullptr); in activation() 193 if (!redundancyPriority) in onFlashWriteSuccess() 195 redundancyPriority = in onFlashWriteSuccess() 196 std::make_unique<RedundancyPriority>(bus, path, *this, 0); in onFlashWriteSuccess() 294 uint8_t RedundancyPriority::priority(uint8_t value) in priority() 298 auto newPriority = softwareServer::RedundancyPriority::priority(value); in priority() 304 uint8_t RedundancyPriority::sdbusPriority(uint8_t value) in sdbusPriority() 307 return softwareServer::RedundancyPriority::priority(value); in sdbusPriority()
|
H A D | serialize.hpp | 22 * @param[in] priority - RedundancyPriority value for that version. 36 * @param[in] priority - RedundancyPriority reference for that version.
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/RedundancyPriority/ |
H A D | meson.build | 3 sdbusplus_current_path = 'xyz/openbmc_project/Software/RedundancyPriority' 8 '../../../../../yaml/xyz/openbmc_project/Software/RedundancyPriority.interface.yaml', 28 'xyz/openbmc_project/Software/RedundancyPriority',
|
/openbmc/openpower-pnor-code-mgmt/static/ |
H A D | activation_static.cpp | 22 redundancyPriority.reset(nullptr); in activation() 140 if (!redundancyPriority) in finishActivation() 142 redundancyPriority = in finishActivation() 143 std::make_unique<RedundancyPriority>(bus, path, *this, 0); in finishActivation()
|
H A D | item_updater_static.cpp | 288 // If Active, create RedundancyPriority instance for this version. in processPNORImage() 292 activations.find(id)->second->redundancyPriority = in processPNORImage() 293 std::make_unique<RedundancyPriority>( in processPNORImage()
|
/openbmc/phosphor-bmc-code-mgmt/bmc/mmc/ |
H A D | flash.cpp | 66 if (!Activation::redundancyPriority) in onStateChanges() 68 Activation::redundancyPriority = in onStateChanges() 69 std::make_unique<RedundancyPriority>(bus, path, *this, in onStateChanges()
|
/openbmc/phosphor-bmc-code-mgmt/bmc/ubi/ |
H A D | flash.cpp | 80 if (!Activation::redundancyPriority) in onStateChanges() 82 Activation::redundancyPriority = in onStateChanges() 83 std::make_unique<RedundancyPriority>(bus, path, *this, in onStateChanges()
|
/openbmc/openpower-pnor-code-mgmt/ubi/ |
H A D | activation_ubi.cpp | 22 return RedundancyPriority::priority(value); in priority() 29 redundancyPriority.reset(nullptr); in activation() 169 if (!redundancyPriority) in finishActivation() 171 redundancyPriority = in finishActivation()
|
H A D | item_updater_ubi.cpp | 132 // If Active, create RedundancyPriority instance for this version. in processPNORImage() 141 activations.find(id)->second->redundancyPriority = in processPNORImage() 291 if (intf.second->redundancyPriority) in freePriority() 294 intf.second->redundancyPriority.get()->priority(), in freePriority() 308 it->second->redundancyPriority.get()->sdbusplus::xyz:: in freePriority() 309 openbmc_project::Software::server::RedundancyPriority::priority( in freePriority() 383 iter.second->redundancyPriority.get()->priority(), in freeSpace()
|
H A D | serialize.hpp | 15 * @param[in] priority - RedundancyPriority value for that version. 21 * @param[in] priority - RedundancyPriority pointer for that version.
|
H A D | activation_ubi.hpp | 16 class RedundancyPriorityUbi : public RedundancyPriority 21 RedundancyPriority(bus, path, parent, value) in RedundancyPriorityUbi()
|
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Software/ |
H A D | RequestedRedundancyPriority.interface.yaml | 11 `Software.RedundancyPriority.Priority` is Priority. 13 See `Software.RedundancyPriority.Priority` for valid values and
|
H A D | README.md | 205 The `xyz.openbmc_project.Software.RedundancyPriority` interface is provided to 212 `RedundancyPriority`. This can be done by setting the `Priority` on the 217 `RedundancyPriority = 0 (High)`. 224 _ItemUpdater_ may remove images based on the `RedundancyPriority` assigned to an 286 Set `Priority` to 0 on the desired `RedundancyPriority` interface.
|
H A D | Version.interface.yaml | 59 with the same inventory item. In such a case, RedundancyPriority
|
/openbmc/phosphor-dbus-interfaces/gen/xyz/openbmc_project/Software/ |
H A D | meson.build | 10 subdir('RedundancyPriority') subdir 211 '../../../../yaml/xyz/openbmc_project/Software/RedundancyPriority.interface.yaml', 213 output: ['RedundancyPriority.md'], 225 'xyz/openbmc_project/Software/RedundancyPriority',
|
/openbmc/phosphor-bmc-code-mgmt/bmc/side-switch/ |
H A D | side_switch.cpp | 48 "xyz.openbmc_project.Software.RedundancyPriority", "Priority"); in sideSwitchNeeded() 103 bus, fwPath, "xyz.openbmc_project.Software.RedundancyPriority", in sideSwitchNeeded()
|
/openbmc/phosphor-debug-collector/tools/dreport.d/plugins.d/ |
H A D | redundantosrelease | 16 dbus_object_priority_method="xyz.openbmc_project.Software.RedundancyPriority"
|
/openbmc/docs/designs/ |
H A D | code-update.md | 148 …oftware.RedundancyPriority](https://github.com/openbmc/phosphor-dbus-interfaces/blob/master/yaml/x… 166 flash-banks and xyz.openbmc_project.Software.RedundancyPriority interface
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | inband_code_update.hpp | 20 "xyz.openbmc_project.Software.RedundancyPriority";
|
/openbmc/openpower-vpd-parser/vpd-manager/include/ |
H A D | constants.hpp | 172 "xyz.openbmc_project.Software.RedundancyPriority";
|
/openbmc/phosphor-host-ipmid/ |
H A D | apphandler.cpp | 54 "xyz.openbmc_project.Software.RedundancyPriority"; 107 * RedundancyPriority interface from the given softwareRoot path.
|