maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   Compiling custom kernels for P1.1 (with fiasco-gen) (https://talk.maemo.org/showthread.php?t=43420)

sanros 2011-04-19 10:47

Re: Compiling custom kernels for P1.1 (with fiasco-gen)
 
Quote:

Originally Posted by nightfire (Post 599870)
In case anyone isn't following the overclocking thread (pretty high traffic), if you're looking for even more performance (at the potential cost of some battery life, though I haven't observed any diference so far), try this (copied from my post there):

Code:

echo 75 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold
echo 150000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate

By default, the ondemand governor is very aggressive about when it cycles up (waits for 95% load), and can have a significant latency of up to 300ms. This means if you saturate your CPU, your average wait for frequency increase is 150ms (0-300ms).

This change cuts that time in half, and lowers the bar for how much load is needed before committing.

It may affect battery life slightly (more frequent sampling, more aggressive cycle-up), but gives a yet more snappy feel. It may have no effect (or even lower battery consumption) by minimizing unneeded time at high cycle rates (responding to drop in load more quickly). Try it out!

If you want to make it permanent, just do this:

Code:

cat > /etc/event.d/ondemand-config << EOF
start on started xsession

console output
script
        echo 75 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold
        echo 150000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate
end script
EOF

In case anyone is wondering "why on started xsession?" .. it's because at some point late in the bootup, the ondemand scheduler is selected by something and I'm not sure what. When it's set, it resets the values. So I just wait a bit.

Perfect complement to any overclocking kernel. :)

how to undo this command? or how to check if its working or not?

GameboyRMH 2011-04-19 12:54

Re: Compiling custom kernels for P1.1 (with fiasco-gen)
 
The sampling_rate=150000 really makes the difference. I left the up_threshold at the default value and there's still a big speedup.

zerocool2k 2011-07-07 15:51

Re: Compiling custom kernels for P1.1 (with fiasco-gen)
 
EDIT: deleted.

thebtman 2011-11-20 00:29

Re: Compiling custom kernels for P1.1 (with fiasco-gen)
 
NightFire - Thanks for this. Works really well, in fact transforms the device...well impressed:D

[Thanks!]



Quote:

Originally Posted by nightfire (Post 599870)
In case anyone isn't following the overclocking thread (pretty high traffic), if you're looking for even more performance (at the potential cost of some battery life, though I haven't observed any diference so far), try this (copied from my post there):

Code:

echo 75 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold
echo 150000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate

By default, the ondemand governor is very aggressive about when it cycles up (waits for 95% load), and can have a significant latency of up to 300ms. This means if you saturate your CPU, your average wait for frequency increase is 150ms (0-300ms).

This change cuts that time in half, and lowers the bar for how much load is needed before committing.

It may affect battery life slightly (more frequent sampling, more aggressive cycle-up), but gives a yet more snappy feel. It may have no effect (or even lower battery consumption) by minimizing unneeded time at high cycle rates (responding to drop in load more quickly). Try it out!

If you want to make it permanent, just do this:

Code:

cat > /etc/event.d/ondemand-config << EOF
start on started xsession

console output
script
        echo 75 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold
        echo 150000 > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate
end script
EOF

In case anyone is wondering "why on started xsession?" .. it's because at some point late in the bootup, the ondemand scheduler is selected by something and I'm not sure what. When it's set, it resets the values. So I just wait a bit.

Perfect complement to any overclocking kernel. :)



All times are GMT. The time now is 17:05.

vBulletin® Version 3.8.8