Go Back   Android Forums > Android Phones > Motorola Droid 2 > Droid 2 - All Things Root
Droid 2 - All Things Root Rooting, ROMS, Overclocking, etc.
Gamers - Check out our new sister sites!
Nintendo Wii U!    |    OUYA - $99 Android System!

test: Reply
 
LinkBack Thread Tools
Old October 20th, 2010, 11:36 AM   #51 (permalink)
New Member
 
Join Date: Jun 2010
Posts: 9
 
Device(s):
Carrier: Not Provided

Thanks: 3
Thanked 0 Times in 0 Posts
Default

I can't get 1.4 @ 64 to work. As soon as I set it, the phone slows to an unusable crawl.

n0yd is offline  
Reply With Quote
Sponsors
Old October 20th, 2010, 11:41 AM   #52 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

Quote:
Originally Posted by n0yd View Post
I can't get 1.4 @ 64 to work. As soon as I set it, the phone slows to an unusable crawl.
1.4GHz @ 64 is asking a lot. I'm tweaking my 1.3GHz setup now and 64 reboots immediately in a stress test. I'm guessing 1.4GHz would require a good bit more.
Cilraaz is offline  
Reply With Quote
Old October 20th, 2010, 11:42 AM   #53 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Then bump the voltage up some of you do that and it still sucks your phone may not like 1.4
edit 64 is my voltages at 1.3
bizzshow is offline  
Last edited by bizzshow; October 20th, 2010 at 11:49 AM. Reason: I hate SwiftKey at times
Reply With Quote
Old October 20th, 2010, 11:47 AM   #54 (permalink)
Senior Member
 
Redflea's Avatar
 
Join Date: Oct 2009
Posts: 2,623
 
Device(s): Droid2, Rooted Tweaked Stock
Carrier: Not Provided

Thanks: 33
Thanked 287 Times in 143 Posts
Default

I believe Walcs was running 1.4 at 73 or so...64 is a BIG ask for that speed.
Redflea is offline  
Reply With Quote
Old October 20th, 2010, 11:49 AM   #55 (permalink)
Senior Member
 
Thornfullessrose's Avatar
 
Join Date: May 2010
Location: Philadelphia, PA
Posts: 840
 
Device(s): Motorola DROID
Carrier: Not Provided

Thanks: 93
Thanked 63 Times in 60 Posts
Default

is anyone working on a easier process for us non-advanced root users?
__________________
CM7 Gingerbread
600mhz
Thornfullessrose is offline  
Reply With Quote
Old October 20th, 2010, 11:51 AM   #56 (permalink)
Senior Member
 
Super_Six_Two's Avatar
 
Join Date: Aug 2010
Location: NJ
Posts: 594
 
Device(s): Droid 2 Rooted
Carrier: Not Provided

Thanks: 8
Thanked 76 Times in 68 Posts
Default

Quote:
Originally Posted by Thornfullessrose View Post
is anyone working on a easier process for us non-advanced root users?
Well I haven't actually had time to do this yet, but I will see if I can come up with some step by step instructions when I do.
Super_Six_Two is offline  
Reply With Quote
Old October 20th, 2010, 11:52 AM   #57 (permalink)
Senior Member
 
Thornfullessrose's Avatar
 
Join Date: May 2010
Location: Philadelphia, PA
Posts: 840
 
Device(s): Motorola DROID
Carrier: Not Provided

Thanks: 93
Thanked 63 Times in 60 Posts
Default

Quote:
Originally Posted by Super_Six_Two View Post
Well I haven't actually had time to do this yet, but I will see if I can come up with some step by step instructions when I do.
ok
Thornfullessrose is offline  
Reply With Quote
Old October 20th, 2010, 12:02 PM   #58 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

Finally stable at 1.3 @ 66. Ugh.

Carrying my data forward:

1.2 @ 59: 470 sec stress test hit 38*C; Quadrant scores - 1708, 1632, 1622
1.3 @ 66: 317 sec stress test hit 42*C; Quadrant scores - 1669, 1714, 1699

That's a heck of a voltage and temp increase for fairly little return. I guess I got a rather 'meh' CPU. I'll probably try 1.4GHz, but I doubt I'll get a reasonable return.

[edit: For those running 1.3 and 1.4, what temps are you seeing?]
Cilraaz is offline  
Last edited by Cilraaz; October 20th, 2010 at 12:57 PM.
Reply With Quote
Old October 20th, 2010, 12:07 PM   #59 (permalink)
Senior Member
 
Redflea's Avatar
 
Join Date: Oct 2009
Posts: 2,623
 
Device(s): Droid2, Rooted Tweaked Stock
Carrier: Not Provided

Thanks: 33
Thanked 287 Times in 143 Posts
Default

For those of you who are moderately technical but don't want to use ADB or Terminal on the D2 to type commands (tedious after a while), you can use Gscript from the market to do some simple overclocking automation all directly on your D2.

Put a text file w/the install commands on your SD card (or copy them from a web page, whatever method you prefer). Copy/paste the install commands into a new script in gscript, and place the two files (overclock.ko and setscaling.sh) on your SD card in the appropriate directory, and run the script in gscript.

For example - I use the script below to set up a "clean" D2 for 1.2 OC (Gscript has a checkbox to confirm that su is required, so you don't need to include that in the script).

cd /sdcard/OC [NOTE: this is where I placed the OC files I'm using]
mount -o rw,remount -t ext3 /dev/block/mcblk1p21 /system
cp overclock.ko /system/lib/modules/overclock.ko
cp setscaling200.sh /system/xbin/setscaling200.sh
chmod 644 /system/lib/modules/overclock.ko
chmod 755 /system/xbin/setscaling200.sh
mount -o ro,remount -t ext3 /dev/block/mcblk1p21 /system
insmod /system/lib/modules/overclock.ko
setscaling200.sh

This script only works if you have overclock.ko and setscaling200.sh in a folder in the root of your SD card called OC. Edit the script if you use a different directory or your setscaling file has a different name. You need to create the setscaling200.sh file by pasting the contents below into a text file and naming it setscaling200.sh. Each "echo" should start a new line in the file.

If I install a new ROM or new version of a ROM , I can simply run that script in GScript and my OC is set up in seconds.

The contents of the 1.2 setscaling file I use are below.

echo 62 > /proc/overclock/max_vsel
echo 1200000 > /proc/overclock/max_rate
echo 1 300000000 27 > /proc/overclock/mpu_opps
echo 2 700000000 38 > /proc/overclock/mpu_opps
echo 3 900000000 50 > /proc/overclock/mpu_opps
echo 4 1200000000 62 > /proc/overclock/mpu_opps
echo 0 1200000 > /proc/overclock/freq_table
echo 1 900000 > /proc/overclock/freq_table
echo 2 700000 > /proc/overclock/freq_table
echo 3 300000 > /proc/overclock/freq_table

Hope that helps some...

You can create scripts for various overclock settings to make it easy to switch between them, and you can export scripts from Gscript and execute them w/out gscript if you want.
Redflea is offline  
Last edited by Redflea; October 20th, 2010 at 02:43 PM.
Reply With Quote
Old October 20th, 2010, 12:56 PM   #60 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 12
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by bizzshow View Post
Voltages necessary will depend on your phone mine is running great at 1.3 and 64vsel hours yours may run at that voltage or more I haven't tried 1.4 but probably will tonight
lmao, stagefright?
WalCs is offline  
Reply With Quote
Sponsors
Old October 20th, 2010, 01:26 PM   #61 (permalink)
Senior Member
 
Thornfullessrose's Avatar
 
Join Date: May 2010
Location: Philadelphia, PA
Posts: 840
 
Device(s): Motorola DROID
Carrier: Not Provided

Thanks: 93
Thanked 63 Times in 60 Posts
Default

Quote:
Originally Posted by Redflea View Post
The 1.2 setscaling file I use is:

echo 62 > /proc/overclock/max_vsel
echo 1200000 > /proc/overclock/max_rate
echo 1 300000000 27 > /proc/overclock/mpu_opps
echo 2 700000000 38 > /proc/overclock/mpu_opps
echo 3 900000000 50 > /proc/overclock/mpu_opps
echo 4 1200000000 62 > /proc/overclock/mpu_opps
echo 0 1200000 > /proc/overclock/freq_table
echo 1 900000 > /proc/overclock/freq_table
echo 2 700000 > /proc/overclock/freq_table
echo 3 300000 > /proc/overclock/freq_table

can some one tell me where this↑↑↑ comes in? is it a command? or...???





Hey Redflea: I get this in Gscript↓
<script src='http://img84.imageshack.us/shareable/?i=cap201010201357.jpg&p=tl' type='text/javascript'></script><noscript></noscript>
Thornfullessrose is offline  
Last edited by Thornfullessrose; October 20th, 2010 at 02:05 PM.
Reply With Quote
Old October 20th, 2010, 01:39 PM   #62 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Quote:
Originally Posted by WalCs View Post
lmao, stagefright?
Yep 1.3 and stagefright just to see what it would net I've disabled it through no need for it. I average around 1700 without kinda sucks
and op use terminal or if you have root explorer navigate to hit and tap it should give you an option to execute. If using terminal just type sure enter then the name enter
bizzshow is offline  
Last edited by bizzshow; October 20th, 2010 at 01:43 PM.
Reply With Quote
Old October 20th, 2010, 01:46 PM   #63 (permalink)
New Member
 
Join Date: Sep 2010
Posts: 14
 
Device(s):
Carrier: Not Provided

Thanks: 3
Thanked 0 Times in 0 Posts
Default

where do i go to see the voltages or that bar scale that is shown above? Is it an app or is there a test you run?
jayxpx is offline  
Last edited by jayxpx; October 20th, 2010 at 01:50 PM.
Reply With Quote
Old October 20th, 2010, 01:46 PM   #64 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

Well, I finished my 1.4GHz overclock. It took a voltage setting of 75. Anyway, here are my results from stock speed to 1.4GHz:

1.0 @ stock: no stress test; Quadrant scores - 1506, 1494, 1486; Average score 1495
1.2 @ 59: 470 sec stress test hit 38*C; Quadrant scores - 1708, 1632, 1622; Average score 1654 (10.6% increase from stock)
1.3 @ 66: 317 sec stress test hit 42*C; Quadrant scores - 1669, 1714, 1699; Average score 1694 (13.3% increase from stock, 2.4% increase from 1.2)
1.4 @ 75: 300 sec stress test hit 42*C; Quadrant scores - 1775, 1802, 1774; Average score 1783 (19.2% increase from stock, 7.8% increase from 1.2, 5.2% increase from 1.3)

Each test was done under pretty much worse case scenario. Each time there was pre-built up heat from previous failed OC attempts and/or reboots. Each time the test was done while charging the phone, which adds some extra heat. The 1.4GHz overclock was never 100% stable, either. On the last attempt, I managed the 5 minute stress test and multiple Quadrant tests, but then the phone rebooted while idle.

For day-to-day, I'll likely either go back to stock speeds (it's not like the device was slow to start with) or maybe run at 1.2GHz.
Cilraaz is offline  
Reply With Quote
Old October 20th, 2010, 01:52 PM   #65 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 12
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by bizzshow View Post
Yep 1.3 and stagefright just to see what it would net I've disabled it through no need for it. I average around 1700 without kinda sucks
and op use terminal or if you have root explorer navigate to hit and tap it should give you an option to execute. If using terminal just type sure enter then the name enter
LOL, i got 1961 using no stagefright, i wonder what would i get if i used it...
WalCs is offline  
Reply With Quote
Old October 20th, 2010, 01:59 PM   #66 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Higher than mine. This was just to show that the g2 isn't the badest phone on the block especially since it has stagefright stock
bizzshow is offline  
Reply With Quote
Old October 20th, 2010, 02:01 PM   #67 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 12
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by bizzshow View Post
Higher than mine. This was just to show that the g2 isn't the badest phone on the block especially since it has stagefright stock
So you got 2400 with stagefright when only 1700 regular?
so that's 700 increase, so 1960+700 = 2660..WHOA
WalCs is offline  
Reply With Quote
Old October 20th, 2010, 02:01 PM   #68 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Should be be much higher than mine in did this just to show the g2 wasn't as much of a beast as though especially at 1.4 and it already has stagefright just enabled
bizzshow is offline  
Reply With Quote
Old October 20th, 2010, 02:04 PM   #69 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 12
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

How high do you think it will go?
WalCs is offline  
Reply With Quote
Old October 20th, 2010, 02:05 PM   #70 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 3
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by Redflea View Post
For those of you who are moderately technical but don't want to use ADB or Terminal on the D2 to type commands (tedious after a while), you can use Gscript from the market to do some simple overclocking automation all directly on your D2.

Put a text file w/the install commands on your SD card (or copy them from a web page, whatever method you prefer). Copy/paste the install commands into a new script in gscript, and place the two files (overclock.ko and setscaling.sh) on your SD card in the appropriate directory, and run the script in gscript.

For example - I use the script below to set up a "clean" D2 for 1.2 OC (Gscript has a checkbox to confirm that su is required, so you don't need to include that in the script):

cd /sdcard/OC [NOTE: this is where I placed the OC files I'm using]
mount -o rw,remount -t ext3 /dev/block/mcblk1p21 /system
cp overclock.ko /system/lib/modules/overclock.ko
cp setscaling200.sh /system/xbin/setscaling200.sh
chmod 644 /system/lib/modules/overclock.ko
chmod 755 /system/xbin/setscaling200.sh
mount -o ro,remount -t ext3 /dev/block/mcblk1p21 /system
insmod /system/lib/modules/overclock.ko
setscaling200.sh

If I install a new ROM or new version of a ROM , I can simply run that script in GScript and my OC is set up in seconds.

The 1.2 setscaling file I use is:

echo 62 > /proc/overclock/max_vsel
echo 1200000 > /proc/overclock/max_rate
echo 1 300000000 27 > /proc/overclock/mpu_opps
echo 2 700000000 38 > /proc/overclock/mpu_opps
echo 3 900000000 50 > /proc/overclock/mpu_opps
echo 4 1200000000 62 > /proc/overclock/mpu_opps
echo 0 1200000 > /proc/overclock/freq_table
echo 1 900000 > /proc/overclock/freq_table
echo 2 700000 > /proc/overclock/freq_table
echo 3 300000 > /proc/overclock/freq_table

Hope that helps some...

You can create scripts for various overclock settings to make it easy to switch between them, and you can export scripts from Gscript and execute them w/out gscript if you want.
Kind of beat you to it in terms of scripts!

Got standalone over on XDA for D2 and DX. Code needs a lot of work though.

DOOverclock - Easier Way to OC Your Droid 2 - Page 2 - xda-developers
darkonion is offline  
Reply With Quote
The Following User Says Thank You to darkonion For This Useful Post:
Thornfullessrose (October 20th, 2010)
Sponsors
Old October 20th, 2010, 02:10 PM   #71 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

Quote:
Originally Posted by WalCs View Post
How high do you think it will go?
My 1.4GHz with Stagefright jumped up to 2757.

It didn't seem to actually improve performance any, though. So what in the world does it actually do?
Cilraaz is offline  
Reply With Quote
Old October 20th, 2010, 02:14 PM   #72 (permalink)
Senior Member
 
Redflea's Avatar
 
Join Date: Oct 2009
Posts: 2,623
 
Device(s): Droid2, Rooted Tweaked Stock
Carrier: Not Provided

Thanks: 33
Thanked 287 Times in 143 Posts
Default

Quote:
Originally Posted by Thornfullessrose View Post
can some one tell me where this↑↑↑ comes in? is it a command? or...???


Hey Redflea: I get this in Gscript↓
<script src='http://img84.imageshack.us/shareable/?i=cap201010201357.jpg&p=tl' type='text/javascript'></script><noscript></noscript>
You might be better off using Darkonion's approach...

DOOverclock - Easier Way to OC Your Droid 2 - Page 2 - xda-developers
Redflea is offline  
Reply With Quote
Old October 20th, 2010, 02:24 PM   #73 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 12
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by Cilraaz View Post
My 1.4GHz with Stagefright jumped up to 2757.

It didn't seem to actually improve performance any, though. So what in the world does it actually do?
It does nothing, just makes score looks better
WalCs is offline  
Reply With Quote
Old October 20th, 2010, 02:47 PM   #74 (permalink)
Senior Member
 
inssane's Avatar
 
Join Date: Dec 2009
Location: Chi-Town
Posts: 1,843
 
Device(s): ...and Boom goes the Dynamite
Carrier: Not Provided

Thanks: 179
Thanked 155 Times in 80 Posts
Default

What is the standard voltage number - stock?
Congrats to those with HUGE gains!!!
__________________
SHOT CALLER
RIP 2K1 Caddy STS - Hello 2K11 Chevy Cruze...25mpg vs 8mpg. WOOT
I am a MasterDebator
"Eat Me" on Yelp--also make sure to QuagMyTwitr
SoCo "Whatever's Comfortable" Guy - LIKE HIM!
inssane is offline  
Reply With Quote
Old October 20th, 2010, 03:01 PM   #75 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

Quote:
Originally Posted by inssane View Post
What is the standard voltage number - stock?
Congrats to those with HUGE gains!!!
Stock is 56 for 1GHz, and honestly, I saw very little gain outside of quadrant. The phone still felt like it had the same performance in normal usage, so I just set it back to stock.

[edit: I'm beginning to question 56 as stock. I'll make a new reply with my reasoning.]
Cilraaz is offline  
Last edited by Cilraaz; October 25th, 2010 at 12:26 PM.
Reply With Quote
The Following User Says Thank You to Cilraaz For This Useful Post:
inssane (October 20th, 2010)
Old October 20th, 2010, 03:01 PM   #76 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

No stagefright improves h264 encoding and decoding it's much faster than opencore but it has bugs with streaming audio
bizzshow is offline  
Reply With Quote
Old October 20th, 2010, 09:16 PM   #77 (permalink)
Senior Member
 
inssane's Avatar
 
Join Date: Dec 2009
Location: Chi-Town
Posts: 1,843
 
Device(s): ...and Boom goes the Dynamite
Carrier: Not Provided

Thanks: 179
Thanked 155 Times in 80 Posts
Default

Quote:
Originally Posted by bizzshow View Post
No stagefright improves h264 encoding and decoding it's much faster than opencore but it has bugs with streaming audio
Where can I get the file/DL instructions?
What kind of streaming audio bugs?

Links are fine if you have them for these questions. I looked for the stagefright insall and didn't find anything.
inssane is offline  
Reply With Quote
Old October 21st, 2010, 03:11 AM   #78 (permalink)
Member
 
kidon's Avatar
 
Join Date: Jul 2010
Posts: 123
 
Device(s): DroidD2DXBiOniC
Carrier: Not Provided

Thanks: 17
Thanked 18 Times in 12 Posts
Default

Quote:
Originally Posted by inssane View Post
Where can I get the file/DL instructions?
What kind of streaming audio bugs?

Links are fine if you have them for these questions. I looked for the stagefright insall and didn't find anything.
Isn't it some sort of build.prop edit??
kidon is offline  
Reply With Quote
Old October 21st, 2010, 04:20 AM   #79 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Yes it a build properties edit. If you have root explorer navigate to system mount system rw then long press the build properties open it in a text editor. Scroll down and you will see options for stagefright they should read false change them to true save it. After a reboot you should have stage fright
bizzshow is offline  
Reply With Quote
Old October 22nd, 2010, 02:01 AM   #80 (permalink)
Member
 
kidon's Avatar
 
Join Date: Jul 2010
Posts: 123
 
Device(s): DroidD2DXBiOniC
Carrier: Not Provided

Thanks: 17
Thanked 18 Times in 12 Posts
Default

Quote:
Originally Posted by jayxpx View Post
where do i go to see the voltages or that bar scale that is shown above? Is it an app or is there a test you run?
It's an app called Quadrant Standard, it's in the market.
kidon is offline  
Reply With Quote
Sponsors
Old October 23rd, 2010, 08:40 PM   #81 (permalink)
Member
 
Join Date: Feb 2010
Location: Baltimore, MD
Posts: 180
 
Device(s): HTC Thunderbolt
Carrier: Not Provided

Thanks: 4
Thanked 9 Times in 7 Posts
Default

Ughh, so I don't know if I just have a sad sad phone, or I'm doing something wrong. Every time I load the module, I edited the voltages and speeds to 1.2, as soon as I run the commands to run the module, the phone locks up for a second and immediately resets itself. Am I doing something wrong or is my phone just not good for overclocking? I read the original posts and I think I have the basic jist of it. I had an overclock D1 that I never had this much trouble overclocking. Any help would be greatly appreciated.
chrisjm00 is offline  
Reply With Quote
Old October 23rd, 2010, 09:40 PM   #82 (permalink)
Member
 
kidon's Avatar
 
Join Date: Jul 2010
Posts: 123
 
Device(s): DroidD2DXBiOniC
Carrier: Not Provided

Thanks: 17
Thanked 18 Times in 12 Posts
Default

Quote:
Originally Posted by chrisjm00 View Post
Ughh, so I don't know if I just have a sad sad phone, or I'm doing something wrong. Every time I load the module, I edited the voltages and speeds to 1.2, as soon as I run the commands to run the module, the phone locks up for a second and immediately resets itself. Am I doing something wrong or is my phone just not good for overclocking? I read the original posts and I think I have the basic jist of it. I had an overclock D1 that I never had this much trouble overclocking. Any help would be greatly appreciated.
What voltages are you attempting to run?
kidon is offline  
Reply With Quote
Old October 24th, 2010, 08:17 AM   #83 (permalink)
Member
 
Join Date: Feb 2010
Location: Baltimore, MD
Posts: 180
 
Device(s): HTC Thunderbolt
Carrier: Not Provided

Thanks: 4
Thanked 9 Times in 7 Posts
Default

I've gone from 56 all the way to 65 and no success.
chrisjm00 is offline  
Reply With Quote
Old October 25th, 2010, 12:33 PM   #84 (permalink)
Member
 
Join Date: Sep 2010
Posts: 156
 
Device(s): Samsung Droid Charge
Carrier: Not Provided

Thanks: 13
Thanked 19 Times in 17 Posts
Default

So has anyone actually taken a look at any of the proc files, specifically /proc/overclock/mpu_opps? There's a setting in /proc/overclock/mpu_opps labeled as "vseld". It might make sense that these are the default voltage settings. If so, my mpu_opps file shows them as 62/58/48/33 for each profile top to bottom. It shows these values regardless of my current speed settings, so I'd imagine they're the default voltages for 1000/800/600/300, respectively.

If these are indeed the default stock voltages, they may be a reason why some people are having problems when trying to overclock. The scripts included with the package from the original post show lower default voltages.

Is there anyone a bit more knowledgeable on the matter that might be able to tell if I'm right or wrong?
Cilraaz is offline  
Reply With Quote
Old October 28th, 2010, 04:25 PM   #85 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 3
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default Milestone Overclock 1.4.4.1 beta

Hi folks, I'm the Milestone Overclock guy. I just patched in support for Droid 2 in this beta version and I was hoping you could give it a try. I'm not sure the module will load and work because I don't have this phone. The module I'm using is exactly the same I use for the Droid X. The addresses are autodetected, so it should work nicely in D2 as long as the kernel accepts the module.

Thanks!
Tiago Sousa aka mirage
Attached Files
File Type: apk MilestoneOverclock1441_beta.apk (66.3 KB, 18 views)
tiagosousa is offline  
Reply With Quote
Old October 28th, 2010, 04:43 PM   #86 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Already have it I'll see if I unload my module and reload your if it will work but I believe the modules are different so for the d2 you would have to use the module in this thread
bizzshow is offline  
Reply With Quote
Old October 28th, 2010, 05:31 PM   #87 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Aug 2010
Posts: 99
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 70 Times in 20 Posts
Default

Quote:
Originally Posted by bizzshow View Post
Already have it I'll see if I unload my module and reload your if it will work but I believe the modules are different so for the d2 you would have to use the module in this thread
The module I posted in the OP is exactly the same as the DroidX module, except it has the memory addresses hard coded in for Droid 2, versus the one I posted for Droid X having the DX memory addresses hard coded. His new module autodetects everything and works on DX. It should therefore theoretically work for Droid2.

Please test this out...

This is so we can get official support for Droid2 in the Milestone Overclock kernel module. The modules I posted were patched/hacked and compiled against the OMAP kernel sources. Not the ideal situation, but it worked.

Tiago has cleaned up all the patches, and compiled the kernel against official Motorola kernel source. This is the right way!

All other Droid X/2 Overclock apps use Tiago's kernel module(the hacked version posted) to do the actual overclock. Lets get things working the right way!

And if you downloaded and paid for one of those other apps or just appreciate the ability to overclock, please donate to Tiago. He's the real reason you're overclocked right now. He doesn't really ask for donations like some do, so I am doing it for him. He is very deserving of the support of all who are overclocked on Droid X/2.
FreeWELL is offline  
Reply With Quote
Old October 28th, 2010, 06:26 PM   #88 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Cool ill try it out now

edit
just tried it works well getting 1850 in quadrant and 16.351 linpack scores any way to get it above 1.2
bizzshow is offline  
Last edited by bizzshow; October 28th, 2010 at 06:50 PM.
Reply With Quote
Old October 29th, 2010, 01:17 AM   #89 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 3
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by bizzshow View Post
Cool ill try it out now

edit
just tried it works well getting 1850 in quadrant and 16.351 linpack scores any way to get it above 1.2
That's great! I'll publish it in the market soon.

To get higher frequencies you have to define custom rate/vsel in the settings (beware that rate is in khz), then move the slider to the far right.

Yes, I know, you can't define the entire frequency table in the app. The app was meant as a simple tool for beginners, but I see now that undervolting is something people really want, so I'll look into it.
tiagosousa is offline  
Reply With Quote
Old October 29th, 2010, 03:36 AM   #90 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Aug 2010
Posts: 99
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 70 Times in 20 Posts
Default

Quote:
Originally Posted by Cilraaz View Post
So has anyone actually taken a look at any of the proc files, specifically /proc/overclock/mpu_opps? There's a setting in /proc/overclock/mpu_opps labeled as "vseld". It might make sense that these are the default voltage settings. If so, my mpu_opps file shows them as 62/58/48/33 for each profile top to bottom. It shows these values regardless of my current speed settings, so I'd imagine they're the default voltages for 1000/800/600/300, respectively.

If these are indeed the default stock voltages, they may be a reason why some people are having problems when trying to overclock. The scripts included with the package from the original post show lower default voltages.

Is there anyone a bit more knowledgeable on the matter that might be able to tell if I'm right or wrong?
Load Milestone Overclock from the market, and "cat /proc/overclock/mpu_opps"... You'll get the proper output.

The new kernel module writes to both... vseld was a byproduct of nadlabak/kaldaban having developed his patch on on the Milestone Froyo Leak... No source, just poking at it. Pretty sick if you ask me. So his patch did spit out a bunch of extra garbled stuff like all those 1111's and 000's... But it worked!!!
FreeWELL is offline  
Reply With Quote
Sponsors
Old October 29th, 2010, 05:40 AM   #91 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 21
 
Device(s):
Carrier: Not Provided

Thanks: 2
Thanked 2 Times in 2 Posts
Default

Should have updated the post but not 5 minutes after posting in tried to the custom rate and got 1.4 added some it works about to load the update and see if it works with it
bizzshow is offline  
Reply With Quote
Old December 6th, 2010, 02:06 PM   #92 (permalink)
Junior Member
 
Join Date: Oct 2010
Posts: 80
 
Device(s):
Carrier: Not Provided

Thanks: 1
Thanked 11 Times in 10 Posts
Default QuickClock Overclock Assistant

Hey Folks,

Update: App discussion thread located here: [APP] QuickClock Overclock Assistant

I wanted to let everyone know that I've posted an app called QuickClock up on the market. It drastically reduces the amount of testing needed in order to find the best voltage settings. It's free for now, so snag it early.

Here's how it works: Find the absolute bare minimum vsel necessary at a given frequency that keeps the phone from crashing or turtling (but isn't necessarily "stable"). Slap that number and the frequency you used into the app, hit calculate, and BAM. You've got your battery-maximizing yet stable vsel recommendations.

Can't use this app to set them directly as I don't like the idea of packaging Tiago's work in my own app (at least not without talking to him first), but all those hours of testing and uncertainty will just fade away.

I'm using it like crazy now that I finally made it, and I hope you enjoy it too.

Here's the appbrain link: QuickClock Overclock Assistant - Android app on AppBrain
pandapaul is offline  
Last edited by pandapaul; December 22nd, 2010 at 05:08 PM.
Reply With Quote
Old December 24th, 2010, 02:08 PM   #93 (permalink)
New Member
 
Join Date: Dec 2010
Posts: 1
 
Device(s):
Carrier: Not Provided

Thanks: 0
Thanked 0 Times in 0 Posts
Default

I got 1804 with 1.3ghz@68 vsel
kdnva is offline  
Reply With Quote
Old November 8th, 2011, 07:28 PM   #94 (permalink)
Junior Member
 
Join Date: Nov 2011
Posts: 42
 
Device(s):
Carrier: Not Provided

Thanks: 13
Thanked 2 Times in 1 Post
Default

im noob at this. wht does thisd actually do?
thechadzor is offline  
Reply With Quote
Reply


Go Back   Android Forums > Android Phones > Motorola Droid 2 > Droid 2 - All Things Root
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 10:36 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.