blob: e0bdb878a414808db81052dfa385a170b5ed47b4 [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001#ifndef _IDC_NL1TX_STR_H
2#define _IDC_NL1TX_STR_H
3
4#include "kal_general_types.h"
5#include "kal_public_defs.h"
6#include "global_type.h"
7#include "abs_time.h"
8
9#include "idc_nr_def.h"
10#include "idc_nl1tx_enum.h"
11
12#include "nl1_comm_internal_inter_core_public.h"
13
14typedef struct _nl1tx_idc_tdm_cell_list_struct
15{
16 NL1_SIM_IDX_E sim_index;
17 kal_uint8 ccIndex[IDC_NR_MAX_UL_CC_NUM];
18 kal_uint32 duration[IDC_NR_MAX_UL_CC_NUM];
19 kal_uint32 leadTime[IDC_NR_MAX_UL_CC_NUM];
20 ABS_TICK_TIME startTime[IDC_NR_MAX_UL_CC_NUM];
21}nl1tx_idc_tdm_cell_list_struct;
22
23typedef struct _idc_nl1tx_max_pwr_ind_struct
24{
25 LOCAL_PARA_HDR
26
27 NL1_SIM_IDX_E sim_index;
28 kal_int16 maxTxPwr[IDC_NR_MAX_UL_BAND_SUPPORT_NUM];
29}idc_nl1tx_max_pwr_ind_struct;
30
31typedef struct _nl1tx_idc_tx_status_struct
32{
33 kal_uint8 enableBmp;
34 kal_uint32 TxFrcTime[IDC_NR_CC_NUM];
35 kal_int8 TxPwrState[IDC_NR_CC_NUM];
36}nl1tx_idc_tx_status_struct;
37
38typedef struct _nl1tx_idc_protect_ntf_struct
39{
40 LOCAL_PARA_HDR
41
42 kal_uint8 ccIndex;
43 nl1tx_idc_protected_action_enum idc_action;
44 nl1tx_idc_protected_type_enum protected_type;
45}nl1tx_idc_protect_ntf_struct;
46
47#endif