#include <linux/err.h>
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <asm/processor.h>
Go to the source code of this file.
| #define CPUID_PKGTYPE_AM2R2_AM3 0x10000000 |
| #define CPUID_PKGTYPE_F 0x00000000 |
| #define CPUID_PKGTYPE_MASK 0xf0000000 |
| #define DDR3_MODE 0x00000100 |
| #define HTC_ENABLE 0x00000001 |
| #define NB_CAP_HTC 0x00000400 |
| #define REG_DCT0_CONFIG_HIGH 0x094 |
| #define REG_HARDWARE_THERMAL_CONTROL 0x64 |
| #define REG_NORTHBRIDGE_CAPABILITIES 0xe8 |
| #define REG_REPORTED_TEMPERATURE 0xa4 |
| MODULE_DESCRIPTION |
( |
"AMD Family 10h+ CPU core temperature monitor" |
| ) |
|
| MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
k10temp_id_table |
|
|
) |
| |
| MODULE_PARM_DESC |
( |
force |
, |
|
|
"force loading on processors with erratum 319" |
|
|
) |
| |
| module_pci_driver |
( |
k10temp_driver |
| ) |
|