Bug 9561
Summary: | powernow-k8 cpuid c0f13 not supported w/ fx-74 CPUs | ||
---|---|---|---|
Product: | Power Management | Reporter: | Dmitry Savchenko (blackprince2000) |
Component: | cpufreq | Assignee: | Mark Langsdorf (mark.langsdorf) |
Status: | CLOSED CODE_FIX | ||
Severity: | low | CC: | lars.tobias.borsting |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 2.6.24-rc4-git6 | Subsystem: | |
Regression: | --- | Bisected commit-id: | |
Attachments: |
x86info output
Patch to revise powernow xmod |
Description
Dmitry Savchenko
2007-12-14 09:45:13 UTC
Created attachment 14038 [details]
x86info output
Looks like it should be pretty easy to fix. Try this patch: --- linux-2.6.23-git18-vanilla/arch/x86/kernel/cpu/cpufreq/powernow-k8.h.old 2007-12-14 12:15:06.000000000 -0600 +++ linux-2.6.23-git18-vanilla/arch/x86/kernel/cpu/cpufreq/powernow-k8.h 2007-12-14 12:15:27.000000000 -0600 @@ -47,7 +47,7 @@ struct powernow_k8_data { #define CPUID_XFAM 0x0ff00000 /* extended family */ #define CPUID_XFAM_K8 0 #define CPUID_XMOD 0x000f0000 /* extended model */ -#define CPUID_XMOD_REV_MASK 0x00080000 +#define CPUID_XMOD_REV_MASK 0x000c0000 #define CPUID_XFAM_10H 0x00100000 /* family 0x10 */ #define CPUID_USE_XFAM_XMOD 0x00000f00 #define CPUID_GET_MAX_CAPABILITIES 0x80000000 Created attachment 14039 [details]
Patch to revise powernow xmod
It fixed it for me. thank you. |