Home
last modified time | relevance | path

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

/Zephyr-latest/drivers/ethernet/
Deth_xlnx_gem.c1324 bdptr = dev_data->rxbd_ring.first_bd; in eth_xlnx_gem_configure_buffers()
1373 dev_data->rxbd_ring.next_to_process = 0; in eth_xlnx_gem_configure_buffers()
1374 dev_data->rxbd_ring.next_to_use = 0; in eth_xlnx_gem_configure_buffers()
1375 dev_data->rxbd_ring.free_bds = dev_conf->rxbd_count; in eth_xlnx_gem_configure_buffers()
1381 sys_write32((uint32_t)dev_data->rxbd_ring.first_bd, in eth_xlnx_gem_configure_buffers()
1447 curr_bd_idx = dev_data->rxbd_ring.next_to_process; in eth_xlnx_gem_handle_rx_pending()
1449 reg_addr = (uint32_t)(&dev_data->rxbd_ring.first_bd[first_bd_idx].addr); in eth_xlnx_gem_handle_rx_pending()
1450 reg_ctrl = (uint32_t)(&dev_data->rxbd_ring.first_bd[first_bd_idx].ctrl); in eth_xlnx_gem_handle_rx_pending()
1482 reg_ctrl = (uint32_t)(&dev_data->rxbd_ring.first_bd[last_bd_idx].ctrl); in eth_xlnx_gem_handle_rx_pending()
1495 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