blob: 704880a6612a76341b4f6746fd109366c940e41d [file] [log] [blame]
Len Brown4f86d3a2007-10-03 18:58:00 -04001/*
2 * ladder.c - the residency ladder algorithm
3 *
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>
7 *
8 * (C) 2006-2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
9 * Shaohua Li <shaohua.li@intel.com>
10 * Adam Belay <abelay@novell.com>
11 *
12 * This code is licenced under the GPL.
13 */
14
15#include <linux/kernel.h>
16#include <linux/cpuidle.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040017#include <linux/jiffies.h>
Jean Delvare66a5f6b2016-01-11 17:41:53 +010018#include <linux/tick.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040019
20#include <asm/io.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080021#include <linux/uaccess.h>
Len Brown4f86d3a2007-10-03 18:58:00 -040022
23#define PROMOTION_COUNT 4
24#define DEMOTION_COUNT 1
25
26struct ladder_device_state {
27 struct {
28 u32 promotion_count;
29 u32 demotion_count;
30 u32 promotion_time;
31 u32 demotion_time;
32 } threshold;
33 struct {
34 int promotion_count;
35 int demotion_count;
36 } stats;
37};
38
39struct ladder_device {
40 struct ladder_device_state states[CPUIDLE_STATE_MAX];
41 int last_state_idx;
42};
43
44static DEFINE_PER_CPU(struct ladder_device, ladder_devices);
45
46/**
47 * ladder_do_selection - prepares private data for a state change
48 * @ldev: the ladder device
49 * @old_idx: the current state index
50 * @new_idx: the new target state index
51 */
52static inline void ladder_do_selection(struct ladder_device *ldev,
53 int old_idx, int new_idx)
54{
55 ldev->states[old_idx].stats.promotion_count = 0;
56 ldev->states[old_idx].stats.demotion_count = 0;
57 ldev->last_state_idx = new_idx;
58}
59
60/**
61 * ladder_select_state - selects the next state to enter
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053062 * @drv: cpuidle driver
Len Brown4f86d3a2007-10-03 18:58:00 -040063 * @dev: the CPU
Rafael J. Wysocki45f1ff52018-03-22 17:50:49 +010064 * @dummy: not used
Len Brown4f86d3a2007-10-03 18:58:00 -040065 */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053066static int ladder_select_state(struct cpuidle_driver *drv,
Rafael J. Wysocki45f1ff52018-03-22 17:50:49 +010067 struct cpuidle_device *dev, bool *dummy)
Len Brown4f86d3a2007-10-03 18:58:00 -040068{
Christoph Lameter229b6862014-08-17 12:30:30 -050069 struct ladder_device *ldev = this_cpu_ptr(&ladder_devices);
Len Brown4f86d3a2007-10-03 18:58:00 -040070 struct ladder_device_state *last_state;
71 int last_residency, last_idx = ldev->last_state_idx;
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +020072 int first_idx = drv->states[0].flags & CPUIDLE_FLAG_POLLING ? 1 : 0;
Rafael J. Wysocki0fc784f2018-05-30 13:43:01 +020073 int latency_req = cpuidle_governor_latency_req(dev->cpu);
Len Brown4f86d3a2007-10-03 18:58:00 -040074
venkatesh.pallipadi@intel.coma2bd92022008-07-30 19:21:42 -070075 /* Special case when user has set very strict latency requirement */
76 if (unlikely(latency_req == 0)) {
77 ladder_do_selection(ldev, last_idx, 0);
78 return 0;
79 }
80
Len Brown4f86d3a2007-10-03 18:58:00 -040081 last_state = &ldev->states[last_idx];
82
Len Brownb73026b2014-12-16 01:52:07 -050083 last_residency = cpuidle_get_last_residency(dev) - drv->states[last_idx].exit_latency;
Len Brown4f86d3a2007-10-03 18:58:00 -040084
85 /* consider promotion */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053086 if (last_idx < drv->state_count - 1 &&
Rafael J. Wysocki66804c12012-08-15 20:28:52 +020087 !drv->states[last_idx + 1].disabled &&
Carsten Emde62d6ae82012-07-19 20:34:10 +000088 !dev->states_usage[last_idx + 1].disable &&
Len Brown4f86d3a2007-10-03 18:58:00 -040089 last_residency > last_state->threshold.promotion_time &&
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +053090 drv->states[last_idx + 1].exit_latency <= latency_req) {
Len Brown4f86d3a2007-10-03 18:58:00 -040091 last_state->stats.promotion_count++;
92 last_state->stats.demotion_count = 0;
93 if (last_state->stats.promotion_count >= last_state->threshold.promotion_count) {
94 ladder_do_selection(ldev, last_idx, last_idx + 1);
95 return last_idx + 1;
96 }
97 }
98
99 /* consider demotion */
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200100 if (last_idx > first_idx &&
Rafael J. Wysocki66804c12012-08-15 20:28:52 +0200101 (drv->states[last_idx].disabled ||
102 dev->states_usage[last_idx].disable ||
Carsten Emde62d6ae82012-07-19 20:34:10 +0000103 drv->states[last_idx].exit_latency > latency_req)) {
venkatesh.pallipadi@intel.com06d9e902008-07-30 19:21:44 -0700104 int i;
105
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200106 for (i = last_idx - 1; i > first_idx; i--) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530107 if (drv->states[i].exit_latency <= latency_req)
venkatesh.pallipadi@intel.com06d9e902008-07-30 19:21:44 -0700108 break;
109 }
110 ladder_do_selection(ldev, last_idx, i);
111 return i;
112 }
113
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200114 if (last_idx > first_idx &&
Len Brown4f86d3a2007-10-03 18:58:00 -0400115 last_residency < last_state->threshold.demotion_time) {
116 last_state->stats.demotion_count++;
117 last_state->stats.promotion_count = 0;
118 if (last_state->stats.demotion_count >= last_state->threshold.demotion_count) {
119 ladder_do_selection(ldev, last_idx, last_idx - 1);
120 return last_idx - 1;
121 }
122 }
123
124 /* otherwise remain at the current state */
125 return last_idx;
126}
127
128/**
129 * ladder_enable_device - setup for the governor
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530130 * @drv: cpuidle driver
Len Brown4f86d3a2007-10-03 18:58:00 -0400131 * @dev: the CPU
132 */
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530133static int ladder_enable_device(struct cpuidle_driver *drv,
134 struct cpuidle_device *dev)
Len Brown4f86d3a2007-10-03 18:58:00 -0400135{
136 int i;
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200137 int first_idx = drv->states[0].flags & CPUIDLE_FLAG_POLLING ? 1 : 0;
Len Brown4f86d3a2007-10-03 18:58:00 -0400138 struct ladder_device *ldev = &per_cpu(ladder_devices, dev->cpu);
139 struct ladder_device_state *lstate;
140 struct cpuidle_state *state;
141
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200142 ldev->last_state_idx = first_idx;
Len Brown4f86d3a2007-10-03 18:58:00 -0400143
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200144 for (i = first_idx; i < drv->state_count; i++) {
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530145 state = &drv->states[i];
Len Brown4f86d3a2007-10-03 18:58:00 -0400146 lstate = &ldev->states[i];
147
148 lstate->stats.promotion_count = 0;
149 lstate->stats.demotion_count = 0;
150
151 lstate->threshold.promotion_count = PROMOTION_COUNT;
152 lstate->threshold.demotion_count = DEMOTION_COUNT;
153
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530154 if (i < drv->state_count - 1)
Len Brown4f86d3a2007-10-03 18:58:00 -0400155 lstate->threshold.promotion_time = state->exit_latency;
Rafael J. Wysockidc2251b2017-08-23 23:19:57 +0200156 if (i > first_idx)
Len Brown4f86d3a2007-10-03 18:58:00 -0400157 lstate->threshold.demotion_time = state->exit_latency;
158 }
159
160 return 0;
161}
162
Deepthi Dharware978aa72011-10-28 16:20:09 +0530163/**
164 * ladder_reflect - update the correct last_state_idx
165 * @dev: the CPU
166 * @index: the index of actual state entered
167 */
168static void ladder_reflect(struct cpuidle_device *dev, int index)
169{
Christoph Lameter229b6862014-08-17 12:30:30 -0500170 struct ladder_device *ldev = this_cpu_ptr(&ladder_devices);
Deepthi Dharware978aa72011-10-28 16:20:09 +0530171 if (index > 0)
172 ldev->last_state_idx = index;
173}
174
Len Brown4f86d3a2007-10-03 18:58:00 -0400175static struct cpuidle_governor ladder_governor = {
176 .name = "ladder",
177 .rating = 10,
178 .enable = ladder_enable_device,
179 .select = ladder_select_state,
Deepthi Dharware978aa72011-10-28 16:20:09 +0530180 .reflect = ladder_reflect,
Len Brown4f86d3a2007-10-03 18:58:00 -0400181};
182
183/**
184 * init_ladder - initializes the governor
185 */
186static int __init init_ladder(void)
187{
Jean Delvare66a5f6b2016-01-11 17:41:53 +0100188 /*
189 * When NO_HZ is disabled, or when booting with nohz=off, the ladder
190 * governor is better so give it a higher rating than the menu
191 * governor.
192 */
193 if (!tick_nohz_enabled)
194 ladder_governor.rating = 25;
195
Len Brown4f86d3a2007-10-03 18:58:00 -0400196 return cpuidle_register_governor(&ladder_governor);
197}
198
Daniel Lezcano137b9442013-06-12 15:08:48 +0200199postcore_initcall(init_ladder);