6e6b962afce2fbbe71e3ca97234834c82f6b26d0
[o-du/l2.git] / src / 5gnrmac / mac_upr_inf_api.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 /* This file contains the definitions for Upper Interface APIs that are
20  * invoked from MAC */
21 #include "common_def.h"
22 #include "du_app_mac_inf.h"
23 #include "rlc_mac_inf.h"
24 #include "mac_upr_inf_api.h"
25
26 /* Funtion pointer options for cell up indication */
27 DuMacCellUpInd packMacCellUpIndOpts[] =
28 {
29    packMacCellUpInd,
30    duHandleCellUpInd,
31    packMacCellUpInd
32 };
33 /* Funtion pointer options for stop indication */
34 DuMacStopInd packMacStopIndOpts[] =
35 {
36    packMacStopInd,
37    duHandleStopInd,
38    packMacStopInd
39 };
40
41 /* Funtion pointer options for UL CCCH indication */
42 DuMacUlCcchInd packMacUlCcchIndOpts[] =
43 {
44    packMacUlCcchInd,
45    duHandleUlCcchInd,
46    packMacUlCcchInd
47 };
48
49 /* Function pointer options for UL Data to RLC */
50 RlcMacUlDataFunc rlcMacSendUlDataOpts[] =
51 {
52    packRlcUlData,
53    RlcProcUlData,
54    packRlcUlData
55 };
56
57 /* Funtion pointer options for schedule result reporting */
58 RlcMacSchedResultRptFunc rlcMacSchedResultRptOpts[] =
59 {
60    packRlcSchedResultRpt,
61    RlcProcSchedResultRpt,
62    packRlcSchedResultRpt
63 };
64          
65
66 /*******************************************************************
67  *
68  * @brief Send cell up indication to DU APP
69  *
70  * @details
71  *
72  *    Function : MacDuAppCellUpInd
73  *
74  *    Functionality:
75  *       Select appropriate function using selector value and
76  *       send cell up indication to DU APP
77  *
78  * @params[in]  Post structure pointer
79  *              Cell UP info
80  * @return ROK     - success
81  *         RFAILED - failure
82  *
83  * ****************************************************************/
84 uint8_t MacDuAppCellUpInd(Pst *pst, OduCellId *cellId)
85 {
86    return (*packMacCellUpIndOpts[pst->selector])(pst, cellId);
87 }
88
89 /*******************************************************************
90  *
91  * @brief Send stop indication to MAC
92  *
93  * @details
94  *
95  *    Function : MacDuAppStopInd
96  *
97  *    Functionality:
98  *       Sends Stop Indication to MAC
99  *
100  * @params[in]  Post structure pointer
101  * @return ROK     - success
102  *         RFAILED - failure
103  *
104  * ****************************************************************/
105 uint8_t MacDuAppStopInd(Pst *pst, OduCellId *cellId)
106 {
107    return (*packMacStopIndOpts[pst->selector])(pst, cellId);
108 }
109
110 /*******************************************************************
111  *
112  * @brief Send UL CCCH Ind to DU APP
113  *
114  * @details
115  *
116  *    Function :MacDuAppUlCcchInd 
117  *
118  *    Functionality:
119  *       Select appropriate function using selector value and
120  *       send to DU APP
121  *
122  * @params[in]  Post structure pointer
123  *              UlCcchInd pointer 
124  * @return ROK     - success
125  *         RFAILED - failure
126  *
127  * ****************************************************************/
128 uint8_t MacDuAppUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo)
129 {
130    return (*packMacUlCcchIndOpts[pst->selector])(pst, ulCcchIndInfo);
131 }
132
133 /*******************************************************************
134  *
135  * @brief Send UL data to RLC
136  *
137  * @details
138  *
139  *    Function : MacRlcSendUlData
140  *
141  *    Functionality: Send UL data to RLC
142  *
143  * @params[in] 
144  * @return ROK     - success
145  *         RFAILED - failure
146  *
147  * ****************************************************************/
148 uint8_t MacSendUlDataToRlc(Pst *pst, RlcData *ulData)
149 {
150    return (*rlcMacSendUlDataOpts[pst->selector])(pst, ulData);
151 }
152
153 /*******************************************************************
154  *
155  * @brief Send Schedule result report to RLC
156  *
157  * @details
158  *
159  *    Function : MacSendSchedResultRptToRlc
160  *
161  *    Functionality: Send Schedule result report to RLC
162  *
163  * @params[in] Post structure
164  *             Schedule result report
165  * @return ROK     - success
166  *         RFAILED - failure
167  *
168  * ****************************************************************/
169 uint8_t MacSendSchedResultRptToRlc(Pst *pst, RlcSchedResultRpt *schedRpt)
170 {
171    return (*rlcMacSchedResultRptOpts[pst->selector])(pst, schedRpt);
172 }
173
174 /**********************************************************************
175   End of file
176  **********************************************************************/
177