s3c64xx-cpufreq.c 6.4 KB
Newer Older
1
/*
2 3 4 5 6 7 8 9 10
 * Copyright 2009 Wolfson Microelectronics plc
 *
 * S3C64xx CPUfreq Support
 *
 * 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.
 */

11 12
#define pr_fmt(fmt) "cpufreq: " fmt

13 14 15 16 17 18 19
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/init.h>
#include <linux/cpufreq.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/regulator/consumer.h>
20
#include <linux/module.h>
21 22 23

static struct clk *armclk;
static struct regulator *vddarm;
24
static unsigned long regulator_latency;
25 26 27 28 29 30 31 32

#ifdef CONFIG_CPU_S3C6410
struct s3c64xx_dvfs {
	unsigned int vddarm_min;
	unsigned int vddarm_max;
};

static struct s3c64xx_dvfs s3c64xx_dvfs_table[] = {
33 34 35 36
	[0] = { 1000000, 1150000 },
	[1] = { 1050000, 1150000 },
	[2] = { 1100000, 1150000 },
	[3] = { 1200000, 1350000 },
37
	[4] = { 1300000, 1350000 },
38 39 40 41
};

static struct cpufreq_frequency_table s3c64xx_freq_table[] = {
	{ 0,  66000 },
42
	{ 0, 100000 },
43
	{ 0, 133000 },
44
	{ 1, 200000 },
45 46 47 48
	{ 1, 222000 },
	{ 1, 266000 },
	{ 2, 333000 },
	{ 2, 400000 },
49 50 51
	{ 2, 532000 },
	{ 2, 533000 },
	{ 3, 667000 },
52
	{ 4, 800000 },
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
	{ 0, CPUFREQ_TABLE_END },
};
#endif

static int s3c64xx_cpufreq_verify_speed(struct cpufreq_policy *policy)
{
	if (policy->cpu != 0)
		return -EINVAL;

	return cpufreq_frequency_table_verify(policy, s3c64xx_freq_table);
}

static unsigned int s3c64xx_cpufreq_get_speed(unsigned int cpu)
{
	if (cpu != 0)
		return 0;

	return clk_get_rate(armclk) / 1000;
}

static int s3c64xx_cpufreq_set_target(struct cpufreq_policy *policy,
				      unsigned int target_freq,
				      unsigned int relation)
{
	int ret;
	unsigned int i;
	struct cpufreq_freqs freqs;
	struct s3c64xx_dvfs *dvfs;

	ret = cpufreq_frequency_table_target(policy, s3c64xx_freq_table,
					     target_freq, relation, &i);
	if (ret != 0)
		return ret;

	freqs.old = clk_get_rate(armclk) / 1000;
	freqs.new = s3c64xx_freq_table[i].frequency;
	freqs.flags = 0;
90
	dvfs = &s3c64xx_dvfs_table[s3c64xx_freq_table[i].driver_data];
91 92 93 94

	if (freqs.old == freqs.new)
		return 0;

95
	pr_debug("Transition %d-%dkHz\n", freqs.old, freqs.new);
96

97
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
98 99 100 101 102 103 104

#ifdef CONFIG_REGULATOR
	if (vddarm && freqs.new > freqs.old) {
		ret = regulator_set_voltage(vddarm,
					    dvfs->vddarm_min,
					    dvfs->vddarm_max);
		if (ret != 0) {
105
			pr_err("Failed to set VDDARM for %dkHz: %d\n",
106
			       freqs.new, ret);
107 108
			freqs.new = freqs.old;
			goto post_notify;
109 110 111 112 113 114
		}
	}
#endif

	ret = clk_set_rate(armclk, freqs.new * 1000);
	if (ret < 0) {
115
		pr_err("Failed to set rate %dkHz: %d\n",
116
		       freqs.new, ret);
117
		freqs.new = freqs.old;
118 119
	}

120
post_notify:
121
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
122 123
	if (ret)
		goto err;
124

125 126 127 128 129 130
#ifdef CONFIG_REGULATOR
	if (vddarm && freqs.new < freqs.old) {
		ret = regulator_set_voltage(vddarm,
					    dvfs->vddarm_min,
					    dvfs->vddarm_max);
		if (ret != 0) {
131
			pr_err("Failed to set VDDARM for %dkHz: %d\n",
132 133 134 135 136 137
			       freqs.new, ret);
			goto err_clk;
		}
	}
#endif

138
	pr_debug("Set actual frequency %lukHz\n",
139 140 141 142 143 144 145 146
		 clk_get_rate(armclk) / 1000);

	return 0;

err_clk:
	if (clk_set_rate(armclk, freqs.old * 1000) < 0)
		pr_err("Failed to restore original clock rate\n");
err:
147
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
148 149 150 151 152

	return ret;
}

#ifdef CONFIG_REGULATOR
153
static void __init s3c64xx_cpufreq_config_regulator(void)
154 155 156 157 158 159 160
{
	int count, v, i, found;
	struct cpufreq_frequency_table *freq;
	struct s3c64xx_dvfs *dvfs;

	count = regulator_count_voltages(vddarm);
	if (count < 0) {
161
		pr_err("Unable to check supported voltages\n");
162 163 164
	}

	freq = s3c64xx_freq_table;
165
	while (count > 0 && freq->frequency != CPUFREQ_TABLE_END) {
166 167 168 169 170 171 172 173 174 175 176 177 178
		if (freq->frequency == CPUFREQ_ENTRY_INVALID)
			continue;

		dvfs = &s3c64xx_dvfs_table[freq->index];
		found = 0;

		for (i = 0; i < count; i++) {
			v = regulator_list_voltage(vddarm, i);
			if (v >= dvfs->vddarm_min && v <= dvfs->vddarm_max)
				found = 1;
		}

		if (!found) {
179
			pr_debug("%dkHz unsupported by regulator\n",
180 181 182 183 184 185
				 freq->frequency);
			freq->frequency = CPUFREQ_ENTRY_INVALID;
		}

		freq++;
	}
186 187 188 189

	/* Guess based on having to do an I2C/SPI write; in future we
	 * will be able to query the regulator performance here. */
	regulator_latency = 1 * 1000 * 1000;
190 191 192
}
#endif

193
static int s3c64xx_cpufreq_driver_init(struct cpufreq_policy *policy)
194 195 196 197 198 199 200 201
{
	int ret;
	struct cpufreq_frequency_table *freq;

	if (policy->cpu != 0)
		return -EINVAL;

	if (s3c64xx_freq_table == NULL) {
202
		pr_err("No frequency information for this CPU\n");
203 204 205 206 207
		return -ENODEV;
	}

	armclk = clk_get(NULL, "armclk");
	if (IS_ERR(armclk)) {
208
		pr_err("Unable to obtain ARMCLK: %ld\n",
209 210 211 212 213 214 215 216
		       PTR_ERR(armclk));
		return PTR_ERR(armclk);
	}

#ifdef CONFIG_REGULATOR
	vddarm = regulator_get(NULL, "vddarm");
	if (IS_ERR(vddarm)) {
		ret = PTR_ERR(vddarm);
217 218
		pr_err("Failed to obtain VDDARM: %d\n", ret);
		pr_err("Only frequency scaling available\n");
219 220
		vddarm = NULL;
	} else {
221
		s3c64xx_cpufreq_config_regulator();
222 223 224 225 226 227 228 229 230 231
	}
#endif

	freq = s3c64xx_freq_table;
	while (freq->frequency != CPUFREQ_TABLE_END) {
		unsigned long r;

		/* Check for frequencies we can generate */
		r = clk_round_rate(armclk, freq->frequency * 1000);
		r /= 1000;
232
		if (r != freq->frequency) {
233
			pr_debug("%dkHz unsupported by clock\n",
234
				 freq->frequency);
235
			freq->frequency = CPUFREQ_ENTRY_INVALID;
236
		}
237 238 239 240 241 242 243 244 245 246 247

		/* If we have no regulator then assume startup
		 * frequency is the maximum we can support. */
		if (!vddarm && freq->frequency > s3c64xx_cpufreq_get_speed(0))
			freq->frequency = CPUFREQ_ENTRY_INVALID;

		freq++;
	}

	policy->cur = clk_get_rate(armclk) / 1000;

248 249 250 251 252
	/* Datasheet says PLL stabalisation time (if we were to use
	 * the PLLs, which we don't currently) is ~300us worst case,
	 * but add some fudge.
	 */
	policy->cpuinfo.transition_latency = (500 * 1000) + regulator_latency;
253 254 255

	ret = cpufreq_frequency_table_cpuinfo(policy, s3c64xx_freq_table);
	if (ret != 0) {
256
		pr_err("Failed to configure frequency table: %d\n",
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
		       ret);
		regulator_put(vddarm);
		clk_put(armclk);
	}

	return ret;
}

static struct cpufreq_driver s3c64xx_cpufreq_driver = {
	.flags          = 0,
	.verify		= s3c64xx_cpufreq_verify_speed,
	.target		= s3c64xx_cpufreq_set_target,
	.get		= s3c64xx_cpufreq_get_speed,
	.init		= s3c64xx_cpufreq_driver_init,
	.name		= "s3c",
};

static int __init s3c64xx_cpufreq_init(void)
{
	return cpufreq_register_driver(&s3c64xx_cpufreq_driver);
}
module_init(s3c64xx_cpufreq_init);