-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathWifiSleepManager.h
137 lines (117 loc) · 5.29 KB
/
WifiSleepManager.h
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
/*
*
* Copyright (c) 2024 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <lib/core/CHIPError.h>
namespace chip {
namespace DeviceLayer {
namespace Silabs {
/**
* @brief WifiSleepManager is a singleton class that manages the sleep modes for Wi-Fi devices.
* The class contains the business logic associated with optimizing the sleep states based on the Matter SDK internal states
*/
class WifiSleepManager
{
public:
WifiSleepManager(const WifiSleepManager &) = delete;
WifiSleepManager & operator=(const WifiSleepManager &) = delete;
static WifiSleepManager & GetInstance() { return mInstance; }
enum class PowerEvent : uint8_t
{
kGenericEvent = 0,
kCommissioningComplete = 1,
kConnectivityChange = 2,
};
/**
* @brief Init function that configure the SleepManager APIs based on the type of ICD.
* Function validates that the SleepManager configuration were correctly set as well.
*
* Triggers an initial VerifyAndTransitionToLowPowerMode to set the initial sleep mode.
*
* @return CHIP_ERROR CHIP_NO_ERROR if the device was transitionned to low power
* CHIP_ERROR_INTERNAL if an error occured
*/
CHIP_ERROR Init();
inline void HandleCommissioningSessionStarted()
{
mIsCommissioningInProgress = true;
// TODO: Remove High Performance Req during commissioning when sleep issues are resolved
WifiSleepManager::GetInstance().RequestHighPerformance();
}
inline void HandleCommissioningSessionStopped()
{
mIsCommissioningInProgress = false;
// TODO: Remove High Performance Req during commissioning when sleep issues are resolved
WifiSleepManager::GetInstance().RemoveHighPerformanceRequest();
}
/**
* @brief Public API to request the Wi-Fi chip to transition to High Performance.
* Function increases the HighPerformance request counter to prevent the chip from going to sleep
* while the Matter SDK is in a state that requires High Performance
*
* It is not necessary to call VerifyAndTransitionToLowPowerMode after calling this function.
* The API does the call after incrementing the HighPerformance request counter.
*
* @return CHIP_ERROR CHIP_NO_ERROR if the chip was set to high performance or already in high performance
* CHIP_ERROR_INTERNAL, if the high performance configuration failed
*/
CHIP_ERROR RequestHighPerformance();
/**
* @brief Public API to remove request to keep the Wi-Fi chip in High Performance.
* If calling this function removes the last High performance request,
* The chip will transition to sleep based on its lowest sleep level allowed
*
*
* It is not necessary to call VerifyAndTransitionToLowPowerMode after calling this function.
* The API does the call after decreasing the HighPerformance request counter.
*
* @return CHIP_ERROR CHIP_NO_ERROR if the req removal and sleep transition succeed
* CHIP_ERROR_INTERNAL, if the req removal or the transition to sleep failed
*/
CHIP_ERROR RemoveHighPerformanceRequest();
/**
* @brief Public API to validate what is the lowest power mode the device can got to and transitions the device to the
* determined low power state.
*
* State machine logic:
* 1. If there are high performance requests, configure high performance mode.
* 2. If commissioning is in progress, configure DTIM based sleep.
* 3. If no commissioning is in progress and the device is unprovisioned, configure deep sleep.
*
* @param event PowerEvent triggering the Verify and transition to low power mode processing
*
* @return CHIP_ERROR CHIP_NO_ERROR if the device was transitionned to low power
* CHIP_ERROR_INTERNAL if an error occured
*/
CHIP_ERROR VerifyAndTransitionToLowPowerMode(PowerEvent event);
private:
WifiSleepManager() = default;
~WifiSleepManager() = default;
/**
* @brief Function to handle the power events before transitionning the device to the appropriate low power mode.
*
* @param event PowerEvent to handle
* @return CHIP_ERROR CHIP_NO_ERROR if the event was handled successfully
* CHIP_ERROR_INVALID_ARGUMENT if the event is not supported
*/
CHIP_ERROR HandlePowerEvent(PowerEvent event);
static WifiSleepManager mInstance;
bool mIsCommissioningInProgress = false;
uint8_t mHighPerformanceRequestCounter = 0;
};
} // namespace Silabs
} // namespace DeviceLayer
} // namespace chip