]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ASoC: Intel: mfld: add generic parameter interface
authorVinod Koul <vinod.koul@intel.com>
Wed, 9 Jul 2014 09:27:51 +0000 (14:57 +0530)
committerMark Brown <broonie@linaro.org>
Mon, 14 Jul 2014 18:44:52 +0000 (19:44 +0100)
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>
sound/soc/intel/sst-mfld-platform.h

index 9dc962ff1e1d1dc67366db70bbd94909a8e4bdf4..6c6a42c08e2410b90a898d2e9d77730a4bf7721f 100644 (file)
@@ -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);
 };