Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [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 | |
| 17 | #include "pid/builder.hpp" |
| 18 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 19 | #include "conf.hpp" |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 20 | #include "pid/controller.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 21 | #include "pid/fancontroller.hpp" |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 22 | #include "pid/stepwisecontroller.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 23 | #include "pid/thermalcontroller.hpp" |
| 24 | |
Patrick Venture | a83a3ec | 2020-08-04 09:52:05 -0700 | [diff] [blame] | 25 | #include <sdbusplus/bus.hpp> |
| 26 | |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 27 | #include <iostream> |
| 28 | #include <memory> |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 29 | #include <unordered_map> |
| 30 | |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 31 | namespace pid_control |
| 32 | { |
| 33 | |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 34 | static constexpr bool deferSignals = true; |
| 35 | static constexpr auto objectPath = "/xyz/openbmc_project/settings/fanctrl/zone"; |
| 36 | |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 37 | static std::string getControlPath(int64_t zone) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 38 | { |
| 39 | return std::string(objectPath) + std::to_string(zone); |
| 40 | } |
| 41 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 42 | std::unordered_map<int64_t, std::unique_ptr<PIDZone>> |
Patrick Venture | 7e3f8ab | 2020-08-03 11:10:43 -0700 | [diff] [blame] | 43 | buildZones(const std::map<int64_t, conf::PIDConf>& zonePids, |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 44 | std::map<int64_t, struct conf::ZoneConfig>& zoneConfigs, |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 45 | SensorManager& mgr, sdbusplus::bus::bus& modeControlBus) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 46 | { |
| 47 | std::unordered_map<int64_t, std::unique_ptr<PIDZone>> zones; |
| 48 | |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 49 | for (const auto& zi : zonePids) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 50 | { |
| 51 | auto zoneId = static_cast<int64_t>(zi.first); |
| 52 | /* The above shouldn't be necessary but is, and I am having trouble |
| 53 | * locating my notes on why. If I recall correctly it was casting it |
| 54 | * down to a byte in at least some cases causing weird behaviors. |
| 55 | */ |
| 56 | |
| 57 | auto zoneConf = zoneConfigs.find(zoneId); |
| 58 | if (zoneConf == zoneConfigs.end()) |
| 59 | { |
| 60 | /* The Zone doesn't have a configuration, bail. */ |
| 61 | static constexpr auto err = |
| 62 | "Bailing during load, missing Zone Configuration"; |
| 63 | std::cerr << err << std::endl; |
| 64 | throw std::runtime_error(err); |
| 65 | } |
| 66 | |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 67 | const conf::PIDConf& pidConfig = zi.second; |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 68 | |
| 69 | auto zone = std::make_unique<PIDZone>( |
James Feist | 3484bed | 2019-02-25 13:28:18 -0800 | [diff] [blame] | 70 | zoneId, zoneConf->second.minThermalOutput, |
Patrick Venture | 8e2fdb3 | 2019-02-11 09:39:59 -0800 | [diff] [blame] | 71 | zoneConf->second.failsafePercent, mgr, modeControlBus, |
Patrick Venture | 7af157b | 2018-10-30 11:24:40 -0700 | [diff] [blame] | 72 | getControlPath(zi.first).c_str(), deferSignals); |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 73 | |
Patrick Venture | 0bbeaf8 | 2018-10-30 18:50:31 -0700 | [diff] [blame] | 74 | std::cerr << "Zone Id: " << zone->getZoneID() << "\n"; |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 75 | |
| 76 | // For each PID create a Controller and a Sensor. |
Patrick Venture | adc9e86 | 2018-10-23 09:26:44 -0700 | [diff] [blame] | 77 | for (const auto& pit : pidConfig) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 78 | { |
| 79 | std::vector<std::string> inputs; |
| 80 | std::string name = pit.first; |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 81 | const struct conf::ControllerInfo* info = &pit.second; |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 82 | |
| 83 | std::cerr << "PID name: " << name << "\n"; |
| 84 | |
| 85 | /* |
| 86 | * TODO(venture): Need to check if input is known to the |
| 87 | * SensorManager. |
| 88 | */ |
| 89 | if (info->type == "fan") |
| 90 | { |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 91 | for (const auto& i : info->inputs) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 92 | { |
| 93 | inputs.push_back(i); |
| 94 | zone->addFanInput(i); |
| 95 | } |
| 96 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 97 | auto pid = FanController::createFanPid(zone.get(), name, inputs, |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 98 | info->pidInfo); |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 99 | zone->addFanPID(std::move(pid)); |
| 100 | } |
Patrick Venture | e94bdc4 | 2018-11-15 18:41:21 -0800 | [diff] [blame] | 101 | else if (isThermalType(info->type)) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 102 | { |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 103 | for (const auto& i : info->inputs) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 104 | { |
| 105 | inputs.push_back(i); |
| 106 | zone->addThermalInput(i); |
| 107 | } |
| 108 | |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 109 | auto pid = ThermalController::createThermalPid( |
James Feist | 734f953 | 2018-11-15 12:13:18 -0800 | [diff] [blame] | 110 | zone.get(), name, inputs, info->setpoint, info->pidInfo, |
Patrick Venture | e94bdc4 | 2018-11-15 18:41:21 -0800 | [diff] [blame] | 111 | getThermalType(info->type)); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 112 | |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 113 | zone->addThermalPID(std::move(pid)); |
| 114 | } |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 115 | else if (info->type == "stepwise") |
| 116 | { |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 117 | for (const auto& i : info->inputs) |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 118 | { |
| 119 | inputs.push_back(i); |
| 120 | zone->addThermalInput(i); |
| 121 | } |
Patrick Venture | 563a356 | 2018-10-30 09:31:26 -0700 | [diff] [blame] | 122 | auto stepwise = StepwiseController::createStepwiseController( |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 123 | zone.get(), name, inputs, info->stepwiseInfo); |
| 124 | zone->addThermalPID(std::move(stepwise)); |
| 125 | } |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 126 | |
| 127 | std::cerr << "inputs: "; |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 128 | for (const auto& i : inputs) |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 129 | { |
| 130 | std::cerr << i << ", "; |
| 131 | } |
| 132 | std::cerr << "\n"; |
| 133 | } |
| 134 | |
| 135 | zone->emit_object_added(); |
| 136 | zones[zoneId] = std::move(zone); |
| 137 | } |
| 138 | |
| 139 | return zones; |
| 140 | } |
Patrick Venture | a076487 | 2020-08-08 07:48:43 -0700 | [diff] [blame] | 141 | |
| 142 | } // namespace pid_control |