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
ZhouShuya
OpenXG-RAN
Commits
5e7d52d2
Commit
5e7d52d2
authored
Mar 17, 2020
by
adk
Committed by
Thomas Schlichter
Apr 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indentation
parent
36bf56d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
73 additions
and
100 deletions
+73
-100
openair1/PHY/NR_REFSIG/ptrs_nr.c
openair1/PHY/NR_REFSIG/ptrs_nr.c
+73
-100
No files found.
openair1/PHY/NR_REFSIG/ptrs_nr.c
View file @
5e7d52d2
...
...
@@ -38,18 +38,18 @@
/***********************************************************************/
//#define max(a,b) (((a) > (b)) ? (a) : (b))
//#define max(a,b) (((a) > (b)) ? (a) : (b))
// TS 38.211 Table 6.4.1.2.2.1-1: The parameter kRE_ref.
// The first 4 colomns are DM-RS Configuration type 1 and the last 4 colomns are DM-RS Configuration type 2.
int16_t
table_6_4_1_2_2_1_1_pusch_ptrs_kRE_ref
[
6
][
8
]
=
{
{
0
,
2
,
6
,
8
,
0
,
1
,
6
,
7
},
{
2
,
4
,
8
,
10
,
1
,
6
,
7
,
0
},
{
1
,
3
,
7
,
9
,
2
,
3
,
8
,
9
},
{
3
,
5
,
9
,
11
,
3
,
8
,
9
,
2
},
{
-
1
,
-
1
,
-
1
,
-
1
,
4
,
5
,
10
,
11
},
{
-
1
,
-
1
,
-
1
,
-
1
,
5
,
10
,
11
,
4
},
{
0
,
2
,
6
,
8
,
0
,
1
,
6
,
7
},
{
2
,
4
,
8
,
10
,
1
,
6
,
7
,
0
},
{
1
,
3
,
7
,
9
,
2
,
3
,
8
,
9
},
{
3
,
5
,
9
,
11
,
3
,
8
,
9
,
2
},
{
-
1
,
-
1
,
-
1
,
-
1
,
4
,
5
,
10
,
11
},
{
-
1
,
-
1
,
-
1
,
-
1
,
5
,
10
,
11
,
4
},
};
...
...
@@ -68,19 +68,15 @@ int16_t table_6_4_1_2_2_1_1_pusch_ptrs_kRE_ref [6][8] = {
*********************************************************************/
int16_t
get_kRE_ref
(
uint8_t
dmrs_antenna_port
,
uint8_t
pusch_dmrs_type
,
uint8_t
resourceElementOffset
)
{
uint8_t
colomn
;
int16_t
k_RE_ref
;
colomn
=
resourceElementOffset
;
if
(
pusch_dmrs_type
==
2
)
colomn
+=
4
;
k_RE_ref
=
table_6_4_1_2_2_1_1_pusch_ptrs_kRE_ref
[
dmrs_antenna_port
][
colomn
];
AssertFatal
(
k_RE_ref
>=
0
,
"invalid k_RE_ref < 0. Check PTRS Configuration
\n
"
);
return
k_RE_ref
;
}
...
...
@@ -98,24 +94,21 @@ int16_t get_kRE_ref(uint8_t dmrs_antenna_port, uint8_t pusch_dmrs_type, uint8_t
*
*********************************************************************/
uint8_t
get_K_ptrs
(
ptrs_UplinkConfig_t
*
ptrs_UplinkConfig
,
uint16_t
N_RB
){
uint16_t
nrb0
,
nrb1
;
uint8_t
get_K_ptrs
(
ptrs_UplinkConfig_t
*
ptrs_UplinkConfig
,
uint16_t
N_RB
)
{
uint16_t
nrb0
,
nrb1
;
nrb0
=
ptrs_UplinkConfig
->
frequencyDensity
.
n_rb0
;
nrb1
=
ptrs_UplinkConfig
->
frequencyDensity
.
n_rb1
;
nrb0
=
ptrs_UplinkConfig
->
frequencyDensity
.
n_rb0
;
nrb1
=
ptrs_UplinkConfig
->
frequencyDensity
.
n_rb1
;
if
(
nrb0
==
0
||
nrb0
==
0
)
return
2
;
if
(
nrb0
==
0
||
nrb0
==
0
)
return
2
;
if
(
N_RB
<
nrb0
){
LOG_I
(
PHY
,
"PUSH PT-RS is not present.
\n
"
);
return
0
;
}
else
if
(
N_RB
>=
nrb0
&&
N_RB
<
nrb1
)
return
2
;
else
return
4
;
if
(
N_RB
<
nrb0
)
{
LOG_I
(
PHY
,
"PUSH PT-RS is not present.
\n
"
);
return
0
;
}
else
if
(
N_RB
>=
nrb0
&&
N_RB
<
nrb1
)
return
2
;
else
return
4
;
}
/*******************************************************************
...
...
@@ -141,10 +134,8 @@ void set_ptrs_symb_idx(uint16_t *ptrs_symbols,
uint8_t
L_ptrs
,
uint8_t
pusch_maxLength
,
uint16_t
ofdm_symbol_size
)
{
uint8_t
i
,
last_symbol
,
is_dmrs_symbol1
,
is_dmrs_symbol2
;
int16_t
l_ref
;
*
ptrs_symbols
=
0
;
i
=
0
;
is_dmrs_symbol1
=
0
;
...
...
@@ -153,7 +144,6 @@ void set_ptrs_symb_idx(uint16_t *ptrs_symbols,
last_symbol
=
start_symbol
+
duration_in_symbols
-
1
;
while
(
(
l_ref
+
i
*
L_ptrs
)
<=
last_symbol
)
{
is_dmrs_symbol1
=
is_dmrs_symbol
(
max
((
l_ref
+
(
i
-
1
)
*
L_ptrs
+
1
),
l_ref
),
0
,
0
,
...
...
@@ -163,7 +153,6 @@ void set_ptrs_symb_idx(uint16_t *ptrs_symbols,
duration_in_symbols
,
dmrs_type
,
ofdm_symbol_size
);
is_dmrs_symbol2
=
is_dmrs_symbol
(
l_ref
+
i
*
L_ptrs
,
0
,
0
,
...
...
@@ -175,16 +164,13 @@ void set_ptrs_symb_idx(uint16_t *ptrs_symbols,
ofdm_symbol_size
);
if
(
is_dmrs_symbol1
+
is_dmrs_symbol2
>
0
)
{
if
(
pusch_maxLength
==
2
)
l_ref
=
l_ref
+
i
*
L_ptrs
+
1
;
else
l_ref
=
l_ref
+
i
*
L_ptrs
;
i
=
1
;
continue
;
i
=
1
;
continue
;
}
*
ptrs_symbols
=
*
ptrs_symbols
|
(
1
<<
(
l_ref
+
i
*
L_ptrs
));
...
...
@@ -206,26 +192,23 @@ void set_ptrs_symb_idx(uint16_t *ptrs_symbols,
*********************************************************************/
uint8_t
get_L_ptrs
(
ptrs_UplinkConfig_t
*
ptrs_UplinkConfig
,
uint8_t
I_mcs
)
{
uint8_t
mcs1
,
mcs2
,
mcs3
;
mcs1
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs1
;
mcs2
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs2
;
mcs3
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs3
;
uint8_t
mcs1
,
mcs2
,
mcs3
;
mcs1
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs1
;
mcs2
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs2
;
mcs3
=
ptrs_UplinkConfig
->
timeDensity
.
ptrs_mcs3
;
if
(
mcs1
==
0
||
mcs2
==
0
||
mcs3
==
0
)
return
1
;
if
(
I_mcs
<
mcs1
){
LOG_I
(
PHY
,
"PUSH PT-RS is not present.
\n
"
);
return
0
;
}
else
if
(
I_mcs
>=
mcs1
&&
I_mcs
<
mcs2
)
return
4
;
else
if
(
I_mcs
>=
mcs2
&&
I_mcs
<
mcs3
)
return
2
;
else
return
1
;
if
(
mcs1
==
0
||
mcs2
==
0
||
mcs3
==
0
)
return
1
;
if
(
I_mcs
<
mcs1
)
{
LOG_I
(
PHY
,
"PUSH PT-RS is not present.
\n
"
);
return
0
;
}
else
if
(
I_mcs
>=
mcs1
&&
I_mcs
<
mcs2
)
return
4
;
else
if
(
I_mcs
>=
mcs2
&&
I_mcs
<
mcs3
)
return
2
;
else
return
1
;
}
/*******************************************************************
...
...
@@ -247,30 +230,25 @@ uint8_t get_L_ptrs(ptrs_UplinkConfig_t *ptrs_UplinkConfig, uint8_t I_mcs) {
*********************************************************************/
uint8_t
is_ptrs_subcarrier
(
uint16_t
k
,
uint8_t
K_ptrs
,
uint16_t
n_rnti
,
uint16_t
N_RB
,
int16_t
k_RE_ref
,
uint16_t
start_sc
,
uint16_t
ofdm_symbol_size
)
{
uint16_t
k_RB_ref
,
i
,
sc
;
i
=
0
;
sc
=
0
;
k_RB_ref
=
0
;
uint16_t
k_RB_ref
,
i
,
sc
;
i
=
0
;
sc
=
0
;
k_RB_ref
=
0
;
if
(
N_RB
%
K_ptrs
==
0
)
k_RB_ref
=
n_rnti
%
K_ptrs
;
else
k_RB_ref
=
n_rnti
%
(
N_RB
%
K_ptrs
);
while
(
k
>
sc
){
sc
=
(
start_sc
+
k_RE_ref
+
(
i
*
K_ptrs
+
k_RB_ref
)
*
NR_NB_SC_PER_RB
)
%
ofdm_symbol_size
;
i
++
;
}
if
(
N_RB
%
K_ptrs
==
0
)
k_RB_ref
=
n_rnti
%
K_ptrs
;
else
k_RB_ref
=
n_rnti
%
(
N_RB
%
K_ptrs
);
if
(
k
==
sc
)
return
1
;
else
return
0
;
while
(
k
>
sc
)
{
sc
=
(
start_sc
+
k_RE_ref
+
(
i
*
K_ptrs
+
k_RB_ref
)
*
NR_NB_SC_PER_RB
)
%
ofdm_symbol_size
;
i
++
;
}
if
(
k
==
sc
)
return
1
;
else
return
0
;
}
/*******************************************************************
...
...
@@ -308,15 +286,11 @@ uint8_t is_ptrs_symbol(uint8_t l,
uint16_t
ofdm_symbol_size
,
pusch_dmrs_type_t
pusch_dmrs_type
,
uint8_t
resourceElementOffset
)
{
uint8_t
is_ptrs_freq
,
is_ptrs_time
;
int16_t
k_RE_ref
;
is_ptrs_freq
=
0
;
is_ptrs_time
=
0
;
k_RE_ref
=
get_kRE_ref
(
dmrs_antenna_port
,
pusch_dmrs_type
,
resourceElementOffset
);
is_ptrs_freq
=
is_ptrs_subcarrier
(
k
,
K_ptrs
,
n_rnti
,
N_RB
,
k_RE_ref
,
start_sc
,
ofdm_symbol_size
);
if
(
is_ptrs_freq
==
0
)
...
...
@@ -329,24 +303,23 @@ uint8_t is_ptrs_symbol(uint8_t l,
return
1
;
else
return
0
;
}
/*
int main(int argc, char const *argv[])
{
dmrs_UplinkConfig_t dmrs_Uplink_Config;
ptrs_UplinkConfig_t ptrs_Uplink_Config;
uint8_t resourceElementOffset;
uint8_t dmrs_antenna_port;
uint8_t L_ptrs, K_ptrs;
int16_t k_RE_ref;
uint16_t N_RB, ptrs_symbols, ofdm_symbol_size, k;
uint8_t duration_in_symbols, I_mcs;
uint8_t start_symbol, l;
uint8_t ptrs_symbol_flag;
uint16_t n_rnti;
dmrs_UplinkConfig_t dmrs_Uplink_Config;
ptrs_UplinkConfig_t ptrs_Uplink_Config;
uint8_t resourceElementOffset;
uint8_t dmrs_antenna_port;
uint8_t L_ptrs, K_ptrs;
int16_t k_RE_ref;
uint16_t N_RB, ptrs_symbols, ofdm_symbol_size, k;
uint8_t duration_in_symbols, I_mcs;
uint8_t start_symbol, l;
uint8_t ptrs_symbol_flag;
uint16_t n_rnti;
dmrs_Uplink_Config.pusch_dmrs_type = pusch_dmrs_type1;
dmrs_Uplink_Config.pusch_dmrs_AdditionalPosition = pusch_dmrs_pos1;
...
...
@@ -362,13 +335,13 @@ int main(int argc, char const *argv[])
n_rnti = 0x1234;
resourceElementOffset = 0;
ptrs_symbols = 0;
dmrs_antenna_port = 0;
N_RB = 50;
duration_in_symbols = 14;
ofdm_symbol_size = 2048;
I_mcs = 9;
start_symbol = 0;
ptrs_symbol_flag = 0;
dmrs_antenna_port = 0;
N_RB = 50;
duration_in_symbols = 14;
ofdm_symbol_size = 2048;
I_mcs = 9;
start_symbol = 0;
ptrs_symbol_flag = 0;
k_RE_ref = get_kRE_ref(dmrs_antenna_port, dmrs_Uplink_Config.pusch_dmrs_type, resourceElementOffset);
...
...
@@ -418,6 +391,6 @@ int main(int argc, char const *argv[])
printf("\n");
return 0;
return 0;
}
*/
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