Loading...
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#ifndef __SST_GENERIC_IPC_H
9#define __SST_GENERIC_IPC_H
10
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/wait.h>
14#include <linux/list.h>
15#include <linux/workqueue.h>
16#include <linux/sched.h>
17
18struct sst_ipc_message {
19 u64 header;
20 void *data;
21 size_t size;
22};
23
24struct ipc_message {
25 struct list_head list;
26 struct sst_ipc_message tx;
27 struct sst_ipc_message rx;
28
29 wait_queue_head_t waitq;
30 bool pending;
31 bool complete;
32 bool wait;
33 int errno;
34};
35
36struct sst_generic_ipc;
37struct sst_dsp;
38
39struct sst_plat_ipc_ops {
40 void (*tx_msg)(struct sst_generic_ipc *, struct ipc_message *);
41 void (*shim_dbg)(struct sst_generic_ipc *, const char *);
42 void (*tx_data_copy)(struct ipc_message *, char *, size_t);
43 u64 (*reply_msg_match)(u64 header, u64 *mask);
44 bool (*is_dsp_busy)(struct sst_dsp *dsp);
45 int (*check_dsp_lp_on)(struct sst_dsp *dsp, bool state);
46};
47
48/* SST generic IPC data */
49struct sst_generic_ipc {
50 struct device *dev;
51 struct sst_dsp *dsp;
52
53 /* IPC messaging */
54 struct list_head tx_list;
55 struct list_head rx_list;
56 struct list_head empty_list;
57 wait_queue_head_t wait_txq;
58 struct task_struct *tx_thread;
59 struct work_struct kwork;
60 bool pending;
61 struct ipc_message *msg;
62 int tx_data_max_size;
63 int rx_data_max_size;
64
65 struct sst_plat_ipc_ops ops;
66};
67
68int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc,
69 struct sst_ipc_message request, struct sst_ipc_message *reply);
70
71int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc,
72 struct sst_ipc_message request);
73
74int sst_ipc_tx_message_nopm(struct sst_generic_ipc *ipc,
75 struct sst_ipc_message request, struct sst_ipc_message *reply);
76
77struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc,
78 u64 header);
79
80void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc,
81 struct ipc_message *msg);
82
83int sst_ipc_init(struct sst_generic_ipc *ipc);
84void sst_ipc_fini(struct sst_generic_ipc *ipc);
85
86#endif
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#ifndef __SST_GENERIC_IPC_H
18#define __SST_GENERIC_IPC_H
19
20#include <linux/types.h>
21#include <linux/kernel.h>
22#include <linux/wait.h>
23#include <linux/list.h>
24#include <linux/workqueue.h>
25#include <linux/sched.h>
26
27#define IPC_MAX_MAILBOX_BYTES 256
28
29struct ipc_message {
30 struct list_head list;
31 u64 header;
32
33 /* direction wrt host CPU */
34 char *tx_data;
35 size_t tx_size;
36 char *rx_data;
37 size_t rx_size;
38
39 wait_queue_head_t waitq;
40 bool pending;
41 bool complete;
42 bool wait;
43 int errno;
44};
45
46struct sst_generic_ipc;
47
48struct sst_plat_ipc_ops {
49 void (*tx_msg)(struct sst_generic_ipc *, struct ipc_message *);
50 void (*shim_dbg)(struct sst_generic_ipc *, const char *);
51 void (*tx_data_copy)(struct ipc_message *, char *, size_t);
52 u64 (*reply_msg_match)(u64 header, u64 *mask);
53 bool (*is_dsp_busy)(struct sst_dsp *dsp);
54 int (*check_dsp_lp_on)(struct sst_dsp *dsp, bool state);
55};
56
57/* SST generic IPC data */
58struct sst_generic_ipc {
59 struct device *dev;
60 struct sst_dsp *dsp;
61
62 /* IPC messaging */
63 struct list_head tx_list;
64 struct list_head rx_list;
65 struct list_head empty_list;
66 wait_queue_head_t wait_txq;
67 struct task_struct *tx_thread;
68 struct work_struct kwork;
69 bool pending;
70 struct ipc_message *msg;
71 int tx_data_max_size;
72 int rx_data_max_size;
73
74 struct sst_plat_ipc_ops ops;
75};
76
77int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc, u64 header,
78 void *tx_data, size_t tx_bytes, void *rx_data, size_t rx_bytes);
79
80int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc, u64 header,
81 void *tx_data, size_t tx_bytes);
82
83int sst_ipc_tx_message_nopm(struct sst_generic_ipc *ipc, u64 header,
84 void *tx_data, size_t tx_bytes, void *rx_data, size_t rx_bytes);
85
86struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc,
87 u64 header);
88
89void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc,
90 struct ipc_message *msg);
91
92void sst_ipc_drop_all(struct sst_generic_ipc *ipc);
93int sst_ipc_init(struct sst_generic_ipc *ipc);
94void sst_ipc_fini(struct sst_generic_ipc *ipc);
95
96#endif