[Epic-ID: ODUHIGH-405][Task-ID: ODUHIGH-423]Filled ReconfigurationWithSync IE,
[o-du/l2.git] / src / cm / du_app_mac_inf.c
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 #include "common_def.h"
20 #include "du_app_mac_inf.h"
21
22 /**************************************************************************
23  * @brief Function to pack Loose Coupled 
24  *        MAC cell config parameters required by MAC
25  *
26  * @details
27  *
28  *      Function : packMacCellCfg
29  *
30  *      Functionality:
31  *           packs the macCellCfg parameters
32  *
33  * @param[in] Pst     *pst, Post structure of the primitive.
34  * @param[in] MacCellCfg  *macCellCfg, mac cell config parameters.
35  * @return ROK     - success
36  *         RFAILED - failure
37  *
38  ***************************************************************************/
39 uint8_t packMacCellCfg(Pst *pst, MacCellCfg *macCellCfg)
40 {
41    if(pst->selector == ODU_SELECTOR_LC)
42    {
43       /* we are now implemented only light wieght lossely coupled interface */
44       return RFAILED;
45    }
46    else if(pst->selector == ODU_SELECTOR_LWLC)
47    {
48       Buffer *mBuf = NULLP;
49
50       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK) 
51       {
52          return RFAILED;
53       }
54
55       /* pack the address of the structure */
56       CMCHKPK(oduPackPointer,(PTR)macCellCfg, mBuf);
57
58       DU_LOG("\nDEBUG  -->  DU-APP : MAC CELL config sent");
59       return ODU_POST_TASK(pst,mBuf);
60    } 
61    return ROK;
62 }
63
64 /**************************************************************************
65  * @brief Function to pack Loose Coupled 
66  *        MAC cell config parameters required by MAC
67  *
68  * @details
69  *
70  *      Function : unpackDuMacCellCfg
71  *
72  *      Functionality:
73  *           packs the macCellCfg parameters
74  *
75  * @param[in] DuMacCellCfgReq func; function pointer
76  * @param[in] Pst     *pst, Post structure of the primitive.
77  * @param[in] Buffer *mBuf
78  * @return ROK     - success
79  *         RFAILED - failure
80  *
81  ***************************************************************************/
82 uint8_t  unpackDuMacCellCfg(DuMacCellCfgReq func, Pst *pst, Buffer *mBuf)
83 {
84    uint16_t ret = ROK;
85    MacCellCfg *macCellCfg;
86
87    if(pst->selector == ODU_SELECTOR_LWLC)
88    {
89       /* unpack the address of the structure */
90       CMCHKUNPK(oduUnpackPointer, (PTR *)&macCellCfg, mBuf);
91       ret = (*func)(pst, macCellCfg);
92    }
93    else
94    {
95       /* only LWLC is implemented now */
96       ret = ROK;
97    }
98
99    return ret;
100 }
101
102 /**************************************************************************
103  * @brief Function to pack Loose Coupled 
104  *        MAC cell config confirm message
105  *
106  * @details
107  *
108  *      Function : packMacCellCfgCfm
109  *
110  *      Functionality:
111  *           packs the transaction ID  
112  *
113  * @param[in] Pst     *pst, Post structure of the primitive.
114  * @param[in] MacCellCfgCfm  *macCellCfgCfm, mac cell config confirm.
115  * @return ROK     - success
116  *         RFAILED - failure
117  *
118  ***************************************************************************/
119 uint8_t  packMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm)
120 {
121    if(pst->selector == ODU_SELECTOR_LC)
122    {
123       Buffer *mBuf = NULLP;
124       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK) 
125       {
126          return RFAILED;
127       }
128
129       /* pack the transaction ID in CNF structure */
130       CMCHKPK(oduUnpackUInt16, macCellCfgCfm->cellId, mBuf);
131       CMCHKPK(oduUnpackUInt8, macCellCfgCfm->rsp, mBuf);
132
133       return ODU_POST_TASK(pst,mBuf);
134    }
135    else if(pst->selector == ODU_SELECTOR_LWLC)
136    {
137       /* only LC is supported */
138       return RFAILED;
139    }
140    return ROK;
141 }
142
143 /**************************************************************************
144  * @brief Function to pack MAC cell config confirm message
145  *
146  * @details
147  *
148  *      Function : unpackMacCellCfgCfm
149  *
150  *      Functionality:
151  *           packs the transaction ID  
152  *
153  * @param[in] DuMacCellCfgCfm func; function pointer
154  * @param[in] Pst     *pst, Post structure of the primitive.
155  * @param[in] Buffer *mBuf
156  * @return ROK     - success
157  *         RFAILED - failure
158  *
159  ***************************************************************************/
160 uint8_t unpackMacCellCfgCfm(DuMacCellCfgCfm func, Pst *pst, Buffer *mBuf)
161 {
162    MacCellCfgCfm macCellCfgCfm;
163
164    if(pst->selector == ODU_SELECTOR_LC)
165    {
166       /* unpack the transaction ID in CNF structure */
167       CMCHKUNPK(oduPackUInt8, &(macCellCfgCfm.rsp), mBuf);
168       CMCHKUNPK(oduPackUInt16, &(macCellCfgCfm.cellId), mBuf);
169       return (*func)(pst, &macCellCfgCfm);
170    }
171    else
172    {
173       /* only loose coupling is suported */
174       return ROK;
175    }
176 }
177
178 /*******************************************************************
179  *
180  * @brief Packs and Send Cell Start Request to MAC
181  *
182  * @details
183  *
184  *    Function : packMacCellStart
185  *
186  *    Functionality:
187  *      Packs and Sends Cell Start Request to MAC
188  *
189  * @params[in] Post structure pointer
190  *             Cell Id
191  * @return ROK     - success
192  *         RFAILED - failure
193  *
194  * ****************************************************************/
195 uint8_t packMacCellStart(Pst *pst, OduCellId *cellId)
196 {
197    Buffer *mBuf = NULLP;
198
199    if(pst->selector == ODU_SELECTOR_LC)
200    {
201       /* Loose coupling not supported */
202       return RFAILED;
203    }
204    else if(pst->selector == ODU_SELECTOR_LWLC)
205    {
206
207       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
208       {
209          DU_LOG("\nERROR  --> DU APP : Memory allocation failed for cell start req pack");
210          return RFAILED;
211       }
212
213       /* pack the address of the structure */
214       CMCHKPK(oduPackPointer,(PTR)cellId, mBuf);
215
216    }
217    return ODU_POST_TASK(pst,mBuf);
218 }
219
220 /*******************************************************************
221  *
222  * @brief Unpacks MAC Cell Start Request from DU APP
223  *
224  * @details
225  *
226  *    Function : unpackMaCellStart
227  *
228  *    Functionality:
229  *      Unpacks MAC Cell Start Request from DU APP
230  *
231  * @params[in] Function pointer of cell start request handler
232  *             Post structure pointer
233  *             Message Buffer
234  * @return ROK     - success
235  *         RFAILED - failure
236  *
237  * ****************************************************************/
238 uint8_t unpackMacCellStart(DuMacCellStart func, Pst *pst, Buffer *mBuf)
239 {
240    OduCellId  *cellId;
241
242    if(pst->selector == ODU_SELECTOR_LWLC)
243    {
244       /* unpack the address of the structure */
245       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellId, mBuf);
246       ODU_PUT_MSG_BUF(mBuf); 
247       return (*func)(pst, cellId);
248    }
249    else
250    {
251       /* Nothing to do for loose coupling */
252       ODU_PUT_MSG_BUF(mBuf);
253       return ROK;
254    }
255 }
256
257 /*******************************************************************
258  *
259  * @brief Packs and Send cell stop request to MAC
260  *
261  * @details
262  *
263  *    Function : packMacCellStop
264  *
265  *    Functionality:
266  *       Packs and Send cell stop request to MAC
267  *
268  * @params[in] Post structure pointer
269  *             Cell Id 
270  * @return ROK     - success
271  *         RFAILED - failure
272  *
273  * ****************************************************************/
274 uint8_t packMacCellStop(Pst *pst, OduCellId  *cellId)
275 {
276    if(pst->selector == ODU_SELECTOR_LC)
277    {
278       /* Loose coupling not supported */
279       return RFAILED;
280    }
281    else if(pst->selector == ODU_SELECTOR_LWLC)
282    {
283       Buffer *mBuf = NULLP;
284
285       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
286       {
287          DU_LOG("\nERROR  --> DU APP : Memory allocation failed for cell stop req pack");
288          return RFAILED;
289       }
290
291       /* pack the address of the structure */
292       CMCHKPK(oduPackPointer,(PTR)cellId, mBuf);
293
294       return ODU_POST_TASK(pst,mBuf);
295    }
296    return ROK;
297 }
298
299 /*******************************************************************
300  *
301  * @brief Unpacks cell stop request from DU APP 
302  *
303  * @details
304  *
305  *    Function : unpackMaCellStop 
306  *
307  *    Functionality:
308  *       Unpacks cell stop request from DU APP 
309  *
310  * @params[in] Handler function pointer
311  *             Post structure pointer
312  *             Message Buffer
313  * @return ROK     - success
314  *         RFAILED - failure
315  *
316  * ****************************************************************/
317 uint8_t unpackMacCellStop(DuMacCellStop func, Pst *pst, Buffer *mBuf)
318 {
319    OduCellId *cellId;
320    
321    if(pst->selector == ODU_SELECTOR_LWLC)
322    {
323       /* unpack the address of the structure */
324       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellId, mBuf);
325       ODU_PUT_MSG_BUF(mBuf);
326       return (*func)(pst, cellId);
327    }
328    else
329    {
330       /* Nothing to do for loose coupling */
331       ODU_PUT_MSG_BUF(mBuf);
332       return ROK;
333    }
334 }
335
336 /*******************************************************************
337  *
338  * @brief Packs and Sends cell up ind from MAC to DUAPP
339  *
340  * @details
341  *
342  *    Function : packMacCellUpInd
343  *
344  *    Functionality:
345  *       Packs and Sends cell up ind from MAC to DUAPP
346  *
347  * @params[in] Post structure pointer
348  *             Cell Id
349  * @return ROK     - success
350  *         RFAILED - failure
351  *
352  * ****************************************************************/
353 uint8_t packMacCellUpInd(Pst *pst, OduCellId *cellId)
354 {
355    Buffer *mBuf = NULLP;
356
357    if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
358    {
359       DU_LOG("\nERROR  --> DU APP : Memory allocation failed for packMacCellUpInd");
360       return RFAILED;
361    }
362
363    if(pst->selector == ODU_SELECTOR_LC)
364    {
365       CMCHKPK(oduUnpackUInt16, cellId->cellId, mBuf);
366       CM_FREE_SHRABL_BUF(pst->region, pst->pool, cellId, sizeof(OduCellId));
367       cellId = NULL;
368    }
369    else if(pst->selector == ODU_SELECTOR_LWLC)
370    {
371       /* pack the address of the structure */
372       CMCHKPK(oduPackPointer,(PTR)cellId, mBuf);
373    }
374    else
375    {
376       ODU_PUT_MSG_BUF(mBuf);
377    }
378
379    return ODU_POST_TASK(pst, mBuf);
380 }
381
382 /*******************************************************************
383  *
384  * @brief Unpacks cell up indication from MAC
385  *
386  * @details
387  *
388  *    Function : unpackMacCellUpInd
389  *
390  *    Functionality:
391  *         Unpacks cell up indication from MAC
392  *
393  * @params[in] Pointer to Handler
394  *             Post structure pointer
395  *             Message Buffer
396  * @return ROK     - success
397  *         RFAILED - failure
398  *
399  * ****************************************************************/
400 uint8_t unpackMacCellUpInd(DuMacCellUpInd func, Pst *pst, Buffer *mBuf)
401 {
402    if(pst->selector == ODU_SELECTOR_LWLC)
403    {
404       OduCellId *cellId;
405
406       /* unpack the address of the structure */
407       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellId, mBuf);
408       ODU_PUT_MSG_BUF(mBuf);
409       return (*func)(pst, cellId);
410    }
411    else if(pst->selector == ODU_SELECTOR_LC)
412    {
413       OduCellId cellId;
414       CMCHKUNPK(oduPackUInt16, &cellId.cellId, mBuf);
415       ODU_PUT_MSG_BUF(mBuf);
416       return (*func)(pst, &cellId);
417    }
418    else
419    {
420       /* Nothing to do for loose coupling */
421       ODU_PUT_MSG_BUF(mBuf);
422       return ROK;
423    }
424    return ROK;
425 }
426
427 /*******************************************************************
428  *
429  * @brief Packs and Sends stop ind from MAC to DUAPP
430  *
431  * @details
432  *
433  *    Function : packMacStopInd
434  *
435  *    Functionality:
436  *       Packs and Sends stop ind from MAC to DUAPP
437  *
438  * @params[in] Post structure pointer
439  * @return ROK     - success
440  *         RFAILED - failure
441  *
442  * ****************************************************************/
443 uint8_t packMacStopInd(Pst *pst, OduCellId *cellId)
444 {
445    Buffer *mBuf = NULLP;
446
447    if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
448    {
449       DU_LOG("\nERROR  --> DU APP : Memory allocation failed for stop Ind pack");
450       return RFAILED;
451    }
452
453    if(pst->selector == ODU_SELECTOR_LC)
454    {
455       /*pack the payload here*/
456       CMCHKPK(oduUnpackUInt16, cellId->cellId, mBuf);
457       CM_FREE_SHRABL_BUF(pst->region, pst->pool, cellId, sizeof(OduCellId));
458       cellId = NULL;
459    }
460    else if(pst->selector == ODU_SELECTOR_LWLC)
461    {
462       /* pack the address of the structure */
463       CMCHKPK(oduPackPointer,(PTR)cellId, mBuf);
464    }
465    else
466    {
467       ODU_PUT_MSG_BUF(mBuf);
468    }
469
470    return ODU_POST_TASK(pst,mBuf);
471 }
472
473 /*******************************************************************
474  *
475  * @brief Unpacks stop indication from MAC
476  *
477  * @details
478  *
479  *    Function : unpackMacStopInd
480  *
481  *    Functionality:
482  *         Unpacks stop indication from MAC
483  *
484  * @params[in] Pointer to Handler
485  *             Post structure pointer
486  *             Message Buffer
487  * @return ROK     - success
488  *         RFAILED - failure
489  *
490  * ****************************************************************/
491 uint8_t unpackMacStopInd(DuMacStopInd func, Pst *pst, Buffer *mBuf)
492 {
493    if(pst->selector == ODU_SELECTOR_LWLC)
494    {
495       OduCellId *cellId=NULLP;
496       /* unpack the address of the structure */
497       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellId, mBuf);
498       ODU_PUT_MSG_BUF(mBuf);
499       return (*func)(pst, cellId);
500    }
501    else if(pst->selector == ODU_SELECTOR_LC)
502    {
503       OduCellId cellId;
504       CMCHKUNPK(oduPackUInt16, &(cellId.cellId), mBuf);
505
506       ODU_PUT_MSG_BUF(mBuf);
507       return (*func)(pst, &cellId);
508
509    }
510    else
511    {
512       /* Nothing to do for loose coupling */
513       ODU_PUT_MSG_BUF(mBuf);
514       return ROK;
515    }
516    return ROK;
517 }
518
519 /*******************************************************************
520  *
521  * @brief Packs and Sends UL CCCH Ind from MAC to DUAPP
522  *
523  * @details
524  *
525  *    Function : packMacUlCcchInd
526  *
527  *    Functionality:
528  *       Packs and Sends UL CCCH Ind from MAC to DUAPP
529  *
530  * @params[in] Post structure pointer
531  *             UL CCCH Ind pointer              
532  * @return ROK     - success
533  *         RFAILED - failure
534  *
535  * ****************************************************************/
536 uint8_t packMacUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo)
537 {
538    Buffer *mBuf = NULLP;
539
540    if(pst->selector == ODU_SELECTOR_LWLC)
541    {
542       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
543       {
544          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packMacUlCcchInd");
545          return RFAILED;
546       }
547       /* pack the address of the structure */
548       CMCHKPK(oduPackPointer,(PTR)ulCcchIndInfo, mBuf);
549    }
550    else
551    {
552       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for UL CCCH Ind ");
553       return RFAILED;
554    }
555
556    return ODU_POST_TASK(pst,mBuf);
557 }
558
559 /*******************************************************************
560  *
561  * @brief Unpacks UL CCCH indication from MAC
562  *
563  * @details
564  *
565  *    Function : unpackMacUlCcchInd
566  *
567  *    Functionality:
568  *         Unpacks UL CCCH indication from MAC
569  *
570  * @params[in] Pointer to Handler
571  *             Post structure pointer
572  *             Message Buffer
573  * @return ROK     - success
574  *         RFAILED - failure
575  *
576  * ****************************************************************/
577 uint8_t unpackMacUlCcchInd(DuMacUlCcchInd func, Pst *pst, Buffer *mBuf)
578 {
579    if(pst->selector == ODU_SELECTOR_LWLC)
580    {
581       UlCcchIndInfo *ulCcchIndInfo;
582
583       /* unpack the address of the structure */
584       CMCHKUNPK(oduUnpackPointer, (PTR *)&ulCcchIndInfo, mBuf);
585       ODU_PUT_MSG_BUF(mBuf);
586       return (*func)(pst, ulCcchIndInfo);
587    }
588    else
589    {
590       /* Nothing to do for other selectors */
591       DU_LOG("\nERROR  -->  MAC : Only LWLC supported for UL CCCH Ind ");
592       ODU_PUT_MSG_BUF(mBuf);
593    }
594    return RFAILED;
595 }
596
597 /*******************************************************************
598  *
599  * @brief Packs and Sends DL CCCH Ind from DUAPP to MAC
600  *
601  * @details
602  *
603  *    Function : packMacDlCcchInd
604  *
605  *    Functionality:
606  *       Packs and Sends DL CCCH Ind from DUAPP to MAC
607  *
608  *
609  * @params[in] Post structure pointer
610  *             DL CCCH Ind pointer              
611  * @return ROK     - success
612  *         RFAILED - failure
613  *
614  * ****************************************************************/
615 uint8_t packMacDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo)
616 {
617    Buffer *mBuf = NULLP;
618
619    if(pst->selector == ODU_SELECTOR_LWLC)
620    {
621       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
622       {
623          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packMacDlCcchInd");
624          return RFAILED;
625       }
626       /* pack the address of the structure */
627       CMCHKPK(oduPackPointer,(PTR)dlCcchIndInfo, mBuf);
628    }
629    else
630    {
631       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for DL CCCH Ind ");
632       return RFAILED;
633    }
634
635    return ODU_POST_TASK(pst,mBuf);
636 }
637
638 /*******************************************************************
639  *
640  * @brief Unpacks DL CCCH indication from DU APP
641  *
642  * @details
643  *
644  *    Function : unpackMacDlCcchInd
645  *
646  *    Functionality:
647  *         Unpacks DL CCCH indication from DU APP
648  *
649  * @params[in] Pointer to Handler
650  *             Post structure pointer
651  *             Message Buffer
652  * @return ROK     - success
653  *         RFAILED - failure
654  *
655  * ****************************************************************/
656 uint8_t unpackMacDlCcchInd(DuMacDlCcchInd func, Pst *pst, Buffer *mBuf)
657 {
658    if(pst->selector == ODU_SELECTOR_LWLC)
659    {
660       DlCcchIndInfo *dlCcchIndInfo;
661
662       /* unpack the address of the structure */
663       CMCHKUNPK(oduUnpackPointer, (PTR *)&dlCcchIndInfo, mBuf);
664       ODU_PUT_MSG_BUF(mBuf);
665       return (*func)(pst, dlCcchIndInfo);
666    }
667    else
668    {
669       /* Nothing to do for other selectors */
670       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for DL CCCH Ind ");
671       ODU_PUT_MSG_BUF(mBuf);
672    }
673
674    return RFAILED;
675 }
676
677 /*******************************************************************
678  *
679  * @brief Packs and Sends UE create Request from DUAPP to MAC
680  *
681  * @details
682  *
683  *    Function : packDuMacUeCreateReq
684  *
685  *    Functionality:
686  *       Packs and Sends UE Create Request from DUAPP to MAC
687  *
688  *
689  * @params[in] Post structure pointer
690  *             MacUeCfg pointer              
691  * @return ROK     - success
692  *         RFAILED - failure
693  *
694  * ****************************************************************/
695 uint8_t packDuMacUeCreateReq(Pst *pst, MacUeCfg *ueCfg)
696 {
697    Buffer *mBuf = NULLP;
698
699    if(pst->selector == ODU_SELECTOR_LWLC)
700    {
701       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
702       {
703          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacUeCreateReq");
704          return RFAILED;
705       }
706       /* pack the address of the structure */
707       CMCHKPK(oduPackPointer,(PTR)ueCfg, mBuf);
708    }
709    else
710    {
711       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacUeCreateReq");
712       return RFAILED;
713    }
714
715    return ODU_POST_TASK(pst,mBuf);
716 }
717
718 /*******************************************************************
719  *
720  * @brief Unpacks UE Create Request received from DU APP
721  *
722  * @details
723  *
724  *    Function : unpackMacUeCreateReq
725  *
726  *    Functionality:
727  *         Unpacks UE Create Request received from DU APP
728  *
729  * @params[in] Pointer to Handler
730  *             Post structure pointer
731  *             Message Buffer
732  * @return ROK     - success
733  *         RFAILED - failure
734  *
735  * ****************************************************************/
736 uint8_t unpackMacUeCreateReq(DuMacUeCreateReq func, Pst *pst, Buffer *mBuf)
737 {
738    if(pst->selector == ODU_SELECTOR_LWLC)
739    {
740       MacUeCfg *ueCfg;
741
742       /* unpack the address of the structure */
743       CMCHKUNPK(oduUnpackPointer, (PTR *)&ueCfg, mBuf);
744       ODU_PUT_MSG_BUF(mBuf);
745       return (*func)(pst, ueCfg);
746    }
747    else
748    {
749       /* Nothing to do for other selectors */
750       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for UE Create Request ");
751       ODU_PUT_MSG_BUF(mBuf);
752    }
753
754    return RFAILED;
755 }
756
757 /*******************************************************************
758  *
759  * @brief Pack and send UE config response from MAC to DU APP
760  *
761  * @details
762  *
763  *    Function : packDuMacUeCfgRsp
764  *
765  *    Functionality:
766  *       Pack and send UE config response from MAC to DU APP
767  *
768  * @params[in] 
769  * @return ROK     - success
770  *         RFAILED - failure
771  *
772  * ****************************************************************/
773 uint8_t packDuMacUeCfgRsp(Pst *pst, MacUeCfgRsp *cfgRsp)
774 {
775    Buffer *mBuf = NULLP;
776
777    if(pst->selector == ODU_SELECTOR_LWLC)
778    {
779       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
780       {
781          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacUeCfgRsp");
782          return RFAILED;
783       }
784       /* pack the address of the structure */
785       CMCHKPK(oduPackPointer,(PTR)cfgRsp, mBuf);
786    }
787    else
788    {
789       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacUeCfgRsp");
790       return RFAILED;
791    }
792
793    return ODU_POST_TASK(pst,mBuf);
794 }
795 /*******************************************************************
796  *
797  * @brief Unpack UE Config Response from MAC to DU APP
798  *
799  * @details
800  *
801  *    Function :unpackDuMacUeCfgRsp 
802  *
803  *    Functionality: Unpack UE Config Response from MAC to DU APP
804  *
805  * @params[in] 
806  * @return ROK     - success
807  *         RFAILED - failure
808  *
809  * ****************************************************************/
810 uint8_t unpackDuMacUeCfgRsp(MacDuUeCfgRspFunc func, Pst *pst, Buffer *mBuf)
811 {
812    if(pst->selector == ODU_SELECTOR_LWLC)
813    {
814       MacUeCfgRsp *cfgRsp = NULLP;
815
816       /* unpack the address of the structure */
817       CMCHKUNPK(oduUnpackPointer, (PTR *)&cfgRsp, mBuf);
818       ODU_PUT_MSG_BUF(mBuf);
819       return (*func)(pst, cfgRsp);
820    }
821
822    ODU_PUT_MSG_BUF(mBuf);
823    return RFAILED;
824 }
825
826 /*******************************************************************
827  *
828  * @brief Packs and Sends UE Reconig Request from DUAPP to MAC
829  *
830  * @details
831  *
832  *    Function : packDuMacUeReconfigReq
833  *
834  *    Functionality:
835  *       Packs and Sends UE Reconfig Request from DUAPP to MAC
836  *
837  *
838  * @params[in] Post structure pointer
839  *             MacUeCfg pointer              
840  * @return ROK     - success
841  *         RFAILED - failure
842  *
843  * ****************************************************************/
844 uint8_t packDuMacUeReconfigReq(Pst *pst, MacUeCfg *ueCfg)
845 {
846    Buffer *mBuf = NULLP;
847
848    if(pst->selector == ODU_SELECTOR_LWLC)
849    {
850       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
851       {
852          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacUeReconfigReq");
853          return RFAILED;
854       }
855       /* pack the address of the structure */
856       CMCHKPK(oduPackPointer,(PTR)ueCfg, mBuf);
857    }
858    else
859    {
860       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacUeReconfigReq");
861       return RFAILED;
862    }
863
864    return ODU_POST_TASK(pst,mBuf);
865 }
866
867 /*******************************************************************
868  *
869  * @brief Unpacks UE Reconfig Request received from DU APP
870  *
871  * @details
872  *
873  *    Function : unpackMacUeReconfigReq
874  *
875  *    Functionality:
876  *         Unpacks UE Reconfig Request received from DU APP
877  *
878  * @params[in] Pointer to Handler
879  *             Post structure pointer
880  *             Message Buffer
881  * @return ROK     - success
882  *         RFAILED - failure
883  *
884  * ****************************************************************/
885 uint8_t unpackMacUeReconfigReq(DuMacUeReconfigReq func, Pst *pst, Buffer *mBuf)
886 {
887    if(pst->selector == ODU_SELECTOR_LWLC)
888    {
889       MacUeCfg *ueCfg;
890
891       /* unpack the address of the structure */
892       CMCHKUNPK(oduUnpackPointer, (PTR *)&ueCfg, mBuf);
893       ODU_PUT_MSG_BUF(mBuf);
894       return (*func)(pst, ueCfg);
895    }
896    else
897    {
898       /* Nothing to do for other selectors */
899       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for UE Create Request ");
900       ODU_PUT_MSG_BUF(mBuf);
901    }
902
903    return RFAILED;
904 }
905
906 /*******************************************************************
907  *
908  * @brief Packs and Sends RACH Resource request from DUAPP to MAC
909  *
910  * @details
911  *
912  *    Function : packDuMacRachRsrcReq
913  *
914  *    Functionality:
915  *       Packs and Sends RACH Resource request from DU APP to MAC
916  *
917  *
918  * @params[in] Post structure pointer
919  *             MacRachRsrcReq pointer              
920  * @return ROK     - success
921  *         RFAILED - failure
922  *
923  * ****************************************************************/
924 uint8_t packDuMacRachRsrcReq(Pst *pst, MacRachRsrcReq *rachRsrcReq)
925 {
926    Buffer *mBuf = NULLP;
927
928    if(pst->selector == ODU_SELECTOR_LWLC)
929    {
930       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
931       {
932          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacRachRsrcReq,");
933          return RFAILED;
934       }
935       /* pack the address of the structure */
936       CMCHKPK(oduPackPointer, (PTR)rachRsrcReq, mBuf);
937    }
938    else
939    {
940       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacRachRsrcReq");
941       return RFAILED;
942    }
943
944    return ODU_POST_TASK(pst,mBuf);
945 }
946
947 /*******************************************************************
948  *
949  * @brief Unpacks RACH resource Request received from DU APP
950  *
951  * @details
952  *
953  *    Function : unpackMacRachRsrcReq
954  *
955  *    Functionality:
956  *         Unpacks RACH resource Request received from DU APP
957  *
958  * @params[in] Pointer to Handler
959  *             Post structure pointer
960  *             Message Buffer
961  * @return ROK     - success
962  *         RFAILED - failure
963  *
964  * ****************************************************************/
965 uint8_t unpackMacRachRsrcReq(DuMacRachRsrcReq func, Pst *pst, Buffer *mBuf)
966 {
967    if(pst->selector == ODU_SELECTOR_LWLC)
968    {
969       MacRachRsrcReq *rachRsrcReq;
970
971       /* unpack the address of the structure */
972       CMCHKUNPK(oduUnpackPointer, (PTR *)&rachRsrcReq, mBuf);
973       ODU_PUT_MSG_BUF(mBuf);
974       return (*func)(pst, rachRsrcReq);
975    }
976    else
977    {
978       /* Nothing to do for other selectors */
979       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for RACH resource Request ");
980       ODU_PUT_MSG_BUF(mBuf);
981    }
982
983    return RFAILED;
984 }
985
986 /*******************************************************************
987  *
988  * @brief Packs and Sends RACH Resource response from MAC to DU APP
989  *
990  * @details
991  *
992  *    Function : packDuMacRachRsrcRsp
993  *
994  *    Functionality:
995  *       Packs and Sends RACH Resource response from MAC to DU APP
996  *
997  *
998  * @params[in] Post structure pointer
999  *             MacRachRsrcRsp pointer              
1000  * @return ROK     - success
1001  *         RFAILED - failure
1002  *
1003  * ****************************************************************/
1004 uint8_t packDuMacRachRsrcRsp(Pst *pst, MacRachRsrcRsp *rachRsrcRsp)
1005 {
1006    Buffer *mBuf = NULLP;
1007
1008    if(pst->selector == ODU_SELECTOR_LWLC)
1009    {
1010       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1011       {
1012          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacRachRsrcRsp");
1013          return RFAILED;
1014       }
1015       /* pack the address of the structure */
1016       CMCHKPK(oduPackPointer, (PTR)rachRsrcRsp, mBuf);
1017    }
1018    else
1019    {
1020       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacRachRsrcRsp");
1021       return RFAILED;
1022    }
1023
1024    return ODU_POST_TASK(pst,mBuf);
1025 }
1026
1027 /*******************************************************************
1028  *
1029  * @brief Unpacks RACH resource Response received from MAC
1030  *
1031  * @details
1032  *
1033  *    Function : unpackDuMacRachRsrcRsp
1034  *
1035  *    Functionality:
1036  *         Unpacks RACH resource Response received from MAC
1037  *
1038  * @params[in] Pointer to Handler
1039  *             Post structure pointer
1040  *             Message Buffer
1041  * @return ROK     - success
1042  *         RFAILED - failure
1043  *
1044  * ****************************************************************/
1045 uint8_t unpackDuMacRachRsrcRsp(MacDuRachRsrcRspFunc func, Pst *pst, Buffer *mBuf)
1046 {
1047    if(pst->selector == ODU_SELECTOR_LWLC)
1048    {
1049       MacRachRsrcRsp *rachRsrcRsp;
1050
1051       /* unpack the address of the structure */
1052       CMCHKUNPK(oduUnpackPointer, (PTR *)&rachRsrcRsp, mBuf);
1053       ODU_PUT_MSG_BUF(mBuf);
1054       return (*func)(pst, rachRsrcRsp);
1055    }
1056    else
1057    {
1058       /* Nothing to do for other selectors */
1059       DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for RACH resource Response ");
1060       ODU_PUT_MSG_BUF(mBuf);
1061    }
1062
1063    return RFAILED;
1064 }
1065 /*******************************************************************
1066 *
1067 * @brief Packs and Sends UE Delete Request from DUAPP to MAC
1068 *
1069 * @details
1070 *
1071 *    Function : packDuMacUeDeleteReq
1072 *
1073 *    Functionality:
1074 *       Packs and Sends UE Delete Request from DUAPP to MAC
1075 *
1076 *
1077 * @params[in] Post structure pointer
1078 *             MacUeDelete pointer
1079 * @return ROK     - success
1080 *         RFAILED - failure
1081 *
1082 * ****************************************************************/
1083 uint8_t packDuMacUeDeleteReq(Pst *pst, MacUeDelete *ueDel)
1084 {
1085     Buffer *mBuf = NULLP;
1086
1087     if(pst->selector == ODU_SELECTOR_LWLC)
1088     {
1089        if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1090        {
1091           DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacUeDeleteReq");
1092           return RFAILED;
1093        }
1094        /* pack the address of the structure */
1095        CMCHKPK(oduPackPointer,(PTR)ueDel, mBuf);
1096     }
1097     else
1098     {
1099        DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacUeDeleteReq");
1100        return RFAILED;
1101     }
1102
1103     return ODU_POST_TASK(pst,mBuf);
1104 }
1105 /*******************************************************************
1106 *
1107 * @brief Unpacks UE Delete Request received from DU APP
1108 *
1109 * @details
1110 *
1111 *    Function : unpackMacUeDeleteReq 
1112 *
1113 *    Functionality:
1114 *         Unpacks UE Delete Request received from DU APP
1115 *
1116 * @params[in] Pointer to Handler
1117 *             Post structure pointer
1118 *             Message Buffer
1119 * @return ROK     - success
1120 *         RFAILED - failure
1121 *
1122 * ****************************************************************/
1123 uint8_t unpackMacUeDeleteReq(DuMacUeDeleteReq func, Pst *pst, Buffer *mBuf)
1124 {
1125     if(pst->selector == ODU_SELECTOR_LWLC)
1126     {
1127        MacUeDelete *ueDelete;
1128
1129        /* unpack the address of the structure */
1130        CMCHKUNPK(oduUnpackPointer, (PTR *)&ueDelete, mBuf);
1131        ODU_PUT_MSG_BUF(mBuf);
1132        return (*func)(pst, ueDelete);
1133     }
1134     else
1135     {
1136        /* Nothing to do for other selectors */
1137        DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for UE Delete Request ");
1138        ODU_PUT_MSG_BUF(mBuf);
1139     }
1140
1141     return RFAILED;
1142 }
1143 /*******************************************************************
1144  *
1145  * @brief Pack and send UE delete response from MAC to DU APP
1146  *
1147  * @details
1148  *
1149  *    Function : packDuMacUeDeleteRsp
1150  *
1151  *    Functionality:
1152  *       Pack and send UE  delete response from MAC to DU APP
1153  *
1154  * @params[in]
1155  * @return ROK     - success
1156  *         RFAILED - failure
1157  *
1158  * ****************************************************************/
1159 uint8_t packDuMacUeDeleteRsp(Pst *pst, MacUeDeleteRsp *deleteRsp)
1160 {
1161    Buffer *mBuf = NULLP;
1162    
1163    if(pst->selector == ODU_SELECTOR_LWLC)
1164    {
1165       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1166       {
1167          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacUeDeleteRsp");
1168          return RFAILED;
1169       }
1170       /* pack the address of the structure */
1171       CMCHKPK(oduPackPointer,(PTR)deleteRsp, mBuf);
1172    }
1173    else
1174    {
1175       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacUeDeleteRsp");
1176       return RFAILED;
1177    }
1178    
1179    return ODU_POST_TASK(pst,mBuf);
1180    
1181 }
1182
1183 /*******************************************************************
1184 *
1185 * @brief Unpack UE Config Response from MAC to DU APP
1186 *
1187 * @details
1188 *
1189 *    Function :unpackDuMacUeDeleteRsp 
1190 *
1191 *    Functionality: Unpack UE Config Response from MAC to DU APP
1192 *
1193 * @params[in]
1194 * @return ROK     - success
1195 *         RFAILED - failure
1196 *
1197 * ****************************************************************/
1198 uint8_t unpackDuMacUeDeleteRsp(MacDuUeDeleteRspFunc func, Pst *pst, Buffer *mBuf)
1199 {
1200     if(pst->selector == ODU_SELECTOR_LWLC)
1201     {
1202        MacUeDeleteRsp *ueDeleteRsp = NULLP;
1203
1204        /* unpack the address of the structure */
1205        CMCHKUNPK(oduUnpackPointer, (PTR *)&ueDeleteRsp, mBuf);
1206        ODU_PUT_MSG_BUF(mBuf);
1207        return (*func)(pst, ueDeleteRsp);
1208     }
1209
1210     ODU_PUT_MSG_BUF(mBuf);
1211     return RFAILED;
1212 }
1213
1214 /*******************************************************************
1215  *
1216  * @brief Unpacks Cell Delete Request received from DU APP
1217  *
1218  * @details
1219  *
1220  *    Function : unpackMacCellDeleteReq
1221  *
1222  *    Functionality:
1223  *         Unpacks Cell Delete Request received from DU APP
1224  *
1225  * @params[in] Pointer to Handler
1226  *             Post structure pointer
1227  *             Message Buffer
1228  * @return ROK     - success
1229  *         RFAILED - failure
1230  *
1231  * ****************************************************************/
1232
1233 uint8_t unpackMacCellDeleteReq(DuMacCellDeleteReq func, Pst *pst, Buffer *mBuf)
1234 {
1235    if(pst->selector == ODU_SELECTOR_LWLC)
1236    {
1237       MacCellDelete *cellDelete=NULLP;
1238
1239       /* unpack the address of the structure */
1240       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellDelete, mBuf);
1241       ODU_PUT_MSG_BUF(mBuf);
1242       return (*func)(pst, cellDelete);
1243    }
1244    else
1245    {
1246       /* Nothing to do for other
1247        * selectors */
1248       DU_LOG("\nERROR  -->  DU APP : unpackMacCellDeleteReq(): Only LWLC supported for CELL Delete Request ");
1249       ODU_PUT_MSG_BUF(mBuf);
1250    }
1251
1252    return RFAILED;
1253 }
1254
1255 /*******************************************************************
1256  *
1257  * @brief Pack and send Cell delete request to MAC
1258  *
1259  * @details
1260  *
1261  *    Function : packDuMacCellDeleteReq
1262  *
1263  *    Functionality:
1264  *       Pack and send Cell delete request to MAC
1265  *
1266  * @params[in] Post structure
1267  *             MacCellDelete *cellDelete;
1268  * @return ROK     - success
1269  *         RFAILED - failure
1270  *
1271  * ****************************************************************/
1272
1273 uint8_t packDuMacCellDeleteReq(Pst *pst, MacCellDelete *cellDelete)
1274 {
1275    Buffer *mBuf = NULLP;
1276
1277    if(pst->selector == ODU_SELECTOR_LWLC)
1278    {
1279       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1280       {
1281          DU_LOG("\nERROR  --> MAC : packDuMacCellDeleteReq(): Memory allocation failed ");
1282          return RFAILED;
1283       }
1284       CMCHKPK(oduPackPointer,(PTR)cellDelete, mBuf);
1285       return ODU_POST_TASK(pst,mBuf);
1286    }
1287    else
1288    {
1289       DU_LOG("\nERROR  -->  MAC: packDuMacCellDeleteReq(): Only LWLC supported ");
1290    }
1291    return RFAILED;
1292 }
1293
1294 /*******************************************************************
1295  *
1296  * @brief Pack and send CELL delete response from MAC to DU APP
1297  *
1298  * @details
1299  *
1300  *    Function : packDuMacCellDeleteRsp
1301  *
1302  *    Functionality:
1303  *       Pack and send CELL  delete response from MAC to DU APP
1304  *
1305  * @params[in] Pst *pst, MacCellDeleteRsp *deleteRsp
1306  * @return ROK     - success
1307  *         RFAILED - failure
1308  *
1309  * ****************************************************************/
1310
1311 uint8_t packDuMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *cellDeleteRsp)
1312 {
1313    Buffer *mBuf = NULLP;
1314
1315    if(pst->selector == ODU_SELECTOR_LWLC)
1316    {
1317       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1318       {
1319          DU_LOG("\nERROR  --> MAC : packDuMacCellDeleteRsp(): Memory allocation failed ");
1320          return RFAILED;
1321       }
1322       CMCHKPK(oduPackPointer,(PTR)cellDeleteRsp, mBuf);
1323    }
1324    else
1325    {
1326       DU_LOG("\nERROR  -->  MAC: packDuMacCellDeleteRsp(): Only LWLC supported ");
1327       return RFAILED;
1328    }
1329
1330    return ODU_POST_TASK(pst,mBuf);
1331
1332 }
1333
1334 /*******************************************************************
1335  *
1336  * @brief Unpack cell delete response from MAC to DU APP
1337  *
1338  * @details
1339  *
1340  *    Function : unpackDuMacCellDeleteRsp
1341  *
1342  *    Functionality: Unpack cell delete response from MAC to DU APP
1343  *
1344  * @params[in] MacDuCellDeleteRspFunc func, Pst *pst, Buffer *mBuf
1345  * @return ROK     - success
1346  *         RFAILED - failure
1347  *
1348  * ****************************************************************/
1349
1350 uint8_t unpackDuMacCellDeleteRsp(MacDuCellDeleteRspFunc func, Pst *pst, Buffer *mBuf)
1351 {
1352    if(pst->selector == ODU_SELECTOR_LWLC)
1353    {
1354       MacCellDeleteRsp *cellDeleteRsp = NULLP;
1355
1356       CMCHKUNPK(oduUnpackPointer, (PTR *)&cellDeleteRsp, mBuf);
1357       ODU_PUT_MSG_BUF(mBuf);
1358       return (*func)(pst, cellDeleteRsp);
1359    }
1360    else
1361    {  
1362       DU_LOG("\nERROR  -->  DU APP : unpackDuMacCellDeleteRsp(): Only LWLC supported ");
1363       ODU_PUT_MSG_BUF(mBuf);
1364    }
1365    return RFAILED;
1366 }
1367
1368 /*******************************************************************
1369  *
1370  * @brief Pack and send Slice Cfg request from MAC to DU APP
1371  *
1372  * @details
1373  *
1374  *    Function : packDuMacSliceCfgReq
1375  *
1376  *    Functionality:
1377  *       Pack and send Slice Cfg request from MAC to DU APP
1378  *
1379  * @params[in] Pst *pst, MacSliceCfgReq *sliceCfgReq
1380  * @return ROK     - success
1381  *         RFAILED - failure
1382  *
1383  * ****************************************************************/
1384
1385 uint8_t packDuMacSliceCfgReq(Pst *pst, MacSliceCfgReq *sliceCfgReq)
1386 {
1387    Buffer *mBuf = NULLP;
1388
1389    if(pst->selector == ODU_SELECTOR_LWLC)
1390    {
1391       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1392       {
1393          DU_LOG("\nERROR  --> MAC : Memory allocation failed in packDuMacSliceCfgReq");
1394          return RFAILED;
1395       }
1396       CMCHKPK(oduPackPointer,(PTR)sliceCfgReq, mBuf);
1397    }
1398    else
1399    {
1400       DU_LOG("\nERROR  -->  MAC: Only LWLC supported in packDuMacSliceCfgReq");
1401       return RFAILED;
1402    }
1403
1404    return ODU_POST_TASK(pst,mBuf);
1405
1406 }
1407 /*******************************************************************
1408 *
1409 * @brief Unpacks Slice Cfg request received from DU APP
1410 *
1411 * @details
1412 *
1413 *    Function : unpackMacSliceCfgReq 
1414 *
1415 *    Functionality:
1416 *         Unpacks Slice Cfg Request received from DU APP
1417 *
1418 * @params[in] Pointer to Handler
1419 *             Post structure pointer
1420 *             Message Buffer
1421 * @return ROK     - success
1422 *         RFAILED - failure
1423 *
1424 * ****************************************************************/
1425 uint8_t unpackMacSliceCfgReq(DuMacSliceCfgReq func, Pst *pst, Buffer *mBuf)
1426 {
1427     if(pst->selector == ODU_SELECTOR_LWLC)
1428     {
1429        MacSliceCfgReq *sliceCfgReq;
1430        /* unpack the address of the structure */
1431        CMCHKUNPK(oduUnpackPointer, (PTR *)&sliceCfgReq, mBuf);
1432        ODU_PUT_MSG_BUF(mBuf);
1433        return (*func)(pst, sliceCfgReq);
1434     }
1435     else
1436     {
1437        /* Nothing to do for other selectors */
1438        DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for Slice Cfg Request ");
1439        ODU_PUT_MSG_BUF(mBuf);
1440     }
1441
1442     return RFAILED;
1443 }
1444
1445 /*******************************************************************
1446  *
1447  * @brief Pack and send Slice config response from MAC to DU APP
1448  *
1449  * @details
1450  *
1451  *    Function : packDuMacSliceCfgRsp
1452  *
1453  *    Functionality:
1454  *       Pack and send Slice config response from MAC to DU APP
1455  *
1456  * @params[in] 
1457  * @return ROK     - success
1458  *         RFAILED - failure
1459  *
1460  * ****************************************************************/
1461 uint8_t packDuMacSliceCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp)
1462 {
1463    Buffer *mBuf = NULLP;
1464
1465    if(pst->selector == ODU_SELECTOR_LWLC)
1466    {
1467       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1468       {
1469          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacSliceCfgRsp");
1470          return RFAILED;
1471       }
1472       /* pack the address of the structure */
1473       CMCHKPK(oduPackPointer,(PTR)cfgRsp, mBuf);
1474    }
1475    else
1476    {
1477       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacSliceCfgRsp");
1478       return RFAILED;
1479    }
1480
1481    return ODU_POST_TASK(pst,mBuf);
1482 }
1483
1484 /*******************************************************************
1485  *
1486  * @brief Unpack Slice Config Response from MAC to DU APP
1487  *
1488  * @details
1489  *
1490  *    Function :unpackDuMacSliceCfgRsp 
1491  *
1492  *    Functionality: Unpack Slice Config Response from MAC to DU APP
1493  *
1494  * @params[in] 
1495  * @return ROK     - success
1496  *         RFAILED - failure
1497  *
1498  * ****************************************************************/
1499 uint8_t unpackDuMacSliceCfgRsp(MacDuSliceCfgRspFunc func, Pst *pst, Buffer *mBuf)
1500 {
1501    if(pst->selector == ODU_SELECTOR_LWLC)
1502    {
1503       MacSliceCfgRsp *cfgRsp = NULLP;
1504
1505       /* unpack the address of the structure */
1506       CMCHKUNPK(oduUnpackPointer, (PTR *)&cfgRsp, mBuf);
1507       ODU_PUT_MSG_BUF(mBuf);
1508       return (*func)(pst, cfgRsp);
1509    }
1510
1511    ODU_PUT_MSG_BUF(mBuf);
1512    return RFAILED;
1513 }
1514
1515
1516 /*******************************************************************
1517  *
1518  * @brief Pack and send Slice ReCfg request from MAC to DU APP
1519  *
1520  * @details
1521  *
1522  *    Function : packDuMacSliceRecfgReq
1523  *
1524  *    Functionality:
1525  *       Pack and send Slice ReCfg request from MAC to DU APP
1526  *
1527  * @params[in] Pst *pst, MacSliceCfgReq *sliceReCfgReq
1528  * @return ROK     - success
1529  *         RFAILED - failure
1530  *
1531  * ****************************************************************/
1532
1533 uint8_t packDuMacSliceRecfgReq(Pst *pst, MacSliceCfgReq *sliceReCfgReq)
1534 {
1535    Buffer *mBuf = NULLP;
1536
1537    if(pst->selector == ODU_SELECTOR_LWLC)
1538    {
1539       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1540       {
1541          DU_LOG("\nERROR  --> MAC : Memory allocation failed in packDuMacSliceRecfgReq");
1542          return RFAILED;
1543       }
1544       CMCHKPK(oduPackPointer,(PTR)sliceReCfgReq, mBuf);
1545    }
1546    else
1547    {
1548       DU_LOG("\nERROR  -->  MAC: Only LWLC supported in packDuMacSliceRecfgReq");
1549       return RFAILED;
1550    }
1551
1552    return ODU_POST_TASK(pst,mBuf);
1553
1554 }
1555 /*******************************************************************
1556 *
1557 * @brief Unpacks Slice ReCfg request received from DU APP
1558 *
1559 * @details
1560 *
1561 *    Function : unpackMacSliceCfgReq 
1562 *
1563 *    Functionality:
1564 *         Unpacks Slice ReCfg Request received from DU APP
1565 *
1566 * @params[in] Pointer to Handler
1567 *             Post structure pointer
1568 *             Message Buffer
1569 * @return ROK     - success
1570 *         RFAILED - failure
1571 *
1572 * ****************************************************************/
1573 uint8_t unpackMacSliceReCfgReq(DuMacSliceRecfgReq func, Pst *pst, Buffer *mBuf)
1574 {
1575     if(pst->selector == ODU_SELECTOR_LWLC)
1576     {
1577        MacSliceCfgReq *sliceReCfgReq;
1578        /* unpack the address of the structure */
1579        CMCHKUNPK(oduUnpackPointer, (PTR *)&sliceReCfgReq, mBuf);
1580        ODU_PUT_MSG_BUF(mBuf);
1581        return (*func)(pst, sliceReCfgReq);
1582     }
1583     else
1584     {
1585        /* Nothing to do for other selectors */
1586        DU_LOG("\nERROR  -->  DU APP : Only LWLC supported for Slice ReCfg Request ");
1587        ODU_PUT_MSG_BUF(mBuf);
1588     }
1589
1590     return RFAILED;
1591 }
1592
1593 /*******************************************************************
1594  *
1595  * @brief Pack and send Slice config response from MAC to DU APP
1596  *
1597  * @details
1598  *
1599  *    Function : packDuMacSliceReCfgRsp
1600  *
1601  *    Functionality:
1602  *       Pack and send Slice config response from MAC to DU APP
1603  *
1604  * @params[in] 
1605  * @return ROK     - success
1606  *         RFAILED - failure
1607  *
1608  * ****************************************************************/
1609 uint8_t packDuMacSliceReCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp)
1610 {
1611    Buffer *mBuf = NULLP;
1612
1613    if(pst->selector == ODU_SELECTOR_LWLC)
1614    {
1615       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1616       {
1617          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packDuMacSliceReCfgRsp");
1618          return RFAILED;
1619       }
1620       /* pack the address of the structure */
1621       CMCHKPK(oduPackPointer,(PTR)cfgRsp, mBuf);
1622    }
1623    else
1624    {
1625       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packDuMacSliceReCfgRsp");
1626       return RFAILED;
1627    }
1628
1629    return ODU_POST_TASK(pst,mBuf);
1630 }
1631
1632 /*******************************************************************
1633  *
1634  * @brief Unpack Slice ReConfig Response from MAC to DU APP
1635  *
1636  * @details
1637  *
1638  *    Function :unpackDuMacSliceReCfgRsp 
1639  *
1640  *    Functionality: Unpack Slice ReConfig Response from MAC to DU APP
1641  *
1642  * @params[in] 
1643  * @return ROK     - success
1644  *         RFAILED - failure
1645  *
1646  * ****************************************************************/
1647 uint8_t unpackDuMacSliceReCfgRsp(MacDuSliceReCfgRspFunc func, Pst *pst, Buffer *mBuf)
1648 {
1649    if(pst->selector == ODU_SELECTOR_LWLC)
1650    {
1651       MacSliceCfgRsp *cfgRsp = NULLP;
1652
1653       /* unpack the address of the structure */
1654       CMCHKUNPK(oduUnpackPointer, (PTR *)&cfgRsp, mBuf);
1655       ODU_PUT_MSG_BUF(mBuf);
1656       return (*func)(pst, cfgRsp);
1657    }
1658
1659    ODU_PUT_MSG_BUF(mBuf);
1660    return RFAILED;
1661 }
1662
1663 /*******************************************************************
1664  *
1665  * @brief Pack and send Slot ind from MAC to DU APP
1666  *
1667  * @details
1668  *
1669  *    Function : packMacSlotInd
1670  *
1671  *    Functionality:
1672  *       Pack and send Slot ind from MAC to DU APP
1673  *
1674  * @params[in] Pst *pst, SlotTimingInfo *slotIndInfo 
1675  * @return ROK     - success
1676  *         RFAILED - failure
1677  *
1678  * ****************************************************************/
1679 uint8_t packMacSlotInd(Pst *pst, SlotTimingInfo *slotIndInfo)
1680 {
1681    Buffer *mBuf = NULLP;
1682
1683    if(pst->selector == ODU_SELECTOR_LWLC)
1684    {
1685       if (ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK)
1686       {
1687          DU_LOG("\nERROR  --> MAC : Memory allocation failed at packMacSlotInd");
1688          return RFAILED;
1689       }
1690       /* pack the address of the structure */
1691       CMCHKPK(oduPackPointer,(PTR)slotIndInfo, mBuf);
1692    }
1693    else
1694    {
1695       DU_LOG("\nERROR  -->  MAC: Only LWLC supported for packMacSlotInd");
1696       return RFAILED;
1697    }
1698
1699    return ODU_POST_TASK(pst,mBuf);
1700 }
1701
1702 /*******************************************************************
1703  *
1704  * @brief Unpack Slot indication from MAC to DU APP
1705  *
1706  * @details
1707  *
1708  *    Function :unpackDuMacSlotInd 
1709  *
1710  *    Functionality: Unpack Slot Indication from MAC to DU APP
1711  *
1712  * @params[in] DuMacSlotInd func, Pst *pst, Buffer *mBuf 
1713  * @return ROK     - success
1714  *         RFAILED - failure
1715  *
1716  * ****************************************************************/
1717 uint8_t unpackDuMacSlotInd(DuMacSlotInd func, Pst *pst, Buffer *mBuf)
1718 {
1719    if(pst->selector == ODU_SELECTOR_LWLC)
1720    {
1721       SlotTimingInfo *slotIndInfo;
1722       
1723       /* unpack the address of the structure */
1724       CMCHKUNPK(oduUnpackPointer, (PTR *)&slotIndInfo, mBuf);
1725       ODU_PUT_MSG_BUF(mBuf);
1726       return (*func)(pst, slotIndInfo);
1727    }
1728
1729    ODU_PUT_MSG_BUF(mBuf);
1730    return RFAILED;
1731 }
1732
1733 /*******************************************************************
1734  *
1735  * @brief Searches for first unset bit in ueBitMap
1736  *
1737  * @details
1738  *
1739  *    Function : getFreeBitFromUeBitMap
1740  *
1741  *    Functionality: Searches for first unset bit in ueBitMap of
1742  *       a cell. Search starts from LSB to MSB. Returns index of the
1743  *       free bit, considering LSB at index 0 and increasing index
1744  *       towards MSB.
1745  *
1746  * @params[in] Cell Id
1747  * @return Index of free bit - success 
1748  *         -1 - failure
1749  *
1750  * ****************************************************************/
1751 int8_t getFreeBitFromUeBitMap(uint16_t cellId)
1752 {
1753    uint8_t  bitIdx = 0;  /* bit position */
1754    uint16_t cellIdx = 0; /* Index to acces ueBitMapPerCell[] */
1755    uint64_t mask = 1;    /* bit mask */
1756
1757    GET_CELL_IDX(cellId, cellIdx);
1758    while(bitIdx < 64) 
1759    {   
1760       /* Find the first unset bit in Bit Map */
1761       if((ueBitMapPerCell[cellIdx] & (mask << bitIdx)) == 0)
1762       {   
1763          SET_ONE_BIT(bitIdx, ueBitMapPerCell[cellIdx]);
1764          return bitIdx;
1765       }   
1766       else
1767          bitIdx++;
1768    }   
1769    return -1; 
1770 }
1771
1772 /*******************************************************************
1773  *
1774  * @brief Unset a previously set bit in UeBitMap
1775  *
1776  * @details
1777  *
1778  *    Function : unsetBitInUeBitMap
1779  *
1780  *    Functionality: Searches for bit at given index and unset it.
1781  *
1782  * @params[in] Cell Id
1783  *             Bit Index
1784  * @return void 
1785  *
1786  * ****************************************************************/
1787 void unsetBitInUeBitMap(uint16_t cellId, uint8_t bitPos)
1788 {
1789     uint16_t cellIdx;
1790
1791    GET_CELL_IDX(cellId, cellIdx);
1792    UNSET_ONE_BIT(bitPos, ueBitMapPerCell[cellIdx]);
1793 }
1794
1795 /**********************************************************************
1796   End of file
1797  **********************************************************************/