db8500-cpufreq.c 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) STMicroelectronics 2009
 * Copyright (C) ST-Ericsson SA 2010
 *
 * 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>
 *
 */
#include <linux/kernel.h>
#include <linux/cpufreq.h>
#include <linux/delay.h>
14
#include <linux/slab.h>
15
#include <linux/mfd/dbx500-prcmu.h>
16
#include <mach/id.h>
17 18 19 20

static struct cpufreq_frequency_table freq_table[] = {
	[0] = {
		.index = 0,
21
		.frequency = 200000,
22 23 24
	},
	[1] = {
		.index = 1,
25
		.frequency = 300000,
26 27 28
	},
	[2] = {
		.index = 2,
29
		.frequency = 600000,
30 31
	},
	[3] = {
32
		/* Used for MAX_OPP, if available */
33 34 35
		.index = 3,
		.frequency = CPUFREQ_TABLE_END,
	},
36 37 38 39
	[4] = {
		.index = 4,
		.frequency = CPUFREQ_TABLE_END,
	},
40 41
};

42
static enum arm_opp idx2opp[] = {
43
	ARM_EXTCLK,
44 45 46 47 48 49 50 51
	ARM_50_OPP,
	ARM_100_OPP,
	ARM_MAX_OPP
};

static struct freq_attr *db8500_cpufreq_attr[] = {
	&cpufreq_freq_attr_scaling_available_freqs,
	NULL,
52 53
};

54
static int db8500_cpufreq_verify_speed(struct cpufreq_policy *policy)
55 56 57 58
{
	return cpufreq_frequency_table_verify(policy, freq_table);
}

59
static int db8500_cpufreq_target(struct cpufreq_policy *policy,
60 61 62 63
				unsigned int target_freq,
				unsigned int relation)
{
	struct cpufreq_freqs freqs;
64
	unsigned int idx;
65

66
	/* scale the target frequency to one of the extremes supported */
67 68 69 70 71
	if (target_freq < policy->cpuinfo.min_freq)
		target_freq = policy->cpuinfo.min_freq;
	if (target_freq > policy->cpuinfo.max_freq)
		target_freq = policy->cpuinfo.max_freq;

72 73 74 75
	/* Lookup the next frequency */
	if (cpufreq_frequency_table_target
	    (policy, freq_table, target_freq, relation, &idx)) {
		return -EINVAL;
76 77 78
	}

	freqs.old = policy->cur;
79
	freqs.new = freq_table[idx].frequency;
80

81
	if (freqs.old == freqs.new)
82 83
		return 0;

84
	/* pre-change notification */
85 86
	for_each_cpu(freqs.cpu, policy->cpus)
		cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
87

88 89 90 91
	/* request the PRCM unit for opp change */
	if (prcmu_set_arm_opp(idx2opp[idx])) {
		pr_err("db8500-cpufreq:  Failed to set OPP level\n");
		return -EINVAL;
92 93
	}

94
	/* post change notification */
95 96
	for_each_cpu(freqs.cpu, policy->cpus)
		cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
97

98
	return 0;
99 100
}

101
static unsigned int db8500_cpufreq_getspeed(unsigned int cpu)
102 103
{
	int i;
104 105
	/* request the prcm to get the current ARM opp */
	for (i = 0; prcmu_get_arm_opp() != idx2opp[i]; i++)
106 107 108 109
		;
	return freq_table[i].frequency;
}

110
static int __cpuinit db8500_cpufreq_init(struct cpufreq_policy *policy)
111
{
112
	int i, res;
113

114
	BUILD_BUG_ON(ARRAY_SIZE(idx2opp) + 1 != ARRAY_SIZE(freq_table));
115

116 117 118
	if (!prcmu_is_u8400()) {
		freq_table[1].frequency = 400000;
		freq_table[2].frequency = 800000;
119
		if (prcmu_has_arm_maxopp())
120
			freq_table[3].frequency = 1000000;
121
	}
122
	pr_info("db8500-cpufreq : Available frequencies:\n");
123 124
	for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++)
		pr_info("  %d Mhz\n", freq_table[i].frequency/1000);
125 126 127 128 129 130

	/* 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 {
131
		pr_err("db8500-cpufreq : Failed to read policy table\n");
132 133 134 135 136
		return res;
	}

	policy->min = policy->cpuinfo.min_freq;
	policy->max = policy->cpuinfo.max_freq;
137
	policy->cur = db8500_cpufreq_getspeed(policy->cpu);
138 139 140 141 142 143 144
	policy->governor = CPUFREQ_DEFAULT_GOVERNOR;

	/*
	 * FIXME : Need to take time measurement across the target()
	 *	   function with no/some/all drivers in the notification
	 *	   list.
	 */
145
	policy->cpuinfo.transition_latency = 20 * 1000; /* in ns */
146 147 148 149 150 151 152 153 154

	/* policy sharing between dual CPUs */
	cpumask_copy(policy->cpus, &cpu_present_map);

	policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;

	return 0;
}

155 156 157 158 159 160 161 162
static struct cpufreq_driver db8500_cpufreq_driver = {
	.flags  = CPUFREQ_STICKY,
	.verify = db8500_cpufreq_verify_speed,
	.target = db8500_cpufreq_target,
	.get    = db8500_cpufreq_getspeed,
	.init   = db8500_cpufreq_init,
	.name   = "DB8500",
	.attr   = db8500_cpufreq_attr,
163 164
};

165
static int __init db8500_cpufreq_register(void)
166
{
167 168
	if (!cpu_is_u8500v20_or_later())
		return -ENODEV;
169

170 171
	pr_info("cpufreq for DB8500 started\n");
	return cpufreq_register_driver(&db8500_cpufreq_driver);
172
}
173
device_initcall(db8500_cpufreq_register);