Contribute
Register

Audio - HDMI Audio AppleHDA [Guide]

Status
Not open for further replies.
HDMI audio,it works with chameleon but not Clover
Without an HDMI device attached, files are not helpful.
Not one clover file attached, really not helpful.
See Problem Reporting, Post #1, attach all requested files.
 
Without an HDMI device attached, files are not helpful.
Not one clover file attached, really not helpful.
See Problem Reporting, Post #1, attach all requested files.

Again sorry about that, I'm quite new to this. I have attached complete EFI/Clover folder as well as other requested files with HDMI device attached.
 

Attachments

  • Updated.zip
    6.9 MB · Views: 80
requested files with HDMI device attached
dsdt problem, add method (_DSM.. to Device (IGPU) as shown
Code:
        Device (IGPU)
        {
            Name (_ADR, 0x00020000)
            Method (_DSM, 4, NotSerialized)
            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                          
                    })
                }

                Return (Package (0x06)
                {
                    "device-id",
                    Buffer (0x04)
                    {
                         0x66, 0x01, 0x00, 0x00                        
                    },

                    "AAPL,ig-platform-id",
                    Buffer (0x04)
                    {
                         0x03, 0x00, 0x66, 0x01                        
                    },

                    "hda-gfx",
                    Buffer (0x0A)
                    {
                        "onboard-1"
                    }
                })
            }

            Method (_DOS, 1, NotSerialized)
. . .
 
Hello, I'm trying to get hdmi audio working. I tried running the audio_cloverHDMI-110.command script under cloverHDMI instructions with my EFI mounted and this is what I got:

File: audio_cloverHDMI-110.command_v0.22 - BETA
Release Mode
EFI partition is mounted
HDMI audio codec(s)
Nvidia: 0x10de0072
Integrated Graphics is not installed/enabled
Nvidia discrete graphics card 10de1401 found on PEG0@1/PEGP@0
Nvidia HDMI audio is enabled
To save a Copy of this Terminal session: Terminal/Shell/Export Text As ...
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
[Process completed]

From what I can see, HDMI audio is enabled. I then rebooted.
I checked sound settings in the preference pane, but there is no HDMI option.

I'm running 10.11.5, and these are the attachments that I could find.
 

Attachments

  • AppleHDA.kext.zip
    1.6 MB · Views: 70
  • config.plist
    6.6 KB · Views: 222
dsdt problem, add method (_DSM.. to Device (IGPU) as shown
Code:
        Device (IGPU)
        {
            Name (_ADR, 0x00020000)
            Method (_DSM, 4, NotSerialized)
            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                         
                    })
                }

                Return (Package (0x06)
                {
                    "device-id",
                    Buffer (0x04)
                    {
                         0x66, 0x01, 0x00, 0x00                       
                    },

                    "AAPL,ig-platform-id",
                    Buffer (0x04)
                    {
                         0x03, 0x00, 0x66, 0x01                       
                    },

                    "hda-gfx",
                    Buffer (0x0A)
                    {
                        "onboard-1"
                    }
                })
            }

            Method (_DOS, 1, NotSerialized)
. . .
Thank you for providing a solution, unfortunately I am not sure how to patch DSDT's at all, I tried MaciASL but it just throws up like 61 compiler errors.... I was wondering if you could patch it for me please? Thank you
 

Attachments

  • DSDT.aml
    45 KB · Views: 77
Status
Not open for further replies.
Back
Top