2 * ladder.c - the residency ladder algorithm
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de>
8 * (C) 2006-2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
9 * Shaohua Li <shaohua.li@intel.com>
10 * Adam Belay <abelay@novell.com>
12 * This code is licenced under the GPL.
15 #include <linux/kernel.h>
16 #include <linux/cpuidle.h>
17 #include <linux/pm_qos.h>
18 #include <linux/module.h>
19 #include <linux/jiffies.h>
22 #include <asm/uaccess.h>
24 #define PROMOTION_COUNT 4
25 #define DEMOTION_COUNT 1
27 struct ladder_device_state
{
40 struct ladder_device
{
41 struct ladder_device_state states
[CPUIDLE_STATE_MAX
];
45 static DEFINE_PER_CPU(struct ladder_device
, ladder_devices
);
48 * ladder_do_selection - prepares private data for a state change
49 * @ldev: the ladder device
50 * @old_idx: the current state index
51 * @new_idx: the new target state index
53 static inline void ladder_do_selection(struct ladder_device
*ldev
,
54 int old_idx
, int new_idx
)
56 ldev
->states
[old_idx
].stats
.promotion_count
= 0;
57 ldev
->states
[old_idx
].stats
.demotion_count
= 0;
58 ldev
->last_state_idx
= new_idx
;
62 * ladder_select_state - selects the next state to enter
63 * @drv: cpuidle driver
66 static int ladder_select_state(struct cpuidle_driver
*drv
,
67 struct cpuidle_device
*dev
)
69 struct ladder_device
*ldev
= this_cpu_ptr(&ladder_devices
);
70 struct ladder_device_state
*last_state
;
71 int last_residency
, last_idx
= ldev
->last_state_idx
;
72 int latency_req
= pm_qos_request(PM_QOS_CPU_DMA_LATENCY
);
74 /* Special case when user has set very strict latency requirement */
75 if (unlikely(latency_req
== 0)) {
76 ladder_do_selection(ldev
, last_idx
, 0);
80 last_state
= &ldev
->states
[last_idx
];
82 last_residency
= cpuidle_get_last_residency(dev
) - drv
->states
[last_idx
].exit_latency
;
84 /* consider promotion */
85 if (last_idx
< drv
->state_count
- 1 &&
86 !drv
->states
[last_idx
+ 1].disabled
&&
87 !dev
->states_usage
[last_idx
+ 1].disable
&&
88 last_residency
> last_state
->threshold
.promotion_time
&&
89 drv
->states
[last_idx
+ 1].exit_latency
<= latency_req
) {
90 last_state
->stats
.promotion_count
++;
91 last_state
->stats
.demotion_count
= 0;
92 if (last_state
->stats
.promotion_count
>= last_state
->threshold
.promotion_count
) {
93 ladder_do_selection(ldev
, last_idx
, last_idx
+ 1);
98 /* consider demotion */
99 if (last_idx
> CPUIDLE_DRIVER_STATE_START
&&
100 (drv
->states
[last_idx
].disabled
||
101 dev
->states_usage
[last_idx
].disable
||
102 drv
->states
[last_idx
].exit_latency
> latency_req
)) {
105 for (i
= last_idx
- 1; i
> CPUIDLE_DRIVER_STATE_START
; i
--) {
106 if (drv
->states
[i
].exit_latency
<= latency_req
)
109 ladder_do_selection(ldev
, last_idx
, i
);
113 if (last_idx
> CPUIDLE_DRIVER_STATE_START
&&
114 last_residency
< last_state
->threshold
.demotion_time
) {
115 last_state
->stats
.demotion_count
++;
116 last_state
->stats
.promotion_count
= 0;
117 if (last_state
->stats
.demotion_count
>= last_state
->threshold
.demotion_count
) {
118 ladder_do_selection(ldev
, last_idx
, last_idx
- 1);
123 /* otherwise remain at the current state */
128 * ladder_enable_device - setup for the governor
129 * @drv: cpuidle driver
132 static int ladder_enable_device(struct cpuidle_driver
*drv
,
133 struct cpuidle_device
*dev
)
136 struct ladder_device
*ldev
= &per_cpu(ladder_devices
, dev
->cpu
);
137 struct ladder_device_state
*lstate
;
138 struct cpuidle_state
*state
;
140 ldev
->last_state_idx
= CPUIDLE_DRIVER_STATE_START
;
142 for (i
= CPUIDLE_DRIVER_STATE_START
; i
< drv
->state_count
; i
++) {
143 state
= &drv
->states
[i
];
144 lstate
= &ldev
->states
[i
];
146 lstate
->stats
.promotion_count
= 0;
147 lstate
->stats
.demotion_count
= 0;
149 lstate
->threshold
.promotion_count
= PROMOTION_COUNT
;
150 lstate
->threshold
.demotion_count
= DEMOTION_COUNT
;
152 if (i
< drv
->state_count
- 1)
153 lstate
->threshold
.promotion_time
= state
->exit_latency
;
154 if (i
> CPUIDLE_DRIVER_STATE_START
)
155 lstate
->threshold
.demotion_time
= state
->exit_latency
;
162 * ladder_reflect - update the correct last_state_idx
164 * @index: the index of actual state entered
166 static void ladder_reflect(struct cpuidle_device
*dev
, int index
)
168 struct ladder_device
*ldev
= this_cpu_ptr(&ladder_devices
);
170 ldev
->last_state_idx
= index
;
173 static struct cpuidle_governor ladder_governor
= {
176 .enable
= ladder_enable_device
,
177 .select
= ladder_select_state
,
178 .reflect
= ladder_reflect
,
179 .owner
= THIS_MODULE
,
183 * init_ladder - initializes the governor
185 static int __init
init_ladder(void)
187 return cpuidle_register_governor(&ladder_governor
);
190 postcore_initcall(init_ladder
);