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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
9db99b2f
Commit
9db99b2f
authored
Sep 14, 2023
by
Tsung-Yu Chan
Committed by
Tsung Yu Chan
Sep 25, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat / add ptrs module
parent
39e7e091
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
63 deletions
+61
-63
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+7
-14
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
+54
-49
No files found.
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
View file @
9db99b2f
...
...
@@ -486,6 +486,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
* 2) Interpolate PTRS estimated value in TD after all PTRS symbols
* 3) Compensated DMRS based estimated signal with PTRS estimation for slot
*********************************************************************/
// #define DEBUG_UL_PTRS
void
nr_pusch_ptrs_processing
(
PHY_VARS_gNB
*
gNB
,
NR_DL_FRAME_PARMS
*
frame_parms
,
nfapi_nr_pusch_pdu_t
*
rel15_ul
,
...
...
@@ -495,7 +496,6 @@ void nr_pusch_ptrs_processing(PHY_VARS_gNB *gNB,
uint32_t
nb_re_pusch
)
{
NR_gNB_PUSCH
*
pusch_vars
=
&
gNB
->
pusch_vars
[
ulsch_id
];
//#define DEBUG_UL_PTRS 1
int32_t
*
ptrs_re_symbol
=
NULL
;
int8_t
ret
=
0
;
uint8_t
symbInSlot
=
rel15_ul
->
start_symbol_index
+
rel15_ul
->
nr_of_symbols
;
...
...
@@ -573,13 +573,6 @@ void nr_pusch_ptrs_processing(PHY_VARS_gNB *gNB,
}
}
#ifdef DEBUG_UL_PTRS
LOG_M
(
"ptrsEstUl.m"
,
"est"
,
pusch_vars
->
ptrs_phase_per_slot
[
aarx
],
frame_parms
->
symbols_per_slot
,
1
,
1
);
LOG_M
(
"rxdataF_bf_ptrs_comp_ul.m"
,
"bf_ptrs_cmp"
,
&
gNB
->
pusch_vars
[
0
]
->
rxdataF_comp
[
aarx
][
rel15_ul
->
start_symbol_index
*
NR_NB_SC_PER_RB
*
rel15_ul
->
rb_size
],
rel15_ul
->
nr_of_symbols
*
NR_NB_SC_PER_RB
*
rel15_ul
->
rb_size
,
1
,
1
);
#endif
/*------------------------------------------------------------------------------------------------------- */
/* 3) Compensated DMRS based estimated signal with PTRS estimation */
/*--------------------------------------------------------------------------------------------------------*/
...
...
@@ -590,15 +583,15 @@ void nr_pusch_ptrs_processing(PHY_VARS_gNB *gNB,
#ifdef DEBUG_UL_PTRS
printf
(
"[PHY][UL][PTRS]: Rotate Symbol %2d with %d + j* %d
\n
"
,
i
,
phase_per_symbol
[
i
].
r
,
phase_per_symbol
[
i
].
i
);
#endif
rotate_cpx_vector
((
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
aarx
][
(
i
*
rel15_ul
->
rb_size
*
NR_NB_SC_PER_RB
)
],
rotate_cpx_vector
((
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
aarx
][
i
*
nb_re_pusch
],
&
phase_per_symbol
[
i
],
(
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
aarx
][
(
i
*
rel15_ul
->
rb_size
*
NR_NB_SC_PER_RB
)
],
(
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
aarx
][
i
*
nb_re_pusch
],
((
*
nb_rb
)
*
NR_NB_SC_PER_RB
),
15
);
}
// if not DMRS Symbol
}
// symbol loop
}
// last symbol check
}
//
Antenna loop
}
// if not DMRS Symbol
}
// symbol loop
}
// last symbol check
}
//
Antenna loop
}
uint32_t
calc_power
(
const
int16_t
*
x
,
const
uint32_t
size
)
{
...
...
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
View file @
9db99b2f
...
...
@@ -604,7 +604,7 @@ void nr_ulsch_channel_compensation(c16_t *rxFext,
c16_t
*
ul_ch_maga
,
c16_t
*
ul_ch_magb
,
c16_t
*
ul_ch_magc
,
c16_t
*
rxComp
,
int32_t
*
*
rxComp
,
c16_t
*
rho
,
NR_DL_FRAME_PARMS
*
frame_parms
,
uint32_t
symbol
,
...
...
@@ -640,9 +640,9 @@ void nr_ulsch_channel_compensation(c16_t *rxFext,
simde__m256i
conj256
=
simde_mm256_set_epi16
(
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
);
int
length_aligned
=
(
length
%
8
)
?
(
8
-
length
%
8
)
:
0
;
int
rxComp_aligned
=
((
nb_rb
*
12
)
%
8
)
?
(
8
-
(
nb_rb
*
12
)
%
8
)
:
0
;
for
(
int
aatx
=
0
;
aatx
<
nrOfLayers
;
aatx
++
)
{
simde__m256i
*
rxComp_256
=
(
simde__m256i
*
)
&
rxComp
[
aatx
*
(
length
+
length
_aligned
)];
simde__m256i
*
rxComp_256
=
(
simde__m256i
*
)
&
rxComp
[
aatx
*
nb_rx_ant
][
symbol
*
(
nb_rb
*
12
+
rxComp
_aligned
)];
simde__m256i
*
rxF_ch_maga_256
=
(
simde__m256i
*
)
&
ul_ch_maga
[
aatx
*
(
length
+
length_aligned
)];
simde__m256i
*
rxF_ch_magb_256
=
(
simde__m256i
*
)
&
ul_ch_magb
[
aatx
*
(
length
+
length_aligned
)];
simde__m256i
*
rxF_ch_magc_256
=
(
simde__m256i
*
)
&
ul_ch_magc
[
aatx
*
(
length
+
length_aligned
)];
...
...
@@ -1382,13 +1382,14 @@ uint8_t nr_ulsch_mmse_2layers(NR_DL_FRAME_PARMS *frame_parms,
simde__m128i
*
determ_fin_128
=
(
simde__m128i
*
)
&
determ_fin
[
0
];
simde__m128i
*
rxdataF_comp128_0
=
(
simde__m128i
*
)
&
((
int
*
)
rxdataF_comp
)[
0
*
(
length
+
length_aligned
)];
simde__m128i
*
rxdataF_comp128_1
=
(
simde__m128i
*
)
&
((
int
*
)
rxdataF_comp
)[
1
*
(
length
+
length_aligned
)];
simde__m128i
*
after_mf_a_128
=
(
simde__m128i
*
)
af_mf_00
;
simde__m128i
*
after_mf_b_128
=
(
simde__m128i
*
)
af_mf_01
;
simde__m128i
*
after_mf_c_128
=
(
simde__m128i
*
)
af_mf_10
;
simde__m128i
*
after_mf_d_128
=
(
simde__m128i
*
)
af_mf_11
;
int
rxComp_aligned
=
((
nb_rb
*
12
)
%
8
)
?
(
8
-
(
nb_rb
*
12
)
%
8
)
:
0
;
simde__m128i
*
rxdataF_comp128_0
=
(
simde__m128i
*
)
&
rxdataF_comp
[
0
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)];
simde__m128i
*
rxdataF_comp128_1
=
(
simde__m128i
*
)
&
rxdataF_comp
[
n_rx
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)];
if
(
mod_order
>
2
)
{
if
(
mod_order
==
4
)
{
...
...
@@ -1496,7 +1497,7 @@ uint8_t nr_ulsch_mmse_2layers(NR_DL_FRAME_PARMS *frame_parms,
return
(
0
);
}
void
inner_rx
(
PHY_VARS_gNB
*
gNB
,
static
void
inner_rx
(
PHY_VARS_gNB
*
gNB
,
int
ulsch_id
,
int
slot
,
NR_DL_FRAME_PARMS
*
frame_parms
,
...
...
@@ -1539,18 +1540,21 @@ void inner_rx (PHY_VARS_gNB *gNB,
c16_t
rxF_ch_magb
[
nb_layer
][
length
+
length_aligned
]
__attribute__
((
aligned
(
32
)));
c16_t
rxF_ch_magc
[
nb_layer
][
length
+
length_aligned
]
__attribute__
((
aligned
(
32
)));
int
rxComp_aligned
=
((
nb_rb
*
12
)
%
8
)
?
(
8
-
(
nb_rb
*
12
)
%
8
)
:
0
;
memset
(
rho
,
0
,
sizeof
(
c16_t
)
*
nb_layer
*
nb_layer
*
(
length
+
length_aligned
));
memset
(
rxComp
,
0
,
sizeof
(
c16_t
)
*
nb_layer
*
(
length
+
length_aligned
));
memset
(
rxF_ch_maga
,
0
,
sizeof
(
c16_t
)
*
nb_layer
*
(
length
+
length_aligned
));
memset
(
rxF_ch_magb
,
0
,
sizeof
(
c16_t
)
*
nb_layer
*
(
length
+
length_aligned
));
memset
(
rxF_ch_magc
,
0
,
sizeof
(
c16_t
)
*
nb_layer
*
(
length
+
length_aligned
));
for
(
int
i
=
0
;
i
<
nb_layer
;
i
++
)
memset
(
&
pusch_vars
->
rxdataF_comp
[
i
*
nb_rx_ant
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)],
0
,
sizeof
(
int32_t
)
*
(
nb_rb
*
12
+
rxComp_aligned
));
nr_ulsch_channel_compensation
((
c16_t
*
)
rxFext
,
(
c16_t
*
)
chFext
,
(
c16_t
*
)
rxF_ch_maga
,
(
c16_t
*
)
rxF_ch_magb
,
(
c16_t
*
)
rxF_ch_magc
,
(
c16_t
*
)
rxComp
,
pusch_vars
->
rxdataF_comp
,
//
(c16_t*)rxComp,
(
nb_layer
==
1
)
?
NULL
:
(
c16_t
*
)
rho
,
frame_parms
,
symbol
,
...
...
@@ -1563,25 +1567,26 @@ void inner_rx (PHY_VARS_gNB *gNB,
if
(
nb_layer
==
1
&&
rel15_ul
->
transform_precoding
==
transformPrecoder_enabled
&&
rel15_ul
->
qam_mod_order
<=
6
)
{
nr_freq_equalization
(
frame_parms
,
(
int
*
)
rxComp
,
(
int
*
)
&
pusch_vars
->
rxdataF_comp
[
0
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)]
,
(
int
*
)
rxF_ch_maga
,
(
int
*
)
rxF_ch_magb
,
symbol
,
length
,
rel15_ul
->
qam_mod_order
);
nr_idft
((
int32_t
*
)
rxComp
,
length
);
}
// if (rel15_ul->pdu_bit_map & PUSCH_PDU_BITMAP_PUSCH_PTRS) {
// nr_pusch_ptrs_processing(gNB,
// frame_parms,
// rel15_ul,
// ulsch_id,
// slot,
// symbol,
// length);
// // Subtract total PTRS RE's in the symbol from PUSCH RE's
// length -= pusch_vars->ptrs_re_per_slot;
// }
nr_idft
((
int32_t
*
)
&
pusch_vars
->
rxdataF_comp
[
0
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)],
length
);
}
if
(
rel15_ul
->
pdu_bit_map
&
PUSCH_PDU_BITMAP_PUSCH_PTRS
)
{
nr_pusch_ptrs_processing
(
gNB
,
frame_parms
,
rel15_ul
,
ulsch_id
,
slot
,
symbol
,
nb_rb
*
12
+
rxComp_aligned
);
// Subtract total PTRS RE's in the symbol from PUSCH RE's
length
-=
pusch_vars
->
ptrs_re_per_slot
;
pusch_vars
->
ul_valid_re_per_slot
[
symbol
]
-=
pusch_vars
->
ptrs_re_per_slot
;
}
if
(
nb_layer
==
2
)
{
...
...
@@ -1594,8 +1599,8 @@ void inner_rx (PHY_VARS_gNB *gNB,
c16_t
*
ul_ch_mag1
=
rxF_ch_maga
[
1
];
nr_ulsch_compute_ML_llr
(
pusch_vars
,
symbol
,
rxComp
[
0
],
rxComp
[
1
],
(
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
0
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)
],
(
c16_t
*
)
&
pusch_vars
->
rxdataF_comp
[
nb_rx_ant
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)
],
ul_ch_mag0
,
ul_ch_mag1
,
llr_0
,
...
...
@@ -1608,7 +1613,7 @@ void inner_rx (PHY_VARS_gNB *gNB,
else
{
nr_ulsch_mmse_2layers
(
frame_parms
,
(
int
**
)
rxC
omp
,
(
int
32_t
**
)
pusch_vars
->
rxdataF_c
omp
,
(
int
**
)
rxF_ch_maga
,
(
int
**
)
rxF_ch_magb
,
(
int
**
)
rxF_ch_magc
,
...
...
@@ -1624,7 +1629,7 @@ void inner_rx (PHY_VARS_gNB *gNB,
}
if
(
nb_layer
!=
2
||
rel15_ul
->
qam_mod_order
>=
6
)
for
(
int
aatx
=
0
;
aatx
<
nb_layer
;
aatx
++
)
nr_ulsch_compute_llr
((
int32_t
*
)
rxComp
[
aatx
],
nr_ulsch_compute_llr
((
int32_t
*
)
&
pusch_vars
->
rxdataF_comp
[
aatx
*
nb_rx_ant
][
symbol
*
(
nb_rb
*
12
+
rxComp_aligned
)
],
(
int32_t
*
)
rxF_ch_maga
[
aatx
],
(
int32_t
*
)
rxF_ch_magb
[
aatx
],
(
int32_t
*
)
rxF_ch_magc
[
aatx
],
...
...
@@ -1646,7 +1651,6 @@ void nr_pusch_symbol_processing_noprecoding(void *arg)
int
ulsch_id
=
rdata
->
ulsch_id
;
int
slot
=
rdata
->
slot
;
NR_gNB_PUSCH
*
pusch_vars
=
&
gNB
->
pusch_vars
[
ulsch_id
];
simde__m64
*
s
=
(
simde__m64
*
)
rdata
->
s
;
for
(
int
symbol
=
rdata
->
startSymbol
;
symbol
<
rdata
->
startSymbol
+
rdata
->
numSymbols
;
symbol
++
)
{
int
dmrs_symbol_flag
=
(
rel15_ul
->
ul_dmrs_symb_pos
>>
symbol
)
&
0x01
;
...
...
@@ -1684,21 +1688,22 @@ void nr_pusch_symbol_processing_noprecoding(void *arg)
gNB
->
pusch_vars
[
ulsch_id
].
log2_maxh
,
rdata
->
nvar
);
simde__m64
*
llr_ptr_64
;
simde__m64
*
s
=
(
simde__m64
*
)
rdata
->
s
;
int16_t
*
llr_ptr
;
if
(
rel15_ul
->
nrOfLayers
==
1
)
llr_ptr
_64
=
(
simde__m64
*
)
&
rdata
->
llr_layers
[
0
][
pusch_vars
->
llr_offset
[
symbol
]];
llr_ptr
=
&
rdata
->
llr_layers
[
0
][
pusch_vars
->
llr_offset
[
symbol
]];
else
{
// layer de-mapping
int16_t
*
llr_cw
=
&
rdata
->
llr
[
pusch_vars
->
llr_offset
[
symbol
]
*
rel15_ul
->
nrOfLayers
];
llr_ptr
=
&
rdata
->
llr
[
pusch_vars
->
llr_offset
[
symbol
]
*
rel15_ul
->
nrOfLayers
];
for
(
int
i
=
0
;
i
<
(
nb_re_pusch
);
i
++
)
for
(
int
l
=
0
;
l
<
rel15_ul
->
nrOfLayers
;
l
++
)
for
(
int
m
=
0
;
m
<
rel15_ul
->
qam_mod_order
;
m
++
)
llr_cw
[
i
*
rel15_ul
->
nrOfLayers
*
rel15_ul
->
qam_mod_order
+
l
*
rel15_ul
->
qam_mod_order
+
m
]
=
rdata
->
llr_layers
[
l
][
pusch_vars
->
llr_offset
[
symbol
]
+
i
*
rel15_ul
->
qam_mod_order
+
m
];
llr_ptr_64
=
(
simde__m64
*
)
llr_cw
;
llr_ptr
[
i
*
rel15_ul
->
nrOfLayers
*
rel15_ul
->
qam_mod_order
+
l
*
rel15_ul
->
qam_mod_order
+
m
]
=
rdata
->
llr_layers
[
l
][
pusch_vars
->
llr_offset
[
symbol
]
+
i
*
rel15_ul
->
qam_mod_order
+
m
];
}
// unscrambling
simde__m64
*
llr64
=
(
simde__m64
*
)
&
rdata
->
llr
[
pusch_vars
->
llr_offset
[
symbol
]
*
rel15_ul
->
nrOfLayers
];
simde__m64
*
llr_ptr_64
=
(
simde__m64
*
)
llr_ptr
;
simde__m64
*
llr64
=
(
simde__m64
*
)
&
rdata
->
llr
[
pusch_vars
->
llr_offset
[
symbol
]
*
rel15_ul
->
nrOfLayers
];
for
(
int
i
=
0
;
i
<
(
nb_re_pusch
*
rel15_ul
->
qam_mod_order
*
rel15_ul
->
nrOfLayers
)
>>
2
;
i
++
)
llr64
[
i
]
=
simde_mm_mullo_pi16
(
llr_ptr_64
[
i
],
s
[
i
]);
}
...
...
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