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