Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
[REQUEST] Toshiba Satellite L750D & L755...
Last Post: thepwrtank18
Today 08:20 PM
» Replies: 14
» Views: 12872
Huananzhi x79-8d
Last Post: lomajpure
Today 01:13 PM
» Replies: 0
» Views: 82
Alienware M17x R3 Bios Unlock
Last Post: Dudu2002
Today 10:40 AM
» Replies: 12
» Views: 20911
ASUS M2N4-SLI new cpu
Last Post: cocossss
Yesterday 03:21 PM
» Replies: 8
» Views: 2098
[REQUEST] Gigabyte Aorus 15G KC BIOS unl...
Last Post: Dudu2002
10-14-2025 05:10 PM
» Replies: 35
» Views: 15817
Aorus 17G YD unlock bios?
Last Post: Dudu2002
10-14-2025 05:08 PM
» Replies: 1
» Views: 326
Unlocking the Hidden MAINTENANCE Menu of...
Last Post: 123BIOS
10-14-2025 10:31 AM
» Replies: 0
» Views: 504
[REQUEST] Lenovo Z50-70 & Z40-70 (9BCNxx...
Last Post: pitnixu
10-14-2025 04:12 AM
» Replies: 757
» Views: 365872
[REQUEST] Lenovo IdeaPad S400 (6DCNxxWW)...
Last Post: Jamil Missen
10-13-2025 10:04 PM
» Replies: 335
» Views: 166903
[REQUEST] Acer Aspire 5742(G,Z) BIOS Unl...
Last Post: deliter
10-13-2025 09:32 PM
» Replies: 168
» Views: 69931
[REQUEST]wwan whitelist removal ThinkPad...
Last Post: SkyShadow
10-13-2025 02:45 PM
» Replies: 0
» Views: 333
[REQUEST] Lenovo T440(S) (GJETxxWW) Whit...
Last Post: Dudu2002
10-13-2025 07:31 AM
» Replies: 499
» Views: 260904
HP Victus 16 Bios Splash Screen
Last Post: Onyxcho_Lune
10-13-2025 07:26 AM
» Replies: 0
» Views: 405
[REQUEST] Lenovo IdeaPad Gaming 3-15IHU6...
Last Post: Bobby123Patel
10-13-2025 06:38 AM
» Replies: 7
» Views: 4201
[REQUEST] HP Omen 16 InsydeH2O F.18 (08C...
Last Post: Wernexnrs
10-13-2025 04:16 AM
» Replies: 0
» Views: 443
[REQUEST] 775i65g Wolfdale
Last Post: DeathBringer
10-13-2025 01:53 AM
» Replies: 53
» Views: 33911
Dell XPS M1710 Overclock Tab Unlock Mod ...
Last Post: Skeleton
10-12-2025 08:55 PM
» Replies: 0
» Views: 274
[Request] AM3 support for ECS RS485M-M
Last Post: DeathBringer
10-12-2025 07:47 AM
» Replies: 3
» Views: 640
Optiplex 5055 RyzenBIOS Faulty (not upgr...
Last Post: LaszloE
10-12-2025 05:29 AM
» Replies: 2
» Views: 211
Intel Xeon E3 1270 V5 for LGA 1151 (ASUS...
Last Post: abruchez
10-12-2025 03:26 AM
» Replies: 4
» Views: 475

Acer Travelmate 5530G CPU upgrade to Turion Ultra ZM-87 - thermal throttling
#61
^^Previous post is a short/summarized version. For the long version, I just quote what asscut told me. I'm not understand some part of it yet but for now I can disassembled the BIOS using IDA & analyzed the instruction.
Quote:Hi!
IDA is working with segment address, BIOS (firmware) is working with linear address and processor is
working with physical address. Our purpose is calculate a physical address in order to understand the
code. At the same time, in real mode, the linear address coincides with the physical. In protected mode
is not the same and is calculated using a special algorithm.
The first phase of work with IDA is getting the segment address from linear BIOS address, this will give
an example (D4700A10.rom) how:
Theory
The entry point to all the BIOS is the address FFFFFFF0 (linear). He is an alias address 000FFFF0 (in 1Mbit
BIOS chip ), or 0007FFF0 (in 512 Mbit). Last 64 kB is 000F0000-000FFFFF (linear) or F000:0000-F000:FFFF
(segment). For 512 kB chip: 00070000-0007FFFF(linear) or 7000:0000-7000:FFFF(segment).
Where in the segment address F000 is BASE, 0000-FFFF is OFFSET; or 7000 is BASE and 0000-FFFF is
OFFSET into segment. Linear address=Segment BASE shifted left on 4 bits+OFFSET. Ex: base F000, offset
1000, linear address=
shifted base F0000+1000=F1000.
The challenge for understanding. Сomputational linear address: base 0040, offset 0067.Answer 467.

Practiсe.
Load file.rom into IDA. We look forward to. Create a segment in the last 64 kilobytes of code.To do this
click EDIT->SEGMENTs->Create segment->
A pop-up window select the settings:
NAME- I always select the name of F000, you can specify any.
Start address: 0x00070000
End adress: 0x00080000
Base: 0x7000
Class: Code
put a point on a 16-bit-> push OK.
Result: we made 64 kB segment into file.rom named "F000".
go to F000:FFF0 to start

I have been told all BIOS have the same entry point which is F000:FFF0. I already tested this on two different BIOS, Dell BIOS & Phoenix BIOS. They have the same entry point. Next, just follow the jump instruction to find the rest of the instruction code. Smile

BTW, don't forced IDA when analyzed the instruction. When dialog box popup asking whether you want to forced it or not, just click NO or CANCEL. I don't know the best approached for this but for now I don't want to forced it.

(Regarding the .ROM file.) Usually there are two files; 1) .ROM/.BIN & 2) .WPH; in the BIOS package. .WPH is a BIOS image + platform data/signature at the end of the file. .ROM only contain BIOS image. The .ROM file is the one we want to disassembled. In case there is only one file in the BIOS package, to get the .ROM (BIOS image) from it is easy. If the length of the content is 0x20XXXX, then the .ROM is from offset 0x000000 to 0x200000. If the length of the content is 0x10XXXX, then the .ROM is from offset 0x000000 to 0x100000. (and so on.)

If you use my modified BIOS image & you like it, please consider making a donation. Thank you very much. Smile
Donate Here
find
quote
#62
Sorry for the long pause again. I've started following your instructions in IDA, and all I can say is that this could be a fun game if there weren't so many attempts to deceive the human reader where the execution jumps next Smile.
I especially like the parts where it increases and/or subtracts from a register then jumps to its value in the F000 segment.
I've found some wrmsr instructions with a familiar MSR address loaded into ECX before them. One such was "0C001001Fh" which is MSRC001_001F Northbridge Configuration Register (NB_CFG). So that looks promising...
What I'll have to look for then is the string "0C0010062h". If that is moved into ECX and wrmsr executed afterwards, then that is a p-state switch.
find
quote
#63
Don't worry. I'm surprise you still have time to look into this during your vacation. Wink

We're actually falling behind. I heard BIOS-MODS team already able to read ROMEXECx.ROM module. Big Grin

If you use my modified BIOS image & you like it, please consider making a donation. Thank you very much. Smile
Donate Here
find
quote
#64
I think I'm quite stuck with disassembling the entire BIOS image. I've even used Excel spreadsheets to keep track of the registers' contents (although when EAX is loaded from an IO port, I really don't have a clue what's in there, not that EAX is used in jump instructions...), but no success. I've gotten to a point where it jumps to EBX's content address, but that points me to padding zeros (dead end)!
Is there a chance that some of these new findings by the BIOS-mod team could be leaked out Big Grin? It sure would be easier to know the entry points of the BIOSCOD_ files Smile.
find
quote
#65
(08-04-2011, 06:52 AM)Blasku Wrote: It sure would be easier to know the entry points of the BIOSCOD_ files Smile.
This is the next thing I want to find out. Big Grin

BTW, I don't see ROMEXEC mod can be useful for adding support for new CPU. I think we're in the right track. Next, we need to look into AGESA module. I strongly believe we need to update AGESA module too.

If you use my modified BIOS image & you like it, please consider making a donation. Thank you very much. Smile
Donate Here
find
quote
#66
Right, I think I might have mixed the ROMEXEC modules with BIOSCOD modules Blush .
Anyway, I've returned to looking at the AGESA modules from the Ferrari 1200's and FuSi Sa3650's BIOS, and I might have already mentioned this, but my TravelMate seems to have version 4.4.0.0, while the Ferrari has 4.3.0.0 and the Amilo has 4.1.0.2 or something. Isn't the AGESA module supposed to be uniform? If yes then are you sure switching the current one to an older version is going to help?
And what I'm really interested in is the offset at which the AGESA module starts (and ends) in the _C00.PEI file. I'll look into that...
find
quote
#67
Actually I have never heard AGESA before until you mentioned it to me. Smile But I believe AGESA module is uniform too, just like microcode. I think it's time to trial & error. Big Grin

If you use my modified BIOS image & you like it, please consider making a donation. Thank you very much. Smile
Donate Here
find
quote
#68
BTW, I've tried setting the F3xDC register under Linux, and it doesn't seem to work at all Huh. I used `setpci` for the task, and now I can't decide if setpci uses some protected mode to not have to actually set the register, or the CPUFreq module / kernel doesn't even use these registers (that would be gold Big Grin)?
Any Linux guru around here who could tell me how throttling is implemented on this low (hardware register) level?

P.S.: I'll try to find the time/patience to switch the AGESA soon.
find
quote
#69
Right, I still didn't do anything productive yet, but I'll edit this post the moment I switched my AGESA module. In the meantime, for anyone who's interested: the people at Rebel's Haven already found out where the AGESA starts.
find
quote
#70
OK, time to wrap things up here. I've given up on modifying the BIOS, obviously. The fallback solution is working great, so the problem is actually solved.
The reason I'm writing this post is that I can now set the register under Linux successfully. In fact, I always could! What I forgot was to restart the powernow_k8 module afterwards. It would seem that the module doesn't look for changes in the PCI registers after it has been initialized, which makes a lot of sense: that would be a waste of CPU time.
I've attached both the Windows batch and Linux shell scripts that I use for setting the lowest P-state. It could be useful as a sample for anyone that stumbles upon this topic.


Attached Files
.zip   LowestPState_scripts.zip (Size: 2.05 KB / Downloads: 3)
find
quote


Forum Jump:


Users browsing this thread: 2 Guest(s)