1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Intel SKL IPC Support
5 * Copyright (C) 2014-15, Intel Corporation.
11 #include <linux/irqreturn.h>
12 #include "../common/sst-ipc.h"
13 #include "skl-sst-dsp.h"
16 struct sst_generic_ipc
;
18 enum skl_ipc_pipeline_state
{
19 PPL_INVALID_STATE
= 0,
20 PPL_UNINITIALIZED
= 1,
29 struct skl_ipc_dxstate_info
{
34 struct skl_ipc_header
{
39 struct skl_dsp_cores
{
41 enum skl_dsp_states
*state
;
46 * skl_d0i3_data: skl D0i3 counters data struct
48 * @streaming: Count of usecases that can attempt streaming D0i3
49 * @non_streaming: Count of usecases that can attempt non-streaming D0i3
50 * @non_d0i3: Count of usecases that cannot attempt D0i3
51 * @state: current state
52 * @work: D0i3 worker thread
54 struct skl_d0i3_data
{
58 enum skl_dsp_d0i3_states state
;
59 struct delayed_work work
;
62 #define SKL_LIB_NAME_LENGTH 128
63 #define SKL_MAX_LIB 16
66 char name
[SKL_LIB_NAME_LENGTH
];
67 const struct firmware
*fw
;
70 struct skl_ipc_init_instance_msg
{
79 struct skl_ipc_bind_unbind_msg
{
89 struct skl_ipc_large_config_msg
{
96 struct skl_ipc_d0ix_msg
{
103 #define SKL_IPC_BOOT_MSECS 3000
105 #define SKL_IPC_D3_MASK 0
106 #define SKL_IPC_D0_MASK 3
108 irqreturn_t
skl_dsp_irq_thread_handler(int irq
, void *context
);
110 int skl_ipc_create_pipeline(struct sst_generic_ipc
*ipc
,
111 u16 ppl_mem_size
, u8 ppl_type
, u8 instance_id
, u8 lp_mode
);
113 int skl_ipc_delete_pipeline(struct sst_generic_ipc
*ipc
, u8 instance_id
);
115 int skl_ipc_set_pipeline_state(struct sst_generic_ipc
*ipc
,
116 u8 instance_id
, enum skl_ipc_pipeline_state state
);
118 int skl_ipc_save_pipeline(struct sst_generic_ipc
*ipc
,
119 u8 instance_id
, int dma_id
);
121 int skl_ipc_restore_pipeline(struct sst_generic_ipc
*ipc
, u8 instance_id
);
123 int skl_ipc_init_instance(struct sst_generic_ipc
*ipc
,
124 struct skl_ipc_init_instance_msg
*msg
, void *param_data
);
126 int skl_ipc_bind_unbind(struct sst_generic_ipc
*ipc
,
127 struct skl_ipc_bind_unbind_msg
*msg
);
129 int skl_ipc_load_modules(struct sst_generic_ipc
*ipc
,
130 u8 module_cnt
, void *data
);
132 int skl_ipc_unload_modules(struct sst_generic_ipc
*ipc
,
133 u8 module_cnt
, void *data
);
135 int skl_ipc_set_dx(struct sst_generic_ipc
*ipc
,
136 u8 instance_id
, u16 module_id
, struct skl_ipc_dxstate_info
*dx
);
138 int skl_ipc_set_large_config(struct sst_generic_ipc
*ipc
,
139 struct skl_ipc_large_config_msg
*msg
, u32
*param
);
141 int skl_ipc_get_large_config(struct sst_generic_ipc
*ipc
,
142 struct skl_ipc_large_config_msg
*msg
,
143 u32
**payload
, size_t *bytes
);
145 int skl_sst_ipc_load_library(struct sst_generic_ipc
*ipc
,
146 u8 dma_id
, u8 table_id
, bool wait
);
148 int skl_ipc_set_d0ix(struct sst_generic_ipc
*ipc
,
149 struct skl_ipc_d0ix_msg
*msg
);
151 int skl_ipc_check_D0i0(struct sst_dsp
*dsp
, bool state
);
153 void skl_ipc_int_enable(struct sst_dsp
*ctx
);
154 void skl_ipc_op_int_enable(struct sst_dsp
*ctx
);
155 void skl_ipc_op_int_disable(struct sst_dsp
*ctx
);
156 void skl_ipc_int_disable(struct sst_dsp
*ctx
);
158 bool skl_ipc_int_status(struct sst_dsp
*ctx
);
159 void skl_ipc_free(struct sst_generic_ipc
*ipc
);
160 int skl_ipc_init(struct device
*dev
, struct skl_dev
*skl
);
161 void skl_clear_module_cnt(struct sst_dsp
*ctx
);
163 void skl_ipc_process_reply(struct sst_generic_ipc
*ipc
,
164 struct skl_ipc_header header
);
165 int skl_ipc_process_notification(struct sst_generic_ipc
*ipc
,
166 struct skl_ipc_header header
);
167 void skl_ipc_tx_data_copy(struct ipc_message
*msg
, char *tx_data
,
169 #endif /* __SKL_IPC_H */