2 * sc520_freq.c: cpufreq driver for the AMD Elan sc520
4 * Copyright (C) 2005 Sean Young <sean@mess.org>
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.
13 * 2005-03-30: - initial revision
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
20 #include <linux/delay.h>
21 #include <linux/cpufreq.h>
22 #include <linux/timex.h>
25 #include <asm/cpu_device_id.h>
28 #define MMCR_BASE 0xfffef000 /* The default base address */
29 #define OFFS_CPUCTL 0x2 /* CPU Control Register */
31 static __u8 __iomem
*cpuctl
;
33 #define PFX "sc520_freq: "
35 static struct cpufreq_frequency_table sc520_freq_table
[] = {
38 {0, 0, CPUFREQ_TABLE_END
},
41 static unsigned int sc520_freq_get_cpu_frequency(unsigned int cpu
)
43 u8 clockspeed_reg
= *cpuctl
;
45 switch (clockspeed_reg
& 0x03) {
47 printk(KERN_ERR PFX
"error: cpuctl register has unexpected "
48 "value %02x\n", clockspeed_reg
);
56 static int sc520_freq_target(struct cpufreq_policy
*policy
, unsigned int state
)
63 clockspeed_reg
= *cpuctl
& ~0x03;
64 *cpuctl
= clockspeed_reg
| sc520_freq_table
[state
].driver_data
;
72 * Module init and exit code
75 static int sc520_freq_cpu_init(struct cpufreq_policy
*policy
)
77 struct cpuinfo_x86
*c
= &cpu_data(0);
79 /* capability check */
80 if (c
->x86_vendor
!= X86_VENDOR_AMD
||
81 c
->x86
!= 4 || c
->x86_model
!= 9)
84 /* cpuinfo and default policy values */
85 policy
->cpuinfo
.transition_latency
= 1000000; /* 1ms */
87 return cpufreq_table_validate_and_show(policy
, sc520_freq_table
);
91 static struct cpufreq_driver sc520_freq_driver
= {
92 .get
= sc520_freq_get_cpu_frequency
,
93 .verify
= cpufreq_generic_frequency_table_verify
,
94 .target_index
= sc520_freq_target
,
95 .init
= sc520_freq_cpu_init
,
97 .attr
= cpufreq_generic_attr
,
100 static const struct x86_cpu_id sc520_ids
[] = {
101 { X86_VENDOR_AMD
, 4, 9 },
104 MODULE_DEVICE_TABLE(x86cpu
, sc520_ids
);
106 static int __init
sc520_freq_init(void)
110 if (!x86_match_cpu(sc520_ids
))
113 cpuctl
= ioremap((unsigned long)(MMCR_BASE
+ OFFS_CPUCTL
), 1);
115 printk(KERN_ERR
"sc520_freq: error: failed to remap memory\n");
119 err
= cpufreq_register_driver(&sc520_freq_driver
);
127 static void __exit
sc520_freq_exit(void)
129 cpufreq_unregister_driver(&sc520_freq_driver
);
134 MODULE_LICENSE("GPL");
135 MODULE_AUTHOR("Sean Young <sean@mess.org>");
136 MODULE_DESCRIPTION("cpufreq driver for AMD's Elan sc520 CPU");
138 module_init(sc520_freq_init
);
139 module_exit(sc520_freq_exit
);