Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sc520_freq.c: cpufreq driver for the AMD Elan sc520 |
| 3 | * |
| 4 | * Copyright (C) 2005 Sean Young <sean@mess.org> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * Based on elanfreq.c |
| 12 | * |
| 13 | * 2005-03-30: - initial revision |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/init.h> |
| 19 | |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/cpufreq.h> |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 22 | #include <linux/timex.h> |
| 23 | #include <linux/io.h> |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 24 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 25 | #include <asm/cpu_device_id.h> |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 26 | #include <asm/msr.h> |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 27 | |
| 28 | #define MMCR_BASE 0xfffef000 /* The default base address */ |
| 29 | #define OFFS_CPUCTL 0x2 /* CPU Control Register */ |
| 30 | |
| 31 | static __u8 __iomem *cpuctl; |
| 32 | |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 33 | #define PFX "sc520_freq: " |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 34 | |
| 35 | static struct cpufreq_frequency_table sc520_freq_table[] = { |
| 36 | {0x01, 100000}, |
| 37 | {0x02, 133000}, |
| 38 | {0, CPUFREQ_TABLE_END}, |
| 39 | }; |
| 40 | |
| 41 | static unsigned int sc520_freq_get_cpu_frequency(unsigned int cpu) |
| 42 | { |
| 43 | u8 clockspeed_reg = *cpuctl; |
| 44 | |
| 45 | switch (clockspeed_reg & 0x03) { |
| 46 | default: |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 47 | printk(KERN_ERR PFX "error: cpuctl register has unexpected " |
| 48 | "value %02x\n", clockspeed_reg); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 49 | case 0x01: |
| 50 | return 100000; |
| 51 | case 0x02: |
| 52 | return 133000; |
| 53 | } |
| 54 | } |
| 55 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 56 | static void sc520_freq_set_cpu_state(struct cpufreq_policy *policy, |
| 57 | unsigned int state) |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 58 | { |
| 59 | |
| 60 | struct cpufreq_freqs freqs; |
| 61 | u8 clockspeed_reg; |
| 62 | |
| 63 | freqs.old = sc520_freq_get_cpu_frequency(0); |
| 64 | freqs.new = sc520_freq_table[state].frequency; |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 65 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 66 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 67 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 68 | pr_debug("attempting to set frequency to %i kHz\n", |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 69 | sc520_freq_table[state].frequency); |
| 70 | |
| 71 | local_irq_disable(); |
| 72 | |
| 73 | clockspeed_reg = *cpuctl & ~0x03; |
Viresh Kumar | 5070158 | 2013-03-30 16:25:15 +0530 | [diff] [blame] | 74 | *cpuctl = clockspeed_reg | sc520_freq_table[state].driver_data; |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 75 | |
| 76 | local_irq_enable(); |
| 77 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 78 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 79 | }; |
| 80 | |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 81 | static int sc520_freq_target(struct cpufreq_policy *policy, |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 82 | unsigned int target_freq, |
| 83 | unsigned int relation) |
| 84 | { |
| 85 | unsigned int newstate = 0; |
| 86 | |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 87 | if (cpufreq_frequency_table_target(policy, sc520_freq_table, |
| 88 | target_freq, relation, &newstate)) |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 89 | return -EINVAL; |
| 90 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 91 | sc520_freq_set_cpu_state(policy, newstate); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | |
| 97 | /* |
| 98 | * Module init and exit code |
| 99 | */ |
| 100 | |
| 101 | static int sc520_freq_cpu_init(struct cpufreq_policy *policy) |
| 102 | { |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 103 | struct cpuinfo_x86 *c = &cpu_data(0); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 104 | |
| 105 | /* capability check */ |
| 106 | if (c->x86_vendor != X86_VENDOR_AMD || |
| 107 | c->x86 != 4 || c->x86_model != 9) |
| 108 | return -ENODEV; |
| 109 | |
| 110 | /* cpuinfo and default policy values */ |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 111 | policy->cpuinfo.transition_latency = 1000000; /* 1ms */ |
| 112 | policy->cur = sc520_freq_get_cpu_frequency(0); |
| 113 | |
Viresh Kumar | ae02519 | 2013-09-16 18:56:34 +0530 | [diff] [blame] | 114 | return cpufreq_table_validate_and_show(policy, sc520_freq_table); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 118 | static struct cpufreq_driver sc520_freq_driver = { |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 119 | .get = sc520_freq_get_cpu_frequency, |
Viresh Kumar | a823c4a | 2013-10-03 20:28:24 +0530 | [diff] [blame] | 120 | .verify = cpufreq_generic_frequency_table_verify, |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 121 | .target = sc520_freq_target, |
| 122 | .init = sc520_freq_cpu_init, |
Viresh Kumar | a823c4a | 2013-10-03 20:28:24 +0530 | [diff] [blame] | 123 | .exit = cpufreq_generic_exit, |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 124 | .name = "sc520_freq", |
Viresh Kumar | a823c4a | 2013-10-03 20:28:24 +0530 | [diff] [blame] | 125 | .attr = cpufreq_generic_attr, |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 126 | }; |
| 127 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 128 | static const struct x86_cpu_id sc520_ids[] = { |
| 129 | { X86_VENDOR_AMD, 4, 9 }, |
| 130 | {} |
| 131 | }; |
| 132 | MODULE_DEVICE_TABLE(x86cpu, sc520_ids); |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 133 | |
| 134 | static int __init sc520_freq_init(void) |
| 135 | { |
Amol Lad | 3e74341 | 2006-10-17 10:02:55 +0530 | [diff] [blame] | 136 | int err; |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 137 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 138 | if (!x86_match_cpu(sc520_ids)) |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 139 | return -ENODEV; |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 140 | |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 141 | cpuctl = ioremap((unsigned long)(MMCR_BASE + OFFS_CPUCTL), 1); |
Dave Jones | 6072ace | 2009-01-18 01:27:35 -0500 | [diff] [blame] | 142 | if (!cpuctl) { |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 143 | printk(KERN_ERR "sc520_freq: error: failed to remap memory\n"); |
| 144 | return -ENOMEM; |
| 145 | } |
| 146 | |
Amol Lad | 3e74341 | 2006-10-17 10:02:55 +0530 | [diff] [blame] | 147 | err = cpufreq_register_driver(&sc520_freq_driver); |
| 148 | if (err) |
| 149 | iounmap(cpuctl); |
| 150 | |
| 151 | return err; |
Dave Jones | bf6fc9f | 2005-05-31 19:03:45 -0700 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | |
| 155 | static void __exit sc520_freq_exit(void) |
| 156 | { |
| 157 | cpufreq_unregister_driver(&sc520_freq_driver); |
| 158 | iounmap(cpuctl); |
| 159 | } |
| 160 | |
| 161 | |
| 162 | MODULE_LICENSE("GPL"); |
| 163 | MODULE_AUTHOR("Sean Young <sean@mess.org>"); |
| 164 | MODULE_DESCRIPTION("cpufreq driver for AMD's Elan sc520 CPU"); |
| 165 | |
| 166 | module_init(sc520_freq_init); |
| 167 | module_exit(sc520_freq_exit); |
| 168 | |