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
d8c97ec7
Commit
d8c97ec7
authored
Nov 28, 2022
by
Roberto Louro Magueta
Committed by
laurent
Feb 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DL channel estimation improvements
parent
fda5c4ae
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
79 deletions
+51
-79
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
+21
-0
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
+11
-0
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
+19
-79
No files found.
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.c
View file @
d8c97ec7
...
@@ -342,3 +342,24 @@ short filt16_ul_middle[16] = {2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048,
...
@@ -342,3 +342,24 @@ 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
,
short
filt16_ul_last
[
16
]
=
{
4096
,
4096
,
4096
,
4096
,
8192
,
8192
,
8192
,
8192
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
// DL
// DMRS_Type1
short
filt16_dl_first
[
16
]
=
{
12228
,
12228
,
12228
,
12228
,
8192
,
8192
,
8192
,
8192
,
4096
,
4096
,
4096
,
4096
,
0
,
0
,
0
,
0
};
short
filt16_dl_middle
[
16
]
=
{
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
,
2048
};
short
filt16_dl_last
[
16
]
=
{
4096
,
4096
,
4096
,
4096
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
// DMRS_Type2
short
filt16_dl_first_type2
[
16
]
=
{
16384
,
16384
,
16384
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
0
,
0
,
0
,
0
,
0
,
0
};
short
filt16_dl_middle_type2
[
16
]
=
{
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
0
,
0
,
0
,
0
};
short
filt16_dl_last_type2
[
16
]
=
{
8192
,
8192
,
8192
,
8192
,
8192
,
8192
,
16384
,
16384
,
16384
,
0
,
0
,
0
,
0
,
0
,
0
,
0
};
openair1/PHY/NR_UE_ESTIMATION/filt16a_32.h
View file @
d8c97ec7
...
@@ -224,4 +224,15 @@ extern short filt16_ul_p0[16];
...
@@ -224,4 +224,15 @@ extern short filt16_ul_p0[16];
extern
short
filt16_ul_p1p2
[
16
];
extern
short
filt16_ul_p1p2
[
16
];
extern
short
filt16_ul_middle
[
16
];
extern
short
filt16_ul_middle
[
16
];
extern
short
filt16_ul_last
[
16
];
extern
short
filt16_ul_last
[
16
];
/*DL*/
// DL DMRS_Type1
extern
short
filt16_dl_first
[
16
];
extern
short
filt16_dl_middle
[
16
];
extern
short
filt16_dl_last
[
16
];
// DL DMRS_Type2
extern
short
filt16_dl_first_type2
[
16
];
extern
short
filt16_dl_middle_type2
[
16
];
extern
short
filt16_dl_last_type2
[
16
];
#endif
#endif
openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c
View file @
d8c97ec7
...
@@ -1252,7 +1252,7 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1252,7 +1252,7 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
unsigned
short
k
;
unsigned
short
k
;
unsigned
int
pilot_cnt
;
unsigned
int
pilot_cnt
;
int16_t
ch_l
[
2
],
ch_r
[
2
],
ch
[
2
],
*
pil
,
*
rxF
,
*
dl_ch
;
int16_t
ch_l
[
2
],
ch_r
[
2
],
ch
[
2
],
*
pil
,
*
rxF
,
*
dl_ch
;
int16_t
*
f
l
=
NULL
,
*
fm
=
NULL
,
*
fr
=
NULL
,
*
fml
=
NULL
,
*
fmr
=
NULL
,
*
fmm
=
NULL
,
*
fdcl
=
NULL
,
*
fdcr
=
NULL
,
*
fdclh
=
NULL
,
*
fdcrh
=
NULL
,
*
frl
=
NULL
,
*
frr
=
NULL
;
int16_t
*
f
dcl
=
NULL
,
*
fdcr
=
NULL
,
*
fdclh
=
NULL
,
*
fdcrh
=
NULL
;
int
ch_offset
,
symbol_offset
;
int
ch_offset
,
symbol_offset
;
uint8_t
nushift
;
uint8_t
nushift
;
...
@@ -1296,33 +1296,17 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1296,33 +1296,17 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
switch
(
delta
)
{
switch
(
delta
)
{
case
0
:
//port 0,1
case
0
:
//port 0,1
fl
=
filt8_l0
;
//left interpolation Filter for DMRS config. 1
fdcl
=
filt8_dcl0
;
//left DC interpolation Filter (even RB)
fm
=
filt8_m0
;
//left middle interpolation Filter
fdcr
=
filt8_dcr0
;
//right DC interpolation Filter (even RB)
fr
=
filt8_r0
;
//right interpolation Filter
fdclh
=
filt8_dcl0_h
;
//left DC interpolation Filter (odd RB)
fmm
=
filt8_mm0
;;
//middle middle interpolation Filter
fdcrh
=
filt8_dcr0_h
;
//right DC interpolation Filter (odd RB)
fml
=
filt8_m0
;
//left middle interpolation Filter
fmr
=
filt8_mr0
;
//middle right interpolation Filter
fdcl
=
filt8_dcl0
;
//left DC interpolation Filter (even RB)
fdcr
=
filt8_dcr0
;
//right DC interpolation Filter (even RB)
fdclh
=
filt8_dcl0_h
;
//left DC interpolation Filter (odd RB)
fdcrh
=
filt8_dcr0_h
;
//right DC interpolation Filter (odd RB)
frl
=
NULL
;
frr
=
NULL
;
break
;
break
;
case
1
:
//port2,3
case
1
:
//port2,3
fl
=
filt8_l1
;
fm
=
filt8_m1
;
fr
=
filt8_r1
;
fmm
=
filt8_mm1
;
fml
=
filt8_ml1
;
fmr
=
filt8_m1
;
fdcl
=
filt8_dcl1
;
fdcl
=
filt8_dcl1
;
fdcr
=
filt8_dcr1
;
fdcr
=
filt8_dcr1
;
fdclh
=
filt8_dcl1_h
;
fdclh
=
filt8_dcl1_h
;
fdcrh
=
filt8_dcr1_h
;
fdcrh
=
filt8_dcr1_h
;
frl
=
NULL
;
frr
=
NULL
;
break
;
break
;
default:
default:
...
@@ -1335,14 +1319,6 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1335,14 +1319,6 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
if
(
p
<
6
)
ue
->
frame_parms
.
nushift
=
nushift
;
if
(
p
<
6
)
ue
->
frame_parms
.
nushift
=
nushift
;
switch
(
delta
)
{
switch
(
delta
)
{
case
0
:
//port 0,1
case
0
:
//port 0,1
fl
=
filt8_l2
;
//left interpolation Filter should be fml
fr
=
filt8_r2
;
//right interpolation Filter should be fmr
fm
=
filt8_l2
;
fmm
=
filt8_r2
;
fml
=
filt8_ml2
;
fmr
=
filt8_mr2
;
frl
=
filt8_rl2
;
frr
=
filt8_rm2
;
fdcl
=
filt8_dcl1
;
fdcl
=
filt8_dcl1
;
fdcr
=
filt8_dcr1
;
fdcr
=
filt8_dcr1
;
fdclh
=
filt8_dcl1_h
;
fdclh
=
filt8_dcl1_h
;
...
@@ -1350,14 +1326,6 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1350,14 +1326,6 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
break
;
break
;
case
2
:
//port2,3
case
2
:
//port2,3
fl
=
filt8_l3
;
fm
=
filt8_m2
;
fr
=
filt8_r3
;
fmm
=
filt8_mm2
;
fml
=
filt8_l2
;
fmr
=
filt8_r2
;
frl
=
filt8_rl3
;
frr
=
filt8_rr3
;
fdcl
=
NULL
;
fdcl
=
NULL
;
fdcr
=
NULL
;
fdcr
=
NULL
;
fdclh
=
NULL
;
fdclh
=
NULL
;
...
@@ -1409,20 +1377,15 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1409,20 +1377,15 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
printf
(
"pilot %3u: pil -> (%6d,%6d), rxF -> (%4d,%4d), ch -> (%4d,%4d)
\n
"
,
pilot_cnt
,
pil
[
0
],
pil
[
1
],
rxF
[
0
],
rxF
[
1
],
ch
[
0
],
ch
[
1
]);
printf
(
"pilot %3u: pil -> (%6d,%6d), rxF -> (%4d,%4d), ch -> (%4d,%4d)
\n
"
,
pilot_cnt
,
pil
[
0
],
pil
[
1
],
rxF
[
0
],
rxF
[
1
],
ch
[
0
],
ch
[
1
]);
#endif
#endif
if
(
pilot_cnt
==
0
)
{
if
(
pilot_cnt
==
0
)
{
// Treat first pilot
multadd_real_vector_complex_scalar
(
fl
,
ch
,
dl_ch
,
8
);
multadd_real_vector_complex_scalar
(
filt16_dl_first
,
ch
,
dl_ch
,
16
);
}
else
if
(
pilot_cnt
==
1
)
{
}
else
if
(
pilot_cnt
==
6
*
nb_rb_pdsch
-
1
)
{
// Treat last pilot
multadd_real_vector_complex_scalar
(
fml
,
ch
,
dl_ch
,
8
);
multadd_real_vector_complex_scalar
(
filt16_dl_last
,
ch
,
dl_ch
,
16
);
}
else
if
(
pilot_cnt
==
6
*
nb_rb_pdsch
-
2
)
{
}
else
{
// Treat middle pilots
multadd_real_vector_complex_scalar
(
fmr
,
ch
,
dl_ch
,
8
);
multadd_real_vector_complex_scalar
(
filt16_dl_middle
,
ch
,
dl_ch
,
16
);
dl_ch
+=
8
;
if
(
pilot_cnt
%
2
==
0
)
{
}
else
if
(
pilot_cnt
==
6
*
nb_rb_pdsch
-
1
)
{
multadd_real_vector_complex_scalar
(
fr
,
ch
,
dl_ch
,
8
);
}
else
if
(
pilot_cnt
%
2
==
0
)
{
multadd_real_vector_complex_scalar
(
fmm
,
ch
,
dl_ch
,
8
);
dl_ch
+=
8
;
dl_ch
+=
8
;
}
else
{
}
multadd_real_vector_complex_scalar
(
fm
,
ch
,
dl_ch
,
8
);
}
}
}
}
...
@@ -1520,39 +1483,16 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
...
@@ -1520,39 +1483,16 @@ int nr_pdsch_channel_estimation(PHY_VARS_NR_UE *ue,
ch
[
0
]
=
(
ch_l
[
0
]
+
ch_r
[
0
])
>>
1
;
ch
[
0
]
=
(
ch_l
[
0
]
+
ch_r
[
0
])
>>
1
;
ch
[
1
]
=
(
ch_l
[
1
]
+
ch_r
[
1
])
>>
1
;
ch
[
1
]
=
(
ch_l
[
1
]
+
ch_r
[
1
])
>>
1
;
if
(
pilot_cnt
==
3
)
{
multadd_real_vector_complex_scalar
(
fr
,
ch
,
dl_ch
,
8
);
dl_ch
+=
12
;
}
else
if
(
pilot_cnt
%
4
==
1
)
{
multadd_real_vector_complex_scalar
(
fmr
,
ch
,
dl_ch
,
8
);
dl_ch
+=
8
;
}
else
if
(
pilot_cnt
>
3
)
{
multadd_real_vector_complex_scalar
(
fmm
,
ch
,
dl_ch
,
8
);
dl_ch
+=
12
;
}
dl_ch
[
0
+
(
nushift
<<
1
)]
=
ch
[
0
];
dl_ch
[
1
+
(
nushift
<<
1
)]
=
ch
[
1
];
dl_ch
[
2
+
(
nushift
<<
1
)]
=
ch
[
0
];
dl_ch
[
3
+
(
nushift
<<
1
)]
=
ch
[
1
];
if
(
pilot_cnt
==
1
)
{
if
(
pilot_cnt
==
1
)
{
multadd_real_vector_complex_scalar
(
fl
,
ch
,
dl_ch
,
8
);
multadd_real_vector_complex_scalar
(
filt16_dl_first_type2
,
ch
,
dl_ch
,
16
);
}
else
if
(
pilot_cnt
%
4
==
1
)
{
dl_ch
+=
6
;
multadd_real_vector_complex_scalar
(
fm
,
ch
,
dl_ch
,
8
);
}
else
if
(
pilot_cnt
==
(
4
*
nb_rb_pdsch
-
1
))
{
}
else
if
(
pilot_cnt
==
(
4
*
nb_rb_pdsch
-
1
))
{
dl_ch
+=
4
;
multadd_real_vector_complex_scalar
(
filt16_dl_last_type2
,
ch
,
dl_ch
,
16
);
// Treat last 2 pilots specially (right edge)
multadd_real_vector_complex_scalar
(
frl
,
dl_ch
-
2
+
(
nushift
<<
1
),
dl_ch
,
8
);
multadd_real_vector_complex_scalar
(
frr
,
dl_ch
-
14
+
(
nushift
<<
1
),
dl_ch
,
8
);
}
else
{
}
else
{
dl_ch
+=
4
;
multadd_real_vector_complex_scalar
(
filt16_dl_middle_type2
,
ch
,
dl_ch
,
16
)
;
multadd_real_vector_complex_scalar
(
fml
,
ch
,
dl_ch
,
8
)
;
dl_ch
+=
12
;
}
}
}
}
pil
+=
2
;
pil
+=
2
;
int
re_offset_add
=
pilot_cnt
%
2
==
0
?
1
:
5
;
int
re_offset_add
=
pilot_cnt
%
2
==
0
?
1
:
5
;
re_offset
=
(
re_offset
+
re_offset_add
)
%
ue
->
frame_parms
.
ofdm_symbol_size
;
re_offset
=
(
re_offset
+
re_offset_add
)
%
ue
->
frame_parms
.
ofdm_symbol_size
;
...
...
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