FAPI code enclosed under FAPI flag
[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 <stdint.h>
23
24 #include "envdep.h"
25 #include "ssi.h"
26
27 #include "rg_cl_phy.h"
28 #ifdef FAPI
29 #include "fapi.h"
30 #endif
31
32 EXTERN S16 rgClHndlCfgReq ARGS((void *msg));
33 EXTERN void processFapiRequest ARGS((uint8_t msgType, uint32_t msgLen, void *msg));
34
35 /*******************************************************************
36  *
37  * @brief Sends message to PHY
38  *
39  * @details
40  *
41  *    Function : sendToPhy
42  *
43  *    Functionality:
44  *         -Sends message to PHY
45  *
46  * @params[in] Message Type
47  *             Message Length
48  *             Messaga Pointer
49  *
50  * @return void
51  *
52 ******************************************************************/
53
54 PUBLIC void sendToPhy(uint8_t msgType, uint32_t msgLen, void *msg)
55 {
56 #ifdef WLS_MEM
57    S8 ret;
58    void *pMsg;
59
60    pMsg = (void *)WLS_VA2PA(mtGetWlsHdl(), msg);
61    ret = WLS_put(mtGetWlsHdl(), (PTR)pMsg, msgLen, msgType, 0);
62
63    if(ret != 0)
64    {
65       printf("\nFailure in sending message to PHY");
66       RETVALUE(RFAILED);
67    }
68 #else
69
70    processFapiRequest(msgType, msgLen, msg);
71
72 #endif
73 }
74
75 /**********************************************************************
76          End of file
77 **********************************************************************/