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