Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/net/
H A Dep93xx_eth.c111 for (i = 0; i < NUMTXDESC; i++) { in dump_tx_descriptor_queue()
129 for (i = 0; i < NUMTXDESC; i++) { in dump_tx_status_queue()
179 priv->tx_dq.end = (priv->tx_dq.base + NUMTXDESC); in ep93xx_eth_open()
182 priv->tx_sq.end = (priv->tx_sq.base + NUMTXDESC); in ep93xx_eth_open()
197 writel(sizeof(struct tx_descriptor) * NUMTXDESC, &mac->txdq.blen); in ep93xx_eth_open()
201 writel(sizeof(struct tx_status) * NUMTXDESC, &mac->txstsq.blen); in ep93xx_eth_open()
246 (sizeof(struct tx_descriptor) * NUMTXDESC)); in ep93xx_eth_open()
250 (sizeof(struct tx_status) * NUMTXDESC)); in ep93xx_eth_open()
461 priv->tx_dq.base = calloc(NUMTXDESC, in ep93xx_eth_initialize()
468 priv->tx_sq.base = calloc(NUMTXDESC, in ep93xx_eth_initialize()
H A Dep93xx_eth.h29 #define NUMTXDESC 1 macro