16714a25aSJames Feist /*
26714a25aSJames Feist // Copyright (c) 2017 Intel Corporation
36714a25aSJames Feist //
46714a25aSJames Feist // Licensed under the Apache License, Version 2.0 (the "License");
56714a25aSJames Feist // you may not use this file except in compliance with the License.
66714a25aSJames Feist // You may obtain a copy of the License at
76714a25aSJames Feist //
86714a25aSJames Feist //      http://www.apache.org/licenses/LICENSE-2.0
96714a25aSJames Feist //
106714a25aSJames Feist // Unless required by applicable law or agreed to in writing, software
116714a25aSJames Feist // distributed under the License is distributed on an "AS IS" BASIS,
126714a25aSJames Feist // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
136714a25aSJames Feist // See the License for the specific language governing permissions and
146714a25aSJames Feist // limitations under the License.
156714a25aSJames Feist */
166714a25aSJames Feist 
178a57ec09SEd Tanous #include <HwmonTempSensor.hpp>
188a57ec09SEd Tanous #include <Utils.hpp>
196714a25aSJames Feist #include <boost/algorithm/string/predicate.hpp>
206714a25aSJames Feist #include <boost/algorithm/string/replace.hpp>
2196e97db7SPatrick Venture #include <boost/container/flat_map.hpp>
226714a25aSJames Feist #include <boost/container/flat_set.hpp>
2338fb5983SJames Feist #include <sdbusplus/asio/connection.hpp>
2438fb5983SJames Feist #include <sdbusplus/asio/object_server.hpp>
2538fb5983SJames Feist #include <sdbusplus/bus/match.hpp>
2638fb5983SJames Feist 
2738fb5983SJames Feist #include <array>
2824f02f24SJames Feist #include <filesystem>
296714a25aSJames Feist #include <fstream>
3096e97db7SPatrick Venture #include <functional>
3196e97db7SPatrick Venture #include <memory>
326714a25aSJames Feist #include <regex>
3396e97db7SPatrick Venture #include <stdexcept>
3496e97db7SPatrick Venture #include <string>
3596e97db7SPatrick Venture #include <utility>
3696e97db7SPatrick Venture #include <variant>
3796e97db7SPatrick Venture #include <vector>
386714a25aSJames Feist 
3987bc67f7SJeff Lin static constexpr float pollRateDefault = 0.5;
406714a25aSJames Feist 
41544e7dc5SBruce Mitchell static constexpr double maxValuePressure = 120000; // Pascals
42544e7dc5SBruce Mitchell static constexpr double minValuePressure = 30000;  // Pascals
43544e7dc5SBruce Mitchell 
443ec41c53SBruce Mitchell static constexpr double maxValueRelativeHumidity = 100; // PercentRH
453ec41c53SBruce Mitchell static constexpr double minValueRelativeHumidity = 0;   // PercentRH
463ec41c53SBruce Mitchell 
47544e7dc5SBruce Mitchell static constexpr double maxValueTemperature = 127;  // DegreesC
48544e7dc5SBruce Mitchell static constexpr double minValueTemperature = -128; // DegreesC
49544e7dc5SBruce Mitchell 
50cf3bce6eSJames Feist namespace fs = std::filesystem;
5166558235SBrandon Kim static auto sensorTypes{
524786334fSPotin Lai     std::to_array<const char*>({"xyz.openbmc_project.Configuration.DPS310",
534786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.EMC1412",
548b3f7d40SAlex Qiu                                 "xyz.openbmc_project.Configuration.EMC1413",
55381636e2SGilbert Chen                                 "xyz.openbmc_project.Configuration.EMC1414",
564786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.HDC1080",
574786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.JC42",
584786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.LM75A",
594786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.LM95234",
608b3f7d40SAlex Qiu                                 "xyz.openbmc_project.Configuration.MAX31725",
618b3f7d40SAlex Qiu                                 "xyz.openbmc_project.Configuration.MAX31730",
6216e7af1dSJason Ling                                 "xyz.openbmc_project.Configuration.MAX6581",
633840d0adSJosh Lehan                                 "xyz.openbmc_project.Configuration.MAX6654",
645770a6fdSOskar Senft                                 "xyz.openbmc_project.Configuration.NCT7802",
658fb0a013SJosh Lehan                                 "xyz.openbmc_project.Configuration.SBTSI",
664786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.SI7020",
6755ab2afbSJohn Wang                                 "xyz.openbmc_project.Configuration.TMP112",
683546adb9SPatrick Venture                                 "xyz.openbmc_project.Configuration.TMP175",
698b3f7d40SAlex Qiu                                 "xyz.openbmc_project.Configuration.TMP421",
708b3f7d40SAlex Qiu                                 "xyz.openbmc_project.Configuration.TMP441",
717ea918f2SZev Weiss                                 "xyz.openbmc_project.Configuration.TMP75",
724786334fSPotin Lai                                 "xyz.openbmc_project.Configuration.W83773G"})};
736714a25aSJames Feist 
74544e7dc5SBruce Mitchell static struct SensorParams
75544e7dc5SBruce Mitchell     getSensorParameters(const std::filesystem::path& path)
76544e7dc5SBruce Mitchell {
77544e7dc5SBruce Mitchell     // offset is to default to 0 and scale to 1, see lore
78544e7dc5SBruce Mitchell     // https://lore.kernel.org/linux-iio/5c79425f-6e88-36b6-cdfe-4080738d039f@metafoo.de/
79544e7dc5SBruce Mitchell     struct SensorParams tmpSensorParameters = {.minValue = minValueTemperature,
80544e7dc5SBruce Mitchell                                                .maxValue = maxValueTemperature,
81544e7dc5SBruce Mitchell                                                .offsetValue = 0.0,
82544e7dc5SBruce Mitchell                                                .scaleValue = 1.0,
835a86e562SBruce Mitchell                                                .units =
845a86e562SBruce Mitchell                                                    sensor_paths::unitDegreesC,
85544e7dc5SBruce Mitchell                                                .typeName = "temperature"};
86544e7dc5SBruce Mitchell 
87544e7dc5SBruce Mitchell     // For IIO RAW sensors we get a raw_value, an offset, and scale
88544e7dc5SBruce Mitchell     // to compute the value = (raw_value + offset) * scale
89544e7dc5SBruce Mitchell     // with a _raw IIO device we need to get the
90544e7dc5SBruce Mitchell     // offsetValue and scaleValue from the driver
91544e7dc5SBruce Mitchell     // these are used to compute the reading in
92544e7dc5SBruce Mitchell     // units that have yet to be scaled for D-Bus.
93544e7dc5SBruce Mitchell     const std::string pathStr = path.string();
94544e7dc5SBruce Mitchell     if (pathStr.ends_with("_raw"))
95544e7dc5SBruce Mitchell     {
96544e7dc5SBruce Mitchell         std::string pathOffsetStr =
97544e7dc5SBruce Mitchell             pathStr.substr(0, pathStr.size() - 4) + "_offset";
98544e7dc5SBruce Mitchell         std::optional<double> tmpOffsetValue = readFile(pathOffsetStr, 1.0);
99544e7dc5SBruce Mitchell         // In case there is nothing to read skip this device
100544e7dc5SBruce Mitchell         // This is not an error condition see lore
101544e7dc5SBruce Mitchell         // https://lore.kernel.org/linux-iio/5c79425f-6e88-36b6-cdfe-4080738d039f@metafoo.de/
102544e7dc5SBruce Mitchell         if (tmpOffsetValue)
103544e7dc5SBruce Mitchell         {
104544e7dc5SBruce Mitchell             tmpSensorParameters.offsetValue = *tmpOffsetValue;
105544e7dc5SBruce Mitchell         }
106544e7dc5SBruce Mitchell 
107544e7dc5SBruce Mitchell         std::string pathScaleStr =
108544e7dc5SBruce Mitchell             pathStr.substr(0, pathStr.size() - 4) + "_scale";
109544e7dc5SBruce Mitchell         std::optional<double> tmpScaleValue = readFile(pathScaleStr, 1.0);
110544e7dc5SBruce Mitchell         // In case there is nothing to read skip this device
111544e7dc5SBruce Mitchell         // This is not an error condition see lore
112544e7dc5SBruce Mitchell         // https://lore.kernel.org/linux-iio/5c79425f-6e88-36b6-cdfe-4080738d039f@metafoo.de/
113544e7dc5SBruce Mitchell         if (tmpScaleValue)
114544e7dc5SBruce Mitchell         {
115544e7dc5SBruce Mitchell             tmpSensorParameters.scaleValue = *tmpScaleValue;
116544e7dc5SBruce Mitchell         }
117544e7dc5SBruce Mitchell     }
118544e7dc5SBruce Mitchell 
119544e7dc5SBruce Mitchell     // Temperatures are read in milli degrees Celsius, we need
120544e7dc5SBruce Mitchell     // degrees Celsius. Pressures are read in kilopascal, we need
121544e7dc5SBruce Mitchell     // Pascals.  On D-Bus for Open BMC we use the International
122544e7dc5SBruce Mitchell     // System of Units without prefixes. Links to the kernel
123544e7dc5SBruce Mitchell     // documentation:
124544e7dc5SBruce Mitchell     // https://www.kernel.org/doc/Documentation/hwmon/sysfs-interface
125544e7dc5SBruce Mitchell     // https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-bus-iio
126544e7dc5SBruce Mitchell     if (path.filename() == "in_pressure_input" ||
127544e7dc5SBruce Mitchell         path.filename() == "in_pressure_raw")
128544e7dc5SBruce Mitchell     {
129544e7dc5SBruce Mitchell         tmpSensorParameters.minValue = minValuePressure;
130544e7dc5SBruce Mitchell         tmpSensorParameters.maxValue = maxValuePressure;
131544e7dc5SBruce Mitchell         // Pressures are read in kilopascal, we need Pascals.
132544e7dc5SBruce Mitchell         tmpSensorParameters.scaleValue *= 1000.0;
133544e7dc5SBruce Mitchell         tmpSensorParameters.typeName = "pressure";
1345a86e562SBruce Mitchell         tmpSensorParameters.units = sensor_paths::unitPascals;
135544e7dc5SBruce Mitchell     }
1363ec41c53SBruce Mitchell     else if (path.filename() == "in_humidityrelative_input" ||
1373ec41c53SBruce Mitchell              path.filename() == "in_humidityrelative_raw")
1383ec41c53SBruce Mitchell     {
1393ec41c53SBruce Mitchell         tmpSensorParameters.minValue = minValueRelativeHumidity;
1403ec41c53SBruce Mitchell         tmpSensorParameters.maxValue = maxValueRelativeHumidity;
1413ec41c53SBruce Mitchell         // Relative Humidity are read in milli-percent, we need percent.
1423ec41c53SBruce Mitchell         tmpSensorParameters.scaleValue *= 0.001;
1433ec41c53SBruce Mitchell         tmpSensorParameters.typeName = "humidity";
1443ec41c53SBruce Mitchell         tmpSensorParameters.units = "PercentRH";
1453ec41c53SBruce Mitchell     }
146544e7dc5SBruce Mitchell     else
147544e7dc5SBruce Mitchell     {
148544e7dc5SBruce Mitchell         // Temperatures are read in milli degrees Celsius,
149544e7dc5SBruce Mitchell         // we need degrees Celsius.
150544e7dc5SBruce Mitchell         tmpSensorParameters.scaleValue *= 0.001;
151544e7dc5SBruce Mitchell     }
152544e7dc5SBruce Mitchell 
153544e7dc5SBruce Mitchell     return tmpSensorParameters;
154544e7dc5SBruce Mitchell }
155544e7dc5SBruce Mitchell 
1569f3a74edSJayashree Dhanapal struct SensorConfigKey
1579f3a74edSJayashree Dhanapal {
1589f3a74edSJayashree Dhanapal     uint64_t bus;
1599f3a74edSJayashree Dhanapal     uint64_t addr;
1609f3a74edSJayashree Dhanapal     bool operator<(const SensorConfigKey& other) const
1619f3a74edSJayashree Dhanapal     {
1629f3a74edSJayashree Dhanapal         if (bus != other.bus)
1639f3a74edSJayashree Dhanapal         {
1649f3a74edSJayashree Dhanapal             return bus < other.bus;
1659f3a74edSJayashree Dhanapal         }
1669f3a74edSJayashree Dhanapal         return addr < other.addr;
1679f3a74edSJayashree Dhanapal     }
1689f3a74edSJayashree Dhanapal };
1699f3a74edSJayashree Dhanapal 
1709f3a74edSJayashree Dhanapal struct SensorConfig
1719f3a74edSJayashree Dhanapal {
1729f3a74edSJayashree Dhanapal     std::string sensorPath;
1739f3a74edSJayashree Dhanapal     SensorData sensorData;
1749f3a74edSJayashree Dhanapal     std::string interface;
1759f3a74edSJayashree Dhanapal     SensorBaseConfigMap config;
1769f3a74edSJayashree Dhanapal     std::vector<std::string> name;
1779f3a74edSJayashree Dhanapal };
1789f3a74edSJayashree Dhanapal 
1799f3a74edSJayashree Dhanapal using SensorConfigMap =
1809f3a74edSJayashree Dhanapal     boost::container::flat_map<SensorConfigKey, SensorConfig>;
1819f3a74edSJayashree Dhanapal 
1829f3a74edSJayashree Dhanapal static SensorConfigMap
1839f3a74edSJayashree Dhanapal     buildSensorConfigMap(const ManagedObjectType& sensorConfigs)
1849f3a74edSJayashree Dhanapal {
1859f3a74edSJayashree Dhanapal     SensorConfigMap configMap;
1869f3a74edSJayashree Dhanapal     for (const std::pair<sdbusplus::message::object_path, SensorData>& sensor :
1879f3a74edSJayashree Dhanapal          sensorConfigs)
1889f3a74edSJayashree Dhanapal     {
1899f3a74edSJayashree Dhanapal         for (const std::pair<std::string, SensorBaseConfigMap>& cfgmap :
1909f3a74edSJayashree Dhanapal              sensor.second)
1919f3a74edSJayashree Dhanapal         {
1929f3a74edSJayashree Dhanapal             const SensorBaseConfigMap& cfg = cfgmap.second;
1939f3a74edSJayashree Dhanapal             auto busCfg = cfg.find("Bus");
1949f3a74edSJayashree Dhanapal             auto addrCfg = cfg.find("Address");
1959f3a74edSJayashree Dhanapal             if ((busCfg == cfg.end()) || (addrCfg == cfg.end()))
1969f3a74edSJayashree Dhanapal             {
1979f3a74edSJayashree Dhanapal                 continue;
1989f3a74edSJayashree Dhanapal             }
1999f3a74edSJayashree Dhanapal 
2009f3a74edSJayashree Dhanapal             if ((!std::get_if<uint64_t>(&busCfg->second)) ||
2019f3a74edSJayashree Dhanapal                 (!std::get_if<uint64_t>(&addrCfg->second)))
2029f3a74edSJayashree Dhanapal             {
2039f3a74edSJayashree Dhanapal                 std::cerr << sensor.first.str << " Bus or Address invalid\n";
2049f3a74edSJayashree Dhanapal                 continue;
2059f3a74edSJayashree Dhanapal             }
2069f3a74edSJayashree Dhanapal 
2079f3a74edSJayashree Dhanapal             std::vector<std::string> hwmonNames;
2089f3a74edSJayashree Dhanapal             auto nameCfg = cfg.find("Name");
2099f3a74edSJayashree Dhanapal             if (nameCfg != cfg.end())
2109f3a74edSJayashree Dhanapal             {
2119f3a74edSJayashree Dhanapal                 hwmonNames.push_back(std::get<std::string>(nameCfg->second));
2129f3a74edSJayashree Dhanapal                 size_t i = 1;
2139f3a74edSJayashree Dhanapal                 while (true)
2149f3a74edSJayashree Dhanapal                 {
2159f3a74edSJayashree Dhanapal                     auto sensorNameCfg = cfg.find("Name" + std::to_string(i));
2169f3a74edSJayashree Dhanapal                     if (sensorNameCfg == cfg.end())
2179f3a74edSJayashree Dhanapal                     {
2189f3a74edSJayashree Dhanapal                         break;
2199f3a74edSJayashree Dhanapal                     }
2209f3a74edSJayashree Dhanapal                     hwmonNames.push_back(
2219f3a74edSJayashree Dhanapal                         std::get<std::string>(sensorNameCfg->second));
2229f3a74edSJayashree Dhanapal                     i++;
2239f3a74edSJayashree Dhanapal                 }
2249f3a74edSJayashree Dhanapal             }
2259f3a74edSJayashree Dhanapal 
2269f3a74edSJayashree Dhanapal             SensorConfigKey key = {std::get<uint64_t>(busCfg->second),
2279f3a74edSJayashree Dhanapal                                    std::get<uint64_t>(addrCfg->second)};
2289f3a74edSJayashree Dhanapal             SensorConfig val = {sensor.first.str, sensor.second, cfgmap.first,
2299f3a74edSJayashree Dhanapal                                 cfg, hwmonNames};
2309f3a74edSJayashree Dhanapal 
2319f3a74edSJayashree Dhanapal             auto [it, inserted] = configMap.emplace(key, std::move(val));
2329f3a74edSJayashree Dhanapal             if (!inserted)
2339f3a74edSJayashree Dhanapal             {
2349f3a74edSJayashree Dhanapal                 std::cerr << sensor.first.str
2359f3a74edSJayashree Dhanapal                           << ": ignoring duplicate entry for {" << key.bus
2369f3a74edSJayashree Dhanapal                           << ", 0x" << std::hex << key.addr << std::dec
2379f3a74edSJayashree Dhanapal                           << "}\n";
2389f3a74edSJayashree Dhanapal             }
2399f3a74edSJayashree Dhanapal         }
2409f3a74edSJayashree Dhanapal     }
2419f3a74edSJayashree Dhanapal     return configMap;
2429f3a74edSJayashree Dhanapal }
2439f3a74edSJayashree Dhanapal 
2446714a25aSJames Feist void createSensors(
2456714a25aSJames Feist     boost::asio::io_service& io, sdbusplus::asio::object_server& objectServer,
246f3fd1915SYong Li     boost::container::flat_map<std::string, std::shared_ptr<HwmonTempSensor>>&
2476714a25aSJames Feist         sensors,
2486714a25aSJames Feist     std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
2495591cf08SJames Feist     const std::shared_ptr<boost::container::flat_set<std::string>>&
2506714a25aSJames Feist         sensorsChanged)
2516714a25aSJames Feist {
252df515159SJames Feist     auto getter = std::make_shared<GetSensorConfiguration>(
253df515159SJames Feist         dbusConnection,
2548a17c303SEd Tanous         [&io, &objectServer, &sensors, &dbusConnection,
2558a17c303SEd Tanous          sensorsChanged](const ManagedObjectType& sensorConfigurations) {
2566714a25aSJames Feist             bool firstScan = sensorsChanged == nullptr;
257df515159SJames Feist 
2589f3a74edSJayashree Dhanapal             SensorConfigMap configMap =
2599f3a74edSJayashree Dhanapal                 buildSensorConfigMap(sensorConfigurations);
2609f3a74edSJayashree Dhanapal 
261544e7dc5SBruce Mitchell             // IIO _raw devices look like this on sysfs:
262544e7dc5SBruce Mitchell             //     /sys/bus/iio/devices/iio:device0/in_temp_raw
263544e7dc5SBruce Mitchell             //     /sys/bus/iio/devices/iio:device0/in_temp_offset
264544e7dc5SBruce Mitchell             //     /sys/bus/iio/devices/iio:device0/in_temp_scale
265544e7dc5SBruce Mitchell             //
266544e7dc5SBruce Mitchell             // Other IIO devices look like this on sysfs:
267544e7dc5SBruce Mitchell             //     /sys/bus/iio/devices/iio:device1/in_temp_input
268544e7dc5SBruce Mitchell             //     /sys/bus/iio/devices/iio:device1/in_pressure_input
2696714a25aSJames Feist             std::vector<fs::path> paths;
270544e7dc5SBruce Mitchell             fs::path root("/sys/bus/iio/devices");
271544e7dc5SBruce Mitchell             findFiles(root, R"(in_temp\d*_(input|raw))", paths);
272544e7dc5SBruce Mitchell             findFiles(root, R"(in_pressure\d*_(input|raw))", paths);
2733ec41c53SBruce Mitchell             findFiles(root, R"(in_humidityrelative\d*_(input|raw))", paths);
274544e7dc5SBruce Mitchell             findFiles(fs::path("/sys/class/hwmon"), R"(temp\d+_input)", paths);
275544e7dc5SBruce Mitchell 
276544e7dc5SBruce Mitchell             if (paths.empty())
2776714a25aSJames Feist             {
2786714a25aSJames Feist                 return;
2796714a25aSJames Feist             }
2806714a25aSJames Feist 
281544e7dc5SBruce Mitchell             // iterate through all found temp and pressure sensors,
282544e7dc5SBruce Mitchell             // and try to match them with configuration
2836714a25aSJames Feist             for (auto& path : paths)
2846714a25aSJames Feist             {
2856714a25aSJames Feist                 std::smatch match;
286544e7dc5SBruce Mitchell                 const std::string pathStr = path.string();
2876714a25aSJames Feist                 auto directory = path.parent_path();
288544e7dc5SBruce Mitchell                 fs::path device;
2896714a25aSJames Feist 
290544e7dc5SBruce Mitchell                 std::string deviceName;
291544e7dc5SBruce Mitchell                 if (pathStr.starts_with("/sys/bus/iio/devices"))
2926714a25aSJames Feist                 {
293544e7dc5SBruce Mitchell                     device = fs::canonical(directory);
294544e7dc5SBruce Mitchell                     deviceName = device.parent_path().stem();
29537266ca9SJames Feist                 }
296544e7dc5SBruce Mitchell                 else
297544e7dc5SBruce Mitchell                 {
298544e7dc5SBruce Mitchell                     device = directory / "device";
299544e7dc5SBruce Mitchell                     deviceName = fs::canonical(device).stem();
300544e7dc5SBruce Mitchell                 }
3018a57ec09SEd Tanous                 auto findHyphen = deviceName.find('-');
30237266ca9SJames Feist                 if (findHyphen == std::string::npos)
30337266ca9SJames Feist                 {
30437266ca9SJames Feist                     std::cerr << "found bad device " << deviceName << "\n";
3056714a25aSJames Feist                     continue;
3066714a25aSJames Feist                 }
30737266ca9SJames Feist                 std::string busStr = deviceName.substr(0, findHyphen);
30837266ca9SJames Feist                 std::string addrStr = deviceName.substr(findHyphen + 1);
30937266ca9SJames Feist 
31037266ca9SJames Feist                 size_t bus = 0;
31137266ca9SJames Feist                 size_t addr = 0;
31237266ca9SJames Feist                 try
3136714a25aSJames Feist                 {
31437266ca9SJames Feist                     bus = std::stoi(busStr);
3158a57ec09SEd Tanous                     addr = std::stoi(addrStr, nullptr, 16);
31637266ca9SJames Feist                 }
31726601e89SPatrick Williams                 catch (const std::invalid_argument&)
31837266ca9SJames Feist                 {
3196714a25aSJames Feist                     continue;
3206714a25aSJames Feist                 }
32137266ca9SJames Feist 
322544e7dc5SBruce Mitchell                 auto thisSensorParameters = getSensorParameters(path);
3239f3a74edSJayashree Dhanapal                 auto findSensorCfg = configMap.find({bus, addr});
3249f3a74edSJayashree Dhanapal                 if (findSensorCfg == configMap.end())
32537266ca9SJames Feist                 {
32637266ca9SJames Feist                     continue;
32737266ca9SJames Feist                 }
32837266ca9SJames Feist 
3299f3a74edSJayashree Dhanapal                 const std::string& interfacePath =
3309f3a74edSJayashree Dhanapal                     findSensorCfg->second.sensorPath;
3319f3a74edSJayashree Dhanapal                 const SensorData& sensorData = findSensorCfg->second.sensorData;
3329f3a74edSJayashree Dhanapal                 const std::string& sensorType = findSensorCfg->second.interface;
3339f3a74edSJayashree Dhanapal                 const SensorBaseConfigMap& baseConfigMap =
3349f3a74edSJayashree Dhanapal                     findSensorCfg->second.config;
3359f3a74edSJayashree Dhanapal                 std::vector<std::string>& hwmonName =
3369f3a74edSJayashree Dhanapal                     findSensorCfg->second.name;
3376714a25aSJames Feist 
338544e7dc5SBruce Mitchell                 // Temperature has "Name", pressure has "Name1"
3399f3a74edSJayashree Dhanapal                 auto findSensorName = baseConfigMap.find("Name");
340*fefdbe7fSPotin Lai                 int index = 1;
3413ec41c53SBruce Mitchell                 if (thisSensorParameters.typeName == "pressure" ||
3423ec41c53SBruce Mitchell                     thisSensorParameters.typeName == "humidity")
343544e7dc5SBruce Mitchell                 {
3449f3a74edSJayashree Dhanapal                     findSensorName = baseConfigMap.find("Name1");
345*fefdbe7fSPotin Lai                     index = 2;
346544e7dc5SBruce Mitchell                 }
347544e7dc5SBruce Mitchell 
3489f3a74edSJayashree Dhanapal                 if (findSensorName == baseConfigMap.end())
3496714a25aSJames Feist                 {
3506714a25aSJames Feist                     std::cerr << "could not determine configuration name for "
35137266ca9SJames Feist                               << deviceName << "\n";
3526714a25aSJames Feist                     continue;
3536714a25aSJames Feist                 }
354df515159SJames Feist                 std::string sensorName =
355df515159SJames Feist                     std::get<std::string>(findSensorName->second);
3566714a25aSJames Feist                 // on rescans, only update sensors we were signaled by
3576714a25aSJames Feist                 auto findSensor = sensors.find(sensorName);
3586714a25aSJames Feist                 if (!firstScan && findSensor != sensors.end())
3596714a25aSJames Feist                 {
3606714a25aSJames Feist                     bool found = false;
361d653b75cSBruce Mitchell                     auto it = sensorsChanged->begin();
362d653b75cSBruce Mitchell                     while (it != sensorsChanged->end())
3636714a25aSJames Feist                     {
3646714a25aSJames Feist                         if (boost::ends_with(*it, findSensor->second->name))
3656714a25aSJames Feist                         {
366d653b75cSBruce Mitchell                             it = sensorsChanged->erase(it);
3676714a25aSJames Feist                             findSensor->second = nullptr;
3686714a25aSJames Feist                             found = true;
3696714a25aSJames Feist                             break;
3706714a25aSJames Feist                         }
371d653b75cSBruce Mitchell                         ++it;
3726714a25aSJames Feist                     }
3736714a25aSJames Feist                     if (!found)
3746714a25aSJames Feist                     {
3756714a25aSJames Feist                         continue;
3766714a25aSJames Feist                     }
3776714a25aSJames Feist                 }
3785636d52bSMatt Spinler 
3796714a25aSJames Feist                 std::vector<thresholds::Threshold> sensorThresholds;
3805636d52bSMatt Spinler 
3819f3a74edSJayashree Dhanapal                 if (!parseThresholdsFromConfig(sensorData, sensorThresholds,
3825636d52bSMatt Spinler                                                nullptr, &index))
3836714a25aSJames Feist                 {
384df515159SJames Feist                     std::cerr << "error populating thresholds for "
385*fefdbe7fSPotin Lai                               << sensorName << " index " << index << "\n";
3866714a25aSJames Feist                 }
38787bc67f7SJeff Lin 
3889f3a74edSJayashree Dhanapal                 auto findPollRate = baseConfigMap.find("PollRate");
38987bc67f7SJeff Lin                 float pollRate = pollRateDefault;
3909f3a74edSJayashree Dhanapal                 if (findPollRate != baseConfigMap.end())
39187bc67f7SJeff Lin                 {
39287bc67f7SJeff Lin                     pollRate = std::visit(VariantToFloatVisitor(),
39387bc67f7SJeff Lin                                           findPollRate->second);
39487bc67f7SJeff Lin                     if (pollRate <= 0.0f)
39587bc67f7SJeff Lin                     {
39687bc67f7SJeff Lin                         pollRate = pollRateDefault; // polling time too short
39787bc67f7SJeff Lin                     }
39887bc67f7SJeff Lin                 }
39987bc67f7SJeff Lin 
4009f3a74edSJayashree Dhanapal                 auto findPowerOn = baseConfigMap.find("PowerState");
401f9b01b6dSJames Feist                 PowerState readState = PowerState::always;
4029f3a74edSJayashree Dhanapal                 if (findPowerOn != baseConfigMap.end())
403f9b01b6dSJames Feist                 {
404f9b01b6dSJames Feist                     std::string powerState = std::visit(
405f9b01b6dSJames Feist                         VariantToStringVisitor(), findPowerOn->second);
406f9b01b6dSJames Feist                     setReadState(powerState, readState);
407f9b01b6dSJames Feist                 }
408100c20bfSJason Ling 
4099f3a74edSJayashree Dhanapal                 auto permitSet = getPermitSet(baseConfigMap);
4108b3f7d40SAlex Qiu                 auto& sensor = sensors[sensorName];
4118b3f7d40SAlex Qiu                 sensor = nullptr;
412100c20bfSJason Ling                 auto hwmonFile = getFullHwmonFilePath(directory.string(),
413100c20bfSJason Ling                                                       "temp1", permitSet);
414544e7dc5SBruce Mitchell                 if (pathStr.starts_with("/sys/bus/iio/devices"))
415544e7dc5SBruce Mitchell                 {
416544e7dc5SBruce Mitchell                     hwmonFile = pathStr;
417544e7dc5SBruce Mitchell                 }
418100c20bfSJason Ling                 if (hwmonFile)
419100c20bfSJason Ling                 {
420f3fd1915SYong Li                     sensor = std::make_shared<HwmonTempSensor>(
421100c20bfSJason Ling                         *hwmonFile, sensorType, objectServer, dbusConnection,
422544e7dc5SBruce Mitchell                         io, sensorName, std::move(sensorThresholds),
4239f3a74edSJayashree Dhanapal                         thisSensorParameters, pollRate, interfacePath,
424544e7dc5SBruce Mitchell                         readState);
425f3fd1915SYong Li                     sensor->setupRead();
4269f3a74edSJayashree Dhanapal                     hwmonName.erase(
4279f3a74edSJayashree Dhanapal                         remove(hwmonName.begin(), hwmonName.end(), sensorName),
4289f3a74edSJayashree Dhanapal                         hwmonName.end());
429100c20bfSJason Ling                 }
4308b3f7d40SAlex Qiu                 // Looking for keys like "Name1" for temp2_input,
4318b3f7d40SAlex Qiu                 // "Name2" for temp3_input, etc.
4328b3f7d40SAlex Qiu                 int i = 0;
4338b3f7d40SAlex Qiu                 while (true)
43437266ca9SJames Feist                 {
4358b3f7d40SAlex Qiu                     ++i;
4368b3f7d40SAlex Qiu                     auto findKey =
4379f3a74edSJayashree Dhanapal                         baseConfigMap.find("Name" + std::to_string(i));
4389f3a74edSJayashree Dhanapal                     if (findKey == baseConfigMap.end())
4398b3f7d40SAlex Qiu                     {
4408b3f7d40SAlex Qiu                         break;
44137266ca9SJames Feist                     }
4428b3f7d40SAlex Qiu                     std::string sensorName =
4438b3f7d40SAlex Qiu                         std::get<std::string>(findKey->second);
444100c20bfSJason Ling                     hwmonFile = getFullHwmonFilePath(
445100c20bfSJason Ling                         directory.string(), "temp" + std::to_string(i + 1),
446100c20bfSJason Ling                         permitSet);
447544e7dc5SBruce Mitchell                     if (pathStr.starts_with("/sys/bus/iio/devices"))
448544e7dc5SBruce Mitchell                     {
449544e7dc5SBruce Mitchell                         continue;
450544e7dc5SBruce Mitchell                     }
451100c20bfSJason Ling                     if (hwmonFile)
452100c20bfSJason Ling                     {
4535636d52bSMatt Spinler                         // To look up thresholds for these additional sensors,
4545636d52bSMatt Spinler                         // match on the Index property in the threshold data
4555636d52bSMatt Spinler                         // where the index comes from the sysfs file we're on,
4565636d52bSMatt Spinler                         // i.e. index = 2 for temp2_input.
4575636d52bSMatt Spinler                         int index = i + 1;
4585636d52bSMatt Spinler                         std::vector<thresholds::Threshold> thresholds;
4595636d52bSMatt Spinler 
4609f3a74edSJayashree Dhanapal                         if (!parseThresholdsFromConfig(sensorData, thresholds,
4615636d52bSMatt Spinler                                                        nullptr, &index))
4625636d52bSMatt Spinler                         {
4635636d52bSMatt Spinler                             std::cerr << "error populating thresholds for "
4645636d52bSMatt Spinler                                       << sensorName << " index " << index
4655636d52bSMatt Spinler                                       << "\n";
4665636d52bSMatt Spinler                         }
4675636d52bSMatt Spinler 
4688b3f7d40SAlex Qiu                         auto& sensor = sensors[sensorName];
4698b3f7d40SAlex Qiu                         sensor = nullptr;
470f3fd1915SYong Li                         sensor = std::make_shared<HwmonTempSensor>(
471100c20bfSJason Ling                             *hwmonFile, sensorType, objectServer,
472100c20bfSJason Ling                             dbusConnection, io, sensorName,
473544e7dc5SBruce Mitchell                             std::move(thresholds), thisSensorParameters,
4749f3a74edSJayashree Dhanapal                             pollRate, interfacePath, readState);
475f3fd1915SYong Li                         sensor->setupRead();
4769f3a74edSJayashree Dhanapal                         hwmonName.erase(remove(hwmonName.begin(),
4779f3a74edSJayashree Dhanapal                                                hwmonName.end(), sensorName),
4789f3a74edSJayashree Dhanapal                                         hwmonName.end());
4798b3f7d40SAlex Qiu                     }
4806714a25aSJames Feist                 }
4819f3a74edSJayashree Dhanapal                 configMap.erase(findSensorCfg);
4829f3a74edSJayashree Dhanapal             }
4838a17c303SEd Tanous         });
484df515159SJames Feist     getter->getConfiguration(
485df515159SJames Feist         std::vector<std::string>(sensorTypes.begin(), sensorTypes.end()));
4866714a25aSJames Feist }
4876714a25aSJames Feist 
48820bf2c1cSMatt Spinler void interfaceRemoved(
48920bf2c1cSMatt Spinler     sdbusplus::message::message& message,
49020bf2c1cSMatt Spinler     boost::container::flat_map<std::string, std::shared_ptr<HwmonTempSensor>>&
49120bf2c1cSMatt Spinler         sensors)
49220bf2c1cSMatt Spinler {
49320bf2c1cSMatt Spinler     if (message.is_method_error())
49420bf2c1cSMatt Spinler     {
49520bf2c1cSMatt Spinler         std::cerr << "interfacesRemoved callback method error\n";
49620bf2c1cSMatt Spinler         return;
49720bf2c1cSMatt Spinler     }
49820bf2c1cSMatt Spinler 
49920bf2c1cSMatt Spinler     sdbusplus::message::object_path path;
50020bf2c1cSMatt Spinler     std::vector<std::string> interfaces;
50120bf2c1cSMatt Spinler 
50220bf2c1cSMatt Spinler     message.read(path, interfaces);
50320bf2c1cSMatt Spinler 
50420bf2c1cSMatt Spinler     // If the xyz.openbmc_project.Confguration.X interface was removed
50520bf2c1cSMatt Spinler     // for one or more sensors, delete those sensor objects.
50620bf2c1cSMatt Spinler     auto sensorIt = sensors.begin();
50720bf2c1cSMatt Spinler     while (sensorIt != sensors.end())
50820bf2c1cSMatt Spinler     {
50920bf2c1cSMatt Spinler         if ((sensorIt->second->configurationPath == path) &&
51020bf2c1cSMatt Spinler             (std::find(interfaces.begin(), interfaces.end(),
51120bf2c1cSMatt Spinler                        sensorIt->second->objectType) != interfaces.end()))
51220bf2c1cSMatt Spinler         {
51320bf2c1cSMatt Spinler             sensorIt = sensors.erase(sensorIt);
51420bf2c1cSMatt Spinler         }
51520bf2c1cSMatt Spinler         else
51620bf2c1cSMatt Spinler         {
51720bf2c1cSMatt Spinler             sensorIt++;
51820bf2c1cSMatt Spinler         }
51920bf2c1cSMatt Spinler     }
52020bf2c1cSMatt Spinler }
52120bf2c1cSMatt Spinler 
522b6c0b914SJames Feist int main()
5236714a25aSJames Feist {
5246714a25aSJames Feist     boost::asio::io_service io;
5256714a25aSJames Feist     auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
5266714a25aSJames Feist     systemBus->request_name("xyz.openbmc_project.HwmonTempSensor");
5276714a25aSJames Feist     sdbusplus::asio::object_server objectServer(systemBus);
528f3fd1915SYong Li     boost::container::flat_map<std::string, std::shared_ptr<HwmonTempSensor>>
5296714a25aSJames Feist         sensors;
5306714a25aSJames Feist     std::vector<std::unique_ptr<sdbusplus::bus::match::match>> matches;
5315591cf08SJames Feist     auto sensorsChanged =
5325591cf08SJames Feist         std::make_shared<boost::container::flat_set<std::string>>();
5336714a25aSJames Feist 
5346714a25aSJames Feist     io.post([&]() {
5356714a25aSJames Feist         createSensors(io, objectServer, sensors, systemBus, nullptr);
5366714a25aSJames Feist     });
5376714a25aSJames Feist 
5386714a25aSJames Feist     boost::asio::deadline_timer filterTimer(io);
5396714a25aSJames Feist     std::function<void(sdbusplus::message::message&)> eventHandler =
5406714a25aSJames Feist         [&](sdbusplus::message::message& message) {
5416714a25aSJames Feist             if (message.is_method_error())
5426714a25aSJames Feist             {
5436714a25aSJames Feist                 std::cerr << "callback method error\n";
5446714a25aSJames Feist                 return;
5456714a25aSJames Feist             }
5466714a25aSJames Feist             sensorsChanged->insert(message.get_path());
5476714a25aSJames Feist             // this implicitly cancels the timer
5486714a25aSJames Feist             filterTimer.expires_from_now(boost::posix_time::seconds(1));
5496714a25aSJames Feist 
5506714a25aSJames Feist             filterTimer.async_wait([&](const boost::system::error_code& ec) {
5516714a25aSJames Feist                 if (ec == boost::asio::error::operation_aborted)
5526714a25aSJames Feist                 {
5536714a25aSJames Feist                     /* we were canceled*/
5546714a25aSJames Feist                     return;
5556714a25aSJames Feist                 }
5568a57ec09SEd Tanous                 if (ec)
5576714a25aSJames Feist                 {
5586714a25aSJames Feist                     std::cerr << "timer error\n";
5596714a25aSJames Feist                     return;
5606714a25aSJames Feist                 }
5616714a25aSJames Feist                 createSensors(io, objectServer, sensors, systemBus,
5626714a25aSJames Feist                               sensorsChanged);
5636714a25aSJames Feist             });
5646714a25aSJames Feist         };
5656714a25aSJames Feist 
5669ced0a38SJae Hyun Yoo     for (const char* type : sensorTypes)
5676714a25aSJames Feist     {
5686714a25aSJames Feist         auto match = std::make_unique<sdbusplus::bus::match::match>(
5696714a25aSJames Feist             static_cast<sdbusplus::bus::bus&>(*systemBus),
5706714a25aSJames Feist             "type='signal',member='PropertiesChanged',path_namespace='" +
5719ced0a38SJae Hyun Yoo                 std::string(inventoryPath) + "',arg0namespace='" + type + "'",
5726714a25aSJames Feist             eventHandler);
5736714a25aSJames Feist         matches.emplace_back(std::move(match));
5746714a25aSJames Feist     }
5756714a25aSJames Feist 
5761263c3daSBruce Lee     setupManufacturingModeMatch(*systemBus);
57720bf2c1cSMatt Spinler 
57820bf2c1cSMatt Spinler     // Watch for entity-manager to remove configuration interfaces
57920bf2c1cSMatt Spinler     // so the corresponding sensors can be removed.
58020bf2c1cSMatt Spinler     auto ifaceRemovedMatch = std::make_unique<sdbusplus::bus::match::match>(
58120bf2c1cSMatt Spinler         static_cast<sdbusplus::bus::bus&>(*systemBus),
58220bf2c1cSMatt Spinler         "type='signal',member='InterfacesRemoved',arg0path='" +
58320bf2c1cSMatt Spinler             std::string(inventoryPath) + "/'",
58420bf2c1cSMatt Spinler         [&sensors](sdbusplus::message::message& msg) {
58520bf2c1cSMatt Spinler             interfaceRemoved(msg, sensors);
58620bf2c1cSMatt Spinler         });
58720bf2c1cSMatt Spinler 
58820bf2c1cSMatt Spinler     matches.emplace_back(std::move(ifaceRemovedMatch));
58920bf2c1cSMatt Spinler 
5906714a25aSJames Feist     io.run();
5916714a25aSJames Feist }
592