blob: abaa75e8614801b10fb2c3686ed4e1e023d1a14b [file] [log] [blame]
Dave Jonesbf6fc9f2005-05-31 19:03:45 -07001/*
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
Joe Perches1c5864e2016-04-05 13:28:25 -070016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070018#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/init.h>
21
22#include <linux/delay.h>
23#include <linux/cpufreq.h>
Dave Jones6072ace2009-01-18 01:27:35 -050024#include <linux/timex.h>
25#include <linux/io.h>
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070026
Andi Kleenfa8031a2012-01-26 00:09:12 +010027#include <asm/cpu_device_id.h>
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070028#include <asm/msr.h>
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070029
30#define MMCR_BASE 0xfffef000 /* The default base address */
31#define OFFS_CPUCTL 0x2 /* CPU Control Register */
32
33static __u8 __iomem *cpuctl;
34
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070035static struct cpufreq_frequency_table sc520_freq_table[] = {
Viresh Kumar7f4b0462014-03-28 19:11:47 +053036 {0, 0x01, 100000},
37 {0, 0x02, 133000},
38 {0, 0, CPUFREQ_TABLE_END},
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070039};
40
41static unsigned int sc520_freq_get_cpu_frequency(unsigned int cpu)
42{
43 u8 clockspeed_reg = *cpuctl;
44
45 switch (clockspeed_reg & 0x03) {
46 default:
Joe Perches1c5864e2016-04-05 13:28:25 -070047 pr_err("error: cpuctl register has unexpected value %02x\n",
Joe Perchesb49c22a2016-04-05 13:28:24 -070048 clockspeed_reg);
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070049 case 0x01:
50 return 100000;
51 case 0x02:
52 return 133000;
53 }
54}
55
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053056static int sc520_freq_target(struct cpufreq_policy *policy, unsigned int state)
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070057{
58
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070059 u8 clockspeed_reg;
60
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070061 local_irq_disable();
62
63 clockspeed_reg = *cpuctl & ~0x03;
Viresh Kumar50701582013-03-30 16:25:15 +053064 *cpuctl = clockspeed_reg | sc520_freq_table[state].driver_data;
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070065
66 local_irq_enable();
67
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070068 return 0;
69}
70
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070071/*
72 * Module init and exit code
73 */
74
75static int sc520_freq_cpu_init(struct cpufreq_policy *policy)
76{
Mike Travis92cb7612007-10-19 20:35:04 +020077 struct cpuinfo_x86 *c = &cpu_data(0);
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070078
79 /* capability check */
80 if (c->x86_vendor != X86_VENDOR_AMD ||
81 c->x86 != 4 || c->x86_model != 9)
82 return -ENODEV;
83
84 /* cpuinfo and default policy values */
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070085 policy->cpuinfo.transition_latency = 1000000; /* 1ms */
Viresh Kumarf35750c2018-02-26 10:39:03 +053086 policy->freq_table = sc520_freq_table;
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070087
Viresh Kumarf35750c2018-02-26 10:39:03 +053088 return 0;
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070089}
90
91
Linus Torvalds221dee22007-02-26 14:55:48 -080092static struct cpufreq_driver sc520_freq_driver = {
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070093 .get = sc520_freq_get_cpu_frequency,
Viresh Kumara823c4a2013-10-03 20:28:24 +053094 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053095 .target_index = sc520_freq_target,
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070096 .init = sc520_freq_cpu_init,
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070097 .name = "sc520_freq",
Viresh Kumara823c4a2013-10-03 20:28:24 +053098 .attr = cpufreq_generic_attr,
Dave Jonesbf6fc9f2005-05-31 19:03:45 -070099};
100
Andi Kleenfa8031a2012-01-26 00:09:12 +0100101static const struct x86_cpu_id sc520_ids[] = {
102 { X86_VENDOR_AMD, 4, 9 },
103 {}
104};
105MODULE_DEVICE_TABLE(x86cpu, sc520_ids);
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700106
107static int __init sc520_freq_init(void)
108{
Amol Lad3e743412006-10-17 10:02:55 +0530109 int err;
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700110
Andi Kleenfa8031a2012-01-26 00:09:12 +0100111 if (!x86_match_cpu(sc520_ids))
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700112 return -ENODEV;
Andi Kleenfa8031a2012-01-26 00:09:12 +0100113
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700114 cpuctl = ioremap((unsigned long)(MMCR_BASE + OFFS_CPUCTL), 1);
Dave Jones6072ace2009-01-18 01:27:35 -0500115 if (!cpuctl) {
Joe Perchesb49c22a2016-04-05 13:28:24 -0700116 pr_err("sc520_freq: error: failed to remap memory\n");
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700117 return -ENOMEM;
118 }
119
Amol Lad3e743412006-10-17 10:02:55 +0530120 err = cpufreq_register_driver(&sc520_freq_driver);
121 if (err)
122 iounmap(cpuctl);
123
124 return err;
Dave Jonesbf6fc9f2005-05-31 19:03:45 -0700125}
126
127
128static void __exit sc520_freq_exit(void)
129{
130 cpufreq_unregister_driver(&sc520_freq_driver);
131 iounmap(cpuctl);
132}
133
134
135MODULE_LICENSE("GPL");
136MODULE_AUTHOR("Sean Young <sean@mess.org>");
137MODULE_DESCRIPTION("cpufreq driver for AMD's Elan sc520 CPU");
138
139module_init(sc520_freq_init);
140module_exit(sc520_freq_exit);
141