2019-05-27 06:55:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2015-04-07 01:33:30 +00:00
|
|
|
/*
|
|
|
|
* Intel SST generic IPC Support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015, Intel Corporation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/wait.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <sound/asound.h>
|
|
|
|
|
|
|
|
#include "sst-dsp.h"
|
|
|
|
#include "sst-dsp-priv.h"
|
|
|
|
#include "sst-ipc.h"
|
|
|
|
|
|
|
|
/* IPC message timeout (msecs) */
|
|
|
|
#define IPC_TIMEOUT_MSECS 300
|
|
|
|
|
|
|
|
#define IPC_EMPTY_LIST_SIZE 8
|
|
|
|
|
|
|
|
/* locks held by caller */
|
|
|
|
static struct ipc_message *msg_get_empty(struct sst_generic_ipc *ipc)
|
|
|
|
{
|
|
|
|
struct ipc_message *msg = NULL;
|
|
|
|
|
|
|
|
if (!list_empty(&ipc->empty_list)) {
|
|
|
|
msg = list_first_entry(&ipc->empty_list, struct ipc_message,
|
|
|
|
list);
|
|
|
|
list_del(&msg->list);
|
|
|
|
}
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tx_wait_done(struct sst_generic_ipc *ipc,
|
2019-07-23 14:43:40 +00:00
|
|
|
struct ipc_message *msg, struct sst_ipc_message *reply)
|
2015-04-07 01:33:30 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* wait for DSP completion (in all cases atm inc pending) */
|
|
|
|
ret = wait_event_timeout(msg->waitq, msg->complete,
|
|
|
|
msecs_to_jiffies(IPC_TIMEOUT_MSECS));
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ipc->dsp->spinlock, flags);
|
|
|
|
if (ret == 0) {
|
|
|
|
if (ipc->ops.shim_dbg != NULL)
|
|
|
|
ipc->ops.shim_dbg(ipc, "message timeout");
|
|
|
|
|
|
|
|
list_del(&msg->list);
|
|
|
|
ret = -ETIMEDOUT;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/* copy the data returned from DSP */
|
2019-07-23 14:43:40 +00:00
|
|
|
if (reply) {
|
|
|
|
reply->header = msg->rx.header;
|
|
|
|
if (reply->data)
|
|
|
|
memcpy(reply->data, msg->rx.data, msg->rx.size);
|
|
|
|
}
|
2015-04-07 01:33:30 +00:00
|
|
|
ret = msg->errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_add_tail(&msg->list, &ipc->empty_list);
|
|
|
|
spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
static int ipc_tx_message(struct sst_generic_ipc *ipc,
|
|
|
|
struct sst_ipc_message request,
|
|
|
|
struct sst_ipc_message *reply, int wait)
|
2015-04-07 01:33:30 +00:00
|
|
|
{
|
|
|
|
struct ipc_message *msg;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&ipc->dsp->spinlock, flags);
|
|
|
|
|
|
|
|
msg = msg_get_empty(ipc);
|
|
|
|
if (msg == NULL) {
|
|
|
|
spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
msg->tx.header = request.header;
|
|
|
|
msg->tx.size = request.size;
|
|
|
|
msg->rx.header = 0;
|
|
|
|
msg->rx.size = reply ? reply->size : 0;
|
2015-04-07 01:33:30 +00:00
|
|
|
msg->wait = wait;
|
|
|
|
msg->errno = 0;
|
|
|
|
msg->pending = false;
|
|
|
|
msg->complete = false;
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
if ((request.size) && (ipc->ops.tx_data_copy != NULL))
|
|
|
|
ipc->ops.tx_data_copy(msg, request.data, request.size);
|
2015-04-07 01:33:30 +00:00
|
|
|
|
|
|
|
list_add_tail(&msg->list, &ipc->tx_list);
|
2016-11-28 15:32:19 +00:00
|
|
|
schedule_work(&ipc->kwork);
|
2015-04-07 01:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
|
|
|
|
|
|
|
|
if (wait)
|
2019-07-23 14:43:40 +00:00
|
|
|
return tx_wait_done(ipc, msg, reply);
|
2015-04-07 01:33:30 +00:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int msg_empty_list_init(struct sst_generic_ipc *ipc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-12 21:03:40 +00:00
|
|
|
ipc->msg = kcalloc(IPC_EMPTY_LIST_SIZE, sizeof(struct ipc_message),
|
|
|
|
GFP_KERNEL);
|
2015-04-07 01:33:30 +00:00
|
|
|
if (ipc->msg == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
|
2019-07-23 14:43:40 +00:00
|
|
|
ipc->msg[i].tx.data = kzalloc(ipc->tx_data_max_size, GFP_KERNEL);
|
|
|
|
if (ipc->msg[i].tx.data == NULL)
|
2015-05-19 09:30:40 +00:00
|
|
|
goto free_mem;
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
ipc->msg[i].rx.data = kzalloc(ipc->rx_data_max_size, GFP_KERNEL);
|
|
|
|
if (ipc->msg[i].rx.data == NULL) {
|
|
|
|
kfree(ipc->msg[i].tx.data);
|
2015-05-19 09:30:40 +00:00
|
|
|
goto free_mem;
|
|
|
|
}
|
|
|
|
|
2015-04-07 01:33:30 +00:00
|
|
|
init_waitqueue_head(&ipc->msg[i].waitq);
|
|
|
|
list_add(&ipc->msg[i].list, &ipc->empty_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-05-19 09:30:40 +00:00
|
|
|
|
|
|
|
free_mem:
|
|
|
|
while (i > 0) {
|
2019-07-23 14:43:40 +00:00
|
|
|
kfree(ipc->msg[i-1].tx.data);
|
|
|
|
kfree(ipc->msg[i-1].rx.data);
|
2015-05-19 09:30:40 +00:00
|
|
|
--i;
|
|
|
|
}
|
|
|
|
kfree(ipc->msg);
|
|
|
|
|
|
|
|
return -ENOMEM;
|
2015-04-07 01:33:30 +00:00
|
|
|
}
|
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
static void ipc_tx_msgs(struct work_struct *work)
|
2015-04-07 01:33:30 +00:00
|
|
|
{
|
|
|
|
struct sst_generic_ipc *ipc =
|
|
|
|
container_of(work, struct sst_generic_ipc, kwork);
|
|
|
|
struct ipc_message *msg;
|
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
spin_lock_irq(&ipc->dsp->spinlock);
|
2015-04-07 01:33:30 +00:00
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
while (!list_empty(&ipc->tx_list) && !ipc->pending) {
|
|
|
|
/* if the DSP is busy, we will TX messages after IRQ.
|
|
|
|
* also postpone if we are in the middle of processing
|
|
|
|
* completion irq
|
|
|
|
*/
|
|
|
|
if (ipc->ops.is_dsp_busy && ipc->ops.is_dsp_busy(ipc->dsp)) {
|
|
|
|
dev_dbg(ipc->dev, "ipc_tx_msgs dsp busy\n");
|
|
|
|
break;
|
|
|
|
}
|
2015-04-07 01:33:30 +00:00
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
msg = list_first_entry(&ipc->tx_list, struct ipc_message, list);
|
|
|
|
list_move(&msg->list, &ipc->rx_list);
|
2015-04-07 01:33:30 +00:00
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
if (ipc->ops.tx_msg != NULL)
|
|
|
|
ipc->ops.tx_msg(ipc, msg);
|
|
|
|
}
|
2015-04-07 01:33:30 +00:00
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
spin_unlock_irq(&ipc->dsp->spinlock);
|
2015-04-07 01:33:30 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc,
|
|
|
|
struct sst_ipc_message request, struct sst_ipc_message *reply)
|
2015-04-07 01:33:30 +00:00
|
|
|
{
|
2016-09-26 05:35:28 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* DSP maybe in lower power active state, so
|
|
|
|
* check if the DSP supports DSP lp On method
|
|
|
|
* if so invoke that before sending IPC
|
|
|
|
*/
|
|
|
|
if (ipc->ops.check_dsp_lp_on)
|
|
|
|
if (ipc->ops.check_dsp_lp_on(ipc->dsp, true))
|
|
|
|
return -EIO;
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
ret = ipc_tx_message(ipc, request, reply, 1);
|
2016-09-26 05:35:28 +00:00
|
|
|
|
|
|
|
if (ipc->ops.check_dsp_lp_on)
|
|
|
|
if (ipc->ops.check_dsp_lp_on(ipc->dsp, false))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
return ret;
|
2015-04-07 01:33:30 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_tx_message_wait);
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc,
|
|
|
|
struct sst_ipc_message request)
|
2015-04-07 01:33:30 +00:00
|
|
|
{
|
2019-07-23 14:43:40 +00:00
|
|
|
return ipc_tx_message(ipc, request, NULL, 0);
|
2015-04-07 01:33:30 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_tx_message_nowait);
|
|
|
|
|
2019-07-23 14:43:40 +00:00
|
|
|
int sst_ipc_tx_message_nopm(struct sst_generic_ipc *ipc,
|
|
|
|
struct sst_ipc_message request, struct sst_ipc_message *reply)
|
2016-11-03 11:37:14 +00:00
|
|
|
{
|
2019-07-23 14:43:40 +00:00
|
|
|
return ipc_tx_message(ipc, request, reply, 1);
|
2016-11-03 11:37:14 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_tx_message_nopm);
|
|
|
|
|
2015-04-07 01:33:30 +00:00
|
|
|
struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc,
|
|
|
|
u64 header)
|
|
|
|
{
|
|
|
|
struct ipc_message *msg;
|
|
|
|
u64 mask;
|
|
|
|
|
|
|
|
if (ipc->ops.reply_msg_match != NULL)
|
|
|
|
header = ipc->ops.reply_msg_match(header, &mask);
|
2019-08-27 14:17:08 +00:00
|
|
|
else
|
|
|
|
mask = (u64)-1;
|
2015-04-07 01:33:30 +00:00
|
|
|
|
|
|
|
if (list_empty(&ipc->rx_list)) {
|
|
|
|
dev_err(ipc->dev, "error: rx list empty but received 0x%llx\n",
|
|
|
|
header);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry(msg, &ipc->rx_list, list) {
|
2019-07-23 14:43:40 +00:00
|
|
|
if ((msg->tx.header & mask) == header)
|
2015-04-07 01:33:30 +00:00
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_reply_find_msg);
|
|
|
|
|
|
|
|
/* locks held by caller */
|
|
|
|
void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc,
|
|
|
|
struct ipc_message *msg)
|
|
|
|
{
|
|
|
|
msg->complete = true;
|
|
|
|
|
|
|
|
if (!msg->wait)
|
|
|
|
list_add_tail(&msg->list, &ipc->empty_list);
|
|
|
|
else
|
|
|
|
wake_up(&msg->waitq);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_tx_msg_reply_complete);
|
|
|
|
|
|
|
|
void sst_ipc_drop_all(struct sst_generic_ipc *ipc)
|
|
|
|
{
|
|
|
|
struct ipc_message *msg, *tmp;
|
|
|
|
unsigned long flags;
|
|
|
|
int tx_drop_cnt = 0, rx_drop_cnt = 0;
|
|
|
|
|
|
|
|
/* drop all TX and Rx messages before we stall + reset DSP */
|
|
|
|
spin_lock_irqsave(&ipc->dsp->spinlock, flags);
|
|
|
|
|
|
|
|
list_for_each_entry_safe(msg, tmp, &ipc->tx_list, list) {
|
|
|
|
list_move(&msg->list, &ipc->empty_list);
|
|
|
|
tx_drop_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_for_each_entry_safe(msg, tmp, &ipc->rx_list, list) {
|
|
|
|
list_move(&msg->list, &ipc->empty_list);
|
|
|
|
rx_drop_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&ipc->dsp->spinlock, flags);
|
|
|
|
|
|
|
|
if (tx_drop_cnt || rx_drop_cnt)
|
|
|
|
dev_err(ipc->dev, "dropped IPC msg RX=%d, TX=%d\n",
|
|
|
|
tx_drop_cnt, rx_drop_cnt);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_drop_all);
|
|
|
|
|
|
|
|
int sst_ipc_init(struct sst_generic_ipc *ipc)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
INIT_LIST_HEAD(&ipc->tx_list);
|
|
|
|
INIT_LIST_HEAD(&ipc->rx_list);
|
|
|
|
INIT_LIST_HEAD(&ipc->empty_list);
|
|
|
|
init_waitqueue_head(&ipc->wait_txq);
|
|
|
|
|
|
|
|
ret = msg_empty_list_init(ipc);
|
|
|
|
if (ret < 0)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
INIT_WORK(&ipc->kwork, ipc_tx_msgs);
|
2015-04-07 01:33:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_init);
|
|
|
|
|
|
|
|
void sst_ipc_fini(struct sst_generic_ipc *ipc)
|
|
|
|
{
|
2015-05-19 09:30:40 +00:00
|
|
|
int i;
|
|
|
|
|
2016-11-28 15:32:19 +00:00
|
|
|
cancel_work_sync(&ipc->kwork);
|
2015-04-07 01:33:30 +00:00
|
|
|
|
2015-05-19 09:30:40 +00:00
|
|
|
if (ipc->msg) {
|
|
|
|
for (i = 0; i < IPC_EMPTY_LIST_SIZE; i++) {
|
2019-07-23 14:43:40 +00:00
|
|
|
kfree(ipc->msg[i].tx.data);
|
|
|
|
kfree(ipc->msg[i].rx.data);
|
2015-05-19 09:30:40 +00:00
|
|
|
}
|
2015-04-07 01:33:30 +00:00
|
|
|
kfree(ipc->msg);
|
2015-05-19 09:30:40 +00:00
|
|
|
}
|
2015-04-07 01:33:30 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(sst_ipc_fini);
|
|
|
|
|
|
|
|
/* Module information */
|
|
|
|
MODULE_AUTHOR("Jin Yao");
|
|
|
|
MODULE_DESCRIPTION("Intel SST IPC generic");
|
|
|
|
MODULE_LICENSE("GPL v2");
|