Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/net/
H A Dep93xx_eth.c112 for (i = 0; i < NUMTXDESC; i++) { in dump_tx_descriptor_queue()
130 for (i = 0; i < NUMTXDESC; i++) { in dump_tx_status_queue()
180 priv->tx_dq.end = (priv->tx_dq.base + NUMTXDESC); in ep93xx_eth_open()
183 priv->tx_sq.end = (priv->tx_sq.base + NUMTXDESC); in ep93xx_eth_open()
198 writel(sizeof(struct tx_descriptor) * NUMTXDESC, &mac->txdq.blen); in ep93xx_eth_open()
202 writel(sizeof(struct tx_status) * NUMTXDESC, &mac->txstsq.blen); in ep93xx_eth_open()
247 (sizeof(struct tx_descriptor) * NUMTXDESC)); in ep93xx_eth_open()
251 (sizeof(struct tx_status) * NUMTXDESC)); in ep93xx_eth_open()
462 priv->tx_dq.base = calloc(NUMTXDESC, in ep93xx_eth_initialize()
469 priv->tx_sq.base = calloc(NUMTXDESC, in ep93xx_eth_initialize()
H A Dep93xx_eth.h30 #define NUMTXDESC 1 macro