| /FreeRTOS-Plus-TCP-v3.1.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-v3.1.0/source/portable/NetworkInterface/Zynq/ |
| D | x_emacpsif_physpeed.c | 197 u16 status; in get_IEEE_phy_speed() local 218 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_IEEE_phy_speed() 220 if( ( control & IEEE_CTRL_AUTONEGOTIATE_ENABLE ) && ( status & in get_IEEE_phy_speed() 223 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_IEEE_phy_speed() 226 &status ); in get_IEEE_phy_speed() 232 if( status & IEEE_STAT_1GBPS_EXTENSIONS ) in get_IEEE_phy_speed() 260 if( status & IEEE_STAT_1GBPS_EXTENSIONS ) in get_IEEE_phy_speed() 294 u16 status; in get_IEEE_phy_speed() local 366 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_IEEE_phy_speed() 368 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_IEEE_phy_speed() [all …]
|
| /FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/xilinx_ultrascale/ |
| D | x_emacpsif_physpeed.c | 353 uint16_t status; in get_TI_phy_speed() local 479 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_TI_phy_speed() 483 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_TI_phy_speed() 494 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_TI_phy_speed() 522 uint16_t status; in get_Marvell_phy_speed() local 577 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Marvell_phy_speed() 581 while( !( status & IEEE_STAT_AUTONEGOTIATE_COMPLETE ) ) in get_Marvell_phy_speed() 594 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Marvell_phy_speed() 627 uint16_t status; in get_Realtek_phy_speed() local 668 XEmacPs_PhyRead( xemacpsp, phy_addr, IEEE_STATUS_REG_OFFSET, &status ); in get_Realtek_phy_speed() [all …]
|
| D | x_emacpsif_dma.c | 541 uint32_t status; in init_dma() local 566 status = XEmacPs_BdRingCreate( rxRing, ( UINTPTR ) xemacpsif->rxSegments, in init_dma() 570 if( status != 0 ) in init_dma() 572 return status; in init_dma() 575 status = XEmacPs_BdRingClone( rxRing, &bdTemplate, XEMACPS_RECV ); in init_dma() 577 if( status != 0 ) in init_dma() 579 return status; in init_dma() 606 status = XEmacPs_BdRingAlloc( rxRing, 1, &dmaBdPtr ); in init_dma() 608 if( status != 0 ) in init_dma() 610 return status; in init_dma() [all …]
|
| /FreeRTOS-Plus-TCP-v3.1.0/source/portable/NetworkInterface/DriverSAM/ |
| D | gmac_SAM.c | 266 gs_tx_desc[ ul_index ].status.val = GMAC_TXD_USED; in gmac_reset_tx_mem() 270 gs_tx_desc[ GMAC_TX_BUFFERS - 1 ].status.val = GMAC_TXD_USED | GMAC_TXD_WRAP; in gmac_reset_tx_mem() 320 gs_rx_desc[ ul_index ].status.val = 0; in gmac_reset_rx_mem() 501 ( pxHead->status.val & GMAC_RXD_SOF ) == 0 ) in gmac_dev_poll() 520 if( ( pxHead->status.val & GMAC_RXD_EOF ) != 0 ) in gmac_dev_poll() 523 ulReturn = pxHead->status.bm.b_len; in gmac_dev_poll() 536 if( ( pxHead->status.val & GMAC_RXD_SOF ) != 0 ) in gmac_dev_poll() 560 … if( ( pxHead->status.val & ( GMAC_RXD_SOF | GMAC_RXD_EOF ) ) == ( GMAC_RXD_SOF | GMAC_RXD_EOF ) ) in gmac_dev_poll() 563 ulReturn = pxHead->status.bm.b_len; in gmac_dev_poll() 673 } while( ( pxHead->status.val & GMAC_RXD_EOF ) == 0 ); in gmac_dev_read() [all …]
|
| D | gmac_SAM.h | 214 } status; member 241 } status; member
|
| /FreeRTOS-Plus-TCP-v3.1.0/source/include/ |
| D | FreeRTOS_TCP_IP.h | 114 #define tcpNOW_CONNECTED( status ) \ argument 115 …( ( ( ( status ) >= ( BaseType_t ) eESTABLISHED ) && ( ( status ) != ( BaseType_t ) eCLOSE_WAIT ) …
|
| /FreeRTOS-Plus-TCP-v3.1.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-v3.1.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-v3.1.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-v3.1.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-v3.1.0/source/portable/NetworkInterface/STM32Hxx/ |
| D | readme.md | 100 __IO uint32_t DMAISR; // ETH_DMAISR DMA Interrupt status register 101 __IO uint32_t DMADSR; // ETH_DMADSR DMA Debug status register 117 __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-v3.1.0/source/portable/NetworkInterface/ATSAM4E/instance/ |
| D | gmac.h | 190 } status; member 217 } status; member
|
| /FreeRTOS-Plus-TCP-v3.1.0/ |
| D | History.txt | 51 instead of being given the eCLOSE_WAIT status. A client socket, which calls 52 connect() to establish a connection, will receive the eCLOSE_WAIT status, 264 + Grouped DHCP status data into a structure.
|
| /FreeRTOS-Plus-TCP-v3.1.0/docs/doxygen/ |
| D | config.doxyfile | 835 # at the end of the doxygen process doxygen will return with a non-zero status.
|