ssp.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * ssp.h
  3. *
  4. * Copyright (C) 2003 Russell King, All Rights Reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This driver supports the following PXA CPU/SSP ports:-
  11. *
  12. * PXA250 SSP
  13. * PXA255 SSP, NSSP
  14. * PXA26x SSP, NSSP, ASSP
  15. * PXA27x SSP1, SSP2, SSP3
  16. * PXA3xx SSP1, SSP2, SSP3, SSP4
  17. */
  18. #ifndef __ASM_ARCH_SSP_H
  19. #define __ASM_ARCH_SSP_H
  20. #include <linux/list.h>
  21. #include <linux/io.h>
  22. /*
  23. * SSP Serial Port Registers
  24. * PXA250, PXA255, PXA26x and PXA27x SSP controllers are all slightly different.
  25. * PXA255, PXA26x and PXA27x have extra ports, registers and bits.
  26. */
  27. #define SSCR0 (0x00) /* SSP Control Register 0 */
  28. #define SSCR1 (0x04) /* SSP Control Register 1 */
  29. #define SSSR (0x08) /* SSP Status Register */
  30. #define SSITR (0x0C) /* SSP Interrupt Test Register */
  31. #define SSDR (0x10) /* SSP Data Write/Data Read Register */
  32. #define SSTO (0x28) /* SSP Time Out Register */
  33. #define SSPSP (0x2C) /* SSP Programmable Serial Protocol */
  34. #define SSTSA (0x30) /* SSP Tx Timeslot Active */
  35. #define SSRSA (0x34) /* SSP Rx Timeslot Active */
  36. #define SSTSS (0x38) /* SSP Timeslot Status */
  37. #define SSACD (0x3C) /* SSP Audio Clock Divider */
  38. #if defined(CONFIG_PXA3xx)
  39. #define SSACDD (0x40) /* SSP Audio Clock Dither Divider */
  40. #endif
  41. /* Common PXA2xx bits first */
  42. #define SSCR0_DSS (0x0000000f) /* Data Size Select (mask) */
  43. #define SSCR0_DataSize(x) ((x) - 1) /* Data Size Select [4..16] */
  44. #define SSCR0_FRF (0x00000030) /* FRame Format (mask) */
  45. #define SSCR0_Motorola (0x0 << 4) /* Motorola's Serial Peripheral Interface (SPI) */
  46. #define SSCR0_TI (0x1 << 4) /* Texas Instruments' Synchronous Serial Protocol (SSP) */
  47. #define SSCR0_National (0x2 << 4) /* National Microwire */
  48. #define SSCR0_ECS (1 << 6) /* External clock select */
  49. #define SSCR0_SSE (1 << 7) /* Synchronous Serial Port Enable */
  50. #define SSCR0_SCR(x) ((x) << 8) /* Serial Clock Rate (mask) */
  51. #if defined(CONFIG_PXA27x) || defined(CONFIG_PXA3xx)
  52. #define SSCR0_EDSS (1 << 20) /* Extended data size select */
  53. #define SSCR0_NCS (1 << 21) /* Network clock select */
  54. #define SSCR0_RIM (1 << 22) /* Receive FIFO overrrun interrupt mask */
  55. #define SSCR0_TUM (1 << 23) /* Transmit FIFO underrun interrupt mask */
  56. #define SSCR0_FRDC (0x07000000) /* Frame rate divider control (mask) */
  57. #define SSCR0_SlotsPerFrm(x) (((x) - 1) << 24) /* Time slots per frame [1..8] */
  58. #define SSCR0_ACS (1 << 30) /* Audio clock select */
  59. #define SSCR0_MOD (1 << 31) /* Mode (normal or network) */
  60. #endif
  61. #if defined(CONFIG_PXA3xx)
  62. #define SSCR0_FPCKE (1 << 29) /* FIFO packing enable */
  63. #endif
  64. #define SSCR1_RIE (1 << 0) /* Receive FIFO Interrupt Enable */
  65. #define SSCR1_TIE (1 << 1) /* Transmit FIFO Interrupt Enable */
  66. #define SSCR1_LBM (1 << 2) /* Loop-Back Mode */
  67. #define SSCR1_SPO (1 << 3) /* Motorola SPI SSPSCLK polarity setting */
  68. #define SSCR1_SPH (1 << 4) /* Motorola SPI SSPSCLK phase setting */
  69. #define SSCR1_MWDS (1 << 5) /* Microwire Transmit Data Size */
  70. #define SSCR1_TFT (0x000003c0) /* Transmit FIFO Threshold (mask) */
  71. #define SSCR1_TxTresh(x) (((x) - 1) << 6) /* level [1..16] */
  72. #define SSCR1_RFT (0x00003c00) /* Receive FIFO Threshold (mask) */
  73. #define SSCR1_RxTresh(x) (((x) - 1) << 10) /* level [1..16] */
  74. #define SSSR_TNF (1 << 2) /* Transmit FIFO Not Full */
  75. #define SSSR_RNE (1 << 3) /* Receive FIFO Not Empty */
  76. #define SSSR_BSY (1 << 4) /* SSP Busy */
  77. #define SSSR_TFS (1 << 5) /* Transmit FIFO Service Request */
  78. #define SSSR_RFS (1 << 6) /* Receive FIFO Service Request */
  79. #define SSSR_ROR (1 << 7) /* Receive FIFO Overrun */
  80. #define SSCR0_TIM (1 << 23) /* Transmit FIFO Under Run Interrupt Mask */
  81. #define SSCR0_RIM (1 << 22) /* Receive FIFO Over Run interrupt Mask */
  82. #define SSCR0_NCS (1 << 21) /* Network Clock Select */
  83. #define SSCR0_EDSS (1 << 20) /* Extended Data Size Select */
  84. /* extra bits in PXA255, PXA26x and PXA27x SSP ports */
  85. #define SSCR0_TISSP (1 << 4) /* TI Sync Serial Protocol */
  86. #define SSCR0_PSP (3 << 4) /* PSP - Programmable Serial Protocol */
  87. #define SSCR1_TTELP (1 << 31) /* TXD Tristate Enable Last Phase */
  88. #define SSCR1_TTE (1 << 30) /* TXD Tristate Enable */
  89. #define SSCR1_EBCEI (1 << 29) /* Enable Bit Count Error interrupt */
  90. #define SSCR1_SCFR (1 << 28) /* Slave Clock free Running */
  91. #define SSCR1_ECRA (1 << 27) /* Enable Clock Request A */
  92. #define SSCR1_ECRB (1 << 26) /* Enable Clock request B */
  93. #define SSCR1_SCLKDIR (1 << 25) /* Serial Bit Rate Clock Direction */
  94. #define SSCR1_SFRMDIR (1 << 24) /* Frame Direction */
  95. #define SSCR1_RWOT (1 << 23) /* Receive Without Transmit */
  96. #define SSCR1_TRAIL (1 << 22) /* Trailing Byte */
  97. #define SSCR1_TSRE (1 << 21) /* Transmit Service Request Enable */
  98. #define SSCR1_RSRE (1 << 20) /* Receive Service Request Enable */
  99. #define SSCR1_TINTE (1 << 19) /* Receiver Time-out Interrupt enable */
  100. #define SSCR1_PINTE (1 << 18) /* Peripheral Trailing Byte Interupt Enable */
  101. #define SSCR1_IFS (1 << 16) /* Invert Frame Signal */
  102. #define SSCR1_STRF (1 << 15) /* Select FIFO or EFWR */
  103. #define SSCR1_EFWR (1 << 14) /* Enable FIFO Write/Read */
  104. #define SSSR_BCE (1 << 23) /* Bit Count Error */
  105. #define SSSR_CSS (1 << 22) /* Clock Synchronisation Status */
  106. #define SSSR_TUR (1 << 21) /* Transmit FIFO Under Run */
  107. #define SSSR_EOC (1 << 20) /* End Of Chain */
  108. #define SSSR_TINT (1 << 19) /* Receiver Time-out Interrupt */
  109. #define SSSR_PINT (1 << 18) /* Peripheral Trailing Byte Interrupt */
  110. #if defined(CONFIG_PXA3xx)
  111. #define SSPSP_EDMYSTOP(x) ((x) << 28) /* Extended Dummy Stop */
  112. #define SSPSP_EDMYSTRT(x) ((x) << 26) /* Extended Dummy Start */
  113. #endif
  114. #define SSPSP_FSRT (1 << 25) /* Frame Sync Relative Timing */
  115. #define SSPSP_DMYSTOP(x) ((x) << 23) /* Dummy Stop */
  116. #define SSPSP_SFRMWDTH(x) ((x) << 16) /* Serial Frame Width */
  117. #define SSPSP_SFRMDLY(x) ((x) << 9) /* Serial Frame Delay */
  118. #define SSPSP_DMYSTRT(x) ((x) << 7) /* Dummy Start */
  119. #define SSPSP_STRTDLY(x) ((x) << 4) /* Start Delay */
  120. #define SSPSP_ETDS (1 << 3) /* End of Transfer data State */
  121. #define SSPSP_SFRMP (1 << 2) /* Serial Frame Polarity */
  122. #define SSPSP_SCMODE(x) ((x) << 0) /* Serial Bit Rate Clock Mode */
  123. #define SSACD_SCDB (1 << 3) /* SSPSYSCLK Divider Bypass */
  124. #define SSACD_ACPS(x) ((x) << 4) /* Audio clock PLL select */
  125. #define SSACD_ACDS(x) ((x) << 0) /* Audio clock divider select */
  126. #if defined(CONFIG_PXA3xx)
  127. #define SSACD_SCDX8 (1 << 7) /* SYSCLK division ratio select */
  128. #endif
  129. enum pxa_ssp_type {
  130. SSP_UNDEFINED = 0,
  131. PXA25x_SSP, /* pxa 210, 250, 255, 26x */
  132. PXA25x_NSSP, /* pxa 255, 26x (including ASSP) */
  133. PXA27x_SSP,
  134. };
  135. struct ssp_device {
  136. struct platform_device *pdev;
  137. struct list_head node;
  138. struct clk *clk;
  139. void __iomem *mmio_base;
  140. unsigned long phys_base;
  141. const char *label;
  142. int port_id;
  143. int type;
  144. int use_count;
  145. int irq;
  146. int drcmr_rx;
  147. int drcmr_tx;
  148. };
  149. /**
  150. * ssp_write_reg - Write to a SSP register
  151. *
  152. * @dev: SSP device to access
  153. * @reg: Register to write to
  154. * @val: Value to be written.
  155. */
  156. static inline void ssp_write_reg(struct ssp_device *dev, u32 reg, u32 val)
  157. {
  158. __raw_writel(val, dev->mmio_base + reg);
  159. }
  160. /**
  161. * ssp_read_reg - Read from a SSP register
  162. *
  163. * @dev: SSP device to access
  164. * @reg: Register to read from
  165. */
  166. static inline u32 ssp_read_reg(struct ssp_device *dev, u32 reg)
  167. {
  168. return __raw_readl(dev->mmio_base + reg);
  169. }
  170. struct ssp_device *ssp_request(int port, const char *label);
  171. void ssp_free(struct ssp_device *);
  172. #endif /* __ASM_ARCH_SSP_H */