Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Andrew Geissler | e426b58 | 2020-05-28 12:40:55 -0500 | [diff] [blame] | 3 | #include "config.h" |
| 4 | |
| 5 | #include "xyz/openbmc_project/State/Chassis/server.hpp" |
| 6 | #include "xyz/openbmc_project/State/PowerOnHours/server.hpp" |
| 7 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 8 | #include <cereal/cereal.hpp> |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 9 | #include <sdbusplus/bus.hpp> |
William A. Kennington III | d998f82 | 2018-10-17 23:17:57 -0700 | [diff] [blame] | 10 | #include <sdeventplus/clock.hpp> |
| 11 | #include <sdeventplus/event.hpp> |
| 12 | #include <sdeventplus/utility/timer.hpp> |
Andrew Geissler | e426b58 | 2020-05-28 12:40:55 -0500 | [diff] [blame] | 13 | |
| 14 | #include <chrono> |
Patrick Williams | 6ed41ea | 2022-04-05 15:50:21 -0500 | [diff] [blame] | 15 | #include <filesystem> |
Andrew Geissler | e426b58 | 2020-05-28 12:40:55 -0500 | [diff] [blame] | 16 | #include <functional> |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 17 | |
| 18 | namespace phosphor |
| 19 | { |
| 20 | namespace state |
| 21 | { |
| 22 | namespace manager |
| 23 | { |
| 24 | |
Patrick Williams | 8f8ba39 | 2017-05-05 15:47:39 -0500 | [diff] [blame] | 25 | using ChassisInherit = sdbusplus::server::object::object< |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 26 | sdbusplus::xyz::openbmc_project::State::server::Chassis, |
| 27 | sdbusplus::xyz::openbmc_project::State::server::PowerOnHours>; |
Patrick Williams | 8f8ba39 | 2017-05-05 15:47:39 -0500 | [diff] [blame] | 28 | namespace sdbusRule = sdbusplus::bus::match::rules; |
Patrick Williams | 6ed41ea | 2022-04-05 15:50:21 -0500 | [diff] [blame] | 29 | namespace fs = std::filesystem; |
Patrick Williams | 8f8ba39 | 2017-05-05 15:47:39 -0500 | [diff] [blame] | 30 | |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 31 | /** @class Chassis |
| 32 | * @brief OpenBMC chassis state management implementation. |
| 33 | * @details A concrete implementation for xyz.openbmc_project.State.Chassis |
| 34 | * DBus API. |
| 35 | */ |
Patrick Williams | 8f8ba39 | 2017-05-05 15:47:39 -0500 | [diff] [blame] | 36 | class Chassis : public ChassisInherit |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 37 | { |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 38 | public: |
| 39 | /** @brief Constructs Chassis State Manager |
| 40 | * |
| 41 | * @note This constructor passes 'true' to the base class in order to |
| 42 | * defer dbus object registration until we can run |
| 43 | * determineInitialState() and set our properties |
| 44 | * |
| 45 | * @param[in] bus - The Dbus bus object |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 46 | * @param[in] objPath - The Dbus object path |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 47 | * @param[in] id - Chassis id |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 48 | */ |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 49 | Chassis(sdbusplus::bus::bus& bus, const char* objPath, size_t id) : |
Patrick Williams | 7607074 | 2022-04-05 15:20:12 -0500 | [diff] [blame] | 50 | ChassisInherit(bus, objPath, ChassisInherit::action::defer_emit), |
| 51 | bus(bus), |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 52 | systemdSignals( |
| 53 | bus, |
| 54 | sdbusRule::type::signal() + sdbusRule::member("JobRemoved") + |
| 55 | sdbusRule::path("/org/freedesktop/systemd1") + |
| 56 | sdbusRule::interface("org.freedesktop.systemd1.Manager"), |
| 57 | std::bind(std::mem_fn(&Chassis::sysStateChange), this, |
William A. Kennington III | d998f82 | 2018-10-17 23:17:57 -0700 | [diff] [blame] | 58 | std::placeholders::_1)), |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 59 | id(id), pohTimer(sdeventplus::Event::get_default(), |
| 60 | std::bind(&Chassis::pohCallback, this), |
| 61 | std::chrono::hours{1}, std::chrono::minutes{1}) |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 62 | { |
| 63 | subscribeToSystemdSignals(); |
Andrew Geissler | 0029a5d | 2017-01-24 14:48:35 -0600 | [diff] [blame] | 64 | |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 65 | createSystemdTargetTable(); |
| 66 | |
Matt Spinler | 9eab986 | 2018-07-11 14:13:52 -0500 | [diff] [blame] | 67 | restoreChassisStateChangeTime(); |
| 68 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 69 | determineInitialState(); |
Andrew Geissler | dff50ed | 2016-12-13 20:39:04 -0600 | [diff] [blame] | 70 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 71 | restorePOHCounter(); // restore POHCounter from persisted file |
| 72 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 73 | // We deferred this until we could get our property correct |
| 74 | this->emit_object_added(); |
| 75 | } |
Andrew Geissler | dff50ed | 2016-12-13 20:39:04 -0600 | [diff] [blame] | 76 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 77 | /** @brief Set value of RequestedPowerTransition */ |
| 78 | Transition requestedPowerTransition(Transition value) override; |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 79 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 80 | /** @brief Set value of CurrentPowerState */ |
| 81 | PowerState currentPowerState(PowerState value) override; |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 82 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 83 | /** @brief Get value of POHCounter */ |
Patrick Williams | 45a1ed7 | 2021-04-30 21:02:43 -0500 | [diff] [blame] | 84 | using ChassisInherit::pohCounter; |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 85 | |
| 86 | /** @brief Increment POHCounter if Chassis Power state is ON */ |
| 87 | void startPOHCounter(); |
| 88 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 89 | private: |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 90 | /** @brief Create systemd target instance names and mapping table */ |
| 91 | void createSystemdTargetTable(); |
| 92 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 93 | /** @brief Determine initial chassis state and set internally */ |
| 94 | void determineInitialState(); |
Andrew Geissler | 0029a5d | 2017-01-24 14:48:35 -0600 | [diff] [blame] | 95 | |
Adriana Kobylak | 396ed8a | 2022-03-22 15:45:41 +0000 | [diff] [blame] | 96 | /** @brief Determine status of power into system by examining all the |
| 97 | * power-related interfaces of interest |
| 98 | */ |
Andrew Geissler | 8b1f862 | 2022-01-28 16:37:07 -0600 | [diff] [blame] | 99 | void determineStatusOfPower(); |
| 100 | |
Adriana Kobylak | 396ed8a | 2022-03-22 15:45:41 +0000 | [diff] [blame] | 101 | /** @brief Determine status of power provided by an Uninterruptible Power |
| 102 | * Supply into the system |
| 103 | */ |
| 104 | void determineStatusOfUPSPower(); |
| 105 | |
| 106 | /** @brief Determine status of power provided by the power supply units into |
| 107 | * the system |
| 108 | */ |
| 109 | void determineStatusOfPSUPower(); |
| 110 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 111 | /** |
| 112 | * @brief subscribe to the systemd signals |
| 113 | * |
| 114 | * This object needs to capture when it's systemd targets complete |
| 115 | * so it can keep it's state updated |
| 116 | * |
| 117 | **/ |
| 118 | void subscribeToSystemdSignals(); |
Andrew Geissler | 0029a5d | 2017-01-24 14:48:35 -0600 | [diff] [blame] | 119 | |
Matthew Barth | be6efab | 2022-03-01 13:21:45 -0600 | [diff] [blame] | 120 | /** @brief Start the systemd unit requested |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 121 | * |
Matthew Barth | be6efab | 2022-03-01 13:21:45 -0600 | [diff] [blame] | 122 | * This function calls `StartUnit` on the systemd unit given. |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 123 | * |
Matthew Barth | be6efab | 2022-03-01 13:21:45 -0600 | [diff] [blame] | 124 | * @param[in] sysdUnit - Systemd unit |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 125 | */ |
Matthew Barth | be6efab | 2022-03-01 13:21:45 -0600 | [diff] [blame] | 126 | void startUnit(const std::string& sysdUnit); |
Andrew Geissler | ce80f24 | 2017-01-24 13:25:33 -0600 | [diff] [blame] | 127 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 128 | /** |
| 129 | * @brief Determine if target is active |
| 130 | * |
| 131 | * This function determines if the target is active and |
| 132 | * helps prevent misleading log recorded states. |
| 133 | * |
| 134 | * @param[in] target - Target string to check on |
| 135 | * |
| 136 | * @return boolean corresponding to state active |
| 137 | **/ |
| 138 | bool stateActive(const std::string& target); |
Josh D. King | 697474c | 2017-03-02 11:15:55 -0600 | [diff] [blame] | 139 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 140 | /** @brief Check if systemd state change is relevant to this object |
| 141 | * |
| 142 | * Instance specific interface to handle the detected systemd state |
| 143 | * change |
| 144 | * |
| 145 | * @param[in] msg - Data associated with subscribed signal |
| 146 | * |
| 147 | */ |
| 148 | int sysStateChange(sdbusplus::message::message& msg); |
Andrew Geissler | 2ec3a7e | 2016-12-13 22:01:28 -0600 | [diff] [blame] | 149 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 150 | /** @brief Persistent sdbusplus DBus connection. */ |
| 151 | sdbusplus::bus::bus& bus; |
Andrew Geissler | 2ec3a7e | 2016-12-13 22:01:28 -0600 | [diff] [blame] | 152 | |
Andrew Geissler | 58a1801 | 2018-01-19 19:36:05 -0800 | [diff] [blame] | 153 | /** @brief Used to subscribe to dbus systemd signals **/ |
| 154 | sdbusplus::bus::match_t systemdSignals; |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 155 | |
Adriana Kobylak | 396ed8a | 2022-03-22 15:45:41 +0000 | [diff] [blame] | 156 | /** @brief Watch for any changes to UPS properties **/ |
Andrew Geissler | 2cf2a26 | 2022-02-02 14:38:41 -0600 | [diff] [blame] | 157 | std::unique_ptr<sdbusplus::bus::match_t> uPowerPropChangeSignal; |
| 158 | |
Adriana Kobylak | 396ed8a | 2022-03-22 15:45:41 +0000 | [diff] [blame] | 159 | /** @brief Watch for any changes to PowerSystemInputs properties **/ |
| 160 | std::unique_ptr<sdbusplus::bus::match_t> powerSysInputsPropChangeSignal; |
| 161 | |
Potin Lai | 70f36d8 | 2022-03-15 10:25:39 +0800 | [diff] [blame] | 162 | /** @brief Chassis id. **/ |
| 163 | const size_t id = 0; |
| 164 | |
| 165 | /** @brief Transition state to systemd target mapping table. **/ |
| 166 | std::map<Transition, std::string> systemdTargetTable; |
| 167 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 168 | /** @brief Used to Set value of POHCounter */ |
Patrick Williams | 45a1ed7 | 2021-04-30 21:02:43 -0500 | [diff] [blame] | 169 | uint32_t pohCounter(uint32_t value) override; |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 170 | |
William A. Kennington III | d998f82 | 2018-10-17 23:17:57 -0700 | [diff] [blame] | 171 | /** @brief Used by the timer to update the POHCounter */ |
Patrick Williams | 45a1ed7 | 2021-04-30 21:02:43 -0500 | [diff] [blame] | 172 | void pohCallback(); |
William A. Kennington III | d998f82 | 2018-10-17 23:17:57 -0700 | [diff] [blame] | 173 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 174 | /** @brief Used to restore POHCounter value from persisted file */ |
| 175 | void restorePOHCounter(); |
| 176 | |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 177 | /** @brief Serialize and persist requested POH counter. |
| 178 | * |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 179 | * @return fs::path - pathname of persisted requested POH counter. |
| 180 | */ |
Allen.Wang | ba182f0 | 2022-03-23 19:01:53 +0800 | [diff] [blame] | 181 | fs::path serializePOH(); |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 182 | |
Matt Spinler | 8195784 | 2018-07-11 10:37:12 -0500 | [diff] [blame] | 183 | /** @brief Deserialize a persisted requested POH counter. |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 184 | * |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 185 | * @param[in] retCounter - deserialized POH counter value |
| 186 | * |
| 187 | * @return bool - true if the deserialization was successful, false |
| 188 | * otherwise. |
| 189 | */ |
Allen.Wang | ba182f0 | 2022-03-23 19:01:53 +0800 | [diff] [blame] | 190 | bool deserializePOH(uint32_t& retCounter); |
Nagaraju Goruganti | cb781fe | 2018-04-06 13:41:01 -0500 | [diff] [blame] | 191 | |
Matt Spinler | 9eab986 | 2018-07-11 14:13:52 -0500 | [diff] [blame] | 192 | /** @brief Sets the LastStateChangeTime property and persists it. */ |
| 193 | void setStateChangeTime(); |
| 194 | |
| 195 | /** @brief Serialize the last power state change time. |
| 196 | * |
| 197 | * Save the time the state changed and the state itself. |
| 198 | * The state needs to be saved as well so that during rediscovery |
| 199 | * on reboots there's a way to know not to update the time again. |
| 200 | */ |
| 201 | void serializeStateChangeTime(); |
| 202 | |
| 203 | /** @brief Deserialize the last power state change time. |
| 204 | * |
| 205 | * @param[out] time - Deserialized time |
| 206 | * @param[out] state - Deserialized power state |
| 207 | * |
| 208 | * @return bool - true if successful, false otherwise. |
| 209 | */ |
| 210 | bool deserializeStateChangeTime(uint64_t& time, PowerState& state); |
| 211 | |
| 212 | /** @brief Restores the power state change time. |
| 213 | * |
| 214 | * The time is loaded into the LastStateChangeTime D-Bus property. |
| 215 | * On the very first start after this code has been applied but |
| 216 | * before the state has changed, the LastStateChangeTime value |
| 217 | * will be zero. |
| 218 | */ |
| 219 | void restoreChassisStateChangeTime(); |
| 220 | |
William A. Kennington III | d998f82 | 2018-10-17 23:17:57 -0700 | [diff] [blame] | 221 | /** @brief Timer used for tracking power on hours */ |
Patrick Williams | 45a1ed7 | 2021-04-30 21:02:43 -0500 | [diff] [blame] | 222 | sdeventplus::utility::Timer<sdeventplus::ClockId::Monotonic> pohTimer; |
Ben Tyner | 2c36e5a | 2021-07-12 14:56:49 -0500 | [diff] [blame] | 223 | |
| 224 | /** @brief Function to check for a standby voltage regulator fault |
| 225 | * |
| 226 | * Determine if a standby voltage regulator fault was detected and |
| 227 | * return true or false accordingly. |
| 228 | * |
| 229 | * @return true if fault detected, else false |
| 230 | */ |
| 231 | bool standbyVoltageRegulatorFault(); |
Andrew Geissler | 2cf2a26 | 2022-02-02 14:38:41 -0600 | [diff] [blame] | 232 | |
| 233 | /** @brief Process UPS property changes |
| 234 | * |
| 235 | * Instance specific interface to monitor for changes to the UPS |
| 236 | * properties which may impact CurrentPowerStatus |
| 237 | * |
| 238 | * @param[in] msg - Data associated with subscribed signal |
| 239 | * |
| 240 | */ |
| 241 | void uPowerChangeEvent(sdbusplus::message::message& msg); |
Adriana Kobylak | 396ed8a | 2022-03-22 15:45:41 +0000 | [diff] [blame] | 242 | |
| 243 | /** @brief Process PowerSystemInputs property changes |
| 244 | * |
| 245 | * Instance specific interface to monitor for changes to the |
| 246 | * PowerSystemInputs properties which may impact CurrentPowerStatus |
| 247 | * |
| 248 | * @param[in] msg - Data associated with subscribed signal |
| 249 | * |
| 250 | */ |
| 251 | void powerSysInputsChangeEvent(sdbusplus::message::message& msg); |
Andrew Geissler | a90a31a | 2016-12-13 16:16:28 -0600 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | } // namespace manager |
| 255 | } // namespace state |
| 256 | } // namespace phosphor |