#pragma once #include "conf.hpp" #include "controller.hpp" #include "pidcontroller.hpp" #include "sensors/manager.hpp" #include "sensors/sensor.hpp" #include #include #include #include #include #include #include #include #include template using ServerObject = typename sdbusplus::server::object::object; using ModeInterface = sdbusplus::xyz::openbmc_project::Control::server::Mode; using ModeObject = ServerObject; class ZoneInterface { public: virtual ~ZoneInterface() = default; virtual double getCachedValue(const std::string& name) = 0; virtual void addRPMSetPoint(double setpoint) = 0; virtual double getMaxRPMRequest() const = 0; virtual bool getFailSafeMode() const = 0; virtual double getFailSafePercent() const = 0; virtual Sensor* getSensor(const std::string& name) = 0; }; /* * The PIDZone inherits from the Mode object so that it can listen for control * mode changes. It primarily holds all PID loops and holds the sensor value * cache that's used per iteration of the PID loops. */ class PIDZone : public ZoneInterface, public ModeObject { public: PIDZone(int64_t zone, double minThermalRpm, double failSafePercent, const SensorManager& mgr, sdbusplus::bus::bus& bus, const char* objPath, bool defer) : ModeObject(bus, objPath, defer), _zoneId(zone), _maximumRPMSetPt(), _minThermalRpmSetPt(minThermalRpm), _failSafePercent(failSafePercent), _mgr(mgr) { #ifdef __TUNING_LOGGING__ _log.open("/tmp/swampd.log"); #endif } double getMaxRPMRequest(void) const override; bool getManualMode(void) const; /* Could put lock around this since it's accessed from two threads, but * only one reader/one writer. */ void setManualMode(bool mode); bool getFailSafeMode(void) const override; int64_t getZoneID(void) const; void addRPMSetPoint(double setpoint) override; void clearRPMSetPoints(void); double getFailSafePercent(void) const override; double getMinThermalRPMSetpoint(void) const; Sensor* getSensor(const std::string& name) override; void determineMaxRPMRequest(void); void updateFanTelemetry(void); void updateSensors(void); void initializeCache(void); void dumpCache(void); void processFans(void); void processThermals(void); void addFanPID(std::unique_ptr pid); void addThermalPID(std::unique_ptr pid); double getCachedValue(const std::string& name) override; void addFanInput(const std::string& fan); void addThermalInput(const std::string& therm); #ifdef __TUNING_LOGGING__ void initializeLog(void); std::ofstream& getLogHandle(void); #endif /* Method for setting the manual mode over dbus */ bool manual(bool value) override; /* Method for reading whether in fail-safe mode over dbus */ bool failSafe() const override; private: #ifdef __TUNING_LOGGING__ std::ofstream _log; #endif const int64_t _zoneId; double _maximumRPMSetPt = 0; bool _manualMode = false; const double _minThermalRpmSetPt; const double _failSafePercent; std::set _failSafeSensors; std::vector _RPMSetPoints; std::vector _fanInputs; std::vector _thermalInputs; std::map _cachedValuesByName; const SensorManager& _mgr; std::vector> _fans; std::vector> _thermals; };