blob: a024c0e8bb873bc8c4f18fda5dc1da12fe8ca364 [file] [log] [blame]
Patrick Venture1a153792020-08-11 08:41:47 -07001#pragma once
2
3#include "sensors/sensor.hpp"
4
5#include <string>
6
7namespace pid_control
8{
9
Patrick Venture7a98c192020-08-12 08:35:16 -070010/**
11 * In a Zone you have a set of PIDs which feed each other. Fan PIDs are fed set
12 * points from Thermal PIDs.
13 */
Patrick Venture1a153792020-08-11 08:41:47 -070014class ZoneInterface
15{
16 public:
17 virtual ~ZoneInterface() = default;
18
Patrick Venture7a98c192020-08-12 08:35:16 -070019 /** If the zone implementation supports logging, initialize the log. */
20 virtual void initializeLog(void) = 0;
21 /** If the zone implementation supports logging, write string to log. */
22 virtual void writeLog(const std::string& value) = 0;
23
24 /** Return a pointer to the sensor specified by name. */
Patrick Venture1a153792020-08-11 08:41:47 -070025 virtual Sensor* getSensor(const std::string& name) = 0;
Patrick Venture7a98c192020-08-12 08:35:16 -070026
27 /* updateFanTelemetry() and updateSensors() both clear the failsafe state
28 * for a sensor if it's no longer in that state.
29 */
30 /** For each fan input in the zone, read each to update the cachedValue and
31 * check if the fan is beyond its timeout to trigger a failsafe condition.
32 */
33 virtual void updateFanTelemetry(void) = 0;
34 /** For each thermal input in the zone, read each to update the cachedValue
35 * and check if the sensor is beyond its timeout to trigger a failsafe
36 * condition.
37 */
38 virtual void updateSensors(void) = 0;
39 /** For each fan and thermal input in the zone, set the cachedValue to 0 and
40 * set the input as failsafe - to default the zone to failsafe before it
41 * starts processing values to control fans.
42 */
43 virtual void initializeCache(void) = 0;
44 /** Return cached value for sensor by name. */
45 virtual double getCachedValue(const std::string& name) = 0;
46
47 /** Add a set point value for the Max Set Point computation. */
48 virtual void addSetPoint(double setpoint) = 0;
49 /** Clear all set points specified via addSetPoint */
50 virtual void clearSetPoints(void) = 0;
51
52 /** Add maximum RPM value to drive fan pids. */
53 virtual void addRPMCeiling(double ceiling) = 0;
54 /** Clear any RPM value set with addRPMCeiling. */
55 virtual void clearRPMCeilings(void) = 0;
56
57 /** Compute the value returned by getMaxSetPointRequest - called from the
58 * looping mechanism before triggering any Fan PIDs. The value computed is
59 * used by each fan PID.
60 */
61 virtual void determineMaxSetPointRequest(void) = 0;
62 /** Given the set points added via addSetPoint, return the maximum value -
63 * called from the PID loop that uses that value to drive the fans.
64 */
65 virtual double getMaxSetPointRequest() const = 0;
66
67 /** Return if the zone has any sensors in fail safe mode. */
68 virtual bool getFailSafeMode() const = 0;
69 /** Return the rpm or pwm percent value to drive fan pids when zone is in
70 * fail safe.
71 */
72 virtual double getFailSafePercent() const = 0;
73
74 /** Return if the zone is set to manual mode. false equates to automatic
75 * mode (the default).
76 */
77 virtual bool getManualMode(void) const = 0;
78
79 /** For each fan pid, do processing. */
80 virtual void processFans(void) = 0;
81 /** For each thermal pid, do processing. */
82 virtual void processThermals(void) = 0;
Patrick Venture1a153792020-08-11 08:41:47 -070083};
84
85} // namespace pid_control