stm32_sai.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*
  2. * STM32 ALSA SoC Digital Audio Interface (SAI) driver.
  3. *
  4. * Copyright (C) 2016, STMicroelectronics - All Rights Reserved
  5. * Author(s): Olivier Moysan <olivier.moysan@st.com> for STMicroelectronics.
  6. *
  7. * License terms: GPL V2.0.
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as published by
  11. * the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  16. * details.
  17. */
  18. #include <linux/bitfield.h>
  19. /******************** SAI Register Map **************************************/
  20. /* Global configuration register */
  21. #define STM_SAI_GCR 0x00
  22. /* Sub-block A&B registers offsets, relative to A&B sub-block addresses */
  23. #define STM_SAI_CR1_REGX 0x00 /* A offset: 0x04. B offset: 0x24 */
  24. #define STM_SAI_CR2_REGX 0x04
  25. #define STM_SAI_FRCR_REGX 0x08
  26. #define STM_SAI_SLOTR_REGX 0x0C
  27. #define STM_SAI_IMR_REGX 0x10
  28. #define STM_SAI_SR_REGX 0x14
  29. #define STM_SAI_CLRFR_REGX 0x18
  30. #define STM_SAI_DR_REGX 0x1C
  31. /* Sub-block A registers, relative to sub-block A address */
  32. #define STM_SAI_PDMCR_REGX 0x40
  33. #define STM_SAI_PDMLY_REGX 0x44
  34. /******************** Bit definition for SAI_GCR register *******************/
  35. #define SAI_GCR_SYNCIN_SHIFT 0
  36. #define SAI_GCR_SYNCIN_WDTH 2
  37. #define SAI_GCR_SYNCIN_MASK GENMASK(1, SAI_GCR_SYNCIN_SHIFT)
  38. #define SAI_GCR_SYNCIN_MAX FIELD_GET(SAI_GCR_SYNCIN_MASK,\
  39. SAI_GCR_SYNCIN_MASK)
  40. #define SAI_GCR_SYNCOUT_SHIFT 4
  41. #define SAI_GCR_SYNCOUT_MASK GENMASK(5, SAI_GCR_SYNCOUT_SHIFT)
  42. /******************* Bit definition for SAI_XCR1 register *******************/
  43. #define SAI_XCR1_RX_TX_SHIFT 0
  44. #define SAI_XCR1_RX_TX BIT(SAI_XCR1_RX_TX_SHIFT)
  45. #define SAI_XCR1_SLAVE_SHIFT 1
  46. #define SAI_XCR1_SLAVE BIT(SAI_XCR1_SLAVE_SHIFT)
  47. #define SAI_XCR1_PRTCFG_SHIFT 2
  48. #define SAI_XCR1_PRTCFG_MASK GENMASK(3, SAI_XCR1_PRTCFG_SHIFT)
  49. #define SAI_XCR1_PRTCFG_SET(x) ((x) << SAI_XCR1_PRTCFG_SHIFT)
  50. #define SAI_XCR1_DS_SHIFT 5
  51. #define SAI_XCR1_DS_MASK GENMASK(7, SAI_XCR1_DS_SHIFT)
  52. #define SAI_XCR1_DS_SET(x) ((x) << SAI_XCR1_DS_SHIFT)
  53. #define SAI_XCR1_LSBFIRST_SHIFT 8
  54. #define SAI_XCR1_LSBFIRST BIT(SAI_XCR1_LSBFIRST_SHIFT)
  55. #define SAI_XCR1_CKSTR_SHIFT 9
  56. #define SAI_XCR1_CKSTR BIT(SAI_XCR1_CKSTR_SHIFT)
  57. #define SAI_XCR1_SYNCEN_SHIFT 10
  58. #define SAI_XCR1_SYNCEN_MASK GENMASK(11, SAI_XCR1_SYNCEN_SHIFT)
  59. #define SAI_XCR1_SYNCEN_SET(x) ((x) << SAI_XCR1_SYNCEN_SHIFT)
  60. #define SAI_XCR1_MONO_SHIFT 12
  61. #define SAI_XCR1_MONO BIT(SAI_XCR1_MONO_SHIFT)
  62. #define SAI_XCR1_OUTDRIV_SHIFT 13
  63. #define SAI_XCR1_OUTDRIV BIT(SAI_XCR1_OUTDRIV_SHIFT)
  64. #define SAI_XCR1_SAIEN_SHIFT 16
  65. #define SAI_XCR1_SAIEN BIT(SAI_XCR1_SAIEN_SHIFT)
  66. #define SAI_XCR1_DMAEN_SHIFT 17
  67. #define SAI_XCR1_DMAEN BIT(SAI_XCR1_DMAEN_SHIFT)
  68. #define SAI_XCR1_NODIV_SHIFT 19
  69. #define SAI_XCR1_NODIV BIT(SAI_XCR1_NODIV_SHIFT)
  70. #define SAI_XCR1_MCKDIV_SHIFT 20
  71. #define SAI_XCR1_MCKDIV_WIDTH(x) (((x) == SAI_STM32F4) ? 4 : 6)
  72. #define SAI_XCR1_MCKDIV_MASK(x) GENMASK((SAI_XCR1_MCKDIV_SHIFT + (x) - 1),\
  73. SAI_XCR1_MCKDIV_SHIFT)
  74. #define SAI_XCR1_MCKDIV_SET(x) ((x) << SAI_XCR1_MCKDIV_SHIFT)
  75. #define SAI_XCR1_MCKDIV_MAX(x) ((1 << SAI_XCR1_MCKDIV_WIDTH(x)) - 1)
  76. #define SAI_XCR1_OSR_SHIFT 26
  77. #define SAI_XCR1_OSR BIT(SAI_XCR1_OSR_SHIFT)
  78. /******************* Bit definition for SAI_XCR2 register *******************/
  79. #define SAI_XCR2_FTH_SHIFT 0
  80. #define SAI_XCR2_FTH_MASK GENMASK(2, SAI_XCR2_FTH_SHIFT)
  81. #define SAI_XCR2_FTH_SET(x) ((x) << SAI_XCR2_FTH_SHIFT)
  82. #define SAI_XCR2_FFLUSH_SHIFT 3
  83. #define SAI_XCR2_FFLUSH BIT(SAI_XCR2_FFLUSH_SHIFT)
  84. #define SAI_XCR2_TRIS_SHIFT 4
  85. #define SAI_XCR2_TRIS BIT(SAI_XCR2_TRIS_SHIFT)
  86. #define SAI_XCR2_MUTE_SHIFT 5
  87. #define SAI_XCR2_MUTE BIT(SAI_XCR2_MUTE_SHIFT)
  88. #define SAI_XCR2_MUTEVAL_SHIFT 6
  89. #define SAI_XCR2_MUTEVAL BIT(SAI_XCR2_MUTEVAL_SHIFT)
  90. #define SAI_XCR2_MUTECNT_SHIFT 7
  91. #define SAI_XCR2_MUTECNT_MASK GENMASK(12, SAI_XCR2_MUTECNT_SHIFT)
  92. #define SAI_XCR2_MUTECNT_SET(x) ((x) << SAI_XCR2_MUTECNT_SHIFT)
  93. #define SAI_XCR2_CPL_SHIFT 13
  94. #define SAI_XCR2_CPL BIT(SAI_XCR2_CPL_SHIFT)
  95. #define SAI_XCR2_COMP_SHIFT 14
  96. #define SAI_XCR2_COMP_MASK GENMASK(15, SAI_XCR2_COMP_SHIFT)
  97. #define SAI_XCR2_COMP_SET(x) ((x) << SAI_XCR2_COMP_SHIFT)
  98. /****************** Bit definition for SAI_XFRCR register *******************/
  99. #define SAI_XFRCR_FRL_SHIFT 0
  100. #define SAI_XFRCR_FRL_MASK GENMASK(7, SAI_XFRCR_FRL_SHIFT)
  101. #define SAI_XFRCR_FRL_SET(x) ((x) << SAI_XFRCR_FRL_SHIFT)
  102. #define SAI_XFRCR_FSALL_SHIFT 8
  103. #define SAI_XFRCR_FSALL_MASK GENMASK(14, SAI_XFRCR_FSALL_SHIFT)
  104. #define SAI_XFRCR_FSALL_SET(x) ((x) << SAI_XFRCR_FSALL_SHIFT)
  105. #define SAI_XFRCR_FSDEF_SHIFT 16
  106. #define SAI_XFRCR_FSDEF BIT(SAI_XFRCR_FSDEF_SHIFT)
  107. #define SAI_XFRCR_FSPOL_SHIFT 17
  108. #define SAI_XFRCR_FSPOL BIT(SAI_XFRCR_FSPOL_SHIFT)
  109. #define SAI_XFRCR_FSOFF_SHIFT 18
  110. #define SAI_XFRCR_FSOFF BIT(SAI_XFRCR_FSOFF_SHIFT)
  111. /****************** Bit definition for SAI_XSLOTR register ******************/
  112. #define SAI_XSLOTR_FBOFF_SHIFT 0
  113. #define SAI_XSLOTR_FBOFF_MASK GENMASK(4, SAI_XSLOTR_FBOFF_SHIFT)
  114. #define SAI_XSLOTR_FBOFF_SET(x) ((x) << SAI_XSLOTR_FBOFF_SHIFT)
  115. #define SAI_XSLOTR_SLOTSZ_SHIFT 6
  116. #define SAI_XSLOTR_SLOTSZ_MASK GENMASK(7, SAI_XSLOTR_SLOTSZ_SHIFT)
  117. #define SAI_XSLOTR_SLOTSZ_SET(x) ((x) << SAI_XSLOTR_SLOTSZ_SHIFT)
  118. #define SAI_XSLOTR_NBSLOT_SHIFT 8
  119. #define SAI_XSLOTR_NBSLOT_MASK GENMASK(11, SAI_XSLOTR_NBSLOT_SHIFT)
  120. #define SAI_XSLOTR_NBSLOT_SET(x) ((x) << SAI_XSLOTR_NBSLOT_SHIFT)
  121. #define SAI_XSLOTR_SLOTEN_SHIFT 16
  122. #define SAI_XSLOTR_SLOTEN_WIDTH 16
  123. #define SAI_XSLOTR_SLOTEN_MASK GENMASK(31, SAI_XSLOTR_SLOTEN_SHIFT)
  124. #define SAI_XSLOTR_SLOTEN_SET(x) ((x) << SAI_XSLOTR_SLOTEN_SHIFT)
  125. /******************* Bit definition for SAI_XIMR register *******************/
  126. #define SAI_XIMR_OVRUDRIE BIT(0)
  127. #define SAI_XIMR_MUTEDETIE BIT(1)
  128. #define SAI_XIMR_WCKCFGIE BIT(2)
  129. #define SAI_XIMR_FREQIE BIT(3)
  130. #define SAI_XIMR_CNRDYIE BIT(4)
  131. #define SAI_XIMR_AFSDETIE BIT(5)
  132. #define SAI_XIMR_LFSDETIE BIT(6)
  133. #define SAI_XIMR_SHIFT 0
  134. #define SAI_XIMR_MASK GENMASK(6, SAI_XIMR_SHIFT)
  135. /******************** Bit definition for SAI_XSR register *******************/
  136. #define SAI_XSR_OVRUDR BIT(0)
  137. #define SAI_XSR_MUTEDET BIT(1)
  138. #define SAI_XSR_WCKCFG BIT(2)
  139. #define SAI_XSR_FREQ BIT(3)
  140. #define SAI_XSR_CNRDY BIT(4)
  141. #define SAI_XSR_AFSDET BIT(5)
  142. #define SAI_XSR_LFSDET BIT(6)
  143. #define SAI_XSR_SHIFT 0
  144. #define SAI_XSR_MASK GENMASK(6, SAI_XSR_SHIFT)
  145. /****************** Bit definition for SAI_XCLRFR register ******************/
  146. #define SAI_XCLRFR_COVRUDR BIT(0)
  147. #define SAI_XCLRFR_CMUTEDET BIT(1)
  148. #define SAI_XCLRFR_CWCKCFG BIT(2)
  149. #define SAI_XCLRFR_CFREQ BIT(3)
  150. #define SAI_XCLRFR_CCNRDY BIT(4)
  151. #define SAI_XCLRFR_CAFSDET BIT(5)
  152. #define SAI_XCLRFR_CLFSDET BIT(6)
  153. #define SAI_XCLRFR_SHIFT 0
  154. #define SAI_XCLRFR_MASK GENMASK(6, SAI_XCLRFR_SHIFT)
  155. /****************** Bit definition for SAI_PDMCR register ******************/
  156. #define SAI_PDMCR_PDMEN BIT(0)
  157. #define SAI_PDMCR_MICNBR_SHIFT 4
  158. #define SAI_PDMCR_MICNBR_MASK GENMASK(5, SAI_PDMCR_MICNBR_SHIFT)
  159. #define SAI_PDMCR_MICNBR_SET(x) ((x) << SAI_PDMCR_MICNBR_SHIFT)
  160. #define SAI_PDMCR_CKEN1 BIT(8)
  161. #define SAI_PDMCR_CKEN2 BIT(9)
  162. #define SAI_PDMCR_CKEN3 BIT(10)
  163. #define SAI_PDMCR_CKEN4 BIT(11)
  164. /****************** Bit definition for (SAI_PDMDLY register ****************/
  165. #define SAI_PDMDLY_1L_SHIFT 0
  166. #define SAI_PDMDLY_1L_MASK GENMASK(2, SAI_PDMDLY_1L_SHIFT)
  167. #define SAI_PDMDLY_1L_WIDTH 3
  168. #define SAI_PDMDLY_1R_SHIFT 4
  169. #define SAI_PDMDLY_1R_MASK GENMASK(6, SAI_PDMDLY_1R_SHIFT)
  170. #define SAI_PDMDLY_1R_WIDTH 3
  171. #define SAI_PDMDLY_2L_SHIFT 8
  172. #define SAI_PDMDLY_2L_MASK GENMASK(10, SAI_PDMDLY_2L_SHIFT)
  173. #define SAI_PDMDLY_2L_WIDTH 3
  174. #define SAI_PDMDLY_2R_SHIFT 12
  175. #define SAI_PDMDLY_2R_MASK GENMASK(14, SAI_PDMDLY_2R_SHIFT)
  176. #define SAI_PDMDLY_2R_WIDTH 3
  177. #define SAI_PDMDLY_3L_SHIFT 16
  178. #define SAI_PDMDLY_3L_MASK GENMASK(18, SAI_PDMDLY_3L_SHIFT)
  179. #define SAI_PDMDLY_3L_WIDTH 3
  180. #define SAI_PDMDLY_3R_SHIFT 20
  181. #define SAI_PDMDLY_3R_MASK GENMASK(22, SAI_PDMDLY_3R_SHIFT)
  182. #define SAI_PDMDLY_3R_WIDTH 3
  183. #define SAI_PDMDLY_4L_SHIFT 24
  184. #define SAI_PDMDLY_4L_MASK GENMASK(26, SAI_PDMDLY_4L_SHIFT)
  185. #define SAI_PDMDLY_4L_WIDTH 3
  186. #define SAI_PDMDLY_4R_SHIFT 28
  187. #define SAI_PDMDLY_4R_MASK GENMASK(30, SAI_PDMDLY_4R_SHIFT)
  188. #define SAI_PDMDLY_4R_WIDTH 3
  189. #define STM_SAI_IS_F4(ip) ((ip)->conf->version == SAI_STM32F4)
  190. #define STM_SAI_IS_H7(ip) ((ip)->conf->version == SAI_STM32H7)
  191. enum stm32_sai_syncout {
  192. STM_SAI_SYNC_OUT_NONE,
  193. STM_SAI_SYNC_OUT_A,
  194. STM_SAI_SYNC_OUT_B,
  195. };
  196. enum stm32_sai_version {
  197. SAI_STM32F4,
  198. SAI_STM32H7
  199. };
  200. /**
  201. * struct stm32_sai_conf - SAI configuration
  202. * @version: SAI version
  203. * @has_spdif: SAI S/PDIF support flag
  204. */
  205. struct stm32_sai_conf {
  206. int version;
  207. bool has_spdif;
  208. };
  209. /**
  210. * struct stm32_sai_data - private data of SAI instance driver
  211. * @pdev: device data pointer
  212. * @base: common register bank virtual base address
  213. * @pclk: SAI bus clock
  214. * @clk_x8k: SAI parent clock for sampling frequencies multiple of 8kHz
  215. * @clk_x11k: SAI parent clock for sampling frequencies multiple of 11kHz
  216. * @version: SOC version
  217. * @irq: SAI interrupt line
  218. * @set_sync: pointer to synchro mode configuration callback
  219. */
  220. struct stm32_sai_data {
  221. struct platform_device *pdev;
  222. void __iomem *base;
  223. struct clk *pclk;
  224. struct clk *clk_x8k;
  225. struct clk *clk_x11k;
  226. struct stm32_sai_conf *conf;
  227. int irq;
  228. int (*set_sync)(struct stm32_sai_data *sai,
  229. struct device_node *np_provider, int synco, int synci);
  230. };