2 * Intel SKL IPC Support
4 * Copyright (C) 2014-15, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as version 2, as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
19 #include <linux/kthread.h>
20 #include <linux/irqreturn.h>
21 #include "../common/sst-ipc.h"
25 struct sst_generic_ipc
;
27 enum skl_ipc_pipeline_state
{
28 PPL_INVALID_STATE
= 0,
29 PPL_UNINITIALIZED
= 1,
38 struct skl_ipc_dxstate_info
{
43 struct skl_ipc_header
{
53 wait_queue_head_t boot_wait
;
57 struct sst_generic_ipc ipc
;
59 /* callback for miscbdge */
60 void (*enable_miscbdcge
)(struct device
*dev
, bool enable
);
61 /*Is CGCTL.MISCBDCGE disabled*/
62 bool miscbdcg_disabled
;
65 struct skl_ipc_init_instance_msg
{
73 struct skl_ipc_bind_unbind_msg
{
83 struct skl_ipc_large_config_msg
{
90 #define SKL_IPC_BOOT_MSECS 3000
92 #define SKL_IPC_D3_MASK 0
93 #define SKL_IPC_D0_MASK 3
95 irqreturn_t
skl_dsp_irq_thread_handler(int irq
, void *context
);
97 int skl_ipc_create_pipeline(struct sst_generic_ipc
*sst_ipc
,
98 u16 ppl_mem_size
, u8 ppl_type
, u8 instance_id
);
100 int skl_ipc_delete_pipeline(struct sst_generic_ipc
*sst_ipc
, u8 instance_id
);
102 int skl_ipc_set_pipeline_state(struct sst_generic_ipc
*sst_ipc
,
103 u8 instance_id
, enum skl_ipc_pipeline_state state
);
105 int skl_ipc_save_pipeline(struct sst_generic_ipc
*ipc
,
106 u8 instance_id
, int dma_id
);
108 int skl_ipc_restore_pipeline(struct sst_generic_ipc
*ipc
, u8 instance_id
);
110 int skl_ipc_init_instance(struct sst_generic_ipc
*sst_ipc
,
111 struct skl_ipc_init_instance_msg
*msg
, void *param_data
);
113 int skl_ipc_bind_unbind(struct sst_generic_ipc
*sst_ipc
,
114 struct skl_ipc_bind_unbind_msg
*msg
);
116 int skl_ipc_load_modules(struct sst_generic_ipc
*ipc
,
117 u8 module_cnt
, void *data
);
119 int skl_ipc_unload_modules(struct sst_generic_ipc
*ipc
,
120 u8 module_cnt
, void *data
);
122 int skl_ipc_set_dx(struct sst_generic_ipc
*ipc
,
123 u8 instance_id
, u16 module_id
, struct skl_ipc_dxstate_info
*dx
);
125 int skl_ipc_set_large_config(struct sst_generic_ipc
*ipc
,
126 struct skl_ipc_large_config_msg
*msg
, u32
*param
);
128 int skl_ipc_get_large_config(struct sst_generic_ipc
*ipc
,
129 struct skl_ipc_large_config_msg
*msg
, u32
*param
);
131 void skl_ipc_int_enable(struct sst_dsp
*dsp
);
132 void skl_ipc_op_int_enable(struct sst_dsp
*ctx
);
133 void skl_ipc_op_int_disable(struct sst_dsp
*ctx
);
134 void skl_ipc_int_disable(struct sst_dsp
*dsp
);
136 bool skl_ipc_int_status(struct sst_dsp
*dsp
);
137 void skl_ipc_free(struct sst_generic_ipc
*ipc
);
138 int skl_ipc_init(struct device
*dev
, struct skl_sst
*skl
);
140 #endif /* __SKL_IPC_H */