-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpowermode.hpp
542 lines (457 loc) · 16.6 KB
/
powermode.hpp
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
#pragma once
#include "config.h"
#ifdef POWER10
#include "occ_command.hpp"
#include <cereal/archives/json.hpp>
#include <cereal/cereal.hpp>
#include <cereal/types/string.hpp>
#include <cereal/types/tuple.hpp>
#include <cereal/types/vector.hpp>
#include <sdbusplus/bus.hpp>
#include <sdbusplus/bus/match.hpp>
#include <xyz/openbmc_project/Control/Power/IdlePowerSaver/server.hpp>
#include <xyz/openbmc_project/Control/Power/Mode/server.hpp>
#include <filesystem>
namespace open_power
{
namespace occ
{
class Manager;
namespace powermode
{
namespace Base = sdbusplus::xyz::openbmc_project::Control::Power::server;
using ModeInterface = sdbusplus::server::object_t<Base::Mode>;
using IpsInterface = sdbusplus::server::object_t<Base::IdlePowerSaver>;
using namespace std::literals::string_literals;
constexpr auto PMODE_PATH = "/xyz/openbmc_project/control/host0/power_mode";
constexpr auto PMODE_INTERFACE = "xyz.openbmc_project.Control.Power.Mode";
constexpr auto POWER_MODE_PROP = "PowerMode";
constexpr auto POWER_SAFE_MODE_PROP = "SafeMode";
constexpr auto PIPS_PATH = "/xyz/openbmc_project/control/host0/power_ips";
constexpr auto PIPS_INTERFACE =
"xyz.openbmc_project.Control.Power.IdlePowerSaver";
constexpr auto IPS_ACTIVE_PROP = "Active";
constexpr auto IPS_ENABLED_PROP = "Enabled";
constexpr auto IPS_ENTER_UTIL = "EnterUtilizationPercent";
constexpr auto IPS_ENTER_TIME = "EnterDwellTime";
constexpr auto IPS_EXIT_UTIL = "ExitUtilizationPercent";
constexpr auto IPS_EXIT_TIME = "ExitDwellTime";
const auto PMODE_DEFAULT_INTERFACE =
"xyz.openbmc_project.Configuration.PowerModeProperties"s;
/** @brief Query the current Hypervisor target
* @return true if the current Hypervisor target is PowerVM
*/
bool isPowerVM();
/** @brief Convert power mode string to OCC SysPwrMode value
*
* @param[in] i_modeString - power mode string
*
* @return SysPwrMode or SysPwrMode::NO_CHANGE if not found
*/
SysPwrMode convertStringToMode(const std::string& i_modeString);
struct PowerModeData
{
bool modeInitialized = false;
SysPwrMode mode = SysPwrMode::NO_CHANGE;
uint16_t oemModeData = 0x0000;
bool ipsInitialized = false;
bool ipsEnabled = true;
uint8_t ipsEnterUtil = 0;
uint16_t ipsEnterTime = 0;
uint8_t ipsExitUtil = 0;
uint16_t ipsExitTime = 0;
bool modeLocked = false;
/** @brief Function specifying data to archive for cereal.
*/
template <class Archive>
void serialize(Archive& archive)
{
archive(modeInitialized, mode, oemModeData, ipsInitialized, ipsEnabled,
ipsEnterUtil, ipsEnterTime, ipsExitUtil, ipsExitTime,
modeLocked);
}
};
/** @class OccPersistData
* @brief Provides persistent container to store data for OCC
*
* Data is stored via cereal
*/
class OccPersistData
{
public:
~OccPersistData() = default;
OccPersistData(const OccPersistData&) = default;
OccPersistData& operator=(const OccPersistData&) = default;
OccPersistData(OccPersistData&&) = default;
OccPersistData& operator=(OccPersistData&&) = default;
/** @brief Loads any saved power mode data */
OccPersistData()
{
load();
}
/** @brief Save Power Mode data to persistent file
*
* @param[in] newMode - desired System Power Mode
* @param[in] oemModeData - data required by some OEM Power Modes
*/
void updateMode(const SysPwrMode newMode, const uint16_t oemModeData)
{
modeData.mode = newMode;
modeData.oemModeData = oemModeData;
modeData.modeInitialized = true;
save();
}
/** @brief Save Power Mode Lock value to persistent file
*
* @param[in] modeLock - desired System Power Mode Lock
*/
void updateModeLock(const bool modeLock)
{
modeData.modeLocked = modeLock;
save();
}
/** @brief Write Idle Power Saver parameters to persistent file
*
* @param[in] enabled - Idle Power Save status (true = enabled)
* @param[in] enterUtil - IPS Enter Utilization (%)
* @param[in] enterTime - IPS Enter Time (seconds)
* @param[in] exitUtil - IPS Exit Utilization (%)
* @param[in] exitTime - IPS Exit Time (seconds)
*/
void updateIPS(const bool enabled, const uint8_t enterUtil,
const uint16_t enterTime, const uint8_t exitUtil,
const uint16_t exitTime)
{
modeData.ipsEnabled = enabled;
modeData.ipsEnterUtil = enterUtil;
modeData.ipsEnterTime = enterTime;
modeData.ipsExitUtil = exitUtil;
modeData.ipsExitTime = exitTime;
modeData.ipsInitialized = true;
save();
}
/** @brief Return the Power Mode and mode data
*
* @param[out] mode - current system power mode
* @param[out] oemModeData - frequency data for some OEM mode
*
* @returns true if mode was available
*/
bool getMode(SysPwrMode& mode, uint16_t& oemModeData) const
{
if (modeData.modeInitialized)
{
mode = modeData.mode;
oemModeData = modeData.oemModeData;
}
return modeData.modeInitialized;
}
/** @brief Get the Idle Power Saver properties from DBus
*
* @param[out] enabled - Idle Power Save status (true = enabled)
* @param[out] enterUtil - IPS Enter Utilization (%)
* @param[out] enterTime - IPS Enter Time (seconds)
* @param[out] exitUtil - IPS Exit Utilization (%)
* @param[out] exitTime - IPS Exit Time (seconds)
*
* @return true if parameters were read successfully
*/
bool getIPS(bool& enabled, uint8_t& enterUtil, uint16_t& enterTime,
uint8_t& exitUtil, uint16_t& exitTime)
{
if (!modeData.ipsInitialized)
{
return false;
}
enabled = modeData.ipsEnabled;
enterUtil = modeData.ipsEnterUtil;
enterTime = modeData.ipsEnterTime;
exitUtil = modeData.ipsExitUtil;
exitTime = modeData.ipsExitTime;
return true;
}
/** @brief Return persisted mode lock */
bool getModeLock()
{
return modeData.modeLocked;
}
/** @brief Return true if the power mode is available */
bool modeAvailable()
{
return (modeData.modeInitialized);
}
/** @brief Return true if the IPS data is available */
bool ipsAvailable()
{
return (modeData.ipsInitialized);
}
/** @brief Saves the Power Mode data in the filesystem using cereal. */
void save();
/** @brief Trace the Power Mode and IPS parameters. */
void print();
/** @brief Invalidate the persisted mode */
void invalidateMode()
{
modeData.modeInitialized = false;
}
private:
/** @brief Power Mode data filename to store persistent data */
static constexpr auto powerModeFilename = "powerModeData";
/** @brief Power Mode data object to be persisted */
PowerModeData modeData;
/** @brief Loads the OEM mode data in the filesystem using cereal. */
void load();
};
/** @class PowerMode
* @brief Monitors for changes to the power mode and notifies occ
*
* The customer power mode is provided to the OCC by host TMGT when the occ
* first goes active or is reset. This code is responsible for sending
* the power mode to the OCC if the mode is changed while the occ is active.
*/
class PowerMode : public ModeInterface
{
public:
/** @brief PowerMode object to inform occ of changes to mode
*
* This object will monitor for changes to the power mode setting.
* If a change is detected, and the occ is active, then this object will
* notify the OCC of the change.
*
* @param[in] managerRef - manager object reference
* @param[in] modePath - Power Mode dbus path
* @param[in] ipsPath - Idle Power Saver dbus path
*/
explicit PowerMode(const Manager& managerRef, const char* modePath,
const char* ipsPath, EventPtr& event);
/** @brief Initialize the persistent data with default values
*
* @return true if initialization completed
*/
bool initPersistentData();
/** @brief Set the power mode lock (dbus method)
*
* @return true if successful
*/
bool powerModeLock();
/** @brief Get the power mode lock status (dbus method)
*
* @return true if locked
*/
bool powerModeLockStatus();
/** @brief Set the current power mode property
*
* @param[in] newMode - desired system power mode
* @param[in] oemModeData - data required by some OEM Power Modes
*
* @return true if mode accepted
*/
bool setMode(const SysPwrMode newMode, const uint16_t oemModeData);
/** @brief Send mode change command to the master OCC
* @return SUCCESS on success
*/
CmdStatus sendModeChange();
/** @brief Send Idle Power Saver config data to the master OCC
* @return SUCCESS on success
*/
CmdStatus sendIpsData();
/** @brief Set the master OCC path
*
* @param[in] occPath - hwmon path for master OCC
*/
void setMasterOcc(const std::string& occPath);
/** @brief Notify object of master OCC state. If not acitve, no
* commands will be sent to the master OCC
*
* @param[in] isActive - true when master OCC is active
*/
void setMasterActive(const bool isActive = true)
{
masterActive = isActive;
};
/** @brief Starts to monitor for IPS active state change conditions
*
* @param[in] poll - Indicates whether or not the IPS state file should
* actually be read for changes.
*/
void addIpsWatch(bool poll = true);
/** @brief Removes IPS active watch */
void removeIpsWatch();
/** @brief Set dbus property to SAFE Mode(true) or clear SAFE Mode(false)*/
void updateDbusSafeMode(const bool safeMode);
/** @brief override the set/get MODE function
*
* @param[in] value - Intended value
*
* @return - the value or Updated value of the property
*/
Base::Mode::PowerMode powerMode(Base::Mode::PowerMode value) override;
/** @brief Determine if the supplied mode is valid for the system
*
* @param[in] mode - potential mode
*
* @return - true if the mode is valid
*/
bool isValidMode(const SysPwrMode mode);
/** @brief If IPS is supported, set flag indicating need to send IPS data */
void needToSendIPS()
{
if (ipsObject)
{
needToSendIpsData = true;
}
}
private:
/** @brief OCC manager object */
const Manager& manager;
/** @brief Pass-through occ path on the bus */
std::string path;
/** @brief OCC instance number */
int occInstance;
/** @brief Object to send commands to the OCC */
std::unique_ptr<open_power::occ::OccCommand> occCmd;
/** @brief Used to subscribe to dbus IPS property changes **/
sdbusplus::bus::match_t ipsMatch;
/** @brief Used to subscribe to dbus defaults property changes **/
sdbusplus::bus::match_t defaultsUpdateMatch;
OccPersistData persistedData;
/** @brief True when the master OCC has been established **/
bool masterOccSet;
/** @brief True when the master OCC is active **/
bool masterActive;
/** @brief True when the ecoModes are supported for this system **/
bool ecoModeSupport = false;
/** @brief List of customer supported power modes **/
std::set<SysPwrMode> customerModeList = {
SysPwrMode::STATIC, SysPwrMode::POWER_SAVING, SysPwrMode::MAX_PERF};
/** @brief List of OEM supported power modes **/
std::set<SysPwrMode> oemModeList = {SysPwrMode::SFP, SysPwrMode::FFO,
SysPwrMode::MAX_FREQ};
/** @brief IPS status data filename to read */
const fs::path ipsStatusFile =
std::filesystem::path{OCC_HWMON_PATH} /
std::filesystem::path{OCC_MASTER_NAME} / "occ_ips_status";
/** @brief Current state of error watching */
bool watching = false;
/** @brief Set at IPS object creation and cleared after sending IPS data */
bool needToSendIpsData = false;
/** @brief Object path for IPS on DBUS */
const char* ipsObjectPath;
/** @brief IPS DBUS Object */
std::unique_ptr<IpsInterface> ipsObject;
/** @brief register for the callback from the POLL IPS changed event */
void registerIpsStatusCallBack();
/** @brief Get the current power mode property
*
* @param[out] currentMode - current system power mode
* @param[out] oemModeData - frequency data for some OEM mode
*
* @return true if data read successfully
*/
bool getMode(SysPwrMode& currentMode, uint16_t& oemModeData);
/** @brief Update the power mode property on DBus
*
* @param[in] newMode - desired power mode
*
* @return true on success
*/
bool updateDbusMode(const SysPwrMode newMode);
/** @brief Callback for IPS setting changes
*
* Process change and inform OCC
*
* @param[in] msg - Data associated with IPS change signal
*
*/
void ipsChanged(sdbusplus::message_t& msg);
/** @brief Get the Idle Power Saver properties
*
* @param[out] enabled - Idle Power Save status (true = enabled)
* @param[out] enterUtil - IPS Enter Utilization (%)
* @param[out] enterTime - IPS Enter Time (seconds)
* @param[out] exitUtil - IPS Exit Utilization (%)
* @param[out] exitTime - IPS Exit Time (seconds)
*
* @return true if data read successfully
*/
bool getIPSParms(bool& enabled, uint8_t& enterUtil, uint16_t& enterTime,
uint8_t& exitUtil, uint16_t& exitTime);
/** Update the Idle Power Saver data on DBus
*
* @param[in] enabled - Idle Power Save status (true = enabled)
* @param[in] enterUtil - IPS Enter Utilization (%)
* @param[in] enterTime - IPS Enter Time (seconds)
* @param[in] exitUtil - IPS Exit Utilization (%)
* @param[in] exitTime - IPS Exit Time (seconds)
*
* @return true if parameters were set successfully
*/
bool updateDbusIPS(const bool enabled, const uint8_t enterUtil,
const uint16_t enterTime, const uint8_t exitUtil,
const uint16_t exitTime);
/** @brief Callback for entity manager default changes
*
* Called when PowerModeProperties defaults are available
*/
void defaultsReady(sdbusplus::message_t& msg);
/** @brief Get the default power mode property for this system type
*
* @param[out] defaultMode - default system power mode
*
* @return true if data read successfully
*/
bool getDefaultMode(SysPwrMode& defaultMode);
/** @brief Get the default Idle Power Saver properties for this system type
*
* @param[out] enabled - Idle Power Save status (true = enabled)
* @param[out] enterUtil - IPS Enter Utilization (%)
* @param[out] enterTime - IPS Enter Time (seconds)
* @param[out] exitUtil - IPS Exit Utilization (%)
* @param[out] exitTime - IPS Exit Time (seconds)
*
* @return true if parameters were read successfully
*/
bool getDefaultIPSParms(bool& enabled, uint8_t& enterUtil,
uint16_t& enterTime, uint8_t& exitUtil,
uint16_t& exitTime);
/** @brief Read the default Idle Power Saver parameters and save them to the
* DBUS so they will get used
*
* @return true if restore was successful
*/
bool useDefaultIPSParms();
/** @brief Read the supported power modes from entity-manager and update
* AllowedPowerModes on dbus
*
* @return true if data was found/updated
*/
bool getSupportedModes();
/** @brief Create IPS DBUS Object */
void createIpsObject();
/** @brief Remove IPS DBUS Object */
void removeIpsObject();
/** @brief callback for the POLL IPS changed event
*
* @param[in] es - Populated event source
* @param[in] fd - Associated File descriptor
* @param[in] revents - Type of event
* @param[in] userData - User data that was passed during registration
*/
static int ipsStatusCallBack(sd_event_source* es, int fd, uint32_t revents,
void* userData);
/** @brief Opens the IPS file and populates fd */
bool openIpsFile();
/** @brief sd_event wrapped in unique_ptr */
EventPtr& event;
/** @brief event source wrapped in unique_ptr */
EventSourcePtr eventSource;
/** @brief When the ips status event is received, analyzes it */
virtual void analyzeIpsEvent();
protected:
/** @brief File descriptor to watch for errors */
int fd = -1;
};
} // namespace powermode
} // namespace occ
} // namespace open_power
#endif