blob: 144f9d9f810abe3bc7230860b2657c0bdefd75ad [file] [log] [blame]
James Feist6714a252018-09-10 15:26:18 -07001/*
2// Copyright (c) 2017 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
Ed Tanous8a57ec02020-10-09 12:46:52 -070019#include <HwmonTempSensor.hpp>
James Feist8086aba2020-08-25 16:00:59 -070020#include <boost/asio/read_until.hpp>
James Feist38fb5982020-05-28 10:09:54 -070021#include <sdbusplus/asio/connection.hpp>
22#include <sdbusplus/asio/object_server.hpp>
23
Zev Weissd1c8f442022-07-29 11:54:41 -070024#include <charconv>
James Feist6714a252018-09-10 15:26:18 -070025#include <iostream>
Patrick Venture96e97db2019-10-31 13:44:38 -070026#include <istream>
James Feist6714a252018-09-10 15:26:18 -070027#include <limits>
Patrick Venture96e97db2019-10-31 13:44:38 -070028#include <memory>
James Feist6714a252018-09-10 15:26:18 -070029#include <string>
Zev Weissa1456c42022-07-18 16:59:35 -070030#include <utility>
Patrick Venture96e97db2019-10-31 13:44:38 -070031#include <vector>
James Feist6714a252018-09-10 15:26:18 -070032
Bruce Mitchelle5fc3a52021-08-10 11:50:25 -050033// Temperatures are read in milli degrees Celsius, we need degrees Celsius.
34// Pressures are read in kilopascal, we need Pascals. On D-Bus for Open BMC
35// we use the International System of Units without prefixes.
36// Links to the kernel documentation:
37// https://www.kernel.org/doc/Documentation/hwmon/sysfs-interface
38// https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-bus-iio
39// For IIO RAW sensors we get a raw_value, an offset, and scale to compute
40// the value = (raw_value + offset) * scale
James Feistce3fca42018-11-21 12:58:24 -080041
James Feist6714a252018-09-10 15:26:18 -070042HwmonTempSensor::HwmonTempSensor(
James Feistd8705872019-02-08 13:26:09 -080043 const std::string& path, const std::string& objectType,
44 sdbusplus::asio::object_server& objectServer,
45 std::shared_ptr<sdbusplus::asio::connection>& conn,
46 boost::asio::io_service& io, const std::string& sensorName,
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050047 std::vector<thresholds::Threshold>&& thresholdsIn,
48 const struct SensorParams& thisSensorParameters, const float pollRate,
Zev Weissa1456c42022-07-18 16:59:35 -070049 const std::string& sensorConfiguration, const PowerState powerState,
50 const std::shared_ptr<I2CDevice>& i2cDevice) :
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050051 Sensor(boost::replace_all_copy(sensorName, " ", "_"),
52 std::move(thresholdsIn), sensorConfiguration, objectType, false,
53 false, thisSensorParameters.maxValue, thisSensorParameters.minValue,
54 conn, powerState),
Zev Weissa1456c42022-07-18 16:59:35 -070055 i2cDevice(i2cDevice), objServer(objectServer),
Zev Weissd1c8f442022-07-29 11:54:41 -070056 inputDev(io, path, boost::asio::random_access_file::read_only),
57 waitTimer(io), path(path), offsetValue(thisSensorParameters.offsetValue),
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050058 scaleValue(thisSensorParameters.scaleValue),
Ed Tanous8a57ec02020-10-09 12:46:52 -070059 sensorPollMs(static_cast<unsigned int>(pollRate * 1000))
James Feist6714a252018-09-10 15:26:18 -070060{
James Feist251c7822018-09-12 12:54:15 -070061 sensorInterface = objectServer.add_interface(
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050062 "/xyz/openbmc_project/sensors/" + thisSensorParameters.typeName + "/" +
63 name,
James Feist251c7822018-09-12 12:54:15 -070064 "xyz.openbmc_project.Sensor.Value");
65
Jayashree Dhanapal56678082022-01-04 17:27:20 +053066 for (const auto& threshold : thresholds)
James Feist6714a252018-09-10 15:26:18 -070067 {
Jayashree Dhanapal56678082022-01-04 17:27:20 +053068 std::string interface = thresholds::getInterface(threshold.level);
69 thresholdInterfaces[static_cast<size_t>(threshold.level)] =
70 objectServer.add_interface("/xyz/openbmc_project/sensors/" +
71 thisSensorParameters.typeName + "/" +
72 name,
73 interface);
James Feist6714a252018-09-10 15:26:18 -070074 }
Bruce Mitchell544e7dc2021-07-29 18:05:49 -050075 association = objectServer.add_interface("/xyz/openbmc_project/sensors/" +
76 thisSensorParameters.typeName +
77 "/" + name,
78 association::interface);
Andrei Kartashev39287412022-02-04 16:04:47 +030079 setInitialProperties(thisSensorParameters.units);
James Feist6714a252018-09-10 15:26:18 -070080}
81
Zev Weissa1456c42022-07-18 16:59:35 -070082bool HwmonTempSensor::isActive()
James Feist6714a252018-09-10 15:26:18 -070083{
Zev Weissa1456c42022-07-18 16:59:35 -070084 return inputDev.is_open();
85}
86
87void HwmonTempSensor::activate(const std::string& newPath,
88 const std::shared_ptr<I2CDevice>& newI2CDevice)
89{
90 path = newPath;
91 i2cDevice = newI2CDevice;
92 inputDev.open(path, boost::asio::random_access_file::read_only);
93 markAvailable(true);
94 setupRead();
95}
96
97void HwmonTempSensor::deactivate()
98{
99 markAvailable(false);
James Feist6714a252018-09-10 15:26:18 -0700100 // close the input dev to cancel async operations
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -0700101 inputDev.close();
102 waitTimer.cancel();
Zev Weissa1456c42022-07-18 16:59:35 -0700103 i2cDevice = nullptr;
104 path = "";
105}
106
107HwmonTempSensor::~HwmonTempSensor()
108{
109 deactivate();
110
Jayashree Dhanapal56678082022-01-04 17:27:20 +0530111 for (const auto& iface : thresholdInterfaces)
112 {
113 objServer.remove_interface(iface);
114 }
James Feist251c7822018-09-12 12:54:15 -0700115 objServer.remove_interface(sensorInterface);
James Feist078f2322019-03-08 11:09:05 -0800116 objServer.remove_interface(association);
James Feist6714a252018-09-10 15:26:18 -0700117}
118
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -0700119void HwmonTempSensor::setupRead(void)
James Feist6714a252018-09-10 15:26:18 -0700120{
Konstantin Aladysheva7345942021-04-28 17:09:02 +0300121 if (!readingStateGood())
122 {
123 markAvailable(false);
124 updateValue(std::numeric_limits<double>::quiet_NaN());
125 restartRead();
126 return;
127 }
Yong Lif3fd1912020-03-25 21:35:23 +0800128
Konstantin Aladysheva7345942021-04-28 17:09:02 +0300129 std::weak_ptr<HwmonTempSensor> weakRef = weak_from_this();
Zev Weissd1c8f442022-07-29 11:54:41 -0700130 inputDev.async_read_some_at(
131 0, boost::asio::buffer(readBuf),
132 [weakRef](const boost::system::error_code& ec, std::size_t bytesRead) {
Ed Tanousbb679322022-05-16 16:10:00 -0700133 std::shared_ptr<HwmonTempSensor> self = weakRef.lock();
134 if (self)
135 {
Zev Weissd1c8f442022-07-29 11:54:41 -0700136 self->handleResponse(ec, bytesRead);
Ed Tanousbb679322022-05-16 16:10:00 -0700137 }
Zev Weissd1c8f442022-07-29 11:54:41 -0700138 });
James Feist6714a252018-09-10 15:26:18 -0700139}
140
Konstantin Aladysheva7345942021-04-28 17:09:02 +0300141void HwmonTempSensor::restartRead()
142{
143 std::weak_ptr<HwmonTempSensor> weakRef = weak_from_this();
Ed Tanous9b4a20e2022-09-06 08:47:11 -0700144 waitTimer.expires_from_now(std::chrono::milliseconds(sensorPollMs));
Konstantin Aladysheva7345942021-04-28 17:09:02 +0300145 waitTimer.async_wait([weakRef](const boost::system::error_code& ec) {
146 if (ec == boost::asio::error::operation_aborted)
147 {
148 return; // we're being canceled
149 }
150 std::shared_ptr<HwmonTempSensor> self = weakRef.lock();
151 if (!self)
152 {
153 return;
154 }
155 self->setupRead();
156 });
157}
158
Zev Weissd1c8f442022-07-29 11:54:41 -0700159void HwmonTempSensor::handleResponse(const boost::system::error_code& err,
160 size_t bytesRead)
James Feist6714a252018-09-10 15:26:18 -0700161{
Yong Lif3fd1912020-03-25 21:35:23 +0800162 if ((err == boost::system::errc::bad_file_descriptor) ||
163 (err == boost::asio::error::misc_errors::not_found))
James Feist6714a252018-09-10 15:26:18 -0700164 {
Zhikui Rend3da1282020-09-11 17:02:01 -0700165 std::cerr << "Hwmon temp sensor " << name << " removed " << path
166 << "\n";
James Feist6714a252018-09-10 15:26:18 -0700167 return; // we're being destroyed
168 }
Zev Weissd1c8f442022-07-29 11:54:41 -0700169
James Feist6714a252018-09-10 15:26:18 -0700170 if (!err)
171 {
Zev Weissd1c8f442022-07-29 11:54:41 -0700172 const char* bufEnd = readBuf.data() + bytesRead;
173 int nvalue = 0;
174 std::from_chars_result ret =
175 std::from_chars(readBuf.data(), bufEnd, nvalue);
176 if (ret.ec != std::errc())
James Feist6714a252018-09-10 15:26:18 -0700177 {
James Feist961bf092020-07-01 16:38:12 -0700178 incrementError();
James Feist6714a252018-09-10 15:26:18 -0700179 }
Zev Weissd1c8f442022-07-29 11:54:41 -0700180 else
181 {
182 updateValue((nvalue + offsetValue) * scaleValue);
183 }
James Feist6714a252018-09-10 15:26:18 -0700184 }
185 else
186 {
James Feist961bf092020-07-01 16:38:12 -0700187 incrementError();
James Feist6714a252018-09-10 15:26:18 -0700188 }
James Feistdc6c55f2018-10-31 12:53:20 -0700189
Konstantin Aladysheva7345942021-04-28 17:09:02 +0300190 restartRead();
James Feist6714a252018-09-10 15:26:18 -0700191}
192
Jae Hyun Yoo9ced0a32018-10-25 10:42:39 -0700193void HwmonTempSensor::checkThresholds(void)
James Feist6714a252018-09-10 15:26:18 -0700194{
James Feist251c7822018-09-12 12:54:15 -0700195 thresholds::checkThresholds(this);
Patrick Ventureca44b2f2019-10-31 11:02:26 -0700196}