ASoC: intel: add support for specifying PCM format
[deliverable/linux.git] / sound / soc / intel / atom / sst-mfld-platform-pcm.c
CommitLineData
d927fdae 1/*
a4b12990 2 * sst_mfld_platform.c - Intel MID Platform driver
d927fdae 3 *
61b165ca 4 * Copyright (C) 2010-2014 Intel Corp
d927fdae
VK
5 * 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 *
d927fdae 18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
d927fdae
VK
19 */
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
22#include <linux/slab.h>
23#include <linux/io.h>
da155d5b 24#include <linux/module.h>
d927fdae
VK
25#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28#include <sound/soc.h>
c514a911 29#include <sound/compress_driver.h>
61b165ca 30#include <asm/platform_sst_audio.h>
a4b12990 31#include "sst-mfld-platform.h"
61b165ca 32#include "sst-atom-controls.h"
d927fdae 33
4b68b4e1 34struct sst_device *sst;
03c33042 35static DEFINE_MUTEX(sst_lock);
4b68b4e1 36extern struct snd_compr_ops sst_platform_compr_ops;
03c33042
VK
37
38int sst_register_dsp(struct sst_device *dev)
39{
656a22a1
TI
40 if (WARN_ON(!dev))
41 return -EINVAL;
03c33042
VK
42 if (!try_module_get(dev->dev->driver->owner))
43 return -ENODEV;
44 mutex_lock(&sst_lock);
45 if (sst) {
02024756 46 dev_err(dev->dev, "we already have a device %s\n", sst->name);
03c33042
VK
47 module_put(dev->dev->driver->owner);
48 mutex_unlock(&sst_lock);
49 return -EEXIST;
50 }
02024756 51 dev_dbg(dev->dev, "registering device %s\n", dev->name);
03c33042
VK
52 sst = dev;
53 mutex_unlock(&sst_lock);
54 return 0;
55}
56EXPORT_SYMBOL_GPL(sst_register_dsp);
57
58int sst_unregister_dsp(struct sst_device *dev)
59{
656a22a1
TI
60 if (WARN_ON(!dev))
61 return -EINVAL;
03c33042
VK
62 if (dev != sst)
63 return -EINVAL;
64
65 mutex_lock(&sst_lock);
66
67 if (!sst) {
68 mutex_unlock(&sst_lock);
69 return -EIO;
70 }
71
72 module_put(sst->dev->driver->owner);
02024756 73 dev_dbg(dev->dev, "unreg %s\n", sst->name);
03c33042
VK
74 sst = NULL;
75 mutex_unlock(&sst_lock);
76 return 0;
77}
78EXPORT_SYMBOL_GPL(sst_unregister_dsp);
79
d927fdae
VK
80static struct snd_pcm_hardware sst_platform_pcm_hw = {
81 .info = (SNDRV_PCM_INFO_INTERLEAVED |
82 SNDRV_PCM_INFO_DOUBLE |
83 SNDRV_PCM_INFO_PAUSE |
84 SNDRV_PCM_INFO_RESUME |
85 SNDRV_PCM_INFO_MMAP|
86 SNDRV_PCM_INFO_MMAP_VALID |
87 SNDRV_PCM_INFO_BLOCK_TRANSFER |
88 SNDRV_PCM_INFO_SYNC_START),
d927fdae
VK
89 .buffer_bytes_max = SST_MAX_BUFFER,
90 .period_bytes_min = SST_MIN_PERIOD_BYTES,
91 .period_bytes_max = SST_MAX_PERIOD_BYTES,
92 .periods_min = SST_MIN_PERIODS,
93 .periods_max = SST_MAX_PERIODS,
94 .fifo_size = SST_FIFO_SIZE,
95};
96
61b165ca
VK
97static struct sst_dev_stream_map dpcm_strm_map[] = {
98 {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, /* Reserved, not in use */
99 {MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA1_IN, SST_TASK_ID_MEDIA, 0},
100 {MERR_DPCM_COMPR, 0, SNDRV_PCM_STREAM_PLAYBACK, PIPE_MEDIA0_IN, SST_TASK_ID_MEDIA, 0},
101 {MERR_DPCM_AUDIO, 0, SNDRV_PCM_STREAM_CAPTURE, PIPE_PCM1_OUT, SST_TASK_ID_MEDIA, 0},
102};
103
c82351da 104static int sst_media_digital_mute(struct snd_soc_dai *dai, int mute, int stream)
d927fdae 105{
c82351da
VK
106
107 return sst_send_pipe_gains(dai, stream, mute);
108}
5c68536f 109
d927fdae 110/* helper functions */
4496ffab 111void sst_set_stream_status(struct sst_runtime_stream *stream,
5c68536f
HP
112 int state)
113{
d89b0a13
LG
114 unsigned long flags;
115 spin_lock_irqsave(&stream->status_lock, flags);
5c68536f 116 stream->stream_status = state;
d89b0a13 117 spin_unlock_irqrestore(&stream->status_lock, flags);
5c68536f
HP
118}
119
120static inline int sst_get_stream_status(struct sst_runtime_stream *stream)
121{
122 int state;
d89b0a13 123 unsigned long flags;
5c68536f 124
d89b0a13 125 spin_lock_irqsave(&stream->status_lock, flags);
5c68536f 126 state = stream->stream_status;
d89b0a13 127 spin_unlock_irqrestore(&stream->status_lock, flags);
5c68536f
HP
128 return state;
129}
130
a870cdce
VK
131static void sst_fill_alloc_params(struct snd_pcm_substream *substream,
132 struct snd_sst_alloc_params_ext *alloc_param)
133{
134 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);
138 u32 buffer_addr = virt_to_phys(substream->dma_buffer.area);
139
140 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}
5c68536f 150static void sst_fill_pcm_params(struct snd_pcm_substream *substream,
a870cdce 151 struct snd_sst_stream_params *param)
5c68536f 152{
a870cdce
VK
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;
5c68536f 156
a870cdce
VK
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}
61b165ca
VK
163
164static int sst_get_stream_mapping(int dev, int sdev, int dir,
165 struct sst_dev_stream_map *map, int size)
166{
167 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
a870cdce 181int sst_fill_stream_params(void *substream,
61b165ca 182 const struct sst_data *ctx, struct snd_sst_params *str_params, bool is_compress)
a870cdce 183{
61b165ca
VK
184 int map_size;
185 int index;
186 struct sst_dev_stream_map *map;
a870cdce
VK
187 struct snd_pcm_substream *pstream = NULL;
188 struct snd_compr_stream *cstream = NULL;
189
61b165ca
VK
190 map = ctx->pdata->pdev_strm_map;
191 map_size = ctx->pdata->strm_map_size;
192
a870cdce
VK
193 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 */
61b165ca
VK
201 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;
207
208 str_params->stream_id = index;
209 str_params->device_type = map[index].device_id;
210 str_params->task = map[index].task_id;
211
a870cdce 212 str_params->ops = (u8)pstream->stream;
61b165ca
VK
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;
a870cdce 224
61b165ca
VK
225 str_params->ops = (u8)cstream->direction;
226 }
a870cdce 227 return 0;
5c68536f
HP
228}
229
a870cdce 230static int sst_platform_alloc_stream(struct snd_pcm_substream *substream,
6df5d768 231 struct snd_soc_dai *dai)
d927fdae
VK
232{
233 struct sst_runtime_stream *stream =
234 substream->runtime->private_data;
a870cdce
VK
235 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;
6df5d768 239 struct sst_data *ctx = snd_soc_dai_get_drvdata(dai);
d927fdae
VK
240
241 /* set codec params and inform SST driver the same */
5c68536f 242 sst_fill_pcm_params(substream, &param);
a870cdce 243 sst_fill_alloc_params(substream, &alloc_params);
d927fdae 244 substream->runtime->dma_area = substream->dma_buffer.area;
d927fdae 245 str_params.sparams = param;
a870cdce
VK
246 str_params.aparams = alloc_params;
247 str_params.codec = SST_CODEC_TYPE_PCM;
248
249 /* fill the device type and stream id to pass to SST driver */
61b165ca 250 ret_val = sst_fill_stream_params(substream, ctx, &str_params, false);
d927fdae
VK
251 if (ret_val < 0)
252 return ret_val;
253
a870cdce
VK
254 stream->stream_info.str_id = str_params.stream_id;
255
b12b087c 256 ret_val = stream->ops->open(sst->dev, &str_params);
a870cdce
VK
257 if (ret_val <= 0)
258 return ret_val;
259
260
d927fdae
VK
261 return ret_val;
262}
263
9daa5bd3 264static void sst_period_elapsed(void *arg)
d927fdae 265{
9daa5bd3 266 struct snd_pcm_substream *substream = arg;
d927fdae 267 struct sst_runtime_stream *stream;
5c68536f 268 int status;
d927fdae
VK
269
270 if (!substream || !substream->runtime)
271 return;
272 stream = substream->runtime->private_data;
273 if (!stream)
274 return;
5c68536f
HP
275 status = sst_get_stream_status(stream);
276 if (status != SST_PLATFORM_RUNNING)
d927fdae 277 return;
d927fdae 278 snd_pcm_period_elapsed(substream);
d927fdae
VK
279}
280
281static int sst_platform_init_stream(struct snd_pcm_substream *substream)
282{
283 struct sst_runtime_stream *stream =
284 substream->runtime->private_data;
02024756 285 struct snd_soc_pcm_runtime *rtd = substream->private_data;
d927fdae
VK
286 int ret_val;
287
02024756 288 dev_dbg(rtd->dev, "setting buffer ptr param\n");
5c68536f 289 sst_set_stream_status(stream, SST_PLATFORM_INIT);
d927fdae 290 stream->stream_info.period_elapsed = sst_period_elapsed;
9daa5bd3 291 stream->stream_info.arg = substream;
d927fdae
VK
292 stream->stream_info.buffer_ptr = 0;
293 stream->stream_info.sfreq = substream->runtime->rate;
b12b087c 294 ret_val = stream->ops->stream_init(sst->dev, &stream->stream_info);
d927fdae 295 if (ret_val)
02024756 296 dev_err(rtd->dev, "control_set ret error %d\n", ret_val);
d927fdae
VK
297 return ret_val;
298
299}
d927fdae 300
0121327c
VK
301static int power_up_sst(struct sst_runtime_stream *stream)
302{
303 return stream->ops->power(sst->dev, true);
304}
305
306static void power_down_sst(struct sst_runtime_stream *stream)
307{
308 stream->ops->power(sst->dev, false);
309}
310
6cc0f4e6
VK
311static int sst_media_open(struct snd_pcm_substream *substream,
312 struct snd_soc_dai *dai)
d927fdae 313{
6cc0f4e6 314 int ret_val = 0;
22be504a 315 struct snd_pcm_runtime *runtime = substream->runtime;
d927fdae 316 struct sst_runtime_stream *stream;
22be504a 317
d927fdae
VK
318 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
319 if (!stream)
320 return -ENOMEM;
d927fdae 321 spin_lock_init(&stream->status_lock);
03c33042
VK
322
323 /* get the sst ops */
324 mutex_lock(&sst_lock);
6cc0f4e6
VK
325 if (!sst ||
326 !try_module_get(sst->dev->driver->owner)) {
02024756 327 dev_err(dai->dev, "no device available to run\n");
6cc0f4e6
VK
328 ret_val = -ENODEV;
329 goto out_ops;
d927fdae 330 }
03c33042
VK
331 stream->ops = sst->ops;
332 mutex_unlock(&sst_lock);
333
334 stream->stream_info.str_id = 0;
6cc0f4e6 335
9daa5bd3 336 stream->stream_info.arg = substream;
03c33042 337 /* allocate memory for SST API set */
d927fdae 338 runtime->private_data = stream;
283e42e0 339
0121327c
VK
340 ret_val = power_up_sst(stream);
341 if (ret_val < 0)
342 return ret_val;
343
6cc0f4e6
VK
344 /* Make sure, that the period size is always even */
345 snd_pcm_hw_constraint_step(substream->runtime, 0,
346 SNDRV_PCM_HW_PARAM_PERIODS, 2);
347
348 return snd_pcm_hw_constraint_integer(runtime,
349 SNDRV_PCM_HW_PARAM_PERIODS);
350out_ops:
351 kfree(stream);
352 mutex_unlock(&sst_lock);
353 return ret_val;
d927fdae
VK
354}
355
6cc0f4e6
VK
356static void sst_media_close(struct snd_pcm_substream *substream,
357 struct snd_soc_dai *dai)
d927fdae
VK
358{
359 struct sst_runtime_stream *stream;
360 int ret_val = 0, str_id;
361
d927fdae 362 stream = substream->runtime->private_data;
0121327c
VK
363 power_down_sst(stream);
364
d927fdae 365 str_id = stream->stream_info.str_id;
d927fdae 366 if (str_id)
b12b087c 367 ret_val = stream->ops->close(sst->dev, str_id);
03c33042 368 module_put(sst->dev->driver->owner);
d927fdae 369 kfree(stream);
61b165ca
VK
370}
371
6df5d768 372static inline unsigned int get_current_pipe_id(struct snd_soc_dai *dai,
61b165ca
VK
373 struct snd_pcm_substream *substream)
374{
6df5d768 375 struct sst_data *sst = snd_soc_dai_get_drvdata(dai);
61b165ca
VK
376 struct sst_dev_stream_map *map = sst->pdata->pdev_strm_map;
377 struct sst_runtime_stream *stream =
378 substream->runtime->private_data;
379 u32 str_id = stream->stream_info.str_id;
380 unsigned int pipe_id;
02024756 381
61b165ca
VK
382 pipe_id = map[str_id].device_id;
383
6df5d768 384 dev_dbg(dai->dev, "got pipe_id = %#x for str_id = %d\n",
02024756 385 pipe_id, str_id);
61b165ca 386 return pipe_id;
d927fdae
VK
387}
388
6cc0f4e6
VK
389static int sst_media_prepare(struct snd_pcm_substream *substream,
390 struct snd_soc_dai *dai)
d927fdae
VK
391{
392 struct sst_runtime_stream *stream;
393 int ret_val = 0, str_id;
394
d927fdae
VK
395 stream = substream->runtime->private_data;
396 str_id = stream->stream_info.str_id;
397 if (stream->stream_info.str_id) {
b12b087c 398 ret_val = stream->ops->stream_drop(sst->dev, str_id);
d927fdae
VK
399 return ret_val;
400 }
401
6df5d768 402 ret_val = sst_platform_alloc_stream(substream, dai);
a870cdce 403 if (ret_val <= 0)
d927fdae
VK
404 return ret_val;
405 snprintf(substream->pcm->id, sizeof(substream->pcm->id),
406 "%d", stream->stream_info.str_id);
407
408 ret_val = sst_platform_init_stream(substream);
409 if (ret_val)
410 return ret_val;
411 substream->runtime->hw.info = SNDRV_PCM_INFO_BLOCK_TRANSFER;
412 return ret_val;
413}
414
6cc0f4e6
VK
415static int sst_media_hw_params(struct snd_pcm_substream *substream,
416 struct snd_pcm_hw_params *params,
417 struct snd_soc_dai *dai)
418{
419 snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
420 memset(substream->runtime->dma_area, 0, params_buffer_bytes(params));
421 return 0;
422}
423
424static int sst_media_hw_free(struct snd_pcm_substream *substream,
425 struct snd_soc_dai *dai)
426{
427 return snd_pcm_lib_free_pages(substream);
428}
429
c82351da
VK
430static int sst_enable_ssp(struct snd_pcm_substream *substream,
431 struct snd_soc_dai *dai)
432{
433 int ret = 0;
434
435 if (!dai->active) {
436 ret = sst_handle_vb_timer(dai, true);
711bc947 437 sst_fill_ssp_defaults(dai);
c82351da
VK
438 }
439 return ret;
440}
441
711bc947
VK
442static int sst_be_hw_params(struct snd_pcm_substream *substream,
443 struct snd_pcm_hw_params *params,
444 struct snd_soc_dai *dai)
445{
446 int ret = 0;
447
448 if (dai->active == 1)
449 ret = send_ssp_cmd(dai, dai->name, 1);
450 return ret;
451}
452
0b44e345
VK
453static int sst_set_format(struct snd_soc_dai *dai, unsigned int fmt)
454{
455 int ret = 0;
456
457 if (!dai->active)
458 return 0;
459
460 ret = sst_fill_ssp_config(dai, fmt);
461 if (ret < 0)
462 dev_err(dai->dev, "sst_set_format failed..\n");
463
464 return ret;
465}
466
c82351da
VK
467static void sst_disable_ssp(struct snd_pcm_substream *substream,
468 struct snd_soc_dai *dai)
469{
470 if (!dai->active) {
471 send_ssp_cmd(dai, dai->name, 0);
472 sst_handle_vb_timer(dai, false);
473 }
474}
475
6cc0f4e6
VK
476static struct snd_soc_dai_ops sst_media_dai_ops = {
477 .startup = sst_media_open,
478 .shutdown = sst_media_close,
479 .prepare = sst_media_prepare,
480 .hw_params = sst_media_hw_params,
481 .hw_free = sst_media_hw_free,
c82351da
VK
482 .mute_stream = sst_media_digital_mute,
483};
484
485static struct snd_soc_dai_ops sst_compr_dai_ops = {
486 .mute_stream = sst_media_digital_mute,
487};
488
489static struct snd_soc_dai_ops sst_be_dai_ops = {
490 .startup = sst_enable_ssp,
711bc947 491 .hw_params = sst_be_hw_params,
0b44e345 492 .set_fmt = sst_set_format,
c82351da
VK
493 .shutdown = sst_disable_ssp,
494};
495
496static struct snd_soc_dai_driver sst_platform_dai[] = {
497{
498 .name = "media-cpu-dai",
499 .ops = &sst_media_dai_ops,
500 .playback = {
501 .stream_name = "Headset Playback",
502 .channels_min = SST_STEREO,
503 .channels_max = SST_STEREO,
504 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
505 .formats = SNDRV_PCM_FMTBIT_S16_LE,
506 },
507 .capture = {
508 .stream_name = "Headset Capture",
509 .channels_min = 1,
510 .channels_max = 2,
511 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
512 .formats = SNDRV_PCM_FMTBIT_S16_LE,
513 },
514},
515{
516 .name = "compress-cpu-dai",
517 .compress_dai = 1,
518 .ops = &sst_compr_dai_ops,
519 .playback = {
520 .stream_name = "Compress Playback",
521 .channels_min = SST_STEREO,
522 .channels_max = SST_STEREO,
523 .rates = SNDRV_PCM_RATE_48000,
524 .formats = SNDRV_PCM_FMTBIT_S16_LE,
525 },
526},
527/* BE CPU Dais */
528{
529 .name = "ssp0-port",
530 .ops = &sst_be_dai_ops,
531 .playback = {
532 .stream_name = "ssp0 Tx",
533 .channels_min = SST_STEREO,
534 .channels_max = SST_STEREO,
535 .rates = SNDRV_PCM_RATE_48000,
536 .formats = SNDRV_PCM_FMTBIT_S16_LE,
537 },
538 .capture = {
539 .stream_name = "ssp0 Rx",
540 .channels_min = SST_STEREO,
541 .channels_max = SST_STEREO,
542 .rates = SNDRV_PCM_RATE_48000,
543 .formats = SNDRV_PCM_FMTBIT_S16_LE,
544 },
545},
546{
547 .name = "ssp1-port",
548 .ops = &sst_be_dai_ops,
549 .playback = {
550 .stream_name = "ssp1 Tx",
551 .channels_min = SST_STEREO,
552 .channels_max = SST_STEREO,
553 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
554 .formats = SNDRV_PCM_FMTBIT_S16_LE,
555 },
556 .capture = {
557 .stream_name = "ssp1 Rx",
558 .channels_min = SST_STEREO,
559 .channels_max = SST_STEREO,
560 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
561 .formats = SNDRV_PCM_FMTBIT_S16_LE,
562 },
563},
564{
565 .name = "ssp2-port",
566 .ops = &sst_be_dai_ops,
567 .playback = {
568 .stream_name = "ssp2 Tx",
569 .channels_min = SST_STEREO,
570 .channels_max = SST_STEREO,
571 .rates = SNDRV_PCM_RATE_48000,
572 .formats = SNDRV_PCM_FMTBIT_S16_LE,
573 },
574 .capture = {
575 .stream_name = "ssp2 Rx",
576 .channels_min = SST_STEREO,
577 .channels_max = SST_STEREO,
578 .rates = SNDRV_PCM_RATE_48000,
579 .formats = SNDRV_PCM_FMTBIT_S16_LE,
580 },
581},
6cc0f4e6
VK
582};
583
584static int sst_platform_open(struct snd_pcm_substream *substream)
585{
586 struct snd_pcm_runtime *runtime;
587
588 if (substream->pcm->internal)
589 return 0;
590
591 runtime = substream->runtime;
592 runtime->hw = sst_platform_pcm_hw;
593 return 0;
594}
595
5106f5a1 596static int sst_platform_pcm_trigger(struct snd_pcm_substream *substream,
d927fdae
VK
597 int cmd)
598{
599 int ret_val = 0, str_id;
600 struct sst_runtime_stream *stream;
5981c2d6 601 int status;
02024756 602 struct snd_soc_pcm_runtime *rtd = substream->private_data;
d927fdae 603
02024756 604 dev_dbg(rtd->dev, "sst_platform_pcm_trigger called\n");
d2b16b8f
VK
605 if (substream->pcm->internal)
606 return 0;
d927fdae 607 stream = substream->runtime->private_data;
d927fdae 608 str_id = stream->stream_info.str_id;
d927fdae
VK
609 switch (cmd) {
610 case SNDRV_PCM_TRIGGER_START:
02024756 611 dev_dbg(rtd->dev, "sst: Trigger Start\n");
a211701e 612 status = SST_PLATFORM_RUNNING;
9daa5bd3 613 stream->stream_info.arg = substream;
b12b087c 614 ret_val = stream->ops->stream_start(sst->dev, str_id);
d927fdae
VK
615 break;
616 case SNDRV_PCM_TRIGGER_STOP:
02024756 617 dev_dbg(rtd->dev, "sst: in stop\n");
a211701e 618 status = SST_PLATFORM_DROPPED;
b12b087c 619 ret_val = stream->ops->stream_drop(sst->dev, str_id);
d927fdae
VK
620 break;
621 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
fc9406ab 622 case SNDRV_PCM_TRIGGER_SUSPEND:
02024756 623 dev_dbg(rtd->dev, "sst: in pause\n");
a211701e 624 status = SST_PLATFORM_PAUSED;
b12b087c 625 ret_val = stream->ops->stream_pause(sst->dev, str_id);
d927fdae
VK
626 break;
627 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
fc9406ab 628 case SNDRV_PCM_TRIGGER_RESUME:
02024756 629 dev_dbg(rtd->dev, "sst: in pause release\n");
a211701e 630 status = SST_PLATFORM_RUNNING;
b12b087c 631 ret_val = stream->ops->stream_pause_release(sst->dev, str_id);
d927fdae
VK
632 break;
633 default:
a211701e 634 return -EINVAL;
d927fdae 635 }
5981c2d6 636
a211701e
HP
637 if (!ret_val)
638 sst_set_stream_status(stream, status);
639
d927fdae
VK
640 return ret_val;
641}
642
643
5106f5a1 644static snd_pcm_uframes_t sst_platform_pcm_pointer
d927fdae
VK
645 (struct snd_pcm_substream *substream)
646{
647 struct sst_runtime_stream *stream;
5c68536f 648 int ret_val, status;
d927fdae 649 struct pcm_stream_info *str_info;
02024756 650 struct snd_soc_pcm_runtime *rtd = substream->private_data;
d927fdae 651
d927fdae 652 stream = substream->runtime->private_data;
5c68536f
HP
653 status = sst_get_stream_status(stream);
654 if (status == SST_PLATFORM_INIT)
d927fdae 655 return 0;
d927fdae 656 str_info = &stream->stream_info;
b12b087c 657 ret_val = stream->ops->stream_read_tstamp(sst->dev, str_info);
d927fdae 658 if (ret_val) {
02024756 659 dev_err(rtd->dev, "sst: error code = %d\n", ret_val);
d927fdae
VK
660 return ret_val;
661 }
2a635825 662 substream->runtime->delay = str_info->pcm_delay;
6cc0f4e6 663 return str_info->buffer_ptr;
9ab88434 664}
665
d927fdae 666static struct snd_pcm_ops sst_platform_ops = {
5106f5a1 667 .open = sst_platform_open,
d927fdae 668 .ioctl = snd_pcm_lib_ioctl,
5106f5a1
VK
669 .trigger = sst_platform_pcm_trigger,
670 .pointer = sst_platform_pcm_pointer,
d927fdae
VK
671};
672
8faa8c1a 673static int sst_pcm_new(struct snd_soc_pcm_runtime *rtd)
d927fdae 674{
6cc0f4e6 675 struct snd_soc_dai *dai = rtd->cpu_dai;
552d1ef6 676 struct snd_pcm *pcm = rtd->pcm;
d927fdae
VK
677 int retval = 0;
678
6cc0f4e6
VK
679 if (dai->driver->playback.channels_min ||
680 dai->driver->capture.channels_min) {
d927fdae
VK
681 retval = snd_pcm_lib_preallocate_pages_for_all(pcm,
682 SNDRV_DMA_TYPE_CONTINUOUS,
6cc0f4e6 683 snd_dma_continuous_data(GFP_DMA),
d927fdae
VK
684 SST_MIN_BUFFER, SST_MAX_BUFFER);
685 if (retval) {
02024756 686 dev_err(rtd->dev, "dma buffer allocationf fail\n");
d927fdae
VK
687 return retval;
688 }
689 }
d927fdae
VK
690 return retval;
691}
c514a911 692
d8499c9b
VK
693static int sst_soc_probe(struct snd_soc_platform *platform)
694{
54e6becc
VK
695 struct sst_data *drv = dev_get_drvdata(platform->dev);
696
697 drv->soc_card = platform->component.card;
d8499c9b
VK
698 return sst_dsp_init_v2_dpcm(platform);
699}
700
701static struct snd_soc_platform_driver sst_soc_platform_drv = {
702 .probe = sst_soc_probe,
d927fdae 703 .ops = &sst_platform_ops,
c514a911 704 .compr_ops = &sst_platform_compr_ops,
d927fdae 705 .pcm_new = sst_pcm_new,
d927fdae
VK
706};
707
2b4c78df
VK
708static const struct snd_soc_component_driver sst_component = {
709 .name = "sst",
710};
711
712
d927fdae
VK
713static int sst_platform_probe(struct platform_device *pdev)
714{
61b165ca 715 struct sst_data *drv;
d927fdae 716 int ret;
2741d43a 717 struct sst_platform_data *pdata;
61b165ca
VK
718
719 drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
19a23a5d 720 if (drv == NULL) {
61b165ca
VK
721 return -ENOMEM;
722 }
723
2741d43a
SP
724 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
725 if (pdata == NULL) {
2741d43a
SP
726 return -ENOMEM;
727 }
728
61b165ca
VK
729 pdata->pdev_strm_map = dpcm_strm_map;
730 pdata->strm_map_size = ARRAY_SIZE(dpcm_strm_map);
731 drv->pdata = pdata;
3172fcdd 732 drv->pdev = pdev;
61b165ca
VK
733 mutex_init(&drv->lock);
734 dev_set_drvdata(&pdev->dev, drv);
d927fdae 735
d927fdae
VK
736 ret = snd_soc_register_platform(&pdev->dev, &sst_soc_platform_drv);
737 if (ret) {
02024756 738 dev_err(&pdev->dev, "registering soc platform failed\n");
d927fdae
VK
739 return ret;
740 }
5c68536f 741
b1c36861 742 ret = snd_soc_register_component(&pdev->dev, &sst_component,
d927fdae
VK
743 sst_platform_dai, ARRAY_SIZE(sst_platform_dai));
744 if (ret) {
02024756 745 dev_err(&pdev->dev, "registering cpu dais failed\n");
d927fdae
VK
746 snd_soc_unregister_platform(&pdev->dev);
747 }
748 return ret;
749}
750
751static int sst_platform_remove(struct platform_device *pdev)
752{
753
b1c36861 754 snd_soc_unregister_component(&pdev->dev);
d927fdae 755 snd_soc_unregister_platform(&pdev->dev);
02024756 756 dev_dbg(&pdev->dev, "sst_platform_remove success\n");
d927fdae
VK
757 return 0;
758}
759
54e6becc
VK
760#ifdef CONFIG_PM_SLEEP
761
762static int sst_soc_prepare(struct device *dev)
763{
764 struct sst_data *drv = dev_get_drvdata(dev);
765 int i;
766
767 /* suspend all pcms first */
768 snd_soc_suspend(drv->soc_card->dev);
769 snd_soc_poweroff(drv->soc_card->dev);
770
771 /* set the SSPs to idle */
772 for (i = 0; i < drv->soc_card->num_rtd; i++) {
773 struct snd_soc_dai *dai = drv->soc_card->rtd[i].cpu_dai;
774
775 if (dai->active) {
776 send_ssp_cmd(dai, dai->name, 0);
777 sst_handle_vb_timer(dai, false);
778 }
779 }
780
781 return 0;
782}
783
784static void sst_soc_complete(struct device *dev)
785{
786 struct sst_data *drv = dev_get_drvdata(dev);
787 int i;
788
789 /* restart SSPs */
790 for (i = 0; i < drv->soc_card->num_rtd; i++) {
791 struct snd_soc_dai *dai = drv->soc_card->rtd[i].cpu_dai;
792
793 if (dai->active) {
794 sst_handle_vb_timer(dai, true);
795 send_ssp_cmd(dai, dai->name, 1);
796 }
797 }
798 snd_soc_resume(drv->soc_card->dev);
799}
800
801#else
802
803#define sst_soc_prepare NULL
804#define sst_soc_complete NULL
805
806#endif
807
808
809static const struct dev_pm_ops sst_platform_pm = {
810 .prepare = sst_soc_prepare,
811 .complete = sst_soc_complete,
812};
813
d927fdae
VK
814static struct platform_driver sst_platform_driver = {
815 .driver = {
a4b12990 816 .name = "sst-mfld-platform",
54e6becc 817 .pm = &sst_platform_pm,
d927fdae
VK
818 },
819 .probe = sst_platform_probe,
820 .remove = sst_platform_remove,
821};
822
29515d62 823module_platform_driver(sst_platform_driver);
d927fdae
VK
824
825MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver");
826MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
827MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
828MODULE_LICENSE("GPL v2");
a4b12990 829MODULE_ALIAS("platform:sst-mfld-platform");
This page took 0.256755 seconds and 5 git commands to generate.