0929506c7bd922605f157f362aa50c229b67eed6
[o-du/l2.git] / src / cm / du_app_rlc_inf.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* Defines APIs exchanged between du_app and cl module of RLC */
20 #ifndef __RLC_INF_H__
21 #define __RLC_INF_H__
22
23 /* Events */
24 #define EVENT_RLC_UE_CREATE_REQ  210
25 #define EVENT_RLC_UE_CREATE_RSP 211    /*!< Config Confirm */
26 #define EVENT_UL_RRC_MSG_TRANS_TO_DU  212
27 #define EVENT_DL_RRC_MSG_TRANS_TO_RLC 213
28 #define EVENT_RRC_DELIVERY_MSG_TRANS_TO_DU 214
29 #define EVENT_RLC_UE_RECONFIG_REQ  215
30 #define EVENT_RLC_UE_RECONFIG_RSP  216
31 #define EVENT_DL_RRC_MSG_RSP_TO_DU 217
32 #define EVENT_DL_USER_DATA_TRANS_TO_RLC 218
33 #define EVENT_UL_USER_DATA_TRANS_TO_DU 219
34 #define EVENT_RLC_UE_DELETE_REQ 220
35 #define EVENT_RLC_UE_DELETE_RSP 221
36
37 #define RB_ID_SRB 0
38 #define RB_ID_DRB 1
39
40 #define RB_TYPE_SRB 0        /* Signalling Radio Bearer */
41 #define RB_TYPE_DRB 1        /* Data Radio Bearer */
42
43 /* RLC Direction Config */
44 #define RLC_CFG_DIR_UL        1     /*!< Uplink direction */
45 #define RLC_CFG_DIR_DL        2     /*!< Downlink direction */
46 #define RLC_CFG_DIR_BOTH      3     /*!< Both Downlink and Uplink Direction*/
47
48
49 /* Logical Channel Type */
50 #define LCH_BCCH      1      /*!< BCCH Logical Channel */
51 #define LCH_PCCH      2      /*!< PCCH Logical Channel */
52 #define LCH_CCCH      3      /*!< CCCH Logical Channel */
53 #define LCH_DTCH      4      /*!< DTCH Logical Channel */
54 #define LCH_DCCH      5      /*!< DCCH Logical Channel */
55
56 typedef enum
57 {
58    TRANSMISSION_IN_PROGRESS,
59    TRANSMISSION_COMPLETE,
60    TRANSMISSION_FAILED
61 }DlMsgState;
62
63 typedef enum
64 {
65    RLC_CFG_REAS_NONE            ,  /*!< No Failure */
66    RLC_CFG_REAS_RB_CREAT_FAIL   ,  /*!< RB CB creation Failure */
67    RLC_CFG_REAS_UE_CREAT_FAIL   ,  /*!< UE CB creation Failure */
68    RLC_CFG_REAS_CELL_CREAT_FAIL ,  /*!< CELL CB creation Failure */
69    RLC_CFG_REAS_RB_PRSNT        ,  /*!< RB CB already present */
70    RLC_CFG_REAS_LCHTYPE_MIS     ,  /*!< Logical channel type mismatch */
71    RLC_CFG_REAS_RB_UNKWN        ,  /*!< RB Cb unknown */
72    RLC_CFG_REAS_UE_UNKWN        ,  /*!< UE Cb unknown */
73    RLC_CFG_REAS_CELL_UNKWN      ,  /*!< Cell Cb unknown */
74    RLC_CFG_REAS_RB_DEL_FAIL     ,  /*!< RB Cb Deletion Failure */
75    RLC_CFG_REAS_UE_DEL_FAIL     ,  /*!< UE Cb Deletion Failure */
76    RLC_CFG_REAS_RB_REEST_FAIL   ,  /*!< RB Cb Re establish Failure */
77    RLC_CFG_REAS_RB_MODE_MIS     ,  /*!< RB Cb Mode mismatch */
78    RLC_CFG_REAS_REEST_FAIL      ,  /*!< RB Cb Re-establishment Failed */
79    RLC_CFG_REAS_RECFG_FAIL      ,  /*!< RB Cb Re-configuration Failed */
80    RLC_CFG_REAS_INVALID_CFG     ,  /*!< Invalid Configuration Type */
81    RLC_CFG_REAS_SAME_UEID       ,  /*!< UE Ids match in ChngUeId Request */
82    RLC_CFG_REAS_CELL_DEL_FAIL   ,  /*!< Cell Cb Deletion Failure */
83    RLC_CFG_REAS_INVALID_LCHID   ,  /*!< Invalid LChId */
84    RLC_CFG_REAS_INVALID_DIR     ,  /*!< Invalid Direction */
85    RLC_CFG_REAS_UE_EXISTS       ,  /*!< UE ID already exists */
86    RLC_CFG_REAS_INVALID_SNLEN   ,  /*!< Invalid SN Length */
87    RLC_CFG_REAS_SNLEN_MIS       ,  /*!< SN Length mismatch */
88    RLC_CFG_REAS_INVALID_RGUSAP     /*!< Invalid RGU SAP ID */
89 }FailureReason;
90
91 typedef enum
92 {
93    SUCCESSFUL            ,  /*!< No Failure */
94    INVALID_CELLID      ,  /*!< CellId not present */
95    INVALID_UEID        ,  /*!< UEId not present */
96 }UeDeleteResult;
97
98 typedef enum
99 {
100    RLC_AM,                    //Acknowledged Mode
101    RLC_UM_BI_DIRECTIONAL,     //UnAcknowledged Mode
102    RLC_UM_UNI_DIRECTIONAL_UL,
103    RLC_UM_UNI_DIRECTIONAL_DL
104 }RlcMode;
105
106 typedef enum
107 {
108    AM_SIZE_12 = 1,
109    AM_SIZE_18
110 }SnLenAm;
111
112 typedef enum
113 {
114    UM_SIZE_6 = 1,
115    UM_SIZE_12
116 }SnLenUm;
117
118 typedef enum
119 {
120    RLC_DU_APP_RSP_NOK,
121    RLC_DU_APP_RSP_OK
122 }RlcRsp;
123
124 typedef struct ulAmCfg
125 {
126    SnLenAm        snLenUl;              /* Sequence Number length in bits. Allowed values are 12 and 18 */
127    int8_t         reAssemTmr;           /* T_reassembling Timer in msec*/
128    int16_t        statProhTmr;          /* T_status_prohibit Timer in msec*/
129
130 }UlAmCfg;
131
132 typedef struct dlAmCfg
133 {
134    SnLenAm      snLenDl;             /* Sequence Number length in bits. Allowed values are 12 and 18 */
135    uint16_t     pollRetxTmr;         /* T_poll_retransmit Timer in msec */
136    int16_t      pollPdu;             /* Used to trigger a poll for every pollPdu.*/
137    int32_t      pollByte;            /* Poll_Byte in bytes. */
138    uint8_t      maxRetxTh;           /* Max_Retx_Threshold */
139
140 }DlAmCfg;
141
142 typedef struct dlUmCfg
143 {
144    SnLenUm        snLenDlUm;             /* Sequence Number length in bits. Allowed values are 6 and 12 */
145
146 }DlUmCfg;
147
148 typedef struct ulUmCfg
149 {
150    SnLenUm        snLenUlUm;             /* Sequence Number length in bits. Allowed values are 6 and 12 */
151    int8_t         reAssemTmr;            /* T_reassembling Timer in msec*/
152
153 }UlUmCfg;
154
155 typedef struct amBearerCfg
156 {
157    UlAmCfg  ulAmCfg;
158    DlAmCfg  dlAmCfg;
159 }AmBearerCfg;
160
161 typedef struct umBiDirBearerCfg
162 {
163    UlUmCfg  ulUmCfg;
164    DlUmCfg  dlUmCfg;
165 }UmBiDirBearerCfg;
166
167 typedef struct umUniDirUlBearerCfg
168 {
169    UlUmCfg  ulUmCfg;
170 }UmUniDirUlBearerCfg;
171
172 typedef struct umUniDirDlBearerCfg
173 {
174    DlUmCfg  dlUmCfg;
175 }UmUniDirDlBearerCfg;
176
177 /* Spec Ref: 38.331, 6.3.2 RLC-BearerConfig */
178 typedef struct rlcBearerCfg
179 {
180    ConfigType   configType;
181    uint8_t      rbId;
182    uint8_t      rbType;
183    uint8_t      lcId;
184    uint8_t      lcType;
185    RlcMode      rlcMode;
186    union
187    {
188       AmBearerCfg         *amCfg;
189       UmBiDirBearerCfg    *umBiDirCfg;
190       UmUniDirUlBearerCfg *umUniDirUlCfg;
191       UmUniDirDlBearerCfg *umUniDirDlCfg;
192    }u;
193 }RlcBearerCfg;
194
195 typedef struct rlcUeCfg
196 {
197    uint16_t     cellId;
198    uint8_t      ueIdx;
199    uint8_t      numLcs;
200    RlcBearerCfg rlcLcCfg[MAX_NUM_LC];
201    UeCfgState rlcUeCfgState; /* InActive / Completed */
202 }RlcUeCfg;
203
204 typedef struct rlcUeCfgRsp
205 {
206    uint16_t       cellId;
207    uint16_t       ueIdx;
208    RlcRsp         result;
209    FailureReason  reason;
210 }RlcUeCfgRsp;
211
212 typedef struct rlcUeDelete
213 {
214    uint16_t      cellId;
215    uint8_t       ueId;
216 }RlcUeDelete;
217
218 typedef struct rlcUeDeleteRsp
219 {
220    uint16_t       cellId;
221    uint8_t        ueId;
222    UeDeleteResult result;
223 }RlcUeDeleteRsp;
224
225 /* UL RRC Message from RLC to DU APP */
226 typedef struct ulRrcMsgInfo
227 {
228    uint16_t   cellId;       /* Cell Id */
229    uint16_t   ueIdx;        /* UE Index */
230    uint8_t    lcId;         /* Logical channel Id */
231    uint16_t   msgLen;       /* RRC message length (in bytes) */
232    uint8_t    *rrcMsg;      /* RRC Message (UL-DCCH Message) */
233 }RlcUlRrcMsgInfo;
234
235 /* UL User Data from RLC to DU APP */
236 typedef struct ulUserDatInfo
237 {
238    uint16_t   cellId;       /* Cell Id */
239    uint16_t   ueIdx;        /* UE Index */
240    uint8_t    rbId;
241    uint16_t   msgLen;       /* User data length (in bytes) */
242    uint8_t    *userData;    /* User data (UL-DTCH Message) */
243 }RlcUlUserDatInfo;
244
245 /* DL RRC Message from DU APP to RLC */
246 typedef struct dlRrcMsgInfo
247 {
248    uint16_t   cellId;         /* Cell Id */
249    uint16_t   ueIdx;          /* UE index */
250    uint8_t    rbType;         /* Radio Bearer Type */
251    uint8_t    rbId;           /* Radio Bearer Id */
252    uint8_t    lcType;         /* Logical channel type */
253    uint8_t    lcId;           /* Logical channel Id */
254    bool       execDup;        /* Execution duplication enabled */
255    bool       deliveryStaRpt;  /* Reporting of delivery status by RLC to DU-APP enabled */
256    uint16_t   msgLen;         /* RRC Message length */
257    uint8_t    *rrcMsg;        /* RRC Message (DL-DCCH Message) */
258 }RlcDlRrcMsgInfo;
259
260 /* DL RRC Message Rsp From RLC to DU APP */
261 typedef struct dlRrcMsgRsp
262 {
263    uint16_t   cellId;         /* Cell Id */
264    uint16_t   crnti;          /* UE index */
265    DlMsgState state;         /* Dl RRC Msg State */
266 }RlcDlRrcMsgRsp;
267
268 /* RRC delivery message from RLC to DU APP */
269 typedef struct rrcDeliveryStatus
270 {
271    uint16_t  deliveryStatus;
272    uint16_t  triggeringMessage;
273 }RrcDeliveryStatus;
274
275 typedef struct rrcDeliveryReportInfo
276 {
277    uint16_t  cellId;
278    uint16_t  ueIdx;
279    uint8_t   srbId;
280    RrcDeliveryStatus  rrcDeliveryStatus;
281 }RrcDeliveryReport;
282
283 /* DL Data Message from DU APP to RLC */
284 typedef struct dlDataMsgInfo
285 {
286    uint16_t   cellId;         /* Cell Id */
287    uint16_t   ueIdx;          /* UE index */
288    uint8_t    rbId;           /* Radio Bearer Id */
289    uint16_t   msgLen;         /* Message length */
290    Buffer     *dlMsg;         /* DL Data */
291 }RlcDlUserDataInfo;
292
293 /* Function Pointers */
294 /* UE create Request from DU APP to RLC*/
295 typedef uint8_t (*DuRlcUeCreateReq) ARGS((
296    Pst           *pst,
297    RlcUeCfg      *ueCfg ));
298
299 /* UE Cfg Response from RLC to DU APP*/
300 typedef uint8_t (*RlcDuUeCfgRsp) ARGS((
301    Pst          *pst,
302    RlcUeCfgRsp  *ueCfgRsp));
303
304 /* UE Delete Response from RLC to DU APP*/
305 typedef uint8_t (*RlcDuUeDeleteRsp) ARGS((
306    Pst          *pst,
307    RlcUeDeleteRsp  *ueDelRsp));
308
309 /* UL RRC Message from RLC to DU APP */
310 typedef uint8_t (*RlcUlRrcMsgToDuFunc) ARGS((
311    Pst           *pst,
312    RlcUlRrcMsgInfo *ulRrcMsgInfo));
313
314 /* DL RRC Message from DU APP to RLC */
315 typedef uint8_t (*DuDlRrcMsgToRlcFunc) ARGS((
316    Pst           *pst,
317    RlcDlRrcMsgInfo *dlRrcMsgInfo));
318
319 /* RRC delivery message from RLC to DU APP */
320 typedef uint8_t (*RlcRrcDeliveryReportToDuFunc) ARGS((
321    Pst           *pst,
322    RrcDeliveryReport *rrcDeliveryReport));
323
324 /* UE Reconfig Request from DU APP to RLC */
325 typedef uint8_t (*DuRlcUeReconfigReq) ARGS((
326    Pst           *pst,
327    RlcUeCfg      *ueCfg ));
328
329 /* UE Delete Request from DU APP to RLC */
330 typedef uint8_t (*DuRlcUeDeleteReq) ARGS((
331    Pst           *pst,
332    RlcUeDelete   *ueDelete));
333
334 /* DL RRC Message from RLC to DU APP */
335 typedef uint8_t (*RlcDlRrcMsgRspToDuFunc) ARGS((
336    Pst           *pst,
337    RlcDlRrcMsgRsp *dlRrcMsgRsp));
338
339 /* UL User data from RLC to DU APP */
340 typedef uint8_t (*RlcUlUserDataToDuFunc) ARGS((
341    Pst           *pst,
342    RlcUlUserDatInfo *ulUserData));
343
344 /* DL User Data from DU APP to RLC */
345 typedef uint8_t (*DuRlcDlUserDataToRlcFunc) ARGS((
346    Pst           *pst,
347    RlcDlUserDataInfo *dlDataMsg));
348
349 /* Pack/Unpack function declarations */
350 uint8_t packDuRlcUeCreateReq(Pst *pst, RlcUeCfg *ueCfg);
351 uint8_t unpackRlcUeCreateReq(DuRlcUeCreateReq func, Pst *pst, Buffer *mBuf);
352 uint8_t packRlcDuUeCfgRsp(Pst *pst, RlcUeCfgRsp *ueCfgRsp);
353 uint8_t unpackRlcUeCfgRsp(RlcDuUeCfgRsp func, Pst *pst, Buffer *mBuf);
354 uint8_t packRlcUlRrcMsgToDu(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo);
355 uint8_t unpackRlcUlRrcMsgToDu(RlcUlRrcMsgToDuFunc func, Pst *pst, Buffer *mBuf);
356 uint8_t packDlRrcMsgToRlc(Pst *pst, RlcDlRrcMsgInfo *dlRrcMsgInfo);
357 uint8_t unpackDlRrcMsgToRlc(DuDlRrcMsgToRlcFunc func, Pst *pst, Buffer *mBuf);
358 uint8_t packRrcDeliveryReportToDu(Pst *pst, RrcDeliveryReport *rrcDeliveryReport);
359 uint8_t unpackRrcDeliveryReportToDu(RlcRrcDeliveryReportToDuFunc func,Pst *pst, Buffer *mBuf);
360 uint8_t packDuRlcUeReconfigReq(Pst *pst, RlcUeCfg *ueCfg);
361 uint8_t unpackRlcUeReconfigReq(DuRlcUeReconfigReq func, Pst *pst, Buffer *mBuf);
362 uint8_t packRlcDlRrcMsgRspToDu(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsgRsp);
363 uint8_t unpackRlcDlRrcMsgRspToDu(RlcDlRrcMsgRspToDuFunc func, Pst *pst, Buffer *mBuf);
364 uint8_t packRlcUlUserDataToDu(Pst *pst, RlcUlUserDatInfo *ulUserData);
365 uint8_t unpackRlcUlUserDataToDu(RlcUlUserDataToDuFunc func, Pst *pst, Buffer *mBuf);
366 uint8_t packRlcDlUserDataToRlc(Pst *pst, RlcDlUserDataInfo *dlDataMsg);
367 uint8_t unpackRlcDlUserDataToRlc(DuRlcDlUserDataToRlcFunc func, Pst *pst, Buffer *mBuf);
368 uint8_t packDuRlcUeDeleteReq(Pst *pst, RlcUeDelete *ueDelete);
369 uint8_t unpackRlcUeDeleteReq(DuRlcUeDeleteReq func, Pst *pst, Buffer *mBuf);
370 uint8_t packRlcDuUeDeleteRsp(Pst *pst, RlcUeDeleteRsp *ueDeleteRsp);
371 uint8_t unpackRlcUeDeleteRsp(RlcDuUeDeleteRsp func, Pst *pst, Buffer *mBuf);
372
373 /* Event Handler function declarations */
374 uint8_t RlcProcUeCreateReq(Pst *pst, RlcUeCfg *ueCfg);
375 uint8_t DuProcRlcUeCfgRsp(Pst *pst, RlcUeCfgRsp *cfgRsp);
376 uint8_t DuProcRlcUlRrcMsgTrans(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo);
377 uint8_t RlcProcDlRrcMsgTransfer(Pst *pst, RlcDlRrcMsgInfo *dlRrcMsgInfo);
378 uint8_t DuProcRlcRrcDeliveryReport(Pst *pst, RrcDeliveryReport *rrcDeliveryReport);
379 uint8_t RlcProcUeReconfigReq(Pst *pst, RlcUeCfg *ueCfg);
380 uint8_t DuProcRlcDlRrcMsgRsp(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsg);
381 uint8_t DuProcRlcUlUserDataTrans(Pst *pst, RlcUlUserDatInfo *ulUserData);
382 uint8_t RlcProcDlUserDataTransfer(Pst *pst, RlcDlUserDataInfo *dlDataMsgInfo);
383 uint8_t RlcProcUeDeleteReq(Pst *pst, RlcUeDelete *ueDelete);
384 uint8_t DuProcRlcUeDeleteRsp(Pst *pst, RlcUeDeleteRsp *delRsp);
385 #endif /* RLC_INF_H */
386
387 /**********************************************************************
388          End of file
389 **********************************************************************/