MAC PDU de-mux and warning fixes
[o-du/l2.git] / src / 5gnrmac / mac_demux.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 <stdlib.h>
19 #include <stdint.h>
20 #include <stdbool.h>
21
22 /* header include files -- defines (.h) */
23 #include "envopt.h"        /* environment options */
24 #include "envdep.h"        /* environment dependent */
25 #include "envind.h"        /* environment independent */
26 #include "gen.h"           /* general layer */
27 #include "ssi.h"           /* system service interface */
28 #include "cm_hash.h"       /* common hash list */
29 #include "cm_mblk.h"       /* common memory link list library */
30 #include "cm_llist.h"      /* common linked list library */
31 #include "cm_err.h"        /* common error */
32 #include "cm_lte.h"        /* common LTE */
33 #include "lrg.h"           /* Layer manager interface includes*/
34 #include "crg.h"           /* CRG interface includes*/
35 #include "rgu.h"           /* RGU interface includes*/
36 #include "tfu.h"           /* TFU interface includes */
37 #include "rg_sch_inf.h"    /* SCH interface includes */
38 #include "rg_prg.h"       /* PRG (MAC-MAC) interface includes*/
39 #include "rg_env.h"       /* MAC environmental includes*/
40 #include "rg.h"           /* MAC includes*/
41 #include "rg_err.h"       /* MAC error includes*/
42 #include "du_log.h"
43
44 /* header/extern include files (.x) */
45 #include "gen.x"           /* general layer typedefs */
46 #include "ssi.x"           /* system services typedefs */
47 #include "cm5.x"           /* common timers */
48 #include "cm_hash.x"       /* common hash list */
49 #include "cm_lib.x"        /* common library */
50 #include "cm_llist.x"      /* common linked list */
51 #include "cm_mblk.x"       /* memory management */
52 #include "cm_tkns.x"       /* common tokens */
53 #include "cm_lte.x"       /* common tokens */
54 #include "rgu.x"           /* RGU types */
55 #include "tfu.x"           /* RGU types */
56 #include "lrg.x"           /* layer management typedefs for MAC */
57 #include "crg.x"           /* CRG interface includes */
58 #include "rg_sch_inf.x"    /* SCH interface typedefs */
59 #include "rg_prg.x"        /* PRG (MAC-MAC) Interface typedefs */
60 #include "du_app_mac_inf.h"
61 #include "mac.h"
62 #include "rg.x"            /* typedefs for MAC */
63
64 /*******************************************************************
65  *
66  * @brief De-mux of MAC-Sub PDUs from Rx Data Ind Pdu
67  *
68  * @detail
69  *
70  *    Function : unpackRxData
71  *
72  *    Functionality:
73  *     De-mux of MAC-Sub PDUs from Rx Data Ind Pdu
74  *
75  * @params[in] Pointer to PDU received
76  *             PDU length
77  * @return ROK
78  *         RFAILED
79  *
80  * ****************************************************************/
81 int unpackRxData(SlotIndInfo timingInfo, RxDataIndPdu *rxDataIndPdu)
82 {
83    uint8_t   lcId;
84    uint8_t   idx = 0;
85    uint16_t  length;
86    uint8_t   *pdu;
87    uint16_t  pduLen;
88    uint8_t   *rxDataPdu;
89
90    pduLen = rxDataIndPdu->pduLength;
91    rxDataPdu = rxDataIndPdu->pduData;
92
93    while(pduLen > 0)
94    {
95       /* LC id is the 6 LSB in 1st octet */
96       lcId = (~((~0) << 6)) & rxDataPdu[idx];
97
98       switch(lcId)
99       {
100          case MAC_LCID_CCCH :
101          {
102                            pduLen--;
103
104                             /* for UL CCCH,fixed length of MAC SDU */
105                            length = 6;
106             
107             /*  Allocating sharable memory to send ul ccch msg to du app*/
108             MAC_ALLOC_SHRABL_BUF(pdu, length);
109             if(!pdu)
110             {
111                DU_LOG("\nMAC : UL CCCH PDU memory allocation failed");
112                return RFAILED;
113             }  
114             idx++;
115             memcpy(pdu, &rxDataPdu[idx], length);
116             pduLen -= length;
117             idx = idx + length;
118
119             /* TODO:
120              * Fill and send UL-CCCH Indication to DU APP 
121              */
122             break;
123          }
124          
125          case MAC_DEDLC_MIN_LCID ... MAC_DEDLC_MAX_LCID :
126             break;
127
128          case MAC_LCID_RESERVED_MIN ... MAC_LCID_RESERVED_MAX :
129             break;
130
131          case MAC_LCID_CCCH_48BIT :
132             break;
133
134          case MAC_LCID_BIT_RATE_QUERY :
135             break;
136
137          case MAC_LCID_MULT_PHR_FOUR_OCT :
138             break;
139
140          case MAC_LCID_CFG_GRANT_CFM :
141             break;
142
143          case MAC_LCID_MULT_PHR_ONE_OCT:
144             break;
145
146          case MAC_LCID_SINGLE_PHR :
147             break;
148
149          case MAC_LCID_CRNTI :
150             break;
151
152          case MAC_LCID_SHORT_TRUNC_BSR :
153             break;
154
155          case MAC_LCID_LONG_TRUNC_BSR :
156             break;
157
158          case MAC_LCID_SHORT_BSR :
159             break;
160
161          case MAC_LCID_LONG_BSR :
162             break;
163          
164          case MAC_LCID_PADDING :
165          {
166             break;
167          }
168
169          default:
170          {
171             DU_LOG("\nMAC : Invalid LC Id %d", lcId);
172             return RFAILED;
173          }
174       } /* End of switch */
175
176                 if(lcId == MAC_LCID_PADDING)
177                    break;
178
179    } /* End of While */
180
181    return ROK;
182 } /* End of unpackRxData */
183
184 /**********************************************************************
185          End of file
186 **********************************************************************/