InfiniteMac OSx86

InfiniteMac OSx86 (http://infinitemac.com/forum.php)
-   Snow Leopard 10.6 (http://infinitemac.com/forumdisplay.php?f=87)
-   -   [GUIDE] EVGA X58 Snow Leopard Mac OS X 10.6.6 (10J567) Installation (http://infinitemac.com/showthread.php?t=3854)

JaE-V 03-09-2010 03:56 AM

***updated my bios and red ports started working*** lol good foot note to others that may run into this issue, i normally dont update my bios but i saw evga updated the sata controllers a few times so i went ahead with it

msf5042 03-10-2010 05:09 AM

I upgraded to the new bios. Works well.

With HPET I actually was able to patch my DSDT to add in vanilla speedstep (no NullCPUPowerManagement) and the LPC device to ioreg. I get no c-state or p-state errors after my patch, but my geekbench scores cut in half from 11000 to 5500 so I am still working to see if there's another route.

The board still doesn't sleep with the DSDT fix. My CPU fan doesn't go to sleep so I don't think our sleep issue is waking our board up but rather getting it to fully go to sleep.

I also was able to get my temps back, although I was already using fakesmc v2. I think I had to uninstall istat and reinstall it and then it showed me my memory processes and temps again. Something like that.

If I figure anything else out I will update the thread and upload my work.

JaE-V 03-10-2010 06:10 AM

Quote:

Originally Posted by msf5042 (Post 46090)
I upgraded to the new bios. Works well.

With HPET I actually was able to patch my DSDT to add in vanilla speedstep (no NullCPUPowerManagement) and the LPC device to ioreg. I get no c-state or p-state errors after my patch, but my geekbench scores cut in half from 11000 to 5500 so I am still working to see if there's another route.

The board still doesn't sleep with the DSDT fix. My CPU fan doesn't go to sleep so I don't think our sleep issue is waking our board up but rather getting it to fully go to sleep.

I also was able to get my temps back, although I was already using fakesmc v2. I think I had to uninstall istat and reinstall it and then it showed me my memory processes and temps again. Something like that.

If I figure anything else out I will update the thread and upload my work.

hey thanks for the info! i'm looking around for sleep fix as well....have you tried the new 10.6.2 sleepenabler kext?

msf5042 03-10-2010 03:58 PM

Quote:

Originally Posted by JaE-V (Post 46091)
hey thanks for the info! i'm looking around for sleep fix as well....have you tried the new 10.6.2 sleepenabler kext?

yes. not working.

msf5042 03-12-2010 04:22 AM

so five years later...


I GOT SLEEP WORKING!!!!!!!!!!!!!!!!!!!!!! Hah that took forever. I will post instructions soon

msf5042 03-12-2010 02:55 PM

Take a nap
 
Getting sleep working:


NOTE: Part C here is what I think will do it for most of us.

First off, I am running this as a MacPro4,1. Here is my smbios (note the SMbiosversion). If you are not already running this, I suggest editing your smbios.plist and making sure your system works with it.

Code:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>SMUUID</key>
    <string>A50D8F06-0E4F-3808-80EB-7B81AE274E95</string>
    <key>SMbiosdate</key>
    <string>2/29/2008</string>
    <key>SMbiosvendor</key>
    <string>Apple Inc.</string>
    <key>SMbiosversion</key>
    <string>MP41.88Z.0081.B04.0903051113</string>
    <key>SMboardmanufacturer</key>
    <string>Apple Computer, Inc.</string>
    <key>SMboardproduct</key>
    <string>Mac-F42C88C8</string>
    <key>SMfamily</key>
    <string>MacPro</string>
    <key>SMmanufacturer</key>
    <string>Apple Inc.</string>
    <key>SMmemmanufacter</key>
    <string>OCZ</string>
    <key>SMmempart</key>
    <string>OCZ3P1600LV6GK</string>
    <key>SMmemserial_1</key>
    <string>000123-01234567-0</string>
    <key>SMmemserial_2</key>
    <string>000123-01234567-1</string>
    <key>SMmemserial_3</key>
    <string>000123-01234567-2</string>
    <key>SMmemserial_4</key>
    <string>000123-01234567-3</string>
    <key>SMmemserial_5</key>
    <string>000123-01234567-4</string>
    <key>SMmemserial_6</key>
    <string>000123-01234567-5</string>
    <key>SMmemspeed</key>
    <string>1600</string>
    <key>SMmemtype</key>
    <string>24</string>
    <key>SMproductname</key>
    <string>Mac Pro 4,1</string>
    <key>SMserial</key>
    <string>CK034KMHK5B</string>
    <key>SMsystemversion</key>
    <string>1.0</string>
</dict>
</plist>


Bios Settings:
ACPI Suspend Type: S3
Run VGABios if S3 Resume: No
Soft-off by PWRButton: Instant off
Wake up by PCI Card: Disabled
USB KB Wakeup from S3: Enabled
Pwron after pwr failure: on (this is also enabled in system settings)


You need the 10.6.2 sleepenabler



1. GETTING YOUR BOARD TO GO TO SLEEP

If your computer fully sleeps (fans off, usb off, etc) then you can skip this. If not, here are some things to debug:

A. USB: go into system profiler and check to see if usb is marked as built in.

If they are not internal you will need to modify the USB devices on your DSDT. I did not have to do this, but what you have to do is add the DSM method to each of your usb/ehci devices. I plugged my iphone into my desktop and made sure that the desktop stopped charging it when it went to sleep.
You can read more about this here
It should look like this:
Code:

Device (USB0)
{
        Name (_ADR, 0x001D0000)
        Method (_S3D, 0, NotSerialized)
        {
            If (LEqual (OSFL, 0x02))
            {
                Return (0x02)
            }

            Return (0x03)
        }

        Method (_DSM, 4, NotSerialized)
        {
            Store (Package (0x02)
                {
                    "device-id",
                    Buffer (0x04)
                    {
                        0x34, 0x3A, 0x00, 0x00
                    }
                }, Local0)
            DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
            Return (Local0)
        }

        Name (_PRW, Package (0x02)
        {
            0x03,
            0x03
        })
}



B. SATA: In System Profiler, your SATA devices should be ICH10 (or ESB2 if you fixed it via DSDST to get rid of ACPIPortInjector/IOAHCIBlockStorageInjector). Obviously your JMICRON ports won't be but that's okay. I didn't have a problem here. If you do, see this guide.



C. Getting your computer to recognize S3 sleep

Go into your kernel.log and filter by "ACPI:". You should see something like:

Code:

"ACPI: System State [S0...."
This line should have S3 in it as follows:
Code:

ACPI: System State [S0 S3 S4 S5] (S3)
If it does not....
Make sure you have s3 enabled in bios, and then if you still get the message it's back to DSDT.
Go to the section where you find the following:
Code:

Name (_S0, Package (0x04)
    {
        0x00,
        0x00,
        0x00,
        0x00
    })

You should have similar sections for the other states (S1, S3, S4, S5). If your S3 section is formatted differently then the rest. For me, I had to do a global replace of "SS3" with "_S3" (or something like that). Here is what is should look like when you're done (make sure you do a global replace):

Code:

Name (_S0, Package (0x04)
    {
        Zero,
        Zero,
        Zero,
        Zero
    })
    Name (_S1, Package (0x04)
    {
        One,
        Zero,
        Zero,
        Zero
    })
    Name (_S3, Package (0x04)
    {
        0x05,
        Zero,
        Zero,
        Zero
    })
    Name (_S4, Package (0x04)
    {
        0x06,
        Zero,
        Zero,
        Zero
    })
    Name (_S5, Package (0x04)
    {
        0x07,
        Zero,
        Zero,
        Zero
    })



2. WAKING UP:

Here I just had to make sure that I had installed the qe_ci package for my 4870 from netkas here. Different people might have to take different routes here. I think that turning off Run VGABios in the bios was important for this step.


3. OTHER:
To wake from your usb keyboard/mouse do the following:
Each USB(UHCI)/EHCI device in DSDT has a _PWR section in it. Right now it probably has 0x00 as the second parameter in it. Change this to 0x03 in each one. This is taken out of the macpro4,1 dsdt and it works for me. An example working USB section would be:
Code:

Device (USB0)
            {
                Name (_ADR, 0x001D0000)
                Method (_S3D, 0, NotSerialized)
                {
                    If (LEqual (OSFL, 0x02))
                    {
                        Return (0x02)
                    }

                    Return (0x03)
                }

                Name (_PRW, Package (0x02)
                {
                    0x03,
                    0x03
                })
            }



4. ISSUES

Theres a continuous error in console that reads:
Code:

FireWire GUID 0000000000000000 is invalid!
I haven't found a good solution to this yet. Disable firewire if it bugs you.

airwalk776 03-12-2010 04:37 PM

msf5042

This is great work man. I will try these steps tonight an report back.

is your system OC'd ?

When you state ". USB: go into system profiler and check to see if usb is marked as internal. " I assume you mean "Built-In"

I have two EVGA 9800 GTX + (lets see how that goes)

thanks again for you hard work.

Naren

msf5042 03-12-2010 05:32 PM

It's not oc'd right now, I set it to factory setting to make sure that didn't mess me up while I was trying to get this down

airwalk776 03-12-2010 07:12 PM

msf5042


It seems may things have changed since RC4 was released. can you post your extra folder and DSDT.aml or dsl file

thanks

msf5042 03-12-2010 10:41 PM

1 Attachment(s)
Sorry, I forgot to mention that you need the 10.6.2 sleepenabler.kext...
My boot file is 315kb, I think it chameleon but could be pc efi...my extra folders too large, heres my dsdt