Linux Audio

Check our new training course

Loading...
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Intel SST generic IPC Support
  4 *
  5 * Copyright (C) 2015, Intel Corporation. All rights reserved.
 
 
 
 
 
 
 
 
 
 
  6 */
  7
  8#include <linux/types.h>
  9#include <linux/kernel.h>
 10#include <linux/list.h>
 11#include <linux/wait.h>
 12#include <linux/module.h>
 13#include <linux/spinlock.h>
 14#include <linux/device.h>
 15#include <linux/slab.h>
 16#include <linux/workqueue.h>
 17#include <linux/sched.h>
 18#include <linux/delay.h>
 19#include <linux/platform_device.h>
 
 20#include <sound/asound.h>
 21
 22#include "sst-dsp.h"
 23#include "sst-dsp-priv.h"
 24#include "sst-ipc.h"
 25
 26/* IPC message timeout (msecs) */
 27#define IPC_TIMEOUT_MSECS	300
 28
 29#define IPC_EMPTY_LIST_SIZE	8
 30
 31/* locks held by caller */
 32static struct ipc_message *msg_get_empty(struct sst_generic_ipc *ipc)
 33{
 34	struct ipc_message *msg = NULL;
 35
 36	if (!list_empty(&ipc->empty_list)) {
 37		msg = list_first_entry(&ipc->empty_list, struct ipc_message,
 38			list);
 39		list_del(&msg->list);
 40	}
 41
 42	return msg;
 43}
 44
 45static int tx_wait_done(struct sst_generic_ipc *ipc,
 46	struct ipc_message *msg, struct sst_ipc_message *reply)
 47{
 48	unsigned long flags;
 49	int ret;
 50
 51	/* wait for DSP completion (in all cases atm inc pending) */
 52	ret = wait_event_timeout(msg->waitq, msg->complete,
 53		msecs_to_jiffies(IPC_TIMEOUT_MSECS));
 54
 55	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
 56	if (ret == 0) {
 57		if (ipc->ops.shim_dbg != NULL)
 58			ipc->ops.shim_dbg(ipc, "message timeout");
 59
 60		list_del(&msg->list);
 61		ret = -ETIMEDOUT;
 62	} else {
 63
 64		/* copy the data returned from DSP */
 65		if (reply) {
 66			reply->header = msg->rx.header;
 67			if (reply->data)
 68				memcpy(reply->data, msg->rx.data, msg->rx.size);
 69		}
 70		ret = msg->errno;
 71	}
 72
 73	list_add_tail(&msg->list, &ipc->empty_list);
 74	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
 75	return ret;
 76}
 77
 78static int ipc_tx_message(struct sst_generic_ipc *ipc,
 79	struct sst_ipc_message request,
 80	struct sst_ipc_message *reply, int wait)
 81{
 82	struct ipc_message *msg;
 83	unsigned long flags;
 84
 85	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
 86
 87	msg = msg_get_empty(ipc);
 88	if (msg == NULL) {
 89		spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
 90		return -EBUSY;
 91	}
 92
 93	msg->tx.header = request.header;
 94	msg->tx.size = request.size;
 95	msg->rx.header = 0;
 96	msg->rx.size = reply ? reply->size : 0;
 97	msg->wait = wait;
 98	msg->errno = 0;
 99	msg->pending = false;
100	msg->complete = false;
101
102	if ((request.size) && (ipc->ops.tx_data_copy != NULL))
103		ipc->ops.tx_data_copy(msg, request.data, request.size);
104
105	list_add_tail(&msg->list, &ipc->tx_list);
106	schedule_work(&ipc->kwork);
107	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
108
 
 
109	if (wait)
110		return tx_wait_done(ipc, msg, reply);
111	else
112		return 0;
113}
114
115static int msg_empty_list_init(struct sst_generic_ipc *ipc)
116{
117	int i;
118
119	ipc->msg = kcalloc(IPC_EMPTY_LIST_SIZE, sizeof(struct ipc_message),
120			   GFP_KERNEL);
121	if (ipc->msg == NULL)
122		return -ENOMEM;
123
124	for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
125		ipc->msg[i].tx.data = kzalloc(ipc->tx_data_max_size, GFP_KERNEL);
126		if (ipc->msg[i].tx.data == NULL)
127			goto free_mem;
128
129		ipc->msg[i].rx.data = kzalloc(ipc->rx_data_max_size, GFP_KERNEL);
130		if (ipc->msg[i].rx.data == NULL) {
131			kfree(ipc->msg[i].tx.data);
132			goto free_mem;
133		}
134
135		init_waitqueue_head(&ipc->msg[i].waitq);
136		list_add(&ipc->msg[i].list, &ipc->empty_list);
137	}
138
139	return 0;
140
141free_mem:
142	while (i > 0) {
143		kfree(ipc->msg[i-1].tx.data);
144		kfree(ipc->msg[i-1].rx.data);
145		--i;
146	}
147	kfree(ipc->msg);
148
149	return -ENOMEM;
150}
151
152static void ipc_tx_msgs(struct work_struct *work)
153{
154	struct sst_generic_ipc *ipc =
155		container_of(work, struct sst_generic_ipc, kwork);
156	struct ipc_message *msg;
 
157
158	spin_lock_irq(&ipc->dsp->spinlock);
159
160	while (!list_empty(&ipc->tx_list) && !ipc->pending) {
161		/* if the DSP is busy, we will TX messages after IRQ.
162		 * also postpone if we are in the middle of processing
163		 * completion irq
164		 */
165		if (ipc->ops.is_dsp_busy && ipc->ops.is_dsp_busy(ipc->dsp)) {
166			dev_dbg(ipc->dev, "ipc_tx_msgs dsp busy\n");
167			break;
168		}
169
170		msg = list_first_entry(&ipc->tx_list, struct ipc_message, list);
171		list_move(&msg->list, &ipc->rx_list);
172
173		if (ipc->ops.tx_msg != NULL)
174			ipc->ops.tx_msg(ipc, msg);
 
175	}
176
177	spin_unlock_irq(&ipc->dsp->spinlock);
178}
 
 
 
 
 
179
180int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc,
181	struct sst_ipc_message request, struct sst_ipc_message *reply)
182{
183	int ret;
184
185	/*
186	 * DSP maybe in lower power active state, so
187	 * check if the DSP supports DSP lp On method
188	 * if so invoke that before sending IPC
189	 */
190	if (ipc->ops.check_dsp_lp_on)
191		if (ipc->ops.check_dsp_lp_on(ipc->dsp, true))
192			return -EIO;
193
194	ret = ipc_tx_message(ipc, request, reply, 1);
195
196	if (ipc->ops.check_dsp_lp_on)
197		if (ipc->ops.check_dsp_lp_on(ipc->dsp, false))
198			return -EIO;
199
200	return ret;
201}
202EXPORT_SYMBOL_GPL(sst_ipc_tx_message_wait);
203
204int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc,
205	struct sst_ipc_message request)
206{
207	return ipc_tx_message(ipc, request, NULL, 0);
 
208}
209EXPORT_SYMBOL_GPL(sst_ipc_tx_message_nowait);
210
211int sst_ipc_tx_message_nopm(struct sst_generic_ipc *ipc,
212	struct sst_ipc_message request, struct sst_ipc_message *reply)
213{
214	return ipc_tx_message(ipc, request, reply, 1);
 
215}
216EXPORT_SYMBOL_GPL(sst_ipc_tx_message_nopm);
217
218struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc,
219	u64 header)
220{
221	struct ipc_message *msg;
222	u64 mask;
223
224	if (ipc->ops.reply_msg_match != NULL)
225		header = ipc->ops.reply_msg_match(header, &mask);
226	else
227		mask = (u64)-1;
228
229	if (list_empty(&ipc->rx_list)) {
230		dev_err(ipc->dev, "error: rx list empty but received 0x%llx\n",
231			header);
232		return NULL;
233	}
234
235	list_for_each_entry(msg, &ipc->rx_list, list) {
236		if ((msg->tx.header & mask) == header)
237			return msg;
238	}
239
240	return NULL;
241}
242EXPORT_SYMBOL_GPL(sst_ipc_reply_find_msg);
243
244/* locks held by caller */
245void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc,
246	struct ipc_message *msg)
247{
248	msg->complete = true;
249
250	if (!msg->wait)
251		list_add_tail(&msg->list, &ipc->empty_list);
252	else
253		wake_up(&msg->waitq);
254}
255EXPORT_SYMBOL_GPL(sst_ipc_tx_msg_reply_complete);
256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257int sst_ipc_init(struct sst_generic_ipc *ipc)
258{
259	int ret;
260
261	INIT_LIST_HEAD(&ipc->tx_list);
262	INIT_LIST_HEAD(&ipc->rx_list);
263	INIT_LIST_HEAD(&ipc->empty_list);
264	init_waitqueue_head(&ipc->wait_txq);
265
266	ret = msg_empty_list_init(ipc);
267	if (ret < 0)
268		return -ENOMEM;
269
270	INIT_WORK(&ipc->kwork, ipc_tx_msgs);
 
 
 
 
 
 
 
 
 
 
 
 
271	return 0;
272}
273EXPORT_SYMBOL_GPL(sst_ipc_init);
274
275void sst_ipc_fini(struct sst_generic_ipc *ipc)
276{
277	int i;
278
279	cancel_work_sync(&ipc->kwork);
 
280
281	if (ipc->msg) {
282		for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
283			kfree(ipc->msg[i].tx.data);
284			kfree(ipc->msg[i].rx.data);
285		}
286		kfree(ipc->msg);
287	}
288}
289EXPORT_SYMBOL_GPL(sst_ipc_fini);
290
291/* Module information */
292MODULE_AUTHOR("Jin Yao");
293MODULE_DESCRIPTION("Intel SST IPC generic");
294MODULE_LICENSE("GPL v2");
v4.6
 
  1/*
  2 * Intel SST generic IPC Support
  3 *
  4 * Copyright (C) 2015, Intel Corporation. All rights reserved.
  5 *
  6 * This program is free software; you can redistribute it and/or
  7 * modify it under the terms of the GNU General Public License version
  8 * 2 as published by the Free Software Foundation.
  9 *
 10 * This program is distributed in the hope that it will be useful,
 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13 * GNU General Public License for more details.
 14 *
 15 */
 16
 17#include <linux/types.h>
 18#include <linux/kernel.h>
 19#include <linux/list.h>
 20#include <linux/wait.h>
 21#include <linux/module.h>
 22#include <linux/spinlock.h>
 23#include <linux/device.h>
 24#include <linux/slab.h>
 25#include <linux/workqueue.h>
 26#include <linux/sched.h>
 27#include <linux/delay.h>
 28#include <linux/platform_device.h>
 29#include <linux/kthread.h>
 30#include <sound/asound.h>
 31
 32#include "sst-dsp.h"
 33#include "sst-dsp-priv.h"
 34#include "sst-ipc.h"
 35
 36/* IPC message timeout (msecs) */
 37#define IPC_TIMEOUT_MSECS	300
 38
 39#define IPC_EMPTY_LIST_SIZE	8
 40
 41/* locks held by caller */
 42static struct ipc_message *msg_get_empty(struct sst_generic_ipc *ipc)
 43{
 44	struct ipc_message *msg = NULL;
 45
 46	if (!list_empty(&ipc->empty_list)) {
 47		msg = list_first_entry(&ipc->empty_list, struct ipc_message,
 48			list);
 49		list_del(&msg->list);
 50	}
 51
 52	return msg;
 53}
 54
 55static int tx_wait_done(struct sst_generic_ipc *ipc,
 56	struct ipc_message *msg, void *rx_data)
 57{
 58	unsigned long flags;
 59	int ret;
 60
 61	/* wait for DSP completion (in all cases atm inc pending) */
 62	ret = wait_event_timeout(msg->waitq, msg->complete,
 63		msecs_to_jiffies(IPC_TIMEOUT_MSECS));
 64
 65	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
 66	if (ret == 0) {
 67		if (ipc->ops.shim_dbg != NULL)
 68			ipc->ops.shim_dbg(ipc, "message timeout");
 69
 70		list_del(&msg->list);
 71		ret = -ETIMEDOUT;
 72	} else {
 73
 74		/* copy the data returned from DSP */
 75		if (msg->rx_size)
 76			memcpy(rx_data, msg->rx_data, msg->rx_size);
 
 
 
 77		ret = msg->errno;
 78	}
 79
 80	list_add_tail(&msg->list, &ipc->empty_list);
 81	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
 82	return ret;
 83}
 84
 85static int ipc_tx_message(struct sst_generic_ipc *ipc, u64 header,
 86	void *tx_data, size_t tx_bytes, void *rx_data,
 87	size_t rx_bytes, int wait)
 88{
 89	struct ipc_message *msg;
 90	unsigned long flags;
 91
 92	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
 93
 94	msg = msg_get_empty(ipc);
 95	if (msg == NULL) {
 96		spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
 97		return -EBUSY;
 98	}
 99
100	msg->header = header;
101	msg->tx_size = tx_bytes;
102	msg->rx_size = rx_bytes;
 
103	msg->wait = wait;
104	msg->errno = 0;
105	msg->pending = false;
106	msg->complete = false;
107
108	if ((tx_bytes) && (ipc->ops.tx_data_copy != NULL))
109		ipc->ops.tx_data_copy(msg, tx_data, tx_bytes);
110
111	list_add_tail(&msg->list, &ipc->tx_list);
 
112	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
113
114	queue_kthread_work(&ipc->kworker, &ipc->kwork);
115
116	if (wait)
117		return tx_wait_done(ipc, msg, rx_data);
118	else
119		return 0;
120}
121
122static int msg_empty_list_init(struct sst_generic_ipc *ipc)
123{
124	int i;
125
126	ipc->msg = kzalloc(sizeof(struct ipc_message) *
127		IPC_EMPTY_LIST_SIZE, GFP_KERNEL);
128	if (ipc->msg == NULL)
129		return -ENOMEM;
130
131	for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
132		ipc->msg[i].tx_data = kzalloc(ipc->tx_data_max_size, GFP_KERNEL);
133		if (ipc->msg[i].tx_data == NULL)
134			goto free_mem;
135
136		ipc->msg[i].rx_data = kzalloc(ipc->rx_data_max_size, GFP_KERNEL);
137		if (ipc->msg[i].rx_data == NULL) {
138			kfree(ipc->msg[i].tx_data);
139			goto free_mem;
140		}
141
142		init_waitqueue_head(&ipc->msg[i].waitq);
143		list_add(&ipc->msg[i].list, &ipc->empty_list);
144	}
145
146	return 0;
147
148free_mem:
149	while (i > 0) {
150		kfree(ipc->msg[i-1].tx_data);
151		kfree(ipc->msg[i-1].rx_data);
152		--i;
153	}
154	kfree(ipc->msg);
155
156	return -ENOMEM;
157}
158
159static void ipc_tx_msgs(struct kthread_work *work)
160{
161	struct sst_generic_ipc *ipc =
162		container_of(work, struct sst_generic_ipc, kwork);
163	struct ipc_message *msg;
164	unsigned long flags;
165
166	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
 
 
 
 
 
 
 
 
 
 
 
 
 
167
168	if (list_empty(&ipc->tx_list) || ipc->pending) {
169		spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
170		return;
171	}
172
173	/* if the DSP is busy, we will TX messages after IRQ.
174	 * also postpone if we are in the middle of procesing completion irq*/
175	if (ipc->ops.is_dsp_busy && ipc->ops.is_dsp_busy(ipc->dsp)) {
176		dev_dbg(ipc->dev, "ipc_tx_msgs dsp busy\n");
177		spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
178		return;
179	}
180
181	msg = list_first_entry(&ipc->tx_list, struct ipc_message, list);
182	list_move(&msg->list, &ipc->rx_list);
 
 
183
184	if (ipc->ops.tx_msg != NULL)
185		ipc->ops.tx_msg(ipc, msg);
 
 
 
 
 
 
 
 
 
 
 
 
186
187	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
188}
 
189
190int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc, u64 header,
191	void *tx_data, size_t tx_bytes, void *rx_data, size_t rx_bytes)
192{
193	return ipc_tx_message(ipc, header, tx_data, tx_bytes,
194		rx_data, rx_bytes, 1);
195}
196EXPORT_SYMBOL_GPL(sst_ipc_tx_message_wait);
197
198int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc, u64 header,
199	void *tx_data, size_t tx_bytes)
200{
201	return ipc_tx_message(ipc, header, tx_data, tx_bytes,
202		NULL, 0, 0);
203}
204EXPORT_SYMBOL_GPL(sst_ipc_tx_message_nowait);
205
206struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc,
207	u64 header)
208{
209	struct ipc_message *msg;
210	u64 mask;
211
212	if (ipc->ops.reply_msg_match != NULL)
213		header = ipc->ops.reply_msg_match(header, &mask);
 
 
214
215	if (list_empty(&ipc->rx_list)) {
216		dev_err(ipc->dev, "error: rx list empty but received 0x%llx\n",
217			header);
218		return NULL;
219	}
220
221	list_for_each_entry(msg, &ipc->rx_list, list) {
222		if ((msg->header & mask) == header)
223			return msg;
224	}
225
226	return NULL;
227}
228EXPORT_SYMBOL_GPL(sst_ipc_reply_find_msg);
229
230/* locks held by caller */
231void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc,
232	struct ipc_message *msg)
233{
234	msg->complete = true;
235
236	if (!msg->wait)
237		list_add_tail(&msg->list, &ipc->empty_list);
238	else
239		wake_up(&msg->waitq);
240}
241EXPORT_SYMBOL_GPL(sst_ipc_tx_msg_reply_complete);
242
243void sst_ipc_drop_all(struct sst_generic_ipc *ipc)
244{
245	struct ipc_message *msg, *tmp;
246	unsigned long flags;
247	int tx_drop_cnt = 0, rx_drop_cnt = 0;
248
249	/* drop all TX and Rx messages before we stall + reset DSP */
250	spin_lock_irqsave(&ipc->dsp->spinlock, flags);
251
252	list_for_each_entry_safe(msg, tmp, &ipc->tx_list, list) {
253		list_move(&msg->list, &ipc->empty_list);
254		tx_drop_cnt++;
255	}
256
257	list_for_each_entry_safe(msg, tmp, &ipc->rx_list, list) {
258		list_move(&msg->list, &ipc->empty_list);
259		rx_drop_cnt++;
260	}
261
262	spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
263
264	if (tx_drop_cnt || rx_drop_cnt)
265		dev_err(ipc->dev, "dropped IPC msg RX=%d, TX=%d\n",
266			tx_drop_cnt, rx_drop_cnt);
267}
268EXPORT_SYMBOL_GPL(sst_ipc_drop_all);
269
270int sst_ipc_init(struct sst_generic_ipc *ipc)
271{
272	int ret;
273
274	INIT_LIST_HEAD(&ipc->tx_list);
275	INIT_LIST_HEAD(&ipc->rx_list);
276	INIT_LIST_HEAD(&ipc->empty_list);
277	init_waitqueue_head(&ipc->wait_txq);
278
279	ret = msg_empty_list_init(ipc);
280	if (ret < 0)
281		return -ENOMEM;
282
283	/* start the IPC message thread */
284	init_kthread_worker(&ipc->kworker);
285	ipc->tx_thread = kthread_run(kthread_worker_fn,
286					&ipc->kworker, "%s",
287					dev_name(ipc->dev));
288	if (IS_ERR(ipc->tx_thread)) {
289		dev_err(ipc->dev, "error: failed to create message TX task\n");
290		ret = PTR_ERR(ipc->tx_thread);
291		kfree(ipc->msg);
292		return ret;
293	}
294
295	init_kthread_work(&ipc->kwork, ipc_tx_msgs);
296	return 0;
297}
298EXPORT_SYMBOL_GPL(sst_ipc_init);
299
300void sst_ipc_fini(struct sst_generic_ipc *ipc)
301{
302	int i;
303
304	if (ipc->tx_thread)
305		kthread_stop(ipc->tx_thread);
306
307	if (ipc->msg) {
308		for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
309			kfree(ipc->msg[i].tx_data);
310			kfree(ipc->msg[i].rx_data);
311		}
312		kfree(ipc->msg);
313	}
314}
315EXPORT_SYMBOL_GPL(sst_ipc_fini);
316
317/* Module information */
318MODULE_AUTHOR("Jin Yao");
319MODULE_DESCRIPTION("Intel SST IPC generic");
320MODULE_LICENSE("GPL v2");