blob: 96f7facd0fa0ff14207145b35480f660753194c3 [file] [log] [blame]
Vinod Kould927fda2011-01-04 20:16:32 +05301/*
Mark Browna4b12992014-03-12 23:04:35 +00002 * sst_mfld_platform.c - Intel MID Platform driver
Vinod Kould927fda2011-01-04 20:16:32 +05303 *
Vinod Koul61b165c2014-06-13 18:03:56 +05304 * Copyright (C) 2010-2014 Intel Corp
Vinod Kould927fda2011-01-04 20:16:32 +05305 * Author: Vinod Koul <vinod.koul@intel.com>
6 * Author: Harsha Priya <priya.harsha@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
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 published by
11 * the Free Software Foundation; version 2 of the License.
12 *
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.
17 *
Vinod Kould927fda2011-01-04 20:16:32 +053018 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Vinod Kould927fda2011-01-04 20:16:32 +053019 */
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22#include <linux/slab.h>
23#include <linux/io.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040024#include <linux/module.h>
Vinod Kould927fda2011-01-04 20:16:32 +053025#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
Vinod Koulc514a912012-08-16 17:10:42 +053029#include <sound/compress_driver.h>
Vinod Koul61b165c2014-06-13 18:03:56 +053030#include <asm/platform_sst_audio.h>
Mark Browna4b12992014-03-12 23:04:35 +000031#include "sst-mfld-platform.h"
Vinod Koul61b165c2014-06-13 18:03:56 +053032#include "sst-atom-controls.h"
Vinod Kould927fda2011-01-04 20:16:32 +053033
Vinod Koul4b68b4e2014-05-05 14:27:50 +053034struct sst_device *sst;
Vinod Koul03c33042011-12-05 19:13:41 +053035static DEFINE_MUTEX(sst_lock);
36
37int sst_register_dsp(struct sst_device *dev)
38{
Takashi Iwai656a22a2013-11-05 18:40:01 +010039 if (WARN_ON(!dev))
40 return -EINVAL;
Vinod Koul03c33042011-12-05 19:13:41 +053041 if (!try_module_get(dev->dev->driver->owner))
42 return -ENODEV;
43 mutex_lock(&sst_lock);
44 if (sst) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +053045 dev_err(dev->dev, "we already have a device %s\n", sst->name);
Vinod Koul03c33042011-12-05 19:13:41 +053046 module_put(dev->dev->driver->owner);
47 mutex_unlock(&sst_lock);
48 return -EEXIST;
49 }
Subhransu S. Prusty02024752014-09-02 18:05:56 +053050 dev_dbg(dev->dev, "registering device %s\n", dev->name);
Vinod Koul03c33042011-12-05 19:13:41 +053051 sst = dev;
52 mutex_unlock(&sst_lock);
53 return 0;
54}
55EXPORT_SYMBOL_GPL(sst_register_dsp);
56
57int sst_unregister_dsp(struct sst_device *dev)
58{
Takashi Iwai656a22a2013-11-05 18:40:01 +010059 if (WARN_ON(!dev))
60 return -EINVAL;
Vinod Koul03c33042011-12-05 19:13:41 +053061 if (dev != sst)
62 return -EINVAL;
63
64 mutex_lock(&sst_lock);
65
66 if (!sst) {
67 mutex_unlock(&sst_lock);
68 return -EIO;
69 }
70
71 module_put(sst->dev->driver->owner);
Subhransu S. Prusty02024752014-09-02 18:05:56 +053072 dev_dbg(dev->dev, "unreg %s\n", sst->name);
Vinod Koul03c33042011-12-05 19:13:41 +053073 sst = NULL;
74 mutex_unlock(&sst_lock);
75 return 0;
76}
77EXPORT_SYMBOL_GPL(sst_unregister_dsp);
78
Bhumika Goyala7468e42017-08-17 15:46:08 +053079static const struct snd_pcm_hardware sst_platform_pcm_hw = {
Vinod Kould927fda2011-01-04 20:16:32 +053080 .info = (SNDRV_PCM_INFO_INTERLEAVED |
81 SNDRV_PCM_INFO_DOUBLE |
82 SNDRV_PCM_INFO_PAUSE |
83 SNDRV_PCM_INFO_RESUME |
84 SNDRV_PCM_INFO_MMAP|
85 SNDRV_PCM_INFO_MMAP_VALID |
86 SNDRV_PCM_INFO_BLOCK_TRANSFER |
87 SNDRV_PCM_INFO_SYNC_START),
Vinod Kould927fda2011-01-04 20:16:32 +053088 .buffer_bytes_max = SST_MAX_BUFFER,
89 .period_bytes_min = SST_MIN_PERIOD_BYTES,
90 .period_bytes_max = SST_MAX_PERIOD_BYTES,
91 .periods_min = SST_MIN_PERIODS,
92 .periods_max = SST_MAX_PERIODS,
93 .fifo_size = SST_FIFO_SIZE,
94};
95
Vinod Koul61b165c2014-06-13 18:03:56 +053096static struct sst_dev_stream_map dpcm_strm_map[] = {
97 {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, /* Reserved, not in use */
98 {MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA1_IN, SST_TASK_ID_MEDIA, 0},
99 {MERR_DPCM_COMPR, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA0_IN, SST_TASK_ID_MEDIA, 0},
100 {MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_CAPTURE, PIPE_PCM1_OUT, SST_TASK_ID_MEDIA, 0},
Pierre-Louis Bossart8788f832015-12-17 20:35:44 -0600101 {MERR_DPCM_DEEP_BUFFER, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA3_IN, SST_TASK_ID_MEDIA, 0},
Vinod Koul61b165c2014-06-13 18:03:56 +0530102};
103
Vinod Koulc82351d2014-10-15 20:12:59 +0530104static int sst_media_digital_mute(struct snd_soc_dai *dai, int mute, int stream)
Vinod Kould927fda2011-01-04 20:16:32 +0530105{
Vinod Koulc82351d2014-10-15 20:12:59 +0530106
107 return sst_send_pipe_gains(dai, stream, mute);
108}
Harsha Priya5c685362011-01-11 14:50:35 +0530109
Vinod Kould927fda2011-01-04 20:16:32 +0530110/* helper functions */
Vinod Koul4496ffa2014-05-05 14:27:49 +0530111void sst_set_stream_status(struct sst_runtime_stream *stream,
Harsha Priya5c685362011-01-11 14:50:35 +0530112 int state)
113{
Lu Guanqund89b0a12011-04-08 15:38:48 +0800114 unsigned long flags;
115 spin_lock_irqsave(&stream->status_lock, flags);
Harsha Priya5c685362011-01-11 14:50:35 +0530116 stream->stream_status = state;
Lu Guanqund89b0a12011-04-08 15:38:48 +0800117 spin_unlock_irqrestore(&stream->status_lock, flags);
Harsha Priya5c685362011-01-11 14:50:35 +0530118}
119
120static inline int sst_get_stream_status(struct sst_runtime_stream *stream)
121{
122 int state;
Lu Guanqund89b0a12011-04-08 15:38:48 +0800123 unsigned long flags;
Harsha Priya5c685362011-01-11 14:50:35 +0530124
Lu Guanqund89b0a12011-04-08 15:38:48 +0800125 spin_lock_irqsave(&stream->status_lock, flags);
Harsha Priya5c685362011-01-11 14:50:35 +0530126 state = stream->stream_status;
Lu Guanqund89b0a12011-04-08 15:38:48 +0800127 spin_unlock_irqrestore(&stream->status_lock, flags);
Harsha Priya5c685362011-01-11 14:50:35 +0530128 return state;
129}
130
Vinod Koula870cdc2014-06-13 18:03:55 +0530131static void sst_fill_alloc_params(struct snd_pcm_substream *substream,
132 struct snd_sst_alloc_params_ext *alloc_param)
Harsha Priya5c685362011-01-11 14:50:35 +0530133{
Vinod Koula870cdc2014-06-13 18:03:55 +0530134 unsigned int channels;
135 snd_pcm_uframes_t period_size;
136 ssize_t periodbytes;
137 ssize_t buffer_bytes = snd_pcm_lib_buffer_bytes(substream);
Takashi Iwai846b0dc2021-08-19 17:29:45 +0200138 u32 buffer_addr = virt_to_phys(substream->runtime->dma_area);
Harsha Priya5c685362011-01-11 14:50:35 +0530139
Vinod Koula870cdc2014-06-13 18:03:55 +0530140 channels = substream->runtime->channels;
141 period_size = substream->runtime->period_size;
142 periodbytes = samples_to_bytes(substream->runtime, period_size);
143 alloc_param->ring_buf_info[0].addr = buffer_addr;
144 alloc_param->ring_buf_info[0].size = buffer_bytes;
145 alloc_param->sg_count = 1;
146 alloc_param->reserved = 0;
147 alloc_param->frag_size = periodbytes * channels;
148
149}
150static void sst_fill_pcm_params(struct snd_pcm_substream *substream,
151 struct snd_sst_stream_params *param)
152{
153 param->uc.pcm_params.num_chan = (u8) substream->runtime->channels;
154 param->uc.pcm_params.pcm_wd_sz = substream->runtime->sample_bits;
155 param->uc.pcm_params.sfreq = substream->runtime->rate;
156
157 /* PCM stream via ALSA interface */
158 param->uc.pcm_params.use_offload_path = 0;
159 param->uc.pcm_params.reserved2 = 0;
160 memset(param->uc.pcm_params.channel_map, 0, sizeof(u8));
161
162}
Vinod Koul61b165c2014-06-13 18:03:56 +0530163
164static int sst_get_stream_mapping(int dev, int sdev, int dir,
165 struct sst_dev_stream_map *map, int size)
Vinod Koula870cdc2014-06-13 18:03:55 +0530166{
Vinod Koul61b165c2014-06-13 18:03:56 +0530167 int i;
168
169 if (map == NULL)
170 return -EINVAL;
171
172
173 /* index 0 is not used in stream map */
174 for (i = 1; i < size; i++) {
175 if ((map[i].dev_num == dev) && (map[i].direction == dir))
176 return i;
177 }
178 return 0;
179}
180
181int sst_fill_stream_params(void *substream,
182 const struct sst_data *ctx, struct snd_sst_params *str_params, bool is_compress)
183{
184 int map_size;
185 int index;
186 struct sst_dev_stream_map *map;
Vinod Koula870cdc2014-06-13 18:03:55 +0530187 struct snd_pcm_substream *pstream = NULL;
188 struct snd_compr_stream *cstream = NULL;
189
Vinod Koul61b165c2014-06-13 18:03:56 +0530190 map = ctx->pdata->pdev_strm_map;
191 map_size = ctx->pdata->strm_map_size;
192
Vinod Koula870cdc2014-06-13 18:03:55 +0530193 if (is_compress == true)
194 cstream = (struct snd_compr_stream *)substream;
195 else
196 pstream = (struct snd_pcm_substream *)substream;
197
198 str_params->stream_type = SST_STREAM_TYPE_MUSIC;
199
200 /* For pcm streams */
Vinod Koul61b165c2014-06-13 18:03:56 +0530201 if (pstream) {
202 index = sst_get_stream_mapping(pstream->pcm->device,
203 pstream->number, pstream->stream,
204 map, map_size);
205 if (index <= 0)
206 return -EINVAL;
Vinod Koula870cdc2014-06-13 18:03:55 +0530207
Vinod Koul61b165c2014-06-13 18:03:56 +0530208 str_params->stream_id = index;
209 str_params->device_type = map[index].device_id;
210 str_params->task = map[index].task_id;
211
212 str_params->ops = (u8)pstream->stream;
213 }
214
215 if (cstream) {
216 index = sst_get_stream_mapping(cstream->device->device,
217 0, cstream->direction,
218 map, map_size);
219 if (index <= 0)
220 return -EINVAL;
221 str_params->stream_id = index;
222 str_params->device_type = map[index].device_id;
223 str_params->task = map[index].task_id;
224
225 str_params->ops = (u8)cstream->direction;
226 }
Vinod Koula870cdc2014-06-13 18:03:55 +0530227 return 0;
Harsha Priya5c685362011-01-11 14:50:35 +0530228}
229
Vinod Koula870cdc2014-06-13 18:03:55 +0530230static int sst_platform_alloc_stream(struct snd_pcm_substream *substream,
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530231 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530232{
233 struct sst_runtime_stream *stream =
234 substream->runtime->private_data;
Vinod Koula870cdc2014-06-13 18:03:55 +0530235 struct snd_sst_stream_params param = {{{0,},},};
236 struct snd_sst_params str_params = {0};
237 struct snd_sst_alloc_params_ext alloc_params = {0};
238 int ret_val = 0;
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530239 struct sst_data *ctx = snd_soc_dai_get_drvdata(dai);
Vinod Kould927fda2011-01-04 20:16:32 +0530240
241 /* set codec params and inform SST driver the same */
Harsha Priya5c685362011-01-11 14:50:35 +0530242 sst_fill_pcm_params(substream, &param);
Vinod Koula870cdc2014-06-13 18:03:55 +0530243 sst_fill_alloc_params(substream, &alloc_params);
Vinod Kould927fda2011-01-04 20:16:32 +0530244 str_params.sparams = param;
Vinod Koula870cdc2014-06-13 18:03:55 +0530245 str_params.aparams = alloc_params;
246 str_params.codec = SST_CODEC_TYPE_PCM;
247
248 /* fill the device type and stream id to pass to SST driver */
Vinod Koul61b165c2014-06-13 18:03:56 +0530249 ret_val = sst_fill_stream_params(substream, ctx, &str_params, false);
Vinod Kould927fda2011-01-04 20:16:32 +0530250 if (ret_val < 0)
251 return ret_val;
252
Vinod Koula870cdc2014-06-13 18:03:55 +0530253 stream->stream_info.str_id = str_params.stream_id;
254
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530255 ret_val = stream->ops->open(sst->dev, &str_params);
Vinod Koula870cdc2014-06-13 18:03:55 +0530256 if (ret_val <= 0)
257 return ret_val;
258
259
Vinod Kould927fda2011-01-04 20:16:32 +0530260 return ret_val;
261}
262
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530263static void sst_period_elapsed(void *arg)
Vinod Kould927fda2011-01-04 20:16:32 +0530264{
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530265 struct snd_pcm_substream *substream = arg;
Vinod Kould927fda2011-01-04 20:16:32 +0530266 struct sst_runtime_stream *stream;
Harsha Priya5c685362011-01-11 14:50:35 +0530267 int status;
Vinod Kould927fda2011-01-04 20:16:32 +0530268
269 if (!substream || !substream->runtime)
270 return;
271 stream = substream->runtime->private_data;
272 if (!stream)
273 return;
Harsha Priya5c685362011-01-11 14:50:35 +0530274 status = sst_get_stream_status(stream);
275 if (status != SST_PLATFORM_RUNNING)
Vinod Kould927fda2011-01-04 20:16:32 +0530276 return;
Vinod Kould927fda2011-01-04 20:16:32 +0530277 snd_pcm_period_elapsed(substream);
Vinod Kould927fda2011-01-04 20:16:32 +0530278}
279
280static int sst_platform_init_stream(struct snd_pcm_substream *substream)
281{
282 struct sst_runtime_stream *stream =
283 substream->runtime->private_data;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530284 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530285 int ret_val;
286
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530287 dev_dbg(rtd->dev, "setting buffer ptr param\n");
Harsha Priya5c685362011-01-11 14:50:35 +0530288 sst_set_stream_status(stream, SST_PLATFORM_INIT);
Vinod Kould927fda2011-01-04 20:16:32 +0530289 stream->stream_info.period_elapsed = sst_period_elapsed;
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530290 stream->stream_info.arg = substream;
Vinod Kould927fda2011-01-04 20:16:32 +0530291 stream->stream_info.buffer_ptr = 0;
292 stream->stream_info.sfreq = substream->runtime->rate;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530293 ret_val = stream->ops->stream_init(sst->dev, &stream->stream_info);
Vinod Kould927fda2011-01-04 20:16:32 +0530294 if (ret_val)
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530295 dev_err(rtd->dev, "control_set ret error %d\n", ret_val);
Vinod Kould927fda2011-01-04 20:16:32 +0530296 return ret_val;
297
298}
Vinod Kould927fda2011-01-04 20:16:32 +0530299
Vinod Koul01213272014-09-19 16:46:03 +0530300static int power_up_sst(struct sst_runtime_stream *stream)
301{
302 return stream->ops->power(sst->dev, true);
303}
304
305static void power_down_sst(struct sst_runtime_stream *stream)
306{
307 stream->ops->power(sst->dev, false);
308}
309
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530310static int sst_media_open(struct snd_pcm_substream *substream,
311 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530312{
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530313 int ret_val = 0;
Lu Guanqun22be5042011-09-06 15:21:38 +0800314 struct snd_pcm_runtime *runtime = substream->runtime;
Vinod Kould927fda2011-01-04 20:16:32 +0530315 struct sst_runtime_stream *stream;
Lu Guanqun22be5042011-09-06 15:21:38 +0800316
Vinod Kould927fda2011-01-04 20:16:32 +0530317 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
318 if (!stream)
319 return -ENOMEM;
Vinod Kould927fda2011-01-04 20:16:32 +0530320 spin_lock_init(&stream->status_lock);
Vinod Koul03c33042011-12-05 19:13:41 +0530321
322 /* get the sst ops */
323 mutex_lock(&sst_lock);
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530324 if (!sst ||
325 !try_module_get(sst->dev->driver->owner)) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530326 dev_err(dai->dev, "no device available to run\n");
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530327 ret_val = -ENODEV;
328 goto out_ops;
Vinod Koul03c33042011-12-05 19:13:41 +0530329 }
330 stream->ops = sst->ops;
331 mutex_unlock(&sst_lock);
332
Vinod Kould927fda2011-01-04 20:16:32 +0530333 stream->stream_info.str_id = 0;
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530334
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530335 stream->stream_info.arg = substream;
Vinod Kould927fda2011-01-04 20:16:32 +0530336 /* allocate memory for SST API set */
Vinod Kould927fda2011-01-04 20:16:32 +0530337 runtime->private_data = stream;
Lu Guanqun283e42e2011-09-06 15:21:43 +0800338
Vinod Koul01213272014-09-19 16:46:03 +0530339 ret_val = power_up_sst(stream);
340 if (ret_val < 0)
Dinghao Liu9a9fca92020-08-13 16:41:10 +0800341 goto out_power_up;
Vinod Koul01213272014-09-19 16:46:03 +0530342
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530343 /* Make sure, that the period size is always even */
344 snd_pcm_hw_constraint_step(substream->runtime, 0,
345 SNDRV_PCM_HW_PARAM_PERIODS, 2);
346
347 return snd_pcm_hw_constraint_integer(runtime,
348 SNDRV_PCM_HW_PARAM_PERIODS);
349out_ops:
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530350 mutex_unlock(&sst_lock);
Dinghao Liu9a9fca92020-08-13 16:41:10 +0800351out_power_up:
352 kfree(stream);
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530353 return ret_val;
Vinod Kould927fda2011-01-04 20:16:32 +0530354}
355
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530356static void sst_media_close(struct snd_pcm_substream *substream,
357 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530358{
359 struct sst_runtime_stream *stream;
Vinod Koul7d7c80f2016-12-08 23:01:35 +0530360 int str_id;
Vinod Kould927fda2011-01-04 20:16:32 +0530361
Vinod Kould927fda2011-01-04 20:16:32 +0530362 stream = substream->runtime->private_data;
Vinod Koul01213272014-09-19 16:46:03 +0530363 power_down_sst(stream);
364
Vinod Kould927fda2011-01-04 20:16:32 +0530365 str_id = stream->stream_info.str_id;
Vinod Kould927fda2011-01-04 20:16:32 +0530366 if (str_id)
Vinod Koul7d7c80f2016-12-08 23:01:35 +0530367 stream->ops->close(sst->dev, str_id);
Vinod Koul03c33042011-12-05 19:13:41 +0530368 module_put(sst->dev->driver->owner);
Vinod Kould927fda2011-01-04 20:16:32 +0530369 kfree(stream);
Vinod Koul61b165c2014-06-13 18:03:56 +0530370}
371
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530372static int sst_media_prepare(struct snd_pcm_substream *substream,
373 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530374{
375 struct sst_runtime_stream *stream;
376 int ret_val = 0, str_id;
377
Vinod Kould927fda2011-01-04 20:16:32 +0530378 stream = substream->runtime->private_data;
379 str_id = stream->stream_info.str_id;
380 if (stream->stream_info.str_id) {
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530381 ret_val = stream->ops->stream_drop(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530382 return ret_val;
383 }
384
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530385 ret_val = sst_platform_alloc_stream(substream, dai);
Vinod Koula870cdc2014-06-13 18:03:55 +0530386 if (ret_val <= 0)
Vinod Kould927fda2011-01-04 20:16:32 +0530387 return ret_val;
388 snprintf(substream->pcm->id, sizeof(substream->pcm->id),
389 "%d", stream->stream_info.str_id);
390
391 ret_val = sst_platform_init_stream(substream);
392 if (ret_val)
393 return ret_val;
394 substream->runtime->hw.info = SNDRV_PCM_INFO_BLOCK_TRANSFER;
395 return ret_val;
396}
397
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530398static int sst_media_hw_params(struct snd_pcm_substream *substream,
399 struct snd_pcm_hw_params *params,
400 struct snd_soc_dai *dai)
401{
Kangjie Lu27657a62018-12-25 20:29:48 -0600402 int ret;
403
404 ret =
405 snd_pcm_lib_malloc_pages(substream,
406 params_buffer_bytes(params));
407 if (ret)
408 return ret;
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530409 memset(substream->runtime->dma_area, 0, params_buffer_bytes(params));
410 return 0;
411}
412
413static int sst_media_hw_free(struct snd_pcm_substream *substream,
414 struct snd_soc_dai *dai)
415{
416 return snd_pcm_lib_free_pages(substream);
417}
418
Vinod Koulc82351d2014-10-15 20:12:59 +0530419static int sst_enable_ssp(struct snd_pcm_substream *substream,
420 struct snd_soc_dai *dai)
421{
422 int ret = 0;
423
424 if (!dai->active) {
425 ret = sst_handle_vb_timer(dai, true);
Vinod Koul711bc942015-05-06 22:06:42 +0530426 sst_fill_ssp_defaults(dai);
Vinod Koulc82351d2014-10-15 20:12:59 +0530427 }
428 return ret;
429}
430
Vinod Koul711bc942015-05-06 22:06:42 +0530431static int sst_be_hw_params(struct snd_pcm_substream *substream,
432 struct snd_pcm_hw_params *params,
433 struct snd_soc_dai *dai)
434{
435 int ret = 0;
436
437 if (dai->active == 1)
438 ret = send_ssp_cmd(dai, dai->name, 1);
439 return ret;
440}
441
Vinod Koul0b44e342015-05-06 22:06:43 +0530442static int sst_set_format(struct snd_soc_dai *dai, unsigned int fmt)
443{
444 int ret = 0;
445
446 if (!dai->active)
447 return 0;
448
449 ret = sst_fill_ssp_config(dai, fmt);
450 if (ret < 0)
451 dev_err(dai->dev, "sst_set_format failed..\n");
452
453 return ret;
454}
455
Vinod Koul83f125e2015-05-06 22:06:44 +0530456static int sst_platform_set_ssp_slot(struct snd_soc_dai *dai,
457 unsigned int tx_mask, unsigned int rx_mask,
458 int slots, int slot_width) {
459 int ret = 0;
460
461 if (!dai->active)
462 return ret;
463
464 ret = sst_fill_ssp_slot(dai, tx_mask, rx_mask, slots, slot_width);
465 if (ret < 0)
466 dev_err(dai->dev, "sst_fill_ssp_slot failed..%d\n", ret);
467
468 return ret;
469}
470
Vinod Koulc82351d2014-10-15 20:12:59 +0530471static void sst_disable_ssp(struct snd_pcm_substream *substream,
472 struct snd_soc_dai *dai)
473{
474 if (!dai->active) {
475 send_ssp_cmd(dai, dai->name, 0);
476 sst_handle_vb_timer(dai, false);
477 }
478}
479
Gustavo A. R. Silvac115a312017-07-13 01:26:06 -0500480static const struct snd_soc_dai_ops sst_media_dai_ops = {
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530481 .startup = sst_media_open,
482 .shutdown = sst_media_close,
483 .prepare = sst_media_prepare,
484 .hw_params = sst_media_hw_params,
485 .hw_free = sst_media_hw_free,
Vinod Koulc82351d2014-10-15 20:12:59 +0530486 .mute_stream = sst_media_digital_mute,
487};
488
Gustavo A. R. Silvac115a312017-07-13 01:26:06 -0500489static const struct snd_soc_dai_ops sst_compr_dai_ops = {
Vinod Koulc82351d2014-10-15 20:12:59 +0530490 .mute_stream = sst_media_digital_mute,
491};
492
Gustavo A. R. Silvac115a312017-07-13 01:26:06 -0500493static const struct snd_soc_dai_ops sst_be_dai_ops = {
Vinod Koulc82351d2014-10-15 20:12:59 +0530494 .startup = sst_enable_ssp,
Vinod Koul711bc942015-05-06 22:06:42 +0530495 .hw_params = sst_be_hw_params,
Vinod Koul0b44e342015-05-06 22:06:43 +0530496 .set_fmt = sst_set_format,
Vinod Koul83f125e2015-05-06 22:06:44 +0530497 .set_tdm_slot = sst_platform_set_ssp_slot,
Vinod Koulc82351d2014-10-15 20:12:59 +0530498 .shutdown = sst_disable_ssp,
499};
500
501static struct snd_soc_dai_driver sst_platform_dai[] = {
502{
503 .name = "media-cpu-dai",
504 .ops = &sst_media_dai_ops,
505 .playback = {
506 .stream_name = "Headset Playback",
507 .channels_min = SST_STEREO,
508 .channels_max = SST_STEREO,
509 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
Hans de Goede42ccf592021-03-24 14:27:10 +0100510 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Vinod Koulc82351d2014-10-15 20:12:59 +0530511 },
512 .capture = {
513 .stream_name = "Headset Capture",
514 .channels_min = 1,
515 .channels_max = 2,
516 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
Hans de Goede42ccf592021-03-24 14:27:10 +0100517 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Vinod Koulc82351d2014-10-15 20:12:59 +0530518 },
519},
520{
Pierre-Louis Bossart8788f832015-12-17 20:35:44 -0600521 .name = "deepbuffer-cpu-dai",
522 .ops = &sst_media_dai_ops,
523 .playback = {
524 .stream_name = "Deepbuffer Playback",
525 .channels_min = SST_STEREO,
526 .channels_max = SST_STEREO,
527 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
Hans de Goede42ccf592021-03-24 14:27:10 +0100528 .formats = SNDRV_PCM_FMTBIT_S16_LE,
Pierre-Louis Bossart8788f832015-12-17 20:35:44 -0600529 },
530},
531{
Vinod Koulc82351d2014-10-15 20:12:59 +0530532 .name = "compress-cpu-dai",
Jie Yang6f0c4222015-10-13 23:41:00 +0800533 .compress_new = snd_soc_new_compress,
Vinod Koulc82351d2014-10-15 20:12:59 +0530534 .ops = &sst_compr_dai_ops,
535 .playback = {
536 .stream_name = "Compress Playback",
Pierre-Louis Bossart292d4202016-02-02 12:49:49 -0600537 .channels_min = 1,
Vinod Koulc82351d2014-10-15 20:12:59 +0530538 },
539},
540/* BE CPU Dais */
541{
542 .name = "ssp0-port",
543 .ops = &sst_be_dai_ops,
544 .playback = {
545 .stream_name = "ssp0 Tx",
546 .channels_min = SST_STEREO,
547 .channels_max = SST_STEREO,
548 .rates = SNDRV_PCM_RATE_48000,
549 .formats = SNDRV_PCM_FMTBIT_S16_LE,
550 },
551 .capture = {
552 .stream_name = "ssp0 Rx",
553 .channels_min = SST_STEREO,
554 .channels_max = SST_STEREO,
555 .rates = SNDRV_PCM_RATE_48000,
556 .formats = SNDRV_PCM_FMTBIT_S16_LE,
557 },
558},
559{
560 .name = "ssp1-port",
561 .ops = &sst_be_dai_ops,
562 .playback = {
563 .stream_name = "ssp1 Tx",
564 .channels_min = SST_STEREO,
565 .channels_max = SST_STEREO,
566 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
567 .formats = SNDRV_PCM_FMTBIT_S16_LE,
568 },
569 .capture = {
570 .stream_name = "ssp1 Rx",
571 .channels_min = SST_STEREO,
572 .channels_max = SST_STEREO,
573 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
574 .formats = SNDRV_PCM_FMTBIT_S16_LE,
575 },
576},
577{
578 .name = "ssp2-port",
579 .ops = &sst_be_dai_ops,
580 .playback = {
581 .stream_name = "ssp2 Tx",
582 .channels_min = SST_STEREO,
583 .channels_max = SST_STEREO,
584 .rates = SNDRV_PCM_RATE_48000,
585 .formats = SNDRV_PCM_FMTBIT_S16_LE,
586 },
587 .capture = {
588 .stream_name = "ssp2 Rx",
589 .channels_min = SST_STEREO,
590 .channels_max = SST_STEREO,
591 .rates = SNDRV_PCM_RATE_48000,
592 .formats = SNDRV_PCM_FMTBIT_S16_LE,
593 },
594},
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530595};
596
597static int sst_platform_open(struct snd_pcm_substream *substream)
598{
599 struct snd_pcm_runtime *runtime;
600
601 if (substream->pcm->internal)
602 return 0;
603
604 runtime = substream->runtime;
605 runtime->hw = sst_platform_pcm_hw;
606 return 0;
607}
608
Vinod Koul5106f5a2014-05-15 21:38:15 +0530609static int sst_platform_pcm_trigger(struct snd_pcm_substream *substream,
Vinod Kould927fda2011-01-04 20:16:32 +0530610 int cmd)
611{
612 int ret_val = 0, str_id;
613 struct sst_runtime_stream *stream;
Subhransu S. Prusty5981c2d2014-08-04 15:04:20 +0530614 int status;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530615 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530616
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530617 dev_dbg(rtd->dev, "sst_platform_pcm_trigger called\n");
Vinod Kould2b16b82014-09-09 15:11:24 +0530618 if (substream->pcm->internal)
619 return 0;
Vinod Kould927fda2011-01-04 20:16:32 +0530620 stream = substream->runtime->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530621 str_id = stream->stream_info.str_id;
Vinod Kould927fda2011-01-04 20:16:32 +0530622 switch (cmd) {
623 case SNDRV_PCM_TRIGGER_START:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530624 dev_dbg(rtd->dev, "sst: Trigger Start\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530625 status = SST_PLATFORM_RUNNING;
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530626 stream->stream_info.arg = substream;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530627 ret_val = stream->ops->stream_start(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530628 break;
629 case SNDRV_PCM_TRIGGER_STOP:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530630 dev_dbg(rtd->dev, "sst: in stop\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530631 status = SST_PLATFORM_DROPPED;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530632 ret_val = stream->ops->stream_drop(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530633 break;
634 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Vinod Koulfc9406a2015-02-12 09:59:57 +0530635 case SNDRV_PCM_TRIGGER_SUSPEND:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530636 dev_dbg(rtd->dev, "sst: in pause\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530637 status = SST_PLATFORM_PAUSED;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530638 ret_val = stream->ops->stream_pause(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530639 break;
640 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Vinod Koulfc9406a2015-02-12 09:59:57 +0530641 case SNDRV_PCM_TRIGGER_RESUME:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530642 dev_dbg(rtd->dev, "sst: in pause release\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530643 status = SST_PLATFORM_RUNNING;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530644 ret_val = stream->ops->stream_pause_release(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530645 break;
646 default:
Harsha Priyaa2117012011-01-11 14:50:59 +0530647 return -EINVAL;
Vinod Kould927fda2011-01-04 20:16:32 +0530648 }
Subhransu S. Prusty5981c2d2014-08-04 15:04:20 +0530649
Harsha Priyaa2117012011-01-11 14:50:59 +0530650 if (!ret_val)
651 sst_set_stream_status(stream, status);
652
Vinod Kould927fda2011-01-04 20:16:32 +0530653 return ret_val;
654}
655
656
Vinod Koul5106f5a2014-05-15 21:38:15 +0530657static snd_pcm_uframes_t sst_platform_pcm_pointer
Vinod Kould927fda2011-01-04 20:16:32 +0530658 (struct snd_pcm_substream *substream)
659{
660 struct sst_runtime_stream *stream;
Harsha Priya5c685362011-01-11 14:50:35 +0530661 int ret_val, status;
Vinod Kould927fda2011-01-04 20:16:32 +0530662 struct pcm_stream_info *str_info;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530663 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530664
Vinod Kould927fda2011-01-04 20:16:32 +0530665 stream = substream->runtime->private_data;
Harsha Priya5c685362011-01-11 14:50:35 +0530666 status = sst_get_stream_status(stream);
667 if (status == SST_PLATFORM_INIT)
Vinod Kould927fda2011-01-04 20:16:32 +0530668 return 0;
Vinod Kould927fda2011-01-04 20:16:32 +0530669 str_info = &stream->stream_info;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530670 ret_val = stream->ops->stream_read_tstamp(sst->dev, str_info);
Vinod Kould927fda2011-01-04 20:16:32 +0530671 if (ret_val) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530672 dev_err(rtd->dev, "sst: error code = %d\n", ret_val);
Vinod Kould927fda2011-01-04 20:16:32 +0530673 return ret_val;
674 }
Vinod Koul2a635822014-06-13 18:03:53 +0530675 substream->runtime->delay = str_info->pcm_delay;
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530676 return str_info->buffer_ptr;
xingchao9ab88432011-04-27 16:58:54 -0400677}
678
Julia Lawall115c7252016-09-08 02:35:23 +0200679static const struct snd_pcm_ops sst_platform_ops = {
Vinod Koul5106f5a2014-05-15 21:38:15 +0530680 .open = sst_platform_open,
Vinod Kould927fda2011-01-04 20:16:32 +0530681 .ioctl = snd_pcm_lib_ioctl,
Vinod Koul5106f5a2014-05-15 21:38:15 +0530682 .trigger = sst_platform_pcm_trigger,
683 .pointer = sst_platform_pcm_pointer,
Vinod Kould927fda2011-01-04 20:16:32 +0530684};
685
Axel Lin8faa8c12011-12-13 17:13:45 +0800686static int sst_pcm_new(struct snd_soc_pcm_runtime *rtd)
Vinod Kould927fda2011-01-04 20:16:32 +0530687{
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530688 struct snd_soc_dai *dai = rtd->cpu_dai;
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100689 struct snd_pcm *pcm = rtd->pcm;
Vinod Kould927fda2011-01-04 20:16:32 +0530690 int retval = 0;
691
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530692 if (dai->driver->playback.channels_min ||
693 dai->driver->capture.channels_min) {
Vinod Kould927fda2011-01-04 20:16:32 +0530694 retval = snd_pcm_lib_preallocate_pages_for_all(pcm,
695 SNDRV_DMA_TYPE_CONTINUOUS,
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530696 snd_dma_continuous_data(GFP_DMA),
Vinod Kould927fda2011-01-04 20:16:32 +0530697 SST_MIN_BUFFER, SST_MAX_BUFFER);
698 if (retval) {
Colin Ian King3c0a98c2017-05-10 11:29:40 +0100699 dev_err(rtd->dev, "dma buffer allocation failure\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530700 return retval;
701 }
702 }
Vinod Kould927fda2011-01-04 20:16:32 +0530703 return retval;
704}
Vinod Koulc514a912012-08-16 17:10:42 +0530705
Vinod Kould8499c92014-08-04 15:15:55 +0530706static int sst_soc_probe(struct snd_soc_platform *platform)
707{
Vinod Koul54e6bec2015-02-12 09:59:58 +0530708 struct sst_data *drv = dev_get_drvdata(platform->dev);
709
710 drv->soc_card = platform->component.card;
Vinod Kould8499c92014-08-04 15:15:55 +0530711 return sst_dsp_init_v2_dpcm(platform);
712}
713
Bhumika Goyal80cc4df2017-08-14 17:08:41 +0530714static const struct snd_soc_platform_driver sst_soc_platform_drv = {
Vinod Kould8499c92014-08-04 15:15:55 +0530715 .probe = sst_soc_probe,
Vinod Kould927fda2011-01-04 20:16:32 +0530716 .ops = &sst_platform_ops,
Vinod Koulc514a912012-08-16 17:10:42 +0530717 .compr_ops = &sst_platform_compr_ops,
Vinod Kould927fda2011-01-04 20:16:32 +0530718 .pcm_new = sst_pcm_new,
Vinod Kould927fda2011-01-04 20:16:32 +0530719};
720
Vinod Koul2b4c78d2014-05-05 22:19:25 +0530721static const struct snd_soc_component_driver sst_component = {
722 .name = "sst",
723};
724
725
Vinod Kould927fda2011-01-04 20:16:32 +0530726static int sst_platform_probe(struct platform_device *pdev)
727{
Vinod Koul61b165c2014-06-13 18:03:56 +0530728 struct sst_data *drv;
Vinod Kould927fda2011-01-04 20:16:32 +0530729 int ret;
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530730 struct sst_platform_data *pdata;
Vinod Kould927fda2011-01-04 20:16:32 +0530731
Vinod Koul61b165c2014-06-13 18:03:56 +0530732 drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
Subhransu S. Prusty19a23a52014-07-30 18:36:00 +0530733 if (drv == NULL) {
Vinod Koul61b165c2014-06-13 18:03:56 +0530734 return -ENOMEM;
735 }
736
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530737 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
738 if (pdata == NULL) {
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530739 return -ENOMEM;
740 }
741
Vinod Koul61b165c2014-06-13 18:03:56 +0530742 pdata->pdev_strm_map = dpcm_strm_map;
743 pdata->strm_map_size = ARRAY_SIZE(dpcm_strm_map);
744 drv->pdata = pdata;
Subhransu S. Prusty3172fcd2014-10-30 16:21:44 +0530745 drv->pdev = pdev;
Vinod Koul61b165c2014-06-13 18:03:56 +0530746 mutex_init(&drv->lock);
747 dev_set_drvdata(&pdev->dev, drv);
748
Vinod Kould927fda2011-01-04 20:16:32 +0530749 ret = snd_soc_register_platform(&pdev->dev, &sst_soc_platform_drv);
750 if (ret) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530751 dev_err(&pdev->dev, "registering soc platform failed\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530752 return ret;
753 }
Harsha Priya5c685362011-01-11 14:50:35 +0530754
Kuninori Morimotob1c36862013-03-21 03:32:50 -0700755 ret = snd_soc_register_component(&pdev->dev, &sst_component,
Vinod Kould927fda2011-01-04 20:16:32 +0530756 sst_platform_dai, ARRAY_SIZE(sst_platform_dai));
757 if (ret) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530758 dev_err(&pdev->dev, "registering cpu dais failed\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530759 snd_soc_unregister_platform(&pdev->dev);
760 }
761 return ret;
762}
763
764static int sst_platform_remove(struct platform_device *pdev)
765{
766
Kuninori Morimotob1c36862013-03-21 03:32:50 -0700767 snd_soc_unregister_component(&pdev->dev);
Vinod Kould927fda2011-01-04 20:16:32 +0530768 snd_soc_unregister_platform(&pdev->dev);
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530769 dev_dbg(&pdev->dev, "sst_platform_remove success\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530770 return 0;
771}
772
Vinod Koul54e6bec2015-02-12 09:59:58 +0530773#ifdef CONFIG_PM_SLEEP
774
775static int sst_soc_prepare(struct device *dev)
776{
777 struct sst_data *drv = dev_get_drvdata(dev);
Mengdong Lin1a497982015-11-18 02:34:11 -0500778 struct snd_soc_pcm_runtime *rtd;
Vinod Koul54e6bec2015-02-12 09:59:58 +0530779
Takashi Iwai2fc995a2016-11-25 16:54:06 +0100780 if (!drv->soc_card)
781 return 0;
782
Vinod Koul54e6bec2015-02-12 09:59:58 +0530783 /* suspend all pcms first */
784 snd_soc_suspend(drv->soc_card->dev);
785 snd_soc_poweroff(drv->soc_card->dev);
786
787 /* set the SSPs to idle */
Mengdong Lin1a497982015-11-18 02:34:11 -0500788 list_for_each_entry(rtd, &drv->soc_card->rtd_list, list) {
789 struct snd_soc_dai *dai = rtd->cpu_dai;
Vinod Koul54e6bec2015-02-12 09:59:58 +0530790
791 if (dai->active) {
792 send_ssp_cmd(dai, dai->name, 0);
793 sst_handle_vb_timer(dai, false);
794 }
795 }
796
797 return 0;
798}
799
800static void sst_soc_complete(struct device *dev)
801{
802 struct sst_data *drv = dev_get_drvdata(dev);
Mengdong Lin1a497982015-11-18 02:34:11 -0500803 struct snd_soc_pcm_runtime *rtd;
Vinod Koul54e6bec2015-02-12 09:59:58 +0530804
Takashi Iwai2fc995a2016-11-25 16:54:06 +0100805 if (!drv->soc_card)
806 return;
807
Vinod Koul54e6bec2015-02-12 09:59:58 +0530808 /* restart SSPs */
Mengdong Lin1a497982015-11-18 02:34:11 -0500809 list_for_each_entry(rtd, &drv->soc_card->rtd_list, list) {
810 struct snd_soc_dai *dai = rtd->cpu_dai;
Vinod Koul54e6bec2015-02-12 09:59:58 +0530811
812 if (dai->active) {
813 sst_handle_vb_timer(dai, true);
814 send_ssp_cmd(dai, dai->name, 1);
815 }
816 }
817 snd_soc_resume(drv->soc_card->dev);
818}
819
820#else
821
822#define sst_soc_prepare NULL
823#define sst_soc_complete NULL
824
825#endif
826
827
828static const struct dev_pm_ops sst_platform_pm = {
829 .prepare = sst_soc_prepare,
830 .complete = sst_soc_complete,
831};
832
Vinod Kould927fda2011-01-04 20:16:32 +0530833static struct platform_driver sst_platform_driver = {
834 .driver = {
Mark Browna4b12992014-03-12 23:04:35 +0000835 .name = "sst-mfld-platform",
Vinod Koul54e6bec2015-02-12 09:59:58 +0530836 .pm = &sst_platform_pm,
Vinod Kould927fda2011-01-04 20:16:32 +0530837 },
838 .probe = sst_platform_probe,
839 .remove = sst_platform_remove,
840};
841
Axel Lin29515d62011-11-24 11:51:56 +0800842module_platform_driver(sst_platform_driver);
Vinod Kould927fda2011-01-04 20:16:32 +0530843
844MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver");
845MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
846MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
847MODULE_LICENSE("GPL v2");
Andy Shevchenko231a0912017-01-16 15:12:29 +0200848MODULE_ALIAS("platform:sst-atom-hifi2-platform");
Mark Browna4b12992014-03-12 23:04:35 +0000849MODULE_ALIAS("platform:sst-mfld-platform");