Contribute
Register

<< Solved >> Audio not working on Catalina install

Status
Not open for further replies.
Joined
Apr 2, 2018
Messages
24
Motherboard
HP Pavilion 15 cc1xx-F.20-Clover
CPU
i5-8250U
Graphics
UHD 620
Mobile Phone
  1. iOS
Installed AppleALC.kext which doesn't work. VoodoHDA.kext causes kernel panic on boot. What must I do? EFI folder attached. Any help is greatly appreciated.
 

Attachments

  • EFI.zip
    4.6 MB · Views: 60
Installed AppleALC.kext which doesn't work. VoodoHDA.kext causes kernel panic on boot. What must I do? EFI folder attached. Any help is greatly appreciated.
config.plist:

enable these:
Code:
<key>Comment-IRQ Fix</key>
                <string>The following fixes may be needed for onboard audio/USB/etc</string>
                <key>FixHPET</key>
                <false/>
                <key>FixIPIC</key>
                <false/>
                <key>FixRTC</key>
                <false/>
                <key>FixTMR</key>
                <false/>

set this:
Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <integer>7</integer>
        </dict>
to:
Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <string>No</string>
        </dict>

set this:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>#PinConfigurations</key>
                <data></data>
                <key>#hda-gfx</key>
                <string>onboard-1</string>
                <key>#layout-id</key>
                <integer>3</integer>
                <key>#no-controller-patch</key>
                <integer>1</integer>
            </dict>
to:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>#PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>layout-id</key>
                <integer>3</integer>
                <key>#no-controller-patch</key>
                <integer>1</integer>
            </dict>

currently it is set to layout 3, you may need to trial and error different numbers as per:
 
config.plist:

enable these:
Code:
<key>Comment-IRQ Fix</key>
                <string>The following fixes may be needed for onboard audio/USB/etc</string>
                <key>FixHPET</key>
                <false/>
                <key>FixIPIC</key>
                <false/>
                <key>FixRTC</key>
                <false/>
                <key>FixTMR</key>
                <false/>

set this:
Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <integer>7</integer>
        </dict>
to:
Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <string>No</string>
        </dict>

set this:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>#PinConfigurations</key>
                <data></data>
                <key>#hda-gfx</key>
                <string>onboard-1</string>
                <key>#layout-id</key>
                <integer>3</integer>
                <key>#no-controller-patch</key>
                <integer>1</integer>
            </dict>
to:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>#PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>layout-id</key>
                <integer>3</integer>
                <key>#no-controller-patch</key>
                <integer>1</integer>
            </dict>

currently it is set to layout 3, you may need to trial and error different numbers as per:
Thanks a lot! Worked like a charm! Layout ID 13 worked for me.
 
Status
Not open for further replies.
Back
Top