#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/cpufreq.h>
#include <linux/timex.h>
#include <linux/io.h>
#include <asm/cpu_device_id.h>
#include <asm/msr.h>
Go to the source code of this file.
|
| #define | MMCR_BASE 0xfffef000 /* The default base address */ |
| |
| #define | OFFS_CPUCTL 0x2 /* CPU Control Register */ |
| |
| #define | PFX "sc520_freq: " |
| |
| #define MMCR_BASE 0xfffef000 /* The default base address */ |
| #define OFFS_CPUCTL 0x2 /* CPU Control Register */ |
| #define PFX "sc520_freq: " |
| MODULE_DEVICE_TABLE |
( |
x86cpu |
, |
|
|
sc520_ids |
|
|
) |
| |
| module_exit |
( |
sc520_freq_exit |
| ) |
|
| module_init |
( |
sc520_freq_init |
| ) |
|