summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/cm/engine/component/inc/dspevent.h
blob: bb47363c0aea0d276bfe269e55781f78f7293915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (C) ST-Ericsson SA 2010
 * Author: Jean-Philippe FASSINO <jean-philippe.fassino@stericsson.com> for ST-Ericsson.
 * License terms: GNU General Public License (GPL) version 2.
 */
/**
 * \internal
 */
#ifndef __INC_DSP_EVENT
#define __INC_DSP_EVENT

#include <cm/inc/cm_type.h>
#include <cm/engine/component/inc/instance.h>
#include <cm/engine/memory/inc/memory.h>

/* value should be size of t_remote_event in mmdsp word */
#define DSP_REMOTE_EVENT_SIZE_IN_DSPWORD 5

t_cm_error dspevent_createDspEventFifo(
    const t_component_instance *pComp,
    const char* nameOfTOP,
    t_uint32 fifoNbElem,
    t_uint32 fifoElemSizeInWord,
    t_dsp_memory_type_id dspEventMemType,
    t_memory_handle *pHandle);
void dspevent_destroyDspEventFifo(t_memory_handle handle);

#endif /* __INC_DSP_EVENT */