blob: e99a700c0b07e358dbd2d5182be911f2a6f1d9a0 [file] [log] [blame]
Cheng C Yang209ec562019-03-12 16:37:44 +08001/*
2// Copyright (c) 2019 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*/
Josh Lehan0830c7b2019-10-08 16:35:09 -070016
Matt Simmering786efb82023-01-18 14:09:21 -080017#include "DeviceMgmt.hpp"
Andrew Jefferye73bd0a2023-01-25 10:39:57 +103018#include "PSUEvent.hpp"
19#include "PSUSensor.hpp"
Ed Tanouseacbfdd2024-04-04 12:00:24 -070020#include "PwmSensor.hpp"
21#include "SensorPaths.hpp"
22#include "Thresholds.hpp"
Andrew Jefferye73bd0a2023-01-25 10:39:57 +103023#include "Utils.hpp"
Ed Tanouseacbfdd2024-04-04 12:00:24 -070024#include "VariantVisitors.hpp"
Andrew Jefferye73bd0a2023-01-25 10:39:57 +103025
Matt Simmeringe4e6a282023-03-03 14:41:04 -080026#include <boost/algorithm/string/case_conv.hpp>
Cheng C Yang209ec562019-03-12 16:37:44 +080027#include <boost/algorithm/string/replace.hpp>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070028#include <boost/asio/error.hpp>
29#include <boost/asio/io_context.hpp>
30#include <boost/asio/post.hpp>
31#include <boost/asio/steady_timer.hpp>
Patrick Venture96e97db2019-10-31 13:44:38 -070032#include <boost/container/flat_map.hpp>
Cheng C Yang209ec562019-03-12 16:37:44 +080033#include <boost/container/flat_set.hpp>
James Feist38fb5982020-05-28 10:09:54 -070034#include <sdbusplus/asio/connection.hpp>
35#include <sdbusplus/asio/object_server.hpp>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070036#include <sdbusplus/bus.hpp>
James Feist38fb5982020-05-28 10:09:54 -070037#include <sdbusplus/bus/match.hpp>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070038#include <sdbusplus/exception.hpp>
39#include <sdbusplus/message.hpp>
40#include <sdbusplus/message/native_types.hpp>
James Feist38fb5982020-05-28 10:09:54 -070041
Ed Tanouseacbfdd2024-04-04 12:00:24 -070042#include <algorithm>
James Feist38fb5982020-05-28 10:09:54 -070043#include <array>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070044#include <cctype>
45#include <chrono>
Josh Lehan74d9bd92019-10-31 08:51:58 -070046#include <cmath>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070047#include <cstddef>
48#include <cstdint>
49#include <exception>
James Feist24f02f22019-04-15 11:05:39 -070050#include <filesystem>
Cheng C Yang209ec562019-03-12 16:37:44 +080051#include <fstream>
Patrick Venture96e97db2019-10-31 13:44:38 -070052#include <functional>
Cheng C Yang58b2b532019-05-31 00:19:45 +080053#include <iostream>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070054#include <memory>
Cheng C Yang209ec562019-03-12 16:37:44 +080055#include <regex>
Ed Tanouseacbfdd2024-04-04 12:00:24 -070056#include <stdexcept>
Patrick Venture96e97db2019-10-31 13:44:38 -070057#include <string>
Lei YUa2c7cea2020-12-23 14:07:28 +080058#include <string_view>
Patrick Venture96e97db2019-10-31 13:44:38 -070059#include <utility>
60#include <variant>
61#include <vector>
Cheng C Yang209ec562019-03-12 16:37:44 +080062
Ed Tanous8a57ec02020-10-09 12:46:52 -070063static constexpr bool debug = false;
Chau Lyc4ddf642024-07-09 05:01:06 +000064static std::regex i2cDevRegex(R"((\/i2c\-\d+\/\d+-[a-fA-F0-9]{4,4})(\/|$))");
Josh Lehan49cfba92019-10-08 16:50:42 -070065
Matt Simmering786efb82023-01-18 14:09:21 -080066static const I2CDeviceTypeMap sensorTypes{
Delphine CC Chiu436c5bd2023-09-22 09:47:43 +080067 {"ADC128D818", I2CDeviceType{"adc128d818", true}},
Matt Simmering786efb82023-01-18 14:09:21 -080068 {"ADM1266", I2CDeviceType{"adm1266", true}},
69 {"ADM1272", I2CDeviceType{"adm1272", true}},
70 {"ADM1275", I2CDeviceType{"adm1275", true}},
71 {"ADM1278", I2CDeviceType{"adm1278", true}},
72 {"ADM1293", I2CDeviceType{"adm1293", true}},
Joseph Fub844e972023-03-25 10:24:30 +080073 {"ADS1015", I2CDeviceType{"ads1015", true}},
Matt Simmering786efb82023-01-18 14:09:21 -080074 {"ADS7830", I2CDeviceType{"ads7830", true}},
75 {"AHE50DC_FAN", I2CDeviceType{"ahe50dc_fan", true}},
76 {"BMR490", I2CDeviceType{"bmr490", true}},
Alexander Hansen90ef14d2023-08-01 17:12:17 +020077 {"cffps", I2CDeviceType{"cffps", true}},
78 {"cffps1", I2CDeviceType{"cffps", true}},
79 {"cffps2", I2CDeviceType{"cffps", true}},
80 {"cffps3", I2CDeviceType{"cffps", true}},
Andrew Geisslerb2392ef2024-12-10 09:39:19 -060081 {"CRPS185", I2CDeviceType{"crps185", true}},
Matt Simmering786efb82023-01-18 14:09:21 -080082 {"DPS800", I2CDeviceType{"dps800", true}},
83 {"INA219", I2CDeviceType{"ina219", true}},
84 {"INA230", I2CDeviceType{"ina230", true}},
Potin Lai5674ac92023-11-20 14:33:56 +080085 {"INA238", I2CDeviceType{"ina238", true}},
Jian Zhangaff100c2023-07-26 01:22:50 +080086 {"IPSPS1", I2CDeviceType{"ipsps1", true}},
Matt Simmering786efb82023-01-18 14:09:21 -080087 {"IR38060", I2CDeviceType{"ir38060", true}},
88 {"IR38164", I2CDeviceType{"ir38164", true}},
89 {"IR38263", I2CDeviceType{"ir38263", true}},
Yikai Tsai5b74aba2024-09-06 13:58:28 +080090 {"ISL28022", I2CDeviceType{"isl28022", true}},
Matt Simmering786efb82023-01-18 14:09:21 -080091 {"ISL68137", I2CDeviceType{"isl68137", true}},
92 {"ISL68220", I2CDeviceType{"isl68220", true}},
93 {"ISL68223", I2CDeviceType{"isl68223", true}},
94 {"ISL69225", I2CDeviceType{"isl69225", true}},
95 {"ISL69243", I2CDeviceType{"isl69243", true}},
96 {"ISL69260", I2CDeviceType{"isl69260", true}},
97 {"LM25066", I2CDeviceType{"lm25066", true}},
Yi-Shum77e87692023-11-30 10:27:45 +080098 {"LTC2945", I2CDeviceType{"ltc2945", true}},
Potin Lai43847a82024-02-27 16:29:45 +080099 {"LTC4286", I2CDeviceType{"ltc4286", true}},
100 {"LTC4287", I2CDeviceType{"ltc4287", true}},
Patrick Rudolph8d691e22023-09-11 10:43:28 +0200101 {"MAX5970", I2CDeviceType{"max5970", true}},
Joseph Fu15a39df2023-12-27 09:45:49 +0800102 {"MAX11607", I2CDeviceType{"max11607", false}},
Ian Chienc82a4092024-07-24 10:52:59 +0800103 {"MAX11615", I2CDeviceType{"max11615", false}},
Allen.Wang8c13c282024-07-03 09:42:54 +0800104 {"MAX11617", I2CDeviceType{"max11617", false}},
Matt Simmering786efb82023-01-18 14:09:21 -0800105 {"MAX16601", I2CDeviceType{"max16601", true}},
106 {"MAX20710", I2CDeviceType{"max20710", true}},
107 {"MAX20730", I2CDeviceType{"max20730", true}},
108 {"MAX20734", I2CDeviceType{"max20734", true}},
109 {"MAX20796", I2CDeviceType{"max20796", true}},
110 {"MAX34451", I2CDeviceType{"max34451", true}},
Potin Lai4cfa64f2023-12-18 13:35:05 +0800111 {"MP2856", I2CDeviceType{"mp2856", true}},
112 {"MP2857", I2CDeviceType{"mp2857", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800113 {"MP2971", I2CDeviceType{"mp2971", true}},
114 {"MP2973", I2CDeviceType{"mp2973", true}},
115 {"MP2975", I2CDeviceType{"mp2975", true}},
116 {"MP5023", I2CDeviceType{"mp5023", true}},
Potin Lai7f2b77d2023-12-13 16:53:10 +0800117 {"MP5990", I2CDeviceType{"mp5990", true}},
Jeff Lind8e48df2024-06-07 09:06:56 +0800118 {"MPQ8785", I2CDeviceType{"mpq8785", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800119 {"NCP4200", I2CDeviceType{"ncp4200", true}},
120 {"PLI1209BC", I2CDeviceType{"pli1209bc", true}},
121 {"pmbus", I2CDeviceType{"pmbus", true}},
122 {"PXE1610", I2CDeviceType{"pxe1610", true}},
123 {"RAA228000", I2CDeviceType{"raa228000", true}},
Potin Lai6e6618f2024-05-16 15:02:56 +0800124 {"RAA228004", I2CDeviceType{"raa228004", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800125 {"RAA228228", I2CDeviceType{"raa228228", true}},
126 {"RAA228620", I2CDeviceType{"raa228620", true}},
127 {"RAA229001", I2CDeviceType{"raa229001", true}},
128 {"RAA229004", I2CDeviceType{"raa229004", true}},
129 {"RAA229126", I2CDeviceType{"raa229126", true}},
Ian Chien982d99f2024-08-20 17:16:56 +0800130 {"RTQ6056", I2CDeviceType{"rtq6056", false}},
cchouxb2a0f2e2024-03-02 19:32:15 +0800131 {"SBRMI", I2CDeviceType{"sbrmi", true}},
Chau Lyc4ddf642024-07-09 05:01:06 +0000132 {"smpro_hwmon", I2CDeviceType{"smpro", false}},
Rush Chena9ea8e52025-01-02 11:28:57 +0800133 {"SY24655", I2CDeviceType{"sy24655", true}},
Patrick Rudolph86c9e212023-04-19 09:04:19 +0200134 {"TDA38640", I2CDeviceType{"tda38640", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800135 {"TPS53679", I2CDeviceType{"tps53679", true}},
136 {"TPS546D24", I2CDeviceType{"tps546d24", true}},
Yi-Shum9110dfc2024-06-04 15:19:58 +0800137 {"XDP710", I2CDeviceType{"xdp710", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800138 {"XDPE11280", I2CDeviceType{"xdpe11280", true}},
139 {"XDPE12284", I2CDeviceType{"xdpe12284", true}},
Jeff Lin40bd6712023-06-01 19:14:09 +0800140 {"XDPE152C4", I2CDeviceType{"xdpe152c4", true}},
Matt Simmering786efb82023-01-18 14:09:21 -0800141};
Josh Lehan0830c7b2019-10-08 16:35:09 -0700142
Joseph Fub844e972023-03-25 10:24:30 +0800143enum class DevTypes
144{
145 Unknown = 0,
146 HWMON,
147 IIO
148};
149
150struct DevParams
151{
152 unsigned int matchIndex = 0;
153 std::string matchRegEx;
154 std::string nameRegEx;
155};
156
Cheng C Yang209ec562019-03-12 16:37:44 +0800157namespace fs = std::filesystem;
158
Yong Libf8b1da2020-04-15 16:32:50 +0800159static boost::container::flat_map<std::string, std::shared_ptr<PSUSensor>>
Cheng C Yang916360b2019-05-07 18:47:16 +0800160 sensors;
Cheng C Yang58b2b532019-05-31 00:19:45 +0800161static boost::container::flat_map<std::string, std::unique_ptr<PSUCombineEvent>>
162 combineEvents;
Cheng C Yang916360b2019-05-07 18:47:16 +0800163static boost::container::flat_map<std::string, std::unique_ptr<PwmSensor>>
164 pwmSensors;
165static boost::container::flat_map<std::string, std::string> sensorTable;
166static boost::container::flat_map<std::string, PSUProperty> labelMatch;
George Liu5b3542e2023-10-31 17:27:12 +0800167static EventPathList eventMatch;
George Liu5b3542e2023-10-31 17:27:12 +0800168static EventPathList limitEventMatch;
Cheng C Yang58b2b532019-05-31 00:19:45 +0800169
Matt Simmeringe4e6a282023-03-03 14:41:04 -0800170static boost::container::flat_map<size_t, bool> cpuPresence;
Joseph Fub844e972023-03-25 10:24:30 +0800171static boost::container::flat_map<DevTypes, DevParams> devParamMap;
Josh Lehan74d9bd92019-10-31 08:51:58 -0700172
Cheng C Yang58b2b532019-05-31 00:19:45 +0800173// Function CheckEvent will check each attribute from eventMatch table in the
174// sysfs. If the attributes exists in sysfs, then store the complete path
175// of the attribute into eventPathList.
George Liu5b3542e2023-10-31 17:27:12 +0800176void checkEvent(const std::string& directory, const EventPathList& eventMatch,
177 EventPathList& eventPathList)
Cheng C Yang58b2b532019-05-31 00:19:45 +0800178{
179 for (const auto& match : eventMatch)
180 {
181 const std::vector<std::string>& eventAttrs = match.second;
182 const std::string& eventName = match.first;
183 for (const auto& eventAttr : eventAttrs)
184 {
Ed Tanous8a57ec02020-10-09 12:46:52 -0700185 std::string eventPath = directory;
186 eventPath += "/";
187 eventPath += eventAttr;
Cheng C Yang58b2b532019-05-31 00:19:45 +0800188
189 std::ifstream eventFile(eventPath);
190 if (!eventFile.good())
191 {
192 continue;
193 }
194
195 eventPathList[eventName].push_back(eventPath);
196 }
197 }
198}
199
Cheng C Yang202a1ff2020-01-09 09:34:22 +0800200// Check Group Events which contains more than one targets in each combine
201// events.
George Liu5b3542e2023-10-31 17:27:12 +0800202void checkGroupEvent(const std::string& directory,
George Liu5b3542e2023-10-31 17:27:12 +0800203 GroupEventPathList& groupEventPathList)
Cheng C Yang202a1ff2020-01-09 09:34:22 +0800204{
cchouxe8a14e92023-10-25 23:26:27 +0800205 EventPathList pathList;
206 std::vector<fs::path> eventPaths;
207 if (!findFiles(fs::path(directory), R"(fan\d+_(alarm|fault))", eventPaths))
Cheng C Yang202a1ff2020-01-09 09:34:22 +0800208 {
cchouxe8a14e92023-10-25 23:26:27 +0800209 return;
Cheng C Yang202a1ff2020-01-09 09:34:22 +0800210 }
cchouxe8a14e92023-10-25 23:26:27 +0800211
212 for (const auto& eventPath : eventPaths)
213 {
214 std::string attrName = eventPath.filename();
215 pathList[attrName.substr(0, attrName.find('_'))].push_back(eventPath);
216 }
217 groupEventPathList["FanFault"] = pathList;
Cheng C Yang202a1ff2020-01-09 09:34:22 +0800218}
219
Cheng C Yang58b2b532019-05-31 00:19:45 +0800220// Function checkEventLimits will check all the psu related xxx_input attributes
221// in sysfs to see if xxx_crit_alarm xxx_lcrit_alarm xxx_max_alarm
222// xxx_min_alarm exist, then store the existing paths of the alarm attributes
223// to eventPathList.
George Liu5b3542e2023-10-31 17:27:12 +0800224void checkEventLimits(const std::string& sensorPathStr,
225 const EventPathList& limitEventMatch,
226 EventPathList& eventPathList)
Cheng C Yang58b2b532019-05-31 00:19:45 +0800227{
Lei YUa2c7cea2020-12-23 14:07:28 +0800228 auto attributePartPos = sensorPathStr.find_last_of('_');
229 if (attributePartPos == std::string::npos)
230 {
231 // There is no '_' in the string, skip it
232 return;
233 }
234 auto attributePart =
235 std::string_view(sensorPathStr).substr(attributePartPos + 1);
236 if (attributePart != "input")
237 {
238 // If the sensor is not xxx_input, skip it
239 return;
240 }
241
242 auto prefixPart = sensorPathStr.substr(0, attributePartPos + 1);
Cheng C Yang58b2b532019-05-31 00:19:45 +0800243 for (const auto& limitMatch : limitEventMatch)
244 {
245 const std::vector<std::string>& limitEventAttrs = limitMatch.second;
246 const std::string& eventName = limitMatch.first;
247 for (const auto& limitEventAttr : limitEventAttrs)
248 {
Lei YUa2c7cea2020-12-23 14:07:28 +0800249 auto limitEventPath = prefixPart + limitEventAttr;
Cheng C Yang58b2b532019-05-31 00:19:45 +0800250 std::ifstream eventFile(limitEventPath);
251 if (!eventFile.good())
252 {
253 continue;
254 }
255 eventPathList[eventName].push_back(limitEventPath);
256 }
257 }
258}
Cheng C Yang916360b2019-05-07 18:47:16 +0800259
Patrick Williams2aaf7172024-08-16 15:20:40 -0400260static void checkPWMSensor(
261 const fs::path& sensorPath, std::string& labelHead,
262 const std::string& interfacePath,
263 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
264 sdbusplus::asio::object_server& objectServer, const std::string& psuName)
Cheng C Yang916360b2019-05-07 18:47:16 +0800265{
cchouxe8a14e92023-10-25 23:26:27 +0800266 if (!labelHead.starts_with("fan"))
Cheng C Yang916360b2019-05-07 18:47:16 +0800267 {
cchouxe8a14e92023-10-25 23:26:27 +0800268 return;
Cheng C Yang916360b2019-05-07 18:47:16 +0800269 }
cchouxe8a14e92023-10-25 23:26:27 +0800270 std::string labelHeadIndex = labelHead.substr(3);
271
272 const std::string& sensorPathStr = sensorPath.string();
Patrick Williams2aaf7172024-08-16 15:20:40 -0400273 const std::string& pwmPathStr =
274 boost::replace_all_copy(sensorPathStr, "input", "target");
cchouxe8a14e92023-10-25 23:26:27 +0800275 std::ifstream pwmFile(pwmPathStr);
276 if (!pwmFile.good())
277 {
278 return;
279 }
280
281 auto findPWMSensor = pwmSensors.find(psuName + labelHead);
282 if (findPWMSensor != pwmSensors.end())
283 {
284 return;
285 }
286
287 std::string name = "Pwm_";
288 name += psuName;
289 name += "_Fan_";
290 name += labelHeadIndex;
291
292 std::string objPath = interfacePath;
293 objPath += "_Fan_";
294 objPath += labelHeadIndex;
295
296 pwmSensors[psuName + labelHead] = std::make_unique<PwmSensor>(
297 name, pwmPathStr, dbusConnection, objectServer, objPath, "PSU");
Cheng C Yang916360b2019-05-07 18:47:16 +0800298}
299
Zhikui Ren23c96e72020-11-05 22:32:28 -0800300static void createSensorsCallback(
Ed Tanous1f978632023-02-28 18:16:39 -0800301 boost::asio::io_context& io, sdbusplus::asio::object_server& objectServer,
Zhikui Ren23c96e72020-11-05 22:32:28 -0800302 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
303 const ManagedObjectType& sensorConfigs,
304 const std::shared_ptr<boost::container::flat_set<std::string>>&
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800305 sensorsChanged,
306 bool activateOnly)
Cheng C Yang209ec562019-03-12 16:37:44 +0800307{
Josh Lehan49cfba92019-10-08 16:50:42 -0700308 int numCreated = 0;
Zhikui Ren23c96e72020-11-05 22:32:28 -0800309 bool firstScan = sensorsChanged == nullptr;
Cheng C Yang209ec562019-03-12 16:37:44 +0800310
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800311 auto devices = instantiateDevices(sensorConfigs, sensors, sensorTypes);
312
Cheng C Yang209ec562019-03-12 16:37:44 +0800313 std::vector<fs::path> pmbusPaths;
Joseph Fub844e972023-03-25 10:24:30 +0800314 findFiles(fs::path("/sys/bus/iio/devices"), "name", pmbusPaths);
315 findFiles(fs::path("/sys/class/hwmon"), "name", pmbusPaths);
316 if (pmbusPaths.empty())
Cheng C Yang209ec562019-03-12 16:37:44 +0800317 {
318 std::cerr << "No PSU sensors in system\n";
319 return;
320 }
321
322 boost::container::flat_set<std::string> directories;
323 for (const auto& pmbusPath : pmbusPaths)
324 {
George Liu5b3542e2023-10-31 17:27:12 +0800325 EventPathList eventPathList;
326 GroupEventPathList groupEventPathList;
Cheng C Yang58b2b532019-05-31 00:19:45 +0800327
328 std::ifstream nameFile(pmbusPath);
329 if (!nameFile.good())
330 {
Josh Lehan49cfba92019-10-08 16:50:42 -0700331 std::cerr << "Failure finding pmbus path " << pmbusPath << "\n";
Cheng C Yang58b2b532019-05-31 00:19:45 +0800332 continue;
333 }
334
335 std::string pmbusName;
336 std::getline(nameFile, pmbusName);
337 nameFile.close();
Vijay Khemka996bad12019-05-28 15:15:16 -0700338
Matt Simmering786efb82023-01-18 14:09:21 -0800339 if (sensorTypes.find(pmbusName) == sensorTypes.end())
Cheng C Yang58b2b532019-05-31 00:19:45 +0800340 {
Josh Lehan49cfba92019-10-08 16:50:42 -0700341 // To avoid this error message, add your driver name to
342 // the pmbusNames vector at the top of this file.
343 std::cerr << "Driver name " << pmbusName
344 << " not found in sensor whitelist\n";
Cheng C Yang58b2b532019-05-31 00:19:45 +0800345 continue;
346 }
347
Cheng C Yang209ec562019-03-12 16:37:44 +0800348 auto directory = pmbusPath.parent_path();
349
350 auto ret = directories.insert(directory.string());
351 if (!ret.second)
352 {
Josh Lehan49cfba92019-10-08 16:50:42 -0700353 std::cerr << "Duplicate path " << directory.string() << "\n";
Cheng C Yang58b2b532019-05-31 00:19:45 +0800354 continue; // check if path has already been searched
Cheng C Yang209ec562019-03-12 16:37:44 +0800355 }
356
Joseph Fub844e972023-03-25 10:24:30 +0800357 DevTypes devType = DevTypes::HWMON;
358 std::string deviceName;
359 if (directory.parent_path() == "/sys/class/hwmon")
360 {
Chau Lyc4ddf642024-07-09 05:01:06 +0000361 std::string devicePath = fs::canonical(directory / "device");
362 std::smatch match;
363 // Find /i2c-<bus>/<bus>-<address> match in device path
364 std::regex_search(devicePath, match, i2cDevRegex);
365 if (match.empty())
366 {
367 std::cerr << "Found bad device path " << devicePath << "\n";
368 continue;
369 }
370 // Extract <bus>-<address>
371 std::string matchStr = match[1];
372 deviceName = matchStr.substr(matchStr.find_last_of('/') + 1);
Joseph Fub844e972023-03-25 10:24:30 +0800373 }
374 else
375 {
376 deviceName = fs::canonical(directory).parent_path().stem();
377 devType = DevTypes::IIO;
378 }
379
Cheng C Yang209ec562019-03-12 16:37:44 +0800380 size_t bus = 0;
381 size_t addr = 0;
Akshit Shah03d333e2023-08-23 22:14:28 +0000382 if (!getDeviceBusAddr(deviceName, bus, addr))
Cheng C Yang209ec562019-03-12 16:37:44 +0800383 {
Cheng C Yang209ec562019-03-12 16:37:44 +0800384 continue;
385 }
386
Zev Weisse8b97ee2022-08-12 15:23:51 -0700387 const SensorBaseConfigMap* baseConfig = nullptr;
Cheng C Yang209ec562019-03-12 16:37:44 +0800388 const SensorData* sensorData = nullptr;
389 const std::string* interfacePath = nullptr;
Matt Simmering786efb82023-01-18 14:09:21 -0800390 std::string sensorType;
Cheng C Yang6b1247a2020-03-09 23:48:39 +0800391 size_t thresholdConfSize = 0;
Cheng C Yang209ec562019-03-12 16:37:44 +0800392
Zev Weiss741f26e2022-08-12 18:21:02 -0700393 for (const auto& [path, cfgData] : sensorConfigs)
Cheng C Yang209ec562019-03-12 16:37:44 +0800394 {
Zev Weiss741f26e2022-08-12 18:21:02 -0700395 sensorData = &cfgData;
Matt Simmering786efb82023-01-18 14:09:21 -0800396 for (const auto& [type, dt] : sensorTypes)
Cheng C Yang209ec562019-03-12 16:37:44 +0800397 {
Zev Weiss054aad82022-08-18 01:37:34 -0700398 auto sensorBase = sensorData->find(configInterfaceName(type));
Cheng C Yang209ec562019-03-12 16:37:44 +0800399 if (sensorBase != sensorData->end())
400 {
Zev Weisse8b97ee2022-08-12 15:23:51 -0700401 baseConfig = &sensorBase->second;
Cheng C Yang209ec562019-03-12 16:37:44 +0800402 sensorType = type;
403 break;
404 }
405 }
406 if (baseConfig == nullptr)
407 {
408 std::cerr << "error finding base configuration for "
409 << deviceName << "\n";
410 continue;
411 }
412
Zev Weisse8b97ee2022-08-12 15:23:51 -0700413 auto configBus = baseConfig->find("Bus");
414 auto configAddress = baseConfig->find("Address");
Cheng C Yang209ec562019-03-12 16:37:44 +0800415
Zev Weisse8b97ee2022-08-12 15:23:51 -0700416 if (configBus == baseConfig->end() ||
417 configAddress == baseConfig->end())
Cheng C Yang209ec562019-03-12 16:37:44 +0800418 {
Cheng C Yang58b2b532019-05-31 00:19:45 +0800419 std::cerr << "error finding necessary entry in configuration\n";
Cheng C Yang209ec562019-03-12 16:37:44 +0800420 continue;
421 }
422
Matt Simmering6747eba2023-01-18 16:03:55 -0800423 const uint64_t* confBus =
424 std::get_if<uint64_t>(&(configBus->second));
425 const uint64_t* confAddr =
426 std::get_if<uint64_t>(&(configAddress->second));
Ed Tanousa771f6a2022-01-14 09:36:51 -0800427 if (confBus == nullptr || confAddr == nullptr)
Cheng C Yang58b2b532019-05-31 00:19:45 +0800428 {
429 std::cerr
Josh Lehan49cfba92019-10-08 16:50:42 -0700430 << "Cannot get bus or address, invalid configuration\n";
Cheng C Yang58b2b532019-05-31 00:19:45 +0800431 continue;
432 }
433
434 if ((*confBus != bus) || (*confAddr != addr))
Cheng C Yang209ec562019-03-12 16:37:44 +0800435 {
Patrick Rudolph9f270872023-10-25 09:13:09 +0200436 if constexpr (debug)
437 {
438 std::cerr << "Configuration skipping " << *confBus << "-"
439 << *confAddr << " because not " << bus << "-"
440 << addr << "\n";
441 }
Cheng C Yang209ec562019-03-12 16:37:44 +0800442 continue;
443 }
444
Cheng C Yang6b1247a2020-03-09 23:48:39 +0800445 std::vector<thresholds::Threshold> confThresholds;
446 if (!parseThresholdsFromConfig(*sensorData, confThresholds))
447 {
Zhikui Ren85fa3c62022-02-26 23:03:34 -0800448 std::cerr << "error populating total thresholds\n";
Cheng C Yang6b1247a2020-03-09 23:48:39 +0800449 }
450 thresholdConfSize = confThresholds.size();
451
Zev Weiss741f26e2022-08-12 18:21:02 -0700452 interfacePath = &path.str;
Cheng C Yang209ec562019-03-12 16:37:44 +0800453 break;
454 }
455 if (interfacePath == nullptr)
456 {
Josh Lehan49cfba92019-10-08 16:50:42 -0700457 // To avoid this error message, add your export map entry,
458 // from Entity Manager, to sensorTypes at the top of this file.
Cheng C Yang209ec562019-03-12 16:37:44 +0800459 std::cerr << "failed to find match for " << deviceName << "\n";
460 continue;
461 }
462
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800463 auto findI2CDev = devices.find(*interfacePath);
464
465 std::shared_ptr<I2CDevice> i2cDev;
466 if (findI2CDev != devices.end())
467 {
468 if (activateOnly && !findI2CDev->second.second)
469 {
470 continue;
471 }
472 i2cDev = findI2CDev->second.first;
473 }
474
Zev Weisse8b97ee2022-08-12 15:23:51 -0700475 auto findPSUName = baseConfig->find("Name");
476 if (findPSUName == baseConfig->end())
Cheng C Yang209ec562019-03-12 16:37:44 +0800477 {
478 std::cerr << "could not determine configuration name for "
479 << deviceName << "\n";
480 continue;
481 }
Matt Simmering6747eba2023-01-18 16:03:55 -0800482 const std::string* psuName =
483 std::get_if<std::string>(&(findPSUName->second));
Ed Tanousa771f6a2022-01-14 09:36:51 -0800484 if (psuName == nullptr)
Cheng C Yang58b2b532019-05-31 00:19:45 +0800485 {
486 std::cerr << "Cannot find psu name, invalid configuration\n";
487 continue;
488 }
Zhikui Ren23c96e72020-11-05 22:32:28 -0800489
Matt Simmeringe4e6a282023-03-03 14:41:04 -0800490 auto findCPU = baseConfig->find("CPURequired");
491 if (findCPU != baseConfig->end())
492 {
Chris Sides3fce1bf2023-04-03 16:57:05 -0500493 size_t index = std::visit(VariantToIntVisitor(), findCPU->second);
Matt Simmeringe4e6a282023-03-03 14:41:04 -0800494 auto presenceFind = cpuPresence.find(index);
495 if (presenceFind == cpuPresence.end() || !presenceFind->second)
496 {
497 continue;
498 }
499 }
500
Zhikui Ren23c96e72020-11-05 22:32:28 -0800501 // on rescans, only update sensors we were signaled by
502 if (!firstScan)
503 {
Zhikui Renda98f092021-11-01 09:41:08 -0700504 std::string psuNameStr = "/" + escapeName(*psuName);
Patrick Williams2aaf7172024-08-16 15:20:40 -0400505 auto it =
506 std::find_if(sensorsChanged->begin(), sensorsChanged->end(),
507 [psuNameStr](std::string& s) {
508 return s.ends_with(psuNameStr);
509 });
Zhikui Ren23c96e72020-11-05 22:32:28 -0800510
511 if (it == sensorsChanged->end())
512 {
513 continue;
514 }
515 sensorsChanged->erase(it);
516 }
Cheng C Yang58b2b532019-05-31 00:19:45 +0800517 checkEvent(directory.string(), eventMatch, eventPathList);
cchouxe8a14e92023-10-25 23:26:27 +0800518 checkGroupEvent(directory.string(), groupEventPathList);
Cheng C Yang58b2b532019-05-31 00:19:45 +0800519
Zev Weisse8b97ee2022-08-12 15:23:51 -0700520 PowerState readState = getPowerState(*baseConfig);
Konstantin Aladyshevc7a1ae62021-04-30 08:50:43 +0000521
Vijay Khemka996bad12019-05-28 15:15:16 -0700522 /* Check if there are more sensors in the same interface */
523 int i = 1;
524 std::vector<std::string> psuNames;
525 do
526 {
Josh Lehan49cfba92019-10-08 16:50:42 -0700527 // Individual string fields: Name, Name1, Name2, Name3, ...
Zhikui Renda98f092021-11-01 09:41:08 -0700528 psuNames.push_back(
529 escapeName(std::get<std::string>(findPSUName->second)));
Zev Weisse8b97ee2022-08-12 15:23:51 -0700530 findPSUName = baseConfig->find("Name" + std::to_string(i++));
531 } while (findPSUName != baseConfig->end());
Vijay Khemka996bad12019-05-28 15:15:16 -0700532
Cheng C Yange50345b2019-04-02 17:26:15 +0800533 std::vector<fs::path> sensorPaths;
Joseph Fub844e972023-03-25 10:24:30 +0800534 if (!findFiles(directory, devParamMap[devType].matchRegEx, sensorPaths,
535 0))
Cheng C Yang209ec562019-03-12 16:37:44 +0800536 {
Cheng C Yange50345b2019-04-02 17:26:15 +0800537 std::cerr << "No PSU non-label sensor in PSU\n";
Cheng C Yang209ec562019-03-12 16:37:44 +0800538 continue;
539 }
540
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530541 /* read max value in sysfs for in, curr, power, temp, ... */
542 if (!findFiles(directory, R"(\w\d+_max$)", sensorPaths, 0))
543 {
Ed Tanous8a57ec02020-10-09 12:46:52 -0700544 if constexpr (debug)
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530545 {
546 std::cerr << "No max name in PSU \n";
547 }
548 }
549
Zev Weiss8569bf22022-10-11 15:37:44 -0700550 float pollRate = getPollRate(*baseConfig, PSUSensor::defaultSensorPoll);
Lei YU7170a232021-02-04 16:19:27 +0800551
Vijay Khemka996bad12019-05-28 15:15:16 -0700552 /* Find array of labels to be exposed if it is defined in config */
553 std::vector<std::string> findLabels;
Zev Weisse8b97ee2022-08-12 15:23:51 -0700554 auto findLabelObj = baseConfig->find("Labels");
555 if (findLabelObj != baseConfig->end())
Vijay Khemka996bad12019-05-28 15:15:16 -0700556 {
557 findLabels =
558 std::get<std::vector<std::string>>(findLabelObj->second);
559 }
560
Joseph Fub844e972023-03-25 10:24:30 +0800561 std::regex sensorNameRegEx(devParamMap[devType].nameRegEx);
Jason Ling5747fab2019-10-02 16:46:23 -0700562 std::smatch matches;
563
Cheng C Yange50345b2019-04-02 17:26:15 +0800564 for (const auto& sensorPath : sensorPaths)
Cheng C Yang209ec562019-03-12 16:37:44 +0800565 {
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530566 bool maxLabel = false;
Cheng C Yange50345b2019-04-02 17:26:15 +0800567 std::string labelHead;
568 std::string sensorPathStr = sensorPath.string();
569 std::string sensorNameStr = sensorPath.filename();
Ed Tanous2049bd22022-07-09 07:20:26 -0700570 std::string sensorNameSubStr;
Jason Ling5747fab2019-10-02 16:46:23 -0700571 if (std::regex_search(sensorNameStr, matches, sensorNameRegEx))
572 {
Josh Lehan06494452019-10-31 09:49:16 -0700573 // hwmon *_input filename without number:
574 // in, curr, power, temp, ...
Joseph Fub844e972023-03-25 10:24:30 +0800575 // iio in_*_raw filename without number:
576 // voltage, temp, pressure, ...
577 sensorNameSubStr = matches[devParamMap[devType].matchIndex];
Jason Ling5747fab2019-10-02 16:46:23 -0700578 }
579 else
580 {
Josh Lehan06494452019-10-31 09:49:16 -0700581 std::cerr << "Could not extract the alpha prefix from "
Jason Ling5747fab2019-10-02 16:46:23 -0700582 << sensorNameStr;
583 continue;
584 }
Cheng C Yange50345b2019-04-02 17:26:15 +0800585
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530586 std::string labelPath;
587
Joseph Fub844e972023-03-25 10:24:30 +0800588 if (devType == DevTypes::HWMON)
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530589 {
Joseph Fub844e972023-03-25 10:24:30 +0800590 /* find and differentiate _max and _input to replace "label" */
591 size_t pos = sensorPathStr.find('_');
592 if (pos != std::string::npos)
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530593 {
Joseph Fub844e972023-03-25 10:24:30 +0800594 std::string sensorPathStrMax = sensorPathStr.substr(pos);
595 if (sensorPathStrMax == "_max")
596 {
597 labelPath = boost::replace_all_copy(sensorPathStr,
598 "max", "label");
599 maxLabel = true;
600 }
601 else
602 {
603 labelPath = boost::replace_all_copy(sensorPathStr,
604 "input", "label");
605 maxLabel = false;
606 }
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530607 }
608 else
609 {
Cheng C Yange50345b2019-04-02 17:26:15 +0800610 continue;
611 }
612
Joseph Fub844e972023-03-25 10:24:30 +0800613 std::ifstream labelFile(labelPath);
614 if (!labelFile.good())
615 {
616 if constexpr (debug)
617 {
618 std::cerr << "Input file " << sensorPath
619 << " has no corresponding label file\n";
620 }
621 // hwmon *_input filename with number:
622 // temp1, temp2, temp3, ...
Patrick Williams2aaf7172024-08-16 15:20:40 -0400623 labelHead =
624 sensorNameStr.substr(0, sensorNameStr.find('_'));
Joseph Fub844e972023-03-25 10:24:30 +0800625 }
626 else
627 {
628 std::string label;
629 std::getline(labelFile, label);
630 labelFile.close();
631 auto findSensor = sensors.find(label);
632 if (findSensor != sensors.end())
633 {
634 continue;
635 }
Cheng C Yange50345b2019-04-02 17:26:15 +0800636
Joseph Fub844e972023-03-25 10:24:30 +0800637 // hwmon corresponding *_label file contents:
638 // vin1, vout1, ...
639 labelHead = label.substr(0, label.find(' '));
640 }
641
642 /* append "max" for labelMatch */
643 if (maxLabel)
644 {
645 labelHead.insert(0, "max");
646 }
647
648 checkPWMSensor(sensorPath, labelHead, *interfacePath,
649 dbusConnection, objectServer, psuNames[0]);
650 }
651 else if (devType == DevTypes::IIO)
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530652 {
Joseph Fub844e972023-03-25 10:24:30 +0800653 auto findIIOHyphen = sensorNameStr.find_last_of('_');
654 labelHead = sensorNameStr.substr(0, findIIOHyphen);
Manikandan Elumalaic7e95622020-06-03 20:22:01 +0530655 }
656
Ed Tanous8a57ec02020-10-09 12:46:52 -0700657 if constexpr (debug)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700658 {
659 std::cerr << "Sensor type=\"" << sensorNameSubStr
660 << "\" label=\"" << labelHead << "\"\n";
661 }
662
Vijay Khemka996bad12019-05-28 15:15:16 -0700663 if (!findLabels.empty())
664 {
665 /* Check if this labelHead is enabled in config file */
666 if (std::find(findLabels.begin(), findLabels.end(),
667 labelHead) == findLabels.end())
668 {
Ed Tanous8a57ec02020-10-09 12:46:52 -0700669 if constexpr (debug)
Cheng C Yang6b1247a2020-03-09 23:48:39 +0800670 {
671 std::cerr << "could not find " << labelHead
672 << " in the Labels list\n";
673 }
Vijay Khemka996bad12019-05-28 15:15:16 -0700674 continue;
675 }
676 }
Cheng C Yange50345b2019-04-02 17:26:15 +0800677
cchouxe8a14e92023-10-25 23:26:27 +0800678 auto findProperty = labelMatch.find(sensorNameSubStr);
Cheng C Yange50345b2019-04-02 17:26:15 +0800679 if (findProperty == labelMatch.end())
Cheng C Yang209ec562019-03-12 16:37:44 +0800680 {
Ed Tanous8a57ec02020-10-09 12:46:52 -0700681 if constexpr (debug)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700682 {
683 std::cerr << "Could not find matching default property for "
cchouxe8a14e92023-10-25 23:26:27 +0800684 << sensorNameSubStr << "\n";
Josh Lehan74d9bd92019-10-31 08:51:58 -0700685 }
Cheng C Yang209ec562019-03-12 16:37:44 +0800686 continue;
687 }
688
Josh Lehan74d9bd92019-10-31 08:51:58 -0700689 // Protect the hardcoded labelMatch list from changes,
690 // by making a copy and modifying that instead.
691 // Avoid bleedthrough of one device's customizations to
692 // the next device, as each should be independently customizable.
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800693 PSUProperty psuProperty = findProperty->second;
Josh Lehan74d9bd92019-10-31 08:51:58 -0700694
695 // Use label head as prefix for reading from config file,
696 // example if temp1: temp1_Name, temp1_Scale, temp1_Min, ...
697 std::string keyName = labelHead + "_Name";
698 std::string keyScale = labelHead + "_Scale";
699 std::string keyMin = labelHead + "_Min";
700 std::string keyMax = labelHead + "_Max";
Jeff Line41d52f2021-04-07 19:38:51 +0800701 std::string keyOffset = labelHead + "_Offset";
Lotus Xucb5af732021-09-10 15:18:50 +0800702 std::string keyPowerState = labelHead + "_PowerState";
Josh Lehan74d9bd92019-10-31 08:51:58 -0700703
704 bool customizedName = false;
Zev Weisse8b97ee2022-08-12 15:23:51 -0700705 auto findCustomName = baseConfig->find(keyName);
706 if (findCustomName != baseConfig->end())
Josh Lehan432d1ed2019-10-16 12:23:31 -0700707 {
Josh Lehan74d9bd92019-10-31 08:51:58 -0700708 try
709 {
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800710 psuProperty.labelTypeName = std::visit(
Josh Lehan74d9bd92019-10-31 08:51:58 -0700711 VariantToStringVisitor(), findCustomName->second);
712 }
Patrick Williams26601e82021-10-06 12:43:25 -0500713 catch (const std::invalid_argument&)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700714 {
715 std::cerr << "Unable to parse " << keyName << "\n";
716 continue;
717 }
718
719 // All strings are valid, including empty string
720 customizedName = true;
721 }
722
723 bool customizedScale = false;
Zev Weisse8b97ee2022-08-12 15:23:51 -0700724 auto findCustomScale = baseConfig->find(keyScale);
725 if (findCustomScale != baseConfig->end())
Josh Lehan74d9bd92019-10-31 08:51:58 -0700726 {
727 try
728 {
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800729 psuProperty.sensorScaleFactor = std::visit(
Josh Lehan74d9bd92019-10-31 08:51:58 -0700730 VariantToUnsignedIntVisitor(), findCustomScale->second);
731 }
Patrick Williams26601e82021-10-06 12:43:25 -0500732 catch (const std::invalid_argument&)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700733 {
734 std::cerr << "Unable to parse " << keyScale << "\n";
735 continue;
736 }
737
738 // Avoid later division by zero
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800739 if (psuProperty.sensorScaleFactor > 0)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700740 {
741 customizedScale = true;
742 }
743 else
744 {
745 std::cerr << "Unable to accept " << keyScale << "\n";
746 continue;
747 }
748 }
749
Zev Weisse8b97ee2022-08-12 15:23:51 -0700750 auto findCustomMin = baseConfig->find(keyMin);
751 if (findCustomMin != baseConfig->end())
Josh Lehan74d9bd92019-10-31 08:51:58 -0700752 {
753 try
754 {
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800755 psuProperty.minReading = std::visit(
Josh Lehan74d9bd92019-10-31 08:51:58 -0700756 VariantToDoubleVisitor(), findCustomMin->second);
757 }
Patrick Williams26601e82021-10-06 12:43:25 -0500758 catch (const std::invalid_argument&)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700759 {
760 std::cerr << "Unable to parse " << keyMin << "\n";
761 continue;
762 }
763 }
764
Zev Weisse8b97ee2022-08-12 15:23:51 -0700765 auto findCustomMax = baseConfig->find(keyMax);
766 if (findCustomMax != baseConfig->end())
Josh Lehan74d9bd92019-10-31 08:51:58 -0700767 {
768 try
769 {
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800770 psuProperty.maxReading = std::visit(
Josh Lehan74d9bd92019-10-31 08:51:58 -0700771 VariantToDoubleVisitor(), findCustomMax->second);
772 }
Patrick Williams26601e82021-10-06 12:43:25 -0500773 catch (const std::invalid_argument&)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700774 {
775 std::cerr << "Unable to parse " << keyMax << "\n";
776 continue;
777 }
778 }
779
Zev Weisse8b97ee2022-08-12 15:23:51 -0700780 auto findCustomOffset = baseConfig->find(keyOffset);
781 if (findCustomOffset != baseConfig->end())
Jeff Line41d52f2021-04-07 19:38:51 +0800782 {
783 try
784 {
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800785 psuProperty.sensorOffset = std::visit(
Jeff Line41d52f2021-04-07 19:38:51 +0800786 VariantToDoubleVisitor(), findCustomOffset->second);
787 }
Patrick Williams26601e82021-10-06 12:43:25 -0500788 catch (const std::invalid_argument&)
Jeff Line41d52f2021-04-07 19:38:51 +0800789 {
790 std::cerr << "Unable to parse " << keyOffset << "\n";
791 continue;
792 }
793 }
794
Lotus Xucb5af732021-09-10 15:18:50 +0800795 // if we find label head power state set ,override the powerstate.
Zev Weisse8b97ee2022-08-12 15:23:51 -0700796 auto findPowerState = baseConfig->find(keyPowerState);
797 if (findPowerState != baseConfig->end())
Lotus Xucb5af732021-09-10 15:18:50 +0800798 {
799 std::string powerState = std::visit(VariantToStringVisitor(),
800 findPowerState->second);
801 setReadState(powerState, readState);
802 }
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800803 if (!(psuProperty.minReading < psuProperty.maxReading))
Josh Lehan74d9bd92019-10-31 08:51:58 -0700804 {
805 std::cerr << "Min must be less than Max\n";
806 continue;
807 }
808
809 // If the sensor name is being customized by config file,
810 // then prefix/suffix composition becomes not necessary,
811 // and in fact not wanted, because it gets in the way.
812 std::string psuNameFromIndex;
cchouxe8a14e92023-10-25 23:26:27 +0800813 std::string nameIndexStr = "1";
Josh Lehan74d9bd92019-10-31 08:51:58 -0700814 if (!customizedName)
815 {
816 /* Find out sensor name index for this label */
817 std::regex rgx("[A-Za-z]+([0-9]+)");
Brad Bishopfbb44ad2019-11-08 09:42:37 -0500818 size_t nameIndex{0};
Josh Lehan74d9bd92019-10-31 08:51:58 -0700819 if (std::regex_search(labelHead, matches, rgx))
820 {
cchouxe8a14e92023-10-25 23:26:27 +0800821 nameIndexStr = matches[1];
822 nameIndex = std::stoi(nameIndexStr);
Josh Lehan74d9bd92019-10-31 08:51:58 -0700823
824 // Decrement to preserve alignment, because hwmon
825 // human-readable filenames and labels use 1-based
826 // numbering, but the "Name", "Name1", "Name2", etc. naming
827 // convention (the psuNames vector) uses 0-based numbering.
828 if (nameIndex > 0)
829 {
830 --nameIndex;
831 }
832 }
833 else
834 {
835 nameIndex = 0;
836 }
837
838 if (psuNames.size() <= nameIndex)
839 {
840 std::cerr << "Could not pair " << labelHead
841 << " with a Name field\n";
842 continue;
843 }
844
845 psuNameFromIndex = psuNames[nameIndex];
846
Ed Tanous8a57ec02020-10-09 12:46:52 -0700847 if constexpr (debug)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700848 {
849 std::cerr << "Sensor label head " << labelHead
850 << " paired with " << psuNameFromIndex
851 << " at index " << nameIndex << "\n";
852 }
Josh Lehan432d1ed2019-10-16 12:23:31 -0700853 }
854
Joseph Fub844e972023-03-25 10:24:30 +0800855 if (devType == DevTypes::HWMON)
856 {
857 checkEventLimits(sensorPathStr, limitEventMatch, eventPathList);
858 }
Cheng C Yang58b2b532019-05-31 00:19:45 +0800859
Josh Lehan74d9bd92019-10-31 08:51:58 -0700860 // Similarly, if sensor scaling factor is being customized,
861 // then the below power-of-10 constraint becomes unnecessary,
862 // as config should be able to specify an arbitrary divisor.
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800863 unsigned int factor = psuProperty.sensorScaleFactor;
Josh Lehan74d9bd92019-10-31 08:51:58 -0700864 if (!customizedScale)
Vijay Khemka53ca4442019-07-23 11:03:55 -0700865 {
Josh Lehan74d9bd92019-10-31 08:51:58 -0700866 // Preserve existing usage of hardcoded labelMatch table below
867 factor = std::pow(10.0, factor);
Vijay Khemka53ca4442019-07-23 11:03:55 -0700868
Josh Lehan74d9bd92019-10-31 08:51:58 -0700869 /* Change first char of substring to uppercase */
Ed Tanous8a57ec02020-10-09 12:46:52 -0700870 char firstChar =
871 static_cast<char>(std::toupper(sensorNameSubStr[0]));
Josh Lehan74d9bd92019-10-31 08:51:58 -0700872 std::string strScaleFactor =
873 firstChar + sensorNameSubStr.substr(1) + "ScaleFactor";
874
875 // Preserve existing configs by accepting earlier syntax,
876 // example CurrScaleFactor, PowerScaleFactor, ...
Zev Weisse8b97ee2022-08-12 15:23:51 -0700877 auto findScaleFactor = baseConfig->find(strScaleFactor);
878 if (findScaleFactor != baseConfig->end())
Josh Lehan74d9bd92019-10-31 08:51:58 -0700879 {
880 factor = std::visit(VariantToIntVisitor(),
881 findScaleFactor->second);
882 }
883
Ed Tanous8a57ec02020-10-09 12:46:52 -0700884 if constexpr (debug)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700885 {
886 std::cerr << "Sensor scaling factor " << factor
887 << " string " << strScaleFactor << "\n";
888 }
Josh Lehan49cfba92019-10-08 16:50:42 -0700889 }
890
Vijay Khemka996bad12019-05-28 15:15:16 -0700891 std::vector<thresholds::Threshold> sensorThresholds;
Joshi, Mansi14f0ad82019-11-21 10:52:30 +0530892 if (!parseThresholdsFromConfig(*sensorData, sensorThresholds,
893 &labelHead))
Cheng C Yange50345b2019-04-02 17:26:15 +0800894 {
James Feist17ab6e02019-06-25 12:28:13 -0700895 std::cerr << "error populating thresholds for "
896 << sensorNameSubStr << "\n";
Cheng C Yange50345b2019-04-02 17:26:15 +0800897 }
898
Zev Weiss6b6891c2021-04-22 02:46:21 -0500899 auto findSensorUnit = sensorTable.find(sensorNameSubStr);
900 if (findSensorUnit == sensorTable.end())
Cheng C Yange50345b2019-04-02 17:26:15 +0800901 {
Jason Ling5747fab2019-10-02 16:46:23 -0700902 std::cerr << sensorNameSubStr
Josh Lehan06494452019-10-31 09:49:16 -0700903 << " is not a recognized sensor type\n";
Cheng C Yange50345b2019-04-02 17:26:15 +0800904 continue;
905 }
906
Ed Tanous8a57ec02020-10-09 12:46:52 -0700907 if constexpr (debug)
Josh Lehan49cfba92019-10-08 16:50:42 -0700908 {
Josh Lehan74d9bd92019-10-31 08:51:58 -0700909 std::cerr << "Sensor properties: Name \""
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800910 << psuProperty.labelTypeName << "\" Scale "
911 << psuProperty.sensorScaleFactor << " Min "
912 << psuProperty.minReading << " Max "
913 << psuProperty.maxReading << " Offset "
914 << psuProperty.sensorOffset << "\n";
Josh Lehan74d9bd92019-10-31 08:51:58 -0700915 }
916
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800917 std::string sensorName = psuProperty.labelTypeName;
Josh Lehan74d9bd92019-10-31 08:51:58 -0700918 if (customizedName)
919 {
920 if (sensorName.empty())
921 {
922 // Allow selective disabling of an individual sensor,
923 // by customizing its name to an empty string.
924 std::cerr << "Sensor disabled, empty string\n";
925 continue;
926 }
927 }
928 else
929 {
930 // Sensor name not customized, do prefix/suffix composition,
931 // preserving default behavior by using psuNameFromIndex.
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800932 sensorName = psuNameFromIndex + " " + psuProperty.labelTypeName;
cchouxe8a14e92023-10-25 23:26:27 +0800933
934 // The labelTypeName of a fan can be:
935 // "Fan Speed 1", "Fan Speed 2", "Fan Speed 3" ...
936 if (labelHead == "fan" + nameIndexStr)
937 {
938 sensorName += nameIndexStr;
939 }
Josh Lehan74d9bd92019-10-31 08:51:58 -0700940 }
941
Ed Tanous8a57ec02020-10-09 12:46:52 -0700942 if constexpr (debug)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700943 {
944 std::cerr << "Sensor name \"" << sensorName << "\" path \""
945 << sensorPathStr << "\" type \"" << sensorType
946 << "\"\n";
Josh Lehan49cfba92019-10-08 16:50:42 -0700947 }
Zhikui Ren23c96e72020-11-05 22:32:28 -0800948 // destruct existing one first if already created
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800949
950 auto& sensor = sensors[sensorName];
951 if (!activateOnly)
Josh Lehan74d9bd92019-10-31 08:51:58 -0700952 {
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800953 sensor = nullptr;
954 }
955
956 if (sensor != nullptr)
957 {
958 sensor->activate(sensorPathStr, i2cDev);
959 }
960 else
961 {
962 sensors[sensorName] = std::make_shared<PSUSensor>(
963 sensorPathStr, sensorType, objectServer, dbusConnection, io,
964 sensorName, std::move(sensorThresholds), *interfacePath,
965 readState, findSensorUnit->second, factor,
Zhikui Ren7c2e7c92024-03-07 14:11:25 -0800966 psuProperty.maxReading, psuProperty.minReading,
967 psuProperty.sensorOffset, labelHead, thresholdConfSize,
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800968 pollRate, i2cDev);
969 sensors[sensorName]->setupRead();
970 ++numCreated;
971 if constexpr (debug)
972 {
Patrick Williams2aaf7172024-08-16 15:20:40 -0400973 std::cerr
974 << "Created " << numCreated << " sensors so far\n";
Matt Simmeringcafd72f2022-12-16 15:35:12 -0800975 }
Josh Lehan74d9bd92019-10-31 08:51:58 -0700976 }
Cheng C Yang209ec562019-03-12 16:37:44 +0800977 }
Cheng C Yang58b2b532019-05-31 00:19:45 +0800978
Joseph Fub844e972023-03-25 10:24:30 +0800979 if (devType == DevTypes::HWMON)
980 {
981 // OperationalStatus event
982 combineEvents[*psuName + "OperationalStatus"] = nullptr;
983 combineEvents[*psuName + "OperationalStatus"] =
984 std::make_unique<PSUCombineEvent>(
985 objectServer, dbusConnection, io, *psuName, readState,
986 eventPathList, groupEventPathList, "OperationalStatus",
987 pollRate);
988 }
Cheng C Yang209ec562019-03-12 16:37:44 +0800989 }
Josh Lehan49cfba92019-10-08 16:50:42 -0700990
Ed Tanous8a57ec02020-10-09 12:46:52 -0700991 if constexpr (debug)
Josh Lehan49cfba92019-10-08 16:50:42 -0700992 {
993 std::cerr << "Created total of " << numCreated << " sensors\n";
994 }
Matt Simmering6747eba2023-01-18 16:03:55 -0800995}
Cheng C Yang209ec562019-03-12 16:37:44 +0800996
Matt Simmering39fadb92023-05-04 21:47:29 -0700997static void
998 getPresentCpus(std::shared_ptr<sdbusplus::asio::connection>& dbusConnection)
999{
1000 static const int depth = 2;
1001 static const int numKeys = 1;
1002 GetSubTreeType cpuSubTree;
1003
1004 try
1005 {
1006 auto getItems = dbusConnection->new_method_call(
1007 mapper::busName, mapper::path, mapper::interface, mapper::subtree);
1008 getItems.append(cpuInventoryPath, static_cast<int32_t>(depth),
1009 std::array<const char*, numKeys>{
1010 "xyz.openbmc_project.Inventory.Item"});
1011 auto getItemsResp = dbusConnection->call(getItems);
1012 getItemsResp.read(cpuSubTree);
1013 }
1014 catch (sdbusplus::exception_t& e)
1015 {
1016 std::cerr << "error getting inventory item subtree: " << e.what()
1017 << "\n";
1018 return;
1019 }
1020
1021 for (const auto& [path, objDict] : cpuSubTree)
1022 {
1023 auto obj = sdbusplus::message::object_path(path).filename();
Patrick Rudolph457715b2024-04-10 14:51:35 +02001024 boost::to_lower(obj);
1025
Matt Simmering39fadb92023-05-04 21:47:29 -07001026 if (!obj.starts_with("cpu") || objDict.empty())
1027 {
1028 continue;
1029 }
1030 const std::string& owner = objDict.begin()->first;
1031
1032 std::variant<bool> respValue;
1033 try
1034 {
1035 auto getPresence = dbusConnection->new_method_call(
1036 owner.c_str(), path.c_str(), "org.freedesktop.DBus.Properties",
1037 "Get");
1038 getPresence.append("xyz.openbmc_project.Inventory.Item", "Present");
1039 auto resp = dbusConnection->call(getPresence);
1040 resp.read(respValue);
1041 }
1042 catch (sdbusplus::exception_t& e)
1043 {
1044 std::cerr << "Error in getting CPU presence: " << e.what() << "\n";
1045 continue;
1046 }
1047
1048 auto* present = std::get_if<bool>(&respValue);
1049 if (present != nullptr && *present)
1050 {
1051 int cpuIndex = 0;
1052 try
1053 {
Patrick Rudolph457715b2024-04-10 14:51:35 +02001054 cpuIndex = std::stoi(obj.substr(obj.size() - 1));
Matt Simmering39fadb92023-05-04 21:47:29 -07001055 }
1056 catch (const std::exception& e)
1057 {
1058 std::cerr << "Error converting CPU index, " << e.what() << '\n';
1059 continue;
1060 }
Patrick Rudolph457715b2024-04-10 14:51:35 +02001061 cpuPresence[cpuIndex] = *present;
Matt Simmering39fadb92023-05-04 21:47:29 -07001062 }
1063 }
1064}
1065
Zhikui Ren23c96e72020-11-05 22:32:28 -08001066void createSensors(
Ed Tanous1f978632023-02-28 18:16:39 -08001067 boost::asio::io_context& io, sdbusplus::asio::object_server& objectServer,
Zhikui Ren23c96e72020-11-05 22:32:28 -08001068 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection,
1069 const std::shared_ptr<boost::container::flat_set<std::string>>&
Matt Simmeringcafd72f2022-12-16 15:35:12 -08001070 sensorsChanged,
1071 bool activateOnly)
Zhikui Ren23c96e72020-11-05 22:32:28 -08001072{
1073 auto getter = std::make_shared<GetSensorConfiguration>(
Matt Simmeringcafd72f2022-12-16 15:35:12 -08001074 dbusConnection, [&io, &objectServer, &dbusConnection, sensorsChanged,
1075 activateOnly](const ManagedObjectType& sensorConfigs) {
Patrick Williams2aaf7172024-08-16 15:20:40 -04001076 createSensorsCallback(io, objectServer, dbusConnection,
1077 sensorConfigs, sensorsChanged, activateOnly);
1078 });
Matt Simmering786efb82023-01-18 14:09:21 -08001079 std::vector<std::string> types(sensorTypes.size());
1080 for (const auto& [type, dt] : sensorTypes)
1081 {
1082 types.push_back(type);
1083 }
1084 getter->getConfiguration(types);
Zhikui Ren23c96e72020-11-05 22:32:28 -08001085}
1086
Ed Tanous201a1012024-04-03 18:07:28 -07001087void propertyInitialize()
Cheng C Yang209ec562019-03-12 16:37:44 +08001088{
Zev Weiss6b6891c2021-04-22 02:46:21 -05001089 sensorTable = {{"power", sensor_paths::unitWatts},
1090 {"curr", sensor_paths::unitAmperes},
1091 {"temp", sensor_paths::unitDegreesC},
1092 {"in", sensor_paths::unitVolts},
Joseph Fub844e972023-03-25 10:24:30 +08001093 {"voltage", sensor_paths::unitVolts},
Zev Weiss6b6891c2021-04-22 02:46:21 -05001094 {"fan", sensor_paths::unitRPMs}};
Cheng C Yange50345b2019-04-02 17:26:15 +08001095
Jeff Line41d52f2021-04-07 19:38:51 +08001096 labelMatch = {
1097 {"pin", PSUProperty("Input Power", 3000, 0, 6, 0)},
cchouxe8a14e92023-10-25 23:26:27 +08001098 {"pout", PSUProperty("Output Power", 3000, 0, 6, 0)},
1099 {"power", PSUProperty("Output Power", 3000, 0, 6, 0)},
Jeff Line41d52f2021-04-07 19:38:51 +08001100 {"maxpin", PSUProperty("Max Input Power", 3000, 0, 6, 0)},
1101 {"vin", PSUProperty("Input Voltage", 300, 0, 3, 0)},
1102 {"maxvin", PSUProperty("Max Input Voltage", 300, 0, 3, 0)},
cchouxe8a14e92023-10-25 23:26:27 +08001103 {"in_voltage", PSUProperty("Output Voltage", 255, 0, 3, 0)},
Ian Chienc82a4092024-07-24 10:52:59 +08001104 {"voltage", PSUProperty("Output Voltage", 255, 0, 3, 0)},
cchouxe8a14e92023-10-25 23:26:27 +08001105 {"vout", PSUProperty("Output Voltage", 255, 0, 3, 0)},
Jeff Line41d52f2021-04-07 19:38:51 +08001106 {"vmon", PSUProperty("Auxiliary Input Voltage", 255, 0, 3, 0)},
cchouxe8a14e92023-10-25 23:26:27 +08001107 {"in", PSUProperty("Output Voltage", 255, 0, 3, 0)},
Jeff Line41d52f2021-04-07 19:38:51 +08001108 {"iin", PSUProperty("Input Current", 20, 0, 3, 0)},
cchouxe8a14e92023-10-25 23:26:27 +08001109 {"iout", PSUProperty("Output Current", 255, 0, 3, 0)},
1110 {"curr", PSUProperty("Output Current", 255, 0, 3, 0)},
1111 {"maxiout", PSUProperty("Max Output Current", 255, 0, 3, 0)},
1112 {"temp", PSUProperty("Temperature", 127, -128, 3, 0)},
1113 {"maxtemp", PSUProperty("Max Temperature", 127, -128, 3, 0)},
1114 {"fan", PSUProperty("Fan Speed ", 30000, 0, 0, 0)}};
Cheng C Yang58b2b532019-05-31 00:19:45 +08001115
1116 limitEventMatch = {{"PredictiveFailure", {"max_alarm", "min_alarm"}},
1117 {"Failure", {"crit_alarm", "lcrit_alarm"}}};
1118
Cheng C Yang202a1ff2020-01-09 09:34:22 +08001119 eventMatch = {{"PredictiveFailure", {"power1_alarm"}},
1120 {"Failure", {"in2_alarm"}},
1121 {"ACLost", {"in1_beep"}},
1122 {"ConfigureError", {"in1_fault"}}};
1123
Joseph Fub844e972023-03-25 10:24:30 +08001124 devParamMap = {
1125 {DevTypes::HWMON, {1, R"(\w\d+_input$)", "([A-Za-z]+)[0-9]*_"}},
1126 {DevTypes::IIO,
1127 {2, R"(\w+_(raw|input)$)", "^(in|out)_([A-Za-z]+)[0-9]*_"}}};
Cheng C Yang209ec562019-03-12 16:37:44 +08001128}
1129
Matt Simmeringcafd72f2022-12-16 15:35:12 -08001130static void powerStateChanged(
1131 PowerState type, bool newState,
1132 boost::container::flat_map<std::string, std::shared_ptr<PSUSensor>>&
1133 sensors,
1134 boost::asio::io_context& io, sdbusplus::asio::object_server& objectServer,
1135 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection)
1136{
1137 if (newState)
1138 {
1139 createSensors(io, objectServer, dbusConnection, nullptr, true);
1140 }
1141 else
1142 {
1143 for (auto& [path, sensor] : sensors)
1144 {
1145 if (sensor != nullptr && sensor->readState == type)
1146 {
1147 sensor->deactivate();
1148 }
1149 }
1150 }
1151}
1152
James Feistb6c0b912019-07-09 12:21:44 -07001153int main()
Cheng C Yang209ec562019-03-12 16:37:44 +08001154{
Ed Tanous1f978632023-02-28 18:16:39 -08001155 boost::asio::io_context io;
Cheng C Yang209ec562019-03-12 16:37:44 +08001156 auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
1157
Ed Tanous14ed5e92022-07-12 15:50:23 -07001158 sdbusplus::asio::object_server objectServer(systemBus, true);
1159 objectServer.add_manager("/xyz/openbmc_project/sensors");
Zhikui Ren3fe3f542022-11-02 16:37:54 -07001160 objectServer.add_manager("/xyz/openbmc_project/control");
Cheng C Yang209ec562019-03-12 16:37:44 +08001161 systemBus->request_name("xyz.openbmc_project.PSUSensor");
Zhikui Ren23c96e72020-11-05 22:32:28 -08001162 auto sensorsChanged =
1163 std::make_shared<boost::container::flat_set<std::string>>();
Cheng C Yang209ec562019-03-12 16:37:44 +08001164
Cheng C Yang916360b2019-05-07 18:47:16 +08001165 propertyInitialize();
Cheng C Yang209ec562019-03-12 16:37:44 +08001166
Patrick Williams2aaf7172024-08-16 15:20:40 -04001167 auto powerCallBack = [&io, &objectServer,
1168 &systemBus](PowerState type, bool state) {
Matt Simmeringcafd72f2022-12-16 15:35:12 -08001169 powerStateChanged(type, state, sensors, io, objectServer, systemBus);
1170 };
1171
1172 setupPowerMatchCallback(systemBus, powerCallBack);
1173
1174 boost::asio::post(io, [&]() {
1175 createSensors(io, objectServer, systemBus, nullptr, false);
1176 });
Ed Tanous9b4a20e2022-09-06 08:47:11 -07001177 boost::asio::steady_timer filterTimer(io);
Patrick Williams92f8f512022-07-22 19:26:55 -05001178 std::function<void(sdbusplus::message_t&)> eventHandler =
1179 [&](sdbusplus::message_t& message) {
Patrick Williams2aaf7172024-08-16 15:20:40 -04001180 if (message.is_method_error())
Cheng C Yang209ec562019-03-12 16:37:44 +08001181 {
Patrick Williams2aaf7172024-08-16 15:20:40 -04001182 std::cerr << "callback method error\n";
Cheng C Yang209ec562019-03-12 16:37:44 +08001183 return;
1184 }
Patrick Williams2aaf7172024-08-16 15:20:40 -04001185 sensorsChanged->insert(message.get_path());
1186 filterTimer.expires_after(std::chrono::seconds(3));
1187 filterTimer.async_wait([&](const boost::system::error_code& ec) {
1188 if (ec == boost::asio::error::operation_aborted)
1189 {
1190 return;
1191 }
1192 if (ec)
1193 {
1194 std::cerr << "timer error\n";
1195 }
1196 createSensors(io, objectServer, systemBus, sensorsChanged,
1197 false);
1198 });
1199 };
Cheng C Yang209ec562019-03-12 16:37:44 +08001200
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001201 boost::asio::steady_timer cpuFilterTimer(io);
1202 std::function<void(sdbusplus::message_t&)> cpuPresenceHandler =
1203 [&](sdbusplus::message_t& message) {
Patrick Williams2aaf7172024-08-16 15:20:40 -04001204 std::string path = message.get_path();
1205 boost::to_lower(path);
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001206
Patrick Williams2aaf7172024-08-16 15:20:40 -04001207 sdbusplus::message::object_path cpuPath(path);
1208 std::string cpuName = cpuPath.filename();
1209 if (!cpuName.starts_with("cpu"))
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001210 {
1211 return;
1212 }
Patrick Williams2aaf7172024-08-16 15:20:40 -04001213 size_t index = 0;
1214 try
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001215 {
Patrick Williams2aaf7172024-08-16 15:20:40 -04001216 index = std::stoi(path.substr(path.size() - 1));
1217 }
1218 catch (const std::invalid_argument&)
1219 {
1220 std::cerr << "Found invalid path " << path << "\n";
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001221 return;
1222 }
Patrick Williams2aaf7172024-08-16 15:20:40 -04001223
1224 std::string objectName;
1225 boost::container::flat_map<std::string, std::variant<bool>> values;
1226 message.read(objectName, values);
1227 auto findPresence = values.find("Present");
Vikash Chandolaf2fc1b32024-08-29 15:59:27 +05301228 if (findPresence == values.end())
1229 {
1230 return;
1231 }
Patrick Williams2aaf7172024-08-16 15:20:40 -04001232 try
1233 {
1234 cpuPresence[index] = std::get<bool>(findPresence->second);
1235 }
1236 catch (const std::bad_variant_access& err)
1237 {
1238 return;
1239 }
1240
1241 if (!cpuPresence[index])
1242 {
1243 return;
1244 }
1245 cpuFilterTimer.expires_after(std::chrono::seconds(1));
1246 cpuFilterTimer.async_wait([&](const boost::system::error_code& ec) {
1247 if (ec == boost::asio::error::operation_aborted)
1248 {
1249 return;
1250 }
1251 if (ec)
1252 {
1253 std::cerr << "timer error\n";
1254 return;
1255 }
1256 createSensors(io, objectServer, systemBus, nullptr, false);
1257 });
1258 };
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001259
Zev Weiss214d9712022-08-12 12:54:31 -07001260 std::vector<std::unique_ptr<sdbusplus::bus::match_t>> matches =
1261 setupPropertiesChangedMatches(*systemBus, sensorTypes, eventHandler);
Matt Simmeringe4e6a282023-03-03 14:41:04 -08001262
1263 matches.emplace_back(std::make_unique<sdbusplus::bus::match_t>(
1264 static_cast<sdbusplus::bus_t&>(*systemBus),
1265 "type='signal',member='PropertiesChanged',path_namespace='" +
1266 std::string(cpuInventoryPath) +
1267 "',arg0namespace='xyz.openbmc_project.Inventory.Item'",
1268 cpuPresenceHandler));
1269
Matt Simmering39fadb92023-05-04 21:47:29 -07001270 getPresentCpus(systemBus);
1271
Bruce Lee1263c3d2021-06-04 15:16:33 +08001272 setupManufacturingModeMatch(*systemBus);
Cheng C Yang209ec562019-03-12 16:37:44 +08001273 io.run();
1274}