Contribute
Register

Kaby Lake 630 Graphics

Status
Not open for further replies.
config.plist/ACPI/DSDT/Patches is an excellent facility for renaming ACPI objects...
(as noted in my ACPI hotpatch guide)
So, does that mean I correctly applied your suggestion?
 
Also, regarding the comment concerning "CPU PM," is this what I need to do:

Experimental option for Skylake/Kaby Lake (and later): HWP

...

You can also enable HWP for other SMBIOS by creating a patched resources injector for X86PlatformPlugin.kext (or by patching the kext itself). But that is a subject for another day.
(emphasis added)

With my Clover Configurator, I do not have an "HWPEnable" flag to set. So, I am uncertain as to what to do here.
 
I took the gamble and rebooted. Things that were 'red' before are gone, and some 'green' highlighted entries are present. Also, the GFX0 has been renamed successfully, and, if I read correctly, the AppleIntelMEIDriver is loaded and responding.

Does that mean that CPU PM is now implemented?
 
So, does that mean I correctly applied your suggestion?

It looks fine. You need to test.

Also, regarding the comment concerning "CPU PM," is this what I need to do:


(emphasis added)

With my Clover Configurator, I do not have an "HWPEnable" flag to set. So, I am uncertain as to what to do here.

HWPEnable flag in Clover is useless.
You do not need to implement HWP to have CPU PM...

I took the gamble and rebooted. Things that were 'red' before are gone, and some 'green' highlighted entries are present. Also, the GFX0 has been renamed successfully, and, if I read correctly, the AppleIntelMEIDriver is loaded and responding.

Does that mean that CPU PM is now implemented?

If you need me to check something, you must provide "Problem Reporting" files as per FAQ.
 
I can't get AppleIntelInfo.kext to load - not sure which log to look in for the problem. I executed the chown/chmod commands successfully, but can't execute kextload.

Otherwise, the relevant files for PM check are below.

Thanks for the assistance!
 

Attachments

  • 2021705121405CloverSettings.zip
    2.7 MB · Views: 83
  • IOReg.ioreg
    5.2 MB · Views: 94
I can't get AppleIntelInfo.kext to load - not sure which log to look in for the problem. I executed the chown/chmod commands successfully, but can't execute kextload.

Otherwise, the relevant files for PM check are below.

Thanks for the assistance!

Show the error you're running into.
Your ioreg shows CPU PM is not implemented.
Your SSDT.aml in ACPI/patched is invalid (it is text, not AML).
 
Show the error you're running into.
Your ioreg shows CPU PM is not implemented.
Your SSDT.aml in ACPI/patched is invalid (it is text, not AML).

The error is now (ran chmod just prior):
chown: /Users/jmunson/Desktop/AppleIntelInfo.kext: Operation not permitted

I will add the .rtf back on the SSDT and reboot.
 
The error is now (ran chmod just prior):
chown: /Users/jmunson/Desktop/AppleIntelInfo.kext: Operation not permitted

I will add the .rtf back on the SSDT and reboot.

Keep in mind chown/chmod requires 'sudo'...
I never do it that way...
If I have a kext I want to demand load (with kextutil or kextload), I do this:
Code:
sudo mkdir /kexts
# AppleIntelInfo.kext as an example
sudo cp -R AppleIntelInfo.kext /kexts
sudo kextload /kexts/AppleIntelInfo.kext
 
Keep in mind chown/chmod requires 'sudo'...
Yup, forgot that... doh!!!
 
OK, here's the AppleIntelInfo file... Hopefully this point to successful?
 

Attachments

  • i77700KTest.txt
    17.4 KB · Views: 116
Status
Not open for further replies.
Back
Top