/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/xilinx_ultrascale/ |
D | x_emacpsif_physpeed.c | 329 uint16_t status; in get_TI_phy_speed() local 455 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_TI_phy_speed() 459 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_TI_phy_speed() 470 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_TI_phy_speed() 498 uint16_t status; in get_Marvell_phy_speed() local 553 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Marvell_phy_speed() 557 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_Marvell_phy_speed() 570 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Marvell_phy_speed() 603 uint16_t status; in get_Realtek_phy_speed() local 644 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Realtek_phy_speed() [all …]
|
D | x_emacpsif_dma.c | 558 uint32_t status; in init_dma() local 583 status = XEmacPs_BdRingCreate( rxRing, ( UINTPTR ) xemacpsif->rxSegments, in init_dma() 587 if( status != 0 ) in init_dma() 589 return status; in init_dma() 592 status = XEmacPs_BdRingClone( rxRing, &bdTemplate, XEMACPS_RECV ); in init_dma() 594 if( status != 0 ) in init_dma() 596 return status; in init_dma() 623 status = XEmacPs_BdRingAlloc( rxRing, 1, &dmaBdPtr ); in init_dma() 625 if( status != 0 ) in init_dma() 627 return status; in init_dma() [all …]
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/TM4C/ |
D | NetworkInterface.c | 504 uint32_t status; in freertos_tcp_ethernet_int() local 508 status = EMACIntStatus( EMAC0_BASE, true ); in freertos_tcp_ethernet_int() 511 if( status & EMAC_INT_POWER_MGMNT ) in freertos_tcp_ethernet_int() 518 status &= ~( EMAC_INT_POWER_MGMNT ); in freertos_tcp_ethernet_int() 521 if( status ) in freertos_tcp_ethernet_int() 523 MAP_EMACIntClear( EMAC0_BASE, status ); in freertos_tcp_ethernet_int() 527 if( EMAC_INT_PHY & status ) in freertos_tcp_ethernet_int() 533 if( EMAC_INT_TRANSMIT & status ) in freertos_tcp_ethernet_int() 539 if( ( EMAC_INT_RECEIVE | EMAC_INT_RX_NO_BUFFER | EMAC_INT_RX_STOPPED ) & status ) in freertos_tcp_ethernet_int() 690 uint16_t status; in _process_phy_interrupts() local [all …]
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/DriverSAM/ |
D | gmac_SAM.c | 288 gs_tx_desc[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem() 292 gs_tx_desc[ GMAC_TX_BUFFERS - 1 ].status.val = GMAC_TXD_USED | GMAC_TXD_WRAP; in gmac_reset_tx_mem() 342 gs_rx_desc[ ul_index ].status.val = 0; in gmac_reset_rx_mem() 517 ( pxHead->status.val & GMAC_RXD_SOF ) == 0 ) in gmac_dev_poll() 536 if( ( pxHead->status.val & GMAC_RXD_EOF ) != 0 ) in gmac_dev_poll() 539 ulReturn = pxHead->status.bm.b_len; in gmac_dev_poll() 552 if( ( pxHead->status.val & GMAC_RXD_SOF ) != 0 ) in gmac_dev_poll() 576 … if( ( pxHead->status.val & ( GMAC_RXD_SOF | GMAC_RXD_EOF ) ) == ( GMAC_RXD_SOF | GMAC_RXD_EOF ) ) in gmac_dev_poll() 579 ulReturn = pxHead->status.bm.b_len; in gmac_dev_poll() 695 } while( ( pxHead->status.val & GMAC_RXD_EOF ) == 0 ); in gmac_dev_read() [all …]
|
D | gmac_SAM.h | 217 } status; member 244 } status; member
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/Zynq/ |
D | x_emacpsif_physpeed.c | 191 u16 status; in get_IEEE_phy_speed() local 212 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_IEEE_phy_speed() 214 if( ( control & IEEE_CTRL_AUTONEGOTIATE_ENABLE ) && ( status & in get_IEEE_phy_speed() 217 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_IEEE_phy_speed() 220 &status ); in get_IEEE_phy_speed() 226 if( status & IEEE_STAT_1GBPS_EXTENSIONS ) in get_IEEE_phy_speed() 254 if( status & IEEE_STAT_1GBPS_EXTENSIONS ) in get_IEEE_phy_speed() 288 u16 status; in get_IEEE_phy_speed() local 361 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_IEEE_phy_speed() 363 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_IEEE_phy_speed() [all …]
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/LPC54018/ |
D | NetworkInterface.c | 195 const status_t status = ENET_GetRxFrameSize( ENET, &g_handle, &length, 0 ); in rx_task() local 197 switch( status ) in rx_task() 255 status_t status = PHY_Init( &phyHandle, &phyConfig ); in xNetworkInterfaceInitialise() local 257 if( status == kStatus_PHY_AutoNegotiateFail ) in xNetworkInterfaceInitialise() 344 status_t status; in xNetworkInterfaceOutput() local 348 …status = ENET_SendFrame( ENET, &g_handle, pxNetworkBuffer->pucEthernetBuffer, pxNetworkBuffer->xDa… in xNetworkInterfaceOutput() 350 switch( status ) in xNetworkInterfaceOutput()
|
/FreeRTOS-Plus-TCP-v4.0.0/source/include/ |
D | FreeRTOS_TCP_IP.h | 128 #define tcpNOW_CONNECTED( status ) \ argument 129 …( ( ( ( status ) >= ( BaseType_t ) eESTABLISHED ) && ( ( status ) != ( BaseType_t ) eCLOSE_WAIT ) …
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/M487/ |
D | m480_eth.c | 344 unsigned int cur_entry, status; in numaker_eth_get_rx_buf() local 353 status = cur_rx_desc_ptr->status1; in numaker_eth_get_rx_buf() 355 if( status & OWNERSHIP_EMAC ) in numaker_eth_get_rx_buf() 360 if( status & RXFD_RXGD ) in numaker_eth_get_rx_buf() 363 *len = status & 0xFFFF; in numaker_eth_get_rx_buf() 377 unsigned int cur_entry, status; in EMAC_TX_IRQHandler() local 379 status = EMAC->INTSTS & 0xFFFF0000; in EMAC_TX_IRQHandler() 380 EMAC->INTSTS = status; in EMAC_TX_IRQHandler() 382 if( status & EMAC_INTSTS_TXBEIF_Msk ) in EMAC_TX_IRQHandler()
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/ATSAM4E/ |
D | gmac.c | 231 p_td[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem() 234 p_td[ p_dev->ul_tx_list_size - 1 ].status.val = in gmac_reset_tx_mem() 265 pRd[ ul_index ].status.val = 0; in gmac_reset_rx_mem() 514 ( pxHead->status.val & GMAC_RXD_SOF ) == 0 ) in gmac_dev_poll() 529 if( ( pxHead->status.val & GMAC_RXD_EOF ) != 0 ) in gmac_dev_poll() 532 ulReturn = pxHead->status.bm.len; in gmac_dev_poll() 545 if( ( pxHead->status.val & GMAC_RXD_SOF ) != 0 ) in gmac_dev_poll() 637 } while( ( pxHead->status.val & GMAC_RXD_EOF ) == 0 ); in gmac_dev_read() 692 if( ( p_tx_td->status.val & GMAC_TXD_USED ) == 0 ) in gmac_dev_write() 735 p_tx_td->status.val = in gmac_dev_write() [all …]
|
D | gmac.h | 189 } status; member 216 } status; member
|
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/patches/ |
D | compute_patch.py | 125 status = subprocess.run(["git", "status"], stdout=subprocess.DEVNULL, 131 if status.returncode: 135 """.format(status.returncode, status.stderr)))
|
/FreeRTOS-Plus-TCP-v4.0.0/test/cbmc/proofs/lib/ |
D | summarize.py | 98 for status, count in count_statuses.items(): 99 statuses.append([status, str(count)])
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/STM32Hxx/ |
D | readme.md | 105 __IO uint32_t DMAISR; // ETH_DMAISR DMA Interrupt status register 106 __IO uint32_t DMADSR; // ETH_DMADSR DMA Debug status register 122 __IO uint32_t DMACSR; // ETH_DMACSR Channel status register
|
D | stm32hxx_hal_eth.c | 544 HAL_StatusTypeDef status = HAL_OK; in HAL_ETH_RegisterCallback() local 601 status = HAL_ERROR; in HAL_ETH_RegisterCallback() 621 status = HAL_ERROR; in HAL_ETH_RegisterCallback() 630 status = HAL_ERROR; in HAL_ETH_RegisterCallback() 636 return status; in HAL_ETH_RegisterCallback() 659 HAL_StatusTypeDef status = HAL_OK; in HAL_ETH_UnRegisterCallback() local 708 status = HAL_ERROR; in HAL_ETH_UnRegisterCallback() 728 status = HAL_ERROR; in HAL_ETH_UnRegisterCallback() 737 status = HAL_ERROR; in HAL_ETH_UnRegisterCallback() 743 return status; in HAL_ETH_UnRegisterCallback()
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/NXP1060/ |
D | NetworkInterface.c | 553 … const status_t status = ENET_GetRxFrameSize( &( ethernetifLocal->handle ), &length, 0 ); in prvEMACHandlerTask() local 555 switch( status ) in prvEMACHandlerTask()
|
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/ATSAM4E/instance/ |
D | gmac.h | 190 } status; member 217 } status; member
|
/FreeRTOS-Plus-TCP-v4.0.0/ |
D | History.txt | 120 instead of being given the eCLOSE_WAIT status. A client socket, which calls 121 connect() to establish a connection, will receive the eCLOSE_WAIT status, 333 + Grouped DHCP status data into a structure.
|
/FreeRTOS-Plus-TCP-v4.0.0/docs/doxygen/ |
D | config.doxyfile | 865 # at the end of the doxygen process doxygen will return with a non-zero status.
|