Forum RSS Feed Follow @ Twitter Follow On Facebook

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

Username:


Password:





[-]
Latest Threads
Acer Veriton M4620G Slic 2.1 Request
Last Post: rouger0831
Today 03:10 AM
» Replies: 5
» Views: 6631
[REQUEST] Lenovo B590 (H1ETxxWW) Whiteli...
Last Post: steberrr
Yesterday 01:07 PM
» Replies: 800
» Views: 541023
GA-M68M-S2P (rev. 1.0) F5 BIOS unlock
Last Post: TheExplorer
Yesterday 12:50 PM
» Replies: 17
» Views: 25022
[Request] Unlock Bios for Asus TUF FX505...
Last Post: antonio1985
Yesterday 08:26 AM
» Replies: 12
» Views: 14053
[Request] Panasonic Toughbook CF-30K (MK...
Last Post: Yoshi128k
04-15-2026 03:45 PM
» Replies: 0
» Views: 542
Fujitsu D3061-A1 & Xeon E3-1245
Last Post: Nikandros
04-15-2026 03:08 PM
» Replies: 10
» Views: 819
[REQUEST] Lenovo Thinkpad T440p (GLETxxW...
Last Post: Dudu2002
04-15-2026 10:57 AM
» Replies: 532
» Views: 333041
[Request] Dell Inspiron N5010 A15 Full U...
Last Post: smnghosh
04-15-2026 06:08 AM
» Replies: 24
» Views: 37720
[REQUEST] Lenovo X270 (R0IETxxW) Whiteli...
Last Post: Kopturov
04-14-2026 01:48 PM
» Replies: 26
» Views: 16185
Acer TravelMate 4230 — Enable AHCI / Unl...
Last Post: maximiliano80
04-14-2026 03:18 AM
» Replies: 0
» Views: 601
[REQUEST] Dell Inspiron 15R 5520 BIOS Un...
Last Post: nguyenchitu
04-13-2026 10:42 PM
» Replies: 46
» Views: 38568
Help for UnLock Ram Timing
Last Post: Brax16
04-13-2026 01:55 PM
» Replies: 0
» Views: 615
Gigabyte GA-945PL-S3 (Rev. 1.0): Wolfdal...
Last Post: michamichael22
04-13-2026 01:23 PM
» Replies: 8
» Views: 4730
Lenovo Y550 BIOS Unlocking (Advanced Men...
Last Post: kentsergeo
04-13-2026 02:52 AM
» Replies: 7
» Views: 4055
Help with Foxconn H61S (weird miniITX ma...
Last Post: shiz_balls101
04-12-2026 08:20 AM
» Replies: 2
» Views: 768
HP Pro 3300 & 3400 (H61): Upgrade to Ivy...
Last Post: Hooper
04-12-2026 02:15 AM
» Replies: 153
» Views: 157904
[REQUEST] Acer Aspire E1-571(G) BIOS Unl...
Last Post: RJMP
04-11-2026 01:07 PM
» Replies: 137
» Views: 116455
[REQUEST] Lenovo ThinkPad T450(s) (JBETx...
Last Post: konam005
04-10-2026 10:20 PM
» Replies: 149
» Views: 134875
Dell R7610 sr-iov bios mod help
Last Post: IronFist
04-10-2026 02:43 PM
» Replies: 0
» Views: 696
[RESQUEST] Gigabyte A5 X1 Insyde BIOS un...
Last Post: SuperSantaSqualala
04-10-2026 12:04 PM
» Replies: 2
» Views: 713

Dell Vostro 3450 Advanced Options unlocking in progress
#91
To recompile DSDT properly change the MBT code to this:
Code:
Device (MBT)
                {
                    Name (_HID, EisaId ("PNP0C32"))  // _HID: Hardware ID
                    Method (_STA, 0, NotSerialized)  // _STA: Status
                    {
                        If (LOr (LEqual (OSYS, 0x07D6), LEqual (OSYS, 0x07D9)))
                        {
                            Return (0x0F)
                        }
                        Else
                        {
                            Return (0x00)
                        }
                    }
                    Method (GHID, 0, NotSerialized)
                    {
                        Return (Buffer (One)
                        {
                            0x02
                        })
                    }
                }
Try setting these options:
[Image: 1oEpJ]
It will then prompt you with this windows:
[Image: 1oEvl]
Confirm when you are done and you will be presented with:
[Image: 1oEG4]
The log will say
[Image: 1oFpj]
[Image: 1oFrS]
Try playing around with this ..
find
quote
#92
Tried reintegrating using the *right* way .. still got the black screen.
What I did was change MBT as posted above and swap PS2M ids for compatible ones ...
There might be some sort of CRC sanity check in one of the Platform drivers which compares DSDt's checkumm to what has been defined inside the efi driver. Or it may be just our struggle of not doing this operation properly ..
find
quote
#93
Yeah, mine failed too no matter what I did.
I think there is a way to run the OS with the modified DSDT (without patching the BIOS) just to verify our claims. I'm pretty sure you can do that with MacOS and Linux, but I don't know if it's possible for Windows... Wouldn't "asl -loadtable dsdt.aml" do the trick?
...Or did I miss something and we are able to inject DSDT file into BIOS already? Wink
find
quote
#94
.... you get my point Wink
[Image: 1pxH2]
find
quote
#95
Yeah, I've tried that... This value gets replaced by default DSDT every time the system reboots. I actually tried editing it (replacing DELL with [censored] lol), and it didn't really work out XD
find
quote
#96
i see .. so we have to figure out why it's causing black screen.
meanwhile im fiddling with a somewhat pragmatic thing .. how the heck my brightness keys stop working every time I reboot or shut down Windows 8 ? they stop working in bios and osx .. but remain functional across windows and ubuntu ?
find
quote
#97
Note to self:
Battery charge cycle count is stored in EC register 0x1D (according to data from ePSA)
Code:
OperationRegion (ECRM, EmbeddedControl, Zero, 0x0100)
                    Field (ECRM, ByteAcc, Lock, Preserve)
                    {
                        WKEV,   8,
                        Offset (0x18),
                        PRTC,   8,
                        SSTA,   8,
                        SADR,   8,
                        SCMD,   8,
                        SMID,   8,
                        SDAT,   8, //0x1D
                        SDT1,   8,
}

Technically this means that cycles can be monitored .. and not approximated like right now.
Code:
Name (PAK0, Package (0x0E) // extend from 0x0D to 0x0E
                        {
                            One,
                            0xFFFFFFFF,
                            0xFFFFFFFF,
                            Zero,
                            0xFFFFFFFF,
                            Zero,
                            Zero,
                            0x64,
                            Zero,
                            "BAT0",
                            "123456789",
                            "LiON",
                            "PTL",
                            Zero //extend the blank cliche battery info array
                        })

Code:
Method (_BIF, 0, NotSerialized)  // _BIF: Battery Information
                        {
                            Store ("BIF0", Debug)
                            Acquire (^^PCI0.LPCB.EC0.MUT0, 0xFFFF)
                            Store (^^PCI0.LPCB.EC0.DCP0, Index (PAK0, One))
                            Store (^^PCI0.LPCB.EC0.FCP0, Local0)
                            Store (Local0, Index (PAK0, 0x02))
                            Store (^^PCI0.LPCB.EC0.DVT0, Index (PAK0, 0x04))
                            Store (^^PCI0.LPCB.EC0.DNN0, Local1)
                            Store (^^PCI0.LPCB.EC0.BSN0, Local2)
                            Store (^^PCI0.LPCB.EC0.BCN0, Local3)
                            Store (^^PCI0.LPCB.EC0.MNN0, Local4)
                            Release (^^PCI0.LPCB.EC0.MUT0)
                            Store (Divide (Local0, 0x0A, ), Index (PAK0, 0x05))
                            Store (Zero, Index (PAK0, 0x06))
                            Store (^^PCI0.LPCB.EC0.SDAT, Index (PAK0, 0x0E)) //store real value from the actual cycle register
                            --------------------------------------------
find
quote
#98
Hey guys, your work is awesome! I have a question, that is the UEFI Boot, I completely installed windows 8 on UEFI but I got stuck when using Fn+F2 turn on Wifi/Blue, when I hit that button, windows freezes immediately, anyone has any idea?
find
quote
#99
This is a well-known issue with Vostro 3450 UEFI boot and Windows 8. Supposedly this can be fixed by altering DSDT tables, but unfortunately we haven't found a way to properly inject modified DSDT into the BIOS firmware image.
find
quote
Oh, that's a pity, without Wifi, laptop is not laptop.... Have you guys successfully update the Intel VBIOS? I have watched this thread for long time and forgot my password. It seems that our Bios reaches to an end?
find
quote


Forum Jump:


Users browsing this thread: 4 Guest(s)