Contribute
Register

Mavericks: Native CPU/IGPU Power Management

Hello, If I am using GTX 560 and Intel i5 2500k Can I use MacPro3.1 profile (because of the GPU). I have problem with the MacMini Profile it probably wont load the graphic driver for my GPU.
 
See Post #1/Settings: Haswell/Ivy Bridge/Sandy Bridge/Additional Native Power Management
Properties
SBUS and BUS0 not loading, dsdt fix required or ssdt fix possible.

Hi,

can you help me or forward me somewhere? I do not know how/what shoudl I fix in dsdt or ssdt and also SBUS and BUS0.

Thank you for your time.
 
do not know how/what shoudl I fix in dsdt or ssdt and also SBUS and BUS0.
Try RehabMan or PJALM dsdt patches.
Example, credit RehabMan, use MaciASL:
Code:
#Maintained by: RehabMan for: Laptop Patches
#system_SMBUS.txt


#   SMBUS fix
into device label BUS0 parent_adr 0x001F0003 remove_entry;
into device name_adr 0x001F0003 insert
begin
Device (BUS0)\n
{\n
    Name (_CID, "smbus")\n
    Name (_ADR, Zero)\n
    Device (DVL0)\n
    {\n
        Name (_ADR, 0x57)\n
        Name (_CID, "diagsvault")\n
        Method (_DSM, 4, NotSerialized)\n
        {\n
            If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
            Return (Package() { "address", 0x57 })\n
        }\n
    }\n
}\n
end;
 
Try the DSDT Patch and still same problem probably.
SBUS working
Verify BIOS/Optimized Defaults set
Edit config.plist/ACPI/SSDT/DropOem/NO (Clover)
Attach Clover Boot log with new files.
 
IOReg/.../CPU0@0/.../ACPI_SMC_PlatformPlugin/AICPMVers/0x1240105 is missing. Do not know why.
Consider a clean install.

Its a few weeks old fresh install, but i can try clean install on another ssd. Btw do i need some Bios mod for my MB? Because i saw that asus released some new BIOS but i think that i have some moded bios now.

thank you
 
Hi all! I have one question.

What is the difference between this in SSDT.aml:
External (_PR_.CPU0, DeviceObj)
External (_PR_.CPU1, DeviceObj)
External (_PR_.CPU2, DeviceObj)
External (_PR_.CPU3, DeviceObj)
External (_PR_.CPU4, DeviceObj)
External (_PR_.CPU5, DeviceObj)
External (_PR_.CPU6, DeviceObj)
External (_PR_.CPU7, DeviceObj)

and this

External (_SB_.CPU0, DeviceObj)
External (_SB_.CPU1, DeviceObj)
External (_SB_.CPU2, DeviceObj)
External (_SB_.CPU3, DeviceObj)
External (_SB_.CPU4, DeviceObj)
External (_SB_.CPU5, DeviceObj)
External (_SB_.CPU6, DeviceObj)
External (_SB_.CPU7, DeviceObj)

Its from SSDT.aml generated by ssdtPRGen.sh for 4790K CPU.
Version with "_PR_" is generated by n3oNLit3 and version with "_SB_" is generated by me on my machine.
CPU speed stepping works with both version, but when using _PR_ i have Power Nap checkbox in Energy Saver panel, with _SB_ theres no Power Nap checkbox.

Why ssdtPRGen.sh script generate different SSDT for the same CPU? Thanks for any insights.

EDIT: I find reason why i have _SB_ in generated SSDT.aml. I need put mine DSDT.aml to ssdtPRGen folder. It generates SSDT with _PR_ now.
 
Back
Top