Lines Matching defs:moxart_mac_priv_t
294 struct moxart_mac_priv_t { struct
295 struct platform_device *pdev;
296 void __iomem *base;
297 unsigned int reg_maccr;
298 unsigned int reg_imr;
299 struct napi_struct napi;
300 struct net_device *ndev;
302 dma_addr_t rx_base;
303 dma_addr_t rx_mapping[RX_DESC_NUM];
304 void *rx_desc_base;
305 unsigned char *rx_buf_base;
306 unsigned char *rx_buf[RX_DESC_NUM];
307 unsigned int rx_head;
308 unsigned int rx_buf_size;
310 dma_addr_t tx_base;
311 dma_addr_t tx_mapping[TX_DESC_NUM];
312 void *tx_desc_base;
313 unsigned char *tx_buf_base;
314 unsigned char *tx_buf[RX_DESC_NUM];
315 unsigned int tx_head;
316 unsigned int tx_buf_size;
318 spinlock_t txlock;
319 unsigned int tx_len[TX_DESC_NUM];
320 struct sk_buff *tx_skb[TX_DESC_NUM];
321 unsigned int tx_tail;