blob: 98d392196df29ecd20a5ed32c22e489173ecb006 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
GuanXuetao64909882011-02-26 20:23:59 +08002/*
Viresh Kumar73cc9c82013-04-04 12:54:23 +00003 * clock scaling for the UniCore-II
GuanXuetao64909882011-02-26 20:23:59 +08004 *
5 * Code specific to PKUnity SoC and UniCore ISA
6 *
7 * Maintained by GUAN Xue-tao <gxt@mprc.pku.edu.cn>
8 * Copyright (C) 2001-2010 Guan Xuetao
GuanXuetao64909882011-02-26 20:23:59 +08009 */
10
Viresh Kumar652ed952014-01-09 20:38:43 +053011#include <linux/err.h>
GuanXuetao64909882011-02-26 20:23:59 +080012#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/init.h>
15#include <linux/clk.h>
16#include <linux/cpufreq.h>
17
18#include <mach/hardware.h>
19
20static struct cpufreq_driver ucv2_driver;
21
22/* make sure that only the "userspace" governor is run
23 * -- anything else wouldn't make sense on this platform, anyway.
24 */
Rafael J. Wysocki1e4f63a2020-01-26 23:40:11 +010025static int ucv2_verify_speed(struct cpufreq_policy_data *policy)
GuanXuetao64909882011-02-26 20:23:59 +080026{
27 if (policy->cpu)
28 return -EINVAL;
29
Viresh Kumarbe49e342013-10-02 14:13:19 +053030 cpufreq_verify_within_cpu_limits(policy);
GuanXuetao64909882011-02-26 20:23:59 +080031 return 0;
32}
33
GuanXuetao64909882011-02-26 20:23:59 +080034static int ucv2_target(struct cpufreq_policy *policy,
35 unsigned int target_freq,
36 unsigned int relation)
37{
GuanXuetao64909882011-02-26 20:23:59 +080038 struct cpufreq_freqs freqs;
Viresh Kumarab1b1c42013-12-02 11:04:13 +053039 int ret;
40
41 freqs.old = policy->cur;
42 freqs.new = target_freq;
GuanXuetao64909882011-02-26 20:23:59 +080043
Viresh Kumar8fec0512014-03-24 13:35:45 +053044 cpufreq_freq_transition_begin(policy, &freqs);
Chen Gangb4ddad92014-04-07 20:04:21 +080045 ret = clk_set_rate(policy->clk, target_freq * 1000);
Viresh Kumar8fec0512014-03-24 13:35:45 +053046 cpufreq_freq_transition_end(policy, &freqs, ret);
GuanXuetao64909882011-02-26 20:23:59 +080047
Viresh Kumarab1b1c42013-12-02 11:04:13 +053048 return ret;
GuanXuetao64909882011-02-26 20:23:59 +080049}
50
51static int __init ucv2_cpu_init(struct cpufreq_policy *policy)
52{
53 if (policy->cpu != 0)
54 return -EINVAL;
Viresh Kumar652ed952014-01-09 20:38:43 +053055
GuanXuetao64909882011-02-26 20:23:59 +080056 policy->min = policy->cpuinfo.min_freq = 250000;
57 policy->max = policy->cpuinfo.max_freq = 1000000;
Viresh Kumar652ed952014-01-09 20:38:43 +053058 policy->clk = clk_get(NULL, "MAIN_CLK");
Duan Jiong8ab4e2b2014-04-11 15:59:38 +080059 return PTR_ERR_OR_ZERO(policy->clk);
GuanXuetao64909882011-02-26 20:23:59 +080060}
61
62static struct cpufreq_driver ucv2_driver = {
Viresh Kumarfe829ed2017-07-19 15:42:48 +053063 .flags = CPUFREQ_STICKY | CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING,
GuanXuetao64909882011-02-26 20:23:59 +080064 .verify = ucv2_verify_speed,
65 .target = ucv2_target,
Viresh Kumar652ed952014-01-09 20:38:43 +053066 .get = cpufreq_generic_get,
GuanXuetao64909882011-02-26 20:23:59 +080067 .init = ucv2_cpu_init,
68 .name = "UniCore-II",
69};
70
71static int __init ucv2_cpufreq_init(void)
72{
73 return cpufreq_register_driver(&ucv2_driver);
74}
75
76arch_initcall(ucv2_cpufreq_init);