dspi.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. /*********************************************************************
  28. * DMA Serial Peripheral Interface (DSPI)
  29. *********************************************************************/
  30. typedef struct dspi {
  31. u32 dmcr;
  32. u8 resv0[0x4];
  33. u32 dtcr;
  34. u32 dctar0;
  35. u32 dctar1;
  36. u32 dctar2;
  37. u32 dctar3;
  38. u32 dctar4;
  39. u32 dctar5;
  40. u32 dctar6;
  41. u32 dctar7;
  42. u32 dsr;
  43. u32 dirsr;
  44. u32 dtfr;
  45. u32 drfr;
  46. #ifdef CONFIG_MCF547x_8x
  47. u32 dtfdr[4];
  48. u8 resv1[0x30];
  49. u32 drfdr[4];
  50. #else
  51. u32 dtfdr[16];
  52. u32 drfdr[16];
  53. #endif
  54. } dspi_t;
  55. /* Bit definitions and macros for DMCR */
  56. #define DSPI_DMCR_HALT (0x00000001)
  57. #define DSPI_DMCR_SMPL_PT(x) (((x)&0x00000003)<<8)
  58. #define DSPI_DMCR_CRXF (0x00000400)
  59. #define DSPI_DMCR_CTXF (0x00000800)
  60. #define DSPI_DMCR_DRXF (0x00001000)
  61. #define DSPI_DMCR_DTXF (0x00002000)
  62. #define DSPI_DMCR_MDIS (0x00004000)
  63. #define DSPI_DMCR_CSIS0 (0x00010000)
  64. #define DSPI_DMCR_CSIS1 (0x00020000)
  65. #define DSPI_DMCR_CSIS2 (0x00040000)
  66. #define DSPI_DMCR_CSIS3 (0x00080000)
  67. #define DSPI_DMCR_CSIS4 (0x00100000)
  68. #define DSPI_DMCR_CSIS5 (0x00200000)
  69. #define DSPI_DMCR_CSIS6 (0x00400000)
  70. #define DSPI_DMCR_CSIS7 (0x00800000)
  71. #define DSPI_DMCR_ROOE (0x01000000)
  72. #define DSPI_DMCR_PCSSE (0x02000000)
  73. #define DSPI_DMCR_MTFE (0x04000000)
  74. #define DSPI_DMCR_FRZ (0x08000000)
  75. #define DSPI_DMCR_DCONF(x) (((x)&0x00000003)<<28)
  76. #define DSPI_DMCR_CSCK (0x40000000)
  77. #define DSPI_DMCR_MSTR (0x80000000)
  78. /* Bit definitions and macros for DTCR */
  79. #define DSPI_DTCR_SPI_TCNT(x) (((x)&0x0000FFFF)<<16)
  80. /* Bit definitions and macros for DCTAR group */
  81. #define DSPI_DCTAR_BR(x) (((x)&0x0000000F))
  82. #define DSPI_DCTAR_DT(x) (((x)&0x0000000F)<<4)
  83. #define DSPI_DCTAR_ASC(x) (((x)&0x0000000F)<<8)
  84. #define DSPI_DCTAR_CSSCK(x) (((x)&0x0000000F)<<12)
  85. #define DSPI_DCTAR_PBR(x) (((x)&0x00000003)<<16)
  86. #define DSPI_DCTAR_PDT(x) (((x)&0x00000003)<<18)
  87. #define DSPI_DCTAR_PASC(x) (((x)&0x00000003)<<20)
  88. #define DSPI_DCTAR_PCSSCK(x) (((x)&0x00000003)<<22)
  89. #define DSPI_DCTAR_LSBFE (0x01000000)
  90. #define DSPI_DCTAR_CPHA (0x02000000)
  91. #define DSPI_DCTAR_CPOL (0x04000000)
  92. #define DSPI_DCTAR_TRSZ(x) (((x)&0x0000000F)<<27)
  93. #define DSPI_DCTAR_DBR (0x80000000)
  94. #define DSPI_DCTAR_PCSSCK_1CLK (0x00000000)
  95. #define DSPI_DCTAR_PCSSCK_3CLK (0x00400000)
  96. #define DSPI_DCTAR_PCSSCK_5CLK (0x00800000)
  97. #define DSPI_DCTAR_PCSSCK_7CLK (0x00A00000)
  98. #define DSPI_DCTAR_PASC_1CLK (0x00000000)
  99. #define DSPI_DCTAR_PASC_3CLK (0x00100000)
  100. #define DSPI_DCTAR_PASC_5CLK (0x00200000)
  101. #define DSPI_DCTAR_PASC_7CLK (0x00300000)
  102. #define DSPI_DCTAR_PDT_1CLK (0x00000000)
  103. #define DSPI_DCTAR_PDT_3CLK (0x00040000)
  104. #define DSPI_DCTAR_PDT_5CLK (0x00080000)
  105. #define DSPI_DCTAR_PDT_7CLK (0x000A0000)
  106. #define DSPI_DCTAR_PBR_1CLK (0x00000000)
  107. #define DSPI_DCTAR_PBR_3CLK (0x00010000)
  108. #define DSPI_DCTAR_PBR_5CLK (0x00020000)
  109. #define DSPI_DCTAR_PBR_7CLK (0x00030000)
  110. /* Bit definitions and macros for DSR */
  111. #define DSPI_DSR_RXPTR(x) (((x)&0x0000000F))
  112. #define DSPI_DSR_RXCTR(x) (((x)&0x0000000F)<<4)
  113. #define DSPI_DSR_TXPTR(x) (((x)&0x0000000F)<<8)
  114. #define DSPI_DSR_TXCTR(x) (((x)&0x0000000F)<<12)
  115. #define DSPI_DSR_RFDF (0x00020000)
  116. #define DSPI_DSR_RFOF (0x00080000)
  117. #define DSPI_DSR_TFFF (0x02000000)
  118. #define DSPI_DSR_TFUF (0x08000000)
  119. #define DSPI_DSR_EOQF (0x10000000)
  120. #define DSPI_DSR_TXRXS (0x40000000)
  121. #define DSPI_DSR_TCF (0x80000000)
  122. /* Bit definitions and macros for DIRSR */
  123. #define DSPI_DIRSR_RFDFS (0x00010000)
  124. #define DSPI_DIRSR_RFDFE (0x00020000)
  125. #define DSPI_DIRSR_RFOFE (0x00080000)
  126. #define DSPI_DIRSR_TFFFS (0x01000000)
  127. #define DSPI_DIRSR_TFFFE (0x02000000)
  128. #define DSPI_DIRSR_TFUFE (0x08000000)
  129. #define DSPI_DIRSR_EOQFE (0x10000000)
  130. #define DSPI_DIRSR_TCFE (0x80000000)
  131. /* Bit definitions and macros for DTFR */
  132. #define DSPI_DTFR_TXDATA(x) (((x)&0x0000FFFF))
  133. #define DSPI_DTFR_CS0 (0x00010000)
  134. #define DSPI_DTFR_CS2 (0x00040000)
  135. #define DSPI_DTFR_CS3 (0x00080000)
  136. #define DSPI_DTFR_CS5 (0x00200000)
  137. #define DSPI_DTFR_CTCNT (0x04000000)
  138. #define DSPI_DTFR_EOQ (0x08000000)
  139. #define DSPI_DTFR_CTAS(x) (((x)&0x00000007)<<28)
  140. #define DSPI_DTFR_CONT (0x80000000)
  141. /* Bit definitions and macros for DRFR */
  142. #define DSPI_DRFR_RXDATA(x) (((x)&0x0000FFFF))
  143. /* Bit definitions and macros for DTFDR group */
  144. #define DSPI_DTFDR_TXDATA(x) (((x)&0x0000FFFF))
  145. #define DSPI_DTFDR_TXCMD(x) (((x)&0x0000FFFF)<<16)
  146. /* Bit definitions and macros for DRFDR group */
  147. #define DSPI_DRFDR_RXDATA(x) (((x)&0x0000FFFF))
  148. void dspi_init(void);
  149. void dspi_tx(int chipsel, u8 attrib, u16 data);
  150. u16 dspi_rx(void);
  151. #endif /* __DSPI_H__ */