InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 05-07-2010, 02:26 AM
Hutch Hutch is offline
Cheetah
 
Join Date: May 2010
Posts: 2
DSDT Ethernet after wake

Hi all,
I have a Zotac G-E LGA775 ITX motherboard. However, the ethernet doesn't work after wake from sleep. I gave it a go trying to fix it using both of the following in the _WAK method to no avail.

Notify(\_SB.PCI0.GIGE, Zero)
Store(0x01, \_SB.PCI0.GIGE)



IOReg
Code:
 | +-o PCI0@0  <class IOACPIPlatformDevice, id 0x100000128, registered, matc$
    | | +-o AppleACPIPCI  <class AppleACPIPCI, id 0x1000001db, registered, matc$
    | |   +-o GIGE@A  <class IOPCIDevice, id 0x1000001d9, registered, matched, active, busy 0 (4157 ms), retain 10>
    | |   | +-o NVEthernet  <class NVEthernet, id 0x1000002f1, !registered, !matched, active, busy 0 (8 ms), retain 6>
    | |   |   +-o IOEthernetInterface  <class IOEthernetInterface, id 0x1000002f3, registered, matched, active, busy 0 (8 ms), $
    | |   |     +-o IONetworkStack  <class IONetworkStack, id 0x10000031f, registered, matched, active, busy 0 (4 ms), retain 7$
    | |   |       +-o IONetworkStackUserClient  <class IONetworkStackUserClient, id 0x10000032b, !registered, !matched, active,$
_WAK from DSDT
Code:
Method (_WAK, 1, NotSerialized)
    {
        Store (0xFF, DBG1)
        Store (Zero, SFLG)
        If (LEqual (RTCW, Zero))
        {
            Notify (\_SB.PWRB, 0x02)
        }
	Store (0x01, \_SB.PCI0.GIGE)
        Notify (\_SB.PCI0.OHC1, Zero)
        Notify (\_SB.PCI0.OHC2, Zero)
        If (LGreaterEqual (OSFL, One))
        {
            Store (Zero, \_SB.PCI0.SBUS.SMPM)
        }

        Return (Zero)
    }
Using Store (0x01, \_SB.PCI0.GIGE) produced a black screen on wake and I have to reboot.
Reply With Quote
  #2  
Old 05-10-2010, 12:34 AM
Hutch Hutch is offline
Cheetah
 
Join Date: May 2010
Posts: 2
Any ideas on this?

Would be much appreciated.



💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers.

Reply With Quote
Reply