Contribute
Register

[Guide] Patching LAPTOP DSDT/SSDTs

Attachments

  • Deocder - Problem Reporting.zip
    1.8 MB · Views: 69
Here are files per "Problem Reporting" from the FAQ you have linked. Thank you for your assistance.

You are loading your SSDTs in the wrong order.
This is from your Clover bootlog (extracted from ioreg):
Code:
8:652  0:000  === [ ACPIPatchedAML ] ====================================
8:652  0:000  Unsorted
8:652  0:000  Inserting SSDT-2-CpuPm.aml from EFI\CLOVER\ACPI\patched ... Success
8:662  0:010  Inserting SSDT-0-PtidDevc.aml from EFI\CLOVER\ACPI\patched ... Success
8:662  0:000  Inserting SSDT-1-Cpu0Ist.aml from EFI\CLOVER\ACPI\patched ... Success

It is because you didn't use SortedOrder to specify load order of SSDTs.
And you need DropOem=true when you have patched SSDTs in ACPI/patched.
 
It is because you didn't use SortedOrder to specify load order of SSDTs.
And you need DropOem=true when you have patched SSDTs in ACPI/patched.

Ok, implemented both SortedOrder and DropOem=true. Still get heaps of ACPI errors and exceptions.

Attached updated Problem Reporting Files
 

Attachments

  • deocder problem reporting files.zip
    2.3 MB · Views: 54
Ok, implemented both SortedOrder and DropOem=true. Still get heaps of ACPI errors and exceptions.

Attached updated Problem Reporting Files

Your config.plist has no SortedOrder.
Keep in mind "#SortedOrder" is not the same as "SortedOrder". The former is ignored by Clover.
 
Your config.plist has no SortedOrder.
Keep in mind "#SortedOrder" is not the same as "SortedOrder". The former is ignored by Clover.

Aha! There we go! Renamed the entry and now only a couple ACPI errors and exceptions this time and fairly rapid boot time. Will address the other issues under specific guides from here on out.

Thanks, RehabMan. Much appreciated.
 
it seems like I can't fix my dsdt error,and my ssdt's have some kind of bug which makes the sound gone after wake up from sleep and hdmi doesn't have sound output.

enclosed is my efi folder for your perusal @RehabMan or any kind soul that is kind enough to check what have I done wrong.TIA!!
 

Attachments

  • EFI.zip
    27.7 MB · Views: 79
it seems like I can't fix my dsdt error,and my ssdt's have some kind of bug which makes the sound gone after wake up from sleep and hdmi doesn't have sound output.

enclosed is my efi folder for your perusal @RehabMan or any kind soul that is kind enough to check what have I done wrong.TIA!!

"Problem Reporting" files are incomplete/wrong (EFI not requested, EFI/Clover would be much smaller).
Read FAQ, "Problem Reporting" again. Carefully. Attach all requested files/output.
https://www.tonymacx86.com/threads/faq-read-first-laptop-frequent-questions.164990/

Your audio after sleep/wake has nothing to do with ACPI. See FAQ.
 

Attachments

  • Edward’s Macbook.ioreg
    4.9 MB · Views: 87
  • EFI.zip
    2.4 MB · Views: 73
it seems like I can't fix my dsdt error,and my ssdt's have some kind of bug which makes the sound gone after wake up from sleep and hdmi doesn't have sound output.

enclosed is my efi folder for your perusal @RehabMan or any kind soul that is kind enough to check what have I done wrong.TIA!!
oh I see sorry about that I have reattach the efi and also my ioreg,please advise that did I done wrong.TIA

No unusual errors in DSDT if you disassemble per guide: iasl -da -dl DSDT.aml SSDT*.aml.
Remove the extraneous 'External (BNUM, ....' line at the top of the file.

For audio, consider Mirone's AppleHDA patcher instead of AppleALC.kext.

For HDMI audio, you need to patch the framebuffer so that connector-type is HDMI <00 08 00 00> instead of DP <00 04 00 00>.
See guide:
https://www.tonymacx86.com/threads/...o-sandy-ivy-haswell-broadwell-skylake.189495/
 
No unusual errors in DSDT if you disassemble per guide: iasl -da -dl DSDT.aml SSDT*.aml.
Remove the extraneous 'External (BNUM, ....' line at the top of the file.

For audio, consider Mirone's AppleHDA patcher instead of AppleALC.kext.

For HDMI audio, you need to patch the framebuffer so that connector-type is HDMI <00 08 00 00> instead of DP <00 04 00 00>.
See guide:
https://www.tonymacx86.com/threads/...o-sandy-ivy-haswell-broadwell-skylake.189495/
Thank you @RehabMan will try it first thing tmr,thanks so much.
 
Back
Top