Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2709bdbc authored by Subhransu S. Prusty's avatar Subhransu S. Prusty Committed by Mark Brown
Browse files

ASoC: Intel: Move the busy check to ops for Baytrail

parent 6022d330
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -679,6 +679,14 @@ static u64 byt_reply_msg_match(u64 header, u64 *mask)
	return header;
	return header;
}
}


static bool byt_is_dsp_busy(struct sst_dsp *dsp)
{
	u64 ipcx;

	ipcx = sst_dsp_shim_read_unlocked(dsp, SST_IPCX);
	return (ipcx & (SST_IPCX_BUSY | SST_IPCX_DONE));
}

int sst_byt_dsp_init(struct device *dev, struct sst_pdata *pdata)
int sst_byt_dsp_init(struct device *dev, struct sst_pdata *pdata)
{
{
	struct sst_byt *byt;
	struct sst_byt *byt;
@@ -699,6 +707,7 @@ int sst_byt_dsp_init(struct device *dev, struct sst_pdata *pdata)
	ipc->ops.shim_dbg = byt_shim_dbg;
	ipc->ops.shim_dbg = byt_shim_dbg;
	ipc->ops.tx_data_copy = byt_tx_data_copy;
	ipc->ops.tx_data_copy = byt_tx_data_copy;
	ipc->ops.reply_msg_match = byt_reply_msg_match;
	ipc->ops.reply_msg_match = byt_reply_msg_match;
	ipc->ops.is_dsp_busy = byt_is_dsp_busy;


	err = sst_ipc_init(ipc);
	err = sst_ipc_init(ipc);
	if (err != 0)
	if (err != 0)