~aleteoryx/muditaos

ref: f9b9967b0ebea232eadffedcf7ed6a86c94c5e48 muditaos/module-sys/SystemManager/PowerManager.hpp -rw-r--r-- 1.8 KiB
f9b9967b — Maciej-Mudita [EGD-4694] Add CPU frequency shift mechanism 5 years ago
                                                                                
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
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#ifndef PUREPHONE_POWERMANAGER_HPP
#define PUREPHONE_POWERMANAGER_HPP

#include <functional>

#include "bsp/lpm/bsp_lpm.hpp"

namespace sys
{
    inline constexpr uint32_t frequencyShiftLowerThreshold{40};
    inline constexpr uint32_t frequencyShiftUpperThreshold{60};
    inline constexpr uint32_t maxBelowThresholdCount{50};
    inline constexpr uint32_t maxAboveThresholdCount{3};

    class PowerManager
    {

      public:
        PowerManager();
        ~PowerManager();

        int32_t PowerOff();
        int32_t Reboot();

        /// called periodically to calculate the CPU requirement
        ///
        /// if for the last 'maxAboveThresholdCount' periods the current CPU consumption has been above the set upper
        /// limit (frequencyShiftUpperThreshold), CPU frequency is increased; if for the last 'maxBelowThresholdCount'
        /// periods the current CPU usage was below the lower limit (frequencyShiftLowerThreshold), CPU frequency is
        /// reduced frequency
        /// @param current cpu load
        void UpdateCpuFrequency(uint32_t cpuLoad);

        /// called when the CPU frequency needs to be increased
        /// @note the frequency is always increased to the maximum value
        void IncreaseCpuFrequency() const;

        /// called when the CPU frequency needs to be reduced
        /// @note the frequency is always reduced by one step
        void DecreaseCpuFrequency() const;

      private:
        void ResetFrequencyShiftCounter();

        uint32_t belowThresholdCounter{0};
        uint32_t aboveThresholdCounter{0};

        std::unique_ptr<bsp::LowPowerMode> lowPowerControl;
    };

} // namespace sys

#endif // PUREPHONE_POWERMANAGER_HPP