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