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
ASUS R1F CPU upgrade
Last Post: bobo10
Today 03:40 PM
» Replies: 0
» Views: 47
Asus h110m-a & xeon e3-1280v5
Last Post: DeathBringer
Today 01:41 PM
» Replies: 1
» Views: 67
[REQUEST] Lenovo IdeaPad Flex 15 (8ACNxx...
Last Post: psycomaffo
Today 10:36 AM
» Replies: 69
» Views: 26001
Request for Modded BIOS with AI Tweaker ...
Last Post: CertifiedCosmos
Yesterday 05:04 PM
» Replies: 0
» Views: 103
Lenovo ThinkCentre M71e GPU Whitelist re...
Last Post: saschalein
Yesterday 03:23 PM
» Replies: 0
» Views: 89
[REQUEST] Lenovo Ideapad 330S-15ARR (7WC...
Last Post: nadolivbios
Yesterday 01:26 PM
» Replies: 25
» Views: 6114
How To Add SLIC 2.1 To An Intel Motherbo...
Last Post: sanya.silitskiy
Yesterday 11:52 AM
» Replies: 73
» Views: 219949
[REQUEST] 13w Yoga Gen 2 (Type 82YR) (KB...
Last Post: SiberianTiger97
Yesterday 09:48 AM
» Replies: 2
» Views: 159
Acer Extensa 5620: CPU replace
Last Post: MPM
Yesterday 08:28 AM
» Replies: 2
» Views: 137
[REQUEST] Sony Vaio VPCEH & VPCEJ series...
Last Post: nrns
04-16-2024 08:08 PM
» Replies: 232
» Views: 98438
[REQUEST] Lenovo Y70-70 (9ECNxxWW) White...
Last Post: Dudu2002
04-16-2024 02:35 PM
» Replies: 103
» Views: 24022
[REQUEST] Lenovo Yoga 2 Pro (76CNxxWW) W...
Last Post: Dudu2002
04-16-2024 07:29 AM
» Replies: 847
» Views: 324002
[REQUEST] Acer Predator Helios 300 PH315...
Last Post: Dudu2002
04-16-2024 07:28 AM
» Replies: 26
» Views: 998
[REQUEST] Lenovo ThinkPad P14s 3rd Gen 1...
Last Post: Dudu2002
04-16-2024 07:26 AM
» Replies: 4
» Views: 289
Add CPU support Lenovo M715s
Last Post: pashtet440
04-16-2024 06:56 AM
» Replies: 0
» Views: 140
[REQUEST] Lenovo G580 (5ECNxxWW) Whiteli...
Last Post: Dudu2002
04-14-2024 09:02 AM
» Replies: 1733
» Views: 542093
Dell Latitude 5520 - get to know passwor...
Last Post: yeti1299
04-14-2024 06:48 AM
» Replies: 2
» Views: 244
[REQUEST]: Asus TP420IA - how to dump bi...
Last Post: quantumx3
04-14-2024 05:34 AM
» Replies: 0
» Views: 212
[REQUEST] Lenovo Y50-70 (9ECNxxWW) BIOS ...
Last Post: Nightdemon2001
04-14-2024 01:13 AM
» Replies: 2319
» Views: 656576
[REQUEST] Lenovo B575 (52CNxxWW) Whiteli...
Last Post: thepwrtank18
04-13-2024 06:13 PM
» Replies: 56
» Views: 20446

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: 2)
find
quote


Forum Jump:


Users browsing this thread: 1 Guest(s)