summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/tegra3_throttle.c
blob: d980144ed052ebb55d90bc939309f0ad0b698f24 (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
/*
 * arch/arm/mach-tegra/tegra3_throttle.c
 *
 * Copyright (c) 2011-2012, NVIDIA Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include <linux/kernel.h>
#include <linux/cpufreq.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/clk.h>
#include <linux/debugfs.h>
#include <linux/seq_file.h>
#include <linux/uaccess.h>
#include <linux/thermal.h>
#include <mach/thermal.h>

#include "clock.h"
#include "cpu-tegra.h"
#include "dvfs.h"

static struct mutex *cpu_throttle_lock;
static DEFINE_MUTEX(bthrot_list_lock);
static LIST_HEAD(bthrot_list);

static unsigned int clip_to_table(unsigned int cpu_freq)
{
	int i;
	struct cpufreq_frequency_table *cpu_freq_table;
	struct tegra_cpufreq_table_data *table_data =
		tegra_cpufreq_table_get();

	if (IS_ERR_OR_NULL(table_data))
		return -EINVAL;

	cpu_freq_table = table_data->freq_table;

	for (i = 0; cpu_freq_table[i].frequency != CPUFREQ_TABLE_END; i++) {
		if (cpu_freq_table[i].frequency > cpu_freq)
			break;
	}
	i = (i == 0) ? 0 : i-1;
	return cpu_freq_table[i].frequency;
}

unsigned int tegra_throttle_governor_speed(unsigned int requested_speed)
{
	struct balanced_throttle *bthrot;
	unsigned int throttle_speed = requested_speed;
	int index;
	unsigned int bthrot_speed;
	unsigned int lowest_speed;
	struct cpufreq_frequency_table *cpu_freq_table;
	struct tegra_cpufreq_table_data *table_data =
		tegra_cpufreq_table_get();

	if (!table_data)
		return requested_speed;


	cpu_freq_table = table_data->freq_table;
	lowest_speed = cpu_freq_table[table_data->throttle_lowest_index].frequency;

	mutex_lock(&bthrot_list_lock);

	list_for_each_entry(bthrot, &bthrot_list, node) {
		if (bthrot->is_throttling) {
			index = bthrot->throttle_index;
			bthrot_speed = bthrot->throt_tab[index].cpu_freq;

			if (bthrot_speed == 0)
				bthrot_speed = lowest_speed;
			else
				bthrot_speed = clip_to_table(bthrot_speed);

			throttle_speed = min(throttle_speed, bthrot_speed);
		}
	}
	mutex_unlock(&bthrot_list_lock);

	return throttle_speed;
}

bool tegra_is_throttling(void)
{
	struct balanced_throttle *bthrot;
	bool is_throttling = false;

	mutex_lock(&bthrot_list_lock);
	list_for_each_entry(bthrot, &bthrot_list, node) {
		if (bthrot->is_throttling) {
			is_throttling = true;
			break;
		}
	}
	mutex_unlock(&bthrot_list_lock);

	return is_throttling;
}

static int
tegra_throttle_get_max_state(struct thermal_cooling_device *cdev,
				unsigned long *max_state)
{
	struct balanced_throttle *bthrot = cdev->devdata;

	*max_state = bthrot->throt_tab_size;

	return 0;
}

static int
tegra_throttle_get_cur_state(struct thermal_cooling_device *cdev,
				unsigned long *cur_state)
{
	struct balanced_throttle *bthrot = cdev->devdata;

	mutex_lock(cpu_throttle_lock);
	*cur_state = bthrot->is_throttling ?
			(bthrot->throt_tab_size - bthrot->throttle_index) :
			0;
	mutex_unlock(cpu_throttle_lock);

	return 0;
}

static int
tegra_throttle_set_cur_state(struct thermal_cooling_device *cdev,
				unsigned long cur_state)
{
	struct balanced_throttle *bthrot = cdev->devdata;
	int core_level;
	int index;

	mutex_lock(cpu_throttle_lock);
	if (cur_state == 0) {
		/* restore speed requested by governor */
		if (bthrot->is_throttling) {
			tegra_dvfs_core_cap_enable(false);
			bthrot->is_throttling = false;
		}

		tegra_cpu_set_speed_cap(NULL);
	} else {
		if (!bthrot->is_throttling) {
			tegra_dvfs_core_cap_enable(true);
			bthrot->is_throttling = true;
		}

		bthrot->throttle_index = bthrot->throt_tab_size - cur_state;
		index = bthrot->throttle_index;
		core_level = bthrot->throt_tab[index].core_cap_level;
		tegra_dvfs_core_cap_level_set(core_level);

		tegra_cpu_set_speed_cap(NULL);
	}

	mutex_unlock(cpu_throttle_lock);

	return 0;
}

static struct thermal_cooling_device_ops tegra_throttle_cooling_ops = {
	.get_max_state = tegra_throttle_get_max_state,
	.get_cur_state = tegra_throttle_get_cur_state,
	.set_cur_state = tegra_throttle_set_cur_state,
};

#ifdef CONFIG_DEBUG_FS
static int table_show(struct seq_file *s, void *data)
{
	struct balanced_throttle *bthrot = s->private;
	int i;

	for (i = 0; i < bthrot->throt_tab_size; i++)
		seq_printf(s, "[%d] = %7u %4d\n",
			i, bthrot->throt_tab[i].cpu_freq,
			bthrot->throt_tab[i].core_cap_level);

	return 0;
}

static int table_open(struct inode *inode, struct file *file)
{
	return single_open(file, table_show, inode->i_private);
}

static ssize_t table_write(struct file *file,
	const char __user *userbuf, size_t count, loff_t *ppos)
{
	struct balanced_throttle *bthrot = file->private_data;
	char buf[80];
	int table_idx;
	unsigned int cpu_freq;
	int core_cap_level;

	if (sizeof(buf) <= count)
		return -EINVAL;

	if (copy_from_user(buf, userbuf, count))
		return -EFAULT;

	/* terminate buffer and trim - white spaces may be appended
	 *  at the end when invoked from shell command line */
	buf[count] = '\0';
	strim(buf);

	if (sscanf(buf, "[%d] = %u %d",
		   &table_idx, &cpu_freq, &core_cap_level) != 3)
		return -1;

	if ((table_idx < 0) || (table_idx >= bthrot->throt_tab_size))
		return -EINVAL;

	/* round new settings before updating table */
	bthrot->throt_tab[table_idx].cpu_freq = clip_to_table(cpu_freq);
	bthrot->throt_tab[table_idx].core_cap_level = (core_cap_level / 50) * 50;

	return count;
}

static const struct file_operations table_fops = {
	.open		= table_open,
	.read		= seq_read,
	.write		= table_write,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static struct dentry *throttle_debugfs_root;
#endif /* CONFIG_DEBUG_FS */


int balanced_throttle_register(struct balanced_throttle *bthrot)
{
#ifdef CONFIG_DEBUG_FS
	char name[32];
#endif
	struct balanced_throttle *dev;

	mutex_lock(&bthrot_list_lock);
	list_for_each_entry(dev, &bthrot_list, node) {
		if (dev->id == bthrot->id) {
			mutex_unlock(&bthrot_list_lock);
			return -EINVAL;
		}
	}


	list_add(&bthrot->node, &bthrot_list);
	mutex_unlock(&bthrot_list_lock);

	bthrot->cdev = thermal_cooling_device_register(
						"balanced",
						bthrot,
						&tegra_throttle_cooling_ops);

	if (IS_ERR(bthrot->cdev)) {
		bthrot->cdev = NULL;
		return -ENODEV;
	}

#ifdef CONFIG_DEBUG_FS
	sprintf(name, "throttle_table%d", bthrot->id);
	debugfs_create_file(name,0644, throttle_debugfs_root,
				bthrot, &table_fops);
#endif

	return 0;
}

int __init tegra_throttle_init(struct mutex *cpu_lock)
{
	cpu_throttle_lock = cpu_lock;
#ifdef CONFIG_DEBUG_FS
	throttle_debugfs_root = debugfs_create_dir("tegra_throttle", 0);
#endif
	return 0;
}

void tegra_throttle_exit(void)
{
#ifdef CONFIG_DEBUG_FS
	debugfs_remove_recursive(throttle_debugfs_root);
#endif
}