@@ -63,7 +63,12 @@ enum sst_controls {
SST_SND_BUFFER_POINTER = 0x05,
SST_SND_STREAM_INIT = 0x06,
SST_SND_START = 0x07,
- SST_MAX_CONTROLS = 0x07,
+ SST_SET_RUNTIME_PARAMS = 0x08,
+ SST_SET_ALGO_PARAMS = 0x09,
+ SST_SET_BYTE_STREAM = 0x0A,
+ SST_GET_BYTE_STREAM = 0x0B,
+
+ SST_MAX_CONTROLS = SST_GET_BYTE_STREAM,
};
enum sst_stream_ops {
@@ -127,6 +132,7 @@ struct compress_sst_ops {
struct sst_ops {
int (*open) (struct snd_sst_params *str_param);
int (*device_control) (int cmd, void *arg);
+ int (*set_generic_params) (enum sst_controls cmd, void *arg);
int (*close) (unsigned int str_id);
};
This will be used by subsequent patches to send DSP cmds on DAPM widgets enable/disable Signed-off-by: Vinod Koul <vinod.koul@intel.com> --- sound/soc/intel/sst-mfld-platform.h | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-)