View Single Post
 
Old 10-25-2009, 12:05 PM
CEOS CEOS is offline
Cheetah
 
Join Date: Oct 2009
Posts: 11
Update:

Ok, i thinki found out were the 4th SATA bay is configured.
This is the code for it:
Code:
 Device (PRT3)
                {
                    Name (_ADR, 0x03)
                    Method (_GTF, 0, NotSerialized)
                    {
                        Name (PIB3, Buffer (0x07)
                        {
                            0x00, 0x00, 0x00, 0x00, 0x00, 0xB0, 0xF5
                        })
                        Return (PIB3)
                    }

                    Method (_DSM, 4, NotSerialized)
                    {
                        Store (Package (0x02)
                            {
                                "io-device-location", 
                                Buffer (0x06)
                                {
                                    "Bay 4"
                                }
                            }, Local0)
                        DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                        Return (Local0)
                    }
                }
the code let the 4th SATA port to be detected as integrated.
i want to modify it to let OSX recognize it as normal SATA port (like it did without the DSDT patch)

how can i do this ?

my system:
Intel Q6600
PNY 8800gts 512 (g92)
Gigabyte Ga EP45-DS3R (BIOS rev. F11e)
4gb DDR2 ram
snow leopard
XP Pro

Last edited by CEOS; 10-25-2009 at 12:09 PM.
Reply With Quote