UL TTI Request for PRACH PDU
[o-du/l2.git] / src / 5gnrmac / mac_rach.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 /* header include files (.h) */
19 #include "envopt.h"        /* environment options */
20 #include "envdep.h"        /* environment dependent */
21 #include "envind.h"        /* environment independent */
22 #include "gen.h"           /* general */
23 #include "ssi.h"           /* system services */
24 #include "cm_tkns.h"       /* Common Token Defines */
25 #include "cm_llist.h"      /* Common Link List Defines */
26 #include "cm_hash.h"       /* Common Hash List Defines */
27 #include "cm_mblk.h"       /* common memory link list library */
28 #include "cm_lte.h"        /* Common LTE Defines */
29 #include "tfu.h"           /* RGU Interface includes */
30 #include "lrg.h"
31 #include "gen.x"           /* general */
32 #include "ssi.x"           /* system services */
33 #include "cm5.x"           /* system services */
34 #include "cm_tkns.x"       /* Common Token Definitions */
35 #include "cm_llist.x"      /* Common Link List Definitions */
36 #include "cm_lib.x"        /* Common Library Definitions */
37 #include "cm_hash.x"       /* Common Hash List Definitions */
38 #include "cm_mblk.x"       /* common memory link list library */
39 #include "cm_lte.x"        /* Common LTE Defines */
40 #include "tfu.x"           /* RGU Interface includes */
41 #include "lrg.x"
42 #include "du_app_mac_inf.h"
43 #include "mac.h"
44
45
46 /* spec-38.211 Table 6.3.3.1-7 */
47 uint8_t UnrestrictedSetNcsTable[MAX_ZERO_CORR_CFG_IDX] = 
48 {0, 2, 4, 6, 8, 10, 12, 13, 15, 17, 19, 23, 27, 34, 46, 69};
49
50 int MacProcUlSchInfo(Pst *pst, UlSchInfo *ulSchInfo)
51 {
52    if(ulSchInfo != NULLP)
53         {
54       MacUlSlot *currUlSlot = 
55            &macCb.macCell->ulSlot[ulSchInfo->slotIndInfo.slot % MAX_SLOT_SUPPORTED];
56       memcpy(&currUlSlot->ulCellInfo, ulSchInfo, sizeof(UlSchInfo)); 
57    }
58    return ROK;
59 }
60
61 /**********************************************************************
62   End of file
63  **********************************************************************/
64