blob: 2fbaf2c75d1709e517a5fb1b1d8012f58865992c [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);
Vinod Koul4b68b4e2014-05-05 14:27:50 +053036extern struct snd_compr_ops sst_platform_compr_ops;
Vinod Koul03c33042011-12-05 19:13:41 +053037
38int sst_register_dsp(struct sst_device *dev)
39{
Takashi Iwai656a22a2013-11-05 18:40:01 +010040 if (WARN_ON(!dev))
41 return -EINVAL;
Vinod Koul03c33042011-12-05 19:13:41 +053042 if (!try_module_get(dev->dev->driver->owner))
43 return -ENODEV;
44 mutex_lock(&sst_lock);
45 if (sst) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +053046 dev_err(dev->dev, "we already have a device %s\n", sst->name);
Vinod Koul03c33042011-12-05 19:13:41 +053047 module_put(dev->dev->driver->owner);
48 mutex_unlock(&sst_lock);
49 return -EEXIST;
50 }
Subhransu S. Prusty02024752014-09-02 18:05:56 +053051 dev_dbg(dev->dev, "registering device %s\n", dev->name);
Vinod Koul03c33042011-12-05 19:13:41 +053052 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{
Takashi Iwai656a22a2013-11-05 18:40:01 +010060 if (WARN_ON(!dev))
61 return -EINVAL;
Vinod Koul03c33042011-12-05 19:13:41 +053062 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);
Subhransu S. Prusty02024752014-09-02 18:05:56 +053073 dev_dbg(dev->dev, "unreg %s\n", sst->name);
Vinod Koul03c33042011-12-05 19:13:41 +053074 sst = NULL;
75 mutex_unlock(&sst_lock);
76 return 0;
77}
78EXPORT_SYMBOL_GPL(sst_unregister_dsp);
79
Vinod Kould927fda2011-01-04 20:16:32 +053080static 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),
Vinod Kould927fda2011-01-04 20:16:32 +053089 .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
Vinod Koul61b165c2014-06-13 18:03:56 +053097static 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
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);
138 u32 buffer_addr = virt_to_phys(substream->dma_buffer.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 substream->runtime->dma_area = substream->dma_buffer.area;
Vinod Kould927fda2011-01-04 20:16:32 +0530245 str_params.sparams = param;
Vinod Koula870cdc2014-06-13 18:03:55 +0530246 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 */
Vinod Koul61b165c2014-06-13 18:03:56 +0530250 ret_val = sst_fill_stream_params(substream, ctx, &str_params, false);
Vinod Kould927fda2011-01-04 20:16:32 +0530251 if (ret_val < 0)
252 return ret_val;
253
Vinod Koula870cdc2014-06-13 18:03:55 +0530254 stream->stream_info.str_id = str_params.stream_id;
255
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530256 ret_val = stream->ops->open(sst->dev, &str_params);
Vinod Koula870cdc2014-06-13 18:03:55 +0530257 if (ret_val <= 0)
258 return ret_val;
259
260
Vinod Kould927fda2011-01-04 20:16:32 +0530261 return ret_val;
262}
263
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530264static void sst_period_elapsed(void *arg)
Vinod Kould927fda2011-01-04 20:16:32 +0530265{
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530266 struct snd_pcm_substream *substream = arg;
Vinod Kould927fda2011-01-04 20:16:32 +0530267 struct sst_runtime_stream *stream;
Harsha Priya5c685362011-01-11 14:50:35 +0530268 int status;
Vinod Kould927fda2011-01-04 20:16:32 +0530269
270 if (!substream || !substream->runtime)
271 return;
272 stream = substream->runtime->private_data;
273 if (!stream)
274 return;
Harsha Priya5c685362011-01-11 14:50:35 +0530275 status = sst_get_stream_status(stream);
276 if (status != SST_PLATFORM_RUNNING)
Vinod Kould927fda2011-01-04 20:16:32 +0530277 return;
Vinod Kould927fda2011-01-04 20:16:32 +0530278 snd_pcm_period_elapsed(substream);
Vinod Kould927fda2011-01-04 20:16:32 +0530279}
280
281static int sst_platform_init_stream(struct snd_pcm_substream *substream)
282{
283 struct sst_runtime_stream *stream =
284 substream->runtime->private_data;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530285 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530286 int ret_val;
287
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530288 dev_dbg(rtd->dev, "setting buffer ptr param\n");
Harsha Priya5c685362011-01-11 14:50:35 +0530289 sst_set_stream_status(stream, SST_PLATFORM_INIT);
Vinod Kould927fda2011-01-04 20:16:32 +0530290 stream->stream_info.period_elapsed = sst_period_elapsed;
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530291 stream->stream_info.arg = substream;
Vinod Kould927fda2011-01-04 20:16:32 +0530292 stream->stream_info.buffer_ptr = 0;
293 stream->stream_info.sfreq = substream->runtime->rate;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530294 ret_val = stream->ops->stream_init(sst->dev, &stream->stream_info);
Vinod Kould927fda2011-01-04 20:16:32 +0530295 if (ret_val)
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530296 dev_err(rtd->dev, "control_set ret error %d\n", ret_val);
Vinod Kould927fda2011-01-04 20:16:32 +0530297 return ret_val;
298
299}
Vinod Kould927fda2011-01-04 20:16:32 +0530300
Vinod Koul01213272014-09-19 16:46:03 +0530301static 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
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530311static int sst_media_open(struct snd_pcm_substream *substream,
312 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530313{
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530314 int ret_val = 0;
Lu Guanqun22be5042011-09-06 15:21:38 +0800315 struct snd_pcm_runtime *runtime = substream->runtime;
Vinod Kould927fda2011-01-04 20:16:32 +0530316 struct sst_runtime_stream *stream;
Lu Guanqun22be5042011-09-06 15:21:38 +0800317
Vinod Kould927fda2011-01-04 20:16:32 +0530318 stream = kzalloc(sizeof(*stream), GFP_KERNEL);
319 if (!stream)
320 return -ENOMEM;
Vinod Kould927fda2011-01-04 20:16:32 +0530321 spin_lock_init(&stream->status_lock);
Vinod Koul03c33042011-12-05 19:13:41 +0530322
323 /* get the sst ops */
324 mutex_lock(&sst_lock);
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530325 if (!sst ||
326 !try_module_get(sst->dev->driver->owner)) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530327 dev_err(dai->dev, "no device available to run\n");
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530328 ret_val = -ENODEV;
329 goto out_ops;
Vinod Koul03c33042011-12-05 19:13:41 +0530330 }
331 stream->ops = sst->ops;
332 mutex_unlock(&sst_lock);
333
Vinod Kould927fda2011-01-04 20:16:32 +0530334 stream->stream_info.str_id = 0;
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530335
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530336 stream->stream_info.arg = substream;
Vinod Kould927fda2011-01-04 20:16:32 +0530337 /* allocate memory for SST API set */
Vinod Kould927fda2011-01-04 20:16:32 +0530338 runtime->private_data = stream;
Lu Guanqun283e42e2011-09-06 15:21:43 +0800339
Vinod Koul01213272014-09-19 16:46:03 +0530340 ret_val = power_up_sst(stream);
341 if (ret_val < 0)
342 return ret_val;
343
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530344 /* 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;
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;
360 int ret_val = 0, str_id;
361
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)
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530367 ret_val = 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
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530372static inline unsigned int get_current_pipe_id(struct snd_soc_dai *dai,
Vinod Koul61b165c2014-06-13 18:03:56 +0530373 struct snd_pcm_substream *substream)
374{
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530375 struct sst_data *sst = snd_soc_dai_get_drvdata(dai);
Vinod Koul61b165c2014-06-13 18:03:56 +0530376 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;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530381
Vinod Koul61b165c2014-06-13 18:03:56 +0530382 pipe_id = map[str_id].device_id;
383
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530384 dev_dbg(dai->dev, "got pipe_id = %#x for str_id = %d\n",
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530385 pipe_id, str_id);
Vinod Koul61b165c2014-06-13 18:03:56 +0530386 return pipe_id;
Vinod Kould927fda2011-01-04 20:16:32 +0530387}
388
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530389static int sst_media_prepare(struct snd_pcm_substream *substream,
390 struct snd_soc_dai *dai)
Vinod Kould927fda2011-01-04 20:16:32 +0530391{
392 struct sst_runtime_stream *stream;
393 int ret_val = 0, str_id;
394
Vinod Kould927fda2011-01-04 20:16:32 +0530395 stream = substream->runtime->private_data;
396 str_id = stream->stream_info.str_id;
397 if (stream->stream_info.str_id) {
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530398 ret_val = stream->ops->stream_drop(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530399 return ret_val;
400 }
401
Subhransu S. Prusty6df5d762014-09-09 15:11:32 +0530402 ret_val = sst_platform_alloc_stream(substream, dai);
Vinod Koula870cdc2014-06-13 18:03:55 +0530403 if (ret_val <= 0)
Vinod Kould927fda2011-01-04 20:16:32 +0530404 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
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530415static 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
Vinod Koulc82351d2014-10-15 20:12:59 +0530430static 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);
437 if (ret)
438 return ret;
439 ret = send_ssp_cmd(dai, dai->name, 1);
440 }
441 return ret;
442}
443
444static void sst_disable_ssp(struct snd_pcm_substream *substream,
445 struct snd_soc_dai *dai)
446{
447 if (!dai->active) {
448 send_ssp_cmd(dai, dai->name, 0);
449 sst_handle_vb_timer(dai, false);
450 }
451}
452
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530453static struct snd_soc_dai_ops sst_media_dai_ops = {
454 .startup = sst_media_open,
455 .shutdown = sst_media_close,
456 .prepare = sst_media_prepare,
457 .hw_params = sst_media_hw_params,
458 .hw_free = sst_media_hw_free,
Vinod Koulc82351d2014-10-15 20:12:59 +0530459 .mute_stream = sst_media_digital_mute,
460};
461
462static struct snd_soc_dai_ops sst_compr_dai_ops = {
463 .mute_stream = sst_media_digital_mute,
464};
465
466static struct snd_soc_dai_ops sst_be_dai_ops = {
467 .startup = sst_enable_ssp,
468 .shutdown = sst_disable_ssp,
469};
470
471static struct snd_soc_dai_driver sst_platform_dai[] = {
472{
473 .name = "media-cpu-dai",
474 .ops = &sst_media_dai_ops,
475 .playback = {
476 .stream_name = "Headset Playback",
477 .channels_min = SST_STEREO,
478 .channels_max = SST_STEREO,
479 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
480 .formats = SNDRV_PCM_FMTBIT_S16_LE,
481 },
482 .capture = {
483 .stream_name = "Headset Capture",
484 .channels_min = 1,
485 .channels_max = 2,
486 .rates = SNDRV_PCM_RATE_44100|SNDRV_PCM_RATE_48000,
487 .formats = SNDRV_PCM_FMTBIT_S16_LE,
488 },
489},
490{
491 .name = "compress-cpu-dai",
492 .compress_dai = 1,
493 .ops = &sst_compr_dai_ops,
494 .playback = {
495 .stream_name = "Compress Playback",
496 .channels_min = SST_STEREO,
497 .channels_max = SST_STEREO,
498 .rates = SNDRV_PCM_RATE_48000,
499 .formats = SNDRV_PCM_FMTBIT_S16_LE,
500 },
501},
502/* BE CPU Dais */
503{
504 .name = "ssp0-port",
505 .ops = &sst_be_dai_ops,
506 .playback = {
507 .stream_name = "ssp0 Tx",
508 .channels_min = SST_STEREO,
509 .channels_max = SST_STEREO,
510 .rates = SNDRV_PCM_RATE_48000,
511 .formats = SNDRV_PCM_FMTBIT_S16_LE,
512 },
513 .capture = {
514 .stream_name = "ssp0 Rx",
515 .channels_min = SST_STEREO,
516 .channels_max = SST_STEREO,
517 .rates = SNDRV_PCM_RATE_48000,
518 .formats = SNDRV_PCM_FMTBIT_S16_LE,
519 },
520},
521{
522 .name = "ssp1-port",
523 .ops = &sst_be_dai_ops,
524 .playback = {
525 .stream_name = "ssp1 Tx",
526 .channels_min = SST_STEREO,
527 .channels_max = SST_STEREO,
528 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
529 .formats = SNDRV_PCM_FMTBIT_S16_LE,
530 },
531 .capture = {
532 .stream_name = "ssp1 Rx",
533 .channels_min = SST_STEREO,
534 .channels_max = SST_STEREO,
535 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
536 .formats = SNDRV_PCM_FMTBIT_S16_LE,
537 },
538},
539{
540 .name = "ssp2-port",
541 .ops = &sst_be_dai_ops,
542 .playback = {
543 .stream_name = "ssp2 Tx",
544 .channels_min = SST_STEREO,
545 .channels_max = SST_STEREO,
546 .rates = SNDRV_PCM_RATE_48000,
547 .formats = SNDRV_PCM_FMTBIT_S16_LE,
548 },
549 .capture = {
550 .stream_name = "ssp2 Rx",
551 .channels_min = SST_STEREO,
552 .channels_max = SST_STEREO,
553 .rates = SNDRV_PCM_RATE_48000,
554 .formats = SNDRV_PCM_FMTBIT_S16_LE,
555 },
556},
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530557};
558
559static int sst_platform_open(struct snd_pcm_substream *substream)
560{
561 struct snd_pcm_runtime *runtime;
562
563 if (substream->pcm->internal)
564 return 0;
565
566 runtime = substream->runtime;
567 runtime->hw = sst_platform_pcm_hw;
568 return 0;
569}
570
Vinod Koul5106f5a2014-05-15 21:38:15 +0530571static int sst_platform_pcm_trigger(struct snd_pcm_substream *substream,
Vinod Kould927fda2011-01-04 20:16:32 +0530572 int cmd)
573{
574 int ret_val = 0, str_id;
575 struct sst_runtime_stream *stream;
Subhransu S. Prusty5981c2d2014-08-04 15:04:20 +0530576 int status;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530577 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530578
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530579 dev_dbg(rtd->dev, "sst_platform_pcm_trigger called\n");
Vinod Kould2b16b82014-09-09 15:11:24 +0530580 if (substream->pcm->internal)
581 return 0;
Vinod Kould927fda2011-01-04 20:16:32 +0530582 stream = substream->runtime->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530583 str_id = stream->stream_info.str_id;
Vinod Kould927fda2011-01-04 20:16:32 +0530584 switch (cmd) {
585 case SNDRV_PCM_TRIGGER_START:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530586 dev_dbg(rtd->dev, "sst: Trigger Start\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530587 status = SST_PLATFORM_RUNNING;
Vinod Koul9daa5bd2014-06-13 18:03:52 +0530588 stream->stream_info.arg = substream;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530589 ret_val = stream->ops->stream_start(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530590 break;
591 case SNDRV_PCM_TRIGGER_STOP:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530592 dev_dbg(rtd->dev, "sst: in stop\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530593 status = SST_PLATFORM_DROPPED;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530594 ret_val = stream->ops->stream_drop(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530595 break;
596 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Vinod Koulfc9406a2015-02-12 09:59:57 +0530597 case SNDRV_PCM_TRIGGER_SUSPEND:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530598 dev_dbg(rtd->dev, "sst: in pause\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530599 status = SST_PLATFORM_PAUSED;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530600 ret_val = stream->ops->stream_pause(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530601 break;
602 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Vinod Koulfc9406a2015-02-12 09:59:57 +0530603 case SNDRV_PCM_TRIGGER_RESUME:
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530604 dev_dbg(rtd->dev, "sst: in pause release\n");
Harsha Priyaa2117012011-01-11 14:50:59 +0530605 status = SST_PLATFORM_RUNNING;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530606 ret_val = stream->ops->stream_pause_release(sst->dev, str_id);
Vinod Kould927fda2011-01-04 20:16:32 +0530607 break;
608 default:
Harsha Priyaa2117012011-01-11 14:50:59 +0530609 return -EINVAL;
Vinod Kould927fda2011-01-04 20:16:32 +0530610 }
Subhransu S. Prusty5981c2d2014-08-04 15:04:20 +0530611
Harsha Priyaa2117012011-01-11 14:50:59 +0530612 if (!ret_val)
613 sst_set_stream_status(stream, status);
614
Vinod Kould927fda2011-01-04 20:16:32 +0530615 return ret_val;
616}
617
618
Vinod Koul5106f5a2014-05-15 21:38:15 +0530619static snd_pcm_uframes_t sst_platform_pcm_pointer
Vinod Kould927fda2011-01-04 20:16:32 +0530620 (struct snd_pcm_substream *substream)
621{
622 struct sst_runtime_stream *stream;
Harsha Priya5c685362011-01-11 14:50:35 +0530623 int ret_val, status;
Vinod Kould927fda2011-01-04 20:16:32 +0530624 struct pcm_stream_info *str_info;
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530625 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Vinod Kould927fda2011-01-04 20:16:32 +0530626
Vinod Kould927fda2011-01-04 20:16:32 +0530627 stream = substream->runtime->private_data;
Harsha Priya5c685362011-01-11 14:50:35 +0530628 status = sst_get_stream_status(stream);
629 if (status == SST_PLATFORM_INIT)
Vinod Kould927fda2011-01-04 20:16:32 +0530630 return 0;
Vinod Kould927fda2011-01-04 20:16:32 +0530631 str_info = &stream->stream_info;
Subhransu S. Prustyb12b087c2014-08-04 15:04:21 +0530632 ret_val = stream->ops->stream_read_tstamp(sst->dev, str_info);
Vinod Kould927fda2011-01-04 20:16:32 +0530633 if (ret_val) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530634 dev_err(rtd->dev, "sst: error code = %d\n", ret_val);
Vinod Kould927fda2011-01-04 20:16:32 +0530635 return ret_val;
636 }
Vinod Koul2a635822014-06-13 18:03:53 +0530637 substream->runtime->delay = str_info->pcm_delay;
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530638 return str_info->buffer_ptr;
xingchao9ab88432011-04-27 16:58:54 -0400639}
640
Vinod Kould927fda2011-01-04 20:16:32 +0530641static struct snd_pcm_ops sst_platform_ops = {
Vinod Koul5106f5a2014-05-15 21:38:15 +0530642 .open = sst_platform_open,
Vinod Kould927fda2011-01-04 20:16:32 +0530643 .ioctl = snd_pcm_lib_ioctl,
Vinod Koul5106f5a2014-05-15 21:38:15 +0530644 .trigger = sst_platform_pcm_trigger,
645 .pointer = sst_platform_pcm_pointer,
Vinod Kould927fda2011-01-04 20:16:32 +0530646};
647
Axel Lin8faa8c12011-12-13 17:13:45 +0800648static int sst_pcm_new(struct snd_soc_pcm_runtime *rtd)
Vinod Kould927fda2011-01-04 20:16:32 +0530649{
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530650 struct snd_soc_dai *dai = rtd->cpu_dai;
Liam Girdwood552d1ef2011-06-07 16:08:33 +0100651 struct snd_pcm *pcm = rtd->pcm;
Vinod Kould927fda2011-01-04 20:16:32 +0530652 int retval = 0;
653
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530654 if (dai->driver->playback.channels_min ||
655 dai->driver->capture.channels_min) {
Vinod Kould927fda2011-01-04 20:16:32 +0530656 retval = snd_pcm_lib_preallocate_pages_for_all(pcm,
657 SNDRV_DMA_TYPE_CONTINUOUS,
Vinod Koul6cc0f4e2014-06-13 18:03:51 +0530658 snd_dma_continuous_data(GFP_DMA),
Vinod Kould927fda2011-01-04 20:16:32 +0530659 SST_MIN_BUFFER, SST_MAX_BUFFER);
660 if (retval) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530661 dev_err(rtd->dev, "dma buffer allocationf fail\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530662 return retval;
663 }
664 }
Vinod Kould927fda2011-01-04 20:16:32 +0530665 return retval;
666}
Vinod Koulc514a912012-08-16 17:10:42 +0530667
Vinod Kould8499c92014-08-04 15:15:55 +0530668static int sst_soc_probe(struct snd_soc_platform *platform)
669{
Vinod Koul54e6bec2015-02-12 09:59:58 +0530670 struct sst_data *drv = dev_get_drvdata(platform->dev);
671
672 drv->soc_card = platform->component.card;
Vinod Kould8499c92014-08-04 15:15:55 +0530673 return sst_dsp_init_v2_dpcm(platform);
674}
675
676static struct snd_soc_platform_driver sst_soc_platform_drv = {
677 .probe = sst_soc_probe,
Vinod Kould927fda2011-01-04 20:16:32 +0530678 .ops = &sst_platform_ops,
Vinod Koulc514a912012-08-16 17:10:42 +0530679 .compr_ops = &sst_platform_compr_ops,
Vinod Kould927fda2011-01-04 20:16:32 +0530680 .pcm_new = sst_pcm_new,
Vinod Kould927fda2011-01-04 20:16:32 +0530681};
682
Vinod Koul2b4c78d2014-05-05 22:19:25 +0530683static const struct snd_soc_component_driver sst_component = {
684 .name = "sst",
685};
686
687
Vinod Kould927fda2011-01-04 20:16:32 +0530688static int sst_platform_probe(struct platform_device *pdev)
689{
Vinod Koul61b165c2014-06-13 18:03:56 +0530690 struct sst_data *drv;
Vinod Kould927fda2011-01-04 20:16:32 +0530691 int ret;
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530692 struct sst_platform_data *pdata;
Vinod Kould927fda2011-01-04 20:16:32 +0530693
Vinod Koul61b165c2014-06-13 18:03:56 +0530694 drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
Subhransu S. Prusty19a23a52014-07-30 18:36:00 +0530695 if (drv == NULL) {
Vinod Koul61b165c2014-06-13 18:03:56 +0530696 return -ENOMEM;
697 }
698
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530699 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
700 if (pdata == NULL) {
Subhransu S. Prusty2741d432014-07-30 18:39:05 +0530701 return -ENOMEM;
702 }
703
Vinod Koul61b165c2014-06-13 18:03:56 +0530704 pdata->pdev_strm_map = dpcm_strm_map;
705 pdata->strm_map_size = ARRAY_SIZE(dpcm_strm_map);
706 drv->pdata = pdata;
Subhransu S. Prusty3172fcd2014-10-30 16:21:44 +0530707 drv->pdev = pdev;
Vinod Koul61b165c2014-06-13 18:03:56 +0530708 mutex_init(&drv->lock);
709 dev_set_drvdata(&pdev->dev, drv);
710
Vinod Kould927fda2011-01-04 20:16:32 +0530711 ret = snd_soc_register_platform(&pdev->dev, &sst_soc_platform_drv);
712 if (ret) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530713 dev_err(&pdev->dev, "registering soc platform failed\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530714 return ret;
715 }
Harsha Priya5c685362011-01-11 14:50:35 +0530716
Kuninori Morimotob1c36862013-03-21 03:32:50 -0700717 ret = snd_soc_register_component(&pdev->dev, &sst_component,
Vinod Kould927fda2011-01-04 20:16:32 +0530718 sst_platform_dai, ARRAY_SIZE(sst_platform_dai));
719 if (ret) {
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530720 dev_err(&pdev->dev, "registering cpu dais failed\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530721 snd_soc_unregister_platform(&pdev->dev);
722 }
723 return ret;
724}
725
726static int sst_platform_remove(struct platform_device *pdev)
727{
728
Kuninori Morimotob1c36862013-03-21 03:32:50 -0700729 snd_soc_unregister_component(&pdev->dev);
Vinod Kould927fda2011-01-04 20:16:32 +0530730 snd_soc_unregister_platform(&pdev->dev);
Subhransu S. Prusty02024752014-09-02 18:05:56 +0530731 dev_dbg(&pdev->dev, "sst_platform_remove success\n");
Vinod Kould927fda2011-01-04 20:16:32 +0530732 return 0;
733}
734
Vinod Koul54e6bec2015-02-12 09:59:58 +0530735#ifdef CONFIG_PM_SLEEP
736
737static int sst_soc_prepare(struct device *dev)
738{
739 struct sst_data *drv = dev_get_drvdata(dev);
740 int i;
741
742 /* suspend all pcms first */
743 snd_soc_suspend(drv->soc_card->dev);
744 snd_soc_poweroff(drv->soc_card->dev);
745
746 /* set the SSPs to idle */
747 for (i = 0; i < drv->soc_card->num_rtd; i++) {
748 struct snd_soc_dai *dai = drv->soc_card->rtd[i].cpu_dai;
749
750 if (dai->active) {
751 send_ssp_cmd(dai, dai->name, 0);
752 sst_handle_vb_timer(dai, false);
753 }
754 }
755
756 return 0;
757}
758
759static void sst_soc_complete(struct device *dev)
760{
761 struct sst_data *drv = dev_get_drvdata(dev);
762 int i;
763
764 /* restart SSPs */
765 for (i = 0; i < drv->soc_card->num_rtd; i++) {
766 struct snd_soc_dai *dai = drv->soc_card->rtd[i].cpu_dai;
767
768 if (dai->active) {
769 sst_handle_vb_timer(dai, true);
770 send_ssp_cmd(dai, dai->name, 1);
771 }
772 }
773 snd_soc_resume(drv->soc_card->dev);
774}
775
776#else
777
778#define sst_soc_prepare NULL
779#define sst_soc_complete NULL
780
781#endif
782
783
784static const struct dev_pm_ops sst_platform_pm = {
785 .prepare = sst_soc_prepare,
786 .complete = sst_soc_complete,
787};
788
Vinod Kould927fda2011-01-04 20:16:32 +0530789static struct platform_driver sst_platform_driver = {
790 .driver = {
Mark Browna4b12992014-03-12 23:04:35 +0000791 .name = "sst-mfld-platform",
Vinod Koul54e6bec2015-02-12 09:59:58 +0530792 .pm = &sst_platform_pm,
Vinod Kould927fda2011-01-04 20:16:32 +0530793 },
794 .probe = sst_platform_probe,
795 .remove = sst_platform_remove,
796};
797
Axel Lin29515d62011-11-24 11:51:56 +0800798module_platform_driver(sst_platform_driver);
Vinod Kould927fda2011-01-04 20:16:32 +0530799
800MODULE_DESCRIPTION("ASoC Intel(R) MID Platform driver");
801MODULE_AUTHOR("Vinod Koul <vinod.koul@intel.com>");
802MODULE_AUTHOR("Harsha Priya <priya.harsha@intel.com>");
803MODULE_LICENSE("GPL v2");
Mark Browna4b12992014-03-12 23:04:35 +0000804MODULE_ALIAS("platform:sst-mfld-platform");