[Q] virtuous oc daemon for ics? - T-Mobile Samsung Galaxy S II SGH-T989

I was wondering if anyone got this mod to work on any ics rom?
If so then how you install it over ics?
Using it for gingerbread I have tremendous battery life without losing performance.
I just set wake to interactive (freq=1404,192) and sleep to conservative (freq=192,192).
The only reason why I still use gingerbread is because of it.

h1a8 said:
I was wondering if anyone got this mod to work on any ics rom?
If so then how you install it over ics?
Using it for gingerbread I have tremendous battery life without losing performance.
I just set wake to interactive (freq=1404,192) and sleep to conservative (freq=192,192).
The only reason why I still use gingerbread is because of it.
Click to expand...
Click to collapse
All the OC daemon is its another way to OC and UV you can do that with set CPU or system tuner they will work just the same.
Sent from my SGH-T989 using xda premium

sinfulgray said:
All the OC daemon is its another way to OC and UV you can do that with set CPU or system tuner they will work just the same.
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Thanks but I use the daemon not for that but for using wake profiles.
For example, the sleep governor I use conservative with max freq=192 and min freq=192
the wake governor I use interactive with max freq=1404 and min freq=192
With set cpu I can only apply 1 governor only and I can't set a max sleep frequency.

h1a8 said:
Thanks but I use the daemon not for that but for using wake profiles.
For example, the sleep governor I use conservative with max freq=192 and min freq=192
the wake governor I use interactive with max freq=1404 and min freq=192
With set cpu I can only apply 1 governor only and I can't set a max sleep frequency.
Click to expand...
Click to collapse
Well i tried for you to see if it would work and it would not perminately activate the profile i set.

Related

Do I need to use SetCPU with Incredikernel?

I am running Cyanogen Rc-4 with Incredikernel on my Incredible.....
I have set the speeds to 1113 and 128 using smartass governor in Cyan mod settings...
If i check set on boot will it really do it?
Or should i use Setcpu in conjunction to make sure?
Chad's kernal has a smartass governor and does this already. No need for set cpu
If you want to overclock then yes if not then no..... by default Chad's kernals are set at stock speed so if you want to overclock you will need something to overclock with.... just don't bother the min setting or smartass wont work correctly....
Sent from my ADR6300 using XDA App

[MOD]OC Daemon

I take no credit for this mod, just made it work for myself, thought I'd share it. rmk40 and viperboy are the ones that made it happen.
I used this OC daemon on my MT4G, it worked very well. Ive noticed that cpu tuning apps seem to not play well with our phones. So I changed the updater script to make this mod work for our phone. Im running it with Bullet 2.2 and Juggernaut 3.1 and its very smooth, it really works.
So what makes this mod cool? When you set a screen off profile in setcpu, it takes a few seconds for the changes to take effect when the screen goes off/on. With this daemon, its instant. Ive checked it with shell commands and it always changes min/max and the gov as it should. I will share the shell commands to get the available clock speeds and govs. for the kernel you are using, you have to manually set them.
The daemon is configured with 6 files in the folder /system/etc/virtuous_oc/.
There are 3 files for the wake state and 3 for the sleep state. For each state one file for the governor, one for the minimal frequency and one for the maximal frequency.
You can easily edit these files eg. with RootExplorer or any other app which can edit system files. So you can adjust the frequencies and the governor for each state just like with SetCPU.
In order to get the available frequencies for the current kernel, just open your favorite terminal app and type
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
You could also use adb shell to show the frequencies on your computer.
To get the available govenors use a similar approach
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
To make sure its working, you can use these commands the same as the ones above.
Current CPU frequency
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
Current CPU governor
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Current min CPU Freq
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
Current max CPU Freq
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
The kernel and ROM you are using have to support init.d scripts. As I said, Ive tested with Juggernaut 3.1 and bullet 2.2, the files are set by default at:
screen on gov-lagfree
screen on max-1836
screen on min-384
screen off gov-conservative
screen off max-540
screen off min-384
These are the available speeds and govs. for bullet 2.2
192000 384000 432000 486000 540000 594000 648000 702000 756000 810000 864000
918000 972000 1026000 1080000 1134000 1188000 1242000 1296000 1350000 1404000
1458000 1512000 1566000 1620000 1674000 1728000 1782000 1836000
conservative ondemand userspace powersave lagfree performance
Installation: Make sure you uninstall any CPU apps before flashing, or this won't work.
Boot into recovery, wipe dalvik, flash zip, reboot.
YOU CAN USE THIS APP TO CONTROL THE DAEMON. IT ALLOWS 3 OC PROFILES AND 2 UV PROFILES. WORKS VERY WELL! THANKS TO Killbynature FOR SHARING THIS!
*MAKE SURE YOUR ROM/KERNEL SUPPORT INIT.D!!!
mikeyinid said:
I take no credit for this mod, just made it work for myself, thought I'd share it. rmk40 and viperboy are the ones that made it happen.
I used this OC daemon on my MT4G, it worked very well. Ive noticed that cpu tuning apps seem to not play well with our phones. So I changed the updater script to make this mod work for our phone. Im running it with Bullet 2.2 and Juggernaut 3.1 and its very smooth, it really works.
So what makes this mod cool? When you set a screen off profile in setcpu, it takes a few seconds for the changes to take effect when the screen goes off/on. With this daemon, its instant. Ive checked it with shell commands and it always changes min/max and the gov as it should. I will share the shell commands to get the available clock speeds and govs. for the kernel you are using, you have to manually set them.
The daemon is configured with 6 files in the folder /system/etc/virtuous_oc/.
There are 3 files for the wake state and 3 for the sleep state. For each state one file for the governor, one for the minimal frequency and one for the maximal frequency.
You can easily edit these files eg. with RootExplorer or any other app which can edit system files. So you can adjust the frequencies and the governor for each state just like with SetCPU.
In order to get the available frequencies for the current kernel, just open your favorite terminal app and type
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
You could also use adb shell to show the frequencies on your computer.
To get the available govenors use a similar approach
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
To make sure its working, you can use these commands the same as the ones above.
Current CPU frequency
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
Current CPU governor
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Current min CPU Freq
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
Current max CPU Freq
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
The kernel and ROM you are using have to support init.d scripts. As I said, Ive tested with Juggernaut 3.1 and bullet 2.2, the files are set by default at:
screen on gov-lagfree
screen on max-1836
screen on min-384
screen off gov-conservative
screen off max-540
screen off min-384
These are the available speeds and govs. for bullet 2.2
192000 384000 432000 486000 540000 594000 648000 702000 756000 810000 864000
918000 972000 1026000 1080000 1134000 1188000 1242000 1296000 1350000 1404000
1458000 1512000 1566000 1620000 1674000 1728000 1782000 1836000
conservative ondemand userspace powersave lagfree performance
Installation:
Boot into recovery, wipe dalvik, flash zip, reboot.
*MAKE SURE YOUR ROM/KERNEL SUPPORT INIT.D!!!
Click to expand...
Click to collapse
your the man!!!! ive been waiting for this!!!!
---------- Post added at 02:06 AM ---------- Previous post was at 01:58 AM ----------
now we just have to get the OC Daemon controller apk working with this and we'll be golden!!
You just had to quote the whole thing -.-
Enzopreme said:
your the man!!!! ive been waiting for this!!!!
---------- Post added at 02:06 AM ---------- Previous post was at 01:58 AM ----------
now we just have to get the OC Daemon controller apk working with this and we'll be golden!!
Click to expand...
Click to collapse
Sent From my Galaxy S II T-Mobile
In case I wasnt clear enough in the op, you can flash this right over bullet 2.2 and the settings are correct. The clock speeds and govs. will vary from kernel to kernel. just make sure you get the right frequencies for your kernel.
I hope you guys enjoy this, these guys are geniuses, and this works very well.
phreshjoker said:
You just had to quote the whole thing -.-
Sent From my Galaxy S II T-Mobile
Click to expand...
Click to collapse
lol, i know, sorry, didnt mean to, lol, i forgot to move the quotation commands and delete the rest, i was so damn excited!! my bad everyone..
LOl!!!
10 char
Idk, but my phone is running better than ever. Bullet 2.2 and these scripts=win
Sent from my SGH-T989 using Tapatalk
You can use this app to change the files with this app as well. Even under volt with it. http://forum.xda-developers.com/showthread.php?t=1207546
Sent from my SGH-T989 using xda premium
Killbynature said:
You can use this app to change the files with this app as well. Even under volt with it. http://forum.xda-developers.com/showthread.php?t=1207546
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Awesome! That works great and simplifies the daemon for noobs. I really think this is our best option for oc'ing our phones right now. I haven't had any of the issues I was having with setcpu or system tuner.
Sent from my SGH-T989 using Tapatalk
Killbynature said:
You can use this app to change the files with this app as well. Even under volt with it. http://forum.xda-developers.com/showthread.php?t=1207546
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
i dont think the uv settings work, not with bullet at least. oc and gov settings seem ok though
mikeyinid said:
i dont think the uv settings work, not with bullet at least. oc and gov settings seem ok though
Click to expand...
Click to collapse
He probably needs to change the vdd table settings. But it does what it needs to do that's over clock and under clock our cpu.
Sent from my SGH-T989 using xda premium
Killbynature said:
He probably needs to change the vdd table settings. But it does what it needs to do that's over clock and under clock our cpu.
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Yup. Exactly. And it does it well
Sent from my SGH-T989 using Tapatalk
AllGamer, can you move this thread to the dev section? You ignore my pm's but I know you read the threads. Thanks
Sent from my SGH-T989 using Tapatalk
Lol i had this one my ROM since 2.0 but didnt release it with oc daemon in. Didnt think you guys would like this but seems you all do.
Sent from my SGH-T989 using xda premium
|Melvin| said:
Lol i had this one my ROM since 2.0 but didnt release it with oc daemon in. Didnt think you guys would like this but seems you all do.
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
you released your ROM with this in it?
Nvm, reread your post. This is the best way to oc in my opinion.
Sent from my SGH-T989 using Tapatalk
mikeyinid said:
you released your ROM with this in it?
Nvm, reread your post. This is the best way to oc in my opinion.
Sent from my SGH-T989 using Tapatalk
Click to expand...
Click to collapse
K ill include in next version... Maybe talk to The guys to see if we can get it running better you know!
|Melvin| said:
K ill include in next version... Maybe talk to The guys to see if we can get it running better you know!
Click to expand...
Click to collapse
Running better? This mod or your ROM? Cus this works exactly how it should.
And btw, you should ask the guys that developed this if you can put it in your ROM. And give proper credit.
Sent from my SGH-T989 using Tapatalk
Killbynature said:
He probably needs to change the vdd table settings. But it does what it needs to do that's over clock and under clock our cpu.
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
mikeyinid said:
i dont think the uv settings work, not with bullet at least. oc and gov settings seem ok though
Click to expand...
Click to collapse
Sorry to bump such an old thread, but my question is regarding undervolting.
Since the app doesnt work for enabling a UV profile, can i manually edit the table in /system/etc/viper_vdd/default_values ? I noticed there is also a conf folder located at /system/etc/viper_vdd/conf... would the file get placed in this folder or should i overwrite default_values ?
Edit - the voltage seems to be coming from /sys/devices/system/cpu/cpufreq/vdd_table/vdd_levels.
thanks!
Sorry for bumping this old thread again, I installed the OC Daemon on Digital warfare current var, it did install and I'm able to control it through OCbeats, however everytime I reboot, it seems its not enabled by default even though I did a permanent activate
Is there any workaround for it, so its persistent across reboots ?
Mafioso said:
Sorry for bumping this old thread again, I installed the OC Daemon on Digital warfare current var, it did install and I'm able to control it through OCbeats, however everytime I reboot, it seems its not enabled by default even though I did a permanent activate
Is there any workaround for it, so its persistent across reboots ?
Click to expand...
Click to collapse
are you talking about undervolt settings? those dont work right with our phone and u have to make your own init.d script.
either way the rom your using has to support init.d. i know tdj has some of his own custom tweaks for darkside... try a rom like juggernaut and a kernel like synergy or streamline that has tons of supported governors.
Sent from my SGH-T989

[Q] Can this phone be undervolted in SetCPU?

I'm running Cyanogen 7.2 and use ILWT 1.8 as the kernel. No matter what I do, I never see the voltage tab in SetCPU. Any help?
hawtcakes said:
I'm running Cyanogen 7.2 and use ILWT 1.8 as the kernel. No matter what I do, I never see the voltage tab in SetCPU. Any help?
Click to expand...
Click to collapse
Undervolting happens in the kernel, not an app. You need to install an undervolted kernel (such as Pershoot's). Also, CM7 has a performance setting so there's no need to use SetCPU, just set your max and min speeds in the performance settings of CM7 and get rid of SetCPU (it's polling has proven to be a battery drain).
Sent from my HTC Vision using XDA
OriginalGabriel said:
Undervolting happens in the kernel, not an app. You need to install an undervolted kernel (such as Pershoot's). Also, CM7 has a performance setting so there's no need to use SetCPU, just set your max and min speeds in the performance settings of CM7 and get rid of SetCPU (it's polling has proven to be a battery drain).
Sent from my HTC Vision using XDA
Click to expand...
Click to collapse
The kernel specifically states in its changelog that it supports changing voltages:
"Exposed VDD levels to userspace, so that voltages for all frequencies can be modded at any time"
hawtcakes said:
The kernel specifically states in its changelog that it supports changing voltages:
"Exposed VDD levels to userspace, so that voltages for all frequencies can be modded at any time"
Click to expand...
Click to collapse
Sorry, that must be a new feature in 7.2. Check in CM Settings under the performance tab.
Sent from my HTC Vision using XDA
The ILWT kernel is fine for undervoltung. However, you should not use SetCPU and you also won't find any options for undervolting in a CM7 settings dialog. I'd recommend using OC/UV Beater for undervolting. I am also using it for undervolting on the latest ILWT kernel.
- mcsmart
mcsmart said:
The ILWT kernel is fine for undervoltung. However, you should not use SetCPU and you also won't find any options for undervolting in a CM7 settings dialog. I'd recommend using OC/UV Beater for undervolting. I am also using it for undervolting on the latest ILWT kernel.
- mcsmart
Click to expand...
Click to collapse
I'll try it out, thanks.
mcsmart said:
The ILWT kernel is fine for undervoltung. However, you should not use SetCPU and you also won't find any options for undervolting in a CM7 settings dialog. I'd recommend using OC/UV Beater for undervolting. I am also using it for undervolting on the latest ILWT kernel.
- mcsmart
Click to expand...
Click to collapse
I prefer SetCPU for a more detailed automatic profile rather than just simply 'battery low'. But I don't do the voltage settings in SetCPU either just the profiles, for the voltage settings I set them in a userinit.sh in /data/local/ (it's provided as undervolt.sh as a reference by the rom creator) and reboot so it applies it to the vdd_levels file.

Best Overclocking Setting On Lupus Kernel?

What's the best setting that provides the best gaming experience?
i always use this setting
min: 249 or 364 mhz
max: 1401 mhz
govern: interactivex/smartassh3/smartassv2
in some roms smart ass v2 or h3 is best govern but in some of them its better to use interactivex
min : 249
max : 1209
governor : smartassv2 or smartassh3
Thanks. And what about the scheduler?
Sio
Sent from my Xperia Play using xda premium
Mine
min : 364
max : 1408
governor : interactivex/sio
Maybe little off topic but what difference between Smartass v2 and h3?
Sent from my R800i using xda app-developers app
better battry life in h3
pedyvirus said:
better battry life in h3
Click to expand...
Click to collapse
Thanks. So h3 is more battery saver?
Sent from my R800i using xda app-developers app
bartmw said:
Thanks. So h3 is more battery saver?
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
In theory yes. But you will sacrifice gaming fps.
Lupus kernel takes time to boot
I'm using Neo V with cm10 and Lupus480p kernel, but this Lupus logo which appears during boot takes like forever before the cyanogenmod animation starts, any way to improve the boot time? If not which is the best kernel to go with my configuration.
My stuff
min= 0.1ghz - Standby clocks to lowest saving alot of battery!
max= 1.2ghz - little tiny bump for gaming as my rom can already handle most games i play
govenor= inteldemand2
schedular= row
Sent from my R800 - Currently testing the Pizza Engine
Usually I use max 1,6 Ghz with performance governor and sio i/o, this always runs the CPU @ 1,6. Drains battery fast, but great gaming...

atomic GB 7.0 oveclock?

i'm really happy with my atomic gb 7.0. very stable and to me better than stock. I'm using no-frills CPU (1.024 mghz max clock and 122 MHz min clock). Is there any way to speed up my phone? I'm getting about 14.5 fps avg. I can play most games smoothly but I wanted to see if there's a way to speed things up to get a better score. my highest score is about 15.2.
I'm not a guru with the play and any help would be great help!
thanks!
Hey buddy,
Heres my settings for a super smooth UI
Max - 1.2 GHz
Min - 180MHz
Govenor - Lulzactive
Scheduler - Row
With these clock settings you should have a good battery & awesome performance,
Sent from my R800i using xda app-developers app
Pizza_Dox said:
Hey buddy,
Heres my settings for a super smooth UI
Max - 1.2 GHz
Min - 180MHz
Govenor - Lulzactive
Scheduler - Row
With these clock settings you should have a good battery & awesome performance,
Sent from my R800i using xda app-developers app
Click to expand...
Click to collapse
thanks for the reply. I greatly appreciate that. i'm using no-frill CPU and there are no options to go past 1.024ghz max or 122mhz min clock and the options for governor and scheduler that you listed are not offered. am I using the correct app or something else I can do?
thanks!
legacygt777 said:
thanks for the reply. I greatly appreciate that. i'm using no-frill CPU and there are no options to go past 1.024ghz max or 122mhz min clock and the options for governor and scheduler that you listed are not offered. am I using the correct app or something else I can do?
thanks!
Click to expand...
Click to collapse
seems to me like you are running the stock kernel... i would google on how to flash/install lupus kernel which offers a higher clock speed and other various govenors/schedulers,
legacygt777 said:
i'm really happy with my atomic gb 7.0. very stable and to me better than stock. I'm using no-frills CPU (1.024 mghz max clock and 122 MHz min clock). Is there any way to speed up my phone? I'm getting about 14.5 fps avg. I can play most games smoothly but I wanted to see if there's a way to speed things up to get a better score. my highest score is about 15.2.
I'm not a guru with the play and any help would be great help!
thanks!
Click to expand...
Click to collapse
ok thank you.
i like.. :good:
Pizza_Dox said:
seems to me like you are running the stock kernel... i would google on how to flash/install lupus kernel which offers a higher clock speed and other various govenors/schedulers,
Click to expand...
Click to collapse
legacygt777 said:
thanks for the reply. I greatly appreciate that. i'm using no-frill CPU and there are no options to go past 1.024ghz max or 122mhz min clock and the options for governor and scheduler that you listed are not offered. am I using the correct app or something else I can do?
thanks!
Click to expand...
Click to collapse
would a flash/install lupus kernel reset my phone?
Yes as u need to wipe all partitions,
Sent from my R800i using xda app-developers app
Do you have an unlocked bootloader?
Sent from my 1.9ghz Xperia PLAY!!
BensJammin said:
Do you have an unlocked bootloader?
Sent from my 1.9ghz Xperia PLAY!!
Click to expand...
Click to collapse
you know, i'm not sure. anyway to check?
legacygt777 said:
you know, i'm not sure. anyway to check?
Click to expand...
Click to collapse
Have a look at fma's thread - http://forum.xda-developers.com/showthread.php?t=1662199
Sent from my C6603 using Tapatalk 2
How to overlock for neo l???

Categories

Resources