Patrick Venture | e620656 | 2018-03-08 15:36:53 -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 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 17 | #include "config.h" |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 18 | |
Patrick Venture | ba8ffa7 | 2019-02-11 12:03:56 -0800 | [diff] [blame] | 19 | #include "build/buildjson.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 20 | #include "conf.hpp" |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 21 | #include "interfaces.hpp" |
Patrick Venture | 5c7cc54 | 2018-06-11 14:29:38 -0700 | [diff] [blame] | 22 | #include "pid/builder.hpp" |
Patrick Venture | ba8ffa7 | 2019-02-11 12:03:56 -0800 | [diff] [blame] | 23 | #include "pid/buildjson.hpp" |
James Feist | ce6a3f3 | 2019-03-12 11:20:16 -0700 | [diff] [blame] | 24 | #include "pid/pidloop.hpp" |
Patrick Venture | c32e3fc | 2019-02-28 10:01:11 -0800 | [diff] [blame] | 25 | #include "pid/tuning.hpp" |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 26 | #include "pid/zone.hpp" |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 27 | #include "sensors/builder.hpp" |
Patrick Venture | ba8ffa7 | 2019-02-11 12:03:56 -0800 | [diff] [blame] | 28 | #include "sensors/buildjson.hpp" |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 29 | #include "sensors/manager.hpp" |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 30 | #include "util.hpp" |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 31 | |
Patrick Venture | b5cc37c | 2019-03-11 09:11:55 -0700 | [diff] [blame] | 32 | #include <CLI/CLI.hpp> |
James Feist | ce6a3f3 | 2019-03-12 11:20:16 -0700 | [diff] [blame] | 33 | #include <boost/asio/io_context.hpp> |
| 34 | #include <boost/asio/steady_timer.hpp> |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 35 | #include <chrono> |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 36 | #include <iostream> |
James Feist | ce6a3f3 | 2019-03-12 11:20:16 -0700 | [diff] [blame] | 37 | #include <list> |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 38 | #include <map> |
| 39 | #include <memory> |
James Feist | ce6a3f3 | 2019-03-12 11:20:16 -0700 | [diff] [blame] | 40 | #include <sdbusplus/asio/connection.hpp> |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 41 | #include <sdbusplus/bus.hpp> |
| 42 | #include <thread> |
| 43 | #include <unordered_map> |
Patrick Venture | ba8ffa7 | 2019-02-11 12:03:56 -0800 | [diff] [blame] | 44 | #include <utility> |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 45 | #include <vector> |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 46 | |
Patrick Venture | 9f04441 | 2018-09-20 19:49:55 -0700 | [diff] [blame] | 47 | #if CONFIGURE_DBUS |
| 48 | #include "dbus/dbusconfiguration.hpp" |
| 49 | #endif |
| 50 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 51 | /* The configuration converted sensor list. */ |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 52 | std::map<std::string, struct conf::SensorConfig> sensorConfig = {}; |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 53 | /* The configuration converted PID list. */ |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 54 | std::map<int64_t, conf::PIDConf> zoneConfig = {}; |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 55 | /* The configuration converted Zone configuration. */ |
James Feist | f81f288 | 2019-02-26 11:26:36 -0800 | [diff] [blame] | 56 | std::map<int64_t, struct conf::ZoneConfig> zoneDetailsConfig = {}; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 57 | |
Patrick Venture | c19f5d4 | 2019-02-14 10:59:47 -0800 | [diff] [blame] | 58 | /** the swampd daemon will check for the existence of this file. */ |
| 59 | constexpr auto jsonConfigurationPath = "/usr/share/swampd/config.json"; |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 60 | std::string configPath = ""; |
Patrick Venture | c19f5d4 | 2019-02-14 10:59:47 -0800 | [diff] [blame] | 61 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 62 | /* async io context for operation */ |
| 63 | boost::asio::io_context io; |
| 64 | |
| 65 | /* buses for system control */ |
| 66 | static sdbusplus::asio::connection modeControlBus(io); |
| 67 | static sdbusplus::asio::connection |
| 68 | hostBus(io, sdbusplus::bus::new_system().release()); |
| 69 | static sdbusplus::asio::connection |
| 70 | passiveBus(io, sdbusplus::bus::new_system().release()); |
| 71 | |
| 72 | void restartControlLoops() |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 73 | { |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 74 | static SensorManager mgmr; |
| 75 | static std::unordered_map<int64_t, std::unique_ptr<PIDZone>> zones; |
| 76 | static std::list<boost::asio::steady_timer> timers; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 77 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 78 | timers.clear(); |
Patrick Venture | 4cb7c05 | 2019-02-14 11:11:33 -0800 | [diff] [blame] | 79 | |
Patrick Venture | 9f04441 | 2018-09-20 19:49:55 -0700 | [diff] [blame] | 80 | #if CONFIGURE_DBUS |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 81 | |
| 82 | static boost::asio::steady_timer reloadTimer(io); |
| 83 | if (!dbus_configuration::init(modeControlBus, reloadTimer)) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 84 | { |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 85 | return; // configuration not ready |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 86 | } |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 87 | |
Patrick Venture | 18b1311 | 2019-02-14 11:43:59 -0800 | [diff] [blame] | 88 | #else |
| 89 | const std::string& path = |
| 90 | (configPath.length() > 0) ? configPath : jsonConfigurationPath; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 91 | |
| 92 | /* |
| 93 | * When building the sensors, if any of the dbus passive ones aren't on the |
| 94 | * bus, it'll fail immediately. |
| 95 | */ |
Patrick Venture | 18b1311 | 2019-02-14 11:43:59 -0800 | [diff] [blame] | 96 | try |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 97 | { |
Patrick Venture | 18b1311 | 2019-02-14 11:43:59 -0800 | [diff] [blame] | 98 | auto jsonData = parseValidateJson(path); |
| 99 | sensorConfig = buildSensorsFromJson(jsonData); |
| 100 | std::tie(zoneConfig, zoneDetailsConfig) = buildPIDsFromJson(jsonData); |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 101 | } |
Patrick Venture | 18b1311 | 2019-02-14 11:43:59 -0800 | [diff] [blame] | 102 | catch (const std::exception& e) |
| 103 | { |
| 104 | std::cerr << "Failed during building: " << e.what() << "\n"; |
| 105 | exit(EXIT_FAILURE); /* fatal error. */ |
| 106 | } |
| 107 | #endif |
Patrick Venture | 4cb7c05 | 2019-02-14 11:11:33 -0800 | [diff] [blame] | 108 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 109 | mgmr = buildSensors(sensorConfig, passiveBus, hostBus); |
| 110 | zones = buildZones(zoneConfig, zoneDetailsConfig, mgmr, modeControlBus); |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 111 | |
| 112 | if (0 == zones.size()) |
| 113 | { |
| 114 | std::cerr << "No zones defined, exiting.\n"; |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 115 | std::exit(EXIT_FAILURE); |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 116 | } |
| 117 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 118 | for (const auto& i : zones) |
| 119 | { |
| 120 | auto& timer = timers.emplace_back(io); |
| 121 | std::cerr << "pushing zone " << i.first << "\n"; |
| 122 | pidControlLoop(i.second.get(), timer); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | int main(int argc, char* argv[]) |
| 127 | { |
| 128 | loggingPath = ""; |
| 129 | loggingEnabled = false; |
| 130 | tuningEnabled = false; |
| 131 | |
| 132 | CLI::App app{"OpenBMC Fan Control Daemon"}; |
| 133 | |
| 134 | app.add_option("-c,--conf", configPath, |
| 135 | "Optional parameter to specify configuration at run-time") |
| 136 | ->check(CLI::ExistingFile); |
| 137 | app.add_option("-l,--log", loggingPath, |
| 138 | "Optional parameter to specify logging folder") |
| 139 | ->check(CLI::ExistingDirectory); |
| 140 | app.add_flag("-t,--tuning", tuningEnabled, "Enable or disable tuning"); |
| 141 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 142 | CLI11_PARSE(app, argc, argv); |
| 143 | |
Kun Yi | d469559 | 2019-05-17 10:42:18 -0700 | [diff] [blame^] | 144 | loggingEnabled = (!loggingPath.empty()); |
| 145 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 146 | static constexpr auto modeRoot = "/xyz/openbmc_project/settings/fanctrl"; |
| 147 | // Create a manager for the ModeBus because we own it. |
| 148 | sdbusplus::server::manager::manager( |
| 149 | static_cast<sdbusplus::bus::bus&>(modeControlBus), modeRoot); |
| 150 | hostBus.request_name("xyz.openbmc_project.Hwmon.external"); |
| 151 | modeControlBus.request_name("xyz.openbmc_project.State.FanCtrl"); |
| 152 | |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 153 | /* |
| 154 | * All sensors are managed by one manager, but each zone has a pointer to |
| 155 | * it. |
| 156 | */ |
| 157 | |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 158 | restartControlLoops(); |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 159 | |
James Feist | ce6a3f3 | 2019-03-12 11:20:16 -0700 | [diff] [blame] | 160 | io.run(); |
James Feist | 1fe0895 | 2019-05-07 09:17:16 -0700 | [diff] [blame] | 161 | return 0; |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 162 | } |