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 /************************************************************************
25 Desc: C source code SSI Interface Implementation
29 **********************************************************************/
32 @brief This file contains the implementation of callback functions
33 registered with SSI during the LTE MAC Task initialization.
35 /* header include files -- defines (.h) */
36 #include "common_def.h"
37 #include "rgu.h" /* RGU defines */
38 #include "tfu.h" /* RGU defines */
39 #include "lrg.h" /* layer management defines for LTE-MAC */
40 #include "rgr.h" /* layer management defines for LTE-MAC */
41 #include "crg.h" /* CRG interface includes */
42 #include "rg_sch_inf.h" /* SCH interface includes */
43 #include "rg_prg.h" /* PRG interface includes */
44 #include "rg_env.h" /* customisable defines and macros for LTE-MAC */
45 #include "rg.h" /* defines and macros for MAC */
46 #include "rgr.h" /* defines and macros for SCH */
49 /* header/extern include files (.x) */
50 #include "rgu.x" /* RGU types */
51 #include "tfu.x" /* RGU types */
52 #include "lrg.x" /* layer management typedefs for MAC */
53 #include "rgr.x" /* layer management typedefs for MAC */
54 #include "crg.x" /* CRG interface typedes */
55 #include "rg_sch_inf.x" /* SCH interface typedefs */
56 #include "rg_prg.x" /*PRG interface includes*/
57 #include "du_app_mac_inf.h"
58 #include "rg.x" /* typedefs for MAC */
59 #include "rlc_mac_inf.h"
62 * @brief Task Activation callback function Entity SM.
66 * Function : rgHdlSMEvents
68 * Process Messages received from Entity SM
70 * @param[in] Pst *pst, Post structure of the primitive.
71 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
72 * @param[in] Reason reason.
76 PRIVATE INLINE void rgHdlSMEvents
78 Pst *pst, /* post structure */
79 Buffer *mBuf /* message buffer */
82 PRIVATE INLINE void rgHdlSMEvents(pst, mBuf)
83 Pst *pst; /* post structure */
84 Buffer *mBuf; /* message buffer */
91 /* Process a config. request */
92 cmUnpkLrgCfgReq(RgMiLrgCfgReq, pst, mBuf);
94 case EVTMACSCHGENCFGREQ:
95 /* Process a config. request */
96 cmUnpkLrgSchCfgReq(MacSchGenCfgReq, pst, mBuf);
99 /* Process a control request */
100 cmUnpkLrgCntrlReq(RgMiLrgCntrlReq, pst, mBuf);
103 /* Process a status request */
104 cmUnpkLrgStaReq(RgMiLrgStaReq, pst, mBuf);
107 /* Process a statistics request */
108 cmUnpkLrgStsReq(RgMiLrgStsReq, pst, mBuf);
110 #endif /* LCRGMILRG */
111 case EVENT_MAC_CELL_CONFIG_REQ:
112 /* Process MAC cell config */
113 unpackDuMacCellCfg(MacProcCellCfgReq, pst, mBuf);
115 case EVENT_MAC_CELL_START_REQ:
116 /* Process MAC cell start request */
117 unpackMacCellStartReq(MacProcCellStartReq, pst, mBuf);
119 case EVENT_MAC_CELL_STOP_REQ:
120 /* Process MAC cell stop request */
121 unpackMacCellStopReq(MacProcCellStopReq, pst, mBuf);
123 case EVENT_MAC_DL_CCCH_IND:
124 /* Process DL CCCH Ind */
125 unpackMacDlCcchInd(MacProcDlCcchInd, pst, mBuf);
127 case EVENT_MAC_UE_CREATE_REQ:
128 /* Process Ue Create Request */
129 unpackMacUeCreateReq(MacProcUeCreateReq, pst, mBuf);
139 * @brief Task Activation callback function Entity NH.
143 * Function : rgHdlNHEvents
145 * Process Messages received from Entity NH
147 * @param[in] Pst *pst, Post structure of the primitive.
148 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
149 * @param[in] Reason reason.
153 PRIVATE INLINE void rgHdlNHEvents
155 Pst *pst, /* post structure */
156 Buffer *mBuf /* message buffer */
159 PRIVATE INLINE void rgHdlNHEvents(pst, mBuf)
160 Pst *pst; /* post structure */
161 Buffer *mBuf; /* message buffer */
168 cmUnpkCrgBndReq(RgUiCrgBndReq, pst, mBuf);
171 cmUnpkCrgUbndReq(RgUiCrgUbndReq, pst, mBuf);
174 cmUnpkCrgCfgReq(RgUiCrgCfgReq, pst, mBuf);
184 * @brief Task Activation callback function Entity KW.
188 * Function : rgHdlKWEvents
190 * Process Messages received from Entity KW
192 * @param[in] Pst *pst, Post structure of the primitive.
193 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
194 * @param[in] Reason reason.
198 PRIVATE INLINE void rgHdlKWEvents
200 Pst *pst, /* post structure */
201 Buffer *mBuf /* message buffer */
204 PRIVATE INLINE void rgHdlKWEvents(pst, mBuf)
205 Pst *pst; /* post structure */
206 Buffer *mBuf; /* message buffer */
213 cmUnpkRguBndReq(RgUiRguBndReq, pst, mBuf);
216 cmUnpkRguUbndReq(RgUiRguUbndReq, pst, mBuf);
218 case EVENT_DL_DATA_TO_MAC:
219 unpackRlcDlData(MacProcRlcDlData, pst, mBuf);
221 case EVENT_BO_STATUS_TO_MAC:
222 unpackRlcBoStatus(MacProcRlcBoStatus, pst, mBuf);
226 case EVTRGUL2MULTHRPMEASREQ:
227 cmUnpkRguL2MUlThrpMeasReq(RgUiRguL2MUlThrpMeasReq, pst,mBuf);
239 * @brief Task Activation callback function Entity TF.
243 * Function : rgHdlTFEvents
245 * Process Messages received from Entity TF
247 * @param[in] Pst *pst, Post structure of the primitive.
248 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
249 * @param[in] Reason reason.
253 PRIVATE INLINE void rgHdlTFEvents
255 Pst *pst, /* post structure */
256 Buffer *mBuf /* message buffer */
259 PRIVATE INLINE void rgHdlTFEvents(pst, mBuf)
260 Pst *pst; /* post structure */
261 Buffer *mBuf; /* message buffer */
266 #if (defined(LCRGLITFU) || defined(LWLCRGLITFU))
268 cmUnpkTfuBndCfm(RgLiTfuBndCfm, pst, mBuf);
271 cmUnpkTfuDatInd(RgLiTfuDatInd, pst, mBuf);
273 #if defined(TENB_T2K3K_SPECIFIC_CHANGES) && defined(LTE_TDD)
275 cmUnpkTfuNonRtInd(RgLiTfuNonRtInd, pst, mBuf);
287 * @brief Task Activation callback function Entity RG SCH.
291 * Function : rgHdlRGEvents
293 * Process Messages received from Entity RG SCH
295 * @param[in] Pst *pst, Post structure of the primitive.
296 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
297 * @param[in] Reason reason.
301 PRIVATE INLINE void rgHdlRGEvents
303 Pst *pst, /* post structure */
304 Buffer *mBuf /* message buffer */
307 PRIVATE INLINE void rgHdlRGEvents(pst, mBuf)
308 Pst *pst; /* post structure */
309 Buffer *mBuf; /* message buffer */
315 case EVTINFCELLREGREQ:
316 cmUnpkSchMacCellRegReq(RgSchMacCellRegReq, pst, mBuf);
318 case EVTINFSFALLOCREQ:
319 cmUnpkSchMacSfAllocReq(RgSchMacSfAllocReq, pst, mBuf);
322 cmUnpkSchMacRlsHqReq(RgSchMacRlsHqReq, pst, mBuf);
324 case EVTINFHQENTRESET:
325 cmUnpkSchMacRstHqEntReq(RgSchMacRstHqEntReq, pst, mBuf);
327 case EVTINFRLSRNTIREQ:
328 cmUnpkSchMacRlsRntiReq(RgSchMacRlsRntiReq, pst, mBuf);
332 cmUnpkSchMacSpsLcRegReq(RgSchMacSpsLcRegReq, pst, mBuf);
334 case EVTINFSPSLCDEREG:
335 cmUnpkSchMacSpsLcDeregReq(RgSchMacSpsLcDeregReq, pst, mBuf);
338 cmUnpkSchMacUlSpsResetReq(RgSchMacUlSpsResetReq, pst, mBuf);
340 #endif /* LTEMAC_SPS */
342 case EVTINFL2MEASREQ:
343 cmUnpkSchMacL2MeasReq(RgSchMacL2MeasReq, pst, mBuf);
345 case EVTINFL2MEASSENDREQ :
346 cmUnpkSchMacL2MeasSendReq(RgSchMacL2MeasSendReq, pst , mBuf);
348 case EVTINFL2MEASSTOPREQ:
349 cmUnpkSchMacL2MeasStopReq(RgSchMacL2MeasStopReq, pst , mBuf);
351 #endif/* LTE_L2_MEAS */
353 cmUnpkSchMacLcgRegReq(RgSchMacLcgRegReq, pst, mBuf);
356 #if defined(LTE_ADV) && defined(LCPRG)
357 case EVTPRGUESCELLCFGREQ:
359 cmUnpkPrgPMacSMacUeSCellCfgReq(RgPrgPMacSMacUeSCellCfgReq, pst, mBuf);
362 case EVTPRGUESCELLCFGCFM:
363 case EVTPRGUESCELLLCHMODCFM:
364 case EVTPRGUESCELLLCHDELCFMDEL:
365 case EVTPRGUESCELLLCHADDCFM:
367 cmUnpkPrgSMacPMacCfgCfm(RgPrgSMacPMacCfgCfm, pst, mBuf);
370 case EVTPRGUESCELLDELREQ:
372 cmUnpkPrgPMacSMacUeSCellDelReq(RgPrgPMacSMacUeSCellDelReq, pst, mBuf);
375 case EVTPRGUESCELLLCHMODREQ:
377 cmUnpkPrgPMacSMacUeSCellLchModReq(RgPrgPMacSMacUeSCellLchModReq, pst,
381 case EVTPRGUESCELLLCHDELREQ:
383 cmUnpkPrgPMacSMacUeSCellLchDelReq(RgPrgPMacSMacUeSCellLchDelReq, pst,
387 case EVTPRGUESCELLLCHADDREQ:
389 cmUnpkPrgPMacSMacUeSCellLchAddReq(RgPrgPMacSMacUeSCellLchAddReq, pst,
407 * @brief Task Activation callback function.
411 * Function : rgActvTsk
413 * Primitives invoked by MAC's users/providers through
414 * a loosely coupled interface arrive here by means of
415 * SSI's message handling. This API is registered with
416 * SSI during the Task Registration of MAC.
418 * @param[in] Pst *pst, Post structure of the primitive.
419 * @param[in] Buffer *mBuf, Packed primitive parameters in the buffer.
420 * @param[in] Reason reason.
427 Pst *pst, /* post structure */
428 Buffer *mBuf /* message buffer */
431 S16 rgActvTsk(pst, mBuf)
432 Pst *pst; /* post structure */
433 Buffer *mBuf; /* message buffer */
438 /* The originator of this message is the stack manager,
439 * unpack and go to the respective primitive processing function */
441 rgHdlSMEvents(pst, mBuf);
444 rgHdlNHEvents(pst, mBuf);
447 rgHdlKWEvents(pst, mBuf);
450 rgHdlTFEvents(pst, mBuf);
452 case ENTMAC: /* When scheduler instance sends msg to MAC */
453 rgHdlRGEvents(pst, mBuf);
461 }/* end of rgActvTsk */
464 /**********************************************************************
467 **********************************************************************/