RLC BO, BO response and DL Data handling. [Issue-ID: ODUHIGH-181]
[o-du/l2.git] / src / 5gnrmac / lwr_mac_utils.h
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 /* Fill Pst structure for sending msg from MAC to SCH */
20 #define FILL_PST_LWR_MAC_TO_MAC(_pst, _event)               \
21 {                                                           \
22    _pst.selector  = ODU_SELECTOR_TC;                        \
23    _pst.srcEnt    = ENTLWRMAC;                              \
24    _pst.dstEnt    = ENTMAC;                                 \
25    _pst.dstInst   = 0;                                      \
26    _pst.srcInst   = 0;                                      \
27    _pst.dstProcId = ODU_GET_PROCID();                      \
28    _pst.srcProcId = ODU_GET_PROCID();                      \
29    _pst.region = MAC_MEM_REGION;                            \
30    _pst.pool = MAC_POOL;                                    \
31    _pst.event = _event;                                     \
32    _pst.route = 0;                                          \
33    _pst.prior = 0;                                          \
34    _pst.intfVer = 0;                                        \
35 }
36  
37 /**********************************************************************
38          End of file
39 **********************************************************************/