View Single Post
 
Old 09-17-2009, 12:10 AM
Snoc Snoc is offline
Cheetah
 
Join Date: Aug 2009
Posts: 14
Quote:
Originally Posted by adrianmak View Post
anyone with asus p5k-e wifi-ap motherboard, tried time machine ?
with the on-board network card work with time machine ?
Hi!

DSDT Time machine fix:

Insert this:
Code:
                Device (GIGE)
                {
                    Name (_ADR, Zero)
                    OperationRegion (GPIO, SystemIO, 0x0800, 0x06)
                    Field (GPIO, ByteAcc, NoLock, Preserve)
                    {
                        GO01,   8, 
                        GO02,   8, 
                        GO03,   8, 
                        GO04,   8, 
                        GO05,   8, 
                        GP9,    1
                    }

                    Name (_PRW, Package (0x02)
                    {
                        0x09, 
                        0x03
                    })
                    Method (EWOL, 1, NotSerialized)
                    {
                        If (LEqual (Arg0, One))
                        {
                            Or (GP9, One, GP9)
                        }
                        Else
                        {
                            And (GP9, Zero, GP9)
                        }

                        If (LEqual (Arg0, GP9))
                        {
                            Return (Zero)
                        }
                        Else
                        {
                            Return (One)
                        }
                    }
                }

In the next section of Device (P0P9):

Code:
           Device (P0P9)
            {
                Name (_ADR, 0x001C0005)
                Method (_PRW, 0, NotSerialized)
                {
                    Return (GPRW (0x09, 0x04))
                }

                Method (_PRT, 0, NotSerialized)
                {
                    If (PICM)
                    {
                        Return (AR09)
                    }

                    Return (PR09)
                }

                ******INSERT HERE*****

            }

Thanks to Gringo Vermelho
Reply With Quote