dspi.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * MCF5227x 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 __DSPI_H__
  26. #define __DSPI_H__
  27. /* DMA Serial Peripheral Interface (DSPI) */
  28. typedef struct dspi {
  29. u32 mcr; /* 0x00 */
  30. u32 resv0; /* 0x04 */
  31. u32 tcr; /* 0x08 */
  32. u32 ctar[8]; /* 0x0C - 0x28 */
  33. u32 sr; /* 0x2C */
  34. u32 irsr; /* 0x30 */
  35. u32 tfr; /* 0x34 - PUSHR */
  36. u16 resv1; /* 0x38 */
  37. u16 rfr; /* 0x3A - POPR */
  38. #ifdef CONFIG_MCF547x_8x
  39. u32 tfdr[4]; /* 0x3C */
  40. u8 resv2[0x30]; /* 0x40 */
  41. u32 rfdr[4]; /* 0x7C */
  42. #else
  43. u32 tfdr[16]; /* 0x3C */
  44. u32 rfdr[16]; /* 0x7C */
  45. #endif
  46. } dspi_t;
  47. /* Module configuration */
  48. #define DSPI_MCR_MSTR (0x80000000)
  49. #define DSPI_MCR_CSCK (0x40000000)
  50. #define DSPI_MCR_DCONF(x) (((x)&0x03)<<28)
  51. #define DSPI_MCR_FRZ (0x08000000)
  52. #define DSPI_MCR_MTFE (0x04000000)
  53. #define DSPI_MCR_PCSSE (0x02000000)
  54. #define DSPI_MCR_ROOE (0x01000000)
  55. #define DSPI_MCR_CSIS7 (0x00800000)
  56. #define DSPI_MCR_CSIS6 (0x00400000)
  57. #define DSPI_MCR_CSIS5 (0x00200000)
  58. #define DSPI_MCR_CSIS4 (0x00100000)
  59. #define DSPI_MCR_CSIS3 (0x00080000)
  60. #define DSPI_MCR_CSIS2 (0x00040000)
  61. #define DSPI_MCR_CSIS1 (0x00020000)
  62. #define DSPI_MCR_CSIS0 (0x00010000)
  63. #define DSPI_MCR_MDIS (0x00004000)
  64. #define DSPI_MCR_DTXF (0x00002000)
  65. #define DSPI_MCR_DRXF (0x00001000)
  66. #define DSPI_MCR_CTXF (0x00000800)
  67. #define DSPI_MCR_CRXF (0x00000400)
  68. #define DSPI_MCR_SMPL_PT(x) (((x)&0x03)<<8)
  69. #define DSPI_MCR_HALT (0x00000001)
  70. /* Transfer count */
  71. #define DSPI_TCR_SPI_TCNT(x) (((x)&0x0000FFFF)<<16)
  72. /* Clock and transfer attributes */
  73. #define DSPI_CTAR_DBR (0x80000000)
  74. #define DSPI_CTAR_TRSZ(x) (((x)&0x0F)<<27)
  75. #define DSPI_CTAR_CPOL (0x04000000)
  76. #define DSPI_CTAR_CPHA (0x02000000)
  77. #define DSPI_CTAR_LSBFE (0x01000000)
  78. #define DSPI_CTAR_PCSSCK(x) (((x)&0x03)<<22)
  79. #define DSPI_CTAR_PCSSCK_7CLK (0x00A00000)
  80. #define DSPI_CTAR_PCSSCK_5CLK (0x00800000)
  81. #define DSPI_CTAR_PCSSCK_3CLK (0x00400000)
  82. #define DSPI_CTAR_PCSSCK_1CLK (0x00000000)
  83. #define DSPI_CTAR_PASC(x) (((x)&0x03)<<20)
  84. #define DSPI_CTAR_PASC_7CLK (0x00300000)
  85. #define DSPI_CTAR_PASC_5CLK (0x00200000)
  86. #define DSPI_CTAR_PASC_3CLK (0x00100000)
  87. #define DSPI_CTAR_PASC_1CLK (0x00000000)
  88. #define DSPI_CTAR_PDT(x) (((x)&0x03)<<18)
  89. #define DSPI_CTAR_PDT_7CLK (0x000A0000)
  90. #define DSPI_CTAR_PDT_5CLK (0x00080000)
  91. #define DSPI_CTAR_PDT_3CLK (0x00040000)
  92. #define DSPI_CTAR_PDT_1CLK (0x00000000)
  93. #define DSPI_CTAR_PBR(x) (((x)&0x03)<<16)
  94. #define DSPI_CTAR_PBR_7CLK (0x00030000)
  95. #define DSPI_CTAR_PBR_5CLK (0x00020000)
  96. #define DSPI_CTAR_PBR_3CLK (0x00010000)
  97. #define DSPI_CTAR_PBR_1CLK (0x00000000)
  98. #define DSPI_CTAR_CSSCK(x) (((x)&0x0F)<<12)
  99. #define DSPI_CTAR_ASC(x) (((x)&0x0F)<<8)
  100. #define DSPI_CTAR_DT(x) (((x)&0x0F)<<4)
  101. #define DSPI_CTAR_BR(x) (((x)&0x0F))
  102. /* Status */
  103. #define DSPI_SR_TCF (0x80000000)
  104. #define DSPI_SR_TXRXS (0x40000000)
  105. #define DSPI_SR_EOQF (0x10000000)
  106. #define DSPI_SR_TFUF (0x08000000)
  107. #define DSPI_SR_TFFF (0x02000000)
  108. #define DSPI_SR_RFOF (0x00080000)
  109. #define DSPI_SR_RFDF (0x00020000)
  110. #define DSPI_SR_TXCTR(x) (((x)&0x0F)<<12)
  111. #define DSPI_SR_TXPTR(x) (((x)&0x0F)<<8)
  112. #define DSPI_SR_RXCTR(x) (((x)&0x0F)<<4)
  113. #define DSPI_SR_RXPTR(x) (((x)&0x0F))
  114. /* DMA/interrupt request selct and enable */
  115. #define DSPI_IRSR_TCFE (0x80000000)
  116. #define DSPI_IRSR_EOQFE (0x10000000)
  117. #define DSPI_IRSR_TFUFE (0x08000000)
  118. #define DSPI_IRSR_TFFFE (0x02000000)
  119. #define DSPI_IRSR_TFFFS (0x01000000)
  120. #define DSPI_IRSR_RFOFE (0x00080000)
  121. #define DSPI_IRSR_RFDFE (0x00020000)
  122. #define DSPI_IRSR_RFDFS (0x00010000)
  123. /* Transfer control - 32-bit access */
  124. #define DSPI_TFR_CONT (0x80000000)
  125. #define DSPI_TFR_CTAS(x) (((x)&0x07)<<12)
  126. #define DSPI_TFR_EOQ (0x08000000)
  127. #define DSPI_TFR_CTCNT (0x04000000)
  128. #define DSPI_TFR_CS7 (0x00800000)
  129. #define DSPI_TFR_CS6 (0x00400000)
  130. #define DSPI_TFR_CS5 (0x00200000)
  131. #define DSPI_TFR_CS4 (0x00100000)
  132. #define DSPI_TFR_CS3 (0x00080000)
  133. #define DSPI_TFR_CS2 (0x00040000)
  134. #define DSPI_TFR_CS1 (0x00020000)
  135. #define DSPI_TFR_CS0 (0x00010000)
  136. /* Transfer Fifo */
  137. #define DSPI_TFR_TXDATA(x) (((x)&0xFFFF))
  138. /* Bit definitions and macros for DRFR */
  139. #define DSPI_RFR_RXDATA(x) (((x)&0xFFFF))
  140. /* Bit definitions and macros for DTFDR group */
  141. #define DSPI_TFDR_TXDATA(x) (((x)&0x0000FFFF))
  142. #define DSPI_TFDR_TXCMD(x) (((x)&0x0000FFFF)<<16)
  143. /* Bit definitions and macros for DRFDR group */
  144. #define DSPI_RFDR_RXDATA(x) (((x)&0x0000FFFF))
  145. #endif /* __DSPI_H__ */