blob: 0ffadf104781fbbb524ce892dbd9f00fb90c7a7b [file] [log] [blame]
Patrick Venture5c7cc542018-06-11 14:29:38 -07001/**
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 Ventureda4a5dd2018-08-31 09:42:48 -070019#include "conf.hpp"
James Feist22c257a2018-08-31 14:07:12 -070020#include "pid/controller.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070021#include "pid/fancontroller.hpp"
James Feist22c257a2018-08-31 14:07:12 -070022#include "pid/stepwisecontroller.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070023#include "pid/thermalcontroller.hpp"
24
Patrick Venturea83a3ec2020-08-04 09:52:05 -070025#include <sdbusplus/bus.hpp>
26
Patrick Venture5c7cc542018-06-11 14:29:38 -070027#include <iostream>
28#include <memory>
Patrick Venture5c7cc542018-06-11 14:29:38 -070029#include <unordered_map>
30
Patrick Venture5c7cc542018-06-11 14:29:38 -070031static constexpr bool deferSignals = true;
32static constexpr auto objectPath = "/xyz/openbmc_project/settings/fanctrl/zone";
33
Patrick Venture7af157b2018-10-30 11:24:40 -070034static std::string getControlPath(int64_t zone)
Patrick Venture5c7cc542018-06-11 14:29:38 -070035{
36 return std::string(objectPath) + std::to_string(zone);
37}
38
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070039std::unordered_map<int64_t, std::unique_ptr<PIDZone>>
Patrick Venture7e3f8ab2020-08-03 11:10:43 -070040 buildZones(const std::map<int64_t, conf::PIDConf>& zonePids,
James Feistf81f2882019-02-26 11:26:36 -080041 std::map<int64_t, struct conf::ZoneConfig>& zoneConfigs,
Patrick Venturef3252312018-10-30 08:42:53 -070042 SensorManager& mgr, sdbusplus::bus::bus& modeControlBus)
Patrick Venture5c7cc542018-06-11 14:29:38 -070043{
44 std::unordered_map<int64_t, std::unique_ptr<PIDZone>> zones;
45
Patrick Venture4a2dc4d2018-10-23 09:02:55 -070046 for (const auto& zi : zonePids)
Patrick Venture5c7cc542018-06-11 14:29:38 -070047 {
48 auto zoneId = static_cast<int64_t>(zi.first);
49 /* The above shouldn't be necessary but is, and I am having trouble
50 * locating my notes on why. If I recall correctly it was casting it
51 * down to a byte in at least some cases causing weird behaviors.
52 */
53
54 auto zoneConf = zoneConfigs.find(zoneId);
55 if (zoneConf == zoneConfigs.end())
56 {
57 /* The Zone doesn't have a configuration, bail. */
58 static constexpr auto err =
59 "Bailing during load, missing Zone Configuration";
60 std::cerr << err << std::endl;
61 throw std::runtime_error(err);
62 }
63
James Feistf81f2882019-02-26 11:26:36 -080064 const conf::PIDConf& pidConfig = zi.second;
Patrick Venture5c7cc542018-06-11 14:29:38 -070065
66 auto zone = std::make_unique<PIDZone>(
James Feist3484bed2019-02-25 13:28:18 -080067 zoneId, zoneConf->second.minThermalOutput,
Patrick Venture8e2fdb32019-02-11 09:39:59 -080068 zoneConf->second.failsafePercent, mgr, modeControlBus,
Patrick Venture7af157b2018-10-30 11:24:40 -070069 getControlPath(zi.first).c_str(), deferSignals);
Patrick Venture5c7cc542018-06-11 14:29:38 -070070
Patrick Venture0bbeaf82018-10-30 18:50:31 -070071 std::cerr << "Zone Id: " << zone->getZoneID() << "\n";
Patrick Venture5c7cc542018-06-11 14:29:38 -070072
73 // For each PID create a Controller and a Sensor.
Patrick Ventureadc9e862018-10-23 09:26:44 -070074 for (const auto& pit : pidConfig)
Patrick Venture5c7cc542018-06-11 14:29:38 -070075 {
76 std::vector<std::string> inputs;
77 std::string name = pit.first;
James Feistf81f2882019-02-26 11:26:36 -080078 const struct conf::ControllerInfo* info = &pit.second;
Patrick Venture5c7cc542018-06-11 14:29:38 -070079
80 std::cerr << "PID name: " << name << "\n";
81
82 /*
83 * TODO(venture): Need to check if input is known to the
84 * SensorManager.
85 */
86 if (info->type == "fan")
87 {
Patrick Venture4a2dc4d2018-10-23 09:02:55 -070088 for (const auto& i : info->inputs)
Patrick Venture5c7cc542018-06-11 14:29:38 -070089 {
90 inputs.push_back(i);
91 zone->addFanInput(i);
92 }
93
Patrick Venture563a3562018-10-30 09:31:26 -070094 auto pid = FanController::createFanPid(zone.get(), name, inputs,
James Feist22c257a2018-08-31 14:07:12 -070095 info->pidInfo);
Patrick Venture5c7cc542018-06-11 14:29:38 -070096 zone->addFanPID(std::move(pid));
97 }
Patrick Venturee94bdc42018-11-15 18:41:21 -080098 else if (isThermalType(info->type))
Patrick Venture5c7cc542018-06-11 14:29:38 -070099 {
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700100 for (const auto& i : info->inputs)
Patrick Venture5c7cc542018-06-11 14:29:38 -0700101 {
102 inputs.push_back(i);
103 zone->addThermalInput(i);
104 }
105
Patrick Venture563a3562018-10-30 09:31:26 -0700106 auto pid = ThermalController::createThermalPid(
James Feist734f9532018-11-15 12:13:18 -0800107 zone.get(), name, inputs, info->setpoint, info->pidInfo,
Patrick Venturee94bdc42018-11-15 18:41:21 -0800108 getThermalType(info->type));
James Feist22c257a2018-08-31 14:07:12 -0700109
Patrick Venture5c7cc542018-06-11 14:29:38 -0700110 zone->addThermalPID(std::move(pid));
111 }
James Feist22c257a2018-08-31 14:07:12 -0700112 else if (info->type == "stepwise")
113 {
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700114 for (const auto& i : info->inputs)
James Feist22c257a2018-08-31 14:07:12 -0700115 {
116 inputs.push_back(i);
117 zone->addThermalInput(i);
118 }
Patrick Venture563a3562018-10-30 09:31:26 -0700119 auto stepwise = StepwiseController::createStepwiseController(
James Feist22c257a2018-08-31 14:07:12 -0700120 zone.get(), name, inputs, info->stepwiseInfo);
121 zone->addThermalPID(std::move(stepwise));
122 }
Patrick Venture5c7cc542018-06-11 14:29:38 -0700123
124 std::cerr << "inputs: ";
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700125 for (const auto& i : inputs)
Patrick Venture5c7cc542018-06-11 14:29:38 -0700126 {
127 std::cerr << i << ", ";
128 }
129 std::cerr << "\n";
130 }
131
132 zone->emit_object_added();
133 zones[zoneId] = std::move(zone);
134 }
135
136 return zones;
137}