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] Lenovo IdeaPad Z570 (45CNxxWW)...
Last Post: Dudu2002
Today 08:49 AM
» Replies: 95
» Views: 113525
[REQUEST] Acer Aspire VN7-791(G) BIOS Un...
Last Post: Dudu2002
Today 02:16 AM
» Replies: 91
» Views: 89592
BIOS Unlock Request – Dell Latitude 5420
Last Post: gata.infernum
Yesterday 09:14 PM
» Replies: 0
» Views: 98
Asus T100
Last Post: EmmetIsOfficial
Yesterday 02:33 PM
» Replies: 6
» Views: 11802
BIOS Unlock Request – Dell Latitude 7480
Last Post: na3nou3.electronics
06-28-2025 10:33 AM
» Replies: 1
» Views: 218
[REQUEST] Lenovo G510 (79CNxxWW) Whiteli...
Last Post: Dudu2002
06-27-2025 12:58 PM
» Replies: 597
» Views: 298935
[REQUEST] Lenovo G570 (40CNxxWW) Whiteli...
Last Post: Mark738
06-27-2025 12:07 PM
» Replies: 172
» Views: 160300
Lenovo Y550 BIOS Unlocking (Advanced Men...
Last Post: kentsergeo
06-27-2025 01:23 AM
» Replies: 1
» Views: 566
[REQUEST] Toshiba Satellite L650 WhiteLi...
Last Post: averagenokiauser
06-26-2025 02:58 PM
» Replies: 15
» Views: 7428
[REQUEST] Thunderobot 911s Core BIOS Unl...
Last Post: EgaschNSK
06-26-2025 07:28 AM
» Replies: 0
» Views: 362
[REQUEST] Lenovo G400S (7BCNxxWW) Whitel...
Last Post: Roago
06-25-2025 06:50 PM
» Replies: 215
» Views: 108713
[REQUEST] Toshiba Satellite L750 & L755 ...
Last Post: EiadSherif2008
06-25-2025 05:12 PM
» Replies: 78
» Views: 57472
Lenovo B590 unlock the checking original...
Last Post: leecher1337
06-25-2025 02:42 PM
» Replies: 34
» Views: 26536
[REQUEST] Sony Vaio SVE141 & SVE151 seri...
Last Post: Reza1
06-25-2025 12:28 PM
» Replies: 52
» Views: 31750
BIOS Mod to Disable Intel iGPU on Acer V...
Last Post: DeathBringer
06-25-2025 05:14 AM
» Replies: 7
» Views: 582
[REQUEST] Veriton M2610 - Ivy Bridge Sup...
Last Post: callumfix77
06-24-2025 05:17 AM
» Replies: 24
» Views: 14417
[REQUEST] Check my bios mod ASUS TUF A15...
Last Post: waayo69
06-23-2025 07:46 PM
» Replies: 0
» Views: 486
Sony Vaio VGN-FE31M (R0170J3) / VGN-FE41...
Last Post: geanna
06-22-2025 06:37 PM
» Replies: 54
» Views: 69404
[REQUEST] Acer Aspire 4750(G,Z) & 4752(G...
Last Post: vladimir500
06-22-2025 06:45 AM
» Replies: 49
» Views: 49441
[Request] Lenovo v520s sff unit bios sup...
Last Post: DeathBringer
06-21-2025 02:05 PM
» Replies: 9
» Views: 1052

Search for Trinity Boostlock
#1
I've decompressed an Insyde BIOS for a trinity laptop, and am trying to find where the boostlock bit is set. It is bit 31 in D0F4x15C.

If this bitlock could be found and removed, trinity laptops could then be forced to run maximum multiplier at all times for a 15%+ frequency boost. It may also be responsible for locking out IGP overclocking.

I've tried looking for code that writes to D0F4x15C specifically. I've looked for code that performs a set of bit 31, then outputs to a PCI config register. I've also searched the BIOS for what and how registers must be set to write to D0F4x15C. I've found a lot of writes to PCI config space, but have identified none for D0F4x15C.

Instead of sticking to one method for writing to PCI config space, the BIOS uses literally every possible method. This has made it difficult to search for where the bit is set, and I'm hoping someone here might have an idea of what to search for in the BIOS files.

Below are the basic methods to write to this register that I am aware of:


1. "out" instruction to write to IO ports 0xcf8 and 0xcfc.

0xcf8 is the PCI config space port address register, and 0xcfc is the data register. The "out" instruction must be used twice, first to set the address, then to set the data. The code "out dx,eax" preforms the config space writing. Prior to setting the address, the dx must be 0xcfc, and the eax must be 0x8100c45c. The dx must be 0xcfc prior to writing the data. The eax must be 0x80000080 for the final data write to D0F4x15C.

2. "outs" instruction to write to IO ports 0xcf8 and 0xcfc.

Similar to "out" usage. The dx register is still used to set the port address, but the data to write now comes from a memory address referenced by the DS register.

3. Direct write to D0F4x15C's MMIO address 0xF80C415C.
This method bypasses the PCI config IO ports and writes directly to the MMIO location. Code for this is along the lines of "mov [qword 0xF80C415C],reg", where the value of the register in the 2nd operand is the data to write (0x80000080).

I have found many instances of "out" and "outs" use to write to PCI config space. I have only found a few places where the direct write method was used.

Usually for "out" the bios does "mov dx,0xcf*" to set the IO port address. There will be some variations like clearing the eax then using "add" instead of "mov", or the DX will have 4 added to it to get to the data port from the address port. Sometimes the BIOS is very nice and has a blatant "mov eax,0x8*00****" for setting the eax, but of course they can't stick to this easy to understand method. The big problem is understanding where and what data is written when functions are used. There are several generic functions (call (d)word 0x****) for writing to PCI config space. They usually use the edx for the device, function, and standard offset, the ecx for data, and the eax for the extended offset, but I saw at least 1 version where this was mixed around (using "pop eax" instead of "mov eax,ecx" for data). When trying to trace back the function calls I'll get lost after 2-3 jumps and still not know where or what data was sent.

I'm pretty lost on understanding the "outsd"s since that requires following indexed pointers, then finding that those values were set by registers and not immediate values, then trying to backtrack those registers...

The few instances of direct MMIO writes are easy to understand, but the fact that I've found so few makes me think that there's also another method used to write them that I just haven't found yet.

I've found a few "bts eax,0x1f"s, "or eax,0x80000000"s, and 16 bit equivalents, but have ruled out all I have found for D0F4x15C. "or eax,0x80000000" is actually used quite often to set 0xcf8 for IO to be routed to the PCI config space instead of other IO. This is very annoying since I also expect this type of operation for setting the boostlock bit, and it is used all the time for the majority of PCI config writes. There are many variants such as "bts ecx,0x1f", and these are difficult to rule out for being used to set eax later on.


I'm getting to the point where it looks like I'll have to try out decompilers in attempt to trace back what many data and addresses are written to. I'm hoping you guys have some advise on what to look for.

BIOS file:
http://www.mediafire.com/?xm96l67qqvbh8vp

Some Trinity documentation:
http://support.amd.com/us/Processor_Tech..._Guide.pdf

I've been using PhoenixTool 2.05 with NASM in cygwin to decompress. Been roughly following the old C2D EIST unlock guide.
find
quote


Forum Jump:


Users browsing this thread: 1 Guest(s)