aboutsummaryrefslogtreecommitdiffstats
path: root/ucs2-interface/ucs-xml/UcsXml_Private.h
blob: 964a7ad7c1d029bc8a96a0356fa905f0a9236149 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*------------------------------------------------------------------------------------------------*/
/* UNICENS XML Parser                                                                             */
/* Copyright 2017, Microchip Technology Inc. and its subsidiaries.                                */
/*                                                                                                */
/* Redistribution and use in source and binary forms, with or without                             */
/* modification, are permitted provided that the following conditions are met:                    */
/*                                                                                                */
/* 1. Redistributions of source code must retain the above copyright notice, this                 */
/*    list of conditions and the following disclaimer.                                            */
/*                                                                                                */
/* 2. Redistributions in binary form must reproduce the above copyright notice,                   */
/*    this list of conditions and the following disclaimer in the documentation                   */
/*    and/or other materials provided with the distribution.                                      */
/*                                                                                                */
/* 3. Neither the name of the copyright holder nor the names of its                               */
/*    contributors may be used to endorse or promote products derived from                        */
/*    this software without specific prior written permission.                                    */
/*                                                                                                */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"                    */
/* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE                      */
/* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE                 */
/* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE                   */
/* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL                     */
/* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR                     */
/* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER                     */
/* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,                  */
/* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE                  */
/* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.                           */
/*------------------------------------------------------------------------------------------------*/
#ifndef UCSXML_PRIVATE_H_
#define UCSXML_PRIVATE_H_

#include <stdbool.h>
#include <stdint.h>
#include "ucs_api.h"

typedef enum
{
    SYNC_DATA        = 0,      /*!< \brief  Specifies the synchronous streaming data type */
    CONTROL_DATA     = 2,      /*!< \brief  Specifies the control data type */
    AV_PACKETIZED    = 3,      /*!< \brief  Specifies the A/V Packetized Isochronous
                                            streaming data type */
    QOS_IP           = 4,      /*!< \brief  Specifies the Quality of Service IP
                                            streaming data type*/
    DISC_FRAME_PHASE = 5,      /*!< \brief  Specifies the DiscreteFrame Isochronous
                                            streaming phase data type */
    IPC_PACKET       = 7,       /*!< \brief Specifies the IPC packet data type */
    INVALID          = 0xFF     /*!< \brief Defined invalid value */
} MDataType_t;

struct UcsXmlObjectList
{
    void *obj;
    struct UcsXmlObjectList *next;
};

void *MCalloc(struct UcsXmlObjectList *list, uint32_t nElem, uint32_t elemSize);
void FreeObjList(struct UcsXmlObjectList *cur);

struct MostSocketParameters
{
    struct UcsXmlObjectList *list;
    bool isSource;
    MDataType_t dataType;
    uint16_t bandwidth;
};
bool GetMostSocket(Ucs_Xrm_MostSocket_t **mostSoc, struct MostSocketParameters *param);

struct UsbPortParameters
{
    struct UcsXmlObjectList *list;
    const char *physicalLayer;
    const char *deviceInterfaces;
    const char *streamInCount;
    const char *streamOutCount;
};
bool GetUsbPort(Ucs_Xrm_UsbPort_t **usbPort, struct UsbPortParameters *param);
bool GetUsbPortDefaultCreated(Ucs_Xrm_ResObject_t **usbPort, struct UcsXmlObjectList *list);

struct UsbSocketParameters
{
    struct UcsXmlObjectList *list;
    bool isSource;
    MDataType_t dataType;
    const char *endpointAddress;
    const char *framesPerTrans;
    Ucs_Xrm_ResObject_t *usbPort; /** Must be either Ucs_Xrm_UsbPort_t or Ucs_Xrm_DefaultCreatedPort_t  */
};
bool GetUsbSocket(Ucs_Xrm_UsbSocket_t **usbSoc, struct UsbSocketParameters *param);

struct MlbPortParameters
{
    struct UcsXmlObjectList *list;
    const char *clockConfig;
};
bool GetMlbPort(Ucs_Xrm_MlbPort_t **mlbPort, struct MlbPortParameters *param);
bool GetMlbPortDefaultCreated(Ucs_Xrm_ResObject_t **mlbPort, struct UcsXmlObjectList *list);

struct MlbSocketParameters
{
    struct UcsXmlObjectList *list;
    bool isSource;
    MDataType_t dataType;
    uint16_t bandwidth;
    const char *channelAddress;
    Ucs_Xrm_ResObject_t *mlbPort; /** Must be either Ucs_Xrm_MlbPort_t or Ucs_Xrm_DefaultCreatedPort_t  */
};
bool GetMlbSocket(Ucs_Xrm_MlbSocket_t **mlbSoc, struct MlbSocketParameters *param);

struct StrmPortParameters
{
    uint8_t index; /** Always create two Streaming Ports one with index 0 and one with index 1 */
    struct UcsXmlObjectList *list;
    const char *clockConfig;
    const char *dataAlignment;
};
bool GetStrmPort(Ucs_Xrm_StrmPort_t **strmPort, struct StrmPortParameters *param);

struct StrmSocketParameters
{
    struct UcsXmlObjectList *list;
    bool isSource;
    MDataType_t dataType;
    uint16_t bandwidth;
    const char *streamPin;
    Ucs_Xrm_StrmPort_t *streamPortA; /* Mandatory, set with index 0 */
    Ucs_Xrm_StrmPort_t *streamPortB; /* Mandatory, set with index 1 */
};
bool GetStrmSocket(Ucs_Xrm_StrmSocket_t **strmSoc, struct StrmSocketParameters *param);

struct SplitterParameters
{
    struct UcsXmlObjectList *list;
    uint16_t bytesPerFrame;
    Ucs_Xrm_ResObject_t *inSoc;
};
bool GetSplitter(Ucs_Xrm_Splitter_t **splitter, struct SplitterParameters *param);

struct CombinerParameters
{
    struct UcsXmlObjectList *list;
    uint16_t bytesPerFrame;
    Ucs_Xrm_ResObject_t *outSoc;
};
bool GetCombiner(Ucs_Xrm_Combiner_t **combiner, struct CombinerParameters *param);

struct SyncConParameters
{
    struct UcsXmlObjectList *list;
    const char *muteMode;
    const char *optional_offset;
    Ucs_Xrm_ResObject_t *inSoc;
    Ucs_Xrm_ResObject_t *outSoc;
};
bool GetSyncCon(Ucs_Xrm_SyncCon_t **syncCon, struct SyncConParameters *param);

struct AvpConParameters
{
    struct UcsXmlObjectList *list;
    const char *optional_isocPacketSize;
    Ucs_Xrm_ResObject_t *inSoc;
    Ucs_Xrm_ResObject_t *outSoc;
};
bool GetAvpCon(Ucs_Xrm_AvpCon_t **avpCon, struct AvpConParameters *param);


#endif /* UCSXML_PRIVATE_H_ */