macCellCfg
[o-du/l2.git] / src / 5gnrmac / lwr_mac_phy.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
19 /* This file contains APIs to send/receive messages from PHY */
20
21 #include "stdio.h"
22 #include "envdep.h"
23 #include "ssi.h"
24
25 #include "rg_cl_phy.h"
26 #include "fapi.h"
27
28
29 EXTERN S16 rgClHndlCfgReq ARGS((void *msg));
30 EXTERN void macToPhy ARGS((U16 msgType, U32 msgLen, void *msg));
31 EXTERN void processRequest ARGS((U16 msgType, U32 msgLen, void *msg));
32 /******************************************************************
33  *
34  * @brief Receives message to PHY
35  *
36  * @details
37  *
38  *    Function : phyToMac
39  *
40  *    Functionality:
41  *         -Receives Msg from PHY
42  *
43  * @params[in] Message Pointer
44  *
45  * @return void
46  *
47  ******************************************************************/
48
49 void phyToMac(U16 msgType, U32 msgLen,void *msg)
50 {
51    switch(msgType)
52    {
53       case MSG_TYPE_CONFIG_RSP:
54          rgClHndlCfgReq(msg);
55          break;
56
57       default:
58          printf("\nInvalid message type[%x] from PHY", msgType);
59    }
60 }
61
62 /*******************************************************************
63  *
64  * @brief Sends message to PHY
65  *
66  * @details
67  *
68  *    Function : sendToPhy
69  *
70  *    Functionality:
71  *         -Sends message to PHY
72  *
73  * @params[in] Message Type
74  *             Message Length
75  *             Messaga Pointer
76  *
77  * @return void
78  *
79 ******************************************************************/
80
81 PUBLIC S16 sendToPhy(U16 msgType, U32 msgLen, void *msg)
82 {
83 #if 0
84    S8 ret;
85    void *pMsg;
86
87    pMsg = (void *)WLS_VA2PA(mtGetWlsHdl(), msg);
88    ret = WLS_put(mtGetWlsHdl(), (PTR)pMsg, msgLen, msgType, 0);
89
90    if(ret != 0)
91    {
92       printf("\nFailure in sending message to PHY");
93       RETVALUE(RFAILED);
94    }
95 #endif
96
97    processRequest(msgType, msgLen, msg);
98 }
99
100 /**********************************************************************
101          End of file
102 **********************************************************************/