Home
last modified time | relevance | path

Searched refs:rxbd_ring (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.6.0/drivers/ethernet/
Deth_xlnx_gem.c1268 bdptr = dev_data->rxbd_ring.first_bd; in eth_xlnx_gem_configure_buffers()
1317 dev_data->rxbd_ring.next_to_process = 0; in eth_xlnx_gem_configure_buffers()
1318 dev_data->rxbd_ring.next_to_use = 0; in eth_xlnx_gem_configure_buffers()
1319 dev_data->rxbd_ring.free_bds = dev_conf->rxbd_count; in eth_xlnx_gem_configure_buffers()
1325 sys_write32((uint32_t)dev_data->rxbd_ring.first_bd, in eth_xlnx_gem_configure_buffers()
1391 curr_bd_idx = dev_data->rxbd_ring.next_to_process; in eth_xlnx_gem_handle_rx_pending()
1393 reg_addr = (uint32_t)(&dev_data->rxbd_ring.first_bd[first_bd_idx].addr); in eth_xlnx_gem_handle_rx_pending()
1394 reg_ctrl = (uint32_t)(&dev_data->rxbd_ring.first_bd[first_bd_idx].ctrl); in eth_xlnx_gem_handle_rx_pending()
1426 reg_ctrl = (uint32_t)(&dev_data->rxbd_ring.first_bd[last_bd_idx].ctrl); in eth_xlnx_gem_handle_rx_pending()
1439 dev_data->rxbd_ring.next_to_process = (last_bd_idx + 1) % in eth_xlnx_gem_handle_rx_pending()
[all …]
Deth_xlnx_gem_priv.h525 dev_data->rxbd_ring.first_bd = &(eth_xlnx_gem##port##_dma_area.rx_bd[0]);\
759 struct eth_xlnx_gem_bdring rxbd_ring; member