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
canghaiwuhen
OpenXG-RAN
Commits
d153208f
Commit
d153208f
authored
Mar 03, 2016
by
Xenofon Foukas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added p0_PUCCH support in the agent
parent
a576127c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
1 deletion
+55
-1
openair2/ENB_APP/MESSAGES/V2/stats_common.proto
openair2/ENB_APP/MESSAGES/V2/stats_common.proto
+5
-1
openair2/ENB_APP/enb_agent_common.c
openair2/ENB_APP/enb_agent_common.c
+20
-0
openair2/ENB_APP/enb_agent_common.h
openair2/ENB_APP/enb_agent_common.h
+4
-0
openair2/ENB_APP/enb_agent_mac.c
openair2/ENB_APP/enb_agent_mac.c
+26
-0
No files found.
openair2/ENB_APP/MESSAGES/V2/stats_common.proto
View file @
d153208f
...
...
@@ -154,15 +154,19 @@ message prp_ul_cqi {
optional
prp_ul_cqi_type
type
=
1
;
repeated
uint32
sinr
=
2
;
optional
uint32
serv_cell_index
=
3
;
optional
int32
p0_pucch_dbm
=
4
;
}
// Full UL CQI report for a specific UE
message
prp_ul_cqi_report
{
optional
uint32
sfn_sn
=
1
;
repeated
prp_ul_cqi
cqi_meas
=
2
;
repeated
prp_pucch_dbm
pucch_dbm
=
3
;
}
message
prp_pucch_dbm
{
optional
int32
p0_pucch_dbm
=
1
;
optional
uint32
serv_cell_index
=
2
;
}
//
// Cell related statistics
...
...
openair2/ENB_APP/enb_agent_common.c
View file @
d153208f
...
...
@@ -647,6 +647,26 @@ int get_harq(const mid_t mod_id, const uint8_t CC_id, const mid_t ue_id, const i
return
0
;
}
int
get_p0_pucch_dbm
(
mid_t
mod_id
,
mid_t
ue_id
,
int
CC_id
)
{
LTE_eNB_UE_stats
*
eNB_UE_stats
=
NULL
;
uint32_t
rnti
=
get_ue_crnti
(
mod_id
,
ue_id
);
eNB_UE_stats
=
mac_xface
->
get_eNB_UE_stats
(
mod_id
,
CC_id
,
rnti
);
if
(
eNB_UE_stats
->
Po_PUCCH_update
==
1
)
{
return
eNB_UE_stats
->
Po_PUCCH_dBm
;
}
else
return
-
1
;
}
int
get_p0_nominal_pucch
(
mid_t
mod_id
,
int
CC_id
)
{
int32_t
pucch_rx_received
=
mac_xface
->
get_target_pucch_rx_power
(
mod_id
,
CC_id
);
return
pucch_rx_received
;
}
/*
* ************************************
...
...
openair2/ENB_APP/enb_agent_common.h
View file @
d153208f
...
...
@@ -210,6 +210,10 @@ int get_tpc(mid_t mod_id, mid_t ue_id);
int
get_harq
(
const
mid_t
mod_id
,
const
uint8_t
CC_id
,
const
mid_t
ue_id
,
const
int
frame
,
const
uint8_t
subframe
,
int
*
id
,
int
*
status
);
int
get_p0_pucch_dbm
(
mid_t
mod_id
,
mid_t
ue_id
,
int
CC_id
);
int
get_p0_nominal_pucch
(
mid_t
mod_id
,
int
CC_id
);
/*
* ************************************
* Get Messages for UE Configuration Reply
...
...
openair2/ENB_APP/enb_agent_mac.c
View file @
d153208f
...
...
@@ -657,8 +657,27 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
//TODO: Set the servCellIndex for this report
ul_report
[
j
]
->
serv_cell_index
=
0
;
ul_report
[
j
]
->
has_serv_cell_index
=
1
;
/*if(get_p0_pucch_dbm(enb_id,i) != -1){
ul_report[j]->p0_pucch_dbm = get_p0_pucch_dbm(enb_id,i);
ul_report[j]->has_p0_pucch_dbm = 1;
}*/
//Set the list of UL reports of this UE to the full UL report
full_ul_report
->
cqi_meas
=
ul_report
;
full_ul_report
->
n_pucch_dbm
=
MAX_NUM_CCs
;
full_ul_report
->
pucch_dbm
=
malloc
(
sizeof
(
Protocol__PrpPucchDbm
*
)
*
full_ul_report
->
n_pucch_dbm
);
for
(
j
=
0
;
j
<
MAX_NUM_CCs
;
j
++
)
{
full_ul_report
->
pucch_dbm
[
j
]
=
malloc
(
sizeof
(
Protocol__PrpPucchDbm
));
protocol__prp_pucch_dbm__init
(
full_ul_report
->
pucch_dbm
[
j
]);
full_ul_report
->
pucch_dbm
[
j
]
->
has_serv_cell_index
=
1
;
full_ul_report
->
pucch_dbm
[
j
]
->
serv_cell_index
=
j
;
if
(
get_p0_pucch_dbm
(
enb_id
,
i
,
j
)
!=
-
1
){
full_ul_report
->
pucch_dbm
[
j
]
->
p0_pucch_dbm
=
get_p0_pucch_dbm
(
enb_id
,
i
,
j
);
full_ul_report
->
pucch_dbm
[
j
]
->
has_p0_pucch_dbm
=
1
;
}
}
//Add full UL CQI report to the UE report
ue_report
[
i
]
->
ul_cqi_report
=
full_ul_report
;
}
...
...
@@ -701,6 +720,9 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
// Thermal noise power in dbm
ni_report
->
tnp
=
0
;
ni_report
->
has_tnp
=
1
;
ni_report
->
p0_nominal_pucch
=
get_p0_nominal_pucch
(
enb_id
,
0
);
ni_report
->
has_p0_nominal_pucch
=
1
;
cell_report
[
i
]
->
noise_inter_report
=
ni_report
;
}
}
...
...
@@ -822,6 +844,10 @@ int enb_agent_mac_destroy_stats_reply(Protocol__ProgranMessage *msg) {
}
free
(
ul_report
->
cqi_meas
);
}
for
(
j
=
0
;
j
<
ul_report
->
n_pucch_dbm
;
j
++
)
{
free
(
ul_report
->
pucch_dbm
[
j
]);
}
free
(
ul_report
->
pucch_dbm
);
free
(
reply
->
ue_report
[
i
]);
}
free
(
reply
->
ue_report
);
...
...
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