edma.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * EDMA Internal Memory Map
  3. *
  4. * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
  5. * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef __EDMA_H__
  26. #define __EDMA_H__
  27. /*********************************************************************
  28. * Enhanced DMA (EDMA)
  29. *********************************************************************/
  30. /* eDMA module registers */
  31. typedef struct edma_ctrl {
  32. u32 cr; /* 0x00 Control Register */
  33. u32 es; /* 0x04 Error Status Register */
  34. u16 res1[3]; /* 0x08 - 0x0D */
  35. u16 erq; /* 0x0E Enable Request Register */
  36. u16 res2[3]; /* 0x10 - 0x15 */
  37. u16 eei; /* 0x16 Enable Error Interrupt Request */
  38. u8 serq; /* 0x18 Set Enable Request */
  39. u8 cerq; /* 0x19 Clear Enable Request */
  40. u8 seei; /* 0x1A Set En Error Interrupt Request */
  41. u8 ceei; /* 0x1B Clear En Error Interrupt Request */
  42. u8 cint; /* 0x1C Clear Interrupt Enable */
  43. u8 cerr; /* 0x1D Clear Error */
  44. u8 ssrt; /* 0x1E Set START Bit */
  45. u8 cdne; /* 0x1F Clear DONE Status Bit */
  46. u16 res3[3]; /* 0x20 - 0x25 */
  47. u16 intr; /* 0x26 Interrupt Request */
  48. u16 res4[3]; /* 0x28 - 0x2D */
  49. u16 err; /* 0x2E Error Register */
  50. u32 res5[52]; /* 0x30 - 0xFF */
  51. u8 dchpri0; /* 0x100 Channel 0 Priority */
  52. u8 dchpri1; /* 0x101 Channel 1 Priority */
  53. u8 dchpri2; /* 0x102 Channel 2 Priority */
  54. u8 dchpri3; /* 0x103 Channel 3 Priority */
  55. u8 dchpri4; /* 0x104 Channel 4 Priority */
  56. u8 dchpri5; /* 0x105 Channel 5 Priority */
  57. u8 dchpri6; /* 0x106 Channel 6 Priority */
  58. u8 dchpri7; /* 0x107 Channel 7 Priority */
  59. u8 dchpri8; /* 0x108 Channel 8 Priority */
  60. u8 dchpri9; /* 0x109 Channel 9 Priority */
  61. u8 dchpri10; /* 0x110 Channel 10 Priority */
  62. u8 dchpri11; /* 0x111 Channel 11 Priority */
  63. u8 dchpri12; /* 0x112 Channel 12 Priority */
  64. u8 dchpri13; /* 0x113 Channel 13 Priority */
  65. u8 dchpri14; /* 0x114 Channel 14 Priority */
  66. u8 dchpri15; /* 0x115 Channel 15 Priority */
  67. } edma_t;
  68. /* TCD - eDMA*/
  69. typedef struct tcd_ctrl {
  70. u32 saddr; /* 0x00 Source Address */
  71. u16 attr; /* 0x04 Transfer Attributes */
  72. u16 soff; /* 0x06 Signed Source Address Offset */
  73. u32 nbytes; /* 0x08 Minor Byte Count */
  74. u32 slast; /* 0x0C Last Source Address Adjustment */
  75. u32 daddr; /* 0x10 Destination address */
  76. u16 citer; /* 0x14 Cur Minor Loop Link, Major Loop Cnt */
  77. u16 doff; /* 0x16 Signed Destination Address Offset */
  78. u32 dlast_sga; /* 0x18 Last Dest Adr Adj/Scatter Gather Adr */
  79. u16 biter; /* 0x1C Minor Loop Lnk, Major Loop Cnt */
  80. u16 csr; /* 0x1E Control and Status */
  81. } tcd_st;
  82. typedef struct tcd_multiple {
  83. tcd_st tcd[16];
  84. } tcd_t;
  85. /* Bit definitions and macros for EPPAR */
  86. #define EPORT_EPPAR_EPPA1(x) (((x)&0x0003)<<2)
  87. #define EPORT_EPPAR_EPPA2(x) (((x)&0x0003)<<4)
  88. #define EPORT_EPPAR_EPPA3(x) (((x)&0x0003)<<6)
  89. #define EPORT_EPPAR_EPPA4(x) (((x)&0x0003)<<8)
  90. #define EPORT_EPPAR_EPPA5(x) (((x)&0x0003)<<10)
  91. #define EPORT_EPPAR_EPPA6(x) (((x)&0x0003)<<12)
  92. #define EPORT_EPPAR_EPPA7(x) (((x)&0x0003)<<14)
  93. #define EPORT_EPPAR_LEVEL (0)
  94. #define EPORT_EPPAR_RISING (1)
  95. #define EPORT_EPPAR_FALLING (2)
  96. #define EPORT_EPPAR_BOTH (3)
  97. #define EPORT_EPPAR_EPPA7_LEVEL (0x0000)
  98. #define EPORT_EPPAR_EPPA7_RISING (0x4000)
  99. #define EPORT_EPPAR_EPPA7_FALLING (0x8000)
  100. #define EPORT_EPPAR_EPPA7_BOTH (0xC000)
  101. #define EPORT_EPPAR_EPPA6_LEVEL (0x0000)
  102. #define EPORT_EPPAR_EPPA6_RISING (0x1000)
  103. #define EPORT_EPPAR_EPPA6_FALLING (0x2000)
  104. #define EPORT_EPPAR_EPPA6_BOTH (0x3000)
  105. #define EPORT_EPPAR_EPPA5_LEVEL (0x0000)
  106. #define EPORT_EPPAR_EPPA5_RISING (0x0400)
  107. #define EPORT_EPPAR_EPPA5_FALLING (0x0800)
  108. #define EPORT_EPPAR_EPPA5_BOTH (0x0C00)
  109. #define EPORT_EPPAR_EPPA4_LEVEL (0x0000)
  110. #define EPORT_EPPAR_EPPA4_RISING (0x0100)
  111. #define EPORT_EPPAR_EPPA4_FALLING (0x0200)
  112. #define EPORT_EPPAR_EPPA4_BOTH (0x0300)
  113. #define EPORT_EPPAR_EPPA3_LEVEL (0x0000)
  114. #define EPORT_EPPAR_EPPA3_RISING (0x0040)
  115. #define EPORT_EPPAR_EPPA3_FALLING (0x0080)
  116. #define EPORT_EPPAR_EPPA3_BOTH (0x00C0)
  117. #define EPORT_EPPAR_EPPA2_LEVEL (0x0000)
  118. #define EPORT_EPPAR_EPPA2_RISING (0x0010)
  119. #define EPORT_EPPAR_EPPA2_FALLING (0x0020)
  120. #define EPORT_EPPAR_EPPA2_BOTH (0x0030)
  121. #define EPORT_EPPAR_EPPA1_LEVEL (0x0000)
  122. #define EPORT_EPPAR_EPPA1_RISING (0x0004)
  123. #define EPORT_EPPAR_EPPA1_FALLING (0x0008)
  124. #define EPORT_EPPAR_EPPA1_BOTH (0x000C)
  125. /* Bit definitions and macros for EPDDR */
  126. #define EPORT_EPDDR_EPDD1 (0x02)
  127. #define EPORT_EPDDR_EPDD2 (0x04)
  128. #define EPORT_EPDDR_EPDD3 (0x08)
  129. #define EPORT_EPDDR_EPDD4 (0x10)
  130. #define EPORT_EPDDR_EPDD5 (0x20)
  131. #define EPORT_EPDDR_EPDD6 (0x40)
  132. #define EPORT_EPDDR_EPDD7 (0x80)
  133. /* Bit definitions and macros for EPIER */
  134. #define EPORT_EPIER_EPIE1 (0x02)
  135. #define EPORT_EPIER_EPIE2 (0x04)
  136. #define EPORT_EPIER_EPIE3 (0x08)
  137. #define EPORT_EPIER_EPIE4 (0x10)
  138. #define EPORT_EPIER_EPIE5 (0x20)
  139. #define EPORT_EPIER_EPIE6 (0x40)
  140. #define EPORT_EPIER_EPIE7 (0x80)
  141. /* Bit definitions and macros for EPDR */
  142. #define EPORT_EPDR_EPD1 (0x02)
  143. #define EPORT_EPDR_EPD2 (0x04)
  144. #define EPORT_EPDR_EPD3 (0x08)
  145. #define EPORT_EPDR_EPD4 (0x10)
  146. #define EPORT_EPDR_EPD5 (0x20)
  147. #define EPORT_EPDR_EPD6 (0x40)
  148. #define EPORT_EPDR_EPD7 (0x80)
  149. /* Bit definitions and macros for EPPDR */
  150. #define EPORT_EPPDR_EPPD1 (0x02)
  151. #define EPORT_EPPDR_EPPD2 (0x04)
  152. #define EPORT_EPPDR_EPPD3 (0x08)
  153. #define EPORT_EPPDR_EPPD4 (0x10)
  154. #define EPORT_EPPDR_EPPD5 (0x20)
  155. #define EPORT_EPPDR_EPPD6 (0x40)
  156. #define EPORT_EPPDR_EPPD7 (0x80)
  157. /* Bit definitions and macros for EPFR */
  158. #define EPORT_EPFR_EPF1 (0x02)
  159. #define EPORT_EPFR_EPF2 (0x04)
  160. #define EPORT_EPFR_EPF3 (0x08)
  161. #define EPORT_EPFR_EPF4 (0x10)
  162. #define EPORT_EPFR_EPF5 (0x20)
  163. #define EPORT_EPFR_EPF6 (0x40)
  164. #define EPORT_EPFR_EPF7 (0x80)
  165. #endif /* __EDMA_H__ */