Hi
Several weeks ago, xda-developers community learned about one important setting in all wm5 devices, called PagePool, that can significantly boost speed (at expense of free RAM - tradeoffs, tradeoffs...) of pretty much every WM5 device out there. PagePool is the amount of RAM given to running a code at any given time. So the advantage of having a bigger PP is felt when you run several heavy programs at once. Here is comment from Mike Calligaro (from WM team):
RAM is used by 2 things: Data and Code. Any code that can’t execute in place (XIP) in ROM needs to be loaded into RAM and executed from there.
The page pool puts a cap on how much ram is used for code. No data is ever loaded into the pool. If you have a 2M page pool and regularly have 4M of code in use, you’ll spend a lot of time loading pages into the pool and unloading other pages from the pool. On the other hand, if you regularly have 4M of code in use and you have an 8M page pool, then you’ll just have 4M of the pool filled and the other 4M sitting idle. In that case, making the page pool larger would have absolutely no beneficial effect. All it would do is remove RAM that otherwise might have been used for Data.
The likelihood of a 24M page pool having any beneficial effect is tiny. You’d have to have an enormous program with a ton of code. It’s pretty easy to write code that uses a lot of ram for data. But it’s challenging to write code that needs that kind of RAM for code.
here is a reference to xda-developers thread on same issue:
http://forum.xda-developers.com/showthread.php?t=276630
Most of devices come with PP set between 4-8M. BlueAngel had only 2M and that was a reason why
mamaich has uncovered the bottleneck of low PP.
Changing PagePool setting requires patching rom and reflashing it to device. Therefore, all of advise given here is for experienced users, who know how to restore bricked device (e.g. from SD card) in case anything goes wrong during flashing.
Users of almost all HTC communicators will find more relevant threads at xda-developers. Purpose of this thread is to share knowledge with the owners of non-communicator devices, that are not discussed on xda-dev forums.
I have looked on IPAQ 2110, hx4700, and dell x51v and found following PagePool values
hx4700 4.8M
Ipaq 2110 5M
Dell X51v 8M
Experience from xda forums tells that PDAs with 64M RAM would benefit from setting PagePool to 8M. Note that Dell x51v already has this, while ipaqs can do twice better. And for PDAs upgraded to 128M RAM, 16M is a reasonable value. Some people set it to 24 and even 32M, since their devices have enough memory anyway. I use PP=16M on my Ipaq and feel that now it feels faster than 2003se at times.
If you decide to change PagePool on your device, you need
official rom upgrade utility, run it and quit before the last step, the actual flashing. You'll find .nbf file in installator's folder (Dell owner's will have .img file, which they need to convert to nb0 with img2nb0f tool from here
http://www.ppccool.com/index.php?act...e=post&id=1046
also please read this thread about flashing Dell with nb0 files
http://www.aximsite.com/boards/showthread.php?t=137015)
HP owners: I advise that you edit latest nbf (not 2.01) but you will later also need 2.01 flasher.
You can open nbf/nb0 file in any hexeditor (I use free XVI32.exe) and find following sequence
for hx4700
FF FF FF FF FF FF FF FF 9B 4F FF FF 64 B0 00 00 64 00 00 00 74 9A 1F 80 00 00 48 00
where last 4 words stand for PagePool as stored by processor. 00 00 48 00 means 480000 (pagepool=4.8M)
hx 2110 (WM 5.0 1.00.03.H RUS) just look for the shorter part of the same sequence, for example
FF FF FF FF FF FF FF FF 9B 4F FF FF 64 B0 00 00
you will find
FF FF FF FF FF FF FF FF 9B 4F FF FF 64 B0 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 50 00
pagepool=5M
for DellX51v sequence will be
FF FF FF FF FF FF FF FF 9B 4F FF FF 64 B0 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 80 00
pagepool=8M
Here are some values you may want to set there
00 00 80 00 =8M
00 00 C0 00 =12M
00 00 00 01 =16M
00 00 80 01 =24M
00 00 00 02 =32M
though I doubt anybody needs to go above 8M on 64M device and above 16 on 128M device.
Now, to flash it you need to use different procedures depending on device.
Dell users: please refer to the aximsite tutorial that I referenced above. You might need to calculate new CRC for you nb0 file.
I do not own Dell, I just helped to patch nb0 and have not heard whether flashing went successful yet.
IPAQ users: you probably edit the latest nbf, but you will need to use the very first version of flasher (i.e. one converting 2003se to WM5, not the 2nd or N-th upgrade). I do not know why, but my flashing timed out twice at 99% when using latest flasher. Same applies to 2110 users. Multiple attempts of flashing with latest flasher, or even with cracked one, was hanging at 1-2%. Only "2003se to WM5" flasher actually worked.
You need to start upgrade utility in its original form (i.e. with unmodified nbf file) wait till it checks that IPAQ is right and connected to power, etc and checks the nbf file. It gives you the last menu, something like "NOW PRESS TO FLASH". At this moment, you need to exchange nbf file with modified one. Then you can start flashing.
I WARN YOU ABOUT DANGER OF BRICKING YOUR DEVICE DURING FLASHING EXPERIMENTS. I AM IN NO WAY LIABLE IF THAT HAPPENS TO ANYONE. DO NOT ATTEMPT IT IF SOMETHING IS UNCLEAR TO YOU IN THE ABOVEMENTIONED INSTRUCTIONS, OR IF YOU DO NOT HAVE ANY PREVIOUS EXPERINCE WITH FLASHING CUSTOMIZED ROMS
Having sad that - Good Luck!
