Lines Matching refs:xPhyObject
165 static EthernetPhy_t xPhyObject; variable
344 if( xPhyCheckLinkStatus( &xPhyObject, xBytesReceived ) ) in prvEMACDeferredInterruptHandlerTask()
513 vPhyInitialise( &xPhyObject, &xPHYRead, &xPHYWrite ); in prvPHYInit()
514 xPhyDiscover( &xPhyObject ); in prvPHYInit()
515 xPhyConfigure( &xPhyObject, &xPHYProperties ); in prvPHYInit()
529 xPhyStartAutoNegotiation( &xPhyObject, xPhyGetMask( &xPhyObject ) ); in prvPHYLinkReset()
532 prvGMACEnableFullDuplex( xPhyObject.xPhyProperties.ucDuplex == PHY_DUPLEX_FULL ); in prvPHYLinkReset()
533 prvGMACEnable100Mbps( xPhyObject.xPhyProperties.ucSpeed == PHY_SPEED_100 ); in prvPHYLinkReset()
538 xPhyObject.xPhyPreferences.ucDuplex = xPHYProperties.ucDuplex; in prvPHYLinkReset()
539 xPhyObject.xPhyPreferences.ucSpeed = xPHYProperties.ucSpeed; in prvPHYLinkReset()
540 xPhyObject.xPhyPreferences.ucMDI_X = xPHYProperties.ucMDI_X; in prvPHYLinkReset()
541 xPhyFixedValue( &xPhyObject, xPhyGetMask( &xPhyObject ) ); in prvPHYLinkReset()
573 return( xPhyObject.ulLinkStatusMask != 0 ); in bPHYGetLinkStatus()