blob: 2fd213cd9a409250419fb0785f19ba4c908ba391 [file] [log] [blame]
Jeeja KPa40e6932015-07-09 15:20:08 +05301/*
2 * skl-pcm.c -ASoC HDA Platform driver file implementing PCM functionality
3 *
4 * Copyright (C) 2014-2015 Intel Corp
5 * Author: Jeeja KP <jeeja.kp@intel.com>
6 *
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 *
18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 *
20 */
21
22#include <linux/pci.h>
23#include <linux/pm_runtime.h>
24#include <sound/pcm_params.h>
25#include <sound/soc.h>
26#include "skl.h"
Jeeja KPb663a8c2015-10-07 11:31:57 +010027#include "skl-topology.h"
Dharageswari.R721c3e32015-12-18 15:12:04 +053028#include "skl-sst-dsp.h"
29#include "skl-sst-ipc.h"
Jeeja KPa40e6932015-07-09 15:20:08 +053030
31#define HDA_MONO 1
32#define HDA_STEREO 2
Jeeja KP8f35bf32015-11-28 15:01:46 +053033#define HDA_QUAD 4
Jeeja KPa40e6932015-07-09 15:20:08 +053034
35static struct snd_pcm_hardware azx_pcm_hw = {
36 .info = (SNDRV_PCM_INFO_MMAP |
37 SNDRV_PCM_INFO_INTERLEAVED |
38 SNDRV_PCM_INFO_BLOCK_TRANSFER |
39 SNDRV_PCM_INFO_MMAP_VALID |
40 SNDRV_PCM_INFO_PAUSE |
Jeeja KP36379762015-12-18 15:12:09 +053041 SNDRV_PCM_INFO_RESUME |
Jeeja KPa40e6932015-07-09 15:20:08 +053042 SNDRV_PCM_INFO_SYNC_START |
43 SNDRV_PCM_INFO_HAS_WALL_CLOCK | /* legacy */
44 SNDRV_PCM_INFO_HAS_LINK_ATIME |
45 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Jeeja KP06b23d92015-11-23 22:26:26 +053046 .formats = SNDRV_PCM_FMTBIT_S16_LE |
47 SNDRV_PCM_FMTBIT_S32_LE |
48 SNDRV_PCM_FMTBIT_S24_LE,
49 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 |
50 SNDRV_PCM_RATE_8000,
51 .rate_min = 8000,
Jeeja KPa40e6932015-07-09 15:20:08 +053052 .rate_max = 48000,
Jeeja KP8f35bf32015-11-28 15:01:46 +053053 .channels_min = 1,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +053054 .channels_max = 8,
Jeeja KPa40e6932015-07-09 15:20:08 +053055 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
56 .period_bytes_min = 128,
57 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
58 .periods_min = 2,
59 .periods_max = AZX_MAX_FRAG,
60 .fifo_size = 0,
61};
62
63static inline
64struct hdac_ext_stream *get_hdac_ext_stream(struct snd_pcm_substream *substream)
65{
66 return substream->runtime->private_data;
67}
68
69static struct hdac_ext_bus *get_bus_ctx(struct snd_pcm_substream *substream)
70{
71 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
72 struct hdac_stream *hstream = hdac_stream(stream);
73 struct hdac_bus *bus = hstream->bus;
74
75 return hbus_to_ebus(bus);
76}
77
78static int skl_substream_alloc_pages(struct hdac_ext_bus *ebus,
79 struct snd_pcm_substream *substream,
80 size_t size)
81{
82 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
83
84 hdac_stream(stream)->bufsize = 0;
85 hdac_stream(stream)->period_bytes = 0;
86 hdac_stream(stream)->format_val = 0;
87
88 return snd_pcm_lib_malloc_pages(substream, size);
89}
90
91static int skl_substream_free_pages(struct hdac_bus *bus,
92 struct snd_pcm_substream *substream)
93{
94 return snd_pcm_lib_free_pages(substream);
95}
96
97static void skl_set_pcm_constrains(struct hdac_ext_bus *ebus,
98 struct snd_pcm_runtime *runtime)
99{
100 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
101
102 /* avoid wrap-around with wall-clock */
103 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_TIME,
104 20, 178000000);
105}
106
Jeeja KP05057002015-07-09 15:20:11 +0530107static enum hdac_ext_stream_type skl_get_host_stream_type(struct hdac_ext_bus *ebus)
108{
Vinod Koulec8ae572016-08-04 15:46:01 +0530109 if ((ebus_to_hbus(ebus))->ppcap)
Jeeja KP05057002015-07-09 15:20:11 +0530110 return HDAC_EXT_STREAM_TYPE_HOST;
111 else
112 return HDAC_EXT_STREAM_TYPE_COUPLED;
113}
114
Jeeja KP4557c302015-12-03 23:30:00 +0530115/*
116 * check if the stream opened is marked as ignore_suspend by machine, if so
117 * then enable suspend_active refcount
118 *
119 * The count supend_active does not need lock as it is used in open/close
120 * and suspend context
121 */
122static void skl_set_suspend_active(struct snd_pcm_substream *substream,
123 struct snd_soc_dai *dai, bool enable)
124{
125 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
126 struct snd_soc_dapm_widget *w;
127 struct skl *skl = ebus_to_skl(ebus);
128
129 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
130 w = dai->playback_widget;
131 else
132 w = dai->capture_widget;
133
134 if (w->ignore_suspend && enable)
135 skl->supend_active++;
136 else if (w->ignore_suspend && !enable)
137 skl->supend_active--;
138}
139
Jeeja KPa40e6932015-07-09 15:20:08 +0530140static int skl_pcm_open(struct snd_pcm_substream *substream,
141 struct snd_soc_dai *dai)
142{
143 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
144 struct hdac_ext_stream *stream;
145 struct snd_pcm_runtime *runtime = substream->runtime;
146 struct skl_dma_params *dma_params;
Jeeja KPa40e6932015-07-09 15:20:08 +0530147
148 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
Jeeja KPa40e6932015-07-09 15:20:08 +0530149
150 stream = snd_hdac_ext_stream_assign(ebus, substream,
Jeeja KP05057002015-07-09 15:20:11 +0530151 skl_get_host_stream_type(ebus));
Jeeja KPa40e6932015-07-09 15:20:08 +0530152 if (stream == NULL)
153 return -EBUSY;
154
155 skl_set_pcm_constrains(ebus, runtime);
156
157 /*
158 * disable WALLCLOCK timestamps for capture streams
159 * until we figure out how to handle digital inputs
160 */
161 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
162 runtime->hw.info &= ~SNDRV_PCM_INFO_HAS_WALL_CLOCK; /* legacy */
163 runtime->hw.info &= ~SNDRV_PCM_INFO_HAS_LINK_ATIME;
164 }
165
166 runtime->private_data = stream;
167
168 dma_params = kzalloc(sizeof(*dma_params), GFP_KERNEL);
169 if (!dma_params)
170 return -ENOMEM;
171
172 dma_params->stream_tag = hdac_stream(stream)->stream_tag;
173 snd_soc_dai_set_dma_data(dai, substream, dma_params);
174
175 dev_dbg(dai->dev, "stream tag set in dma params=%d\n",
176 dma_params->stream_tag);
Jeeja KP4557c302015-12-03 23:30:00 +0530177 skl_set_suspend_active(substream, dai, true);
Jeeja KPa40e6932015-07-09 15:20:08 +0530178 snd_pcm_set_sync(substream);
179
180 return 0;
181}
182
183static int skl_get_format(struct snd_pcm_substream *substream,
184 struct snd_soc_dai *dai)
185{
186 struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
187 struct skl_dma_params *dma_params;
Jeeja KP05057002015-07-09 15:20:11 +0530188 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
Jeeja KPa40e6932015-07-09 15:20:08 +0530189 int format_val = 0;
Jeeja KPa40e6932015-07-09 15:20:08 +0530190
Vinod Koulec8ae572016-08-04 15:46:01 +0530191 if ((ebus_to_hbus(ebus))->ppcap) {
Jeeja KP05057002015-07-09 15:20:11 +0530192 struct snd_pcm_runtime *runtime = substream->runtime;
193
194 format_val = snd_hdac_calc_stream_format(runtime->rate,
195 runtime->channels,
196 runtime->format,
197 32, 0);
198 } else {
199 struct snd_soc_dai *codec_dai = rtd->codec_dai;
200
201 dma_params = snd_soc_dai_get_dma_data(codec_dai, substream);
202 if (dma_params)
203 format_val = dma_params->format;
204 }
Jeeja KPa40e6932015-07-09 15:20:08 +0530205
206 return format_val;
207}
208
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530209static int skl_be_prepare(struct snd_pcm_substream *substream,
210 struct snd_soc_dai *dai)
211{
212 struct skl *skl = get_skl_ctx(dai->dev);
213 struct skl_sst *ctx = skl->skl_sst;
214 struct skl_module_cfg *mconfig;
215
Dharageswari.R1a13b1f2016-04-28 18:45:27 +0530216 if (dai->playback_widget->power || dai->capture_widget->power)
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530217 return 0;
218
219 mconfig = skl_tplg_be_get_cpr_module(dai, substream->stream);
220 if (mconfig == NULL)
221 return -EINVAL;
222
223 return skl_dsp_set_dma_control(ctx, mconfig);
224}
225
Jeeja KPa40e6932015-07-09 15:20:08 +0530226static int skl_pcm_prepare(struct snd_pcm_substream *substream,
227 struct snd_soc_dai *dai)
228{
229 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
Jeeja KP20044322016-06-03 18:29:34 +0530230 struct skl *skl = get_skl_ctx(dai->dev);
Jeeja KPa40e6932015-07-09 15:20:08 +0530231 unsigned int format_val;
232 int err;
Jeeja KP20044322016-06-03 18:29:34 +0530233 struct skl_module_cfg *mconfig;
Jeeja KPa40e6932015-07-09 15:20:08 +0530234
235 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
Jeeja KPa40e6932015-07-09 15:20:08 +0530236
Jeeja KP20044322016-06-03 18:29:34 +0530237 mconfig = skl_tplg_fe_get_cpr_module(dai, substream->stream);
238
Jeeja KPa40e6932015-07-09 15:20:08 +0530239 format_val = skl_get_format(substream, dai);
240 dev_dbg(dai->dev, "stream_tag=%d formatvalue=%d\n",
241 hdac_stream(stream)->stream_tag, format_val);
242 snd_hdac_stream_reset(hdac_stream(stream));
243
Jeeja KP20044322016-06-03 18:29:34 +0530244 /* In case of XRUN recovery, reset the FW pipe to clean state */
245 if (mconfig && (substream->runtime->status->state ==
246 SNDRV_PCM_STATE_XRUN))
247 skl_reset_pipe(skl->skl_sst, mconfig->pipe);
248
Jeeja KPa40e6932015-07-09 15:20:08 +0530249 err = snd_hdac_stream_set_params(hdac_stream(stream), format_val);
250 if (err < 0)
251 return err;
252
253 err = snd_hdac_stream_setup(hdac_stream(stream));
254 if (err < 0)
255 return err;
256
257 hdac_stream(stream)->prepared = 1;
258
259 return err;
260}
261
262static int skl_pcm_hw_params(struct snd_pcm_substream *substream,
263 struct snd_pcm_hw_params *params,
264 struct snd_soc_dai *dai)
265{
266 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
Jeeja KP05057002015-07-09 15:20:11 +0530267 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
Jeeja KPa40e6932015-07-09 15:20:08 +0530268 struct snd_pcm_runtime *runtime = substream->runtime;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100269 struct skl_pipe_params p_params = {0};
270 struct skl_module_cfg *m_cfg;
Jeeja KP05057002015-07-09 15:20:11 +0530271 int ret, dma_id;
Jeeja KPa40e6932015-07-09 15:20:08 +0530272
273 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
274 ret = skl_substream_alloc_pages(ebus, substream,
275 params_buffer_bytes(params));
276 if (ret < 0)
277 return ret;
278
279 dev_dbg(dai->dev, "format_val, rate=%d, ch=%d, format=%d\n",
280 runtime->rate, runtime->channels, runtime->format);
281
Jeeja KP05057002015-07-09 15:20:11 +0530282 dma_id = hdac_stream(stream)->stream_tag - 1;
283 dev_dbg(dai->dev, "dma_id=%d\n", dma_id);
284
Jeeja KPb663a8c2015-10-07 11:31:57 +0100285 p_params.s_fmt = snd_pcm_format_width(params_format(params));
286 p_params.ch = params_channels(params);
287 p_params.s_freq = params_rate(params);
288 p_params.host_dma_id = dma_id;
289 p_params.stream = substream->stream;
290
291 m_cfg = skl_tplg_fe_get_cpr_module(dai, p_params.stream);
292 if (m_cfg)
293 skl_tplg_update_pipe_params(dai->dev, m_cfg, &p_params);
294
Jeeja KPa40e6932015-07-09 15:20:08 +0530295 return 0;
296}
297
298static void skl_pcm_close(struct snd_pcm_substream *substream,
299 struct snd_soc_dai *dai)
300{
301 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
Jeeja KP05057002015-07-09 15:20:11 +0530302 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
Jeeja KPa40e6932015-07-09 15:20:08 +0530303 struct skl_dma_params *dma_params = NULL;
Dharageswari.R721c3e32015-12-18 15:12:04 +0530304 struct skl *skl = ebus_to_skl(ebus);
Jeeja KPa40e6932015-07-09 15:20:08 +0530305
306 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
Jeeja KP05057002015-07-09 15:20:11 +0530307
308 snd_hdac_ext_stream_release(stream, skl_get_host_stream_type(ebus));
Jeeja KPa40e6932015-07-09 15:20:08 +0530309
310 dma_params = snd_soc_dai_get_dma_data(dai, substream);
311 /*
312 * now we should set this to NULL as we are freeing by the
313 * dma_params
314 */
315 snd_soc_dai_set_dma_data(dai, substream, NULL);
Jeeja KP4557c302015-12-03 23:30:00 +0530316 skl_set_suspend_active(substream, dai, false);
Jeeja KPa40e6932015-07-09 15:20:08 +0530317
Dharageswari.R721c3e32015-12-18 15:12:04 +0530318 /*
319 * check if close is for "Reference Pin" and set back the
320 * CGCTL.MISCBDCGE if disabled by driver
321 */
322 if (!strncmp(dai->name, "Reference Pin", 13) &&
323 skl->skl_sst->miscbdcg_disabled) {
324 skl->skl_sst->enable_miscbdcge(dai->dev, true);
325 skl->skl_sst->miscbdcg_disabled = false;
326 }
327
Jeeja KPa40e6932015-07-09 15:20:08 +0530328 kfree(dma_params);
329}
330
331static int skl_pcm_hw_free(struct snd_pcm_substream *substream,
332 struct snd_soc_dai *dai)
333{
334 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
335 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
336
337 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
338
339 snd_hdac_stream_cleanup(hdac_stream(stream));
340 hdac_stream(stream)->prepared = 0;
341
342 return skl_substream_free_pages(ebus_to_hbus(ebus), substream);
343}
344
Jeeja KPb663a8c2015-10-07 11:31:57 +0100345static int skl_be_hw_params(struct snd_pcm_substream *substream,
346 struct snd_pcm_hw_params *params,
347 struct snd_soc_dai *dai)
348{
349 struct skl_pipe_params p_params = {0};
350
351 p_params.s_fmt = snd_pcm_format_width(params_format(params));
352 p_params.ch = params_channels(params);
353 p_params.s_freq = params_rate(params);
354 p_params.stream = substream->stream;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100355
Jeeja KP4bd073f2015-10-27 09:22:45 +0900356 return skl_tplg_be_update_params(dai, &p_params);
Jeeja KPb663a8c2015-10-07 11:31:57 +0100357}
358
Jeeja KPd1730c32015-10-27 09:22:53 +0900359static int skl_decoupled_trigger(struct snd_pcm_substream *substream,
360 int cmd)
361{
362 struct hdac_ext_bus *ebus = get_bus_ctx(substream);
363 struct hdac_bus *bus = ebus_to_hbus(ebus);
364 struct hdac_ext_stream *stream;
365 int start;
366 unsigned long cookie;
367 struct hdac_stream *hstr;
368
369 stream = get_hdac_ext_stream(substream);
370 hstr = hdac_stream(stream);
371
372 if (!hstr->prepared)
373 return -EPIPE;
374
375 switch (cmd) {
376 case SNDRV_PCM_TRIGGER_START:
377 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
378 case SNDRV_PCM_TRIGGER_RESUME:
379 start = 1;
380 break;
381
382 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
383 case SNDRV_PCM_TRIGGER_SUSPEND:
384 case SNDRV_PCM_TRIGGER_STOP:
385 start = 0;
386 break;
387
388 default:
389 return -EINVAL;
390 }
391
392 spin_lock_irqsave(&bus->reg_lock, cookie);
393
394 if (start) {
395 snd_hdac_stream_start(hdac_stream(stream), true);
396 snd_hdac_stream_timecounter_init(hstr, 0);
397 } else {
398 snd_hdac_stream_stop(hdac_stream(stream));
399 }
400
401 spin_unlock_irqrestore(&bus->reg_lock, cookie);
402
403 return 0;
404}
405
Jeeja KPb663a8c2015-10-07 11:31:57 +0100406static int skl_pcm_trigger(struct snd_pcm_substream *substream, int cmd,
407 struct snd_soc_dai *dai)
408{
409 struct skl *skl = get_skl_ctx(dai->dev);
410 struct skl_sst *ctx = skl->skl_sst;
411 struct skl_module_cfg *mconfig;
Jeeja KP7e3a17d2015-11-23 22:26:24 +0530412 struct hdac_ext_bus *ebus = get_bus_ctx(substream);
413 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
Jeeja KP9a655db2016-04-28 18:45:28 +0530414 struct snd_soc_dapm_widget *w;
Jeeja KPd1730c32015-10-27 09:22:53 +0900415 int ret;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100416
417 mconfig = skl_tplg_fe_get_cpr_module(dai, substream->stream);
418 if (!mconfig)
419 return -EIO;
420
Jeeja KP9a655db2016-04-28 18:45:28 +0530421 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
422 w = dai->playback_widget;
423 else
424 w = dai->capture_widget;
425
Jeeja KPb663a8c2015-10-07 11:31:57 +0100426 switch (cmd) {
Jeeja KP7e3a17d2015-11-23 22:26:24 +0530427 case SNDRV_PCM_TRIGGER_RESUME:
Jeeja KP9a655db2016-04-28 18:45:28 +0530428 if (!w->ignore_suspend) {
429 skl_pcm_prepare(substream, dai);
430 /*
431 * enable DMA Resume enable bit for the stream, set the
432 * dpib & lpib position to resume before starting the
433 * DMA
434 */
435 snd_hdac_ext_stream_drsm_enable(ebus, true,
436 hdac_stream(stream)->index);
437 snd_hdac_ext_stream_set_dpibr(ebus, stream,
438 stream->dpib);
439 snd_hdac_ext_stream_set_lpib(stream, stream->lpib);
440 }
Jeeja KP748a1d52015-12-18 15:12:07 +0530441
Jeeja KPd1730c32015-10-27 09:22:53 +0900442 case SNDRV_PCM_TRIGGER_START:
Jeeja KPb663a8c2015-10-07 11:31:57 +0100443 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Jeeja KPd1730c32015-10-27 09:22:53 +0900444 /*
445 * Start HOST DMA and Start FE Pipe.This is to make sure that
446 * there are no underrun/overrun in the case when the FE
447 * pipeline is started but there is a delay in starting the
448 * DMA channel on the host.
449 */
Jeeja KP7e3a17d2015-11-23 22:26:24 +0530450 snd_hdac_ext_stream_decouple(ebus, stream, true);
Jeeja KPd1730c32015-10-27 09:22:53 +0900451 ret = skl_decoupled_trigger(substream, cmd);
452 if (ret < 0)
453 return ret;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100454 return skl_run_pipe(ctx, mconfig->pipe);
Jeeja KPd1730c32015-10-27 09:22:53 +0900455 break;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100456
457 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
458 case SNDRV_PCM_TRIGGER_SUSPEND:
Jeeja KPd1730c32015-10-27 09:22:53 +0900459 case SNDRV_PCM_TRIGGER_STOP:
460 /*
461 * Stop FE Pipe first and stop DMA. This is to make sure that
462 * there are no underrun/overrun in the case if there is a delay
463 * between the two operations.
464 */
465 ret = skl_stop_pipe(ctx, mconfig->pipe);
466 if (ret < 0)
467 return ret;
468
469 ret = skl_decoupled_trigger(substream, cmd);
Jeeja KP9a655db2016-04-28 18:45:28 +0530470 if ((cmd == SNDRV_PCM_TRIGGER_SUSPEND) && !w->ignore_suspend) {
Jeeja KP748a1d52015-12-18 15:12:07 +0530471 /* save the dpib and lpib positions */
472 stream->dpib = readl(ebus->bus.remap_addr +
473 AZX_REG_VS_SDXDPIB_XBASE +
474 (AZX_REG_VS_SDXDPIB_XINTERVAL *
475 hdac_stream(stream)->index));
476
477 stream->lpib = snd_hdac_stream_get_pos_lpib(
478 hdac_stream(stream));
Jeeja KP7e3a17d2015-11-23 22:26:24 +0530479 snd_hdac_ext_stream_decouple(ebus, stream, false);
Jeeja KP748a1d52015-12-18 15:12:07 +0530480 }
Jeeja KPd1730c32015-10-27 09:22:53 +0900481 break;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100482
483 default:
Jeeja KPd1730c32015-10-27 09:22:53 +0900484 return -EINVAL;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100485 }
Jeeja KPd1730c32015-10-27 09:22:53 +0900486
487 return 0;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100488}
489
Jeeja KP05057002015-07-09 15:20:11 +0530490static int skl_link_hw_params(struct snd_pcm_substream *substream,
491 struct snd_pcm_hw_params *params,
492 struct snd_soc_dai *dai)
493{
494 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
495 struct hdac_ext_stream *link_dev;
496 struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
Subhransu S. Prustyaceb5d22016-02-17 21:34:05 +0530497 struct hdac_ext_dma_params *dma_params;
Jeeja KP05057002015-07-09 15:20:11 +0530498 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100499 struct skl_pipe_params p_params = {0};
Jeeja KP05057002015-07-09 15:20:11 +0530500
Jeeja KP05057002015-07-09 15:20:11 +0530501 link_dev = snd_hdac_ext_stream_assign(ebus, substream,
502 HDAC_EXT_STREAM_TYPE_LINK);
503 if (!link_dev)
504 return -EBUSY;
505
506 snd_soc_dai_set_dma_data(dai, substream, (void *)link_dev);
507
508 /* set the stream tag in the codec dai dma params */
Subhransu S. Prustyaceb5d22016-02-17 21:34:05 +0530509 dma_params = snd_soc_dai_get_dma_data(codec_dai, substream);
Jeeja KP05057002015-07-09 15:20:11 +0530510 if (dma_params)
511 dma_params->stream_tag = hdac_stream(link_dev)->stream_tag;
Jeeja KPb663a8c2015-10-07 11:31:57 +0100512
513 p_params.s_fmt = snd_pcm_format_width(params_format(params));
514 p_params.ch = params_channels(params);
515 p_params.s_freq = params_rate(params);
516 p_params.stream = substream->stream;
517 p_params.link_dma_id = hdac_stream(link_dev)->stream_tag - 1;
518
Jeeja KP4bd073f2015-10-27 09:22:45 +0900519 return skl_tplg_be_update_params(dai, &p_params);
Jeeja KP05057002015-07-09 15:20:11 +0530520}
521
522static int skl_link_pcm_prepare(struct snd_pcm_substream *substream,
523 struct snd_soc_dai *dai)
524{
525 struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
526 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
527 struct hdac_ext_stream *link_dev =
528 snd_soc_dai_get_dma_data(dai, substream);
529 unsigned int format_val = 0;
530 struct skl_dma_params *dma_params;
531 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Jeeja KP05057002015-07-09 15:20:11 +0530532 struct hdac_ext_link *link;
Jeeja KP20044322016-06-03 18:29:34 +0530533 struct skl *skl = get_skl_ctx(dai->dev);
534 struct skl_module_cfg *mconfig = NULL;
Jeeja KP05057002015-07-09 15:20:11 +0530535
Jeeja KP05057002015-07-09 15:20:11 +0530536 dma_params = (struct skl_dma_params *)
537 snd_soc_dai_get_dma_data(codec_dai, substream);
538 if (dma_params)
539 format_val = dma_params->format;
540 dev_dbg(dai->dev, "stream_tag=%d formatvalue=%d codec_dai_name=%s\n",
541 hdac_stream(link_dev)->stream_tag, format_val, codec_dai->name);
542
Jeeja KP05057002015-07-09 15:20:11 +0530543 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name);
544 if (!link)
545 return -EINVAL;
546
Jeeja KP920982c2015-12-18 15:12:08 +0530547 snd_hdac_ext_link_stream_reset(link_dev);
548
Jeeja KP20044322016-06-03 18:29:34 +0530549 /* In case of XRUN recovery, reset the FW pipe to clean state */
550 mconfig = skl_tplg_be_get_cpr_module(dai, substream->stream);
551 if (mconfig && (substream->runtime->status->state ==
552 SNDRV_PCM_STATE_XRUN))
553 skl_reset_pipe(skl->skl_sst, mconfig->pipe);
554
Jeeja KP920982c2015-12-18 15:12:08 +0530555 snd_hdac_ext_link_stream_setup(link_dev, format_val);
556
Jeeja KP05057002015-07-09 15:20:11 +0530557 snd_hdac_ext_link_set_stream_id(link, hdac_stream(link_dev)->stream_tag);
558 link_dev->link_prepared = 1;
559
560 return 0;
561}
562
563static int skl_link_pcm_trigger(struct snd_pcm_substream *substream,
564 int cmd, struct snd_soc_dai *dai)
565{
566 struct hdac_ext_stream *link_dev =
567 snd_soc_dai_get_dma_data(dai, substream);
Jeeja KP920982c2015-12-18 15:12:08 +0530568 struct hdac_ext_bus *ebus = get_bus_ctx(substream);
569 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream);
Jeeja KP05057002015-07-09 15:20:11 +0530570
571 dev_dbg(dai->dev, "In %s cmd=%d\n", __func__, cmd);
572 switch (cmd) {
Jeeja KP920982c2015-12-18 15:12:08 +0530573 case SNDRV_PCM_TRIGGER_RESUME:
574 skl_link_pcm_prepare(substream, dai);
Jeeja KP05057002015-07-09 15:20:11 +0530575 case SNDRV_PCM_TRIGGER_START:
576 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Jeeja KP920982c2015-12-18 15:12:08 +0530577 snd_hdac_ext_stream_decouple(ebus, stream, true);
Jeeja KP05057002015-07-09 15:20:11 +0530578 snd_hdac_ext_link_stream_start(link_dev);
579 break;
580
581 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
582 case SNDRV_PCM_TRIGGER_SUSPEND:
583 case SNDRV_PCM_TRIGGER_STOP:
584 snd_hdac_ext_link_stream_clear(link_dev);
Jeeja KP920982c2015-12-18 15:12:08 +0530585 if (cmd == SNDRV_PCM_TRIGGER_SUSPEND)
586 snd_hdac_ext_stream_decouple(ebus, stream, false);
Jeeja KP05057002015-07-09 15:20:11 +0530587 break;
588
589 default:
590 return -EINVAL;
591 }
592 return 0;
593}
594
595static int skl_link_hw_free(struct snd_pcm_substream *substream,
596 struct snd_soc_dai *dai)
597{
598 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
599 struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
600 struct hdac_ext_stream *link_dev =
601 snd_soc_dai_get_dma_data(dai, substream);
602 struct hdac_ext_link *link;
603
604 dev_dbg(dai->dev, "%s: %s\n", __func__, dai->name);
605
606 link_dev->link_prepared = 0;
607
608 link = snd_hdac_ext_bus_get_link(ebus, rtd->codec->component.name);
609 if (!link)
610 return -EINVAL;
611
612 snd_hdac_ext_link_clear_stream_id(link, hdac_stream(link_dev)->stream_tag);
613 snd_hdac_ext_stream_release(link_dev, HDAC_EXT_STREAM_TYPE_LINK);
614 return 0;
615}
616
Jeeja KPa40e6932015-07-09 15:20:08 +0530617static struct snd_soc_dai_ops skl_pcm_dai_ops = {
618 .startup = skl_pcm_open,
619 .shutdown = skl_pcm_close,
620 .prepare = skl_pcm_prepare,
621 .hw_params = skl_pcm_hw_params,
622 .hw_free = skl_pcm_hw_free,
Jeeja KPb663a8c2015-10-07 11:31:57 +0100623 .trigger = skl_pcm_trigger,
Jeeja KPa40e6932015-07-09 15:20:08 +0530624};
625
Jeeja KP05057002015-07-09 15:20:11 +0530626static struct snd_soc_dai_ops skl_dmic_dai_ops = {
Jeeja KPb663a8c2015-10-07 11:31:57 +0100627 .hw_params = skl_be_hw_params,
Jeeja KPb663a8c2015-10-07 11:31:57 +0100628};
629
630static struct snd_soc_dai_ops skl_be_ssp_dai_ops = {
Jeeja KPb663a8c2015-10-07 11:31:57 +0100631 .hw_params = skl_be_hw_params,
Dharageswari.Rc115fa52016-02-05 12:19:07 +0530632 .prepare = skl_be_prepare,
Jeeja KP05057002015-07-09 15:20:11 +0530633};
634
635static struct snd_soc_dai_ops skl_link_dai_ops = {
Jeeja KP05057002015-07-09 15:20:11 +0530636 .prepare = skl_link_pcm_prepare,
637 .hw_params = skl_link_hw_params,
638 .hw_free = skl_link_hw_free,
639 .trigger = skl_link_pcm_trigger,
Jeeja KP05057002015-07-09 15:20:11 +0530640};
641
Jeeja KPa40e6932015-07-09 15:20:08 +0530642static struct snd_soc_dai_driver skl_platform_dai[] = {
643{
644 .name = "System Pin",
645 .ops = &skl_pcm_dai_ops,
646 .playback = {
647 .stream_name = "System Playback",
648 .channels_min = HDA_MONO,
649 .channels_max = HDA_STEREO,
650 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_8000,
Samaga Krishnadde53bc2016-08-24 18:03:21 +0530651 .formats = SNDRV_PCM_FMTBIT_S16_LE |
652 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
Jeeja KPa40e6932015-07-09 15:20:08 +0530653 },
654 .capture = {
655 .stream_name = "System Capture",
656 .channels_min = HDA_MONO,
657 .channels_max = HDA_STEREO,
658 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
659 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
660 },
661},
662{
Jeeja KP05057002015-07-09 15:20:11 +0530663 .name = "Reference Pin",
664 .ops = &skl_pcm_dai_ops,
665 .capture = {
666 .stream_name = "Reference Capture",
667 .channels_min = HDA_MONO,
Jeeja KP8f35bf32015-11-28 15:01:46 +0530668 .channels_max = HDA_QUAD,
Jeeja KP05057002015-07-09 15:20:11 +0530669 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
670 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
671 },
672},
673{
Jeeja KPa40e6932015-07-09 15:20:08 +0530674 .name = "Deepbuffer Pin",
675 .ops = &skl_pcm_dai_ops,
676 .playback = {
677 .stream_name = "Deepbuffer Playback",
678 .channels_min = HDA_STEREO,
679 .channels_max = HDA_STEREO,
680 .rates = SNDRV_PCM_RATE_48000,
681 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
682 },
683},
684{
685 .name = "LowLatency Pin",
686 .ops = &skl_pcm_dai_ops,
687 .playback = {
688 .stream_name = "Low Latency Playback",
689 .channels_min = HDA_STEREO,
690 .channels_max = HDA_STEREO,
691 .rates = SNDRV_PCM_RATE_48000,
692 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
693 },
694},
Jeeja KP8f35bf32015-11-28 15:01:46 +0530695{
696 .name = "DMIC Pin",
697 .ops = &skl_pcm_dai_ops,
698 .capture = {
699 .stream_name = "DMIC Capture",
700 .channels_min = HDA_MONO,
701 .channels_max = HDA_QUAD,
702 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
703 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
704 },
705},
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530706{
707 .name = "HDMI1 Pin",
708 .ops = &skl_pcm_dai_ops,
709 .playback = {
710 .stream_name = "HDMI1 Playback",
711 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530712 .channels_max = 8,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530713 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
714 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
715 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
716 SNDRV_PCM_RATE_192000,
717 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE |
718 SNDRV_PCM_FMTBIT_S32_LE,
719 },
720},
721{
722 .name = "HDMI2 Pin",
723 .ops = &skl_pcm_dai_ops,
724 .playback = {
725 .stream_name = "HDMI2 Playback",
726 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530727 .channels_max = 8,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530728 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
729 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
730 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
731 SNDRV_PCM_RATE_192000,
732 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE |
733 SNDRV_PCM_FMTBIT_S32_LE,
734 },
735},
736{
737 .name = "HDMI3 Pin",
738 .ops = &skl_pcm_dai_ops,
739 .playback = {
740 .stream_name = "HDMI3 Playback",
741 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530742 .channels_max = 8,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530743 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
744 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
745 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
746 SNDRV_PCM_RATE_192000,
747 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE |
748 SNDRV_PCM_FMTBIT_S32_LE,
749 },
750},
Jeeja KP8f35bf32015-11-28 15:01:46 +0530751
Jeeja KP05057002015-07-09 15:20:11 +0530752/* BE CPU Dais */
753{
Jeeja KPb663a8c2015-10-07 11:31:57 +0100754 .name = "SSP0 Pin",
755 .ops = &skl_be_ssp_dai_ops,
756 .playback = {
757 .stream_name = "ssp0 Tx",
758 .channels_min = HDA_STEREO,
759 .channels_max = HDA_STEREO,
760 .rates = SNDRV_PCM_RATE_48000,
761 .formats = SNDRV_PCM_FMTBIT_S16_LE,
762 },
763 .capture = {
764 .stream_name = "ssp0 Rx",
765 .channels_min = HDA_STEREO,
766 .channels_max = HDA_STEREO,
767 .rates = SNDRV_PCM_RATE_48000,
768 .formats = SNDRV_PCM_FMTBIT_S16_LE,
769 },
770},
771{
Jeeja KPc80fd4d2015-11-05 22:53:06 +0530772 .name = "SSP1 Pin",
773 .ops = &skl_be_ssp_dai_ops,
774 .playback = {
775 .stream_name = "ssp1 Tx",
776 .channels_min = HDA_STEREO,
777 .channels_max = HDA_STEREO,
778 .rates = SNDRV_PCM_RATE_48000,
779 .formats = SNDRV_PCM_FMTBIT_S16_LE,
780 },
781 .capture = {
782 .stream_name = "ssp1 Rx",
783 .channels_min = HDA_STEREO,
784 .channels_max = HDA_STEREO,
785 .rates = SNDRV_PCM_RATE_48000,
786 .formats = SNDRV_PCM_FMTBIT_S16_LE,
787 },
788},
789{
Pardha Saradhi Kfcc494a2016-05-10 22:02:05 +0530790 .name = "SSP2 Pin",
791 .ops = &skl_be_ssp_dai_ops,
792 .playback = {
793 .stream_name = "ssp2 Tx",
794 .channels_min = HDA_STEREO,
795 .channels_max = HDA_STEREO,
796 .rates = SNDRV_PCM_RATE_48000,
797 .formats = SNDRV_PCM_FMTBIT_S16_LE,
798 },
799 .capture = {
800 .stream_name = "ssp2 Rx",
801 .channels_min = HDA_STEREO,
802 .channels_max = HDA_STEREO,
803 .rates = SNDRV_PCM_RATE_48000,
804 .formats = SNDRV_PCM_FMTBIT_S16_LE,
805 },
806},
807{
808 .name = "SSP3 Pin",
809 .ops = &skl_be_ssp_dai_ops,
810 .playback = {
811 .stream_name = "ssp3 Tx",
812 .channels_min = HDA_STEREO,
813 .channels_max = HDA_STEREO,
814 .rates = SNDRV_PCM_RATE_48000,
815 .formats = SNDRV_PCM_FMTBIT_S16_LE,
816 },
817 .capture = {
818 .stream_name = "ssp3 Rx",
819 .channels_min = HDA_STEREO,
820 .channels_max = HDA_STEREO,
821 .rates = SNDRV_PCM_RATE_48000,
822 .formats = SNDRV_PCM_FMTBIT_S16_LE,
823 },
824},
825{
826 .name = "SSP4 Pin",
827 .ops = &skl_be_ssp_dai_ops,
828 .playback = {
829 .stream_name = "ssp4 Tx",
830 .channels_min = HDA_STEREO,
831 .channels_max = HDA_STEREO,
832 .rates = SNDRV_PCM_RATE_48000,
833 .formats = SNDRV_PCM_FMTBIT_S16_LE,
834 },
835 .capture = {
836 .stream_name = "ssp4 Rx",
837 .channels_min = HDA_STEREO,
838 .channels_max = HDA_STEREO,
839 .rates = SNDRV_PCM_RATE_48000,
840 .formats = SNDRV_PCM_FMTBIT_S16_LE,
841 },
842},
843{
844 .name = "SSP5 Pin",
845 .ops = &skl_be_ssp_dai_ops,
846 .playback = {
847 .stream_name = "ssp5 Tx",
848 .channels_min = HDA_STEREO,
849 .channels_max = HDA_STEREO,
850 .rates = SNDRV_PCM_RATE_48000,
851 .formats = SNDRV_PCM_FMTBIT_S16_LE,
852 },
853 .capture = {
854 .stream_name = "ssp5 Rx",
855 .channels_min = HDA_STEREO,
856 .channels_max = HDA_STEREO,
857 .rates = SNDRV_PCM_RATE_48000,
858 .formats = SNDRV_PCM_FMTBIT_S16_LE,
859 },
860},
861{
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530862 .name = "iDisp1 Pin",
Jeeja KP05057002015-07-09 15:20:11 +0530863 .ops = &skl_link_dai_ops,
864 .playback = {
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530865 .stream_name = "iDisp1 Tx",
Jeeja KP05057002015-07-09 15:20:11 +0530866 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530867 .channels_max = 8,
Jeeja KP05057002015-07-09 15:20:11 +0530868 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_48000,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530869 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE |
870 SNDRV_PCM_FMTBIT_S24_LE,
871 },
872},
873{
874 .name = "iDisp2 Pin",
875 .ops = &skl_link_dai_ops,
876 .playback = {
877 .stream_name = "iDisp2 Tx",
878 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530879 .channels_max = 8,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530880 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|
881 SNDRV_PCM_RATE_48000,
882 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE |
883 SNDRV_PCM_FMTBIT_S24_LE,
884 },
885},
886{
887 .name = "iDisp3 Pin",
888 .ops = &skl_link_dai_ops,
889 .playback = {
890 .stream_name = "iDisp3 Tx",
891 .channels_min = HDA_STEREO,
Subhransu S. Prusty7e12dc82016-04-14 10:07:35 +0530892 .channels_max = 8,
Subhransu S. Prusty8cca87c2016-02-17 21:34:07 +0530893 .rates = SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_16000|
894 SNDRV_PCM_RATE_48000,
895 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE |
896 SNDRV_PCM_FMTBIT_S24_LE,
Jeeja KP05057002015-07-09 15:20:11 +0530897 },
898},
899{
900 .name = "DMIC01 Pin",
901 .ops = &skl_dmic_dai_ops,
902 .capture = {
903 .stream_name = "DMIC01 Rx",
Jeeja KP8f35bf32015-11-28 15:01:46 +0530904 .channels_min = HDA_MONO,
905 .channels_max = HDA_QUAD,
Jeeja KP05057002015-07-09 15:20:11 +0530906 .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_16000,
907 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
908 },
909},
910{
Jeeja KP05057002015-07-09 15:20:11 +0530911 .name = "HD-Codec Pin",
912 .ops = &skl_link_dai_ops,
913 .playback = {
914 .stream_name = "HD-Codec Tx",
915 .channels_min = HDA_STEREO,
916 .channels_max = HDA_STEREO,
917 .rates = SNDRV_PCM_RATE_48000,
918 .formats = SNDRV_PCM_FMTBIT_S16_LE,
919 },
920 .capture = {
921 .stream_name = "HD-Codec Rx",
922 .channels_min = HDA_STEREO,
923 .channels_max = HDA_STEREO,
924 .rates = SNDRV_PCM_RATE_48000,
925 .formats = SNDRV_PCM_FMTBIT_S16_LE,
926 },
927},
Jeeja KPa40e6932015-07-09 15:20:08 +0530928};
929
930static int skl_platform_open(struct snd_pcm_substream *substream)
931{
932 struct snd_pcm_runtime *runtime;
933 struct snd_soc_pcm_runtime *rtd = substream->private_data;
934 struct snd_soc_dai_link *dai_link = rtd->dai_link;
935
936 dev_dbg(rtd->cpu_dai->dev, "In %s:%s\n", __func__,
937 dai_link->cpu_dai_name);
938
939 runtime = substream->runtime;
940 snd_soc_set_runtime_hwparams(substream, &azx_pcm_hw);
941
942 return 0;
943}
944
Jeeja KPb663a8c2015-10-07 11:31:57 +0100945static int skl_coupled_trigger(struct snd_pcm_substream *substream,
Jeeja KPa40e6932015-07-09 15:20:08 +0530946 int cmd)
947{
948 struct hdac_ext_bus *ebus = get_bus_ctx(substream);
949 struct hdac_bus *bus = ebus_to_hbus(ebus);
950 struct hdac_ext_stream *stream;
951 struct snd_pcm_substream *s;
952 bool start;
953 int sbits = 0;
954 unsigned long cookie;
955 struct hdac_stream *hstr;
956
957 stream = get_hdac_ext_stream(substream);
958 hstr = hdac_stream(stream);
959
960 dev_dbg(bus->dev, "In %s cmd=%d\n", __func__, cmd);
961
962 if (!hstr->prepared)
963 return -EPIPE;
964
965 switch (cmd) {
966 case SNDRV_PCM_TRIGGER_START:
967 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
968 case SNDRV_PCM_TRIGGER_RESUME:
969 start = true;
970 break;
971
972 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
973 case SNDRV_PCM_TRIGGER_SUSPEND:
974 case SNDRV_PCM_TRIGGER_STOP:
975 start = false;
976 break;
977
978 default:
979 return -EINVAL;
980 }
981
982 snd_pcm_group_for_each_entry(s, substream) {
983 if (s->pcm->card != substream->pcm->card)
984 continue;
985 stream = get_hdac_ext_stream(s);
986 sbits |= 1 << hdac_stream(stream)->index;
987 snd_pcm_trigger_done(s, substream);
988 }
989
990 spin_lock_irqsave(&bus->reg_lock, cookie);
991
992 /* first, set SYNC bits of corresponding streams */
993 snd_hdac_stream_sync_trigger(hstr, true, sbits, AZX_REG_SSYNC);
994
995 snd_pcm_group_for_each_entry(s, substream) {
996 if (s->pcm->card != substream->pcm->card)
997 continue;
998 stream = get_hdac_ext_stream(s);
999 if (start)
1000 snd_hdac_stream_start(hdac_stream(stream), true);
1001 else
1002 snd_hdac_stream_stop(hdac_stream(stream));
1003 }
1004 spin_unlock_irqrestore(&bus->reg_lock, cookie);
1005
1006 snd_hdac_stream_sync(hstr, start, sbits);
1007
1008 spin_lock_irqsave(&bus->reg_lock, cookie);
1009
1010 /* reset SYNC bits */
1011 snd_hdac_stream_sync_trigger(hstr, false, sbits, AZX_REG_SSYNC);
1012 if (start)
1013 snd_hdac_stream_timecounter_init(hstr, sbits);
1014 spin_unlock_irqrestore(&bus->reg_lock, cookie);
1015
1016 return 0;
1017}
1018
Jeeja KP05057002015-07-09 15:20:11 +05301019static int skl_platform_pcm_trigger(struct snd_pcm_substream *substream,
1020 int cmd)
1021{
1022 struct hdac_ext_bus *ebus = get_bus_ctx(substream);
1023
Vinod Koulfc947332016-08-24 18:03:14 +05301024 if (!(ebus_to_hbus(ebus))->ppcap)
Jeeja KPb663a8c2015-10-07 11:31:57 +01001025 return skl_coupled_trigger(substream, cmd);
Jeeja KPd1730c32015-10-27 09:22:53 +09001026
1027 return 0;
Jeeja KP05057002015-07-09 15:20:11 +05301028}
1029
Jeeja KP7b961442016-06-03 18:29:43 +05301030static snd_pcm_uframes_t skl_platform_pcm_pointer
1031 (struct snd_pcm_substream *substream)
Jeeja KPa40e6932015-07-09 15:20:08 +05301032{
Jeeja KP7b961442016-06-03 18:29:43 +05301033 struct hdac_ext_stream *hstream = get_hdac_ext_stream(substream);
Jeeja KPa40e6932015-07-09 15:20:08 +05301034 unsigned int pos;
Jeeja KPa40e6932015-07-09 15:20:08 +05301035
1036 /* use the position buffer as default */
1037 pos = snd_hdac_stream_get_pos_posbuf(hdac_stream(hstream));
1038
1039 if (pos >= hdac_stream(hstream)->bufsize)
1040 pos = 0;
1041
Jeeja KP7b961442016-06-03 18:29:43 +05301042 return bytes_to_frames(substream->runtime, pos);
Jeeja KPa40e6932015-07-09 15:20:08 +05301043}
1044
1045static u64 skl_adjust_codec_delay(struct snd_pcm_substream *substream,
1046 u64 nsec)
1047{
1048 struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
1049 struct snd_soc_dai *codec_dai = rtd->codec_dai;
1050 u64 codec_frames, codec_nsecs;
1051
1052 if (!codec_dai->driver->ops->delay)
1053 return nsec;
1054
1055 codec_frames = codec_dai->driver->ops->delay(substream, codec_dai);
1056 codec_nsecs = div_u64(codec_frames * 1000000000LL,
1057 substream->runtime->rate);
1058
1059 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
1060 return nsec + codec_nsecs;
1061
1062 return (nsec > codec_nsecs) ? nsec - codec_nsecs : 0;
1063}
1064
1065static int skl_get_time_info(struct snd_pcm_substream *substream,
1066 struct timespec *system_ts, struct timespec *audio_ts,
1067 struct snd_pcm_audio_tstamp_config *audio_tstamp_config,
1068 struct snd_pcm_audio_tstamp_report *audio_tstamp_report)
1069{
1070 struct hdac_ext_stream *sstream = get_hdac_ext_stream(substream);
1071 struct hdac_stream *hstr = hdac_stream(sstream);
1072 u64 nsec;
1073
1074 if ((substream->runtime->hw.info & SNDRV_PCM_INFO_HAS_LINK_ATIME) &&
1075 (audio_tstamp_config->type_requested == SNDRV_PCM_AUDIO_TSTAMP_TYPE_LINK)) {
1076
1077 snd_pcm_gettime(substream->runtime, system_ts);
1078
1079 nsec = timecounter_read(&hstr->tc);
1080 nsec = div_u64(nsec, 3); /* can be optimized */
1081 if (audio_tstamp_config->report_delay)
1082 nsec = skl_adjust_codec_delay(substream, nsec);
1083
1084 *audio_ts = ns_to_timespec(nsec);
1085
1086 audio_tstamp_report->actual_type = SNDRV_PCM_AUDIO_TSTAMP_TYPE_LINK;
1087 audio_tstamp_report->accuracy_report = 1; /* rest of struct is valid */
1088 audio_tstamp_report->accuracy = 42; /* 24MHzWallClk == 42ns resolution */
1089
1090 } else {
1091 audio_tstamp_report->actual_type = SNDRV_PCM_AUDIO_TSTAMP_TYPE_DEFAULT;
1092 }
1093
1094 return 0;
1095}
1096
Julia Lawall115c7252016-09-08 02:35:23 +02001097static const struct snd_pcm_ops skl_platform_ops = {
Jeeja KPa40e6932015-07-09 15:20:08 +05301098 .open = skl_platform_open,
1099 .ioctl = snd_pcm_lib_ioctl,
1100 .trigger = skl_platform_pcm_trigger,
1101 .pointer = skl_platform_pcm_pointer,
1102 .get_time_info = skl_get_time_info,
1103 .mmap = snd_pcm_lib_default_mmap,
1104 .page = snd_pcm_sgbuf_ops_page,
1105};
1106
1107static void skl_pcm_free(struct snd_pcm *pcm)
1108{
1109 snd_pcm_lib_preallocate_free_for_all(pcm);
1110}
1111
1112#define MAX_PREALLOC_SIZE (32 * 1024 * 1024)
1113
1114static int skl_pcm_new(struct snd_soc_pcm_runtime *rtd)
1115{
1116 struct snd_soc_dai *dai = rtd->cpu_dai;
1117 struct hdac_ext_bus *ebus = dev_get_drvdata(dai->dev);
1118 struct snd_pcm *pcm = rtd->pcm;
1119 unsigned int size;
1120 int retval = 0;
1121 struct skl *skl = ebus_to_skl(ebus);
1122
1123 if (dai->driver->playback.channels_min ||
1124 dai->driver->capture.channels_min) {
1125 /* buffer pre-allocation */
1126 size = CONFIG_SND_HDA_PREALLOC_SIZE * 1024;
1127 if (size > MAX_PREALLOC_SIZE)
1128 size = MAX_PREALLOC_SIZE;
1129 retval = snd_pcm_lib_preallocate_pages_for_all(pcm,
1130 SNDRV_DMA_TYPE_DEV_SG,
1131 snd_dma_pci_data(skl->pci),
1132 size, MAX_PREALLOC_SIZE);
1133 if (retval) {
1134 dev_err(dai->dev, "dma buffer allocationf fail\n");
1135 return retval;
1136 }
1137 }
1138
1139 return retval;
1140}
1141
Vinod Koul64cb1d02016-08-10 09:40:49 +05301142static int skl_populate_modules(struct skl *skl)
1143{
1144 struct skl_pipeline *p;
1145 struct skl_pipe_module *m;
1146 struct snd_soc_dapm_widget *w;
1147 struct skl_module_cfg *mconfig;
1148 int ret;
1149
1150 list_for_each_entry(p, &skl->ppl_list, node) {
1151 list_for_each_entry(m, &p->pipe->w_list, node) {
1152
1153 w = m->w;
1154 mconfig = w->priv;
1155
1156 ret = snd_skl_get_module_info(skl->skl_sst, mconfig);
1157 if (ret < 0) {
1158 dev_err(skl->skl_sst->dev,
1159 "query module info failed:%d\n", ret);
1160 goto err;
1161 }
1162 }
1163 }
1164err:
1165 return ret;
1166}
1167
Jeeja KPb663a8c2015-10-07 11:31:57 +01001168static int skl_platform_soc_probe(struct snd_soc_platform *platform)
1169{
1170 struct hdac_ext_bus *ebus = dev_get_drvdata(platform->dev);
Dharageswari Rfe3f4442016-06-03 18:29:39 +05301171 struct skl *skl = ebus_to_skl(ebus);
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301172 const struct skl_dsp_ops *ops;
Dharageswari Rfe3f4442016-06-03 18:29:39 +05301173 int ret;
Jeeja KPb663a8c2015-10-07 11:31:57 +01001174
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301175 pm_runtime_get_sync(platform->dev);
Vinod Koulec8ae572016-08-04 15:46:01 +05301176 if ((ebus_to_hbus(ebus))->ppcap) {
Dharageswari Rfe3f4442016-06-03 18:29:39 +05301177 ret = skl_tplg_init(platform, ebus);
1178 if (ret < 0) {
1179 dev_err(platform->dev, "Failed to init topology!\n");
1180 return ret;
1181 }
1182 skl->platform = platform;
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301183
1184 /* load the firmwares, since all is set */
1185 ops = skl_get_dsp_ops(skl->pci->device);
1186 if (!ops)
1187 return -EIO;
1188
1189 if (skl->skl_sst->is_first_boot == false) {
1190 dev_err(platform->dev, "DSP reports first boot done!!!\n");
1191 return -EIO;
1192 }
1193
Pardha Saradhi K42353502018-01-02 14:59:57 +05301194 /* disable dynamic clock gating during fw and lib download */
1195 skl->skl_sst->enable_miscbdcge(platform->dev, false);
1196
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301197 ret = ops->init_fw(platform->dev, skl->skl_sst);
Pardha Saradhi K42353502018-01-02 14:59:57 +05301198 skl->skl_sst->enable_miscbdcge(platform->dev, true);
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301199 if (ret < 0) {
1200 dev_err(platform->dev, "Failed to boot first fw: %d\n", ret);
1201 return ret;
1202 }
Vinod Koul64cb1d02016-08-10 09:40:49 +05301203 skl_populate_modules(skl);
Dharageswari Rfe3f4442016-06-03 18:29:39 +05301204 }
Vinod Koul78cdbbd2016-07-26 18:06:42 +05301205 pm_runtime_mark_last_busy(platform->dev);
1206 pm_runtime_put_autosuspend(platform->dev);
Jeeja KPb663a8c2015-10-07 11:31:57 +01001207
1208 return 0;
1209}
Jeeja KPa40e6932015-07-09 15:20:08 +05301210static struct snd_soc_platform_driver skl_platform_drv = {
Jeeja KPb663a8c2015-10-07 11:31:57 +01001211 .probe = skl_platform_soc_probe,
Jeeja KPa40e6932015-07-09 15:20:08 +05301212 .ops = &skl_platform_ops,
1213 .pcm_new = skl_pcm_new,
1214 .pcm_free = skl_pcm_free,
1215};
1216
1217static const struct snd_soc_component_driver skl_component = {
1218 .name = "pcm",
1219};
1220
1221int skl_platform_register(struct device *dev)
1222{
1223 int ret;
Jeeja KPb663a8c2015-10-07 11:31:57 +01001224 struct hdac_ext_bus *ebus = dev_get_drvdata(dev);
1225 struct skl *skl = ebus_to_skl(ebus);
1226
1227 INIT_LIST_HEAD(&skl->ppl_list);
Jeeja KPa40e6932015-07-09 15:20:08 +05301228
1229 ret = snd_soc_register_platform(dev, &skl_platform_drv);
1230 if (ret) {
1231 dev_err(dev, "soc platform registration failed %d\n", ret);
1232 return ret;
1233 }
1234 ret = snd_soc_register_component(dev, &skl_component,
1235 skl_platform_dai,
1236 ARRAY_SIZE(skl_platform_dai));
1237 if (ret) {
1238 dev_err(dev, "soc component registration failed %d\n", ret);
1239 snd_soc_unregister_platform(dev);
1240 }
1241
1242 return ret;
1243
1244}
1245
1246int skl_platform_unregister(struct device *dev)
1247{
1248 snd_soc_unregister_component(dev);
1249 snd_soc_unregister_platform(dev);
1250 return 0;
1251}