759c83c6dc25166d1594c2da2f74b7c6b9f43bd5
[o-du/l2.git] / src / phy_stub / phy_stub.h
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 #include <unistd.h>
19
20 #ifdef NR_TDD
21 #define MAX_SLOT_VALUE   19
22 #else
23 #define MAX_SLOT_VALUE   9
24 #endif
25 #define MAX_SFN_VALUE    1023
26 #define NR_PCI            1
27 #define SLOT_DELAY       3
28 #define NUM_DRB_TO_PUMP_DATA  2
29 #define NUM_UL_PACKETS   4
30 /*UE Ids for RACH IND*/
31 #define UE_IDX_0     0
32 #define UE_IDX_1     1
33
34 bool     slotIndicationStarted;
35 uint16_t sfnValue;
36 uint16_t slotValue;
37
38 /* UE specific information */
39 typedef struct ueCb
40 {
41    uint8_t  ueId;
42    uint16_t crnti;
43    bool     rachIndSent;
44    bool     msg3Sent;
45    bool     msg5ShortBsrSent;
46    bool     msg5Sent;
47    bool     dlDedMsg;
48    bool     msgSecurityModeComp;
49    bool            msgRrcReconfiguration;
50    bool            msgRegistrationComp;
51 }UeCb;
52
53 /* Database to store information for all UE */
54 typedef struct ueDb
55 {
56    uint8_t   numActvUe;
57    UeCb      ueCb[MAX_NUM_UE];
58 }UeDb;
59
60 UeDb ueDb;
61
62 typedef enum
63 {
64    MSG_TYPE_MSG3,
65    MSG_TYPE_SHORT_BSR,
66    MSG_TYPE_MSG5,
67    MSG_TYPE_SECURITY_MODE_COMPLETE,
68    MSG_TYPE_REGISTRATION_COMPLETE,
69    MSG_TYPE_RRC_RECONFIG_COMPLETE
70 }MsgType;
71
72 void phyToMac ARGS((uint16_t msgType, uint32_t msgLen,void *msg));
73 #ifdef INTEL_FAPI
74 void fillTlvs ARGS((fapi_uint16_tlv_t *tlv, uint16_t tag, uint16_t
75 length, uint16_t value, uint32_t *msgLen));
76 void fillMsgHeader ARGS((fapi_msg_t *hdr, uint16_t msgType, uint16_t msgLen));
77 #endif
78 void procPhyMessages(uint16_t msgType, uint32_t msgSize, void *msg);
79 void l1StartConsoleHandler();
80 void l1HdlSlotIndicaion(bool);
81 void GenerateTicks();
82
83 /**********************************************************************
84          End of file
85 **********************************************************************/