a4cd10a1fd850d2d354c18f10b44891514f08056
[o-du/phy.git] / fapi_5g / source / include / nr5g_fapi_config_loader.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 consist of FAPI internal functions.
21  *
22  **/
23
24 #ifndef NR5G_FAPI_CONFIG_LOADER_H_
25 #define NR5G_FAPI_CONFIG_LOADER_H_
26
27 #include "nr5g_fapi_std.h"
28 #include "nr5g_fapi_common_types.h"
29 #include "nr5g_fapi_dpdk.h"
30 #include "nr5g_fapi_log.h"
31
32 #define NR5G_FAPI_DEVICE_NAME_LEN   512
33
34 typedef struct _nr5g_fapi_thread_info {
35     pthread_t thread_id;        /* ID returned by pthread_create() */
36     pthread_attr_t thread_attr;
37 } nr5g_fapi_thread_info_t;
38
39 typedef struct _nr5g_fapi_config_worker_cfg {
40     uint8_t core_id;
41     uint8_t thread_priority;
42     uint8_t thread_sched_policy;
43 } nr5g_fapi_config_worker_cfg_t;
44
45 typedef struct _nr5g_fapi_config_wls_cfg {
46     char device_name[NR5G_FAPI_DEVICE_NAME_LEN];
47     uint64_t shmem_size;
48 } nr5g_fapi_config_wls_cfg_t;
49
50 typedef struct _nr5g_fapi_config_log_cfg {
51     nr5g_fapi_log_types_t level;
52 } nr5g_fapi_config_log_cfg_t;
53
54 typedef struct _nr5g_fapi_cfg {
55     char *prgname;
56     nr5g_fapi_config_worker_cfg_t mac2phy_worker;
57     nr5g_fapi_config_worker_cfg_t phy2mac_worker;
58     nr5g_fapi_config_worker_cfg_t urllc_worker;
59     nr5g_fapi_config_wls_cfg_t wls;
60     nr5g_fapi_config_log_cfg_t logger;
61     nr5g_fapi_thread_info_t mac2phy_thread_info;
62     nr5g_fapi_thread_info_t phy2mac_thread_info;
63 } nr5g_fapi_cfg_t, *p_nr5g_fapi_cfg_t;
64
65 p_nr5g_fapi_cfg_t nr5g_fapi_config_loader(
66     char *prgname,
67     const char *cfg_fname);
68
69 #endif                          // NR5G_FAPI_CONFIG_LOADER_H_