how can I see that it is using the overclock when it needs to ?
i.e. I assume that cat /proc/cpuinfo will not show the new value

Code: Select all
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
700000Excellent, thanks for all this. Temp showing fine in gkrellm. Now need to write a plugin to show the clock speeds and voltages - recommend nobody holds their breathe as it is a couple of decades since my previous line of code!dom wrote:The tempertaure sensor is now available through a thermal driver.

Code: Select all
(force_turbo || current_limit_override || temp_limit>85) && over_voltage>0
Yes, we boot up with powersave governor and switch to ondemand with init script. "apt-get upgrade" should get you this bevaviour, but you can do it manually by adding:hojnikb wrote:did something changed in the latest cpufreq driver, becose my arm is always at 700mhz no matter what.
Worked fine before i updated the image...
forced turbo works though..

By booting with powersave and then enabling ondemand in init script, we can implement the "hold shift" to disable overclock, so you can recover from a "too high" overclock that won't boot.hojnikb wrote:Oh thanks for clearing that up. Never though powersave governour is so agressive
is there any good reason for using powersave gov. out of the box ?
The init script to switch governor is generated once you use raspi-config to set one of the overclock presets.dom wrote:Yes, we boot up with powersave governor and switch to ondemand with init script. "apt-get upgrade" should get you this bevaviour, but you can do it manually by adding:hojnikb wrote:did something changed in the latest cpufreq driver, becose my arm is always at 700mhz no matter what.
Worked fine before i updated the image...
forced turbo works though..
echo “ondemand” > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
to /etc/rc.local.
I see..dom wrote:By booting with powersave and then enabling ondemand in init script, we can implement the "hold shift" to disable overclock, so you can recover from a "too high" overclock that won't boot.hojnikb wrote:Oh thanks for clearing that up. Never though powersave governour is so agressive
is there any good reason for using powersave gov. out of the box ?

You may be okay. force_turbo doesn't set it on its own. Only in conjunction with over_voltage>0.chickey wrote:How can you check the warranty bit ? I searched the forums but couldn't find a way.The 1 at the start (bit 24) is the warranty bit.Code: Select all
cat /proc/cpuinfo |grep Revision Revision : 1000004chickey wrote:I unfortunatly discovered force_turbo just last night and can't remember if i had it enabled when i switched SD cards into another Pi, tis a bummer if that's tripped the warranty bit as i wasn't overvolting, i thought that as the only way to void the warranty, doh!
I noticed that overclock doesnt work for me too.asb wrote:The init script to switch governor is generated once you use raspi-config to set one of the overclock presets.dom wrote:Yes, we boot up with powersave governor and switch to ondemand with init script. "apt-get upgrade" should get you this bevaviour, but you can do it manually by adding:hojnikb wrote:did something changed in the latest cpufreq driver, becose my arm is always at 700mhz no matter what.
Worked fine before i updated the image...
forced turbo works though..
echo “ondemand” > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
to /etc/rc.local.

Are you busy?Yoda007 wrote:I added the ondemand thing to /etc/rc.local , even tried the raspi-config to set one preset. The scaling_cur_freq still shows 700000. Do I have to do something else to enable the overclock?
Code: Select all
for i in {1..10000} ; do set X 1; done && cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freqCode: Select all
# echo "powersave" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
# echo 1000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
# cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq
1000
# time free
total used free shared buffers cached
Mem: 189104 80140 108964 0 10464 44276
-/+ buffers/cache: 25400 163704
Swap: 0 0 0
real 0m6.607s
user 0m1.400s
sys 0m3.310s
250.rilski wrote:What's the default ram value in MHz? forgive me for not back reading the thread.
I know the ARM mhz is 700mhz.. hehehe
I don't have anything in the cpu0 dir "apt-get upgrade" didn't work have ran all the update and upgrades can overclock but can't get cpu frequency the widget shows 0 any help how to get thisdom wrote:Yes, we boot up with powersave governor and switch to ondemand with init script. "apt-get upgrade" should get you this bevaviour, but you can do it manually by adding:hojnikb wrote:did something changed in the latest cpufreq driver, becose my arm is always at 700mhz no matter what.
Worked fine before i updated the image...
forced turbo works though..
echo “ondemand” > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
to /etc/rc.local.

SDRAM is 400...milhouse wrote:250.rilski wrote:What's the default ram value in MHz? forgive me for not back reading the thread.
All defaults here.