aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/sst-mfld-platform.h
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2014-07-09 14:57:51 +0530
committerMark Brown <broonie@linaro.org>2014-07-14 19:44:52 +0100
commite310fb9141436672db680923228fba5aab206062 (patch)
treed066811e313a5aaef222c6706d9628fe64a3e30f /sound/soc/intel/sst-mfld-platform.h
parentASoC: Intel: mfld: add dsp error codes (diff)
downloadlinux-dev-e310fb9141436672db680923228fba5aab206062.tar.xz
linux-dev-e310fb9141436672db680923228fba5aab206062.zip
ASoC: Intel: mfld: add generic parameter interface
This interface will be used by subsequent patches to set/get parameters from DSP Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to '')
-rw-r--r--sound/soc/intel/sst-mfld-platform.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/soc/intel/sst-mfld-platform.h b/sound/soc/intel/sst-mfld-platform.h
index 9dc962ff1e1d..6c6a42c08e24 100644
--- a/sound/soc/intel/sst-mfld-platform.h
+++ b/sound/soc/intel/sst-mfld-platform.h
@@ -63,7 +63,9 @@ enum sst_controls {
SST_SND_BUFFER_POINTER = 0x05,
SST_SND_STREAM_INIT = 0x06,
SST_SND_START = 0x07,
- SST_MAX_CONTROLS = 0x07,
+ SST_SET_BYTE_STREAM = 0x100A,
+ SST_GET_BYTE_STREAM = 0x100B,
+ SST_MAX_CONTROLS = SST_GET_BYTE_STREAM,
};
enum sst_stream_ops {
@@ -127,6 +129,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);
};