Merge "MAC Clean-up [Issue-ID: ODUHIGH-212]"
[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 "mac_upr_inf_api.h"
24
25 /* Funtion pointer options for slot indication */
26 DuMacSlotInd packMacSlotIndOpts[] =
27 {
28    packMacSlotInd,
29    duHandleSlotInd,
30    packMacSlotInd
31 };
32 /* Funtion pointer options for stop indication */
33 DuMacStopInd packMacStopIndOpts[] =
34 {
35    packMacStopInd,
36    duHandleStopInd,
37    packMacStopInd
38 };
39
40 /* Funtion pointer options for UL CCCH indication */
41 DuMacUlCcchInd packMacUlCcchIndOpts[] =
42 {
43    packMacUlCcchInd,
44    duHandleUlCcchInd,
45    packMacUlCcchInd
46 };
47
48 /*******************************************************************
49  *
50  * @brief Send slot indication to MAC
51  *
52  * @details
53  *
54  *    Function : MacDuAppSlotInd
55  *
56  *    Functionality:
57  *       Select appropriate function using selector value and
58  *       send to MAC
59  *
60  * @params[in]  Post structure pointer
61  *              Slot info pointer 
62  * @return ROK     - success
63  *         RFAILED - failure
64  *
65  * ****************************************************************/
66 uint8_t MacDuAppSlotInd(Pst *pst, SlotIndInfo *slotInfo)
67 {
68    return (*packMacSlotIndOpts[pst->selector])(pst, slotInfo);
69 }
70
71 /*******************************************************************
72  *
73  * @brief Send stop indication to MAC
74  *
75  * @details
76  *
77  *    Function : MacDuAppStopInd
78  *
79  *    Functionality:
80  *       Sends Stop Indication to MAC
81  *
82  * @params[in]  Post structure pointer
83  * @return ROK     - success
84  *         RFAILED - failure
85  *
86  * ****************************************************************/
87 uint8_t MacDuAppStopInd(Pst *pst, MacCellStopInfo *cellStopId)
88 {
89    return (*packMacStopIndOpts[pst->selector])(pst, cellStopId);
90 }
91
92 /*******************************************************************
93  *
94  * @brief Send UL CCCH Ind to DU APP
95  *
96  * @details
97  *
98  *    Function :MacDuAppUlCcchInd 
99  *
100  *    Functionality:
101  *       Select appropriate function using selector value and
102  *       send to DU APP
103  *
104  * @params[in]  Post structure pointer
105  *              UlCcchInd pointer 
106  * @return ROK     - success
107  *         RFAILED - failure
108  *
109  * ****************************************************************/
110 uint8_t MacDuAppUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo)
111 {
112    return (*packMacUlCcchIndOpts[pst->selector])(pst, ulCcchIndInfo);
113 }
114
115
116 /**********************************************************************
117   End of file
118  **********************************************************************/
119