[Sound-open-firmware] [PATCH 2/2] ASoc: SOF: Replace IPC position update with memory window

Xiuli Pan xiuli.pan at linux.intel.com
Mon Feb 12 07:20:02 CET 2018


From: Pan Xiuli <xiuli.pan at linux.intel.com>

Use memory window to store postion data, use old IPC as a notify.

Add memory window handler for BYT, HSW, BDW and APL.

Signed-off-by: Pan Xiuli <xiuli.pan at linux.intel.com>

---
Test with:
Mininow max rt5651
SOF master: 5e60d064dbf9a5ab518cfa6fe79612bb49eee57a
SOF-Tool master: 57be4f5b8c96ba5839598046be4b4543ce8cf63b
https://github.com/plbossart/sound/tree/topic/sof-v4.14:
6fa721a8b7c6567eea0a2181bf9a3d2a12c31b00
---
 sound/soc/sof/hw-apl.c   |  4 ++++
 sound/soc/sof/hw-bdw.c   |  4 ++++
 sound/soc/sof/hw-byt.c   |  4 ++++
 sound/soc/sof/hw-hsw.c   |  4 ++++
 sound/soc/sof/ipc.c      | 40 +++++++++++++++++++++++++++++++++++-----
 sound/soc/sof/pcm.c      | 16 +++++++++++++---
 sound/soc/sof/sof-priv.h |  2 ++
 7 files changed, 66 insertions(+), 8 deletions(-)

diff --git a/sound/soc/sof/hw-apl.c b/sound/soc/sof/hw-apl.c
index 27e5704..7594d64 100644
--- a/sound/soc/sof/hw-apl.c
+++ b/sound/soc/sof/hw-apl.c
@@ -1086,11 +1086,15 @@ static void apl_get_windows(struct snd_sof_dev *sdev)
 
 	snd_sof_dsp_mailbox_init(sdev, inbox_offset, inbox_size, 
 		outbox_offset, outbox_size);
+	sdev->stream_box.offset = stream_offset;
+	sdev->stream_box.size = stream_size;
 
 	dev_dbg(sdev->dev, " mailbox upstream 0x%x - size 0x%x\n",
 		inbox_offset, inbox_size);
 	dev_dbg(sdev->dev, " mailbox downstream 0x%x - size 0x%x\n",
 		outbox_offset, outbox_size);
+	dev_dbg(sdev->dev, " stream region 0x%x - size 0x%x\n",
+		stream_offset, stream_size);
 }
 
 static int apl_fw_ready(struct snd_sof_dev *sdev, u32 msg_id)
diff --git a/sound/soc/sof/hw-bdw.c b/sound/soc/sof/hw-bdw.c
index c51dba2..a214597 100644
--- a/sound/soc/sof/hw-bdw.c
+++ b/sound/soc/sof/hw-bdw.c
@@ -420,11 +420,15 @@ static void bdw_get_windows(struct snd_sof_dev *sdev)
 
 	snd_sof_dsp_mailbox_init(sdev, inbox_offset, inbox_size,
 		outbox_offset, outbox_size);
+	sdev->stream_box.offset = stream_offset;
+	sdev->stream_box.size = stream_size;
 
 	dev_dbg(sdev->dev, " mailbox upstream 0x%x - size 0x%x\n",
 		inbox_offset, inbox_size);
 	dev_dbg(sdev->dev, " mailbox downstream 0x%x - size 0x%x\n",
 		outbox_offset, outbox_size);
+	dev_dbg(sdev->dev, " stream region 0x%x - size 0x%x\n",
+		stream_offset, stream_size);
 }
 
 static int bdw_fw_ready(struct snd_sof_dev *sdev, u32 msg_id)
diff --git a/sound/soc/sof/hw-byt.c b/sound/soc/sof/hw-byt.c
index d36a0f6..2d1a6f0 100644
--- a/sound/soc/sof/hw-byt.c
+++ b/sound/soc/sof/hw-byt.c
@@ -262,11 +262,15 @@ static void byt_get_windows(struct snd_sof_dev *sdev)
 
 	snd_sof_dsp_mailbox_init(sdev, inbox_offset, inbox_size,
 		outbox_offset, outbox_size);
+	sdev->stream_box.offset = stream_offset;
+	sdev->stream_box.size = stream_size;
 
 	dev_dbg(sdev->dev, " mailbox upstream 0x%x - size 0x%x\n",
 		inbox_offset, inbox_size);
 	dev_dbg(sdev->dev, " mailbox downstream 0x%x - size 0x%x\n",
 		outbox_offset, outbox_size);
+	dev_dbg(sdev->dev, " stream region 0x%x - size 0x%x\n",
+		stream_offset, stream_size);
 }
 
 static int byt_fw_ready(struct snd_sof_dev *sdev, u32 msg_id)
diff --git a/sound/soc/sof/hw-hsw.c b/sound/soc/sof/hw-hsw.c
index 615411c..2134663 100644
--- a/sound/soc/sof/hw-hsw.c
+++ b/sound/soc/sof/hw-hsw.c
@@ -445,11 +445,15 @@ static void hsw_get_windows(struct snd_sof_dev *sdev)
 
 	snd_sof_dsp_mailbox_init(sdev, inbox_offset, inbox_size,
 		outbox_offset, outbox_size);
+	sdev->stream_box.offset = stream_offset;
+	sdev->stream_box.size = stream_size;
 
 	dev_dbg(sdev->dev, " mailbox upstream 0x%x - size 0x%x\n",
 		inbox_offset, inbox_size);
 	dev_dbg(sdev->dev, " mailbox downstream 0x%x - size 0x%x\n",
 		outbox_offset, outbox_size);
+	dev_dbg(sdev->dev, " stream region 0x%x - size 0x%x\n",
+		stream_offset, stream_size);
 }
 
 static int hsw_fw_ready(struct snd_sof_dev *sdev, u32 msg_id)
diff --git a/sound/soc/sof/ipc.c b/sound/soc/sof/ipc.c
index e0ba42a..3090efd 100644
--- a/sound/soc/sof/ipc.c
+++ b/sound/soc/sof/ipc.c
@@ -248,42 +248,70 @@ EXPORT_SYMBOL(snd_sof_dsp_mailbox_init);
 
 static void ipc_period_elapsed(struct snd_sof_dev *sdev, u32 msg_id)
 {
-	struct snd_sof_pcm *spcm;
 	struct sof_ipc_stream_posn posn;
+	struct snd_sof_pcm *spcm;
+	u32 posn_offset;
 	int direction;
 
+	/* TODO: virtual BE/FE will still use IPC message. Should still use this
+	 * read back function.
+	 */
+#if 0
 	/* read back full message */
 	snd_sof_dsp_mailbox_read(sdev, sdev->dsp_box.offset, &posn, sizeof(posn));
 	dev_dbg(sdev->dev,  "posn: host 0x%llx dai 0x%llx wall 0x%llx\n",
 		posn.host_posn, posn.dai_posn, posn.wallclock);
 
 	spcm = snd_sof_find_spcm_comp(sdev, posn.comp_id, &direction);
+#endif
+	spcm = snd_sof_find_spcm_comp(sdev, SOF_IPC_MESSAGE_ID(msg_id),
+				      &direction);
+
 	if (spcm == NULL) {
 		dev_err(sdev->dev, "error: period elapsed for unknown component %d\n",
 			posn.comp_id);
 		return;
 	}
 
+	posn_offset = spcm->posn_offset[direction];
+	snd_sof_dsp_mailbox_read(sdev, posn_offset, &posn, sizeof(posn));
+
+	dev_dbg(sdev->dev,  "posn mailbox: posn offset is 0x%x", posn_offset);
+	dev_dbg(sdev->dev,  "posn mailbox: host 0x%llx dai 0x%llx wall 0x%llx\n",
+		posn.host_posn, posn.dai_posn, posn.wallclock);
+
 	memcpy(&spcm->stream[direction].posn, &posn, sizeof(posn));
 	snd_pcm_period_elapsed(spcm->stream[direction].substream);
 }
 
 static void ipc_xrun(struct snd_sof_dev *sdev, u32 msg_id)
 {
-	struct snd_sof_pcm *spcm;
 	struct sof_ipc_stream_posn posn;
+	struct snd_sof_pcm *spcm;
+	u32 posn_offset;
 	int direction;
 
+	/* TODO: virtual BE/FE will still use IPC message. Should still use this
+	 * read back function.
+	 */
+
+#if 0
 	/* read back full message */
 	snd_sof_dsp_mailbox_read(sdev, sdev->dsp_box.offset, &posn, sizeof(posn));
 
 	spcm = snd_sof_find_spcm_comp(sdev, posn.comp_id, &direction);
+#endif
+	spcm = snd_sof_find_spcm_comp(sdev, SOF_IPC_MESSAGE_ID(msg_id),
+				      &direction);
 	if (spcm == NULL) {
 		dev_err(sdev->dev, "error: XRUN for unknown component %d\n",
 			posn.comp_id);
 		return;
 	}
 
+	posn_offset = spcm->posn_offset[direction];
+	snd_sof_dsp_mailbox_read(sdev, posn_offset, &posn, sizeof(posn));
+
 	dev_dbg(sdev->dev,  "posn XRUN: host %llx comp %d size %d\n",
 		posn.host_posn, posn.xrun_comp_id, posn.xrun_size);
 
@@ -295,12 +323,14 @@ static void ipc_xrun(struct snd_sof_dev *sdev, u32 msg_id)
 
 static void ipc_stream_message(struct snd_sof_dev *sdev, u32 msg_id)
 {
-	switch (msg_id) {
+	u32 msg_cmd = msg_id & SOF_CMD_TYPE_MASK;
+
+	switch (msg_cmd) {
 	case SOF_IPC_STREAM_POSITION:
 		ipc_period_elapsed(sdev, msg_id);
 		break;
 	case SOF_IPC_STREAM_TRIG_XRUN:
-		ipc_xrun(sdev, msg_id);
+		ipc_xrun(sdev, msg_cmd);
 		break;
 	default:
 		dev_err(sdev->dev, "error: unhandled stream message %x\n",
@@ -369,7 +399,7 @@ static void ipc_msgs_rx(struct work_struct *work)
 	case SOF_IPC_GLB_COMP_MSG:
 		break;
 	case SOF_IPC_GLB_STREAM_MSG:
-		ipc_stream_message(sdev, type);
+		ipc_stream_message(sdev, hdr.cmd);
 		break;
 	case SOF_IPC_GLB_TRACE_MSG:
 		ipc_trace_message(sdev, type);
diff --git a/sound/soc/sof/pcm.c b/sound/soc/sof/pcm.c
index e91887b..c3798a4 100644
--- a/sound/soc/sof/pcm.c
+++ b/sound/soc/sof/pcm.c
@@ -54,6 +54,7 @@ static int sof_pcm_hw_params(struct snd_pcm_substream *substream,
 	struct snd_sof_pcm *spcm = rtd->sof;
 	struct sof_ipc_pcm_params pcm;
 	struct sof_ipc_pcm_params_reply ipc_params_reply;
+	int posn_offset;
 	int ret;
 
 	/* nothing todo for BE */
@@ -132,9 +133,6 @@ static int sof_pcm_hw_params(struct snd_pcm_substream *substream,
 		return -EINVAL;
 	}
 
-	/* copy offset */
-	//spcm->posn_offset[substream->stream] = ipc_params_reply.posn_offset;
-
 	/* firmware already configured host stream */
 	if (ops && ops->host_stream_prepare) {
 		pcm.params.stream_tag =
@@ -147,6 +145,18 @@ static int sof_pcm_hw_params(struct snd_pcm_substream *substream,
 		pcm.hdr.cmd, &pcm, sizeof(pcm),
 		&ipc_params_reply, sizeof(ipc_params_reply));
 
+	/* caclcute offset */
+	posn_offset = ipc_params_reply.posn_offset;
+	dev_dbg(sdev->dev, "PXL: posn_offset 0x%x", posn_offset);
+	if (posn_offset > sdev->stream_box.size &&
+	    posn_offset % sizeof(struct sof_ipc_stream_posn) == 0) {
+		dev_err(sdev->dev, "error: got wrong posn offset 0x%x for PCM %d\n",
+			posn_offset, ret);
+		return ret;
+	}
+	spcm->posn_offset[substream->stream] =
+		sdev->stream_box.offset + posn_offset;
+
 	return ret;
 }
 
diff --git a/sound/soc/sof/sof-priv.h b/sound/soc/sof/sof-priv.h
index 9e14226..2026f96 100644
--- a/sound/soc/sof/sof-priv.h
+++ b/sound/soc/sof/sof-priv.h
@@ -169,6 +169,7 @@ struct snd_sof_pcm {
 	struct snd_sof_dev *sdev;
 	struct snd_soc_tplg_pcm pcm;
 	struct snd_sof_pcm_stream stream[2];
+	uint32_t posn_offset[2];
 	struct mutex mutex;
 	struct list_head list;	/* list in sdev pcm list */
 };
@@ -303,6 +304,7 @@ struct snd_sof_dev {
 	struct snd_sof_ipc *ipc;
 	struct snd_sof_mailbox dsp_box;		/* DSP initiated IPC */
 	struct snd_sof_mailbox host_box;	/* Host initiated IPC */
+	struct snd_sof_mailbox stream_box;	/* Stream position update */
 	u64 irq_status;
 	int ipc_irq;
 	u32 next_comp_id; /* monotonic - reset during S3 */
-- 
2.7.4



More information about the Sound-open-firmware mailing list