547f741e59b68fbdf00614bba7499e10147334c6
[o-du/l2.git] / src / 5gnrrlc / rlc_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 #include "common_def.h"
19 #include "du_app_rlc_inf.h"
20
21 /* Function pointer array for UL RRC Msg Transfer */
22 RlcUlRrcMsgToDuFunc rlcSendUlRrcMsgToDuOpts[] = 
23 {
24    packRlcUlRrcMsgToDu,       /* 0 - Loosely coupled */
25    DuProcRlcUlRrcMsgTrans,    /* 1 - Tightly coupled */
26    packRlcUlRrcMsgToDu        /* 2 - Light weight loosely coupled */
27 };
28
29 RlcRrcDeliveryReportToDuFunc rlcSendRrcDeliveryReportToDuOpts[]=
30 {
31    packRrcDeliveryReportToDu,          /* 0 - Loosely coupled */
32    DuProcRlcRrcDeliveryReport,    /* 1 - Tightly coupled */
33    packRrcDeliveryReportToDu           /* 2 - Light weight loosely coupled */
34 };
35
36 /* Function pointer array for DL RRC Msg Rsp Transfer */
37 RlcDlRrcMsgRspToDuFunc rlcSendDlRrcMsgRspToDuOpts[] = 
38 {
39    packRlcDlRrcMsgRspToDu,       /* 0 - Loosely coupled */
40    DuProcRlcDlRrcMsgRsp,         /* 1 - Tightly coupled */
41    packRlcDlRrcMsgRspToDu        /* 2 - Light weight loosely coupled */
42 };
43
44 /* Function pointer array for UL RRC Msg Transfer */
45 RlcUlUserDataToDuFunc rlcSendUlUserDataToDuOpts[] =
46 {
47    packRlcUlUserDataToDu,       /* 0 - Loosely coupled */
48    DuProcRlcUlUserDataTrans,    /* 1 - Tightly coupled */
49    packRlcUlUserDataToDu        /* 2 - Light weight loosely coupled */
50 };
51
52 RlcDuUeDeleteRsp rlcUeDeleteRspOpts[] =
53 {
54    packRlcDuUeDeleteRsp,     /* 0 - loosely coupled */
55    DuProcRlcUeDeleteRsp,     /* 1 - tightly coupled */
56    packRlcDuUeDeleteRsp     /* 2 - LWLC loosely coupled */
57 };
58
59 RlcSlicePmToDuFunc rlcSlicePmOpts[] =
60 {
61    packRlcDuSlicePm,          /* 0 - loosely coupled */
62    DuProcRlcSliceMetrics,     /* 1 - tightly coupled */
63    packRlcDuSlicePm           /* 2 - LWLC loosely coupled */
64 };
65 /*******************************************************************
66  *
67  * @brief Sends UL RRC Message Info to DU APP
68  *
69  * @details
70  *
71  *    Function : rlcSendUlRrcMsgToDu
72  *
73  *    Functionality:  Sends UL RRC Message Info to DU APP
74  *
75  * @params[in] Pst structure
76  *             UL RRC Msg Info
77  * @return ROK     - success
78  *         RFAILED - failure
79  *
80  * ****************************************************************/
81 uint8_t rlcSendUlRrcMsgToDu(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo)
82 {
83    return (*rlcSendUlRrcMsgToDuOpts[pst->selector])(pst, ulRrcMsgInfo);
84 }
85
86 /*******************************************************************
87 *
88 * @brief Sends RRC delivery Message Info to DU APP
89 *
90 * @details
91 *
92 *    Function : rlcSendRrcDeliveryReportToDu
93 *
94 *    Functionality:  Sends RRC delivery Message Info to DU APP
95 *
96 * @params[in] Pst structure
97 *             RRC delivery Msg Info
98 * @return ROK     - success
99 *         RFAILED - failure
100 *
101 * ****************************************************************/
102 uint8_t rlcSendRrcDeliveryReportToDu(Pst *pst, RrcDeliveryReport *rrcDelivery) 
103 {
104    return (*rlcSendRrcDeliveryReportToDuOpts[pst->selector])(pst, rrcDelivery);
105 }
106 /*******************************************************************
107  *
108  * @brief Sends DL RRC Message Status to DU APP
109  *
110  * @details
111  *
112  *    Function : rlcSendDlRrcMsgRspToDu
113  *
114  *    Functionality:  Sends DL RRC Message Status to DU APP
115  *
116  * @params[in] Pst structure
117  *             DL RRC Msg Info
118  * @return ROK     - success
119  *         RFAILED - failure
120  *
121  * ****************************************************************/
122 uint8_t rlcSendDlRrcMsgRspToDu(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsg)
123 {
124    return (*rlcSendDlRrcMsgRspToDuOpts[pst->selector])(pst, dlRrcMsg);
125 }
126
127 /*******************************************************************
128  *
129  * @brief Sends UL User data Info to DU APP
130  *
131  * @details
132  *
133  *    Function : rlcSendUlUserDataToDu
134  *
135  *    Functionality:  Sends UL User Data Info to DU APP
136  *
137  * @params[in] Pst structure
138  *             UL user data Info
139  * @return ROK     - success
140  *         RFAILED - failure
141  *
142  * ****************************************************************/
143 uint8_t rlcSendUlUserDataToDu(Pst *pst, RlcUlUserDatInfo *ulUserData)
144 {
145    return (*rlcSendUlUserDataToDuOpts[pst->selector])(pst, ulUserData);
146 }
147
148 /*******************************************************************
149  *
150  * @brief Sends Ue Delete Rsp to DU APP
151  *
152  * @details
153  *
154  *    Function : rlcSendUeDeleteRspToDu 
155  *
156  *    Functionality:  Sends Ue Delete Rsp to DU APP
157  *
158  * @params[in] Pst *pst, RlcUeDeleteRsp *ueDeleteRsp 
159  *             
160  * @return ROK     - success
161  *         RFAILED - failure
162  *
163  * ****************************************************************/
164 uint8_t rlcSendUeDeleteRspToDu(Pst *pst, RlcUeDeleteRsp *ueDeleteRsp)
165 {
166     return (*rlcUeDeleteRspOpts[pst->selector])(pst, ueDeleteRsp);
167 }
168
169 /*******************************************************************
170  *
171  * @brief Sends Slice Performance Metrics to DU APP
172  *
173  * @details
174  *
175  *    Function : rlcSendSlicePmToDu 
176  *
177  *    Functionality:  Sends Performace Metrics per slice together to DU APP
178  *
179  * @params[in] Pst *pst, SlicePmList *sliceStats 
180  *             
181  * @return ROK     - success
182  *         RFAILED - failure
183  *
184  * ****************************************************************/
185 uint8_t rlcSendSlicePmToDu(Pst *pst, SlicePmList *sliceStats)
186 {
187     return (*rlcSlicePmOpts[pst->selector])(pst, sliceStats);
188 }
189 /**********************************************************************
190          End of file
191 **********************************************************************/