Merge "PNF Registration to be sent after odu stack is up Issue-Id: ODUHIGH-349"
[o-du/l2.git] / src / phy_stub / phy_stub_thread_hdl.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 handles slot indication */
20
21 #include "common_def.h"
22 #include "phy_stub_utils.h"
23 #ifdef INTEL_FAPI
24 #include "fapi.h"
25 #include "fapi_vendor_extension.h"
26 #endif
27 #include "phy_stub.h"
28
29 uint8_t l1SendUlUserData();
30 uint8_t l1SendStatusPdu();
31 uint16_t l1BuildAndSendSlotIndication();
32 uint16_t l1BuildAndSendStopInd();
33 pthread_t thread = 0;
34
35 /*******************************************************************
36  *
37  * @brief Generates slot indications
38  *
39  * @details
40  *
41  *    Function : GenerateTicks
42  *
43  *    Functionality: Generates slot indications
44  *
45  * @params[in] 
46  * @return ROK     - success
47  *         RFAILED - failure
48  *
49  * ****************************************************************/
50 void GenerateTicks()
51 {
52 #ifdef NR_TDD
53    int     milisec = 0.5;        /* 0.5ms */
54 #else
55    int     milisec = 1;          /* 1ms */
56 #endif
57    struct timespec req = {0};
58
59    slotIndicationStarted = true;
60    req.tv_sec = 0;
61    req.tv_nsec = milisec * 1000000L;
62
63    DU_LOG("\nPHY_STUB : GenerateTicks : Starting to generate slot indications");
64
65    while(slotIndicationStarted)
66    {
67       clock_nanosleep(CLOCK_REALTIME, 0, &req, NULL); 
68       /* Send Slot indication indication to lower mac */
69       if(l1BuildAndSendSlotIndication() != ROK)
70       {
71          DU_LOG("\nERROR  --> PHY_STUB : GenerateTicks(): Failed to build and send Slot Indication");
72          return;
73       }
74    }
75
76    DU_LOG("\nINFO  --> PHY_STUB : Slot indication stopped");
77
78    /* Initialize all global variables */
79    sfnValue = 0;
80    slotValue = 0;
81    rachIndSent = false;
82    msg3Sent = false;
83    msg5ShortBsrSent = false;
84    msg5Sent = false;
85    dlDedMsg = false;
86    msgSecurityModeComp =  false;
87    msgRrcReconfiguration  =  false;
88    msgRegistrationComp    = false;
89
90    /* Send Stop indication to MAC */
91    sleep(1);
92    l1BuildAndSendStopInd();
93 }
94
95 /*******************************************************************
96  *
97  * @brief Create/cancel thread for generating slot indication 
98  *
99  * @details
100  *
101  *    Function : l1HdlSlotIndicaion
102  *
103  *    Functionality: Create/cancel thread for generating slot indication
104  *
105  * @params[in] 
106  * @return ROK     - success
107  *         RFAILED - failure
108  *
109  * ****************************************************************/
110 void l1HdlSlotIndicaion(bool stopSlotInd)
111 {
112    Pst pst;
113    Buffer *mBuf = NULLP;
114
115    if(!stopSlotInd)
116    {
117       DU_LOG("\nPHY_STUB: Sending start slot indication event to self");
118       memset(&pst, 0, sizeof(Pst));
119       FILL_PST_PHY_TO_PHY(pst, EVT_PHY_START_SLOT_IND);
120       ODU_GET_MSG_BUF(pst.region, pst.pool, &mBuf);
121       ODU_POST_TASK(&pst, mBuf);
122    }
123    else
124    {
125       slotIndicationStarted = false;
126    }
127 }
128
129 /*******************************************************************
130  *
131  * @brief Handles Console input
132  *
133  * @details
134  *
135  *    Function : l1ConsoleHandler
136  *
137  *    Functionality: Handles Console input
138  *
139  * @params[in]
140  * @return ROK     - success
141  *         RFAILED - failure
142  *
143  * ****************************************************************/
144 void *l1ConsoleHandler(void *args)
145 {
146    char ch;
147    while(true)
148    {
149       /* Send UL user data to DU when user enters 'd' on console */
150       if((ch = getchar()) == 'd')
151       {
152          /* Start Pumping data from PHY stub to DU */
153          DU_LOG("\nDEBUG  --> PHY STUB: Sending UL User Data");
154          l1SendUlUserData();
155       }
156       else if((ch = getchar()) == 'c')
157       {
158          /* Send Control PDU from PHY stub to DU */
159          DU_LOG("\nDEBUG  --> PHY STUB: Sending Status PDU");
160          l1SendStatusPdu();
161       }
162    }
163 }
164
165 /*******************************************************************
166  *
167  * @brief Creates thread for handling console input 
168  *
169  * @details
170  *
171  *    Function : l1StartConsoleHandler
172  *
173  *    Functionality: Creates thread for handling console input
174  *
175  * @params[in] 
176  * @return ROK     - success
177  *         RFAILED - failure
178  *
179  * ****************************************************************/
180 void l1StartConsoleHandler()
181 {
182    uint8_t retVal;
183    pthread_t conThrdId;
184    pthread_attr_t attr;
185
186    /* Start thread to receive console input */
187    pthread_attr_init(&attr);
188    pthread_attr_setstacksize(&attr, (size_t)NULLD);
189    pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM);
190    pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
191    retVal = pthread_create(&conThrdId, &attr, l1ConsoleHandler, NULLP);
192    if(retVal != 0)
193    {
194       DU_LOG("\nERROR  -->  PHY STUB : Thread creation failed. Cause %d", retVal);
195    }
196    pthread_attr_destroy(&attr);
197
198 }
199
200 /**********************************************************************
201          End of file
202 **********************************************************************/