Hello everyone,
Post here if you need help with Patching AppleHDA or want to do it yourself but still needs help
How to get Codec Dump :
1. Use Ubuntu or Any Version of Linux Distro (Note : Use the latest version of Linux and Alsa drivers )
2. Open Terminal and copy paste below Code :
cd ~/Desktop && mkdir CodecDump && for c in /proc/asound/card*/codec#*; do f="${c/\/*card/card}"; cat "$c" > CodecDump/${f//\//-}.txt; done && zi