Guest gusthy Posted September 19, 2010 Report Posted September 19, 2010 Hi everyone, Since BB seems to be busy, I tried to look around overclocking. The question is if anyone knows which values to use in acpuclock.c ?
Guest Holograph Posted September 19, 2010 Report Posted September 19, 2010 (edited) _I GUESS_ this line: { 1, 528000, ACPU_PLL_2, 2, 1, 132000, 3, 7, 128000 }, Maybe you can change 528000 (528 MHz) to 600000 (600 MHz)? Edited September 19, 2010 by Holograph
Guest gusthy Posted September 19, 2010 Report Posted September 19, 2010 _I GUESS_ this line: { 1, 528000, ACPU_PLL_2, 2, 1, 132000, 3, 7, 128000 }, Maybe you can change 528000 (528 MHz) to 600000 (600 MHz)? Yes, but it is not dividable by 132000, so I don't know if it will work?
Guest Holograph Posted September 19, 2010 Report Posted September 19, 2010 Yes, but it is not dividable by 132000, so I don't know if it will work? Hmmm, then I'd say 660000, but that's a way too much. What if we change the multiplier (if it's named that way) to 120000, and the freq to 600000?
Guest gusthy Posted September 19, 2010 Report Posted September 19, 2010 There is an other possibility, now I try this: http://forum.xda-developers.com/showthread.php?t=666850 If this fails, I will go back to that solution with the table.
Guest SpankyHam Posted September 19, 2010 Report Posted September 19, 2010 Just wondering if Overclocking the CPU when we can't improve cooling is a good idea? Not sure how much play we have in temp when the phone is running at 100%....
Guest gusthy Posted September 19, 2010 Report Posted September 19, 2010 Just wondering if Overclocking the CPU when we can't improve cooling is a good idea? Not sure how much play we have in temp when the phone is running at 100%.... Good question, we shall see. Hopefully the phone cannot be killed, since it has temperature sensors.
Guest Simon O Posted September 19, 2010 Report Posted September 19, 2010 Good question, we shall see. Hopefully the phone cannot be killed, since it has temperature sensors. ARM processors generate very little heat and the small overclock they are given in some other devices don't increase this heat output by very much. Actually most of the heat is from the battery.
Guest il_cholo Posted September 19, 2010 Report Posted September 19, 2010 (edited) will really improve general performance with the memory bottleneck? mmm......... Edited September 19, 2010 by il_cholo
Guest Simon O Posted September 20, 2010 Report Posted September 20, 2010 will really improve general performance with the memory bottleneck? mmm......... It will only improve perfomance with applications that fully utilise the CPU. GPS applications, video players etc. With general daily usage you probably won't notice that much of a difference.
Guest wats0n Posted September 20, 2010 Report Posted September 20, 2010 (edited) Yes, but it is not dividable by 132000, so I don't know if it will work? { 528000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 550000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 560000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, You are right, the prototype from XDA is Here The Soucre for 780 Like the code to extend the clocks. It could work in Rom 1.5 version, and the change in the setcpu.c isn't needed. But it needs to cooperate with SetCPU app, with the manual setting in setcpu.txt which in the root of sdcard. By the way, the maximum is 800MHz. The highest clock could work but the performance is low than my expect. Best, Wats0n Edited September 20, 2010 by wats0n
Guest Fusion0306 Posted September 20, 2010 Report Posted September 20, 2010 { 528000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 550000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 560000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, You are right, the prototype from XDA is Here The Soucre for 780 Like the code to extend the clocks. It could work in Rom 1.5 version, and the change in the setcpu.c isn't needed. But it needs to cooperate with SetCPU app, with the manual setting in setcpu.txt which in the root of sdcard. By the way, the maximum is 800MHz. The highest clock could work but the performance is low than my expect. Best, Wats0n Is it stable?
Guest pk0102 Posted September 21, 2010 Report Posted September 21, 2010 { 528000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 550000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, { 560000, ACPU_PLL_2, 2, 1, 132000, 3, VDD_7, 128000, 0, 5, -1 }, You are right, the prototype from XDA is Here The Soucre for 780 Like the code to extend the clocks. It could work in Rom 1.5 version, and the change in the setcpu.c isn't needed. But it needs to cooperate with SetCPU app, with the manual setting in setcpu.txt which in the root of sdcard. By the way, the maximum is 800MHz. The highest clock could work but the performance is low than my expect. Best, Wats0n Would u please share the details of the modification? Thanks a lot
Guest wats0n Posted September 21, 2010 Report Posted September 21, 2010 Would u please share the details of the modification? Thanks a lot Just Like the 780 code to extend the higher frequency, then re-compile the kernel. But it needs the SetCPU app from XDA to change the maximum frequency by manual. It's very unstable above 600Mhz in CHT8000.... Best, Wats0n
Guest BigBearMDC Posted September 21, 2010 Report Posted September 21, 2010 Just Like the 780 code to extend the higher frequency, then re-compile the kernel. But it needs the SetCPU app from XDA to change the maximum frequency by manual. It's very unstable above 600Mhz in CHT8000.... Best, Wats0n You don't need SetCPU. You can set the frequency via the proc fs: echo 780000000 >/proc/cpu/max_frequency (or something similar) and change /proc/cpu/scaling_governor to performance echo "performance" >/proc/cpu/scaling_governor Thus you can overclock your Pulse via a script, optionally even through the init.rc at startup. Best regards, BB
Guest BigBearMDC Posted September 21, 2010 Report Posted September 21, 2010 If flibble allows me to, I'll add the new acpuclock file to his custom kernel (besides from MT btw :lol:) and add the appropriate settings to the kernel config file, to be able to disable overclocking.
Guest flip360 Posted September 21, 2010 Report Posted September 21, 2010 If flibble allows me to, I'll add the new acpuclock file to his custom kernel (besides from MT btw :lol:) and add the appropriate settings to the kernel config file, to be able to disable overclocking. wowowowowow, wait a sec, "besides MT"? PLEASE DO BOTH :)
Guest starkos Posted September 21, 2010 Report Posted September 21, 2010 If flibble allows me to, I'll add the new acpuclock file to his custom kernel (besides from MT btw :)) and add the appropriate settings to the kernel config file, to be able to disable overclocking. Will they be the same as those from the 780 source at xda or are they modified specifically for the Pulse? If the later could you please upload the files (in a directory tree so I know where they go lol) for those of us building the kernel our selves? :lol:
Guest AntonioPT Posted September 21, 2010 Report Posted September 21, 2010 If flibble allows me to, I'll add the new acpuclock file to his custom kernel (besides from MT btw :)) and add the appropriate settings to the kernel config file, to be able to disable overclocking. MT? YEEEEAH!!! :lol:
Guest BigBearMDC Posted September 21, 2010 Report Posted September 21, 2010 Will they be the same as those from the 780 source at xda or are they modified specifically for the Pulse? If the later could you please upload the files (in a directory tree so I know where they go lol) for those of us building the kernel our selves? :lol: I'll test the Pulse with different clocks and see which one works best. After that I can upload a filetree with the needed files, but that is going to take a while. I'm pretty busy atm :) Best regards, BB
Guest starkos Posted September 21, 2010 Report Posted September 21, 2010 I'll test the Pulse with different clocks and see which one works best. After that I can upload a filetree with the needed files, but that is going to take a while. I'm pretty busy atm :) Best regards, BB Nice one, and no worries there's no rush anyway... :lol:
Guest Simon O Posted September 21, 2010 Report Posted September 21, 2010 If flibble allows me to, I'll add the new acpuclock file to his custom kernel (besides from MT btw :)) and add the appropriate settings to the kernel config file, to be able to disable overclocking. Codes on github, feel free to play with it :lol:
Guest flip360 Posted September 21, 2010 Report Posted September 21, 2010 (edited) can we have some kind of flashable zip for this updated kernel, for users that dont compile from github? thanks Edited September 21, 2010 by flip360
Guest gusthy Posted September 21, 2010 Report Posted September 21, 2010 Codes on github, feel free to play with it :lol: Hmmm, no new acpuclock.c is in github, BB, probably can you put it there? Then I don't need to spend time finding out everything...
Guest Simon O Posted September 21, 2010 Report Posted September 21, 2010 Hmmm, no new acpuclock.c is in github, BB, probably can you put it there? Then I don't need to spend time finding out everything... The code on github is just the code from Huawei. I've changed nothing in it myself.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now