b81ddca814d09ab1dd13118587917162c5cd4d8f
[o-du/l2.git] / src / du_app / du_cell_mgr.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 message handling functionality for DU cell management */
20 #include "common_def.h"
21 #include "lrg.h"
22 #include "legtp.h"
23 #include "lrg.x"
24 #include "lkw.x"
25 #include "rgr.h"
26 #include "rgr.x"
27 #include "du_app_mac_inf.h"
28 #include "du_app_rlc_inf.h"
29 #include "du_cfg.h"
30 #include "du_mgr.h"
31 #include "du_utils.h"
32 #include "du_cell_mgr.h"
33
34 #ifdef O1_ENABLE
35
36 #include "AlarmInterface.h"
37 #include "CmInterface.h"
38
39 #endif
40
41 DuMacCellDeleteReq packMacCellDeleteReqOpts[] =
42 {
43    packDuMacCellDeleteReq,       /* Loose coupling */
44    MacProcCellDeleteReq,         /* TIght coupling */
45    packDuMacCellDeleteReq        /* Light weight-loose coupling */
46 };
47
48 /*******************************************************************
49  *
50  * @brief Processes cells to be activated
51  *
52  * @details
53  *
54  *    Function : duProcCellsToBeActivated
55  *
56  *    Functionality:
57  *      - Processes cells to be activated list received in F1SetupRsp
58  *
59  * @params[in] void
60  * @return ROK     - success
61  *         RFAILED - failure
62  *
63  * ****************************************************************/
64 uint8_t duProcCellsToBeActivated(uint8_t *plmnStr, uint16_t nci, uint16_t nRPci)
65 {
66    uint8_t ret = ROK;
67    DuCellCb *cellCb = NULLP;
68    uint8_t cfgIdx, tmpPlmn[4];
69
70    for(cfgIdx=0; cfgIdx<duCb.numCfgCells; cfgIdx++)
71    {
72       memset(tmpPlmn, 0, 4);
73       buildPlmnId(duCb.cfgCellLst[cfgIdx]->cellInfo.nrEcgi.plmn, tmpPlmn);
74       if(duCb.cfgCellLst[cfgIdx]->cellInfo.nrEcgi.cellId == nci &&
75             (strcmp((const char*)tmpPlmn, (const char*)plmnStr) == 0))
76       {
77          cellCb = duCb.cfgCellLst[cfgIdx];
78          break;
79       }
80       else
81       {
82          DU_LOG("\nERROR  -->  DU APP : No Cell found for NCI %d", nci);
83          return RFAILED;
84       }
85    }
86
87    cellCb->cellStatus = ACTIVATION_IN_PROGRESS; 
88    cellCb->cellInfo.nrPci = nRPci;
89
90    duCb.actvCellLst[duCb.numActvCells++] = cellCb;
91
92    if(duBuildAndSendMacCellCfg(cellCb->cellId) != ROK)
93    {
94       DU_LOG("\nERROR  -->  DU APP : macCellCfg build and send failed");
95       /* Delete cell from actvCellList */
96       duCb.actvCellLst[--(duCb.numActvCells)] = NULLP;
97       ret = RFAILED;
98    }
99    return ret;
100 }
101
102 /*******************************************************************
103  *
104  * @brief Handles DU F1Setup Rsp received in F1AP
105  *
106  * @details
107  *
108  *    Function : duProcF1SetupRsp
109  *
110  *    Functionality:
111  *      - Handles DU F1Setup Rsp received in F1AP
112  *
113  * @params[in] Pointer to F1SetupRsp 
114  * @return void
115  *
116  ******************************************************************/
117 void duProcF1SetupRsp()
118 {
119    DU_LOG("\nINFO   -->  DU_APP : F1 Setup Response received");
120    duCb.f1Status = TRUE; //Set F1 status as true
121 }
122
123 /*******************************************************************
124 *
125 * @brief Returns cellCb based on cell ID
126 *
127 * @details
128 *
129 *    Function : duGetCellCb
130 *
131 *    Functionality: Returns DU APP CellCb based on cell ID
132 *
133 * @params[in] F1AP_PDU_t ASN decoded F1AP message
134 * @return ROK     - success
135 *         RFAILED - failure
136 *
137 * ****************************************************************/
138 uint8_t duGetCellCb(uint16_t cellId, DuCellCb **cellCb)
139 {
140    uint8_t cellIdx = 0;
141    for(cellIdx=0; cellIdx<duCb.numActvCells; cellIdx++)
142    {
143       if(duCb.actvCellLst[cellIdx]->cellId == cellId)
144          *cellCb = duCb.actvCellLst[cellIdx];
145          break;
146    }
147
148    if(!*cellCb)
149    {
150       DU_LOG("\nERROR  -->  DU APP : Cell Id %d not found in DU APP", cellId);
151       return RFAILED;
152    }
153
154    return ROK;
155 }
156
157 /*******************************************************************
158  *
159  * @brief Handles cell up indication from MAC
160  *
161  * @details
162  *
163  *    Function : duHandleCellUpInd
164  *
165  *    Functionality:
166  *      Handles cell up indication from MAC
167  *
168  * @params[in] Post structure pointer
169  *             cell Up info
170  * @return ROK     - success
171  *         RFAILED - failure
172  *
173  * ****************************************************************/
174 uint8_t duHandleCellUpInd(Pst *pst, OduCellId *cellId)
175 {
176    DuCellCb *cellCb = NULLP; 
177
178 #ifndef O1_ENABLE
179
180    /*Note: Static Configuration, when O1 is not configuring the RRM policy*/
181    RrmPolicy *rrmPolicy;
182    DU_ALLOC(rrmPolicy, sizeof(RrmPolicy));
183    rrmPolicy->rsrcType = RSRC_PRB;
184    rrmPolicy->numMemberList = 1;
185    DU_ALLOC(rrmPolicy->memberList, sizeof(PolicyMemberList *));
186    DU_ALLOC(rrmPolicy->memberList[0], sizeof(PolicyMemberList));
187    
188    memset(&rrmPolicy->memberList[0]->plmn, 0, sizeof(Plmn)); 
189    rrmPolicy->memberList[0]->snssai.sst = 1;
190    rrmPolicy->memberList[0]->snssai.sd[0] = 2;
191    rrmPolicy->memberList[0]->snssai.sd[1] = 3;
192    rrmPolicy->memberList[0]->snssai.sd[2] = 4;
193    rrmPolicy->policyMinRatio = 30;
194    rrmPolicy->policyMaxRatio = 90;
195    rrmPolicy->policyDedicatedRatio = 10;
196 #endif
197
198    if(cellId->cellId <=0 || cellId->cellId > MAX_NUM_CELL)
199    {
200       DU_LOG("\nERROR  -->  DU APP : Invalid Cell Id %d in duHandleCellUpInd()", cellId->cellId);
201       return RFAILED;
202    }
203
204    if(duGetCellCb(cellId->cellId, &cellCb) != ROK)
205       return RFAILED;
206
207    if((cellCb != NULL) && (cellCb->cellStatus == ACTIVATION_IN_PROGRESS))
208    {
209       DU_LOG("\nINFO   -->  DU APP : 5G-NR Cell %d is UP", cellId->cellId);
210       cellCb->cellStatus = ACTIVATED;
211       gCellStatus = CELL_UP;
212
213 #ifdef O1_ENABLE
214       if(duCfgParam.tempSliceCfg.rrmPolicy)
215          BuildAndSendSliceConfigReq(duCfgParam.tempSliceCfg.rrmPolicy, duCfgParam.tempSliceCfg.totalRrmPolicy, duCfgParam.tempSliceCfg.totalSliceCount);
216       DU_LOG("\nINFO   -->  DU APP : Raise cell UP alarm for cell id=%d", cellId->cellId);
217       raiseCellAlrm(CELL_UP_ALARM_ID, cellId->cellId);
218       setCellOpState(cellId->cellId, ENABLED, ACTIVE);
219 #else
220       BuildAndSendSliceConfigReq(&rrmPolicy,1, rrmPolicy->numMemberList);
221 #endif
222
223    }
224
225    if((pst->selector == ODU_SELECTOR_LWLC) || (pst->selector == ODU_SELECTOR_TC))
226       DU_FREE_SHRABL_BUF(pst->region, pst->pool, cellId, sizeof(OduCellId));
227    return ROK;
228 }
229
230 /*******************************************************************
231  *
232  * @brief Handle Cell delete response from MAC
233  *
234  * @details
235  *
236  *    Function : DuProcMacCellDeleteRsp
237  *
238  *    Functionality: Handle Cell delete response from MAC
239  *
240  * @params[in] Pointer to MacCellDeleteRsp and Pst
241  * @return ROK     - success
242  *         RFAILED - failure
243  *
244  * ****************************************************************/
245
246 uint8_t DuProcMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *deleteRsp)
247 {
248    uint8_t ret = ROK;
249    uint16_t cellIdx=0;
250    
251    if(deleteRsp)
252    {
253       if(deleteRsp->result == SUCCESSFUL_RSP)
254       {
255          GET_CELL_IDX(deleteRsp->cellId, cellIdx);
256          DU_LOG("\nINFO   -->  DU APP : MAC CELL Delete Response : SUCCESS [CELL IDX : %d]", deleteRsp->cellId);
257          if(duCb.actvCellLst[cellIdx]->cellId == deleteRsp->cellId)
258          {
259             memset(duCb.actvCellLst[cellIdx], 0, sizeof(DuCellCb));
260             gCellStatus = CELL_DOWN;
261
262 #ifdef O1_ENABLE
263             DU_LOG("\nINFO   -->  DU APP : Raise cell down alarm for cell id=%d", deleteRsp->cellId);
264             raiseCellAlrm(CELL_DOWN_ALARM_ID, deleteRsp->cellId);
265             setCellOpState(deleteRsp->cellId, DISABLED, INACTIVE);
266 #endif
267
268             duCb.numActvCells--;
269             duCb.numCfgCells--;
270             DU_FREE(duCb.actvCellLst[cellIdx], sizeof(DuCellCb));
271
272          }
273          else
274          {
275             DU_LOG("\nERROR  -->  DU APP : DuProcMacCellDeleteRsp(): CellId [%d] doesnot exist", deleteRsp->cellId);
276             ret = RFAILED;
277          }
278       }
279       else
280       {
281          DU_LOG("\nERROR  -->  DU APP : DuProcMacCellDeleteRsp(): MAC CELL Delete Response : FAILED\
282          [CELL IDX : %d]", deleteRsp->cellId);
283          ret = RFAILED;
284       }
285       DU_FREE_SHRABL_BUF(pst->region, pst->pool, deleteRsp, sizeof(MacCellDeleteRsp));
286    }
287    else
288    {
289       DU_LOG("\nERROR  -->  DU APP : DuProcMacCellDeleteRsp(): Received MAC cell delete response is NULL");
290       ret = RFAILED;
291    }
292    return ret;
293 }
294
295 /*******************************************************************
296  *
297  * @brief Sending Cell Delete Req To Mac
298  *
299  * @details
300  *
301  *    Function : sendCellDeleteReqToMac
302  *
303  *    Functionality:
304  *     sending Cell Delete Req To Mac
305  *
306  *  @params[in]    uint16_t cellId
307  *  @return ROK     - success
308  *          RFAILED - failure
309  *
310  *
311  *****************************************************************/
312
313 uint8_t sendCellDeleteReqToMac(uint16_t cellId)
314 {
315    Pst pst;
316    uint8_t ret=ROK;
317    MacCellDelete *cellDelete = NULLP;
318    
319    DU_ALLOC_SHRABL_BUF(cellDelete, sizeof(MacCellDelete));
320    if(cellDelete)
321    {
322       cellDelete->cellId = cellId;
323       FILL_PST_DUAPP_TO_MAC(pst, EVENT_MAC_CELL_DELETE_REQ);
324
325       DU_LOG("\nINFO   -->  DU APP : Sending Cell Delete Request to MAC");  
326       /* Processing one Cell at a time to MAC */
327       ret = (*packMacCellDeleteReqOpts[pst.selector])(&pst, cellDelete);
328       if(ret == RFAILED)
329       {
330          DU_LOG("\nERROR  -->  DU APP : sendCellDeleteReqToMac(): Failed to send Cell delete Req to MAC");
331          DU_FREE_SHRABL_BUF(DU_APP_MEM_REGION, DU_POOL, cellDelete, sizeof(MacCellDelete));
332       }
333    }
334    else
335    {
336       DU_LOG("\nERROR  -->   DU APP : sendCellDeleteReqToMac(): Failed to allocate memory"); 
337       ret = RFAILED;
338    }
339    return ret;
340 }
341
342 /*******************************************************************
343  *
344  * @brief DU preocess Cell Delete Req to MAC 
345  *
346  * @details
347  *
348  *    Function : duSendCellDeletReq 
349  *
350  *    Functionality: DU process Cell Delete Req to MAC 
351  *
352  * @params[in] uint16_t cellId
353  * @return ROK     - success
354  *         RFAILED - failure
355  *
356  * ****************************************************************/
357
358 uint8_t duSendCellDeletReq(uint16_t cellId)
359 {
360    uint16_t cellIdx = 0;
361    DU_LOG("\nINFO   -->  DU APP : Processing Cell Delete Request ");
362    GET_CELL_IDX(cellId, cellIdx);
363
364    if(duCb.actvCellLst[cellIdx] == NULLP)
365    {
366       DU_LOG("\nERROR  -->  DU APP : duSendCellDeletReq(): CellId[%d] is not found", cellId);
367       return RFAILED;
368    }
369    
370    if(duCb.actvCellLst[cellIdx]->cellId != cellId)
371    {
372       DU_LOG("\nERROR  -->  DU APP : duSendCellDeletReq(): CellId[%d] is not found", cellId);
373       return RFAILED;
374
375    }  
376    
377    if(duCb.actvCellLst[cellIdx]->cellStatus != DELETION_IN_PROGRESS)
378    {
379       DU_LOG("\nERROR  -->  DU APP : duSendCellDeletReq(): CellStatus[%d] of cellId[%d] is not correct.\
380       Expected CellStatus is DELETION_IN_PROGRESS",duCb.actvCellLst[cellIdx]->cellStatus, cellId);
381       return RFAILED;  
382    }
383
384    if(duBuildAndSendMacCellStop(cellId) == RFAILED)
385    {
386       DU_LOG("\nERROR  -->  DU APP : duSendCellDeletReq(): Failed to build and send cell stop request to MAC for\
387             cellId[%d]",cellId);
388       return RFAILED;
389    }
390
391    return ROK;
392 }
393
394 /**********************************************************************
395   End of file
396  **********************************************************************/