fsl_mcdmafec.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * fsl_mcdmafec.h -- Multi-channel DMA Fast Ethernet Controller definitions
  3. *
  4. * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
  5. * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef fsl_mcdmafec_h
  10. #define fsl_mcdmafec_h
  11. /* Re-use of the definitions */
  12. #include <asm/fec.h>
  13. typedef struct fecdma {
  14. u32 rsvd0; /* 0x000 */
  15. u32 eir; /* 0x004 */
  16. u32 eimr; /* 0x008 */
  17. u32 rsvd1[6]; /* 0x00C - 0x023 */
  18. u32 ecr; /* 0x024 */
  19. u32 rsvd2[6]; /* 0x028 - 0x03F */
  20. u32 mmfr; /* 0x040 */
  21. u32 mscr; /* 0x044 */
  22. u32 rsvd3[7]; /* 0x048 - 0x063 */
  23. u32 mibc; /* 0x064 */
  24. u32 rsvd4[7]; /* 0x068 - 0x083 */
  25. u32 rcr; /* 0x084 */
  26. u32 rhr; /* 0x088 */
  27. u32 rsvd5[14]; /* 0x08C - 0x0C3 */
  28. u32 tcr; /* 0x0C4 */
  29. u32 rsvd6[7]; /* 0x0C8 - 0x0E3 */
  30. u32 palr; /* 0x0E4 */
  31. u32 paur; /* 0x0E8 */
  32. u32 opd; /* 0x0EC */
  33. u32 rsvd7[10]; /* 0x0F0 - 0x117 */
  34. u32 iaur; /* 0x118 */
  35. u32 ialr; /* 0x11C */
  36. u32 gaur; /* 0x120 */
  37. u32 galr; /* 0x124 */
  38. u32 rsvd8[7]; /* 0x128 - 0x143 */
  39. u32 tfwr; /* 0x144 */
  40. u32 rsvd9[14]; /* 0x148 - 0x17F */
  41. u32 fmc; /* 0x180 */
  42. u32 rfdr; /* 0x184 */
  43. u32 rfsr; /* 0x188 */
  44. u32 rfcr; /* 0x18C */
  45. u32 rlrfp; /* 0x190 */
  46. u32 rlwfp; /* 0x194 */
  47. u32 rfar; /* 0x198 */
  48. u32 rfrp; /* 0x19C */
  49. u32 rfwp; /* 0x1A0 */
  50. u32 tfdr; /* 0x1A4 */
  51. u32 tfsr; /* 0x1A8 */
  52. u32 tfcr; /* 0x1AC */
  53. u32 tlrfp; /* 0x1B0 */
  54. u32 tlwfp; /* 0x1B4 */
  55. u32 tfar; /* 0x1B8 */
  56. u32 tfrp; /* 0x1BC */
  57. u32 tfwp; /* 0x1C0 */
  58. u32 frst; /* 0x1C4 */
  59. u32 ctcwr; /* 0x1C8 */
  60. } fecdma_t;
  61. struct fec_info_dma {
  62. int index;
  63. u32 iobase;
  64. u32 pinmux;
  65. u32 miibase;
  66. int phy_addr;
  67. int dup_spd;
  68. char *phy_name;
  69. int phyname_init;
  70. cbd_t *rxbd; /* Rx BD */
  71. cbd_t *txbd; /* Tx BD */
  72. uint rxIdx;
  73. uint txIdx;
  74. char *txbuf;
  75. int initialized;
  76. struct fec_info_dma *next;
  77. u16 rxTask; /* DMA receive Task Number */
  78. u16 txTask; /* DMA Transmit Task Number */
  79. u16 rxPri; /* DMA Receive Priority */
  80. u16 txPri; /* DMA Transmit Priority */
  81. u16 rxInit; /* DMA Receive Initiator */
  82. u16 txInit; /* DMA Transmit Initiator */
  83. u16 usedTbdIdx; /* next transmit BD to clean */
  84. u16 cleanTbdNum; /* the number of available transmit BDs */
  85. };
  86. /* Bit definitions and macros for IEVENT */
  87. #define FEC_EIR_TXERR (0x00040000)
  88. #define FEC_EIR_RXERR (0x00020000)
  89. #undef FEC_EIR_CLEAR_ALL
  90. #define FEC_EIR_CLEAR_ALL (0xFFFE0000)
  91. /* Bit definitions and macros for R_HASH */
  92. #define FEC_RHASH_FCE_DC (0x80000000)
  93. #define FEC_RHASH_MULTCAST (0x40000000)
  94. #define FEC_RHASH_HASH(x) (((x)&0x0000003F)<<24)
  95. /* Bit definitions and macros for FEC_TFWR */
  96. #undef FEC_TFWR_X_WMRK
  97. #undef FEC_TFWR_X_WMRK_64
  98. #undef FEC_TFWR_X_WMRK_128
  99. #undef FEC_TFWR_X_WMRK_192
  100. #define FEC_TFWR_X_WMRK(x) ((x)&0x0F)
  101. #define FEC_TFWR_X_WMRK_64 (0x00)
  102. #define FEC_TFWR_X_WMRK_128 (0x01)
  103. #define FEC_TFWR_X_WMRK_192 (0x02)
  104. #define FEC_TFWR_X_WMRK_256 (0x03)
  105. #define FEC_TFWR_X_WMRK_320 (0x04)
  106. #define FEC_TFWR_X_WMRK_384 (0x05)
  107. #define FEC_TFWR_X_WMRK_448 (0x06)
  108. #define FEC_TFWR_X_WMRK_512 (0x07)
  109. #define FEC_TFWR_X_WMRK_576 (0x08)
  110. #define FEC_TFWR_X_WMRK_640 (0x09)
  111. #define FEC_TFWR_X_WMRK_704 (0x0A)
  112. #define FEC_TFWR_X_WMRK_768 (0x0B)
  113. #define FEC_TFWR_X_WMRK_832 (0x0C)
  114. #define FEC_TFWR_X_WMRK_896 (0x0D)
  115. #define FEC_TFWR_X_WMRK_960 (0x0E)
  116. #define FEC_TFWR_X_WMRK_1024 (0x0F)
  117. /* FIFO definitions */
  118. /* Bit definitions and macros for FSTAT */
  119. #define FIFO_STAT_IP (0x80000000)
  120. #define FIFO_STAT_FRAME(x) (((x)&0x0000000F)<<24)
  121. #define FIFO_STAT_FAE (0x00800000)
  122. #define FIFO_STAT_RXW (0x00400000)
  123. #define FIFO_STAT_UF (0x00200000)
  124. #define FIFO_STAT_OF (0x00100000)
  125. #define FIFO_STAT_FR (0x00080000)
  126. #define FIFO_STAT_FULL (0x00040000)
  127. #define FIFO_STAT_ALARM (0x00020000)
  128. #define FIFO_STAT_EMPTY (0x00010000)
  129. /* Bit definitions and macros for FCTRL */
  130. #define FIFO_CTRL_WCTL (0x40000000)
  131. #define FIFO_CTRL_WFR (0x20000000)
  132. #define FIFO_CTRL_FRAME (0x08000000)
  133. #define FIFO_CTRL_GR(x) (((x)&0x00000007)<<24)
  134. #define FIFO_CTRL_IPMASK (0x00800000)
  135. #define FIFO_CTRL_FAEMASK (0x00400000)
  136. #define FIFO_CTRL_RXWMASK (0x00200000)
  137. #define FIFO_CTRL_UFMASK (0x00100000)
  138. #define FIFO_CTRL_OFMASK (0x00080000)
  139. #endif /* fsl_mcdmafec_h */