dbx500-cpufreq.c 4.2 KB
Newer Older
1 2
/*
 * Copyright (C) STMicroelectronics 2009
L
Lee Jones 已提交
3
 * Copyright (C) ST-Ericsson SA 2010-2012
4 5 6 7 8 9
 *
 * License Terms: GNU General Public License v2
 * Author: Sundar Iyer <sundar.iyer@stericsson.com>
 * Author: Martin Persson <martin.persson@stericsson.com>
 * Author: Jonas Aaberg <jonas.aberg@stericsson.com>
 */
L
Lee Jones 已提交
10

11
#include <linux/module.h>
12 13 14
#include <linux/kernel.h>
#include <linux/cpufreq.h>
#include <linux/delay.h>
15
#include <linux/slab.h>
16
#include <linux/platform_device.h>
17
#include <linux/clk.h>
18

19
static struct cpufreq_frequency_table *freq_table;
20
static struct clk *armss_clk;
21

22
static struct freq_attr *dbx500_cpufreq_attr[] = {
23 24
	&cpufreq_freq_attr_scaling_available_freqs,
	NULL,
25 26
};

27
static int dbx500_cpufreq_verify_speed(struct cpufreq_policy *policy)
28 29 30 31
{
	return cpufreq_frequency_table_verify(policy, freq_table);
}

32
static int dbx500_cpufreq_target(struct cpufreq_policy *policy,
33 34 35 36
				unsigned int target_freq,
				unsigned int relation)
{
	struct cpufreq_freqs freqs;
37
	unsigned int idx;
38
	int ret;
39

40
	/* Lookup the next frequency */
41 42
	if (cpufreq_frequency_table_target(policy, freq_table, target_freq,
					relation, &idx))
43
		return -EINVAL;
44 45

	freqs.old = policy->cur;
46
	freqs.new = freq_table[idx].frequency;
47

48
	if (freqs.old == freqs.new)
49 50
		return 0;

51
	/* pre-change notification */
52
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
53

54
	/* update armss clk frequency */
55 56 57 58 59 60
	ret = clk_set_rate(armss_clk, freqs.new * 1000);

	if (ret) {
		pr_err("dbx500-cpufreq: Failed to set armss_clk to %d Hz: error %d\n",
		       freqs.new * 1000, ret);
		return ret;
61 62
	}

63
	/* post change notification */
64
	cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
65

66
	return 0;
67 68
}

69
static unsigned int dbx500_cpufreq_getspeed(unsigned int cpu)
70
{
71
	int i = 0;
72
	unsigned long freq = clk_get_rate(armss_clk) / 1000;
73

74 75 76 77
	/* The value is rounded to closest frequency in the defined table. */
	while (freq_table[i + 1].frequency != CPUFREQ_TABLE_END) {
		if (freq < freq_table[i].frequency +
		   (freq_table[i + 1].frequency - freq_table[i].frequency) / 2)
78 79 80 81
			return freq_table[i].frequency;
		i++;
	}

82
	return freq_table[i].frequency;
83 84
}

85
static int __cpuinit dbx500_cpufreq_init(struct cpufreq_policy *policy)
86
{
87
	int res;
88

89 90 91 92 93
	/* get policy fields based on the table */
	res = cpufreq_frequency_table_cpuinfo(policy, freq_table);
	if (!res)
		cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
	else {
94
		pr_err("dbx500-cpufreq: Failed to read policy table\n");
95 96 97 98 99
		return res;
	}

	policy->min = policy->cpuinfo.min_freq;
	policy->max = policy->cpuinfo.max_freq;
100
	policy->cur = dbx500_cpufreq_getspeed(policy->cpu);
101 102 103 104 105 106 107
	policy->governor = CPUFREQ_DEFAULT_GOVERNOR;

	/*
	 * FIXME : Need to take time measurement across the target()
	 *	   function with no/some/all drivers in the notification
	 *	   list.
	 */
108
	policy->cpuinfo.transition_latency = 20 * 1000; /* in ns */
109 110

	/* policy sharing between dual CPUs */
111
	cpumask_setall(policy->cpus);
112 113 114 115

	return 0;
}

116
static struct cpufreq_driver dbx500_cpufreq_driver = {
117
	.flags  = CPUFREQ_STICKY | CPUFREQ_CONST_LOOPS,
118 119 120 121 122 123
	.verify = dbx500_cpufreq_verify_speed,
	.target = dbx500_cpufreq_target,
	.get    = dbx500_cpufreq_getspeed,
	.init   = dbx500_cpufreq_init,
	.name   = "DBX500",
	.attr   = dbx500_cpufreq_attr,
124 125
};

126
static int dbx500_cpufreq_probe(struct platform_device *pdev)
127
{
128
	int i = 0;
129

130
	freq_table = dev_get_platdata(&pdev->dev);
131
	if (!freq_table) {
132
		pr_err("dbx500-cpufreq: Failed to fetch cpufreq table\n");
133 134 135
		return -ENODEV;
	}

136 137
	armss_clk = clk_get(&pdev->dev, "armss");
	if (IS_ERR(armss_clk)) {
138
		pr_err("dbx500-cpufreq: Failed to get armss clk\n");
139 140 141
		return PTR_ERR(armss_clk);
	}

142
	pr_info("dbx500-cpufreq: Available frequencies:\n");
143 144 145 146 147
	while (freq_table[i].frequency != CPUFREQ_TABLE_END) {
		pr_info("  %d Mhz\n", freq_table[i].frequency/1000);
		i++;
	}

148
	return cpufreq_register_driver(&dbx500_cpufreq_driver);
149 150
}

151
static struct platform_driver dbx500_cpufreq_plat_driver = {
152
	.driver = {
153
		.name = "cpufreq-ux500",
154 155
		.owner = THIS_MODULE,
	},
156
	.probe = dbx500_cpufreq_probe,
157 158
};

159
static int __init dbx500_cpufreq_register(void)
160
{
161
	return platform_driver_register(&dbx500_cpufreq_plat_driver);
162
}
163
device_initcall(dbx500_cpufreq_register);
164 165

MODULE_LICENSE("GPL v2");
166
MODULE_DESCRIPTION("cpufreq driver for DBX500");