2 * skl-tplg-interface.h - Intel DSP FW private data interface
4 * Copyright (C) 2015 Intel Corp
5 * Author: Jeeja KP <jeeja.kp@intel.com>
6 * Nilofer, Samreen <samreen.nilofer@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as version 2, as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
19 #ifndef __HDA_TPLG_INTERFACE_H__
20 #define __HDA_TPLG_INTERFACE_H__
23 * Default types range from 0~12. type can range from 0 to 0xff
24 * SST types start at higher to avoid any overlapping in future
26 #define SKL_CONTROL_TYPE_BYTE_TLV 0x100
28 #define HDA_SST_CFG_MAX 900 /* size of copier cfg*/
29 #define MAX_IN_QUEUE 8
30 #define MAX_OUT_QUEUE 8
32 #define SKL_UUID_STR_SZ 40
33 /* Event types goes here */
34 /* Reserve event type 0 for no event handlers */
35 enum skl_event_types
{
44 * enum skl_ch_cfg - channel configuration
46 * @SKL_CH_CFG_MONO: One channel only
47 * @SKL_CH_CFG_STEREO: L & R
48 * @SKL_CH_CFG_2_1: L, R & LFE
49 * @SKL_CH_CFG_3_0: L, C & R
50 * @SKL_CH_CFG_3_1: L, C, R & LFE
51 * @SKL_CH_CFG_QUATRO: L, R, Ls & Rs
52 * @SKL_CH_CFG_4_0: L, C, R & Cs
53 * @SKL_CH_CFG_5_0: L, C, R, Ls & Rs
54 * @SKL_CH_CFG_5_1: L, C, R, Ls, Rs & LFE
55 * @SKL_CH_CFG_DUAL_MONO: One channel replicated in two
56 * @SKL_CH_CFG_I2S_DUAL_STEREO_0: Stereo(L,R) in 4 slots, 1st stream:[ L, R, -, - ]
57 * @SKL_CH_CFG_I2S_DUAL_STEREO_1: Stereo(L,R) in 4 slots, 2nd stream:[ -, -, L, R ]
58 * @SKL_CH_CFG_INVALID: Invalid
62 SKL_CH_CFG_STEREO
= 1,
66 SKL_CH_CFG_QUATRO
= 5,
70 SKL_CH_CFG_DUAL_MONO
= 9,
71 SKL_CH_CFG_I2S_DUAL_STEREO_0
= 10,
72 SKL_CH_CFG_I2S_DUAL_STEREO_1
= 11,
73 SKL_CH_CFG_4_CHANNEL
= 12,
77 enum skl_module_type
{
78 SKL_MODULE_TYPE_MIXER
= 0,
79 SKL_MODULE_TYPE_COPIER
,
80 SKL_MODULE_TYPE_UPDWMIX
,
81 SKL_MODULE_TYPE_SRCINT
,
83 SKL_MODULE_TYPE_BASE_OUTFMT
86 enum skl_core_affinity
{
87 SKL_AFFINITY_CORE_0
= 0,
92 enum skl_pipe_conn_type
{
93 SKL_PIPE_CONN_TYPE_NONE
= 0,
94 SKL_PIPE_CONN_TYPE_FE
,
98 enum skl_hw_conn_type
{
106 SKL_DEVICE_DMIC
= 0x1,
107 SKL_DEVICE_I2S
= 0x2,
108 SKL_DEVICE_SLIMBUS
= 0x3,
109 SKL_DEVICE_HDALINK
= 0x4,
110 SKL_DEVICE_HDAHOST
= 0x5,
115 * enum skl_interleaving - interleaving style
117 * @SKL_INTERLEAVING_PER_CHANNEL: [s1_ch1...s1_chN,...,sM_ch1...sM_chN]
118 * @SKL_INTERLEAVING_PER_SAMPLE: [s1_ch1...sM_ch1,...,s1_chN...sM_chN]
120 enum skl_interleaving
{
121 SKL_INTERLEAVING_PER_CHANNEL
= 0,
122 SKL_INTERLEAVING_PER_SAMPLE
= 1,
125 enum skl_sample_type
{
126 SKL_SAMPLE_TYPE_INT_MSB
= 0,
127 SKL_SAMPLE_TYPE_INT_LSB
= 1,
128 SKL_SAMPLE_TYPE_INT_SIGNED
= 2,
129 SKL_SAMPLE_TYPE_INT_UNSIGNED
= 3,
130 SKL_SAMPLE_TYPE_FLOAT
= 4
133 enum module_pin_type
{
134 /* All pins of the module takes same PCM inputs or outputs
137 SKL_PIN_TYPE_HOMOGENEOUS
,
138 /* All pins of the module takes different PCM inputs or outputs
141 SKL_PIN_TYPE_HETEROGENEOUS
,
144 enum skl_module_param_type
{
145 SKL_PARAM_DEFAULT
= 0,
150 struct skl_dfw_module_pin
{
155 struct skl_dfw_module_fmt
{
161 u32 interleaving_style
;
166 struct skl_dfw_module_caps
{
171 u32 caps
[HDA_SST_CFG_MAX
];
174 struct skl_dfw_pipe
{
182 struct skl_dfw_module
{
183 char uuid
[SKL_UUID_STR_SZ
];
207 u32 input_pin_type
:1;
208 u32 output_pin_type
:1;
209 u32 is_dynamic_in_pin
:1;
210 u32 is_dynamic_out_pin
:1;
214 struct skl_dfw_pipe pipe
;
215 struct skl_dfw_module_fmt in_fmt
[MAX_IN_QUEUE
];
216 struct skl_dfw_module_fmt out_fmt
[MAX_OUT_QUEUE
];
217 struct skl_dfw_module_pin in_pin
[MAX_IN_QUEUE
];
218 struct skl_dfw_module_pin out_pin
[MAX_OUT_QUEUE
];
219 struct skl_dfw_module_caps caps
;
222 struct skl_dfw_algo_data
{