snd_sst_tokens.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * snd_sst_tokens.h - Intel SST tokens definition
  4. *
  5. * Copyright (C) 2016 Intel Corp
  6. * Author: Shreyas NC <shreyas.nc@intel.com>
  7. */
  8. #ifndef __SND_SST_TOKENS_H__
  9. #define __SND_SST_TOKENS_H__
  10. /**
  11. * %SKL_TKN_UUID: Module UUID
  12. *
  13. * %SKL_TKN_U8_BLOCK_TYPE: Type of the private data block.Can be:
  14. * tuples, bytes, short and words
  15. *
  16. * %SKL_TKN_U8_IN_PIN_TYPE: Input pin type,
  17. * homogenous=0, heterogenous=1
  18. *
  19. * %SKL_TKN_U8_OUT_PIN_TYPE: Output pin type,
  20. * homogenous=0, heterogenous=1
  21. * %SKL_TKN_U8_DYN_IN_PIN: Configure Input pin dynamically
  22. * if true
  23. *
  24. * %SKL_TKN_U8_DYN_OUT_PIN: Configure Output pin dynamically
  25. * if true
  26. *
  27. * %SKL_TKN_U8_IN_QUEUE_COUNT: Store the number of Input pins
  28. *
  29. * %SKL_TKN_U8_OUT_QUEUE_COUNT: Store the number of Output pins
  30. *
  31. * %SKL_TKN_U8_TIME_SLOT: TDM slot number
  32. *
  33. * %SKL_TKN_U8_CORE_ID: Stores module affinity value.Can take
  34. * the values:
  35. * SKL_AFFINITY_CORE_0 = 0,
  36. * SKL_AFFINITY_CORE_1,
  37. * SKL_AFFINITY_CORE_MAX
  38. *
  39. * %SKL_TKN_U8_MOD_TYPE: Module type value.
  40. *
  41. * %SKL_TKN_U8_CONN_TYPE: Module connection type can be a FE,
  42. * BE or NONE as defined :
  43. * SKL_PIPE_CONN_TYPE_NONE = 0,
  44. * SKL_PIPE_CONN_TYPE_FE = 1 (HOST_DMA)
  45. * SKL_PIPE_CONN_TYPE_BE = 2 (LINK_DMA)
  46. *
  47. * %SKL_TKN_U8_DEV_TYPE: Type of device to which the module is
  48. * connected
  49. * Can take the values:
  50. * SKL_DEVICE_BT = 0x0,
  51. * SKL_DEVICE_DMIC = 0x1,
  52. * SKL_DEVICE_I2S = 0x2,
  53. * SKL_DEVICE_SLIMBUS = 0x3,
  54. * SKL_DEVICE_HDALINK = 0x4,
  55. * SKL_DEVICE_HDAHOST = 0x5,
  56. * SKL_DEVICE_NONE
  57. *
  58. * %SKL_TKN_U8_HW_CONN_TYPE: Connection type of the HW to which the
  59. * module is connected
  60. * SKL_CONN_NONE = 0,
  61. * SKL_CONN_SOURCE = 1,
  62. * SKL_CONN_SINK = 2
  63. *
  64. * %SKL_TKN_U16_PIN_INST_ID: Stores the pin instance id
  65. *
  66. * %SKL_TKN_U16_MOD_INST_ID: Stores the mdule instance id
  67. *
  68. * %SKL_TKN_U32_MAX_MCPS: Module max mcps value
  69. *
  70. * %SKL_TKN_U32_MEM_PAGES: Module resource pages
  71. *
  72. * %SKL_TKN_U32_OBS: Stores Output Buffer size
  73. *
  74. * %SKL_TKN_U32_IBS: Stores input buffer size
  75. *
  76. * %SKL_TKN_U32_VBUS_ID: Module VBUS_ID. PDM=0, SSP0=0,
  77. * SSP1=1,SSP2=2,
  78. * SSP3=3, SSP4=4,
  79. * SSP5=5, SSP6=6,INVALID
  80. *
  81. * %SKL_TKN_U32_PARAMS_FIXUP: Module Params fixup mask
  82. * %SKL_TKN_U32_CONVERTER: Module params converter mask
  83. * %SKL_TKN_U32_PIPE_ID: Stores the pipe id
  84. *
  85. * %SKL_TKN_U32_PIPE_CONN_TYPE: Type of the token to which the pipe is
  86. * connected to. It can be
  87. * SKL_PIPE_CONN_TYPE_NONE = 0,
  88. * SKL_PIPE_CONN_TYPE_FE = 1 (HOST_DMA),
  89. * SKL_PIPE_CONN_TYPE_BE = 2 (LINK_DMA),
  90. *
  91. * %SKL_TKN_U32_PIPE_PRIORITY: Pipe priority value
  92. * %SKL_TKN_U32_PIPE_MEM_PGS: Pipe resource pages
  93. *
  94. * %SKL_TKN_U32_DIR_PIN_COUNT: Value for the direction to set input/output
  95. * formats and the pin count.
  96. * The first 4 bits have the direction
  97. * value and the next 4 have
  98. * the pin count value.
  99. * SKL_DIR_IN = 0, SKL_DIR_OUT = 1.
  100. * The input and output formats
  101. * share the same set of tokens
  102. * with the distinction between input
  103. * and output made by reading direction
  104. * token.
  105. *
  106. * %SKL_TKN_U32_FMT_CH: Supported channel count
  107. *
  108. * %SKL_TKN_U32_FMT_FREQ: Supported frequency/sample rate
  109. *
  110. * %SKL_TKN_U32_FMT_BIT_DEPTH: Supported container size
  111. *
  112. * %SKL_TKN_U32_FMT_SAMPLE_SIZE:Number of samples in the container
  113. *
  114. * %SKL_TKN_U32_FMT_CH_CONFIG: Supported channel configurations for the
  115. * input/output.
  116. *
  117. * %SKL_TKN_U32_FMT_INTERLEAVE: Interleaving style which can be per
  118. * channel or per sample. The values can be :
  119. * SKL_INTERLEAVING_PER_CHANNEL = 0,
  120. * SKL_INTERLEAVING_PER_SAMPLE = 1,
  121. *
  122. * %SKL_TKN_U32_FMT_SAMPLE_TYPE:
  123. * Specifies the sample type. Can take the
  124. * values: SKL_SAMPLE_TYPE_INT_MSB = 0,
  125. * SKL_SAMPLE_TYPE_INT_LSB = 1,
  126. * SKL_SAMPLE_TYPE_INT_SIGNED = 2,
  127. * SKL_SAMPLE_TYPE_INT_UNSIGNED = 3,
  128. * SKL_SAMPLE_TYPE_FLOAT = 4
  129. *
  130. * %SKL_TKN_U32_CH_MAP: Channel map values
  131. * %SKL_TKN_U32_MOD_SET_PARAMS: It can take these values:
  132. * SKL_PARAM_DEFAULT, SKL_PARAM_INIT,
  133. * SKL_PARAM_SET, SKL_PARAM_BIND
  134. *
  135. * %SKL_TKN_U32_MOD_PARAM_ID: ID of the module params
  136. *
  137. * %SKL_TKN_U32_CAPS_SET_PARAMS:
  138. * Set params value
  139. *
  140. * %SKL_TKN_U32_CAPS_PARAMS_ID: Params ID
  141. *
  142. * %SKL_TKN_U32_CAPS_SIZE: Caps size
  143. *
  144. * %SKL_TKN_U32_PROC_DOMAIN: Specify processing domain
  145. *
  146. * %SKL_TKN_U32_LIB_COUNT: Specifies the number of libraries
  147. *
  148. * %SKL_TKN_STR_LIB_NAME: Specifies the library name
  149. *
  150. * %SKL_TKN_U32_PMODE: Specifies the power mode for pipe
  151. *
  152. * %SKL_TKL_U32_D0I3_CAPS: Specifies the D0i3 capability for module
  153. *
  154. * %SKL_TKN_U32_DMA_BUF_SIZE: DMA buffer size in millisec
  155. *
  156. * %SKL_TKN_U32_PIPE_DIR: Specifies pipe direction. Can be
  157. * playback/capture.
  158. *
  159. * %SKL_TKN_U32_NUM_CONFIGS: Number of pipe configs
  160. *
  161. * %SKL_TKN_U32_PATH_MEM_PGS: Size of memory (in pages) required for pipeline
  162. * and its data
  163. *
  164. * %SKL_TKN_U32_PIPE_CONFIG_ID: Config id for the modules in the pipe
  165. * and PCM params supported by that pipe
  166. * config. This is used as index to fill
  167. * up the pipe config and module config
  168. * structure.
  169. *
  170. * %SKL_TKN_U32_CFG_FREQ:
  171. * %SKL_TKN_U8_CFG_CHAN:
  172. * %SKL_TKN_U8_CFG_BPS: PCM params (freq, channels, bits per sample)
  173. * supported for each of the pipe configs.
  174. *
  175. * %SKL_TKN_CFG_MOD_RES_ID: Module's resource index for each of the
  176. * pipe config
  177. *
  178. * %SKL_TKN_CFG_MOD_FMT_ID: Module's interface index for each of the
  179. * pipe config
  180. *
  181. * %SKL_TKN_U8_NUM_MOD: Number of modules in the manifest
  182. *
  183. * %SKL_TKN_MM_U8_MOD_IDX: Current index of the module in the manifest
  184. *
  185. * %SKL_TKN_MM_U8_NUM_RES: Number of resources for the module
  186. *
  187. * %SKL_TKN_MM_U8_NUM_INTF: Number of interfaces for the module
  188. *
  189. * %SKL_TKN_MM_U32_RES_ID: Resource index for the resource info to
  190. * be filled into.
  191. * A module can support multiple resource
  192. * configuration and is represnted as a
  193. * resource table. This index is used to
  194. * fill information into appropriate index.
  195. *
  196. * %SKL_TKN_MM_U32_CPS: DSP cycles per second
  197. *
  198. * %SKL_TKN_MM_U32_DMA_SIZE: Allocated buffer size for gateway DMA
  199. *
  200. * %SKL_TKN_MM_U32_CPC: DSP cycles allocated per frame
  201. *
  202. * %SKL_TKN_MM_U32_RES_PIN_ID: Resource pin index in the module
  203. *
  204. * %SKL_TKN_MM_U32_INTF_PIN_ID: Interface index in the module
  205. *
  206. * %SKL_TKN_MM_U32_PIN_BUF: Buffer size of the module pin
  207. *
  208. * %SKL_TKN_MM_U32_FMT_ID: Format index for each of the interface/
  209. * format information to be filled into.
  210. *
  211. * %SKL_TKN_MM_U32_NUM_IN_FMT: Number of input formats
  212. * %SKL_TKN_MM_U32_NUM_OUT_FMT: Number of output formats
  213. *
  214. * %SKL_TKN_U32_ASTATE_IDX: Table Index for the A-State entry to be filled
  215. * with kcps and clock source
  216. *
  217. * %SKL_TKN_U32_ASTATE_COUNT: Number of valid entries in A-State table
  218. *
  219. * %SKL_TKN_U32_ASTATE_KCPS: Specifies the core load threshold (in kilo
  220. * cycles per second) below which DSP is clocked
  221. * from source specified by clock source.
  222. *
  223. * %SKL_TKN_U32_ASTATE_CLK_SRC: Clock source for A-State entry
  224. *
  225. * %SKL_TKN_U32_FMT_CFG_IDX: Format config index
  226. *
  227. * module_id and loadable flags dont have tokens as these values will be
  228. * read from the DSP FW manifest
  229. *
  230. * Tokens defined can be used either in the manifest or widget private data.
  231. *
  232. * SKL_TKN_MM is used as a suffix for all tokens that represent
  233. * module data in the manifest.
  234. */
  235. enum SKL_TKNS {
  236. SKL_TKN_UUID = 1,
  237. SKL_TKN_U8_NUM_BLOCKS,
  238. SKL_TKN_U8_BLOCK_TYPE,
  239. SKL_TKN_U8_IN_PIN_TYPE,
  240. SKL_TKN_U8_OUT_PIN_TYPE,
  241. SKL_TKN_U8_DYN_IN_PIN,
  242. SKL_TKN_U8_DYN_OUT_PIN,
  243. SKL_TKN_U8_IN_QUEUE_COUNT,
  244. SKL_TKN_U8_OUT_QUEUE_COUNT,
  245. SKL_TKN_U8_TIME_SLOT,
  246. SKL_TKN_U8_CORE_ID,
  247. SKL_TKN_U8_MOD_TYPE,
  248. SKL_TKN_U8_CONN_TYPE,
  249. SKL_TKN_U8_DEV_TYPE,
  250. SKL_TKN_U8_HW_CONN_TYPE,
  251. SKL_TKN_U16_MOD_INST_ID,
  252. SKL_TKN_U16_BLOCK_SIZE,
  253. SKL_TKN_U32_MAX_MCPS,
  254. SKL_TKN_U32_MEM_PAGES,
  255. SKL_TKN_U32_OBS,
  256. SKL_TKN_U32_IBS,
  257. SKL_TKN_U32_VBUS_ID,
  258. SKL_TKN_U32_PARAMS_FIXUP,
  259. SKL_TKN_U32_CONVERTER,
  260. SKL_TKN_U32_PIPE_ID,
  261. SKL_TKN_U32_PIPE_CONN_TYPE,
  262. SKL_TKN_U32_PIPE_PRIORITY,
  263. SKL_TKN_U32_PIPE_MEM_PGS,
  264. SKL_TKN_U32_DIR_PIN_COUNT,
  265. SKL_TKN_U32_FMT_CH,
  266. SKL_TKN_U32_FMT_FREQ,
  267. SKL_TKN_U32_FMT_BIT_DEPTH,
  268. SKL_TKN_U32_FMT_SAMPLE_SIZE,
  269. SKL_TKN_U32_FMT_CH_CONFIG,
  270. SKL_TKN_U32_FMT_INTERLEAVE,
  271. SKL_TKN_U32_FMT_SAMPLE_TYPE,
  272. SKL_TKN_U32_FMT_CH_MAP,
  273. SKL_TKN_U32_PIN_MOD_ID,
  274. SKL_TKN_U32_PIN_INST_ID,
  275. SKL_TKN_U32_MOD_SET_PARAMS,
  276. SKL_TKN_U32_MOD_PARAM_ID,
  277. SKL_TKN_U32_CAPS_SET_PARAMS,
  278. SKL_TKN_U32_CAPS_PARAMS_ID,
  279. SKL_TKN_U32_CAPS_SIZE,
  280. SKL_TKN_U32_PROC_DOMAIN,
  281. SKL_TKN_U32_LIB_COUNT,
  282. SKL_TKN_STR_LIB_NAME,
  283. SKL_TKN_U32_PMODE,
  284. SKL_TKL_U32_D0I3_CAPS, /* Typo added at v4.10 */
  285. SKL_TKN_U32_D0I3_CAPS = SKL_TKL_U32_D0I3_CAPS,
  286. SKL_TKN_U32_DMA_BUF_SIZE,
  287. SKL_TKN_U32_PIPE_DIRECTION,
  288. SKL_TKN_U32_PIPE_CONFIG_ID,
  289. SKL_TKN_U32_NUM_CONFIGS,
  290. SKL_TKN_U32_PATH_MEM_PGS,
  291. SKL_TKN_U32_CFG_FREQ,
  292. SKL_TKN_U8_CFG_CHAN,
  293. SKL_TKN_U8_CFG_BPS,
  294. SKL_TKN_CFG_MOD_RES_ID,
  295. SKL_TKN_CFG_MOD_FMT_ID,
  296. SKL_TKN_U8_NUM_MOD,
  297. SKL_TKN_MM_U8_MOD_IDX,
  298. SKL_TKN_MM_U8_NUM_RES,
  299. SKL_TKN_MM_U8_NUM_INTF,
  300. SKL_TKN_MM_U32_RES_ID,
  301. SKL_TKN_MM_U32_CPS,
  302. SKL_TKN_MM_U32_DMA_SIZE,
  303. SKL_TKN_MM_U32_CPC,
  304. SKL_TKN_MM_U32_RES_PIN_ID,
  305. SKL_TKN_MM_U32_INTF_PIN_ID,
  306. SKL_TKN_MM_U32_PIN_BUF,
  307. SKL_TKN_MM_U32_FMT_ID,
  308. SKL_TKN_MM_U32_NUM_IN_FMT,
  309. SKL_TKN_MM_U32_NUM_OUT_FMT,
  310. SKL_TKN_U32_ASTATE_IDX,
  311. SKL_TKN_U32_ASTATE_COUNT,
  312. SKL_TKN_U32_ASTATE_KCPS,
  313. SKL_TKN_U32_ASTATE_CLK_SRC,
  314. SKL_TKN_U32_FMT_CFG_IDX = 96,
  315. SKL_TKN_MAX = SKL_TKN_U32_FMT_CFG_IDX,
  316. };
  317. #endif