blob: f9b738f479e6f48dd8b1e4f88a2cc8d2f09e90ac [file] [log] [blame]
Cheng C Yang209ec562019-03-12 16:37:44 +08001#pragma once
2
Matt Simmeringcafd72f2022-12-16 15:35:12 -08003#include "DeviceMgmt.hpp"
Andrew Jefferye73bd0a2023-01-25 10:39:57 +10304#include "PwmSensor.hpp"
5#include "Thresholds.hpp"
6#include "sensor.hpp"
7
Ed Tanous16966b52021-09-15 15:06:59 -07008#include <boost/asio/random_access_file.hpp>
Cheng C Yang209ec562019-03-12 16:37:44 +08009#include <sdbusplus/asio/object_server.hpp>
James Feist38fb5982020-05-28 10:09:54 -070010
Ed Tanous16966b52021-09-15 15:06:59 -070011#include <array>
James Feist38fb5982020-05-28 10:09:54 -070012#include <memory>
Patrick Venturefd6ba732019-10-31 14:27:39 -070013#include <string>
Ed Tanous8a57ec02020-10-09 12:46:52 -070014#include <utility>
Cheng C Yang209ec562019-03-12 16:37:44 +080015
Yong Libf8b1da2020-04-15 16:32:50 +080016class PSUSensor : public Sensor, public std::enable_shared_from_this<PSUSensor>
Cheng C Yang209ec562019-03-12 16:37:44 +080017{
18 public:
19 PSUSensor(const std::string& path, const std::string& objectType,
20 sdbusplus::asio::object_server& objectServer,
21 std::shared_ptr<sdbusplus::asio::connection>& conn,
Ed Tanous1f978632023-02-28 18:16:39 -080022 boost::asio::io_context& io, const std::string& sensorName,
Cheng C Yang209ec562019-03-12 16:37:44 +080023 std::vector<thresholds::Threshold>&& thresholds,
24 const std::string& sensorConfiguration,
Konstantin Aladyshevc7a1ae62021-04-30 08:50:43 +000025 const PowerState& powerState, const std::string& sensorUnits,
26 unsigned int factor, double max, double min, double offset,
Matt Simmeringcafd72f2022-12-16 15:35:12 -080027 const std::string& label, size_t tSize, double pollRate,
28 const std::shared_ptr<I2CDevice>& i2cDevice);
Ed Tanous8a57ec02020-10-09 12:46:52 -070029 ~PSUSensor() override;
Ed Tanous201a1012024-04-03 18:07:28 -070030 void setupRead();
Matt Simmeringcafd72f2022-12-16 15:35:12 -080031 void activate(const std::string& newPath,
32 const std::shared_ptr<I2CDevice>& newI2CDevice);
Ed Tanous201a1012024-04-03 18:07:28 -070033 void deactivate();
34 bool isActive();
Matt Simmeringcafd72f2022-12-16 15:35:12 -080035
36 std::shared_ptr<I2CDevice> getI2CDevice() const
37 {
38 return i2cDevice;
39 }
Cheng C Yang209ec562019-03-12 16:37:44 +080040
41 private:
Ed Tanous16966b52021-09-15 15:06:59 -070042 // Note, this buffer is a shared_ptr because during a read, its lifetime
43 // might have to outlive the PSUSensor class if the object gets destroyed
44 // while in the middle of a read operation
45 std::shared_ptr<std::array<char, 128>> buffer;
Matt Simmeringcafd72f2022-12-16 15:35:12 -080046 std::shared_ptr<I2CDevice> i2cDevice;
Cheng C Yang209ec562019-03-12 16:37:44 +080047 sdbusplus::asio::object_server& objServer;
Ed Tanous16966b52021-09-15 15:06:59 -070048 boost::asio::random_access_file inputDev;
Ed Tanous9b4a20e2022-09-06 08:47:11 -070049 boost::asio::steady_timer waitTimer;
James Feist930fcde2019-05-28 12:58:43 -070050 std::string path;
Cheng C Yang209ec562019-03-12 16:37:44 +080051 unsigned int sensorFactor;
Jeff Line41d52f2021-04-07 19:38:51 +080052 double sensorOffset;
Konstantin Aladyshevc7a1ae62021-04-30 08:50:43 +000053 thresholds::ThresholdTimer thresholdTimer;
54 void restartRead();
Ed Tanous16966b52021-09-15 15:06:59 -070055 void handleResponse(const boost::system::error_code& err, size_t bytesRead);
Ed Tanous201a1012024-04-03 18:07:28 -070056 void checkThresholds() override;
Lei YU7170a232021-02-04 16:19:27 +080057 unsigned int sensorPollMs = defaultSensorPollMs;
Cheng C Yang209ec562019-03-12 16:37:44 +080058
Cheng C Yang209ec562019-03-12 16:37:44 +080059 static constexpr size_t warnAfterErrorCount = 10;
Lei YU7170a232021-02-04 16:19:27 +080060
61 public:
62 static constexpr double defaultSensorPoll = 1.0;
63 static constexpr unsigned int defaultSensorPollMs =
64 static_cast<unsigned int>(defaultSensorPoll * 1000);
Cheng C Yang209ec562019-03-12 16:37:44 +080065};
66
67class PSUProperty
68{
69 public:
Jeff Line41d52f2021-04-07 19:38:51 +080070 PSUProperty(std::string name, double max, double min, unsigned int factor,
71 double offset) :
72 labelTypeName(std::move(name)),
73 maxReading(max), minReading(min), sensorScaleFactor(factor),
74 sensorOffset(offset)
James Feist38fb5982020-05-28 10:09:54 -070075 {}
Cheng C Yang209ec562019-03-12 16:37:44 +080076 ~PSUProperty() = default;
77
Cheng C Yange50345b2019-04-02 17:26:15 +080078 std::string labelTypeName;
Cheng C Yang209ec562019-03-12 16:37:44 +080079 double maxReading;
80 double minReading;
81 unsigned int sensorScaleFactor;
Jeff Line41d52f2021-04-07 19:38:51 +080082 double sensorOffset;
Cheng C Yang209ec562019-03-12 16:37:44 +080083};