Go to the documentation of this file.
21 #define LTQ_DESC_SIZE 0x08
22 #define LTQ_DESC_NUM 0x40
24 #define LTQ_DMA_OWN BIT(31)
25 #define LTQ_DMA_C BIT(30)
26 #define LTQ_DMA_SOP BIT(29)
27 #define LTQ_DMA_EOP BIT(28)
28 #define LTQ_DMA_TX_OFFSET(x) ((x & 0x1f) << 23)
29 #define LTQ_DMA_RX_OFFSET(x) ((x & 0x7) << 23)
30 #define LTQ_DMA_SIZE_MASK (0xffff)