blob: 0a411b54972a38c7360c391da9cab4767b5dca1e [file] [log] [blame]
Martin Persson7c1a70e2010-12-08 15:13:42 +01001/*
Martin Persson7c1a70e2010-12-08 15:13:42 +01002 * Copyright (C) STMicroelectronics 2009
3 * Copyright (C) ST-Ericsson SA 2010
4 *
5 * License Terms: GNU General Public License v2
Martin Persson7c1a70e2010-12-08 15:13:42 +01006 * Author: Sundar Iyer <sundar.iyer@stericsson.com>
7 * Author: Martin Persson <martin.persson@stericsson.com>
8 * Author: Jonas Aaberg <jonas.aberg@stericsson.com>
9 *
10 */
Ulf Hanssonb4689442012-10-10 13:42:24 +020011#include <linux/module.h>
Martin Persson7c1a70e2010-12-08 15:13:42 +010012#include <linux/kernel.h>
13#include <linux/cpufreq.h>
14#include <linux/delay.h>
Linus Walleij72b2fd52011-05-15 19:19:51 +020015#include <linux/slab.h>
Ulf Hanssonb4689442012-10-10 13:42:24 +020016#include <linux/platform_device.h>
Ulf Hansson78e30d12012-10-10 13:42:29 +020017#include <linux/clk.h>
Linus Walleij72b2fd52011-05-15 19:19:51 +020018#include <mach/id.h>
Martin Persson7c1a70e2010-12-08 15:13:42 +010019
Ulf Hanssonfdb44462012-10-10 13:42:25 +020020static struct cpufreq_frequency_table *freq_table;
Ulf Hansson78e30d12012-10-10 13:42:29 +020021static struct clk *armss_clk;
Martin Persson7c1a70e2010-12-08 15:13:42 +010022
Lee Jonesedb10c12012-12-10 16:25:38 +010023static struct freq_attr *dbx500_cpufreq_attr[] = {
Linus Walleij72b2fd52011-05-15 19:19:51 +020024 &cpufreq_freq_attr_scaling_available_freqs,
25 NULL,
26};
27
Lee Jonesedb10c12012-12-10 16:25:38 +010028static int dbx500_cpufreq_verify_speed(struct cpufreq_policy *policy)
Martin Persson7c1a70e2010-12-08 15:13:42 +010029{
30 return cpufreq_frequency_table_verify(policy, freq_table);
31}
32
Lee Jonesedb10c12012-12-10 16:25:38 +010033static int dbx500_cpufreq_target(struct cpufreq_policy *policy,
Martin Persson7c1a70e2010-12-08 15:13:42 +010034 unsigned int target_freq,
35 unsigned int relation)
36{
37 struct cpufreq_freqs freqs;
Linus Walleij72b2fd52011-05-15 19:19:51 +020038 unsigned int idx;
Martin Persson7c1a70e2010-12-08 15:13:42 +010039
Linus Walleij72b2fd52011-05-15 19:19:51 +020040 /* scale the target frequency to one of the extremes supported */
Martin Persson7c1a70e2010-12-08 15:13:42 +010041 if (target_freq < policy->cpuinfo.min_freq)
42 target_freq = policy->cpuinfo.min_freq;
43 if (target_freq > policy->cpuinfo.max_freq)
44 target_freq = policy->cpuinfo.max_freq;
45
Linus Walleij72b2fd52011-05-15 19:19:51 +020046 /* Lookup the next frequency */
47 if (cpufreq_frequency_table_target
48 (policy, freq_table, target_freq, relation, &idx)) {
49 return -EINVAL;
Martin Persson7c1a70e2010-12-08 15:13:42 +010050 }
51
52 freqs.old = policy->cur;
Linus Walleij72b2fd52011-05-15 19:19:51 +020053 freqs.new = freq_table[idx].frequency;
Martin Persson7c1a70e2010-12-08 15:13:42 +010054
Linus Walleij72b2fd52011-05-15 19:19:51 +020055 if (freqs.old == freqs.new)
Martin Persson7c1a70e2010-12-08 15:13:42 +010056 return 0;
Martin Persson7c1a70e2010-12-08 15:13:42 +010057
Linus Walleij72b2fd52011-05-15 19:19:51 +020058 /* pre-change notification */
Vincent Guittot8efd0722011-08-25 08:31:20 +020059 for_each_cpu(freqs.cpu, policy->cpus)
60 cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE);
Martin Persson7c1a70e2010-12-08 15:13:42 +010061
Ulf Hansson78e30d12012-10-10 13:42:29 +020062 /* update armss clk frequency */
63 if (clk_set_rate(armss_clk, freq_table[idx].frequency * 1000)) {
Lee Jonesedb10c12012-12-10 16:25:38 +010064 pr_err("dbx500-cpufreq: Failed to update armss clk\n");
Linus Walleij72b2fd52011-05-15 19:19:51 +020065 return -EINVAL;
Martin Persson7c1a70e2010-12-08 15:13:42 +010066 }
67
Linus Walleij72b2fd52011-05-15 19:19:51 +020068 /* post change notification */
Vincent Guittot8efd0722011-08-25 08:31:20 +020069 for_each_cpu(freqs.cpu, policy->cpus)
70 cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE);
Martin Persson7c1a70e2010-12-08 15:13:42 +010071
Linus Walleij72b2fd52011-05-15 19:19:51 +020072 return 0;
Martin Persson7c1a70e2010-12-08 15:13:42 +010073}
74
Lee Jonesedb10c12012-12-10 16:25:38 +010075static unsigned int dbx500_cpufreq_getspeed(unsigned int cpu)
Martin Persson7c1a70e2010-12-08 15:13:42 +010076{
Ulf Hanssonfdb44462012-10-10 13:42:25 +020077 int i = 0;
Ulf Hansson78e30d12012-10-10 13:42:29 +020078 unsigned long freq = clk_get_rate(armss_clk) / 1000;
Ulf Hanssonfdb44462012-10-10 13:42:25 +020079
80 while (freq_table[i].frequency != CPUFREQ_TABLE_END) {
Ulf Hansson78e30d12012-10-10 13:42:29 +020081 if (freq <= freq_table[i].frequency)
Ulf Hanssonfdb44462012-10-10 13:42:25 +020082 return freq_table[i].frequency;
83 i++;
84 }
85
Ulf Hansson78e30d12012-10-10 13:42:29 +020086 /* We could not find a corresponding frequency. */
Lee Jonesedb10c12012-12-10 16:25:38 +010087 pr_err("dbx500-cpufreq: Failed to find cpufreq speed\n");
Ulf Hanssonfdb44462012-10-10 13:42:25 +020088 return 0;
Martin Persson7c1a70e2010-12-08 15:13:42 +010089}
90
Lee Jonesedb10c12012-12-10 16:25:38 +010091static int __cpuinit dbx500_cpufreq_init(struct cpufreq_policy *policy)
Martin Persson7c1a70e2010-12-08 15:13:42 +010092{
Ulf Hanssonfdb44462012-10-10 13:42:25 +020093 int i = 0;
94 int res;
Daniel Willerudc72fe852012-01-13 16:20:03 +010095
Ulf Hansson78e30d12012-10-10 13:42:29 +020096 armss_clk = clk_get(NULL, "armss");
97 if (IS_ERR(armss_clk)) {
Lee Jonesedb10c12012-12-10 16:25:38 +010098 pr_err("dbx500-cpufreq : Failed to get armss clk\n");
Ulf Hansson78e30d12012-10-10 13:42:29 +020099 return PTR_ERR(armss_clk);
100 }
101
Lee Jonesedb10c12012-12-10 16:25:38 +0100102 pr_info("dbx500-cpufreq : Available frequencies:\n");
Ulf Hanssonfdb44462012-10-10 13:42:25 +0200103 while (freq_table[i].frequency != CPUFREQ_TABLE_END) {
Axel Lineb0b38a2011-11-04 20:04:41 +0800104 pr_info(" %d Mhz\n", freq_table[i].frequency/1000);
Ulf Hanssonfdb44462012-10-10 13:42:25 +0200105 i++;
106 }
Martin Persson7c1a70e2010-12-08 15:13:42 +0100107
108 /* get policy fields based on the table */
109 res = cpufreq_frequency_table_cpuinfo(policy, freq_table);
110 if (!res)
111 cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
112 else {
Lee Jonesedb10c12012-12-10 16:25:38 +0100113 pr_err("dbx500-cpufreq : Failed to read policy table\n");
Ulf Hansson78e30d12012-10-10 13:42:29 +0200114 clk_put(armss_clk);
Martin Persson7c1a70e2010-12-08 15:13:42 +0100115 return res;
116 }
117
118 policy->min = policy->cpuinfo.min_freq;
119 policy->max = policy->cpuinfo.max_freq;
Lee Jonesedb10c12012-12-10 16:25:38 +0100120 policy->cur = dbx500_cpufreq_getspeed(policy->cpu);
Martin Persson7c1a70e2010-12-08 15:13:42 +0100121 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
122
123 /*
124 * FIXME : Need to take time measurement across the target()
125 * function with no/some/all drivers in the notification
126 * list.
127 */
Linus Walleij72b2fd52011-05-15 19:19:51 +0200128 policy->cpuinfo.transition_latency = 20 * 1000; /* in ns */
Martin Persson7c1a70e2010-12-08 15:13:42 +0100129
130 /* policy sharing between dual CPUs */
Rusty Russell88d8cd52012-03-29 15:38:30 +1030131 cpumask_copy(policy->cpus, cpu_present_mask);
Martin Persson7c1a70e2010-12-08 15:13:42 +0100132
133 policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;
134
Martin Persson7c1a70e2010-12-08 15:13:42 +0100135 return 0;
136}
137
Lee Jonesedb10c12012-12-10 16:25:38 +0100138static struct cpufreq_driver dbx500_cpufreq_driver = {
Linus Walleij72b2fd52011-05-15 19:19:51 +0200139 .flags = CPUFREQ_STICKY,
Lee Jonesedb10c12012-12-10 16:25:38 +0100140 .verify = dbx500_cpufreq_verify_speed,
141 .target = dbx500_cpufreq_target,
142 .get = dbx500_cpufreq_getspeed,
143 .init = dbx500_cpufreq_init,
144 .name = "DBX500",
145 .attr = dbx500_cpufreq_attr,
Martin Persson7c1a70e2010-12-08 15:13:42 +0100146};
147
Lee Jonesedb10c12012-12-10 16:25:38 +0100148static int dbx500_cpufreq_probe(struct platform_device *pdev)
Ulf Hanssonb4689442012-10-10 13:42:24 +0200149{
Ulf Hanssonfdb44462012-10-10 13:42:25 +0200150 freq_table = dev_get_platdata(&pdev->dev);
151
152 if (!freq_table) {
Lee Jonesedb10c12012-12-10 16:25:38 +0100153 pr_err("dbx500-cpufreq: Failed to fetch cpufreq table\n");
Ulf Hanssonfdb44462012-10-10 13:42:25 +0200154 return -ENODEV;
155 }
156
Lee Jonesedb10c12012-12-10 16:25:38 +0100157 return cpufreq_register_driver(&dbx500_cpufreq_driver);
Ulf Hanssonb4689442012-10-10 13:42:24 +0200158}
159
Lee Jonesedb10c12012-12-10 16:25:38 +0100160static struct platform_driver dbx500_cpufreq_plat_driver = {
Ulf Hanssonb4689442012-10-10 13:42:24 +0200161 .driver = {
Lee Jonesedb10c12012-12-10 16:25:38 +0100162 .name = "cpufreq-ux500",
Ulf Hanssonb4689442012-10-10 13:42:24 +0200163 .owner = THIS_MODULE,
164 },
Lee Jonesedb10c12012-12-10 16:25:38 +0100165 .probe = dbx500_cpufreq_probe,
Ulf Hanssonb4689442012-10-10 13:42:24 +0200166};
167
Lee Jonesedb10c12012-12-10 16:25:38 +0100168static int __init dbx500_cpufreq_register(void)
Martin Persson7c1a70e2010-12-08 15:13:42 +0100169{
Linus Walleijbc71c092012-01-23 11:54:44 +0100170 if (!cpu_is_u8500_family())
Linus Walleij72b2fd52011-05-15 19:19:51 +0200171 return -ENODEV;
172
Lee Jonesedb10c12012-12-10 16:25:38 +0100173 pr_info("cpufreq for DBX500 started\n");
174 return platform_driver_register(&dbx500_cpufreq_plat_driver);
Martin Persson7c1a70e2010-12-08 15:13:42 +0100175}
Lee Jonesedb10c12012-12-10 16:25:38 +0100176device_initcall(dbx500_cpufreq_register);
Ulf Hanssonb4689442012-10-10 13:42:24 +0200177
178MODULE_LICENSE("GPL v2");
Lee Jonesedb10c12012-12-10 16:25:38 +0100179MODULE_DESCRIPTION("cpufreq driver for DBX500");