blob: 428d446144c4b768da28621a8c1029c05df66c94 [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -08001#pragma once
2
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07003#include "pid/ec/pid.hpp"
James Feist22c257a2018-08-31 14:07:12 -07004#include "pid/ec/stepwise.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07005
Patrick Venturee6206562018-03-08 15:36:53 -08006#include <map>
7#include <string>
8#include <vector>
9
Patrick Venturea0764872020-08-08 07:48:43 -070010namespace pid_control
11{
James Feist75eb7692019-02-25 12:50:02 -080012namespace conf
13{
James Feistf81f2882019-02-26 11:26:36 -080014
Patrick Venturee6206562018-03-08 15:36:53 -080015/*
16 * General sensor structure used for configuration.
17 */
Patrick Venturef3252312018-10-30 08:42:53 -070018struct SensorConfig
Patrick Venturee6206562018-03-08 15:36:53 -080019{
Patrick Venture69c51062019-02-11 09:46:03 -080020 /* Used for listen if readPath is passive. */
Patrick Venturee6206562018-03-08 15:36:53 -080021 std::string type;
22 /* Can be a sensor path or a dbus path. */
Patrick Venture69c51062019-02-11 09:46:03 -080023 std::string readPath;
24 std::string writePath;
Patrick Venturee6206562018-03-08 15:36:53 -080025 /* min/max values for writing a percentage or error checking. */
26 int64_t min;
27 int64_t max;
28 int64_t timeout;
Patrick Venture6b9f5992019-09-10 09:18:28 -070029 bool ignoreDbusMinMax;
Patrick Venturee6206562018-03-08 15:36:53 -080030};
31
32/*
33 * Structure for holding the configuration of a PID.
34 */
Patrick Venturef3252312018-10-30 08:42:53 -070035struct ControllerInfo
Patrick Venturee6206562018-03-08 15:36:53 -080036{
37 std::string type; // fan or margin or temp?
38 std::vector<std::string> inputs; // one or more sensors.
Patrick Venture5f59c0f2018-11-11 12:55:14 -080039 double setpoint; // initial setpoint for thermal.
James Feist22c257a2018-08-31 14:07:12 -070040 union
41 {
42 ec::pidinfo pidInfo; // pid details
43 ec::StepwiseInfo stepwiseInfo;
44 };
Patrick Venturee6206562018-03-08 15:36:53 -080045};
46
47/*
48 * General zone structure used for configuration. A zone is a list of PIDs
49 * and a set of configuration settings. This structure gets filled out with
50 * the zone configuration settings and not the PID details.
51 */
Patrick Venturef3252312018-10-30 08:42:53 -070052struct ZoneConfig
Patrick Venturee6206562018-03-08 15:36:53 -080053{
Patrick Venturef7a2dd52019-07-16 14:31:13 -070054 /* The minimum set-point value we would ever want (typically in RPM) */
James Feist3484bed2019-02-25 13:28:18 -080055 double minThermalOutput;
Patrick Venturee6206562018-03-08 15:36:53 -080056
57 /* If the sensors are in fail-safe mode, this is the percentage to use. */
Patrick Venture8e2fdb32019-02-11 09:39:59 -080058 double failsafePercent;
Patrick Venturee6206562018-03-08 15:36:53 -080059};
60
Patrick Venturef3252312018-10-30 08:42:53 -070061using PIDConf = std::map<std::string, struct ControllerInfo>;
James Feistf81f2882019-02-26 11:26:36 -080062
63} // namespace conf
Patrick Venturea0764872020-08-08 07:48:43 -070064} // namespace pid_control