Jump to content

10.12.4 kernel panic on FixHDA


ggtopspin
 Share

3 posts in this topic

Recommended Posts

I have a Z270I GAMING PRO CARBON AC system and just updated to 10.12.4 after having a completely fine 10.12.3.

 

When restarting, I immediately got this kernel panic.

 

I narrowed it down to the clover FixHDA flag causing the kernel panic. Disabling the flag lets me boot just fine, but with the flag on it doesn't work. As a result, there is no audio.

 

Has anyone else had this issue or has any idea how to fix it?

 

Thanks!

 

 

Link to comment
Share on other sites

apply _dsm into hdef in DSDT

Name (_ADR, 0x001F0003)

 

 

Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method

            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                           
                    })
                }
 
                Return (Package (0x10)
                {
                    "AAPL,slot-name", 
                    "Built In", 
                    "name", 
                    "Realtek Audio Controller", 
                    "model", 
                    Buffer (0x21)
                    {
                        "Realtek ALC1150 Audio Controller"
                    }, 
 
                    "device_type", 
                    Buffer (0x11)
                    {
                        "Audio Controller"
                    }, 
 
                    "layout-id", 
                    Buffer (0x04)
                    {
                         0x01, 0x00, 0x00, 0x00                         
                    }, 
 
                    "MaximumBootBeepVolume", 
                    Buffer (One)
                    {
                         0x01                                           
                    }, 
 
                    "PinConfigurations", 
                    Buffer (Zero) {}, 
                    "hda-gfx", 
                    Buffer (0x0A)
                    {
                        "onboard-1"
                    }
                })
            }
        }
Link to comment
Share on other sites

 Share

×
×
  • Create New...