-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpowercap.cpp
468 lines (414 loc) · 13.4 KB
/
powercap.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#include "occ_status.hpp"
#include <phosphor-logging/lg2.hpp>
#include <powercap.hpp>
#include <cassert>
#include <filesystem>
namespace open_power
{
namespace occ
{
namespace powercap
{
constexpr auto PCAP_PATH = "/xyz/openbmc_project/control/host0/power_cap";
constexpr auto PCAP_INTERFACE = "xyz.openbmc_project.Control.Power.Cap";
constexpr auto POWER_CAP_PROP = "PowerCap";
constexpr auto POWER_CAP_ENABLE_PROP = "PowerCapEnable";
namespace fs = std::filesystem;
using CapLimits =
sdbusplus::xyz::openbmc_project::Control::Power::server::CapLimits;
// Print the current values
void OccPersistCapData::print()
{
if (capData.initialized)
{
lg2::info(
"OccPersistCapData: Soft Min: {SOFT}, Hard Min: {HARD}, Max: {MAX}",
"SOFT", capData.softMin, "HARD", capData.hardMin, "MAX",
capData.max);
}
}
// Saves the power cap data in the filesystem.
void OccPersistCapData::save()
{
std::filesystem::path opath =
std::filesystem::path{OCC_CONTROL_PERSIST_PATH} / powerCapFilename;
if (!std::filesystem::exists(opath.parent_path()))
{
std::filesystem::create_directory(opath.parent_path());
}
try
{
std::ofstream stream{opath.c_str(), std::ios_base::binary};
stream.write((char*)&capData, sizeof(capData));
}
catch (const std::exception& e)
{
auto error = errno;
lg2::error(
"OccPersistCapData::save: failed to read {PATH}, errno={ERRNO}, err={ERR}",
"PATH", opath, "ERRNO", error, "ERR", e);
capData.initialized = false;
}
}
// Loads the power cap data from the filesystem
void OccPersistCapData::load()
{
std::filesystem::path ipath =
std::filesystem::path{OCC_CONTROL_PERSIST_PATH} / powerCapFilename;
if (!std::filesystem::exists(ipath))
{
capData.initialized = false;
return;
}
try
{
PowerCapData newCapData;
std::ifstream stream{ipath.c_str(), std::ios_base::binary};
stream.read((char*)&newCapData, sizeof(newCapData));
if (newCapData.version == PCAPDATA_FILE_VERSION)
{
memcpy(&capData, &newCapData, sizeof(capData));
}
else
{
lg2::error(
"OccPersistCapData::load() file version was {VER} (expected {EXP})",
"VER", newCapData.version, "EXP", PCAPDATA_FILE_VERSION);
capData.initialized = false;
}
}
catch (const std::exception& e)
{
auto error = errno;
lg2::error(
"OccPersistCapData::load: failed to read {PATH}, errno={ERRNO}, err={ERR}",
"PATH", ipath, "ERRNO", error, "ERR", e);
capData.initialized = false;
}
}
void PowerCap::updatePcapBounds()
{
// Build the hwmon string to write the power cap bounds
fs::path minName = getPcapFilename(std::regex{"power\\d+_cap_min$"});
fs::path softMinName =
getPcapFilename(std::regex{"power\\d+_cap_min_soft$"});
fs::path maxName = getPcapFilename(std::regex{"power\\d+_cap_max$"});
// Read the current limits from persistent data
uint32_t capSoftMin, capHardMin, capMax;
persistedData.getCapLimits(capSoftMin, capHardMin, capMax);
// Read the power cap bounds from sysfs files (from OCC)
uint64_t cap;
bool parmsChanged = false;
std::ifstream softMinFile(softMinName, std::ios::in);
if (softMinFile)
{
softMinFile >> cap;
softMinFile.close();
// Convert to input/AC Power in Watts (round up)
capSoftMin = ((cap / (PS_DERATING_FACTOR / 100.0) / 1000000) + 0.9);
parmsChanged = true;
}
else
{
lg2::error(
"updatePcapBounds: unable to find pcap_min_soft file: {FILE} (errno={ERR})",
"FILE", pcapBasePathname, "ERR", errno);
}
std::ifstream minFile(minName, std::ios::in);
if (minFile)
{
minFile >> cap;
minFile.close();
// Convert to input/AC Power in Watts (round up)
capHardMin = ((cap / (PS_DERATING_FACTOR / 100.0) / 1000000) + 0.9);
parmsChanged = true;
}
else
{
lg2::error(
"updatePcapBounds: unable to find cap_min file: {FILE} (errno={ERR})",
"FILE", pcapBasePathname, "ERR", errno);
}
std::ifstream maxFile(maxName, std::ios::in);
if (maxFile)
{
maxFile >> cap;
maxFile.close();
// Convert to input/AC Power in Watts (truncate remainder)
capMax = cap / (PS_DERATING_FACTOR / 100.0) / 1000000;
parmsChanged = true;
}
else
{
lg2::error(
"updatePcapBounds: unable to find cap_max file: {FILE} (errno={ERR})",
"FILE", pcapBasePathname, "ERR", errno);
}
if (parmsChanged)
{
// Save the power cap bounds to dbus
updateDbusPcapLimits(capSoftMin, capHardMin, capMax);
persistedData.updateCapLimits(capSoftMin, capHardMin, capMax);
}
// Validate user power cap (if enabled) is within the bounds
const uint32_t dbusUserCap = getPcap();
const bool pcapEnabled = getPcapEnabled();
if (pcapEnabled && (dbusUserCap != 0))
{
const uint32_t hwmonUserCap = readUserCapHwmon();
if ((dbusUserCap >= capSoftMin) && (dbusUserCap <= capMax))
{
// Validate dbus and hwmon user caps match
if ((hwmonUserCap != 0) && (dbusUserCap != hwmonUserCap))
{
// User power cap is enabled, but does not match dbus
lg2::error(
"updatePcapBounds: user powercap mismatch (hwmon:{HCAP}W, bdus:{DCAP}W) - using dbus",
"HCAP", hwmonUserCap, "DCAP", dbusUserCap);
auto occInput = getOccInput(dbusUserCap, pcapEnabled);
writeOcc(occInput);
}
}
else
{
// User power cap is outside of current bounds
uint32_t newCap = capMax;
if (dbusUserCap < capSoftMin)
{
newCap = capSoftMin;
}
lg2::error(
"updatePcapBounds: user powercap {CAP}W is outside bounds "
"(soft min:{SMIN}, min:{MIN}, max:{MAX})",
"CAP", dbusUserCap, "SMIN", capSoftMin, "MIN", capHardMin,
"MAX", capMax);
try
{
lg2::info(
"updatePcapBounds: Updating user powercap from {OLD} to {NEW}W",
"OLD", hwmonUserCap, "NEW", newCap);
utils::setProperty(PCAP_PATH, PCAP_INTERFACE, POWER_CAP_PROP,
newCap);
auto occInput = getOccInput(newCap, pcapEnabled);
writeOcc(occInput);
}
catch (const sdbusplus::exception_t& e)
{
lg2::error(
"updatePcapBounds: Failed to update user powercap due to {ERR}",
"ERR", e.what());
}
}
}
}
// Get value of power cap to send to the OCC (output/DC power)
uint32_t PowerCap::getOccInput(uint32_t pcap, bool pcapEnabled)
{
if (!pcapEnabled)
{
// Pcap disabled, return 0 to indicate disabled
return 0;
}
// If pcap is not disabled then just return the pcap with the derating
// factor applied (output/DC power).
return ((static_cast<uint64_t>(pcap) * PS_DERATING_FACTOR) / 100);
}
uint32_t PowerCap::getPcap()
{
utils::PropertyValue pcap{};
try
{
pcap = utils::getProperty(PCAP_PATH, PCAP_INTERFACE, POWER_CAP_PROP);
return std::get<uint32_t>(pcap);
}
catch (const sdbusplus::exception_t& e)
{
lg2::error("Failed to get PowerCap property: path={PATH}: {ERR}",
"PATH", PCAP_PATH, "ERR", e.what());
return 0;
}
}
bool PowerCap::getPcapEnabled()
{
utils::PropertyValue pcapEnabled{};
try
{
pcapEnabled = utils::getProperty(PCAP_PATH, PCAP_INTERFACE,
POWER_CAP_ENABLE_PROP);
return std::get<bool>(pcapEnabled);
}
catch (const sdbusplus::exception_t& e)
{
lg2::error("Failed to get PowerCapEnable property: path={PATH}: {ERR}",
"PATH", PCAP_PATH, "ERR", e.what());
return false;
}
}
fs::path PowerCap::getPcapFilename(const std::regex& expr)
{
if (pcapBasePathname.empty())
{
pcapBasePathname = occStatus.getHwmonPath();
}
if (fs::exists(pcapBasePathname))
{
// Search for pcap file based on the supplied expr
for (auto& file : fs::directory_iterator(pcapBasePathname))
{
if (std::regex_search(file.path().string(), expr))
{
// Found match
return file;
}
}
}
else
{
lg2::error("Power Cap base filename not found: {FILE}", "FILE",
pcapBasePathname);
}
// return empty path
return fs::path{};
}
// Write the user power cap to sysfs (output/DC power)
// This will trigger the driver to send the cap to the OCC
void PowerCap::writeOcc(uint32_t pcapValue)
{
if (!occStatus.occActive())
{
// OCC not running, skip update
return;
}
// Build the hwmon string to write the user power cap
fs::path fileName = getPcapFilename(std::regex{"power\\d+_cap_user$"});
if (fileName.empty())
{
lg2::error("Could not find a power cap file to write to: {FILE})",
"FILE", pcapBasePathname);
return;
}
uint64_t microWatts = pcapValue * 1000000ull;
auto pcapString{std::to_string(microWatts)};
// Open the hwmon file and write the power cap
std::ofstream file(fileName, std::ios::out);
if (file)
{
lg2::info("Writing {CAP}uW to {FILE}", "CAP", pcapString, "FILE",
fileName);
file << pcapString;
file.close();
}
else
{
lg2::error("Failed writing {CAP}uW to {FILE} (errno={ERR})", "CAP",
microWatts, "FILE", fileName, "ERR", errno);
}
return;
}
// Read the current user power cap from sysfs as input/AC power
uint32_t PowerCap::readUserCapHwmon()
{
uint32_t userCap = 0;
// Get the sysfs filename for the user power cap
fs::path userCapName = getPcapFilename(std::regex{"power\\d+_cap_user$"});
if (userCapName.empty())
{
lg2::error(
"readUserCapHwmon: Could not find a power cap file to read: {FILE})",
"FILE", pcapBasePathname);
return 0;
}
// Open the sysfs file and read the power cap
std::ifstream file(userCapName, std::ios::in);
if (file)
{
uint64_t cap;
file >> cap;
file.close();
// Convert to input/AC Power in Watts
userCap = (cap / (PS_DERATING_FACTOR / 100.0) / 1000000);
}
else
{
lg2::error("readUserCapHwmon: Failed reading {FILE} (errno={ERR})",
"FILE", userCapName, "ERR", errno);
}
return userCap;
}
void PowerCap::pcapChanged(sdbusplus::message_t& msg)
{
if (!occStatus.occActive())
{
// Nothing to do
return;
}
uint32_t pcap = 0;
bool pcapEnabled = false;
std::string msgSensor;
std::map<std::string, std::variant<uint32_t, bool>> msgData;
msg.read(msgSensor, msgData);
bool changeFound = false;
for (const auto& [prop, value] : msgData)
{
if (prop == POWER_CAP_PROP)
{
pcap = std::get<uint32_t>(value);
pcapEnabled = getPcapEnabled();
changeFound = true;
}
else if (prop == POWER_CAP_ENABLE_PROP)
{
pcapEnabled = std::get<bool>(value);
pcap = getPcap();
changeFound = true;
}
else
{
// Ignore other properties
lg2::debug(
"pcapChanged: Unknown power cap property changed {PROP} to {VAL}",
"PROP", prop, "VAL", std::get<uint32_t>(value));
}
}
// Validate the cap is within supported range
uint32_t capSoftMin, capHardMin, capMax;
persistedData.getCapLimits(capSoftMin, capHardMin, capMax);
if (((pcap > 0) && (pcap < capSoftMin)) || ((pcap == 0) && (pcapEnabled)))
{
lg2::error(
"pcapChanged: Power cap of {CAP}W is lower than allowed (soft min:{SMIN}, min:{MIN}) - using soft min",
"CAP", pcap, "SMIN", capSoftMin, "MIN", capHardMin);
pcap = capSoftMin;
utils::setProperty(PCAP_PATH, PCAP_INTERFACE, POWER_CAP_PROP, pcap);
}
else if (pcap > capMax)
{
lg2::error(
"pcapChanged: Power cap of {CAP}W is higher than allowed (max:{MAX}) - using max",
"CAP", pcap, "MAX", capMax);
pcap = capMax;
utils::setProperty(PCAP_PATH, PCAP_INTERFACE, POWER_CAP_PROP, pcap);
}
if (changeFound)
{
lg2::info(
"Power Cap Property Change (cap={CAP}W (input), enabled={ENABLE})",
"CAP", pcap, "ENABLE", pcapEnabled);
// Determine desired action to write to occ
auto occInput = getOccInput(pcap, pcapEnabled);
// Write action to occ
writeOcc(occInput);
}
return;
}
// Update the Power Cap bounds on DBus
void PowerCap::updateDbusPcapLimits(uint32_t softMin, uint32_t hardMin,
uint32_t max)
{
CapLimits::minSoftPowerCapValue(softMin);
CapLimits::minPowerCapValue(hardMin);
CapLimits::maxPowerCapValue(max);
}
} // namespace powercap
} // namespace occ
} // namespace open_power