cc13x2_cc26x2 had its own power policy that was implementing the same logic available in the default residency policy. Also, this policy was unnecessarily setting up a timeout to wakeup the system. This is not necessary, the power subsystem takes care of this. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
29 lines
680 B
Text
29 lines
680 B
Text
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "Idle State Power Management Policy"
|
|
help
|
|
Select the idle state power management policy.
|
|
|
|
config PM_POLICY_RESIDENCY
|
|
bool "PM Policy based on CPU residency"
|
|
select PM_POLICY_RESIDENCY_DEFAULT
|
|
help
|
|
Select this option for PM policy based on CPU residencies.
|
|
|
|
config PM_POLICY_DUMMY
|
|
bool "Dummy PM Policy"
|
|
help
|
|
Dummy PM Policy which simply returns next PM state in a loop.
|
|
|
|
config PM_POLICY_APP
|
|
bool "Application PM Policy"
|
|
help
|
|
When this option is selected, the application must provide PM policy.
|
|
|
|
endchoice
|
|
|
|
config PM_POLICY_RESIDENCY_DEFAULT
|
|
bool
|
|
help
|
|
Use the default residency policy implementation
|