summaryrefslogtreecommitdiff
path: root/drivers/cpufreq/cpufreq_lab.c
blob: 8939a6ebe991c8d10d548459c0aa00aa70601681 (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*
 * Copyright (c) 2013-2014 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
 *		Jonghwa Lee <jonghw3.lee@samusng.com>
 *		Lukasz Majewski <l.majewski@samsung.com>
 *
 * LAB (Legacy Application Boost) cpufreq governor
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/cpufreq.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/kernel_stat.h>
#include <linux/kobject.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/percpu-defs.h>
#include <linux/sysfs.h>
#include <linux/tick.h>
#include <linux/types.h>
#include <linux/cpuidle.h>
#include <linux/slab.h>
#include <linux/of.h>

#include "cpufreq_governor.h"

#define MAX_HIST		5

#define LB_BOOST_ENABLE        ~0UL
#define LB_MIN_FREQ            ~1UL
#define LB_ONDEMAND             0

/* Pre-calculated summation of weight, 0.5
 * 1
 * 1 + 0.5^1 = 1.5
 * 1 + 0.5^1 + 0.5^2 = 1.75
 * 1 + 0.5^1 + 0.5^2 + 0.5^3 = 1.87
 * 1 + 0.5^1 + 0.5^2 + 0.5^3 + 0.5^4 = 1.93
 */
static int history_weight_sum[] = { 100, 150, 175, 187, 193 };

static unsigned int idle_avg[NR_CPUS];
static unsigned int idle_hist[NR_CPUS][MAX_HIST];
static int idle_cpus, lb_threshold = 90;
static unsigned int *lb_ctrl_table, lb_load;
static int lb_ctrl_table_size, lb_num_of_states;
static bool boost_init_state;

static DECLARE_BITMAP(boost_hist, MAX_HIST);
static DEFINE_PER_CPU(struct od_cpu_dbs_info_s, od_cpu_dbs_info);

struct cpufreq_governor cpufreq_gov_lab;


static struct lb_wq_boost_data {
	bool state;
	struct work_struct work;
} lb_boost_data;

/* Calculate average of idle time with weighting 50% less to older one.
 * With weight, average can be affected by current phase more rapidly than
 * normal average. And it also has tolerance for temporary fluctuation of
 * idle time as normal average has.
 *
 * Weigted average = sum(ai * wi) / sum(wi)
 */
static inline int cpu_idle_calc_avg(unsigned int *p, int size)
{
	int i, sum;

	for (i = 0, sum = 0; i < size; p++, i++) {
		sum += *p;
		*p >>= 1;
	}
	sum *= 100;

	return (int) (sum / history_weight_sum[size - 1]);
}

static unsigned int lb_chose_freq(unsigned int load, int idle_cpus)
{
	unsigned int p, q = 100 / lb_num_of_states;
	int idx;

	for (idx = 0, p = q; idx < lb_num_of_states; idx++, p += q)
		if (load <= p)
			break;

	return *(lb_ctrl_table + (lb_num_of_states * idle_cpus) + idx);
}

static void lb_cpufreq_boost_work(struct work_struct *work)
{
	struct lb_wq_boost_data *d = container_of(work,
						  struct lb_wq_boost_data,
						  work);
	cpufreq_boost_trigger_state(d->state);
}

static struct common_dbs_data lb_dbs_cdata;
/*
 * LAB governor policy adjustement
 */
static void lb_check_cpu(int cpu, unsigned int load)
{
	struct od_cpu_dbs_info_s *dbs_info = &per_cpu(od_cpu_dbs_info, cpu);
	struct cpufreq_policy *policy = dbs_info->cdbs.cur_policy;
	unsigned int freq = 0, op;
	static int cnt = 0;
	int i, idx, bs;

	idle_cpus = 0;
	lb_load = load;
	idx = cnt++ % MAX_HIST;

	for_each_possible_cpu(i) {
		struct od_cpu_dbs_info_s *dbs_cpu_info =
			&per_cpu(od_cpu_dbs_info, i);

		idle_hist[i][idx] = dbs_cpu_info->idle_time;
		idle_avg[i] = cpu_idle_calc_avg(idle_hist[i],
					cnt < MAX_HIST ? cnt : MAX_HIST);

		if (idle_avg[i] > lb_threshold)
			idle_cpus++;
	}

	if (idle_cpus < 0 || idle_cpus > NR_CPUS) {
		pr_warn("%s: idle_cpus: %d out of range\n", __func__,
			idle_cpus);
		return;
	}

	if (!lb_ctrl_table)
		return;

	op = lb_chose_freq(load, idle_cpus);
	if (op == LB_BOOST_ENABLE)
		set_bit(idx, boost_hist);
	else
		clear_bit(idx, boost_hist);

	bs = cpufreq_boost_enabled();
	/*
	 * - To disable boost -
	 *
	 * Operation different than LB_BOOST_ENABLE is
	 * required for at least MAX_HIST previous operations
	 */
	if (bs && bitmap_empty(boost_hist, MAX_HIST)) {
		lb_boost_data.state = false;
		schedule_work_on(cpu, &lb_boost_data.work);
	}

	/*
	 * - To enable boost -
	 *
	 * Only (MAX_HIST - 1) bits are required. This allows entering
	 * BOOST mode earlier, since we skip one "round" of LAB operation
	 * before work is executed.
	 */
	if (!bs &&
	    (bitmap_weight(boost_hist, MAX_HIST) == (MAX_HIST - 1))) {
		lb_boost_data.state = true;
		schedule_work_on(cpu, &lb_boost_data.work);
	}

	switch (op) {
	case LB_BOOST_ENABLE:
		freq = policy->max;
		break;

	case LB_MIN_FREQ:
		freq = policy->min;
		break;

	default:
		freq = op;
	}

	if (policy->cur == freq)
		return;

	__cpufreq_driver_target(policy, freq, CPUFREQ_RELATION_L);
}

static ssize_t show_load(struct kobject *kobj,
			 struct attribute *attr, char *buf)
{
	return sprintf(buf, "%u\n", lb_load);
}
define_one_global_ro(load);

static ssize_t show_idle_cpus_num(struct kobject *kobj,
				  struct attribute *attr, char *buf)
{
	return sprintf(buf, "%u\n", idle_cpus);
}
define_one_global_ro(idle_cpus_num);

static ssize_t show_idle_avg_cpus_val(struct kobject *kobj,
				      struct attribute *attr, char *buf)
{
	char off;
	int i;

	for (i = 0, off = 0; i < NR_CPUS; i++)
		off += sprintf(buf + off, "%u ", idle_avg[i]);

	*(buf + off - 1) = '\n';

	return off;
}
define_one_global_ro(idle_avg_cpus_val);

static ssize_t show_idle_threshold(struct kobject *kobj,
				   struct attribute *attr, char *buf)
{
	return sprintf(buf, "%u\n", lb_threshold);
}

static ssize_t store_idle_threshold(struct kobject *a, struct attribute *b,
				    const char *buf, size_t count)
{
	unsigned int val;
	int ret;

	ret = sscanf(buf, "%u", &val);
	if (ret != 1)
		return -EINVAL;

	if (val < 0 || val > 100) {
		pr_err("%s: Only value in a range 0 to 100 accepted\n",
		       __func__);
		return -EINVAL;
	}

	lb_threshold = val;
	return count;
}
define_one_global_rw(idle_threshold);

static struct attribute *dbs_attributes_gov_sys[] = {
	&idle_avg_cpus_val.attr,
	&idle_threshold.attr,
	&idle_cpus_num.attr,
	&load.attr,
	NULL
};

static struct attribute_group lb_attr_group_gov_sys = {
	.attrs = dbs_attributes_gov_sys,
	.name = "lab",
};

static int lb_ctrl_table_of_init(struct device_node *dn,
				 unsigned int **ctrl_tab, int size)
{
	struct property *pp;
	int len;

	pp = of_find_property(dn, "lab-ctrl-freq", &len);
	if (!pp) {
		pr_err("%s: Property: 'lab-ctrl-freq'  not found\n", __func__);
		return -ENODEV;
	}

	if (len != (size * sizeof(**ctrl_tab))) {
		pr_err("%s: Wrong 'lab-ctrl-freq' size\n", __func__);
		return -EINVAL;
	}

	*ctrl_tab = kzalloc(len, GFP_KERNEL);
	if (!*ctrl_tab) {
		pr_err("%s: Not enough memory for LAB control structure\n",
		       __func__);
		return -ENOMEM;
	}

	if (of_property_read_u32_array(dn, pp->name, *ctrl_tab, size)) {
		pr_err("Property: %s cannot be read!\n", pp->name);
		return -ENODEV;
	}

	return 0;
}

static int lb_of_init(void)
{
	struct device_node *dn;
	struct property *pp;
	int ret;

	dn = of_find_node_by_path("/cpufreq");
	if (!dn) {
		pr_err("%s: Node: '/cpufreq/' not found\n", __func__);
		return -ENODEV;
	}

	pp = of_find_property(dn, "lab-num-of-states", NULL);
	if (!pp) {
		pr_err("%s: Property: 'lab-num-of-states'  not found\n",
		       __func__);
		ret = -ENODEV;
		goto dn_err;
	}
	lb_num_of_states = be32_to_cpup(pp->value);

	lb_ctrl_table_size = lb_num_of_states * (NR_CPUS + 1);
	ret = lb_ctrl_table_of_init(dn, &lb_ctrl_table, lb_ctrl_table_size);
	if (ret) {
		kfree(lb_ctrl_table);
		lb_ctrl_table = NULL;
		pr_err("%s: Cannot parse LAB control structure from OF\n",
		       __func__);
		return ret;
	}

dn_err:
	of_node_put(dn);
	return ret;
}

static int lb_init(struct dbs_data *dbs_data)
{
	int ret;

	ret = lb_of_init();
	if (ret)
		return ret;

	boost_init_state = cpufreq_boost_enabled();
	if (boost_init_state)
		cpufreq_boost_trigger_state(false);

	od_init(dbs_data);

	INIT_WORK(&lb_boost_data.work, lb_cpufreq_boost_work);

	return 0;
}

void lb_exit(struct dbs_data *dbs_data)
{
	od_exit(dbs_data);

	kfree(lb_ctrl_table);
	lb_ctrl_table = NULL;

	cpufreq_boost_trigger_state(boost_init_state);
}

define_get_cpu_dbs_routines(od_cpu_dbs_info);

static struct common_dbs_data lb_dbs_cdata = {
	.governor = GOV_LAB,
	.attr_group_gov_sys = &lb_attr_group_gov_sys,
	.get_cpu_cdbs = get_cpu_cdbs,
	.get_cpu_dbs_info_s = get_cpu_dbs_info_s,
	.gov_dbs_timer = od_dbs_timer,
	.gov_check_cpu = lb_check_cpu,
	.gov_ops = &od_ops,
	.init = lb_init,
	.exit = lb_exit,
};

static int lb_cpufreq_governor_dbs(struct cpufreq_policy *policy,
		unsigned int event)
{
	return cpufreq_governor_dbs(policy, &lb_dbs_cdata, event);
}

struct cpufreq_governor cpufreq_gov_lab = {
	.name			= "lab",
	.governor		= lb_cpufreq_governor_dbs,
	.max_transition_latency = TRANSITION_LATENCY_LIMIT,
	.owner			= THIS_MODULE,
};

static int __init cpufreq_gov_dbs_init(void)
{
	return cpufreq_register_governor(&cpufreq_gov_lab);
}

MODULE_AUTHOR("Jonghwa Lee <jonghwa3.lee@samsung.com>");
MODULE_AUTHOR("Lukasz Majewski <l.majewski@samsung.com>");
MODULE_DESCRIPTION("'cpufreq_lab' - A dynamic cpufreq governor for "
		"Legacy Application Boosting");
MODULE_LICENSE("GPL");

#ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_LAB
fs_initcall(cpufreq_gov_dbs_init);
#else
module_init(cpufreq_gov_dbs_init);
#endif