Using TAPA Task to generated PHY Stub's slot indication [Issue-Id: ODUHIGH-348]
[o-du/l2.git] / src / phy_stub / phy_stub_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 #define PHY_STUB_MEM_REGION  0
20 #define PHY_STUB_POOL  0
21
22 #define EVT_PHY_START_SLOT_IND 1
23
24 /* Fill Pst structure for sending msg from phy stub to self */
25 #define FILL_PST_PHY_TO_PHY(_pst, _event)                   \
26 {                                                           \
27    _pst.selector  = ODU_SELECTOR_LWLC;                      \
28    _pst.srcEnt    = ENTPHYSTUB;                             \
29    _pst.dstEnt    = ENTPHYSTUB;                             \
30    _pst.dstInst   = 0;                                      \
31    _pst.srcInst   = 0;                                      \
32    _pst.dstProcId = ODU_GET_PROCID();                       \
33    _pst.srcProcId = ODU_GET_PROCID();                       \
34    _pst.region = PHY_STUB_MEM_REGION;                       \
35    _pst.pool = PHY_STUB_POOL;                               \
36    _pst.event = _event;                                     \
37    _pst.route = 0;                                          \
38    _pst.prior = 0;                                          \
39    _pst.intfVer = 0;                                        \
40 }
41
42 /* Fill Pst structure for sending msg from PHY stub to Lower MAC */
43 #define FILL_PST_PHY_STUB_TO_LWR_MAC(_pst, _event)                   \
44 {                                                           \
45    _pst.selector  = ODU_SELECTOR_LWLC;                      \
46    _pst.srcEnt    = ENTPHYSTUB;                             \
47    _pst.dstEnt    = ENTLWRMAC;                              \
48    _pst.dstInst   = 0;                                      \
49    _pst.srcInst   = 0;                                      \
50    _pst.dstProcId = ODU_GET_PROCID();                       \
51    _pst.srcProcId = ODU_GET_PROCID();                       \
52    _pst.region = PHY_STUB_MEM_REGION;                       \
53    _pst.pool = PHY_STUB_POOL;                               \
54    _pst.event = _event;                                     \
55    _pst.route = 0;                                          \
56    _pst.prior = 0;                                          \
57    _pst.intfVer = 0;                                        \
58 }
59 /**********************************************************************
60   End of file
61  **********************************************************************/