diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2012-07-08 21:41:18 -0400 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-08-30 14:15:52 -0400 |
commit | 932e30b6ea8d2ce5a5d60b799f5c088547f105b3 (patch) | |
tree | e6ea2766fc8be290836979740a4f94cbb4d6404d /arch/mips/include | |
parent | dd89d60c032ab05720f745bf8c39d09512a77043 (diff) |
MIPS: BCM63XX: Move DMA descriptor definition into common header file
The "IUDMA" engine used by bcm63xx_enet is also used by other blocks,
such as the USB 2.0 device. Move the definitions into a common file so
that they do not need to be duplicated in each driver.
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
Patchwork: http://patchwork.linux-mips.org/patch/4082/
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips/include')
-rw-r--r-- | arch/mips/include/asm/mach-bcm63xx/bcm63xx_iudma.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_iudma.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_iudma.h new file mode 100644 index 000000000000..358cf28ce2af --- /dev/null +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_iudma.h | |||
@@ -0,0 +1,34 @@ | |||
1 | #ifndef BCM63XX_IUDMA_H_ | ||
2 | #define BCM63XX_IUDMA_H_ | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | /* | ||
7 | * rx/tx dma descriptor | ||
8 | */ | ||
9 | struct bcm_enet_desc { | ||
10 | u32 len_stat; | ||
11 | u32 address; | ||
12 | }; | ||
13 | |||
14 | #define DMADESC_LENGTH_SHIFT 16 | ||
15 | #define DMADESC_LENGTH_MASK (0xfff << DMADESC_LENGTH_SHIFT) | ||
16 | #define DMADESC_OWNER_MASK (1 << 15) | ||
17 | #define DMADESC_EOP_MASK (1 << 14) | ||
18 | #define DMADESC_SOP_MASK (1 << 13) | ||
19 | #define DMADESC_ESOP_MASK (DMADESC_EOP_MASK | DMADESC_SOP_MASK) | ||
20 | #define DMADESC_WRAP_MASK (1 << 12) | ||
21 | |||
22 | #define DMADESC_UNDER_MASK (1 << 9) | ||
23 | #define DMADESC_APPEND_CRC (1 << 8) | ||
24 | #define DMADESC_OVSIZE_MASK (1 << 4) | ||
25 | #define DMADESC_RXER_MASK (1 << 2) | ||
26 | #define DMADESC_CRC_MASK (1 << 1) | ||
27 | #define DMADESC_OV_MASK (1 << 0) | ||
28 | #define DMADESC_ERR_MASK (DMADESC_UNDER_MASK | \ | ||
29 | DMADESC_OVSIZE_MASK | \ | ||
30 | DMADESC_RXER_MASK | \ | ||
31 | DMADESC_CRC_MASK | \ | ||
32 | DMADESC_OV_MASK) | ||
33 | |||
34 | #endif /* ! BCM63XX_IUDMA_H_ */ | ||