Contribute
Register

a good soul to help me with DSDT And SSDT

Status
Not open for further replies.
Your problem had nothing to do with "first time". It is because you didn't read carefully.


I did this, disassemble ssdt-6 .aml to .dsl

applying the patch

into_all all code_regex Name \ s + \ (_ IRC, \ s + ([^ \)]. *) \) replace matched
begin
Method (_IRC, 0, NotSerialized) {return (% 1)}
end;

then from:

If (LEqual (Arg0, One))
{
P8XH (One, 0x99, P8XH (Zero, One, Return (One), Return (Zero)))
}

to:

If (LEqual (Arg0, One))
{
P8XH (One, 0x99, P8XH (Zero, One, Return (One)))
}

it's right?

not beat me hahaha
 
I did this, disassemble dsdt-6 .aml to .dsl

applying the patch

into_all all code_regex Name \ s + \ (_ IRC, \ s + ([^ \)]. *) \) replace matched
begin
Method (_IRC, 0, NotSerialized) {return (% 1)}
end;

then from:

If (LEqual (Arg0, One))
{
P8XH (One, 0x99, P8XH (Zero, One, Return (One), Return (Zero)))
}

to:

If (LEqual (Arg0, One))
{
P8XH (One, 0x99, P8XH (Zero, One, Return (One)))
}

it's right?

not beat me hahaha

Not correct. The code with P8XH must be removed.

Read post #27 carefully.
 
Not correct. The code with P8XH must be removed.

Read post #27 carefully.

I did as you said, if I compile with ACPI 5.0A gives me this error
ACPI 4.0 I only 6 warnings

I wanted to ask you, the SSDT are all important to the proper functioning?
I put them all in extra or Clover?

The most important remains the DSDT? right
you can advise me which Patch to apply? , I saw that there is a patch for the battery

the thing that interests me a lot is the audio HDMI
 

Attachments

  • Schermata 2016-02-11 alle 11.10.48.png
    Schermata 2016-02-11 alle 11.10.48.png
    351.3 KB · Views: 62
  • Schermata 2016-02-11 alle 11.08.43.png
    Schermata 2016-02-11 alle 11.08.43.png
    490.4 KB · Views: 66
I did as you said, if I compile with ACPI 5.0A gives me this error
ACPI 4.0 I only 6 warnings

ACPI4 compiler does not catch as many errors.

I wanted to ask you, the SSDT are all important to the proper functioning?
I put them all in extra or Clover?

All static SSDTs should be included.

The most important remains the DSDT? right

Some patches to DSDT precipitate patches to SSDTs (renames must be applied equally).

you can advise me which Patch to apply? , I saw that there is a patch for the battery

The ACPI patching guide has a list of common patches. Battery patches are system specific. See battery patching guide.

the thing that interests me a lot is the audio HDMI

Requirements are in the FAQ.
 
ACPI4 compiler does not catch as many errors.



All static SSDTs should be included.



Some patches to DSDT precipitate patches to SSDTs (renames must be applied equally).



The ACPI patching guide has a list of common patches. Battery patches are system specific. See battery patching guide.



Requirements are in the FAQ.



I followed some guides for the hdmi, but it does not work ...
I give up, thanks anyway
 

Attachments

  • MacBook Pro di Kotzen.zip
    351.8 KB · Views: 43
thank you so much for the availability

IGPU is missing "hda-gfx"="onboard-1" injection (generally done with DSDT patch)
framebuffer is not patched for HDMI audio (patches available in my config.plist files in my Clover guide)
 
IGPU is missing "hda-gfx"="onboard-1" injection (generally done with DSDT patch)
framebuffer is not patched for HDMI audio (patches available in my config.plist files in my Clover guide)

how should I proceed?
I need to patch my DSDT?

and then change the Framebuffer?

I did some testing for patchere framebuffer with Clover, but it was no good.
if you want to give him a glance
 

Attachments

  • config.plist.zip
    1.6 KB · Views: 52
how should I proceed?
I need to patch my DSDT?

and then change the Framebuffer?

I did some testing for patchere framebuffer with Clover, but it was no good.
if you want to give him a glance

Refer to ACPI patching guide: http://www.tonymacx86.com/el-capitan-laptop-support/152573-guide-patching-laptop-dsdt-ssdts.html

(there are patches for HDMI-audio already in the repo; search for hda-gfx)

And the framebuffer patches are in the plist files linked from my Clover guide: http://www.tonymacx86.com/el-capita...de-booting-os-x-installer-laptops-clover.html. Read post #2, so you know about disabled patches.
 
Status
Not open for further replies.
Back
Top