Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 2 | /* |
Viresh Kumar | 73cc9c8 | 2013-04-04 12:54:23 +0000 | [diff] [blame] | 3 | * clock scaling for the UniCore-II |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 4 | * |
| 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 |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 9 | */ |
| 10 | |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 11 | #include <linux/err.h> |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 12 | #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 | |
| 20 | static 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. Wysocki | 1e4f63a | 2020-01-26 23:40:11 +0100 | [diff] [blame] | 25 | static int ucv2_verify_speed(struct cpufreq_policy_data *policy) |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 26 | { |
| 27 | if (policy->cpu) |
| 28 | return -EINVAL; |
| 29 | |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 30 | cpufreq_verify_within_cpu_limits(policy); |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 31 | return 0; |
| 32 | } |
| 33 | |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 34 | static int ucv2_target(struct cpufreq_policy *policy, |
| 35 | unsigned int target_freq, |
| 36 | unsigned int relation) |
| 37 | { |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 38 | struct cpufreq_freqs freqs; |
Viresh Kumar | ab1b1c4 | 2013-12-02 11:04:13 +0530 | [diff] [blame] | 39 | int ret; |
| 40 | |
| 41 | freqs.old = policy->cur; |
| 42 | freqs.new = target_freq; |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 43 | |
Viresh Kumar | 8fec051 | 2014-03-24 13:35:45 +0530 | [diff] [blame] | 44 | cpufreq_freq_transition_begin(policy, &freqs); |
Chen Gang | b4ddad9 | 2014-04-07 20:04:21 +0800 | [diff] [blame] | 45 | ret = clk_set_rate(policy->clk, target_freq * 1000); |
Viresh Kumar | 8fec051 | 2014-03-24 13:35:45 +0530 | [diff] [blame] | 46 | cpufreq_freq_transition_end(policy, &freqs, ret); |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 47 | |
Viresh Kumar | ab1b1c4 | 2013-12-02 11:04:13 +0530 | [diff] [blame] | 48 | return ret; |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static int __init ucv2_cpu_init(struct cpufreq_policy *policy) |
| 52 | { |
| 53 | if (policy->cpu != 0) |
| 54 | return -EINVAL; |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 55 | |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 56 | policy->min = policy->cpuinfo.min_freq = 250000; |
| 57 | policy->max = policy->cpuinfo.max_freq = 1000000; |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 58 | policy->clk = clk_get(NULL, "MAIN_CLK"); |
Duan Jiong | 8ab4e2b | 2014-04-11 15:59:38 +0800 | [diff] [blame] | 59 | return PTR_ERR_OR_ZERO(policy->clk); |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static struct cpufreq_driver ucv2_driver = { |
Viresh Kumar | fe829ed | 2017-07-19 15:42:48 +0530 | [diff] [blame] | 63 | .flags = CPUFREQ_STICKY | CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING, |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 64 | .verify = ucv2_verify_speed, |
| 65 | .target = ucv2_target, |
Viresh Kumar | 652ed95 | 2014-01-09 20:38:43 +0530 | [diff] [blame] | 66 | .get = cpufreq_generic_get, |
GuanXuetao | 6490988 | 2011-02-26 20:23:59 +0800 | [diff] [blame] | 67 | .init = ucv2_cpu_init, |
| 68 | .name = "UniCore-II", |
| 69 | }; |
| 70 | |
| 71 | static int __init ucv2_cpufreq_init(void) |
| 72 | { |
| 73 | return cpufreq_register_driver(&ucv2_driver); |
| 74 | } |
| 75 | |
| 76 | arch_initcall(ucv2_cpufreq_init); |