dc0b7ee5f1558d8f168fb1372938d631bd52d559
[o-du/phy.git] / fapi_5g / source / api / fapi2mac / nr5g_fapi_fapi2mac_api.h
1 /******************************************************************************
2 *
3 *   Copyright (c) 2019 Intel.
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 /**
20  * @file This file defines all the functions used to send APIs
21  * from FAPI to MAC
22  *
23  **/
24
25 #ifndef NR5G_FAPI_FAPI2MAC_API_H
26 #define NR5G_FAPI_FAPI2MAC_API_H
27
28 #include "fapi_interface.h"
29
30 typedef struct _nr5g_fapi_fapi2mac_queue {
31     p_fapi_api_queue_elem_t p_send_list_head;   // list head to, send to MAC
32     p_fapi_api_queue_elem_t p_send_list_tail;   // list tail to, send to MAC
33 } nr5g_fapi_fapi2mac_queue_t, *p_nr5g_fapi_fapi2mac_queue_t;
34
35 // Function definitions
36 // -----------------------------------------------------------------------------
37 p_fapi_api_queue_elem_t nr5g_fapi_fapi2mac_create_api_list_elem(
38     uint32_t msg_type,
39     uint16_t num_message_in_block,
40     uint32_t align_offset);
41
42 void nr5g_fapi_fapi2mac_send_api_list(
43     );
44
45 void nr5g_fapi_fapi2mac_add_api_to_list(
46     uint8_t phy_id,
47     p_fapi_api_queue_elem_t p_list_elem);
48
49 #endif