Contribute
Register

LCD black after apple logo, hdmi works though-intel hd 3000

Status
Not open for further replies.
Joined
Jun 9, 2011
Messages
29
Motherboard
ASUS Z8NA-D6
CPU
2X Intel L5640 = 24CORE
Graphics
Nvidia Quadro FX 4800 sdi
Mac
  1. iMac
  2. MacBook Pro
  3. Mac Pro
Classic Mac
  1. Classic
  2. Portable
  3. Power Mac
  4. Quadra
Mobile Phone
  1. Android
i have a cf-53 toughbook that is now working except the LCD goes black after the apple.

HDMI out works just fine, but LCD is not recognized. I've looked all over and not found anything relevant-

any help would be appreciated.
 
i have a cf-53 toughbook that is now working except the LCD goes black after the apple.

HDMI out works just fine, but LCD is not recognized. I've looked all over and not found anything relevant-

any help would be appreciated.

What is the resolution of your LCD panel?
 
thanks for the reply, it is
1366 x 768
 
Video controller: Intel® QM77
– max. 1428MB shared VRAM with 32-bit
External video support up to 1920 x 1200 at 16.7 million colors
 
thanks for the reply, it is
1366 x 768

We use this DSDT patch on the Probook, it may help you:
Code:
#   Inject HDMI info into GFX0/IGPU   */
into method label _DSM parent_adr 0x00020000 remove_entry;
into device name_adr 0x00020000 insert
begin
Method (_DSM, 4, NotSerialized)\n
{\n
    If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
    Return (Package()\n
    {\n
        "AAPL,snb-platform-id",\n
        Buffer() { 0x00, 0x00, 0x01, 0x00 },\n
        "hda-gfx",\n
        Buffer() { "onboard-1" },\n
    })\n
}\n
end;

Use MaciASL 'patch' button to apply. Make sure you have an error free DSDT compile first.
 
Video controller: Intel® QM77
– max. 1428MB shared VRAM with 32-bit
External video support up to 1920 x 1200 at 16.7 million colors

Also, because you have Sandy Bridge CPU (because you said you had HD3000) on 7-series board, you need IMEI patch:

Code:
into device label PCI0 insert
begin
Device (IMEI)\n
{\n
    Name (_ADR, 0x00160000)\n
    Method (_DSM, 4, NotSerialized)\n                
    {\n
        If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
        Return (Package()\n
        {\n
            "device-id",\n 
            Buffer() { 0x3A, 0x1C, 0x00, 0x00 }\n
        })\n
    }\n
}\n
end;
 
thanks, i will try that, it looks like chameleon wizard has a dsdt patching function (im using it to modify the chamelion plist, will this do the same thing as maciasl?

my first time having to patch things, my other hackintoshes have worked out of the box.
 
thanks, i will try that, it looks like chameleon wizard has a dsdt patching function (im using it to modify the chamelion plist, will this do the same thing as maciasl?

my first time having to patch things, my other hackintoshes have worked out of the box.

Almost all laptops require DSDT patches...

Use MaciASL. These patches are not compatible with Chameleon Wizard.
Patching DSDT is very different from making changes to /Extra/org.chameleon.Boot.plist.

Basic MaciASL instructions:

- download and run it.
- by default, if you have not patched your DSDT yet and installed it to /Extra/dsdt.aml, MaciASL will start by extracting your raw DSDT
- choose Compile from the toolbar
- if you have *errors*, fix them
- if you need help fixing errors, compress and post your raw DSDT.dsl
- after you have an error free compile, apply the patches with the Patch button from the toolbar (click Patch, paste patch text in, click Apply, click Close)
- use File Save As to save your result to /Extra/dsdt.aml, format: "ACPI Machine Language Binary"
- reboot and try.
- to boot without /Extra/dsdt.aml active, boot with DSDT=No at bootloader
 
great! thanks for the help. i'll try this all now and report back how it goes.

dave
 
attached is the dsdt with errors, i've included a log of the warnings and 4 or 5 errors. help resolving the errors would be very appreciated.

thanks again for your help.
 

Attachments

  • dsdt_with_errors.zip
    31 KB · Views: 155
Status
Not open for further replies.
Back
Top