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
Michael Black
OpenXG-RAN
Commits
03f752e1
Commit
03f752e1
authored
Feb 24, 2023
by
Roberto Louro Magueta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 2-layers UL channel estimation for pusch_dmrs_type2
parent
fda5c4ae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
60 deletions
+22
-60
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+12
-60
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
+2
-0
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
+1
-0
openair1/PHY/TOOLS/tools_defs.h
openair1/PHY/TOOLS/tools_defs.h
+7
-0
No files found.
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
View file @
03f752e1
...
...
@@ -249,69 +249,21 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
}
#endif
}
else
if
(
pusch_pdu
->
dmrs_config_type
==
pusch_dmrs_type2
&&
chest_freq
==
0
)
{
//pusch_dmrs_type2 |p_r,p_l,d,d,d,d,p_r,p_l,d,d,d,d|
LOG_D
(
PHY
,
"PUSCH estimation DMRS type 2, Freq-domain interpolation"
);
c16_t
*
pil
=
pilot
;
int
re_offset
=
k0
;
// Treat first DMRS specially (left edge)
*
ul_ch
=
c16mulShift
(
*
pil
,
rxdataF
[
soffset
+
nushift
+
re_offset
],
15
);
pil
++
;
ul_ch
++
;
re_offset
=
(
re_offset
+
1
)
%
symbolSize
;
ch_offset
++
;
// TO verify: used after the loop, likely a piece of code is missing for ch_r
c16_t
ch_r
;
for
(
int
re_cnt
=
1
;
re_cnt
<
(
nb_rb_pusch
*
NR_NB_SC_PER_RB
)
-
5
;
re_cnt
+=
6
)
{
c16_t
ch_l
=
c16mulShift
(
*
pil
,
rxdataF
[
soffset
+
nushift
+
re_offset
],
15
);
*
ul_ch
=
ch_l
;
}
else
if
(
pusch_pdu
->
dmrs_config_type
==
pusch_dmrs_type2
&&
chest_freq
==
0
)
{
// pusch_dmrs_type2 |p_r,p_l,d,d,d,d,p_r,p_l,d,d,d,d|
LOG_D
(
PHY
,
"PUSCH estimation DMRS type 2, Freq-domain interpolation
\n
"
);
c16_t
*
pil
=
pilot
;
c16_t
*
rx
=
&
rxdataF
[
soffset
+
nushift
];
for
(
int
n
=
0
;
n
<
nb_rb_pusch
*
NR_NB_SC_PER_RB
;
n
+=
6
)
{
c16_t
ch0
=
c16mulShift
(
*
pil
,
rx
[(
k0
+
n
)
%
symbolSize
],
15
);
pil
++
;
ul_ch
++
;
ch_offset
++
;
multadd_real_four_symbols_vector_complex_scalar
(
filt8_ml2
,
&
ch_l
,
ul_ch
);
*
max_ch
=
max
(
*
max_ch
,
max
(
abs
(
ch_l
.
r
),
abs
(
ch_l
.
i
)));
re_offset
=
(
re_offset
+
5
)
%
symbolSize
;
ch_r
=
c16mulShift
(
*
pil
,
rxdataF
[
soffset
+
nushift
+
re_offset
],
15
);
multadd_real_four_symbols_vector_complex_scalar
(
filt8_mr2
,
&
ch_r
,
ul_ch
);
*
max_ch
=
max
(
*
max_ch
,
max
(
abs
(
ch_r
.
r
),
abs
(
ch_r
.
i
)));
//for (int re_idx = 0; re_idx < 8; re_idx += 2)
//printf("ul_ch = %d + j*%d\n", ul_ch[re_idx], ul_ch[re_idx+1]);
ul_ch
+=
4
;
ch_offset
+=
4
;
*
ul_ch
=
ch_r
;
c16_t
ch1
=
c16mulShift
(
*
pil
,
rx
[(
k0
+
n
+
1
)
%
symbolSize
],
15
);
pil
++
;
ul_ch
++
;
ch_offset
++
;
re_offset
=
(
re_offset
+
1
)
%
symbolSize
;
c16_t
ch
=
c16addShift
(
ch0
,
ch1
,
1
);
*
max_ch
=
max
(
*
max_ch
,
max
(
abs
(
ch
.
r
),
abs
(
ch
.
i
)));
multadd_real_four_symbols_vector_complex_scalar
(
filt8_rep4
,
&
ch
,
&
ul_ch
[
n
]);
ul_ch
[
n
+
4
]
=
ch
;
ul_ch
[
n
+
5
]
=
ch
;
}
// Treat last pilot specially (right edge)
c16_t
ch_l
=
c16mulShift
(
*
pil
,
rxdataF
[
soffset
+
nushift
+
re_offset
],
15
);
*
ul_ch
=
ch_l
;
ul_ch
++
;
ch_offset
++
;
multadd_real_four_symbols_vector_complex_scalar
(
filt8_rr1
,
&
ch_l
,
ul_ch
);
multadd_real_four_symbols_vector_complex_scalar
(
filt8_rr2
,
&
ch_r
,
ul_ch
);
__m128i
*
ul_ch_128
=
(
__m128i
*
)
&
ul_ch_estimates
[
p
*
gNB
->
frame_parms
.
nb_antennas_rx
+
aarx
][
ch_offset
];
ul_ch_128
[
0
]
=
_mm_slli_epi16
(
ul_ch_128
[
0
],
2
);
}
else
if
(
pusch_pdu
->
dmrs_config_type
==
pusch_dmrs_type1
)
{
// this is case without frequency-domain linear interpolation, just take average of LS channel estimates of 6 DMRS REs and use a common value for the whole PRB
...
...
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
View file @
03f752e1
...
...
@@ -342,3 +342,5 @@ short filt16_ul_middle[16] = {2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048,
short
filt16_ul_last
[
16
]
=
{
4096
,
4096
,
4096
,
4096
,
8192
,
8192
,
8192
,
8192
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
short
filt8_rep4
[
8
]
=
{
16384
,
16384
,
16384
,
16384
,
0
,
0
,
0
,
0
};
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
View file @
03f752e1
...
...
@@ -224,4 +224,5 @@ extern short filt16_ul_p0[16];
extern
short
filt16_ul_p1p2
[
16
];
extern
short
filt16_ul_middle
[
16
];
extern
short
filt16_ul_last
[
16
];
extern
short
filt8_rep4
[
8
];
#endif
openair1/PHY/TOOLS/tools_defs.h
View file @
03f752e1
...
...
@@ -97,6 +97,13 @@ extern "C" {
#define squaredMod(a) ((a).r*(a).r + (a).i*(a).i)
#define csum(res, i1, i2) (res).r = (i1).r + (i2).r ; (res).i = (i1).i + (i2).i
__attribute__
((
always_inline
))
inline
c16_t
c16addShift
(
const
c16_t
a
,
const
c16_t
b
,
const
int
Shift
)
{
return
(
c16_t
)
{
.
r
=
(
int16_t
)((
a
.
r
+
b
.
r
)
>>
Shift
),
.
i
=
(
int16_t
)((
a
.
i
+
b
.
i
)
>>
Shift
)
};
}
__attribute__
((
always_inline
))
inline
c16_t
c16mulShift
(
const
c16_t
a
,
const
c16_t
b
,
const
int
Shift
)
{
return
(
c16_t
)
{
.
r
=
(
int16_t
)((
a
.
r
*
b
.
r
-
a
.
i
*
b
.
i
)
>>
Shift
),
...
...
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