PRACH ocassion tracking
[o-du/l2.git] / src / cm / mac_sch_interface.c
1 /* header include files (.h) */
2 #include "envopt.h"        /* environment options */
3 #include "envdep.h"        /* environment dependent */
4 #include "envind.h"        /* environment independent */
5 #include "gen.h"           /* general */
6 #include "ssi.h"           /* system services */
7 #include "cm_tkns.h"       /* Common Token Defines */
8 #include "cm_llist.h"      /* Common Link List Defines */
9 #include "cm_hash.h"       /* Common Hash List Defines */
10 #include "cm_lte.h"        /* Common LTE Defines */
11 #include "cm_mblk.h"        /* Common LTE Defines */
12 #include "tfu.h"           /* RGU Interface defines */
13 #include "lrg.h"
14 //#include "fapi.h"
15
16 /* header/extern include files (.x) */
17 #include "gen.x"           /* general */
18 #include "ssi.x"           /* system services */
19 #include "cm_tkns.x"       /* Common Token Definitions */
20 #include "cm_llist.x"      /* Common Link List Definitions */
21 #include "cm_lib.x"        /* Common Library Definitions */
22 #include "cm_hash.x"       /* Common Hash List Definitions */
23 #include "cm_lte.x"        /* Common LTE Defines */
24 #include "cm_mblk.x"        /* Common LTE Defines */
25 #include "tfu.x"           /* RGU Interface includes */
26 #include "lrg.x"
27
28 #include "du_app_mac_inf.h"
29 #include "mac_sch_interface.h"
30
31 /**
32  * @brief function to send Slot ind message from MAC
33  *        to scheduler with loose coupling 
34  *
35  * @details
36  *
37  *     Function : packMacSchSlotInd
38  *     
39  *     
40  *  @param[in]  Pst *pst, the post structure     
41  *  @param[in]  *slotInd, the value of SFN and slot
42  *  @return  S16
43  *      -# ROK
44  **/
45 int packMacSchSlotInd(Pst *pst, SlotIndInfo *slotInd)
46 {
47    Buffer *mBuf = NULLP;
48    if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK)
49    {
50       RETVALUE(RFAILED);
51    }
52
53    /* pack SFN and slot value */
54    CMCHKPK(SPkU16,slotInd->sfn, mBuf);
55    CMCHKPK(SPkU16,slotInd->slot, mBuf);
56
57    RETVALUE(SPstTsk(pst,mBuf));
58 }
59
60 /**
61  * @brief function to pack DL Broadcast allocation message 
62  *        from MAC to SCH
63  *
64  * @details
65  *
66  *     Function : packSchMaccDlBrdcstAlloc 
67  *     
68  *     
69  *  @param[in]  Pst *pst, the post structure     
70  *  @param[in]  *dlBrdcstAlloc, dlBroadcastAlloc
71  *  @return  S16
72  *      -# ROK
73  **/
74 int packSchMacDlBrdcstAlloc(Pst *pst, DlBrdcstAlloc  *dlBrdcstAlloc)
75 {
76         return ROK;
77 }
78
79 /**
80  * @brief function to pack UL Sch Info  message 
81  *        from SCH to MAC
82  *
83  * @details
84  *
85  *     Function : packSchMacUlSchInfo 
86  *     
87  *     
88  *  @param[in]  Pst *pst, the post structure     
89  *  @param[in]  *ulSchInfo, UlSchInfo
90  *  @return  S16
91  *      -# ROK
92  **/
93 int packSchMacUlSchInfo(Pst *pst, UlSchInfo *ulSchInfo)
94 {
95         return ROK;
96 }
97
98 /**
99  * @brief function to pack cell cfg from MAC to SCH
100  *
101  * @details
102  *
103  *     Function : packSchCellCfg 
104  *     
105  *     
106  *  @param[in]  Pst *pst, the post structure     
107  *  @param[in]  *schCellCfg, SchCellCfg structure
108  *  @return  S16
109  *      -# ROK
110  **/
111 int packSchCellCfg(Pst *pst, SchCellCfg  *schCellCfg)
112 {
113         return ROK;
114 }
115
116 /**
117  * @brief function to pack cell cfg cfm from SCH to MAC
118  *
119  * @details
120  *
121  *     Function : packSchCellCfgCfm
122  *     
123  *     
124  *  @param[in]  Pst *pst, the post structure     
125  *  @param[in]  *schCellCfgCfm, SchCellCfgCfm structure
126  *  @return  S16
127  *      -# ROK
128  **/
129 int packSchCellCfgCfm(Pst *pst, SchCellCfgCfm *schCellCfgCfm)
130 {
131         return ROK;
132 }
133
134
135 /**********************************************************************
136   End of file
137  **********************************************************************/
138