Forum RSS Feed Follow @ Twitter Follow On Facebook

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

Username:


Password:





[-]
Latest Threads
[READ FIRST] Access Advanced settings th...
Last Post: krzysiek01027
Today 08:26 PM
» Replies: 425
» Views: 568783
Fujitsu Esprimo P5710 - unlock [REQUEST]
Last Post: monkeywrench
Today 05:31 PM
» Replies: 15
» Views: 415
Asus h61m-d & xeon e3-1265l v2
Last Post: DeathBringer
Today 04:28 PM
» Replies: 3
» Views: 85
[REQUEST] - Acer Swift 3 SF314-41G bios ...
Last Post: ersan
Today 03:03 PM
» Replies: 1
» Views: 82
[REQUEST] Lenovo G780 advanced menu
Last Post: Dudu2002
Today 09:41 AM
» Replies: 43
» Views: 16991
[REQUEST] ThinkPad T14 Gen1 Intel BIOS W...
Last Post: SSV CHAOTIC
Today 05:19 AM
» Replies: 0
» Views: 78
[REQUEST] Lenovo Ideapad 100-14IBD & 100...
Last Post: Dudu2002
Today 03:48 AM
» Replies: 15
» Views: 6832
[REQUEST] Lenovo IdeaPad U310 & U410 (65...
Last Post: 5CarPileup
Today 02:04 AM
» Replies: 1767
» Views: 379783
HP Pro 3500: CPU Upgrade
Last Post: DeathBringer
Today 12:13 AM
» Replies: 20
» Views: 4494
[REQUEST] Asus eeepc 1025C
Last Post: sloseba123
Yesterday 04:44 PM
» Replies: 87
» Views: 110325
HP EliteBook 840 g2 NVMe
Last Post: x86-64
Yesterday 06:30 AM
» Replies: 0
» Views: 95
[Request] Dell 7400 2 in 1 Computrace/Ab...
Last Post: Lorand187
05-01-2024 10:34 PM
» Replies: 0
» Views: 142
[REQUEST] Gigabyte B75M-D3H BIOS Unlock
Last Post: topadefir
05-01-2024 12:56 PM
» Replies: 10
» Views: 4041
[REQUEST] Lenovo B590 (H9ETxxWW) Whiteli...
Last Post: samugarob
05-01-2024 10:08 AM
» Replies: 674
» Views: 168572
[REQUEST] Asus GL504GV BIOS Unlock
Last Post: merjeu
05-01-2024 09:28 AM
» Replies: 5
» Views: 1701
[REQUEST] Asus ROG Strix GL702ZC BIOS Un...
Last Post: George205
05-01-2024 09:22 AM
» Replies: 167
» Views: 68685
[REQUEST] HP Gaming Pavilion 15-cx0xxx B...
Last Post: falkorikstv
05-01-2024 07:03 AM
» Replies: 10
» Views: 1657
[REQUEST] Gigabyte G5 KC Unlock BIOS
Last Post: Dudu2002
05-01-2024 04:06 AM
» Replies: 6
» Views: 2318
[REQUEST] M920q BIOS unlock
Last Post: d3vf0x
04-30-2024 04:50 PM
» Replies: 0
» Views: 179
[REQUEST] Lenovo G500 (78CNxxWW) Whiteli...
Last Post: MAVARACOMPLEX
04-30-2024 02:15 PM
» Replies: 1186
» Views: 269006

(UEFI) Dell XPS 15z L511z modded BIOS - and HOWTO
Most (if not all) of the steps to enabling the advanced menu are on the first post. Should be everything you need to unpack/patch/repack the bios. The TianoCore SCT version must be 2.0, in which case you should be able to find the binary sequence outlined in the first post and patch accordingly.

Good Luck!
find
quote
Any news on L502x unlocked bios?
find
quote
(12-13-2014, 11:48 AM)gmb-gus Wrote: Any news on L502x unlocked bios?
@gmb-gus

this topic may interest you Big Grin

http://forum.notebookreview.com/dell-xps...-more.html


@all

happy 2015 guys, do you all still alive? Big Grin

I am trying more mods for the system.

now I am trying to mess with the turbo multipliers

I noticed some machines let you to handle the turbo multipliers so you can turn them higher for all cores

I'm currently looking for doing that for my i5-2430m

by default it allow

multiplier to 30 - 1 core
multiplier to 28 - 2 cores

I want to max them the highest posible.

if I cannot pass 30, then I want to at least being able to set two cores to 30.

I read that I have to mess with the MSR registers for that.

I was thinking about several options:

* mod default values in BIOS (relating overclocking menus we were unable to unlock), even we cant bring up those menus, we may be able to change the options by manually hex editing the code, or via a efi application from the shell wich does the trick.

* hardcode the changes to the bios so they are allways there.

* replace some "useless" bios options with another ones more usefull, like the overclocking ones

from what I read it have something to do with this address

MSR 0x1AD , this can be done from windows with msr tool software but,
I also read that
MSR 0xce bit 28 must be set to 1 for that
and that needs to be bios set.


with MSR tool I get following

0x00000000 0x1C1C1C1E

wich result into

1C = 28 multiplier - 4 cores active
1C = 28 multiplier - 3 cores active
1C = 28 multiplier - 2 cores active
1E = 30 multiplier - 1 cores active

and I want to set it to

0x00000000 0x1E1E1E1E

but the changes I make from the MSR tool seems to be useless

so I think that I need to unlock the 0x1AD MSR register, wich seems controlled from the 0xce bit 28

any idea about how I can acomplish this?
find
quote
Happy new year kasar Smile I'm away from the laptop until mid-Jan, hence silence from my end for a while ^^

Unlocking 0x1AD MSR should be fairly easy, I had accomplished something similar to unlock the MSR for Speedstep to work correctly in OS X. Under my existing BIOS hack I have unlocked Bit 15 of MSR Register 0xE2 so a bit of hunting around in that region should do the trick.

For 0xE2 I had to look for the opcodes

"b9 e2 00 00 00" (mov $0xe2,%ecx)
...
"75 08" (jne next)
"0f ba e8 0f" (bts $0xf,%eax)

and make sure that the CPU did not execute the last instruction through an unconditional jump. So I replaced "75 08 0F BA E8 0F" with "EB 08 0F BA E8 0F". I don't have the specific module with me right now (only so many things I can take when off skiing) but I'd assume you can search for "75 xx 0F BA E8 28" (xx could be anything depending on next jump) immediately after "B9 AD 01 00 00".

Let me know if you need any help!
find
quote
thanks a lot for the info jkbuha Big Grin

Glad to know this still active Smile

I will give a look to the stuff at night when I arrive my grandspa home

should I look into any particular or specific modules?

Im looking for the MSR 0xCE bit 28 in particular

I will be away from my HW programmer this week, but I still have my old CD recovery, so I will still able to recover from BIOS region based bricks
find
quote
You're welcome mate Smile

Ok, now I understand, you want to set MSR_PLATFORM_INFO (0xCE) Bit 28, so this is (in theory) what needs to be done:

1) Open up the module I had modded to set MSR 0xE2. IIRC, most of the MSR read/writes are done from one module only, so this should be the correct one.

2) Find the byte sequence "B9 CE 00 00 00" which corresponds to the get MSR_PLATFORM_INFO register

3) Use a disassembler (IDA or equivalent) to dump the asm instructions around that area. We should be looking for an instruction to unset/reset Bit 28. Once found we force condition to set or else force jump away from the reset instruction.

4) Once successful, set 0x1AD to multiplier of choice from Intel XTU.
find
quote
I am stuck on step 3

well, I never used IDA or any other disassemblers before, so I feel a little noob here Big Grin

I'll try doing following

I picked of ida pro 6.1

and ran idaq64.exe

then loaded powermanagement2.efi

(the one for L502X I hex edited long time ago with your speedstep changes and also I found the "B9 CE 00 00 00" hex secuence on it)

then when I ask IDA to load the rom file, it ask to load with those settings.

[Image: DN31DRE.jpg]

then after I try to search the "B9 CE 00 00 00" part, it go to the selected zone


[Image: jTGAh7b.jpg]


///////////////////////////////////

then ..... well, I feel lost after that step :'D

I attached the powermanagement2.rom module

maybe you can point me into the right direction ^^


Attached Files
.rom   powermanagement2.ROM (Size: 16.09 KB / Downloads: 0)
find
quote
well it looks like you *have* found something... ^^

this is the procedure to call MSR 0xCE and then immediately after call MSR 0x1AD, both of which we know are key to unlocking multipliers - nice work =D

question is; I cannot see any instructions to read/lock specific bits (btr/bts), so I'm not sure how the BIOS is locking these specific bits in this module.

unfortunately I won't be back until week after next so won't be able to help you much for the next few days. in the meantime i'l try googling around to see if anyone has had a similar method of unlocking.
find
quote
Happy new year everyone!

@kasar , @jkbuha

I think you are using wrong cpu for disassembly - according to your screen you've loaded image for Z80 cpu , which has "a bit different" bytecode
I may be wrong if image loader , in this case it is PE64 , forces IDA to use correct processor, but I'm not sure
find
quote
@follow_me

yes, you are probably right, I never user IDA before or any other dissasembler app before, so I just loaded the efi module with default settings.

there are many of them, so I'm not sure wich one to pick

[Image: f5ec8cbdd0fe1393219baeb8049840af.png]

wich settings do you guys use to dissasembly your uefi bioses?
find
quote


Forum Jump:


Users browsing this thread: 16 Guest(s)