Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/net/
H A Dep93xx_eth.c59 printf(" tx_dq.end %p\n", priv->tx_dq.end); in dump_dev()
113 priv->tx_dq.base + i, in dump_tx_descriptor_queue()
114 (priv->tx_dq.base + i)->word1, in dump_tx_descriptor_queue()
115 (priv->tx_dq.base + i)->word2); in dump_tx_descriptor_queue()
178 priv->tx_dq.current = priv->tx_dq.base; in ep93xx_eth_open()
179 priv->tx_dq.end = (priv->tx_dq.base + NUMTXDESC); in ep93xx_eth_open()
245 memset(priv->tx_dq.base, 0, in ep93xx_eth_open()
387 priv->tx_dq.current->word1 = (uint32_t)packet; in ep93xx_eth_send_packet()
461 priv->tx_dq.base = calloc(NUMTXDESC, in ep93xx_eth_initialize()
463 if (priv->tx_dq.base == NULL) { in ep93xx_eth_initialize()
[all …]
H A Dep93xx_eth.h120 struct tx_descriptor_queue tx_dq; member