Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 3 | #include "conf.hpp" |
| 4 | #include "controller.hpp" |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 5 | #include "pidcontroller.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 6 | #include "sensors/manager.hpp" |
| 7 | #include "sensors/sensor.hpp" |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 8 | #include "tuning.hpp" |
Patrick Venture | 1a15379 | 2020-08-11 08:41:47 -0700 | [diff] [blame] | 9 | #include "zone_interface.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 10 | |
Patrick Venture | a83a3ec | 2020-08-04 09:52:05 -0700 | [diff] [blame] | 11 | #include <sdbusplus/bus.hpp> |
| 12 | #include <sdbusplus/server.hpp> |
| 13 | #include <xyz/openbmc_project/Control/Mode/server.hpp> |
Harvey Wu | 3718006 | 2023-10-02 09:42:50 +0800 | [diff] [blame^] | 14 | #include <xyz/openbmc_project/Debug/Pid/ThermalPower/server.hpp> |
Harvey Wu | cc0232a | 2023-02-09 14:58:55 +0800 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Debug/Pid/Zone/server.hpp> |
ykchiu | 7c6d35d | 2023-05-10 17:01:46 +0800 | [diff] [blame] | 16 | #include <xyz/openbmc_project/Object/Enable/server.hpp> |
Patrick Venture | a83a3ec | 2020-08-04 09:52:05 -0700 | [diff] [blame] | 17 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 18 | #include <fstream> |
Tom Tung | df1f183 | 2022-11-14 19:26:52 +0800 | [diff] [blame] | 19 | #include <iostream> |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 20 | #include <map> |
| 21 | #include <memory> |
| 22 | #include <set> |
| 23 | #include <string> |
| 24 | #include <vector> |
| 25 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 26 | template <typename... T> |
Patrick Williams | b228bc3 | 2022-07-22 19:26:56 -0500 | [diff] [blame] | 27 | using ServerObject = typename sdbusplus::server::object_t<T...>; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 28 | using ModeInterface = sdbusplus::xyz::openbmc_project::Control::server::Mode; |
Harvey Wu | cc0232a | 2023-02-09 14:58:55 +0800 | [diff] [blame] | 29 | using DebugZoneInterface = |
| 30 | sdbusplus::xyz::openbmc_project::Debug::Pid::server::Zone; |
| 31 | using ModeObject = ServerObject<ModeInterface, DebugZoneInterface>; |
ykchiu | 7c6d35d | 2023-05-10 17:01:46 +0800 | [diff] [blame] | 32 | using ProcessInterface = |
| 33 | sdbusplus::xyz::openbmc_project::Object::server::Enable; |
Harvey Wu | 3718006 | 2023-10-02 09:42:50 +0800 | [diff] [blame^] | 34 | using DebugThermalPowerInterface = |
| 35 | sdbusplus::xyz::openbmc_project::Debug::Pid::server::ThermalPower; |
| 36 | using ProcessObject = |
| 37 | ServerObject<ProcessInterface, DebugThermalPowerInterface>; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 38 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 39 | namespace pid_control |
| 40 | { |
| 41 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 42 | /* |
Patrick Venture | 597ebd6 | 2020-08-11 08:48:19 -0700 | [diff] [blame] | 43 | * The DbusPidZone inherits from the Mode object so that it can listen for |
| 44 | * control mode changes. It primarily holds all PID loops and holds the sensor |
| 45 | * value cache that's used per iteration of the PID loops. |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 46 | */ |
Patrick Venture | 597ebd6 | 2020-08-11 08:48:19 -0700 | [diff] [blame] | 47 | class DbusPidZone : public ZoneInterface, public ModeObject |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 48 | { |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 49 | public: |
Patrick Venture | 597ebd6 | 2020-08-11 08:48:19 -0700 | [diff] [blame] | 50 | DbusPidZone(int64_t zone, double minThermalOutput, double failSafePercent, |
Bonnie Lo | 0e8fc39 | 2022-10-05 10:20:55 +0800 | [diff] [blame] | 51 | conf::CycleTime cycleTime, const SensorManager& mgr, |
| 52 | sdbusplus::bus_t& bus, const char* objPath, bool defer) : |
Patrick Williams | d8c5a45 | 2022-04-07 16:08:56 -0500 | [diff] [blame] | 53 | ModeObject(bus, objPath, |
| 54 | defer ? ModeObject::action::defer_emit |
| 55 | : ModeObject::action::emit_object_added), |
Patrick Venture | f7a2dd5 | 2019-07-16 14:31:13 -0700 | [diff] [blame] | 56 | _zoneId(zone), _maximumSetPoint(), |
James Feist | 3484bed | 2019-02-25 13:28:18 -0800 | [diff] [blame] | 57 | _minThermalOutputSetPt(minThermalOutput), |
ykchiu | 9fe3a3c | 2023-05-11 13:43:54 +0800 | [diff] [blame] | 58 | _zoneFailSafePercent(failSafePercent), _cycleTime(cycleTime), _mgr(mgr) |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 59 | { |
Patrick Venture | de79ee0 | 2019-05-08 14:50:00 -0700 | [diff] [blame] | 60 | if (loggingEnabled) |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 61 | { |
Patrick Venture | 89002db | 2019-05-08 15:02:55 -0700 | [diff] [blame] | 62 | _log.open(loggingPath + "/zone_" + std::to_string(zone) + ".log"); |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 63 | } |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 64 | } |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 65 | |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 66 | bool getManualMode(void) const override; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 67 | /* Could put lock around this since it's accessed from two threads, but |
| 68 | * only one reader/one writer. |
| 69 | */ |
Josh Lehan | a4146eb | 2020-10-01 11:49:09 -0700 | [diff] [blame] | 70 | |
| 71 | bool getRedundantWrite(void) const override; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 72 | void setManualMode(bool mode); |
| 73 | bool getFailSafeMode(void) const override; |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 74 | |
Bonnie Lo | c51ba91 | 2022-10-12 14:07:22 +0800 | [diff] [blame] | 75 | int64_t getZoneID(void) const override; |
Nirav Shah | ccc8bb6 | 2022-02-17 21:06:51 -0800 | [diff] [blame] | 76 | void addSetPoint(double setPoint, const std::string& name) override; |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 77 | double getMaxSetPointRequest(void) const override; |
James Feist | 608304d | 2019-02-25 10:01:42 -0800 | [diff] [blame] | 78 | void addRPMCeiling(double ceiling) override; |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 79 | void clearSetPoints(void) override; |
| 80 | void clearRPMCeilings(void) override; |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 81 | double getFailSafePercent(void) const override; |
Nirav Shah | ccc8bb6 | 2022-02-17 21:06:51 -0800 | [diff] [blame] | 82 | double getMinThermalSetPoint(void) const; |
Bonnie Lo | 0e8fc39 | 2022-10-05 10:20:55 +0800 | [diff] [blame] | 83 | uint64_t getCycleIntervalTime(void) const override; |
| 84 | uint64_t getUpdateThermalsCycle(void) const override; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 85 | |
Patrick Venture | 2d8e785 | 2018-10-30 19:14:07 -0700 | [diff] [blame] | 86 | Sensor* getSensor(const std::string& name) override; |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 87 | void determineMaxSetPointRequest(void) override; |
| 88 | void updateFanTelemetry(void) override; |
| 89 | void updateSensors(void) override; |
| 90 | void initializeCache(void) override; |
Josh Lehan | b300575 | 2022-02-22 20:48:07 -0800 | [diff] [blame] | 91 | void setOutputCache(std::string_view, const ValueCacheEntry&) override; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 92 | void dumpCache(void); |
Josh Lehan | a4146eb | 2020-10-01 11:49:09 -0700 | [diff] [blame] | 93 | |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 94 | void processFans(void) override; |
| 95 | void processThermals(void) override; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 96 | |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 97 | void addFanPID(std::unique_ptr<Controller> pid); |
| 98 | void addThermalPID(std::unique_ptr<Controller> pid); |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 99 | double getCachedValue(const std::string& name) override; |
Josh Lehan | b300575 | 2022-02-22 20:48:07 -0800 | [diff] [blame] | 100 | ValueCacheEntry getCachedValues(const std::string& name) override; |
| 101 | |
Patrick Venture | c399f6f | 2018-10-30 19:24:47 -0700 | [diff] [blame] | 102 | void addFanInput(const std::string& fan); |
| 103 | void addThermalInput(const std::string& therm); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 104 | |
Patrick Venture | 7a98c19 | 2020-08-12 08:35:16 -0700 | [diff] [blame] | 105 | void initializeLog(void) override; |
| 106 | void writeLog(const std::string& value) override; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 107 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 108 | /* Method for setting the manual mode over dbus */ |
| 109 | bool manual(bool value) override; |
| 110 | /* Method for reading whether in fail-safe mode over dbus */ |
| 111 | bool failSafe() const override; |
Harvey Wu | cc0232a | 2023-02-09 14:58:55 +0800 | [diff] [blame] | 112 | /* Method for recording the maximum SetPoint PID config name */ |
| 113 | std::string leader() const override; |
ykchiu | 7c6d35d | 2023-05-10 17:01:46 +0800 | [diff] [blame] | 114 | /* Method for control process for each loop at runtime */ |
Harvey Wu | 3718006 | 2023-10-02 09:42:50 +0800 | [diff] [blame^] | 115 | void addPidControlProcess(std::string name, std::string type, |
| 116 | double setpoint, sdbusplus::bus_t& bus, |
ykchiu | 7c6d35d | 2023-05-10 17:01:46 +0800 | [diff] [blame] | 117 | std::string objPath, bool defer); |
| 118 | bool isPidProcessEnabled(std::string name); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 119 | |
ykchiu | 9fe3a3c | 2023-05-11 13:43:54 +0800 | [diff] [blame] | 120 | void initPidFailSafePercent(void); |
| 121 | void addPidFailSafePercent(std::string name, double percent); |
| 122 | |
Harvey Wu | 3718006 | 2023-10-02 09:42:50 +0800 | [diff] [blame^] | 123 | void updateThermalPowerDebugInterface(std::string pidName, |
| 124 | std::string leader, double input, |
| 125 | double output) override; |
| 126 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 127 | private: |
Tom Tung | df1f183 | 2022-11-14 19:26:52 +0800 | [diff] [blame] | 128 | template <bool fanSensorLogging> |
| 129 | void processSensorInputs(const std::vector<std::string>& sensorInputs, |
| 130 | std::chrono::high_resolution_clock::time_point now) |
| 131 | { |
| 132 | for (const auto& sensorInput : sensorInputs) |
| 133 | { |
| 134 | auto sensor = _mgr.getSensor(sensorInput); |
| 135 | ReadReturn r = sensor->read(); |
| 136 | _cachedValuesByName[sensorInput] = {r.value, r.unscaled}; |
| 137 | int64_t timeout = sensor->getTimeout(); |
| 138 | std::chrono::high_resolution_clock::time_point then = r.updated; |
| 139 | |
| 140 | auto duration = |
| 141 | std::chrono::duration_cast<std::chrono::seconds>(now - then) |
| 142 | .count(); |
| 143 | auto period = std::chrono::seconds(timeout).count(); |
| 144 | /* |
| 145 | * TODO(venture): We should check when these were last read. |
| 146 | * However, these are the fans, so if I'm not getting updated values |
| 147 | * for them... what should I do? |
| 148 | */ |
| 149 | if constexpr (fanSensorLogging) |
| 150 | { |
| 151 | if (loggingEnabled) |
| 152 | { |
| 153 | const auto& v = _cachedValuesByName[sensorInput]; |
| 154 | _log << "," << v.scaled << "," << v.unscaled; |
| 155 | const auto& p = _cachedFanOutputs[sensorInput]; |
| 156 | _log << "," << p.scaled << "," << p.unscaled; |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | if (debugEnabled) |
| 161 | { |
| 162 | std::cerr << sensorInput << " sensor reading: " << r.value |
| 163 | << "\n"; |
| 164 | } |
| 165 | |
| 166 | // check if fan fail. |
| 167 | if (sensor->getFailed()) |
| 168 | { |
| 169 | _failSafeSensors.insert(sensorInput); |
| 170 | if (debugEnabled) |
| 171 | { |
| 172 | std::cerr << sensorInput << " sensor get failed\n"; |
| 173 | } |
| 174 | } |
| 175 | else if (timeout != 0 && duration >= period) |
| 176 | { |
| 177 | _failSafeSensors.insert(sensorInput); |
| 178 | if (debugEnabled) |
| 179 | { |
| 180 | std::cerr << sensorInput << " sensor timeout\n"; |
| 181 | } |
| 182 | } |
| 183 | else |
| 184 | { |
| 185 | // Check if it's in there: remove it. |
| 186 | auto kt = _failSafeSensors.find(sensorInput); |
| 187 | if (kt != _failSafeSensors.end()) |
| 188 | { |
| 189 | if (debugEnabled) |
| 190 | { |
| 191 | std::cerr << sensorInput |
| 192 | << " is erased from failsafe sensor set\n"; |
| 193 | } |
| 194 | _failSafeSensors.erase(kt); |
| 195 | } |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 200 | std::ofstream _log; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 201 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 202 | const int64_t _zoneId; |
Patrick Venture | f7a2dd5 | 2019-07-16 14:31:13 -0700 | [diff] [blame] | 203 | double _maximumSetPoint = 0; |
Nirav Shah | ccc8bb6 | 2022-02-17 21:06:51 -0800 | [diff] [blame] | 204 | std::string _maximumSetPointName; |
| 205 | std::string _maximumSetPointNamePrev; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 206 | bool _manualMode = false; |
Josh Lehan | a4146eb | 2020-10-01 11:49:09 -0700 | [diff] [blame] | 207 | bool _redundantWrite = false; |
James Feist | 3484bed | 2019-02-25 13:28:18 -0800 | [diff] [blame] | 208 | const double _minThermalOutputSetPt; |
ykchiu | 9fe3a3c | 2023-05-11 13:43:54 +0800 | [diff] [blame] | 209 | // Current fail safe Percent. |
| 210 | double _failSafePercent; |
| 211 | // Zone fail safe Percent setting by configuration. |
| 212 | const double _zoneFailSafePercent; |
Bonnie Lo | 0e8fc39 | 2022-10-05 10:20:55 +0800 | [diff] [blame] | 213 | const conf::CycleTime _cycleTime; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 214 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 215 | std::set<std::string> _failSafeSensors; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 216 | |
Patrick Venture | 9bbf333 | 2019-07-16 10:50:37 -0700 | [diff] [blame] | 217 | std::vector<double> _SetPoints; |
James Feist | 608304d | 2019-02-25 10:01:42 -0800 | [diff] [blame] | 218 | std::vector<double> _RPMCeilings; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 219 | std::vector<std::string> _fanInputs; |
| 220 | std::vector<std::string> _thermalInputs; |
Josh Lehan | b300575 | 2022-02-22 20:48:07 -0800 | [diff] [blame] | 221 | std::map<std::string, ValueCacheEntry> _cachedValuesByName; |
| 222 | std::map<std::string, ValueCacheEntry> _cachedFanOutputs; |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 223 | const SensorManager& _mgr; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 224 | |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 225 | std::vector<std::unique_ptr<Controller>> _fans; |
| 226 | std::vector<std::unique_ptr<Controller>> _thermals; |
ykchiu | 7c6d35d | 2023-05-10 17:01:46 +0800 | [diff] [blame] | 227 | |
| 228 | std::map<std::string, std::unique_ptr<ProcessObject>> _pidsControlProcess; |
ykchiu | 9fe3a3c | 2023-05-11 13:43:54 +0800 | [diff] [blame] | 229 | /* |
| 230 | * <key = pidname, value = pid failsafe percent> |
| 231 | * Pid fail safe Percent setting by each pid controller configuration. |
| 232 | */ |
| 233 | std::map<std::string, double> _pidsFailSafePercent; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 234 | }; |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 235 | |
| 236 | } // namespace pid_control |