[Epic-ID: ODUHIGH-517][Task-ID: ODUHIGH-541] Shifting the Conversion of FreqDomainRes...
[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 coupling type for sending msg from Lower MAC to MAC.
20  * Using TC for phy stub data and LWLC with Intel L1 */
21 #ifdef INTEL_WLS_MEM
22 #define FILL_LWR_MAC_TO_MAC_SEL(_pst) _pst.selector = ODU_SELECTOR_LWLC
23 #else
24 #define FILL_LWR_MAC_TO_MAC_SEL(_pst) _pst.selector = ODU_SELECTOR_TC
25 #endif
26
27 /* Fill Pst structure for sending msg from Lower MAC to MAC */
28 #define FILL_PST_LWR_MAC_TO_MAC(_pst, _event)               \
29 {                                                           \
30    FILL_LWR_MAC_TO_MAC_SEL(_pst);                           \
31    _pst.srcEnt    = ENTLWRMAC;                              \
32    _pst.dstEnt    = ENTMAC;                                 \
33    _pst.dstInst   = 0;                                      \
34    _pst.srcInst   = 0;                                      \
35    _pst.dstProcId = ODU_GET_PROCID();                       \
36    _pst.srcProcId = ODU_GET_PROCID();                       \
37    _pst.region = MAC_MEM_REGION;                            \
38    _pst.pool = MAC_POOL;                                    \
39    _pst.event = _event;                                     \
40    _pst.route = 0;                                          \
41    _pst.prior = 0;                                          \
42    _pst.intfVer = 0;                                        \
43 }
44
45 /* Fill Pst structure for sending msg from Lower MAC to itself */
46 #define FILL_PST_LWR_MAC_TO_LWR_MAC(_pst, _event)           \
47 {                                                           \
48    _pst.selector  = ODU_SELECTOR_LWLC;                      \
49    _pst.srcEnt    = ENTLWRMAC;                              \
50    _pst.dstEnt    = ENTLWRMAC;                              \
51    _pst.dstInst   = 0;                                      \
52    _pst.srcInst   = 0;                                      \
53    _pst.dstProcId = ODU_GET_PROCID();                       \
54    _pst.srcProcId = ODU_GET_PROCID();                       \
55    _pst.region = MAC_MEM_REGION;                            \
56    _pst.pool = MAC_POOL;                                    \
57    _pst.event = _event;                                     \
58    _pst.route = 0;                                          \
59    _pst.prior = 0;                                          \
60    _pst.intfVer = 0;                                        \
61 }
62  
63 void convertFreqDomRsrcMapToIAPIFormat(uint8_t *sourceBitMap, uint8_t *destBitMap);
64 /**********************************************************************
65          End of file
66 **********************************************************************/