Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 2001-2002 Deep Blue Solutions Ltd. |
| 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * CPU support functions |
| 9 | */ |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/cpufreq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/sched.h> |
| 15 | #include <linux/smp.h> |
| 16 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 17 | #include <linux/io.h> |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/of.h> |
| 20 | #include <linux/of_address.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/mach-types.h> |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 23 | #include <asm/hardware/icst.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 25 | static void __iomem *cm_base; |
| 26 | /* The cpufreq driver only use the OSC register */ |
| 27 | #define INTEGRATOR_HDR_OSC_OFFSET 0x08 |
| 28 | #define INTEGRATOR_HDR_LOCK_OFFSET 0x14 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 30 | static struct cpufreq_driver integrator_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 32 | static const struct icst_params lclk_params = { |
Russell King | 64fceb1 | 2010-01-16 17:28:44 +0000 | [diff] [blame] | 33 | .ref = 24000000, |
Russell King | 4de2edb | 2010-01-16 18:08:47 +0000 | [diff] [blame] | 34 | .vco_max = ICST525_VCO_MAX_5V, |
Russell King | e73a46a | 2010-01-16 19:49:39 +0000 | [diff] [blame] | 35 | .vco_min = ICST525_VCO_MIN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | .vd_min = 8, |
| 37 | .vd_max = 132, |
| 38 | .rd_min = 24, |
| 39 | .rd_max = 24, |
Russell King | 232eaf7 | 2010-01-16 19:46:19 +0000 | [diff] [blame] | 40 | .s2div = icst525_s2div, |
| 41 | .idx2s = icst525_idx2s, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 44 | static const struct icst_params cclk_params = { |
Russell King | 64fceb1 | 2010-01-16 17:28:44 +0000 | [diff] [blame] | 45 | .ref = 24000000, |
Russell King | 4de2edb | 2010-01-16 18:08:47 +0000 | [diff] [blame] | 46 | .vco_max = ICST525_VCO_MAX_5V, |
Russell King | e73a46a | 2010-01-16 19:49:39 +0000 | [diff] [blame] | 47 | .vco_min = ICST525_VCO_MIN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | .vd_min = 12, |
| 49 | .vd_max = 160, |
| 50 | .rd_min = 24, |
| 51 | .rd_max = 24, |
Russell King | 232eaf7 | 2010-01-16 19:46:19 +0000 | [diff] [blame] | 52 | .s2div = icst525_s2div, |
| 53 | .idx2s = icst525_idx2s, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | /* |
| 57 | * Validate the speed policy. |
| 58 | */ |
| 59 | static int integrator_verify_policy(struct cpufreq_policy *policy) |
| 60 | { |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 61 | struct icst_vco vco; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 63 | cpufreq_verify_within_cpu_limits(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 65 | vco = icst_hz_to_vco(&cclk_params, policy->max * 1000); |
| 66 | policy->max = icst_hz(&cclk_params, vco) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 68 | vco = icst_hz_to_vco(&cclk_params, policy->min * 1000); |
| 69 | policy->min = icst_hz(&cclk_params, vco) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 71 | cpufreq_verify_within_cpu_limits(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | |
| 76 | static int integrator_set_target(struct cpufreq_policy *policy, |
| 77 | unsigned int target_freq, |
| 78 | unsigned int relation) |
| 79 | { |
| 80 | cpumask_t cpus_allowed; |
| 81 | int cpu = policy->cpu; |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 82 | struct icst_vco vco; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | struct cpufreq_freqs freqs; |
| 84 | u_int cm_osc; |
| 85 | |
| 86 | /* |
| 87 | * Save this threads cpus_allowed mask. |
| 88 | */ |
| 89 | cpus_allowed = current->cpus_allowed; |
| 90 | |
| 91 | /* |
| 92 | * Bind to the specified CPU. When this call returns, |
| 93 | * we should be running on the right CPU. |
| 94 | */ |
| 95 | set_cpus_allowed(current, cpumask_of_cpu(cpu)); |
| 96 | BUG_ON(cpu != smp_processor_id()); |
| 97 | |
| 98 | /* get current setting */ |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 99 | cm_osc = __raw_readl(cm_base + INTEGRATOR_HDR_OSC_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | if (machine_is_integrator()) { |
| 102 | vco.s = (cm_osc >> 8) & 7; |
| 103 | } else if (machine_is_cintegrator()) { |
| 104 | vco.s = 1; |
| 105 | } |
| 106 | vco.v = cm_osc & 255; |
| 107 | vco.r = 22; |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 108 | freqs.old = icst_hz(&cclk_params, vco) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 110 | /* icst_hz_to_vco rounds down -- so we need the next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * larger freq in case of CPUFREQ_RELATION_L. |
| 112 | */ |
| 113 | if (relation == CPUFREQ_RELATION_L) |
| 114 | target_freq += 999; |
| 115 | if (target_freq > policy->max) |
| 116 | target_freq = policy->max; |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 117 | vco = icst_hz_to_vco(&cclk_params, target_freq * 1000); |
| 118 | freqs.new = icst_hz(&cclk_params, vco) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if (freqs.old == freqs.new) { |
| 121 | set_cpus_allowed(current, cpus_allowed); |
| 122 | return 0; |
| 123 | } |
| 124 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 125 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 127 | cm_osc = __raw_readl(cm_base + INTEGRATOR_HDR_OSC_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | if (machine_is_integrator()) { |
| 130 | cm_osc &= 0xfffff800; |
| 131 | cm_osc |= vco.s << 8; |
| 132 | } else if (machine_is_cintegrator()) { |
| 133 | cm_osc &= 0xffffff00; |
| 134 | } |
| 135 | cm_osc |= vco.v; |
| 136 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 137 | __raw_writel(0xa05f, cm_base + INTEGRATOR_HDR_LOCK_OFFSET); |
| 138 | __raw_writel(cm_osc, cm_base + INTEGRATOR_HDR_OSC_OFFSET); |
| 139 | __raw_writel(0, cm_base + INTEGRATOR_HDR_LOCK_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
| 141 | /* |
| 142 | * Restore the CPUs allowed mask. |
| 143 | */ |
| 144 | set_cpus_allowed(current, cpus_allowed); |
| 145 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 146 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static unsigned int integrator_get(unsigned int cpu) |
| 152 | { |
| 153 | cpumask_t cpus_allowed; |
| 154 | unsigned int current_freq; |
| 155 | u_int cm_osc; |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 156 | struct icst_vco vco; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | cpus_allowed = current->cpus_allowed; |
| 159 | |
| 160 | set_cpus_allowed(current, cpumask_of_cpu(cpu)); |
| 161 | BUG_ON(cpu != smp_processor_id()); |
| 162 | |
| 163 | /* detect memory etc. */ |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 164 | cm_osc = __raw_readl(cm_base + INTEGRATOR_HDR_OSC_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | if (machine_is_integrator()) { |
| 167 | vco.s = (cm_osc >> 8) & 7; |
Russell King | 1aa023b | 2011-01-11 13:48:17 +0000 | [diff] [blame] | 168 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | vco.s = 1; |
| 170 | } |
| 171 | vco.v = cm_osc & 255; |
| 172 | vco.r = 22; |
| 173 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 174 | current_freq = icst_hz(&cclk_params, vco) / 1000; /* current freq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | set_cpus_allowed(current, cpus_allowed); |
| 177 | |
| 178 | return current_freq; |
| 179 | } |
| 180 | |
| 181 | static int integrator_cpufreq_init(struct cpufreq_policy *policy) |
| 182 | { |
| 183 | |
| 184 | /* set default policy and cpuinfo */ |
Viresh Kumar | ab53701 | 2013-10-03 20:28:46 +0530 | [diff] [blame] | 185 | policy->max = policy->cpuinfo.max_freq = 160000; |
| 186 | policy->min = policy->cpuinfo.min_freq = 12000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | policy->cpuinfo.transition_latency = 1000000; /* 1 ms, assumed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | static struct cpufreq_driver integrator_driver = { |
| 193 | .verify = integrator_verify_policy, |
| 194 | .target = integrator_set_target, |
| 195 | .get = integrator_get, |
| 196 | .init = integrator_cpufreq_init, |
| 197 | .name = "integrator", |
| 198 | }; |
| 199 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 200 | static int __init integrator_cpufreq_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | { |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 202 | struct resource *res; |
| 203 | |
| 204 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 205 | if (!res) |
| 206 | return -ENODEV; |
| 207 | |
| 208 | cm_base = devm_ioremap(&pdev->dev, res->start, resource_size(res)); |
| 209 | if (!cm_base) |
| 210 | return -ENODEV; |
| 211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return cpufreq_register_driver(&integrator_driver); |
| 213 | } |
| 214 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 215 | static void __exit integrator_cpufreq_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | cpufreq_unregister_driver(&integrator_driver); |
| 218 | } |
| 219 | |
Linus Walleij | bdac7ea | 2013-06-17 22:52:32 +0200 | [diff] [blame] | 220 | static const struct of_device_id integrator_cpufreq_match[] = { |
| 221 | { .compatible = "arm,core-module-integrator"}, |
| 222 | { }, |
| 223 | }; |
| 224 | |
| 225 | static struct platform_driver integrator_cpufreq_driver = { |
| 226 | .driver = { |
| 227 | .name = "integrator-cpufreq", |
| 228 | .owner = THIS_MODULE, |
| 229 | .of_match_table = integrator_cpufreq_match, |
| 230 | }, |
| 231 | .remove = __exit_p(integrator_cpufreq_remove), |
| 232 | }; |
| 233 | |
| 234 | module_platform_driver_probe(integrator_cpufreq_driver, |
| 235 | integrator_cpufreq_probe); |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | MODULE_AUTHOR ("Russell M. King"); |
| 238 | MODULE_DESCRIPTION ("cpufreq driver for ARM Integrator CPUs"); |
| 239 | MODULE_LICENSE ("GPL"); |