1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
19 /********************************************************************20**
21 Name: LTE-RLC Layer - System Services Interface Functions
25 Desc: C source code for the interface to System Services
30 *********************************************************************21*/
31 static const char* RLOG_MODULE_NAME="RLC_UL";
32 static int RLOG_MODULE_ID=2048;
33 static int RLOG_FILE_ID=206;
35 /** @file kw_ul_ex_ms.c
36 @brief RLC System Services Interface
40 /* header (.h) include files */
41 #include "common_def.h"
42 #include "lkw.h" /* LKW defines */
43 #include "ckw.h" /* CKW defines */
44 #include "kwu.h" /* KWU defines */
45 #include "rgu.h" /* RGU defines */
46 #include "kw_err.h" /* Err defines */
47 #include "kw_env.h" /* RLC environment options */
48 #include "kw.h" /* RLC defines */
52 /* extern (.x) include files */
53 #include "lkw.x" /* LKW */
54 #include "ckw.x" /* CKW */
55 #include "kwu.x" /* KWU */
56 #include "rgu.x" /* RGU */
61 #include "rlc_mac_inf.h"
62 #include "du_app_rlc_inf.h"
65 #include "l2_tenb_stats.x"
68 S16 rlcUlInitExt ARGS (( Void ));
74 * <b> Initialize External </b>
77 * Initializes variables used to interface with Upper/Lower Layer
98 /***********************************************************************
99 System Service Interface Functions
100 ***********************************************************************/
105 * <b> Activates Initialization </b>
108 * This function is invoked by system services to initialize the LTE-RLC
109 * layer. This is an entry point used by LTE_RLC layer to initialize its
110 * global variables, before becoming operational.
112 * Allowable values for parameters are specified in ssi.h.
114 * @param[in] ent - Specify the entity id of the LTE-RLC task.
115 * @param[in] inst - Specify the entity id of the LTE-RLC task.
116 * @param[in] region - Specifies the memory region from which
117 * LTE-RLC should allocate structures and buffers.
118 * @param[in] reason - Specifies the reason for calling this
119 * initialization function.
128 Ent ent, /* entity */
129 Inst inst, /* instance */
130 Region region, /* region */
131 Reason reason /* reason */
134 S16 rlcUlActvInit(ent, inst, region, reason)
135 Ent ent; /* entity */
136 Inst inst; /* instance */
137 Region region; /* region */
138 Reason reason; /* reason */
143 if (inst >= MAX_RLC_INSTANCES)
145 /* intance greater than MAX instances */
149 if (rlcCb[inst] != NULLP)
154 if (SGetSBuf(region, 0, (Data **)&tRlcCb,
155 (Size)sizeof (RlcCb)) != ROK)
160 /* Initialize rlcCb */
161 RLC_MEM_SET(tRlcCb, 0, sizeof(RlcCb));
163 /* Initialize task configuration parameters */
164 tRlcCb->init.ent = ent; /* entity */
165 tRlcCb->init.inst = inst; /* instance */
166 tRlcCb->init.region = region; /* static region */
167 tRlcCb->init.pool = 0; /* static pool */
168 tRlcCb->init.reason = reason; /* reason */
169 tRlcCb->init.cfgDone = FALSE; /* configuration done */
170 tRlcCb->init.acnt = TRUE; /* enable accounting */
171 tRlcCb->init.usta = TRUE; /* enable unsolicited status */
172 tRlcCb->init.trc = FALSE; /* enable trace */
173 tRlcCb->init.procId = ODU_GET_PROCID();
175 rlcCb[inst] = tRlcCb;
177 /* call external function for intialization */
182 TSL2AllocStatsMem(tRlcCb->init.region, tRlcCb->init.pool);
186 } /* rlcUlActvInit */
193 * <b> Activation Task </b>
196 * Processes events received for MLTE-RLC layer via System Services from
199 * @param[in] pst - Pst Structure
200 * @param[in] mBuf - Message Buffer
209 Pst *pst, /* pst structure */
210 Buffer *mBuf /* message buffer */
213 S16 rlcUlActvTsk(pst, mBuf)
214 Pst *pst; /* pst structure */
215 Buffer *mBuf; /* message buffer */
228 case LKW_EVT_CFG_REQ:
230 ret = unpackRlcConfigReq(RlcMiRlcConfigReq, pst, mBuf);
234 case LKW_EVT_CNTRL_REQ:
236 ret = cmUnpkLkwCntrlReq(RlcMiLkwCntrlReq, pst, mBuf);
240 case EVENT_RLC_UL_UE_CREATE_REQ: /* UE Create Request */
242 ret = unpackRlcUlUeCreateReq(RlcUlProcUeCreateReq, pst, mBuf);
246 case LKW_EVT_STS_REQ:
248 ret = cmUnpkLkwStsReq(RlcMiLkwStsReq, pst, mBuf);
252 case LKW_EVT_STA_REQ:
254 ret = cmUnpkLkwStaReq(RlcMiLkwStaReq, pst, mBuf);
257 /* kw005.201 added support for L2 Measurement */
259 case LKW_EVT_L2MEAS_REQ:
261 ret = cmUnpkLkwL2MeasReq(RlcMiLkwL2MeasReq, pst, mBuf);
264 case LKW_EVT_L2MEAS_SEND_REQ:
267 ret = cmUnpkLkwL2MeasSendReq(RlcMiLkwL2MeasSendReq, pst, mBuf);
271 case LKW_EVT_L2MEAS_STOP_REQ:
273 ret = cmUnpkLkwL2MeasStopReq(RlcMiLkwL2MeasStopReq, pst, mBuf);
279 ODU_PUT_MSG_BUF(mBuf);
280 if (pst->dstInst < MAX_RLC_INSTANCES)
282 RLOG1(L_FATAL,"Received Invalid Event[%d] from SM",
297 case UDX_EVT_BND_CFM: /* Bind request */
299 ret = cmUnpkUdxBndCfm(rlcUlUdxBndCfm, pst, mBuf );
303 case UDX_EVT_CFG_CFM: /* Unbind request */
305 ret = cmUnpkUdxCfgCfm(rlcUlUdxCfgCfm, pst, mBuf );
309 case UDX_EVT_UEIDCHG_CFM: /* Configuration request */
311 ret = cmUnpkUdxUeIdChgCfm(rlcUlUdxUeIdChgCfm, pst, mBuf);
315 case UDX_EVT_STA_PHBT_TMR_START: /* Status Prohibit Timer Start */
317 ret = cmUnpkUdxStaProhTmrStart(rlcUlUdxStaProhTmrStart, pst, mBuf);
324 ODU_PUT_MSG_BUF(mBuf);
325 if (pst->dstInst < MAX_RLC_INSTANCES)
327 RLOG1(L_ERROR,"Received Invalid Event[%d] from RLC UL",
342 case CKW_EVT_BND_REQ: /* Bind request */
344 ret = cmUnpkCkwBndReq(RlcUiCkwBndReq, pst, mBuf );
348 case CKW_EVT_UBND_REQ: /* Unbind request */
350 ret = cmUnpkCkwUbndReq(RlcUiCkwUbndReq, pst, mBuf );
354 case CKW_EVT_UEIDCHG_REQ: /* Configuration request */
356 ret = cmUnpkCkwUeIdChgReq(RlcUiCkwUeIdChgReq, pst, mBuf);
363 case KWU_EVT_BND_REQ: /* Bind request */
365 ret = cmUnpkKwuBndReq(RlcUiKwuBndReq, pst, mBuf );
369 case KWU_EVT_UBND_REQ: /* Unbind request */
371 ret = cmUnpkKwuUbndReq(RlcUiKwuUbndReq, pst, mBuf );
376 ODU_PUT_MSG_BUF(mBuf);
377 if (pst->dstInst < MAX_RLC_INSTANCES)
379 RLOG1(L_ERROR,"Received Invalid Event[%d] from RRC",
394 case KWU_EVT_BND_REQ: /* Bind request */
396 ret = cmUnpkKwuBndReq(RlcUiKwuBndReq, pst, mBuf );
400 case KWU_EVT_UBND_REQ: /* Unbind request */
402 ret = cmUnpkKwuUbndReq(RlcUiKwuUbndReq, pst, mBuf );
407 ODU_PUT_MSG_BUF(mBuf);
408 if (pst->dstInst < MAX_RLC_INSTANCES)
410 RLOG1(L_ERROR,"Received Invalid Event[%d] from PDCP",
425 case EVTRGUBNDCFM: /* Bind request */
427 ret = cmUnpkRguBndCfm(RlcLiRguBndCfm, pst, mBuf );
431 case EVENT_UL_DATA_TO_RLC: /* UL Data request */
433 ret = unpackRlcUlData(RlcProcUlData, pst, mBuf);
440 ODU_PUT_MSG_BUF(mBuf);
441 if (pst->dstInst < MAX_RLC_INSTANCES)
443 RLOG1(L_ERROR,"Received Invalid Event[%d] from MAC",
451 #if defined(L2_L3_SPLIT) && defined (TENB_T2K3K_SPECIFIC_CHANGES) && defined (MAC_RLC_UL_RBUF)
456 case KWU_EVT_TTI_IND:
459 ODU_PUT_MSG_BUF(mBuf);
465 #endif/* End for TENB_T2K3K_SPECIFIC_CHANGES and L2_L3_SPLIT */
466 #ifndef UL_RLC_NET_CLUSTER
476 tRlcCb = RLC_GET_RLCCB(pst->dstInst);
478 TSL2SendStatsToApp(&(tRlcCb->genCfg.lmPst), 0);
479 ODU_PUT_MSG_BUF(mBuf);
484 printf("\n ERROR Invalid Event[%d] from CL to PDCPUL\n",
486 ODU_PUT_MSG_BUF(mBuf);
496 if (pst->dstInst < MAX_RLC_INSTANCES)
498 RLOG1(L_ERROR, "Received Invalid Source Entity[%d]",pst->event);
500 ODU_PUT_MSG_BUF(mBuf);
512 /********************************************************************30**
514 **********************************************************************/