blob: 9d6515458c02cbbde65251a7452dcee51c5fa7e0 [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
James Feist75eb7692019-02-25 12:50:02 -080010namespace conf
11{
James Feistf81f2882019-02-26 11:26:36 -080012
James Feist75eb7692019-02-25 12:50:02 -080013constexpr int64_t inheritValueFromDbus = std::numeric_limits<int64_t>::lowest();
James Feist75eb7692019-02-25 12:50:02 -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;
29};
30
31/*
32 * Structure for holding the configuration of a PID.
33 */
Patrick Venturef3252312018-10-30 08:42:53 -070034struct ControllerInfo
Patrick Venturee6206562018-03-08 15:36:53 -080035{
36 std::string type; // fan or margin or temp?
37 std::vector<std::string> inputs; // one or more sensors.
Patrick Venture5f59c0f2018-11-11 12:55:14 -080038 double setpoint; // initial setpoint for thermal.
James Feist22c257a2018-08-31 14:07:12 -070039 union
40 {
41 ec::pidinfo pidInfo; // pid details
42 ec::StepwiseInfo stepwiseInfo;
43 };
Patrick Venturee6206562018-03-08 15:36:53 -080044};
45
46/*
47 * General zone structure used for configuration. A zone is a list of PIDs
48 * and a set of configuration settings. This structure gets filled out with
49 * the zone configuration settings and not the PID details.
50 */
Patrick Venturef3252312018-10-30 08:42:53 -070051struct ZoneConfig
Patrick Venturee6206562018-03-08 15:36:53 -080052{
53 /* The minimum RPM value we would ever want. */
James Feist3484bed2019-02-25 13:28:18 -080054 double minThermalOutput;
Patrick Venturee6206562018-03-08 15:36:53 -080055
56 /* If the sensors are in fail-safe mode, this is the percentage to use. */
Patrick Venture8e2fdb32019-02-11 09:39:59 -080057 double failsafePercent;
Patrick Venturee6206562018-03-08 15:36:53 -080058};
59
Patrick Venturef3252312018-10-30 08:42:53 -070060using PIDConf = std::map<std::string, struct ControllerInfo>;
James Feistf81f2882019-02-26 11:26:36 -080061
62} // namespace conf