Stop Req and Stop Ind code changes
[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
22 #include "mac_upr_inf_api.h"
23
24 /* Funtion pointer options for slot indication */
25 DuMacSlotInd packMacSlotIndOpts[] =
26 {
27    packMacSlotInd,
28    duHandleSlotInd,
29    packMacSlotInd
30 };
31 /* Funtion pointer options for stop indication */
32 DuMacStopInd packMacStopIndOpts[] =
33 {
34    packMacStopInd,
35    duHandleStopInd,
36    packMacStopInd
37 };
38
39 /*******************************************************************
40  *
41  * @brief Send slot indication to MAC
42  *
43  * @details
44  *
45  *    Function : MacDuAppSlotInd
46  *
47  *    Functionality:
48  *       Select appropriate function using selector value and
49  *       send to MAC
50  *
51  * @params[in]  Post structure pointer
52  *              Slot info pointer 
53  * @return ROK     - success
54  *         RFAILED - failure
55  *
56  * ****************************************************************/
57 uint16_t MacDuAppSlotInd(Pst *pst, SlotInfo *slotInfo)
58 {
59    return (*packMacSlotIndOpts[pst->selector])(pst, slotInfo);
60 }
61
62 /*******************************************************************
63  *
64  * @brief Send stop indication to MAC
65  *
66  * @details
67  *
68  *    Function : MacDuAppStopInd
69  *
70  *    Functionality:
71  *       Sends Stop Indication to MAC
72  *
73  * @params[in]  Post structure pointer
74  * @return ROK     - success
75  *         RFAILED - failure
76  *
77  * ****************************************************************/
78 uint16_t MacDuAppStopInd(Pst *pst, MacCellStopInfo *cellStopId)
79 {
80    return (*packMacStopIndOpts[pst->selector])(pst, cellStopId);
81 }
82
83 /**********************************************************************
84          End of file
85 **********************************************************************/
86