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