Jump to content

MaLd0n

Administrators
  • Posts

    95,154
  • Joined

  • Last visited

Posts posted by MaLd0n

  1. 56 minutes ago, nosborsousa said:

    Hi @MaLd0n!

    Sleep dont work in huananzhi F8?

    Kill _prw and use power button to wake

    Quote

    <dict>
                        <key>Base</key>
                        <string></string>
                        <key>BaseSkip</key>
                        <integer>0</integer>
                        <key>Comment</key>
                        <string>_PRW to XPRW</string>
                        <key>Count</key>
                        <integer>0</integer>
                        <key>Enabled</key>
                        <true/>
                        <key>Find</key>
                        <data>X1BSVw==</data>
                        <key>Limit</key>
                        <integer>0</integer>
                        <key>Mask</key>
                        <data></data>
                        <key>OemTableId</key>
                        <data></data>
                        <key>Replace</key>
                        <data>WFBSVw==</data>
                        <key>ReplaceMask</key>
                        <data></data>
                        <key>Skip</key>
                        <integer>0</integer>
                        <key>TableLength</key>
                        <integer>0</integer>
                        <key>TableSignature</key>
                        <data></data>
                    </dict>

     

  2. 5 hours ago, Massimiliano Meirotti said:

    AQC113C

    Use this Patch with Aquantia Quirk and VT-d enable

    Quote

    Scope (\_SB.PC00.RP01)
        {
            Scope (PXSX)
            {
                Name (_STA, Zero)  // _STA: Status
            }

            

            Device (XGBE)
            {
                Name (_ADR, Zero)  // _ADR: Address
                Method (_STA, 0, NotSerialized)  // _STA: Status
                {
                    If (_OSI ("Darwin"))
                    {
                        Return (0x0F)
                    }
                    Else
                    {
                        Return (Zero)
                    }
                }

                Method (_RMV, 0, NotSerialized)  // _RMV: Removal Status
                {
                    Return (Zero)
                }

                Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
                {
                    If ((Arg2 == Zero))
                    {
                        Return (Buffer ()
                        {
                             0x03                                             // .
                        })
                    }

                    Return (Package ()
                    {
                        "device-id", 
                        Buffer ()
                        {
                             0xC0, 0x94, 0x00, 0x00                           // ....
                        }, 

                        "compatible", 
                        Buffer ()
                        {
                            /* 0000 */  0x70, 0x63, 0x69, 0x31, 0x64, 0x36, 0x61, 0x2C,  // pci1d6a,
                            /* 0008 */  0x39, 0x34, 0x63, 0x30, 0x00, 0x70, 0x63, 0x69,  // 94c0.pci
                            /* 0010 */  0x63, 0x6C, 0x61, 0x73, 0x73, 0x2C, 0x30, 0x32,  // class,02
                            /* 0018 */  0x30, 0x30, 0x30, 0x30, 0x00, 0x58, 0x47, 0x42,  // 0000.XGB
                            /* 0020 */  0x45, 0x00, 0x00, 0x00                           // E...
                        }
                    })
                }
            }
        }

     

    • Like 1
  3. U can remove device Speaker, common name in ACPI is Device SPKR _HID PNP0800

    Example bellow

    Quote

    Device (SPKR)
                    {
                        Name (_HID, EisaId ("PNP0800") /* Microsoft Sound System Compatible Device */)  // _HID: Hardware ID
                        Name (_CRS, ResourceTemplate ()  // _CRS: Current Resource Settings
                        {
                            IO (Decode16,
                                0x0061,             // Range Minimum
                                0x0061,             // Range Maximum
                                0x00,               // Alignment
                                0x01,               // Length
                                )
                        })
                    }

     

    • Like 1
×
×
  • Create New...