Contribute
Register

Latitude E6330

Status
Not open for further replies.
Joined
Apr 29, 2010
Messages
646
Motherboard
GA-Z270XP-SLI
CPU
i5-7600K
Graphics
RX 580
Mac
  1. iMac
Classic Mac
  1. Classic
Mobile Phone
  1. Android
Have encountered 2 issues booting a Latitude E6330 (Chimera 2.1 from MB). If booting with only the laptop display, it enters sleep / power saver mode during the boot (power button alternates from dim to bright). Pressing it powers the display and the login screen. System definition is 9,1.

If an external monitor is attached (DVI-D) during the boot process, the external display is the only one recognized by the system. The laptop display is turned off and isn't recognized at all. However, if I boot without the external display cable attached to the dvi-d port, and reattach it after the desktop is displayed, it is recognized, and I can mirror or extend the desktop. I'm guessing it's a problem with a kext but which? Ideas?
 
Have encountered 2 issues booting a Latitude E6330 (Chimera 2.1 from MB). If booting with only the laptop display, it enters sleep / power saver mode during the boot (power button alternates from dim to bright). Pressing it powers the display and the login screen. System definition is 9,1.

If an external monitor is attached (DVI-D) during the boot process, the external display is the only one recognized by the system. The laptop display is turned off and isn't recognized at all. However, if I boot without the external display cable attached to the dvi-d port, and reattach it after the desktop is displayed, it is recognized, and I can mirror or extend the desktop. I'm guessing it's a problem with a kext but which? Ideas?

What are the specs of your laptop?
 
Pretty standard Latitude E3660. This is what I can discern with Windows. Can boot in OS X later for more info if you need that.

Cheers,



i5 3320m @ 2.6GHz
Intel 7 series / C216 Chipset
ALPS touchpad
Intel HD4000 graphics
Dell Wireless 380 bluetooth
Intel 82579LM gigabit
Display adapter WDC WD3200BEKT-75PVMT1
Dell P2412H external monitor
 
Pretty standard Latitude E3660. This is what I can discern with Windows. Can boot in OS X later for more info if you need that.

Cheers,



i5 3320m @ 2.6GHz
Intel 7 series / C216 Chipset
ALPS touchpad
Intel HD4000 graphics
Dell Wireless 380 bluetooth
Intel 82579LM gigabit
Display adapter WDC WD3200BEKT-75PVMT1
Dell P2412H external monitor

Your display adapter is probably HD4000 (your WDC WD3200* sounds more like a hard disk).

Have you patched your DSDT for HD4000?
 
I have (but the patcher came back with a few warnings and 1 error that I still need to sort out). That may be the issue. I'll get back to you when I get a clean dsdt.aml if it's still an issue.
 
I have (but the patcher came back with a few warnings and 1 error that I still need to sort out). That may be the issue. I'll get back to you when I get a clean dsdt.aml if it's still an issue.

You only need to worry about the one error (warnings, remarks, optimizations do not need to be "fixed")...

Post your DSDT if you need help fixing the one error. They are usually quite easy...
 
Have corrected a number of the warnings (although I appreciate these aren't show stoppers), but haven't applied any patch for hd4000. I don't think there's one provided in DSDTSE. What should be patched/inserted? If you need to see my dsdt.aml I can attach it, but if you point me to what needs to be done I can do it too. Tnx.
 
Have corrected a number of the warnings (although I appreciate these aren't show stoppers), but haven't applied any patch for hd4000. I don't think there's one provided in DSDTSE. What should be patched/inserted? If you need to see my dsdt.aml I can attach it, but if you point me to what needs to be done I can do it too. Tnx.

What is the resolution of your laptop screen?
 

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,ig-platform-id",\n
        Buffer() { 0x03, 0x00, 0x66, 0x01 },\n
        "hda-gfx",\n
        Buffer() { "onboard-1" },\n
    })\n
}\n
end;

Code:
#   Brightness control fix
into device label PNLF remove_entry;
into scope label \_SB insert
begin
Device (PNLF)\n
{\n
	Name (_HID, EisaId ("APP0002"))\n
	Name (_CID, "backlight")\n
	Name (_UID, 0x0A)\n
	Name (_STA, 0x0B)\n
}\n
end;

You can use MaciASL (Patch button) to apply.

Give it a try... It could be something else (for some laptops you have to inject EDID)... And I've never heard of a display issue causing the whole laptop to sleep immediately...
 
Status
Not open for further replies.
Back
Top