Lines Matching refs:xPhyObject
176 static EthernetPhy_t xPhyObject; variable
412 if( xPhyCheckLinkStatus( &xPhyObject, xBytesReceived ) ) in prvEMACDeferredInterruptHandlerTask()
657 vPhyInitialise( &xPhyObject, &xPHYRead, &xPHYWrite ); in prvPHYInit()
658 xPhyDiscover( &xPhyObject ); in prvPHYInit()
659 xPhyConfigure( &xPhyObject, &xPHYProperties ); in prvPHYInit()
673 xPhyStartAutoNegotiation( &xPhyObject, xPhyGetMask( &xPhyObject ) ); in prvPHYLinkReset()
676 prvGMACEnableFullDuplex( xPhyObject.xPhyProperties.ucDuplex == PHY_DUPLEX_FULL ); in prvPHYLinkReset()
677 prvGMACEnable100Mbps( xPhyObject.xPhyProperties.ucSpeed == PHY_SPEED_100 ); in prvPHYLinkReset()
682 xPhyObject.xPhyPreferences.ucDuplex = xPHYProperties.ucDuplex; in prvPHYLinkReset()
683 xPhyObject.xPhyPreferences.ucSpeed = xPHYProperties.ucSpeed; in prvPHYLinkReset()
684 xPhyObject.xPhyPreferences.ucMDI_X = xPHYProperties.ucMDI_X; in prvPHYLinkReset()
685 xPhyFixedValue( &xPhyObject, xPhyGetMask( &xPhyObject ) ); in prvPHYLinkReset()
718 return( xPhyObject.ulLinkStatusMask != 0 ); in xATSAM5x_PHYGetLinkStatus()