1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
3 // This file is provided under a dual BSD/GPLv2 license. When using or
4 // redistributing this file, you may do so under either license.
6 // Copyright(c) 2019 Intel Corporation. All rights reserved.
8 // Authors: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
10 /* Generic SOF IPC code */
12 #include <linux/device.h>
13 #include <linux/export.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
17 #include <sound/pcm.h>
18 #include <sound/sof/stream.h>
22 #include "sof-audio.h"
28 /* Mailbox-based Generic IPC implementation */
29 int sof_ipc_msg_data(struct snd_sof_dev *sdev,
30 struct snd_sof_pcm_stream *sps,
33 if (!sps || !sdev->stream_box.size) {
34 snd_sof_dsp_mailbox_read(sdev, sdev->dsp_box.offset, p, sz);
39 struct sof_stream *stream = sps->substream->runtime->private_data;
41 /* The stream might already be closed */
45 posn_offset = stream->posn_offset;
48 struct sof_compr_stream *sstream = sps->cstream->runtime->private_data;
53 posn_offset = sstream->posn_offset;
56 snd_sof_dsp_mailbox_read(sdev, posn_offset, p, sz);
61 EXPORT_SYMBOL(sof_ipc_msg_data);
63 int sof_set_stream_data_offset(struct snd_sof_dev *sdev,
64 struct snd_sof_pcm_stream *sps,
67 /* check if offset is overflow or it is not aligned */
68 if (posn_offset > sdev->stream_box.size ||
69 posn_offset % sizeof(struct sof_ipc_stream_posn) != 0)
72 posn_offset += sdev->stream_box.offset;
75 struct sof_stream *stream = sps->substream->runtime->private_data;
77 stream->posn_offset = posn_offset;
78 dev_dbg(sdev->dev, "pcm: stream dir %d, posn mailbox offset is %zu",
79 sps->substream->stream, posn_offset);
80 } else if (sps->cstream) {
81 struct sof_compr_stream *sstream = sps->cstream->runtime->private_data;
83 sstream->posn_offset = posn_offset;
84 dev_dbg(sdev->dev, "compr: stream dir %d, posn mailbox offset is %zu",
85 sps->cstream->direction, posn_offset);
87 dev_err(sdev->dev, "No stream opened");
93 EXPORT_SYMBOL(sof_set_stream_data_offset);
95 int sof_stream_pcm_open(struct snd_sof_dev *sdev,
96 struct snd_pcm_substream *substream)
98 struct sof_stream *stream = kmalloc(sizeof(*stream), GFP_KERNEL);
103 /* binding pcm substream to hda stream */
104 substream->runtime->private_data = stream;
106 /* align to DMA minimum transfer size */
107 snd_pcm_hw_constraint_step(substream->runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 4);
109 /* avoid circular buffer wrap in middle of period */
110 snd_pcm_hw_constraint_integer(substream->runtime,
111 SNDRV_PCM_HW_PARAM_PERIODS);
115 EXPORT_SYMBOL(sof_stream_pcm_open);
117 int sof_stream_pcm_close(struct snd_sof_dev *sdev,
118 struct snd_pcm_substream *substream)
120 struct sof_stream *stream = substream->runtime->private_data;
122 substream->runtime->private_data = NULL;
127 EXPORT_SYMBOL(sof_stream_pcm_close);
129 MODULE_LICENSE("Dual BSD/GPL");