1config RT_USING_PM
2    bool "Using Power Management device drivers"
3    default n
4
5    if RT_USING_PM
6        config PM_TICKLESS_THRESHOLD_TIME
7            int "PM tickless threashold time"
8            default 2
9
10        config PM_USING_CUSTOM_CONFIG
11            bool "PM using custom pm config"
12            default n
13
14        config PM_ENABLE_DEBUG
15            bool "PM Enable Debug"
16            default n
17
18        config PM_ENABLE_SUSPEND_SLEEP_MODE
19            bool "PM Device suspend change sleep mode"
20            default n
21
22        config PM_ENABLE_THRESHOLD_SLEEP_MODE
23            bool "PM using threshold time change sleep mode"
24            default n
25
26        if PM_ENABLE_THRESHOLD_SLEEP_MODE
27            config PM_LIGHT_THRESHOLD_TIME
28                int "PM light mode threashold time"
29                default 5
30
31            config PM_DEEP_THRESHOLD_TIME
32                int "PM deep mode threashold time"
33                default 20
34
35            config PM_STANDBY_THRESHOLD_TIME
36                int "PM standby mode threashold time"
37                default 100
38        endif
39    endif
40