Home
last modified time | relevance | path

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

/external/u-boot/drivers/net/
Dep93xx_eth.c57 printf(" tx_dq.base %p\n", priv->tx_dq.base); in dump_dev()
58 printf(" tx_dq.current %p\n", priv->tx_dq.current); in dump_dev()
59 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()
195 writel((uint32_t)priv->tx_dq.base, &mac->txdq.badd); in ep93xx_eth_open()
196 writel((uint32_t)priv->tx_dq.base, &mac->txdq.curadd); in ep93xx_eth_open()
[all …]
Dep93xx_eth.h120 struct tx_descriptor_queue tx_dq; member