Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
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
wangjie
OpenXG-RAN
Commits
c75c626b
Commit
c75c626b
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
d2039b4c
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 @
c75c626b
...
@@ -144,14 +144,27 @@ typedef struct {
...
@@ -144,14 +144,27 @@ typedef struct {
uint32_t
sr
;
uint32_t
sr
;
}
fapi_nr_uci_pdu_rel15_t
;
}
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
{
typedef
struct
{
uint32_t
frequency_domain_resource
;
/// frequency_domain_resource;
uint32_t
rb_start
;
uint32_t
rb_end
;
uint8_t
duration
;
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_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_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
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_state_pdcch
;
uint8_t
tci_present_in_dci
;
uint8_t
tci_present_in_dci
;
...
...
openair2/LAYER2/NR_MAC_UE/mac_defs.h
View file @
c75c626b
...
@@ -72,11 +72,12 @@ typedef struct {
...
@@ -72,11 +72,12 @@ typedef struct {
NR_MIB_t
*
mib
;
NR_MIB_t
*
mib
;
/// Type0-PDCCH seach space coreset
/// Type0-PDCCH seach space coreset
uint32_t
num_rbs
;
fapi_nr_search_space_t
type0_pdcch_ss
;
uint32_t
num_symbols
;
uint32_t
type0_pdcch_ss_mux_pattern
;
uint32_t
rb_offset
;
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
/// Type0-PDCCH seach space
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
c75c626b
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