Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG UE
Commits
9f8164b4
Commit
9f8164b4
authored
Jul 26, 2018
by
Calvin HSU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UE: Add Type0-PDCCH common search space & coreset calculation.
parent
6a56e185
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
177 additions
and
77 deletions
+177
-77
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
+16
-3
openair2/LAYER2/NR_MAC_UE/mac_defs.h
openair2/LAYER2/NR_MAC_UE/mac_defs.h
+6
-5
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+155
-69
No files found.
nfapi/open-nFAPI/nfapi/public_inc/fapi_nr_ue_interface.h
View file @
9f8164b4
...
...
@@ -144,14 +144,27 @@ typedef struct {
uint32_t
sr
;
}
fapi_nr_uci_pdu_rel15_t
;
typedef
enum
{
CCE_REG_MAPPING_TYPE_INTERLEAVED
,
CCE_REG_MAPPING_TYPE_NON_INTERLEAVED
,
}
coreset_cce_reg_mapping_type_t
;
typedef
enum
{
PRECODER_GRANULARITY_SAME_AS_REG_BUNDLE
,
PRECODER_GRANULARITY_ALL_CONTIGUOUS_RBS
}
coreset_precoder_granularity_t
;
typedef
struct
{
uint32_t
frequency_domain_resource
;
/// frequency_domain_resource;
uint32_t
rb_start
;
uint32_t
rb_end
;
uint8_t
duration
;
uint8
_t
cce_reg_mapping_type
;
// interleaved or noninterleaved
coreset_cce_reg_mapping_type
_t
cce_reg_mapping_type
;
// interleaved or noninterleaved
uint8_t
cce_reg_interleaved_reg_bundle_size
;
// valid if CCE to REG mapping type is interleaved type
uint8_t
cce_reg_interleaved_interleaver_size
;
// valid if CCE to REG mapping type is interleaved type
uint8_t
cce_reg_interleaved_shift_index
;
// valid if CCE to REG mapping type is interleaved type
uint8
_t
precoder_granularity
;
coreset_precoder_granularity
_t
precoder_granularity
;
uint8_t
tci_state_pdcch
;
uint8_t
tci_present_in_dci
;
...
...
openair2/LAYER2/NR_MAC_UE/mac_defs.h
View file @
9f8164b4
...
...
@@ -72,11 +72,12 @@ typedef struct {
NR_MIB_t
*
mib
;
/// Type0-PDCCH seach space coreset
uint32_t
num_rbs
;
uint32_t
num_symbols
;
uint32_t
rb_offset
;
fapi_nr_search_space_t
type0_pdcch_ss
;
uint32_t
type0_pdcch_ss_mux_pattern
;
float
type0_pdcch_ss_big_o
;
uint32_t
type0_pdcch_ss_number_of_search_space_per_slot
;
float
type0_pdcch_ss_big_m
;
uint32_t
type0_pdcch_ss_first_symbol_index
;
/// Type0-PDCCH seach space
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
9f8164b4
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment