Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 1 | /** |
| 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 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 17 | #include "fancontroller.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 18 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 19 | #include "util.hpp" |
| 20 | #include "zone.hpp" |
| 21 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 22 | #include <algorithm> |
| 23 | #include <iostream> |
| 24 | |
| 25 | std::unique_ptr<PIDController> |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 26 | FanController::createFanPid(ZoneInterface* owner, const std::string& id, |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 27 | const std::vector<std::string>& inputs, |
Patrick Venture | f77d5a5 | 2018-10-23 09:32:52 -0700 | [diff] [blame] | 28 | const ec::pidinfo& initial) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 29 | { |
Patrick Venture | 566a151 | 2018-06-12 14:51:07 -0700 | [diff] [blame] | 30 | if (inputs.size() == 0) |
| 31 | { |
| 32 | return nullptr; |
| 33 | } |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 34 | auto fan = std::make_unique<FanController>(id, inputs, owner); |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 35 | ec::pid_info_t* info = fan->getPIDInfo(); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 36 | |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 37 | initializePIDStruct(info, initial); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 38 | |
| 39 | return fan; |
| 40 | } |
| 41 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 42 | double FanController::inputProc(void) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 43 | { |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 44 | double value = 0; |
| 45 | std::vector<int64_t> values; |
| 46 | std::vector<int64_t>::iterator result; |
| 47 | |
| 48 | try |
| 49 | { |
| 50 | for (const auto& name : _inputs) |
| 51 | { |
| 52 | value = _owner->getCachedValue(name); |
| 53 | /* If we have a fan we can't read, its value will be 0 for at least |
| 54 | * some boards, while others... the fan will drop off dbus (if |
| 55 | * that's how it's being read and in that case its value will never |
| 56 | * be updated anymore, which is relatively harmless, except, when |
| 57 | * something tries to read its value through IPMI, and can't, they |
| 58 | * sort of have to guess -- all the other fans are reporting, why |
| 59 | * not this one? Maybe it's unable to be read, so it's "bad." |
| 60 | */ |
| 61 | if (value > 0) |
| 62 | { |
| 63 | values.push_back(value); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | } |
| 67 | catch (const std::exception& e) |
| 68 | { |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 69 | std::cerr << "exception on inputProc.\n"; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 70 | throw; |
| 71 | } |
| 72 | |
Patrick Venture | 566a151 | 2018-06-12 14:51:07 -0700 | [diff] [blame] | 73 | /* Reset the value from the above loop. */ |
| 74 | value = 0; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 75 | if (values.size() > 0) |
| 76 | { |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 77 | /* the fan PID algorithm was unstable with average, and seemed to work |
| 78 | * better with minimum. I had considered making this choice a variable |
Patrick Venture | df766f2 | 2018-10-13 09:30:58 -0700 | [diff] [blame] | 79 | * in the configuration, and it's a nice-to-have.. |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 80 | */ |
| 81 | result = std::min_element(values.begin(), values.end()); |
| 82 | value = *result; |
| 83 | } |
| 84 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 85 | return value; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 86 | } |
| 87 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 88 | double FanController::setptProc(void) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 89 | { |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 90 | double maxRPM = _owner->getMaxRPMRequest(); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 91 | |
| 92 | // store for reference, and check if more or less. |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 93 | double prev = getSetpoint(); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 94 | |
| 95 | if (maxRPM > prev) |
| 96 | { |
| 97 | setFanDirection(FanSpeedDirection::UP); |
| 98 | } |
| 99 | else if (prev > maxRPM) |
| 100 | { |
| 101 | setFanDirection(FanSpeedDirection::DOWN); |
| 102 | } |
| 103 | else |
| 104 | { |
| 105 | setFanDirection(FanSpeedDirection::NEUTRAL); |
| 106 | } |
| 107 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 108 | setSetpoint(maxRPM); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 109 | |
| 110 | return (maxRPM); |
| 111 | } |
| 112 | |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 113 | void FanController::outputProc(double value) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 114 | { |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 115 | double percent = value; |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 116 | |
| 117 | /* If doing tuning logging, don't go into failsafe mode. */ |
| 118 | #ifndef __TUNING_LOGGING__ |
| 119 | if (_owner->getFailSafeMode()) |
| 120 | { |
| 121 | /* In case it's being set to 100% */ |
| 122 | if (percent < _owner->getFailSafePercent()) |
| 123 | { |
| 124 | percent = _owner->getFailSafePercent(); |
| 125 | } |
| 126 | } |
| 127 | #endif |
| 128 | |
| 129 | // value and kFanFailSafeDutyCycle are 10 for 10% so let's fix that. |
| 130 | percent /= 100; |
| 131 | |
| 132 | // PidSensorMap for writing. |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 133 | for (const auto& it : _inputs) |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 134 | { |
Patrick Venture | a58197c | 2018-06-11 15:29:45 -0700 | [diff] [blame] | 135 | auto sensor = _owner->getSensor(it); |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame^] | 136 | sensor->write(percent); |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 137 | } |
| 138 | |
Patrick Venture | d801218 | 2018-03-08 08:21:38 -0800 | [diff] [blame] | 139 | return; |
| 140 | } |