Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2017 IBM Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Matthew Barth | cc8912e | 2019-01-21 11:35:27 -0600 | [diff] [blame] | 16 | #include "config.h" |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 17 | |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 18 | #include "zone.hpp" |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 19 | |
Matthew Barth | d953bb2 | 2017-08-22 10:45:28 -0500 | [diff] [blame] | 20 | #include "sdbusplus.hpp" |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 21 | #include "utility.hpp" |
| 22 | |
| 23 | #include <cereal/archives/json.hpp> |
| 24 | #include <cereal/cereal.hpp> |
| 25 | #include <phosphor-logging/elog-errors.hpp> |
| 26 | #include <phosphor-logging/elog.hpp> |
| 27 | #include <phosphor-logging/log.hpp> |
| 28 | #include <xyz/openbmc_project/Common/error.hpp> |
| 29 | |
| 30 | #include <chrono> |
Matt Spinler | 2ea9a59 | 2022-04-08 14:36:22 -0500 | [diff] [blame] | 31 | #include <filesystem> |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 32 | #include <fstream> |
| 33 | #include <functional> |
| 34 | #include <stdexcept> |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 35 | |
| 36 | namespace phosphor |
| 37 | { |
| 38 | namespace fan |
| 39 | { |
| 40 | namespace control |
| 41 | { |
| 42 | |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 43 | using namespace std::chrono; |
Matthew Barth | 9014980 | 2017-08-15 10:51:37 -0500 | [diff] [blame] | 44 | using namespace phosphor::fan; |
Matthew Barth | df3e8d6 | 2017-05-31 11:07:24 -0500 | [diff] [blame] | 45 | using namespace phosphor::logging; |
Matt Spinler | 2ea9a59 | 2022-04-08 14:36:22 -0500 | [diff] [blame] | 46 | namespace fs = std::filesystem; |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 47 | using InternalFailure = |
| 48 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 49 | |
Patrick Williams | cb356d4 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 50 | Zone::Zone(Mode mode, sdbusplus::bus_t& bus, const std::string& path, |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 51 | const sdeventplus::Event& event, const ZoneDefinition& def) : |
Patrick Williams | 0850e31 | 2022-04-05 16:24:52 -0500 | [diff] [blame] | 52 | ThermalObject(bus, path.c_str(), ThermalObject::action::defer_emit), |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 53 | _bus(bus), _path(path), |
Matthew Barth | 766f854 | 2019-01-29 12:44:13 -0600 | [diff] [blame] | 54 | _ifaces({"xyz.openbmc_project.Control.ThermalMode"}), |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 55 | _fullSpeed(std::get<fullSpeedPos>(def)), |
Matthew Barth | 1de6662 | 2017-06-12 13:13:02 -0500 | [diff] [blame] | 56 | _zoneNum(std::get<zoneNumPos>(def)), |
Matthew Barth | e0ca13e | 2017-06-13 16:29:09 -0500 | [diff] [blame] | 57 | _defFloorSpeed(std::get<floorSpeedPos>(def)), |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 58 | _defCeilingSpeed(std::get<fullSpeedPos>(def)), |
Matthew Barth | a956184 | 2017-06-29 11:43:45 -0500 | [diff] [blame] | 59 | _incDelay(std::get<incDelayPos>(def)), |
| 60 | _decInterval(std::get<decIntervalPos>(def)), |
William A. Kennington III | 22c36ab | 2018-10-30 19:50:57 -0700 | [diff] [blame] | 61 | _incTimer(event, std::bind(&Zone::incTimerExpired, this)), |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 62 | _decTimer(event, std::bind(&Zone::decTimerExpired, this)), _eventLoop(event) |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 63 | { |
| 64 | auto& fanDefs = std::get<fanListPos>(def); |
| 65 | |
Matthew Barth | 9f93bd3 | 2020-05-28 16:57:14 -0500 | [diff] [blame] | 66 | for (auto& fanDef : fanDefs) |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 67 | { |
Matthew Barth | 9f93bd3 | 2020-05-28 16:57:14 -0500 | [diff] [blame] | 68 | _fans.emplace_back(std::make_unique<Fan>(bus, fanDef)); |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 69 | } |
Matthew Barth | 38a93a8 | 2017-05-11 14:12:27 -0500 | [diff] [blame] | 70 | |
Matthew Barth | 1418413 | 2017-05-19 14:37:30 -0500 | [diff] [blame] | 71 | // Do not enable set speed events when in init mode |
Matthew Barth | 93af419 | 2019-01-18 09:30:57 -0600 | [diff] [blame] | 72 | if (mode == Mode::control) |
Matthew Barth | 17d1fe2 | 2017-05-11 15:00:36 -0500 | [diff] [blame] | 73 | { |
Matthew Barth | 1b3e960 | 2019-02-13 11:37:03 -0600 | [diff] [blame] | 74 | // Process any zone handlers defined |
| 75 | for (auto& hand : std::get<handlerPos>(def)) |
| 76 | { |
| 77 | hand(*this); |
| 78 | } |
| 79 | |
Matthew Barth | 9e4db25 | 2019-01-21 13:08:02 -0600 | [diff] [blame] | 80 | // Restore thermal control current mode state |
| 81 | restoreCurrentMode(); |
Matthew Barth | 93af419 | 2019-01-18 09:30:57 -0600 | [diff] [blame] | 82 | |
| 83 | // Emit objects added in control mode only |
| 84 | this->emit_object_added(); |
| 85 | |
Matthew Barth | 2b3db61 | 2017-10-25 10:56:51 -0500 | [diff] [blame] | 86 | // Update target speed to current zone target speed |
| 87 | if (!_fans.empty()) |
| 88 | { |
| 89 | _targetSpeed = _fans.front()->getTargetSpeed(); |
| 90 | } |
Matthew Barth | ccc7770 | 2017-07-28 13:43:04 -0500 | [diff] [blame] | 91 | // Setup signal trigger for set speed events |
Matthew Barth | 9f93bd3 | 2020-05-28 16:57:14 -0500 | [diff] [blame] | 92 | for (auto& ssEvent : std::get<setSpeedEventsPos>(def)) |
Matthew Barth | ccc7770 | 2017-07-28 13:43:04 -0500 | [diff] [blame] | 93 | { |
Matthew Barth | 9f93bd3 | 2020-05-28 16:57:14 -0500 | [diff] [blame] | 94 | initEvent(ssEvent); |
Matthew Barth | ccc7770 | 2017-07-28 13:43:04 -0500 | [diff] [blame] | 95 | } |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 96 | // Start timer for fan speed decreases |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 97 | _decTimer.restart(_decInterval); |
Matthew Barth | 38a93a8 | 2017-05-11 14:12:27 -0500 | [diff] [blame] | 98 | } |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 99 | } |
| 100 | |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 101 | void Zone::setSpeed(uint64_t speed) |
| 102 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 103 | if (_isActive) |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 104 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 105 | _targetSpeed = speed; |
| 106 | for (auto& fan : _fans) |
| 107 | { |
| 108 | fan->setSpeed(_targetSpeed); |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | void Zone::setFullSpeed() |
| 114 | { |
| 115 | if (_fullSpeed != 0) |
| 116 | { |
| 117 | _targetSpeed = _fullSpeed; |
| 118 | for (auto& fan : _fans) |
| 119 | { |
| 120 | fan->setSpeed(_targetSpeed); |
| 121 | } |
Matt Spinler | 7f88fe6 | 2017-04-10 14:39:02 -0500 | [diff] [blame] | 122 | } |
| 123 | } |
| 124 | |
Matthew Barth | 861d77c | 2017-05-22 14:18:25 -0500 | [diff] [blame] | 125 | void Zone::setActiveAllow(const Group* group, bool isActiveAllow) |
| 126 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 127 | _active[*(group)] = isActiveAllow; |
Matthew Barth | 861d77c | 2017-05-22 14:18:25 -0500 | [diff] [blame] | 128 | if (!isActiveAllow) |
| 129 | { |
| 130 | _isActive = false; |
| 131 | } |
| 132 | else |
| 133 | { |
| 134 | // Check all entries are set to allow control active |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 135 | auto actPred = [](const auto& entry) { return entry.second; }; |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 136 | _isActive = std::all_of(_active.begin(), _active.end(), actPred); |
Matthew Barth | 861d77c | 2017-05-22 14:18:25 -0500 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 140 | void Zone::removeService(const Group* group, const std::string& name) |
Matthew Barth | 55dea64 | 2017-11-06 13:34:32 -0600 | [diff] [blame] | 141 | { |
| 142 | try |
| 143 | { |
| 144 | auto& sNames = _services.at(*group); |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 145 | auto it = std::find_if(sNames.begin(), sNames.end(), |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 146 | [&name](const auto& entry) { |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 147 | return name == std::get<namePos>(entry); |
| 148 | }); |
Matthew Barth | 55dea64 | 2017-11-06 13:34:32 -0600 | [diff] [blame] | 149 | if (it != std::end(sNames)) |
| 150 | { |
| 151 | // Remove service name from group |
| 152 | sNames.erase(it); |
| 153 | } |
| 154 | } |
| 155 | catch (const std::out_of_range& oore) |
| 156 | { |
| 157 | // No services for group found |
| 158 | } |
| 159 | } |
| 160 | |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 161 | void Zone::setServiceOwner(const Group* group, const std::string& name, |
Matthew Barth | e59fdf7 | 2017-09-27 09:33:42 -0500 | [diff] [blame] | 162 | const bool hasOwner) |
| 163 | { |
| 164 | try |
| 165 | { |
| 166 | auto& sNames = _services.at(*group); |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 167 | auto it = std::find_if(sNames.begin(), sNames.end(), |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 168 | [&name](const auto& entry) { |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 169 | return name == std::get<namePos>(entry); |
| 170 | }); |
Matthew Barth | e59fdf7 | 2017-09-27 09:33:42 -0500 | [diff] [blame] | 171 | if (it != std::end(sNames)) |
| 172 | { |
| 173 | std::get<hasOwnerPos>(*it) = hasOwner; |
| 174 | } |
| 175 | else |
| 176 | { |
| 177 | _services[*group].emplace_back(name, hasOwner); |
| 178 | } |
| 179 | } |
| 180 | catch (const std::out_of_range& oore) |
| 181 | { |
| 182 | _services[*group].emplace_back(name, hasOwner); |
| 183 | } |
| 184 | } |
| 185 | |
Matthew Barth | 480787c | 2017-11-06 11:00:00 -0600 | [diff] [blame] | 186 | void Zone::setServices(const Group* group) |
| 187 | { |
Matthew Barth | 55dea64 | 2017-11-06 13:34:32 -0600 | [diff] [blame] | 188 | // Remove the empty service name if exists |
| 189 | removeService(group, ""); |
Matthew Barth | 480787c | 2017-11-06 11:00:00 -0600 | [diff] [blame] | 190 | for (auto it = group->begin(); it != group->end(); ++it) |
| 191 | { |
| 192 | std::string name; |
| 193 | bool hasOwner = false; |
| 194 | try |
| 195 | { |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 196 | name = getService(std::get<pathPos>(*it), std::get<intfPos>(*it)); |
Matthew Barth | 480787c | 2017-11-06 11:00:00 -0600 | [diff] [blame] | 197 | hasOwner = util::SDBusPlus::callMethodAndRead<bool>( |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 198 | _bus, "org.freedesktop.DBus", "/org/freedesktop/DBus", |
| 199 | "org.freedesktop.DBus", "NameHasOwner", name); |
Matthew Barth | 480787c | 2017-11-06 11:00:00 -0600 | [diff] [blame] | 200 | } |
Matt Spinler | ba7b5fe | 2018-04-25 15:26:10 -0500 | [diff] [blame] | 201 | catch (const util::DBusMethodError& e) |
Matthew Barth | 480787c | 2017-11-06 11:00:00 -0600 | [diff] [blame] | 202 | { |
| 203 | // Failed to get service name owner state |
| 204 | hasOwner = false; |
| 205 | } |
| 206 | setServiceOwner(group, name, hasOwner); |
| 207 | } |
| 208 | } |
| 209 | |
Matthew Barth | b4a7cb9 | 2017-06-28 15:29:50 -0500 | [diff] [blame] | 210 | void Zone::setFloor(uint64_t speed) |
| 211 | { |
Matthew Barth | 98726c4 | 2017-10-17 10:35:20 -0500 | [diff] [blame] | 212 | // Check all entries are set to allow floor to be set |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 213 | auto pred = [](const auto& entry) { return entry.second; }; |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 214 | auto setFloor = std::all_of(_floorChange.begin(), _floorChange.end(), pred); |
Matthew Barth | 98726c4 | 2017-10-17 10:35:20 -0500 | [diff] [blame] | 215 | if (setFloor) |
Matthew Barth | b4a7cb9 | 2017-06-28 15:29:50 -0500 | [diff] [blame] | 216 | { |
Matthew Barth | 98726c4 | 2017-10-17 10:35:20 -0500 | [diff] [blame] | 217 | _floorSpeed = speed; |
| 218 | // Floor speed above target, update target to floor speed |
| 219 | if (_targetSpeed < _floorSpeed) |
| 220 | { |
| 221 | requestSpeedIncrease(_floorSpeed - _targetSpeed); |
| 222 | } |
Matthew Barth | b4a7cb9 | 2017-06-28 15:29:50 -0500 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 226 | void Zone::requestSpeedIncrease(uint64_t targetDelta) |
| 227 | { |
| 228 | // Only increase speed when delta is higher than |
| 229 | // the current increase delta for the zone and currently under ceiling |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 230 | if (targetDelta > _incSpeedDelta && _targetSpeed < _ceilingSpeed) |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 231 | { |
Matthew Barth | 4e72854 | 2017-09-14 16:47:55 -0500 | [diff] [blame] | 232 | auto requestTarget = getRequestSpeedBase(); |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 233 | requestTarget = (targetDelta - _incSpeedDelta) + requestTarget; |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 234 | _incSpeedDelta = targetDelta; |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 235 | // Target speed can not go above a defined ceiling speed |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 236 | if (requestTarget > _ceilingSpeed) |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 237 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 238 | requestTarget = _ceilingSpeed; |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 239 | } |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 240 | setSpeed(requestTarget); |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 241 | // Retart timer countdown for fan speed increase |
| 242 | _incTimer.restartOnce(_incDelay); |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 243 | } |
Matthew Barth | 1ee48f2 | 2017-06-27 15:14:48 -0500 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | void Zone::incTimerExpired() |
| 247 | { |
| 248 | // Clear increase delta when timer expires allowing additional speed |
| 249 | // increase requests or speed decreases to occur |
Matthew Barth | 240397b | 2017-06-22 11:23:30 -0500 | [diff] [blame] | 250 | _incSpeedDelta = 0; |
| 251 | } |
| 252 | |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 253 | void Zone::requestSpeedDecrease(uint64_t targetDelta) |
| 254 | { |
| 255 | // Only decrease the lowest target delta requested |
| 256 | if (_decSpeedDelta == 0 || targetDelta < _decSpeedDelta) |
| 257 | { |
| 258 | _decSpeedDelta = targetDelta; |
| 259 | } |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 260 | } |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 261 | |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 262 | void Zone::decTimerExpired() |
| 263 | { |
Matthew Barth | e4338cd | 2017-12-14 11:14:30 -0600 | [diff] [blame] | 264 | // Check all entries are set to allow a decrease |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 265 | auto pred = [](const auto& entry) { return entry.second; }; |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 266 | auto decAllowed = std::all_of(_decAllowed.begin(), _decAllowed.end(), pred); |
Matthew Barth | e4338cd | 2017-12-14 11:14:30 -0600 | [diff] [blame] | 267 | |
| 268 | // Only decrease speeds when allowed, |
Matthew Barth | d4c001f | 2019-09-19 11:31:20 -0500 | [diff] [blame] | 269 | // a requested decrease speed delta exists, |
Matthew Barth | e4338cd | 2017-12-14 11:14:30 -0600 | [diff] [blame] | 270 | // where no requested increases exist and |
| 271 | // the increase timer is not running |
| 272 | // (i.e. not in the middle of increasing) |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 273 | if (decAllowed && _decSpeedDelta != 0 && _incSpeedDelta == 0 && |
| 274 | !_incTimer.isEnabled()) |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 275 | { |
Matthew Barth | 4e72854 | 2017-09-14 16:47:55 -0500 | [diff] [blame] | 276 | auto requestTarget = getRequestSpeedBase(); |
Matthew Barth | c63973a | 2017-12-08 15:31:35 -0600 | [diff] [blame] | 277 | // Request target speed should not start above ceiling |
| 278 | if (requestTarget > _ceilingSpeed) |
| 279 | { |
| 280 | requestTarget = _ceilingSpeed; |
| 281 | } |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 282 | // Target speed can not go below the defined floor speed |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 283 | if ((requestTarget < _decSpeedDelta) || |
| 284 | (requestTarget - _decSpeedDelta < _floorSpeed)) |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 285 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 286 | requestTarget = _floorSpeed; |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 287 | } |
| 288 | else |
| 289 | { |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 290 | requestTarget = requestTarget - _decSpeedDelta; |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 291 | } |
Matthew Barth | 60b0076 | 2017-08-15 13:39:06 -0500 | [diff] [blame] | 292 | setSpeed(requestTarget); |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 293 | } |
| 294 | // Clear decrease delta when timer expires |
| 295 | _decSpeedDelta = 0; |
Matthew Barth | 8600d9a | 2017-06-23 14:38:05 -0500 | [diff] [blame] | 296 | // Decrease timer is restarted since its repeating |
Matthew Barth | 0ce99d8 | 2017-06-22 15:07:29 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Matthew Barth | ccc7770 | 2017-07-28 13:43:04 -0500 | [diff] [blame] | 299 | void Zone::initEvent(const SetSpeedEvent& event) |
Matthew Barth | 1bf0ce4 | 2017-06-23 16:16:30 -0500 | [diff] [blame] | 300 | { |
Matthew Barth | 1b4de26 | 2018-03-06 13:03:16 -0600 | [diff] [blame] | 301 | // Enable event triggers |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 302 | std::for_each( |
| 303 | std::get<triggerPos>(event).begin(), std::get<triggerPos>(event).end(), |
| 304 | [this, &event](const auto& trigger) { |
| 305 | if (!std::get<actionsPos>(event).empty()) |
| 306 | { |
| 307 | std::for_each( |
| 308 | std::get<actionsPos>(event).begin(), |
| 309 | std::get<actionsPos>(event).end(), |
| 310 | [this, &trigger, &event](const auto& action) { |
| 311 | // Default to use group defined with action if exists |
| 312 | if (!std::get<adGroupPos>(action).empty()) |
| 313 | { |
| 314 | trigger(*this, std::get<sseNamePos>(event), |
| 315 | std::get<adGroupPos>(action), |
| 316 | std::get<adActionsPos>(action)); |
| 317 | } |
| 318 | else |
| 319 | { |
| 320 | trigger(*this, std::get<sseNamePos>(event), |
| 321 | std::get<groupPos>(event), |
| 322 | std::get<adActionsPos>(action)); |
| 323 | } |
| 324 | }); |
| 325 | } |
| 326 | else |
| 327 | { |
| 328 | trigger(*this, std::get<sseNamePos>(event), |
| 329 | std::get<groupPos>(event), {}); |
| 330 | } |
| 331 | }); |
Matthew Barth | 1bf0ce4 | 2017-06-23 16:16:30 -0500 | [diff] [blame] | 332 | } |
| 333 | |
Matthew Barth | f6b76d8 | 2017-08-04 12:58:02 -0500 | [diff] [blame] | 334 | void Zone::removeEvent(const SetSpeedEvent& event) |
| 335 | { |
Matthew Barth | 79cb831 | 2018-11-14 15:20:31 -0600 | [diff] [blame] | 336 | // Remove event signals |
| 337 | auto sigIter = _signalEvents.find(std::get<sseNamePos>(event)); |
| 338 | if (sigIter != _signalEvents.end()) |
Matthew Barth | f6b76d8 | 2017-08-04 12:58:02 -0500 | [diff] [blame] | 339 | { |
Matthew Barth | 79cb831 | 2018-11-14 15:20:31 -0600 | [diff] [blame] | 340 | auto& signals = sigIter->second; |
| 341 | for (auto it = signals.begin(); it != signals.end(); ++it) |
Matthew Barth | 336f18a | 2017-09-26 09:15:56 -0500 | [diff] [blame] | 342 | { |
Matthew Barth | 33bfe76 | 2018-11-05 11:13:25 -0600 | [diff] [blame] | 343 | removeSignal(it); |
Matthew Barth | 336f18a | 2017-09-26 09:15:56 -0500 | [diff] [blame] | 344 | } |
Matthew Barth | 79cb831 | 2018-11-14 15:20:31 -0600 | [diff] [blame] | 345 | _signalEvents.erase(sigIter); |
Matthew Barth | f6b76d8 | 2017-08-04 12:58:02 -0500 | [diff] [blame] | 346 | } |
Matthew Barth | 79cb831 | 2018-11-14 15:20:31 -0600 | [diff] [blame] | 347 | |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 348 | // Remove event timers |
| 349 | auto timIter = _timerEvents.find(std::get<sseNamePos>(event)); |
| 350 | if (timIter != _timerEvents.end()) |
Matthew Barth | 33bfe76 | 2018-11-05 11:13:25 -0600 | [diff] [blame] | 351 | { |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 352 | _timerEvents.erase(timIter); |
Matthew Barth | 33bfe76 | 2018-11-05 11:13:25 -0600 | [diff] [blame] | 353 | } |
| 354 | } |
| 355 | |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 356 | std::vector<TimerEvent>::iterator Zone::findTimer( |
| 357 | const Group& eventGroup, const std::vector<Action>& eventActions, |
| 358 | std::vector<TimerEvent>& eventTimers) |
Matthew Barth | bfb1a56 | 2017-10-05 17:03:40 -0500 | [diff] [blame] | 359 | { |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 360 | for (auto it = eventTimers.begin(); it != eventTimers.end(); ++it) |
Matthew Barth | bfb1a56 | 2017-10-05 17:03:40 -0500 | [diff] [blame] | 361 | { |
William A. Kennington III | 0420a93 | 2018-10-30 19:53:16 -0700 | [diff] [blame] | 362 | const auto& teEventData = *std::get<timerEventDataPos>(*it); |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 363 | if (std::get<eventGroupPos>(teEventData) == eventGroup && |
| 364 | std::get<eventActionsPos>(teEventData).size() == |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 365 | eventActions.size()) |
Matthew Barth | bfb1a56 | 2017-10-05 17:03:40 -0500 | [diff] [blame] | 366 | { |
| 367 | // TODO openbmc/openbmc#2328 - Use the action function target |
| 368 | // for comparison |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 369 | auto actsEqual = [](const auto& a1, const auto& a2) { |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 370 | return a1.target_type().name() == a2.target_type().name(); |
| 371 | }; |
| 372 | if (std::equal(eventActions.begin(), eventActions.end(), |
Matthew Barth | bfb1a56 | 2017-10-05 17:03:40 -0500 | [diff] [blame] | 373 | std::get<eventActionsPos>(teEventData).begin(), |
| 374 | actsEqual)) |
| 375 | { |
| 376 | return it; |
| 377 | } |
| 378 | } |
| 379 | } |
| 380 | |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 381 | return eventTimers.end(); |
Matthew Barth | bfb1a56 | 2017-10-05 17:03:40 -0500 | [diff] [blame] | 382 | } |
| 383 | |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 384 | void Zone::addTimer(const std::string& name, const Group& group, |
| 385 | const std::vector<Action>& actions, const TimerConf& tConf) |
William A. Kennington III | 94fe1a0 | 2018-10-30 19:00:27 -0700 | [diff] [blame] | 386 | { |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 387 | auto eventData = std::make_unique<EventData>(group, "", nullptr, actions); |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 388 | Timer timer( |
William A. Kennington III | 94fe1a0 | 2018-10-30 19:00:27 -0700 | [diff] [blame] | 389 | _eventLoop, |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 390 | std::bind(&Zone::timerExpired, this, |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 391 | std::cref(std::get<Group>(*eventData)), |
| 392 | std::cref(std::get<std::vector<Action>>(*eventData)))); |
| 393 | if (std::get<TimerType>(tConf) == TimerType::repeating) |
William A. Kennington III | 94fe1a0 | 2018-10-30 19:00:27 -0700 | [diff] [blame] | 394 | { |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 395 | timer.restart(std::get<intervalPos>(tConf)); |
William A. Kennington III | 94fe1a0 | 2018-10-30 19:00:27 -0700 | [diff] [blame] | 396 | } |
William A. Kennington III | 8fd879f | 2018-10-30 19:49:29 -0700 | [diff] [blame] | 397 | else if (std::get<TimerType>(tConf) == TimerType::oneshot) |
| 398 | { |
| 399 | timer.restartOnce(std::get<intervalPos>(tConf)); |
| 400 | } |
| 401 | else |
| 402 | { |
| 403 | throw std::invalid_argument("Invalid Timer Type"); |
| 404 | } |
Matthew Barth | d7b716a | 2018-11-16 13:37:57 -0600 | [diff] [blame] | 405 | _timerEvents[name].emplace_back(std::move(eventData), std::move(timer)); |
William A. Kennington III | 94fe1a0 | 2018-10-30 19:00:27 -0700 | [diff] [blame] | 406 | } |
| 407 | |
William A. Kennington III | c0c5f07 | 2018-10-30 19:11:01 -0700 | [diff] [blame] | 408 | void Zone::timerExpired(const Group& eventGroup, |
| 409 | const std::vector<Action>& eventActions) |
Matthew Barth | 9014980 | 2017-08-15 10:51:37 -0500 | [diff] [blame] | 410 | { |
Matthew Barth | f9201ab | 2017-09-11 16:07:58 -0500 | [diff] [blame] | 411 | // Perform the actions |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 412 | std::for_each(eventActions.begin(), eventActions.end(), |
| 413 | [this, &eventGroup](const auto& action) { |
| 414 | action(*this, eventGroup); |
| 415 | }); |
Matthew Barth | 9014980 | 2017-08-15 10:51:37 -0500 | [diff] [blame] | 416 | } |
| 417 | |
Patrick Williams | cb356d4 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 418 | void Zone::handleEvent(sdbusplus::message_t& msg, const EventData* eventData) |
Matthew Barth | 38a93a8 | 2017-05-11 14:12:27 -0500 | [diff] [blame] | 419 | { |
| 420 | // Handle the callback |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 421 | std::get<eventHandlerPos> (*eventData)(_bus, msg, *this); |
Matthew Barth | f9201ab | 2017-09-11 16:07:58 -0500 | [diff] [blame] | 422 | // Perform the actions |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 423 | std::for_each(std::get<eventActionsPos>(*eventData).begin(), |
| 424 | std::get<eventActionsPos>(*eventData).end(), |
Patrick Williams | 61b7329 | 2023-05-10 07:50:12 -0500 | [diff] [blame] | 425 | [this, &eventData](const auto& action) { |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 426 | action(*this, std::get<eventGroupPos>(*eventData)); |
| 427 | }); |
Matthew Barth | 38a93a8 | 2017-05-11 14:12:27 -0500 | [diff] [blame] | 428 | } |
| 429 | |
Matthew Barth | a603ed0 | 2018-01-19 16:56:26 -0600 | [diff] [blame] | 430 | const std::string& Zone::getService(const std::string& path, |
| 431 | const std::string& intf) |
| 432 | { |
| 433 | // Retrieve service from cache |
| 434 | auto srvIter = _servTree.find(path); |
| 435 | if (srvIter != _servTree.end()) |
| 436 | { |
| 437 | for (auto& serv : srvIter->second) |
| 438 | { |
Patrick Williams | 5e15c3b | 2023-10-20 11:18:11 -0500 | [diff] [blame] | 439 | auto it = std::find_if( |
| 440 | serv.second.begin(), serv.second.end(), |
| 441 | [&intf](const auto& interface) { return intf == interface; }); |
Matthew Barth | a603ed0 | 2018-01-19 16:56:26 -0600 | [diff] [blame] | 442 | if (it != std::end(serv.second)) |
| 443 | { |
| 444 | // Service found |
| 445 | return serv.first; |
| 446 | } |
| 447 | } |
| 448 | // Interface not found in cache, add and return |
| 449 | return addServices(path, intf, 0); |
| 450 | } |
| 451 | else |
| 452 | { |
| 453 | // Path not found in cache, add and return |
| 454 | return addServices(path, intf, 0); |
| 455 | } |
| 456 | } |
| 457 | |
| 458 | const std::string& Zone::addServices(const std::string& path, |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 459 | const std::string& intf, int32_t depth) |
Matthew Barth | a603ed0 | 2018-01-19 16:56:26 -0600 | [diff] [blame] | 460 | { |
| 461 | static const std::string empty = ""; |
| 462 | auto it = _servTree.end(); |
| 463 | |
| 464 | // Get all subtree objects for the given interface |
| 465 | auto objects = util::SDBusPlus::getSubTree(_bus, "/", intf, depth); |
| 466 | // Add what's returned to the cache of path->services |
| 467 | for (auto& pIter : objects) |
| 468 | { |
| 469 | auto pathIter = _servTree.find(pIter.first); |
| 470 | if (pathIter != _servTree.end()) |
| 471 | { |
| 472 | // Path found in cache |
| 473 | for (auto& sIter : pIter.second) |
| 474 | { |
| 475 | auto servIter = pathIter->second.find(sIter.first); |
| 476 | if (servIter != pathIter->second.end()) |
| 477 | { |
| 478 | // Service found in cache |
| 479 | for (auto& iIter : sIter.second) |
| 480 | { |
Matthew Barth | e8b340b | 2018-11-09 10:05:34 -0600 | [diff] [blame] | 481 | if (std::find(servIter->second.begin(), |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 482 | servIter->second.end(), iIter) == |
| 483 | servIter->second.end()) |
Matthew Barth | e8b340b | 2018-11-09 10:05:34 -0600 | [diff] [blame] | 484 | { |
| 485 | // Add interface to cache |
| 486 | servIter->second.emplace_back(iIter); |
| 487 | } |
Matthew Barth | a603ed0 | 2018-01-19 16:56:26 -0600 | [diff] [blame] | 488 | } |
| 489 | } |
| 490 | else |
| 491 | { |
| 492 | // Service not found in cache |
| 493 | pathIter->second.insert(sIter); |
| 494 | } |
| 495 | } |
| 496 | } |
| 497 | else |
| 498 | { |
| 499 | _servTree.insert(pIter); |
| 500 | } |
| 501 | // When the paths match, since a single interface constraint is given, |
| 502 | // that is the service to return |
| 503 | if (path == pIter.first) |
| 504 | { |
| 505 | it = _servTree.find(pIter.first); |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | if (it != _servTree.end()) |
| 510 | { |
| 511 | return it->second.begin()->first; |
| 512 | } |
| 513 | |
| 514 | return empty; |
| 515 | } |
| 516 | |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 517 | auto Zone::getPersisted(const std::string& intf, const std::string& prop) |
Matthew Barth | 70b2e7d | 2019-02-18 11:03:07 -0600 | [diff] [blame] | 518 | { |
| 519 | auto persisted = false; |
| 520 | |
| 521 | auto it = _persisted.find(intf); |
| 522 | if (it != _persisted.end()) |
| 523 | { |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 524 | return std::any_of(it->second.begin(), it->second.end(), |
Matthew Barth | 9f93bd3 | 2020-05-28 16:57:14 -0500 | [diff] [blame] | 525 | [&prop](const auto& p) { return prop == p; }); |
Matthew Barth | 70b2e7d | 2019-02-18 11:03:07 -0600 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | return persisted; |
| 529 | } |
| 530 | |
Matthew Barth | 6faf894 | 2019-01-22 09:26:09 -0600 | [diff] [blame] | 531 | std::string Zone::current(std::string value) |
| 532 | { |
Matthew Barth | b390df1 | 2019-02-14 15:18:27 -0600 | [diff] [blame] | 533 | auto current = ThermalObject::current(); |
| 534 | std::transform(value.begin(), value.end(), value.begin(), toupper); |
| 535 | |
Matthew Barth | 221c90c | 2019-02-15 10:35:50 -0600 | [diff] [blame] | 536 | auto supported = ThermalObject::supported(); |
Patrick Williams | dfddd64 | 2024-08-16 15:21:51 -0400 | [diff] [blame^] | 537 | auto isSupported = |
| 538 | std::any_of(supported.begin(), supported.end(), [&value](auto& s) { |
| 539 | std::transform(s.begin(), s.end(), s.begin(), toupper); |
| 540 | return value == s; |
| 541 | }); |
Matthew Barth | 221c90c | 2019-02-15 10:35:50 -0600 | [diff] [blame] | 542 | |
| 543 | if (value != current && isSupported) |
Matthew Barth | 6faf894 | 2019-01-22 09:26:09 -0600 | [diff] [blame] | 544 | { |
| 545 | current = ThermalObject::current(value); |
Matthew Barth | 70b2e7d | 2019-02-18 11:03:07 -0600 | [diff] [blame] | 546 | if (getPersisted("xyz.openbmc_project.Control.ThermalMode", "Current")) |
| 547 | { |
| 548 | saveCurrentMode(); |
| 549 | } |
Matthew Barth | b390df1 | 2019-02-14 15:18:27 -0600 | [diff] [blame] | 550 | // Trigger event(s) for current mode property change |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 551 | auto eData = _objects[_path]["xyz.openbmc_project.Control.ThermalMode"] |
Matthew Barth | baea6c3 | 2019-01-29 14:20:19 -0600 | [diff] [blame] | 552 | ["Current"]; |
| 553 | if (eData != nullptr) |
| 554 | { |
Patrick Williams | cb356d4 | 2022-07-22 19:26:53 -0500 | [diff] [blame] | 555 | sdbusplus::message_t nullMsg{nullptr}; |
Matthew Barth | baea6c3 | 2019-01-29 14:20:19 -0600 | [diff] [blame] | 556 | handleEvent(nullMsg, eData); |
| 557 | } |
Matthew Barth | 6faf894 | 2019-01-22 09:26:09 -0600 | [diff] [blame] | 558 | } |
Matthew Barth | b390df1 | 2019-02-14 15:18:27 -0600 | [diff] [blame] | 559 | |
Matthew Barth | 6faf894 | 2019-01-22 09:26:09 -0600 | [diff] [blame] | 560 | return current; |
| 561 | } |
| 562 | |
Matthew Barth | cc8912e | 2019-01-21 11:35:27 -0600 | [diff] [blame] | 563 | void Zone::saveCurrentMode() |
| 564 | { |
| 565 | fs::path path{CONTROL_PERSIST_ROOT_PATH}; |
| 566 | // Append zone and property description |
| 567 | path /= std::to_string(_zoneNum); |
| 568 | path /= "CurrentMode"; |
| 569 | std::ofstream ofs(path.c_str(), std::ios::binary); |
| 570 | cereal::JSONOutputArchive oArch(ofs); |
| 571 | oArch(ThermalObject::current()); |
| 572 | } |
| 573 | |
Matthew Barth | 9e4db25 | 2019-01-21 13:08:02 -0600 | [diff] [blame] | 574 | void Zone::restoreCurrentMode() |
| 575 | { |
Matthew Barth | a2bed6e | 2019-02-14 16:07:00 -0600 | [diff] [blame] | 576 | auto current = ThermalObject::current(); |
Matthew Barth | 9e4db25 | 2019-01-21 13:08:02 -0600 | [diff] [blame] | 577 | fs::path path{CONTROL_PERSIST_ROOT_PATH}; |
| 578 | path /= std::to_string(_zoneNum); |
| 579 | path /= "CurrentMode"; |
| 580 | fs::create_directories(path.parent_path()); |
| 581 | |
| 582 | try |
| 583 | { |
| 584 | if (fs::exists(path)) |
| 585 | { |
| 586 | std::ifstream ifs(path.c_str(), std::ios::in | std::ios::binary); |
| 587 | cereal::JSONInputArchive iArch(ifs); |
| 588 | iArch(current); |
| 589 | } |
| 590 | } |
Patrick Williams | ddb773b | 2021-10-06 11:24:49 -0500 | [diff] [blame] | 591 | catch (const std::exception& e) |
Matthew Barth | 9e4db25 | 2019-01-21 13:08:02 -0600 | [diff] [blame] | 592 | { |
| 593 | log<level::ERR>(e.what()); |
| 594 | fs::remove(path); |
Matthew Barth | a2bed6e | 2019-02-14 16:07:00 -0600 | [diff] [blame] | 595 | current = ThermalObject::current(); |
Matthew Barth | 9e4db25 | 2019-01-21 13:08:02 -0600 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | this->current(current); |
| 599 | } |
| 600 | |
Matthew Barth | 3e1bb27 | 2020-05-26 11:09:21 -0500 | [diff] [blame] | 601 | } // namespace control |
| 602 | } // namespace fan |
| 603 | } // namespace phosphor |