This is my CPU on a Dell Inspiron laptop:
Code: Select all
% head -24 /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 37
model name : Intel(R) Core(TM) i3 CPU M 330 @ 2.13GHz
stepping : 2
cpu MHz : 2133.000
cache size : 3072 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm arat dts tpr_shadow vnmi flexpriority ept vpid
bogomips : 4256.80
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
Code: Select all
if temp >= 85C :
set speed 933MHz
while temp >= 60C :
sleep
probe temp
end while
restore speed
end ifI agree with the choice of the value 85C, but the value 60C is too low, and I have to wait forever. What I would like to do, is to somehow adjust this value to say, 75C. I don't know whether this scaling setting is implemented somewhere in the firmware, or if there's a kernel option to tweak.
Does someone know of a solution or workaround for this issue ?


