Jump to content

Soterlll

Members
  • Posts

    17
  • Joined

  • Last visited

Posts posted by Soterlll

  1. I'm using Clover. I think the problem dGPU is disabled when i reboot Mac OS. I don't know how to enable it while rebooting.

     

    If i use only -wegnoegpu boot arg (disabling patches and SSDT-DGPU) Nvidia card is present in Device manager.

     

    Spoiler
    DefinitionBlock ("", "SSDT", 2, "hack", "DGPU", 0x00000000)
    {
        External (_SB_.PCI0.PEG0.VID_._OFF, MethodObj)    // 0 Arguments
        External (_SB_.PCI0.PEG0.VID_._ON_, MethodObj)    // 0 Arguments
        External (ZPTS, MethodObj)    // 1 Arguments
        External (ZWAK, MethodObj)    // 1 Arguments
    
        Method (EGPU, 0, NotSerialized)
        {
            If ((_OSI ("Darwin") && CondRefOf (\_SB.PCI0.PEG0.VID._ON)))
            {
                \_SB.PCI0.PEG0.VID._ON ()
            }
        }
    
        Method (DGPU, 0, NotSerialized)
        {
            If ((_OSI ("Darwin") && CondRefOf (\_SB.PCI0.PEG0.VID._OFF)))
            {
                \_SB.PCI0.PEG0.VID._OFF ()
            }
        }
    
        Device (RMD1)
        {
            Name (_HID, "RMD10000")  // _HID: Hardware ID
            Method (_INI, 0, NotSerialized)  // _INI: Initialize
            {
                If (_OSI ("Darwin"))
                {
                    DGPU ()
                }
            }
    
            Method (_STA, 0, NotSerialized)  // _STA: Status
            {
                If (_OSI ("Darwin"))
                {
                    Return (0x0F)
                }
    
                Return (Zero)
            }
        }
    
        Method (_PTS, 1, NotSerialized)  // _PTS: Prepare To Sleep
        {
            If (_OSI ("Darwin"))
            {
                EGPU ()
            }
    
            ZPTS (Arg0)
        }
    
        Method (_WAK, 1, Serialized)  // _WAK: Wake
        {
            Local0 = ZWAK (Arg0)
            If (_OSI ("Darwin"))
            {
                DGPU ()
            }
    
            Return (Local0)
        }
    }
    

     

     

  2. I am using modified Herve's EFI and everything works fine except this problem: Sometimes there is no sound. Sleep/Wake or Reboot helps to restore sound. Tried everything, but the problem persists. Lilu+AppleALC debug report and EFI(ACPI, config, kexts) attached.

    Specs:

    Dell Latitude E6530 with A22 Bios 

    i7-3740QM

    1366x768 screen

    16GB RAM

    HD 4000 + NVS 5200M(disabled in SSDT-DGPU)

    Monterey 12.7.3

    report.zip EFI.rar

  3. The laptop almost perfectly runs Big Sur, but i experienced this annoying issue:

     

    From time to time display goes dark following the apple logo on boot, and then the machine goes to sleep.

    After i wake it from sleep by pressing the power button, everything works fine.

     

    I used Herve's E6230 EFI folder( attached it), also used my own patched DSDT and SSDTs. Nothing helps to solve this problem.

     

    Specs:

     

    Dell Latitude E6530 with A22 Bios

    i7-3740QM

    1366x768 screen

    16GB RAM

    HD 4000 + NVS 5200M(disabled in SSDT-DGPU)

    System: macOS Big Sur 11.7.9

    Clover v5144

    EFI.rar

    Here my Ioreg and logs files with Patched DSDT(E6530).

    ioreg.ioreg logs.rar EFI_6530.rar

  4. Problem still persits.

    Two things to mention:

    1. I had a wrong SSDT-PM(replaced it - didn't fix the issue) I guess something is wrong with SSDT-PM.

    2. SSDT-EC doesn't replace the name of the embedded controller. ( tried rename ECVD to EC - Failed to detect SuperIO)

    EFI_14072023.rar

     

    It seems with this SSDT-PM I had less problems with freezing after wake. But still have some. Where can i find a fully working SSDT-PM for i7-3740QM?

    SSDT-PM.aml.zip

     

    After few reboots laptop started freezing after wake up more frequently.

    Also SSDT-1(cpu0lst) compiles lots of syntax errors

  5. Hello!

    I have Dell Latitude E6530 which freezes mostly after wake up(sometimes when I put it to sleep), so I have to manually turn laptop off using a pwr button.

    Sometimes I can repeat Sleep/Wake Up cycle up to 2-3 times. Another time it hangs after the first wake up.

    What I tried: hibernation off, Opencore update,disable dGPU via SSDTs(currently using boot-flag -wegnoegpu).

    I've followed the guide from the FAQ to send debug report but couldn't generate report file(mount: / failed with 66).

    Also I've noticed that wireless networking indicator starts blinking when system freezes after waking.I link my EFI folder and IOreg logs. 

    i7-3740QM

    1366x768 screen

    8GB RAM

    HD 4000 + NVS 5200M

    System: macOS Big Sur 11.7.8.

    Opencore 0.8.8

     

    IORegistry.zip EFI.rar

×
×
  • Create New...