blob: ee43e4ec2a01538019ff45db5353780e5ae66132 [file] [log] [blame]
Patrick Ventured8012182018-03-08 08:21:38 -08001/**
2 * Copyright 2017 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
James Feistc8bd1d12019-02-04 12:00:39 -080017#include "config.h"
18
Patrick Ventured8012182018-03-08 08:21:38 -080019#include "fancontroller.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070020
Patrick Ventured8012182018-03-08 08:21:38 -080021#include "util.hpp"
22#include "zone.hpp"
23
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070024#include <algorithm>
25#include <iostream>
26
27std::unique_ptr<PIDController>
Patrick Venture563a3562018-10-30 09:31:26 -070028 FanController::createFanPid(ZoneInterface* owner, const std::string& id,
Patrick Venture4a2dc4d2018-10-23 09:02:55 -070029 const std::vector<std::string>& inputs,
Patrick Venturef77d5a52018-10-23 09:32:52 -070030 const ec::pidinfo& initial)
Patrick Ventured8012182018-03-08 08:21:38 -080031{
Patrick Venture566a1512018-06-12 14:51:07 -070032 if (inputs.size() == 0)
33 {
34 return nullptr;
35 }
Patrick Ventured8012182018-03-08 08:21:38 -080036 auto fan = std::make_unique<FanController>(id, inputs, owner);
Patrick Venture563a3562018-10-30 09:31:26 -070037 ec::pid_info_t* info = fan->getPIDInfo();
Patrick Ventured8012182018-03-08 08:21:38 -080038
Patrick Venture7af157b2018-10-30 11:24:40 -070039 initializePIDStruct(info, initial);
Patrick Ventured8012182018-03-08 08:21:38 -080040
41 return fan;
42}
43
Patrick Venture5f59c0f2018-11-11 12:55:14 -080044double FanController::inputProc(void)
Patrick Ventured8012182018-03-08 08:21:38 -080045{
Patrick Ventured8012182018-03-08 08:21:38 -080046 double value = 0;
47 std::vector<int64_t> values;
48 std::vector<int64_t>::iterator result;
49
50 try
51 {
52 for (const auto& name : _inputs)
53 {
54 value = _owner->getCachedValue(name);
55 /* If we have a fan we can't read, its value will be 0 for at least
56 * some boards, while others... the fan will drop off dbus (if
57 * that's how it's being read and in that case its value will never
58 * be updated anymore, which is relatively harmless, except, when
59 * something tries to read its value through IPMI, and can't, they
60 * sort of have to guess -- all the other fans are reporting, why
61 * not this one? Maybe it's unable to be read, so it's "bad."
62 */
63 if (value > 0)
64 {
65 values.push_back(value);
Patrick Ventured8012182018-03-08 08:21:38 -080066 }
67 }
68 }
69 catch (const std::exception& e)
70 {
Patrick Venture563a3562018-10-30 09:31:26 -070071 std::cerr << "exception on inputProc.\n";
Patrick Ventured8012182018-03-08 08:21:38 -080072 throw;
73 }
74
Patrick Venture566a1512018-06-12 14:51:07 -070075 /* Reset the value from the above loop. */
76 value = 0;
Patrick Ventured8012182018-03-08 08:21:38 -080077 if (values.size() > 0)
78 {
Patrick Ventured8012182018-03-08 08:21:38 -080079 /* the fan PID algorithm was unstable with average, and seemed to work
80 * better with minimum. I had considered making this choice a variable
Patrick Venturedf766f22018-10-13 09:30:58 -070081 * in the configuration, and it's a nice-to-have..
Patrick Ventured8012182018-03-08 08:21:38 -080082 */
83 result = std::min_element(values.begin(), values.end());
84 value = *result;
85 }
86
Patrick Venture5f59c0f2018-11-11 12:55:14 -080087 return value;
Patrick Ventured8012182018-03-08 08:21:38 -080088}
89
Patrick Venture5f59c0f2018-11-11 12:55:14 -080090double FanController::setptProc(void)
Patrick Ventured8012182018-03-08 08:21:38 -080091{
Patrick Venture5f59c0f2018-11-11 12:55:14 -080092 double maxRPM = _owner->getMaxRPMRequest();
Patrick Ventured8012182018-03-08 08:21:38 -080093
94 // store for reference, and check if more or less.
Patrick Venture5f59c0f2018-11-11 12:55:14 -080095 double prev = getSetpoint();
Patrick Ventured8012182018-03-08 08:21:38 -080096
97 if (maxRPM > prev)
98 {
99 setFanDirection(FanSpeedDirection::UP);
100 }
101 else if (prev > maxRPM)
102 {
103 setFanDirection(FanSpeedDirection::DOWN);
104 }
105 else
106 {
107 setFanDirection(FanSpeedDirection::NEUTRAL);
108 }
109
Patrick Venture563a3562018-10-30 09:31:26 -0700110 setSetpoint(maxRPM);
Patrick Ventured8012182018-03-08 08:21:38 -0800111
112 return (maxRPM);
113}
114
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800115void FanController::outputProc(double value)
Patrick Ventured8012182018-03-08 08:21:38 -0800116{
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800117 double percent = value;
Patrick Ventured8012182018-03-08 08:21:38 -0800118
119 /* If doing tuning logging, don't go into failsafe mode. */
120#ifndef __TUNING_LOGGING__
121 if (_owner->getFailSafeMode())
122 {
123 /* In case it's being set to 100% */
124 if (percent < _owner->getFailSafePercent())
125 {
126 percent = _owner->getFailSafePercent();
127 }
128 }
129#endif
130
James Feistc8bd1d12019-02-04 12:00:39 -0800131// in the dbus configurations the /100 is added to the configurations
132// directly so this step is not needed
133#if !CONFIGURE_DBUS
Patrick Ventured8012182018-03-08 08:21:38 -0800134 // value and kFanFailSafeDutyCycle are 10 for 10% so let's fix that.
135 percent /= 100;
James Feistc8bd1d12019-02-04 12:00:39 -0800136#endif
Patrick Ventured8012182018-03-08 08:21:38 -0800137
138 // PidSensorMap for writing.
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700139 for (const auto& it : _inputs)
Patrick Ventured8012182018-03-08 08:21:38 -0800140 {
Patrick Venturea58197c2018-06-11 15:29:45 -0700141 auto sensor = _owner->getSensor(it);
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800142 sensor->write(percent);
Patrick Ventured8012182018-03-08 08:21:38 -0800143 }
144
Patrick Ventured8012182018-03-08 08:21:38 -0800145 return;
146}