blob: 10d94f2b618ab45afac507f1098ebfe80d4fc62a [file] [log] [blame]
James Feist139cb572018-09-10 15:26:18 -07001/*
2// Copyright (c) 2018 Intel Corporation
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 <unistd.h>
18
19#include <TachSensor.hpp>
20#include <Utils.hpp>
21#include <boost/algorithm/string/predicate.hpp>
22#include <boost/algorithm/string/replace.hpp>
23#include <boost/date_time/posix_time/posix_time.hpp>
24#include <iostream>
25#include <limits>
26#include <sdbusplus/asio/connection.hpp>
27#include <sdbusplus/asio/object_server.hpp>
28#include <string>
29
30static constexpr unsigned int PWM_POLL_MS = 500;
31static constexpr size_t WARN_AFTER_ERROR_COUNT = 10;
32
33TachSensor::TachSensor(const std::string &path,
34 sdbusplus::asio::object_server &objectServer,
35 std::shared_ptr<sdbusplus::asio::connection> &conn,
36 boost::asio::io_service &io, const std::string &fanName,
37 std::vector<thresholds::Threshold> &&_thresholds,
38 const std::string &sensorConfiguration) :
James Feistaf79dd32018-09-12 12:54:15 -070039 Sensor(),
40 path(path), objServer(objectServer), dbusConnection(conn),
James Feist139cb572018-09-10 15:26:18 -070041 name(boost::replace_all_copy(fanName, " ", "_")),
James Feistaf79dd32018-09-12 12:54:15 -070042 configuration(sensorConfiguration),
43 input_dev(io, open(path.c_str(), O_RDONLY)), wait_timer(io), err_count(0),
James Feist139cb572018-09-10 15:26:18 -070044 // todo, get these from config
45 max_value(25000), min_value(0)
46{
James Feistaf79dd32018-09-12 12:54:15 -070047 thresholds = std::move(_thresholds);
48 sensorInterface = objectServer.add_interface(
49 "/xyz/openbmc_project/sensors/fan_tach/" + name,
50 "xyz.openbmc_project.Sensor.Value");
51
James Feist139cb572018-09-10 15:26:18 -070052 if (thresholds::HasWarningInterface(thresholds))
53 {
James Feistaf79dd32018-09-12 12:54:15 -070054 thresholdInterfaceWarning = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070055 "/xyz/openbmc_project/sensors/fan_tach/" + name,
56 "xyz.openbmc_project.Sensor.Threshold.Warning");
57 }
58 if (thresholds::HasCriticalInterface(thresholds))
59 {
James Feistaf79dd32018-09-12 12:54:15 -070060 thresholdInterfaceCritical = objectServer.add_interface(
James Feist139cb572018-09-10 15:26:18 -070061 "/xyz/openbmc_project/sensors/fan_tach/" + name,
62 "xyz.openbmc_project.Sensor.Threshold.Critical");
63 }
64 set_initial_properties(conn);
65 isPowerOn(dbusConnection); // first call initializes
66 setup_read();
67}
68
69TachSensor::~TachSensor()
70{
71 // close the input dev to cancel async operations
72 input_dev.close();
73 wait_timer.cancel();
James Feistaf79dd32018-09-12 12:54:15 -070074 objServer.remove_interface(thresholdInterfaceWarning);
75 objServer.remove_interface(thresholdInterfaceCritical);
76 objServer.remove_interface(sensorInterface);
James Feist139cb572018-09-10 15:26:18 -070077}
78
79void TachSensor::setup_read(void)
80{
81 boost::asio::async_read_until(
82 input_dev, read_buf, '\n',
83 [&](const boost::system::error_code &ec,
84 std::size_t /*bytes_transfered*/) { handle_response(ec); });
85}
86
87void TachSensor::handle_response(const boost::system::error_code &err)
88{
89 if (err == boost::system::errc::bad_file_descriptor)
90 {
91 return; // we're being destroyed
92 }
93 std::istream response_stream(&read_buf);
94 if (!err)
95 {
96 std::string response;
97 try
98 {
99 std::getline(response_stream, response);
100 float nvalue = std::stof(response);
101 response_stream.clear();
102 if (nvalue != value)
103 {
104 update_value(nvalue);
105 }
106 err_count = 0;
107 }
108 catch (const std::invalid_argument &)
109 {
110 err_count++;
111 }
112 }
113 else
114 {
115
116 err_count++;
117 }
118 // only send value update once
119 if (err_count == WARN_AFTER_ERROR_COUNT)
120 {
121 // only an error if power is on
122 if (isPowerOn(dbusConnection))
123 {
124 std::cerr << "Failure to read sensor " << name << " at " << path
125 << "\n";
126 update_value(0);
127 }
128 else
129 {
130 err_count = 0; // check power again in 10 cycles
James Feistaf79dd32018-09-12 12:54:15 -0700131 sensorInterface->set_property(
James Feist139cb572018-09-10 15:26:18 -0700132 "Value", std::numeric_limits<double>::quiet_NaN());
133 }
134 }
135 response_stream.clear();
136 input_dev.close();
137 int fd = open(path.c_str(), O_RDONLY);
138 if (fd <= 0)
139 {
140 return; // we're no longer valid
141 }
142 input_dev.assign(fd);
143 wait_timer.expires_from_now(boost::posix_time::milliseconds(PWM_POLL_MS));
144 wait_timer.async_wait([&](const boost::system::error_code &ec) {
145 if (ec == boost::asio::error::operation_aborted)
146 {
147 return; // we're being canceled
148 }
149 setup_read();
150 });
151}
152
153void TachSensor::check_thresholds(void)
154{
James Feistaf79dd32018-09-12 12:54:15 -0700155 thresholds::checkThresholds(this);
James Feist139cb572018-09-10 15:26:18 -0700156}
157
158void TachSensor::update_value(const double &new_value)
159{
James Feistaf79dd32018-09-12 12:54:15 -0700160 sensorInterface->set_property("Value", new_value);
James Feist139cb572018-09-10 15:26:18 -0700161 value = new_value;
162 check_thresholds();
163}
164
James Feist139cb572018-09-10 15:26:18 -0700165void TachSensor::set_initial_properties(
166 std::shared_ptr<sdbusplus::asio::connection> &conn)
167{
168 // todo, get max and min from configuration
James Feistaf79dd32018-09-12 12:54:15 -0700169 sensorInterface->register_property("MaxValue", max_value);
170 sensorInterface->register_property("MinValue", min_value);
171 sensorInterface->register_property("Value", value);
James Feist139cb572018-09-10 15:26:18 -0700172
173 for (auto &threshold : thresholds)
174 {
175 std::shared_ptr<sdbusplus::asio::dbus_interface> iface;
176 std::string level;
177 std::string alarm;
178 if (threshold.level == thresholds::Level::CRITICAL)
179 {
James Feistaf79dd32018-09-12 12:54:15 -0700180 iface = thresholdInterfaceCritical;
James Feist139cb572018-09-10 15:26:18 -0700181 if (threshold.direction == thresholds::Direction::HIGH)
182 {
183 level = "CriticalHigh";
184 alarm = "CriticalAlarmHigh";
185 }
186 else
187 {
188 level = "CriticalLow";
189 alarm = "CriticalAlarmLow";
190 }
191 }
192 else if (threshold.level == thresholds::Level::WARNING)
193 {
James Feistaf79dd32018-09-12 12:54:15 -0700194 iface = thresholdInterfaceWarning;
James Feist139cb572018-09-10 15:26:18 -0700195 if (threshold.direction == thresholds::Direction::HIGH)
196 {
197 level = "WarningHigh";
198 alarm = "WarningAlarmHigh";
199 }
200 else
201 {
202 level = "WarningLow";
203 alarm = "WarningAlarmLow";
204 }
205 }
206 else
207 {
208 std::cerr << "Unknown threshold level" << threshold.level << "\n";
209 continue;
210 }
211 if (!iface)
212 {
213 std::cout << "trying to set uninitialized interface\n";
214 continue;
215 }
216 iface->register_property(
217 level, threshold.value,
218 [&](const double &request, double &oldValue) {
219 oldValue = request; // todo, just let the config do this?
220 threshold.value = request;
221 thresholds::persistThreshold(
222 configuration,
223 "xyz.openbmc_project.Configuration.AspeedFan", threshold,
224 conn);
225 return 1;
226 });
227 iface->register_property(alarm, false);
228 }
James Feistaf79dd32018-09-12 12:54:15 -0700229 if (!sensorInterface->initialize())
James Feist139cb572018-09-10 15:26:18 -0700230 {
231 std::cerr << "error initializing value interface\n";
232 }
James Feistaf79dd32018-09-12 12:54:15 -0700233 if (thresholdInterfaceWarning && !thresholdInterfaceWarning->initialize())
James Feist139cb572018-09-10 15:26:18 -0700234 {
235 std::cerr << "error initializing warning threshold interface\n";
236 }
237
James Feistaf79dd32018-09-12 12:54:15 -0700238 if (thresholdInterfaceCritical && !thresholdInterfaceCritical->initialize())
James Feist139cb572018-09-10 15:26:18 -0700239 {
240 std::cerr << "error initializing critical threshold interface\n";
241 }
242}