Source
125
125
*/
126
126
int dce_ipc_init(int core);
127
127
128
128
/*===============================================================*/
129
129
/** dce_ipc_deinit : Deinitialize DCE IPC.
130
130
*
131
131
* @ param dev [in] : Core ID and engine Table Idx, or -1 if no engine exists
132
132
*/
133
133
void dce_ipc_deinit(int core, int tableIdx);
134
134
135
+
/*===============================================================*/
136
+
/** dce_ipc_recover : Recover the DCE IPC in case of
137
+
* remote core crash.
138
+
*/
139
+
void dce_ipc_recover(void);
140
+
135
141
/************************ Input/Output Buffer Lock/Unlock APIs ************************/
136
142
/*=====================================================================================*/
137
143
/** dce_buf_lock : Pin or lock Tiler Buffers which would be used by the IVAHD codec
138
144
* as reference buffers. API is specific to GLP.
139
145
*
140
146
* @ param num [in] : Number of buffers to be locked.
141
147
* @ param handle [in] : Pointer to array of DMA Buf FDs of the buffers to be locked.
142
148
* @ return : DCE error status is returned.
143
149
*/
144
150
int dce_buf_lock(int num, size_t *handle);