srsLTE/lib/test/phy/phy_dl_test.c

456 lines
13 KiB
C
Raw Normal View History

2018-07-02 01:20:40 -07:00
/**
*
* \section COPYRIGHT
*
* Copyright 2013-2015 Software Radio Systems Limited
*
* \section LICENSE
*
* This file is part of the srsLTE library.
*
* srsLTE is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* srsLTE is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* A copy of the GNU Affero General Public License can be found in
* the LICENSE file in the top-level directory of this distribution
* and at http://www.gnu.org/licenses/.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "srslte/srslte.h"
2018-07-17 06:31:54 -07:00
#define MAX_DATABUFFER_SIZE (6144 * 16 * 3 / 8)
2018-07-02 01:20:40 -07:00
srslte_cell_t cell = {
.nof_prb = 100,
.nof_ports = 1,
.id = 1,
.cp = SRSLTE_CP_NORM,
.phich_resources = SRSLTE_PHICH_R_1,
.phich_length = SRSLTE_PHICH_NORM
};
2018-07-17 06:31:54 -07:00
uint32_t transmission_mode = 1;
2018-07-02 01:20:40 -07:00
srslte_mimo_type_t mimo_type = SRSLTE_MIMO_TYPE_SINGLE_ANTENNA;
2018-07-17 06:31:54 -07:00
uint32_t cfi = 1;
2018-07-02 01:20:40 -07:00
uint32_t nof_rx_ant = 1;
2018-07-17 06:31:54 -07:00
uint32_t nof_subframes = 100;
2018-07-02 01:20:40 -07:00
uint16_t rnti = 0x1234;
bool print_dci_table;
2018-07-17 06:31:54 -07:00
uint32_t mcs = 28;
2018-07-02 01:20:40 -07:00
void usage(char *prog) {
printf("Usage: %s [cfpndvs]\n", prog);
printf("\t-c cell id [Default %d]\n", cell.id);
printf("\t-f cfi [Default %d]\n", cfi);
printf("\t-p cell.nof_prb [Default %d]\n", cell.nof_prb);
printf("\t-s number of subframes to simulate [Default %d]\n", nof_subframes);
printf("\t-d Print DCI table [Default %s]\n", print_dci_table ? "yes" : "no");
printf("\t-x MIMO Type: single, diversity, cdd, multiplex [Default %s]\n", srslte_mimotype2str(mimo_type));
2018-07-17 06:31:54 -07:00
printf("\t-m mcs [Default %d]\n", mcs);
2018-07-02 01:20:40 -07:00
printf("\t-v [set srslte_verbose to debug, default none]\n");
}
void parse_args(int argc, char **argv) {
int opt;
2018-07-17 06:31:54 -07:00
while ((opt = getopt(argc, argv, "cfpndvsxm")) != -1) {
2018-07-02 01:20:40 -07:00
switch (opt) {
case 'x':
if (srslte_str2mimotype(argv[optind], &mimo_type)) {
fprintf(stderr, "'%s' is not a valid MIMO type\n", argv[optind]);
usage(argv[0]);
exit(SRSLTE_ERROR);
}
if (mimo_type == SRSLTE_MIMO_TYPE_SINGLE_ANTENNA) {
cell.nof_ports = 1;
nof_rx_ant = 1;
2018-07-17 06:31:54 -07:00
transmission_mode = 1;
2018-07-02 01:20:40 -07:00
} else {
cell.nof_ports = 2;
nof_rx_ant = 2;
if (mimo_type == SRSLTE_MIMO_TYPE_TX_DIVERSITY) {
2018-07-17 06:31:54 -07:00
transmission_mode = 2;
} else if (mimo_type == SRSLTE_MIMO_TYPE_CDD) {
transmission_mode = 3;
} else {
transmission_mode = 4;
2018-07-02 01:20:40 -07:00
}
}
break;
case 'f':
cfi = (uint32_t) atoi(argv[optind]);
break;
2018-07-17 06:31:54 -07:00
case 'm':
mcs = (uint32_t) atoi(argv[optind]);
break;
2018-07-02 01:20:40 -07:00
case 'p':
cell.nof_prb = (uint32_t) atoi(argv[optind]);
break;
case 'c':
cell.id = (uint32_t) atoi(argv[optind]);
break;
case 's':
nof_subframes = (uint32_t) atoi(argv[optind]);
break;
case 'd':
print_dci_table = true;
break;
case 'v':
srslte_verbose++;
break;
default:
usage(argv[0]);
exit(-1);
}
}
}
int prbset_num = 1, last_prbset_num = 1;
int prbset_orig = 0;
2018-07-17 06:31:54 -07:00
int work_enb(srslte_enb_dl_t *enb_dl,
srslte_dci_format_t dci_format,
srslte_ra_dl_dci_t *dci,
srslte_ra_dl_grant_t *grant,
srslte_softbuffer_tx_t **softbuffer_tx,
uint32_t sf_idx, uint8_t **data_tx) {
int ret = SRSLTE_ERROR;
srslte_dci_location_t location = {
.ncce = 8,
.L = 3
};
srslte_enb_dl_clear_sf(enb_dl);
srslte_enb_dl_put_base(enb_dl, sf_idx);
if (srslte_enb_dl_put_pdcch_dl(enb_dl,
dci,
dci_format,
location,
rnti,
sf_idx % 10) < 0) {
fprintf(stderr, "Error putting PDCCH\n");
goto quit;
}
if (srslte_enb_dl_put_pdsch(enb_dl,
grant,
softbuffer_tx,
rnti,
(int[SRSLTE_MAX_CODEWORDS]) {dci->rv_idx, dci->rv_idx_1},
sf_idx % 10,
data_tx,
mimo_type) < 0) {
fprintf(stderr, "Error putting PDSCH\n");
goto quit;
}
srslte_enb_dl_gen_signal(enb_dl);
ret = SRSLTE_SUCCESS;
quit:
return ret;
}
2018-07-02 01:20:40 -07:00
unsigned int
reverse(register unsigned int x) {
x = (((x & 0xaaaaaaaa) >> 1) | ((x & 0x55555555) << 1));
x = (((x & 0xcccccccc) >> 2) | ((x & 0x33333333) << 2));
x = (((x & 0xf0f0f0f0) >> 4) | ((x & 0x0f0f0f0f) << 4));
x = (((x & 0xff00ff00) >> 8) | ((x & 0x00ff00ff) << 8));
return ((x >> 16) | (x << 16));
}
uint32_t prbset_to_bitmask() {
uint32_t mask = 0;
int nb = (int) ceilf((float) cell.nof_prb / srslte_ra_type0_P(cell.nof_prb));
for (int i = 0; i < nb; i++) {
if (i >= prbset_orig && i < prbset_orig + prbset_num) {
mask = mask | (0x1 << i);
}
}
return reverse(mask) >> (32 - nb);
}
int main(int argc, char **argv) {
2018-07-17 06:31:54 -07:00
struct timeval t[3] = {};
size_t tx_nof_bits = 0, rx_nof_bits = 0;
srslte_enb_dl_t enb_dl;
srslte_ue_dl_t ue_dl;
2018-07-02 01:20:40 -07:00
srslte_softbuffer_tx_t *softbuffer_tx[SRSLTE_MAX_TB] = {};
srslte_softbuffer_rx_t *softbuffer_rx[SRSLTE_MAX_TB] = {};
uint8_t *data_tx[SRSLTE_MAX_TB] = {};
uint8_t *data_rx[SRSLTE_MAX_TB] = {};
2018-07-17 06:31:54 -07:00
uint32_t count_failures = 0, count_tbs = 0;
size_t pdsch_decode_us = 0;
size_t pdsch_encode_us = 0;
2018-07-02 01:20:40 -07:00
int ret = -1;
parse_args(argc, argv);
cf_t *signal_buffer[SRSLTE_MAX_PORTS] = {NULL};
bzero(&enb_dl, sizeof(enb_dl));
bzero(&ue_dl, sizeof(ue_dl));
2018-07-02 01:20:40 -07:00
/*
* Allocate Memory
*/
for (int i = 0; i < cell.nof_ports; i++) {
signal_buffer[i] = srslte_vec_malloc(sizeof(cf_t) * SRSLTE_SF_LEN_PRB(cell.nof_prb));
if (!signal_buffer[i]) {
fprintf(stderr, "Error allocating buffer\n");
goto quit;
}
}
for (int i = 0; i < SRSLTE_MAX_TB; i++) {
softbuffer_tx[i] = (srslte_softbuffer_tx_t *) calloc(sizeof(srslte_softbuffer_tx_t), 1);
if (!softbuffer_tx[i]) {
fprintf(stderr, "Error allocating softbuffer_tx\n");
goto quit;
}
if (srslte_softbuffer_tx_init(softbuffer_tx[i], cell.nof_prb)) {
fprintf(stderr, "Error initiating softbuffer_tx\n");
goto quit;
}
softbuffer_rx[i] = (srslte_softbuffer_rx_t *) calloc(sizeof(srslte_softbuffer_rx_t), 1);
if (!softbuffer_rx[i]) {
fprintf(stderr, "Error allocating softbuffer_rx\n");
goto quit;
}
if (srslte_softbuffer_rx_init(softbuffer_rx[i], cell.nof_prb)) {
fprintf(stderr, "Error initiating softbuffer_rx\n");
goto quit;
}
2018-07-17 06:31:54 -07:00
data_tx[i] = srslte_vec_malloc(sizeof(uint8_t) * MAX_DATABUFFER_SIZE);
2018-07-02 01:20:40 -07:00
if (!data_tx[i]) {
fprintf(stderr, "Error allocating data tx\n");
goto quit;
}
2018-07-17 06:31:54 -07:00
data_rx[i] = srslte_vec_malloc(sizeof(uint8_t) * MAX_DATABUFFER_SIZE);
2018-07-02 01:20:40 -07:00
if (!data_rx[i]) {
fprintf(stderr, "Error allocating data tx\n");
goto quit;
}
}
/*
* Initialise eNb
*/
if (srslte_enb_dl_init(&enb_dl, signal_buffer, cell.nof_prb)) {
fprintf(stderr, "Error initiating eNb downlink\n");
goto quit;
}
if (srslte_enb_dl_set_cell(&enb_dl, cell)) {
fprintf(stderr, "Error setting eNb DL cell\n");
goto quit;
}
srslte_enb_dl_set_cfi(&enb_dl, cfi);
srslte_enb_dl_set_power_allocation(&enb_dl, 0.0f, 0.0f); /* Default: none */
/*
* Initialise UE
*/
if (srslte_ue_dl_init(&ue_dl, signal_buffer, cell.nof_prb, nof_rx_ant)) {
fprintf(stderr, "Error initiating UE downlink\n");
goto quit;
}
if (srslte_ue_dl_set_cell(&ue_dl, cell)) {
fprintf(stderr, "Error setting UE downlink cell\n");
goto quit;
}
srslte_ue_dl_set_rnti(&ue_dl, rnti);
2018-07-17 06:31:54 -07:00
srslte_chest_dl_average_subframe(&ue_dl.chest, true);
//srslte_chest_dl_set_smooth_filter_gauss(&ue_dl.chest, 4, 1.0f);
2018-07-02 01:20:40 -07:00
/*
* Loop
*/
2018-07-17 06:31:54 -07:00
INFO("--- Starting test ---\n");
2018-07-02 01:20:40 -07:00
for (uint32_t sf_idx = 0; sf_idx < nof_subframes; sf_idx++) {
bool acks[SRSLTE_MAX_TB] = {};
2018-07-17 06:31:54 -07:00
/* Generate random data */
for (int t = 0; t < SRSLTE_MAX_TB; t++) {
for (int i = 0; i < MAX_DATABUFFER_SIZE; i++) {
data_tx[t][i] = (uint8_t) (rand() & 0xff);
}
}
2018-07-02 01:20:40 -07:00
2018-07-17 06:31:54 -07:00
/*
* Run eNodeB
*/
srslte_ra_dl_dci_t dci;
2018-07-02 01:20:40 -07:00
srslte_dci_format_t dci_format = SRSLTE_DCI_FORMAT1A;
srslte_ra_dl_grant_t grant;
bzero(&dci, sizeof(dci));
bzero(&grant, sizeof(grant));
2018-07-02 01:20:40 -07:00
2018-07-17 06:31:54 -07:00
prbset_num = (int) ceilf((float) cell.nof_prb / srslte_ra_type0_P(cell.nof_prb));
last_prbset_num = prbset_num;
2018-07-02 01:20:40 -07:00
/* Pupulate TB Common */
dci.harq_process = 0;
/* Pupulate TB0 */
2018-07-17 06:31:54 -07:00
dci.mcs_idx = mcs;
2018-07-02 01:20:40 -07:00
dci.ndi = 0;
dci.rv_idx = 0;
dci.tb_en[0] = true;
if (mimo_type == SRSLTE_MIMO_TYPE_CDD || mimo_type == SRSLTE_MIMO_TYPE_SPATIAL_MULTIPLEX) {
2018-07-17 06:31:54 -07:00
dci_format = (transmission_mode == 3) ? SRSLTE_DCI_FORMAT2A : SRSLTE_DCI_FORMAT2;
2018-07-02 01:20:40 -07:00
/* Pupulate TB1 */
2018-07-17 06:31:54 -07:00
dci.mcs_idx_1 = mcs;
2018-07-02 01:20:40 -07:00
dci.ndi_1 = 0;
dci.rv_idx_1 = 0;
dci.tb_en[1] = true;
/* Pupulate Allocation */
dci.alloc_type = SRSLTE_RA_ALLOC_TYPE0;
dci.type0_alloc.rbg_bitmask = prbset_to_bitmask();
} else {
dci_format = SRSLTE_DCI_FORMAT1A;
dci.alloc_type = SRSLTE_RA_ALLOC_TYPE2;
dci.type2_alloc.riv = 0;
dci.type2_alloc.L_crb = 4;
dci.type2_alloc.RB_start = 0;
dci.type2_alloc.n_prb1a = 1;
dci.type2_alloc.n_gap = 0;
dci.type2_alloc.mode = 0;
}
dci.dci_is_1a = (dci_format == SRSLTE_DCI_FORMAT1A);
dci.dci_is_1c = (dci_format == SRSLTE_DCI_FORMAT1C);
srslte_ra_dl_dci_to_grant(&dci, cell.nof_prb, rnti, &grant);
2018-07-17 06:31:54 -07:00
INFO("--- Process Uplink ---\n");
2018-07-02 01:20:40 -07:00
2018-07-17 06:31:54 -07:00
gettimeofday(&t[1], NULL);
if (work_enb(&enb_dl, dci_format, &dci, &grant, softbuffer_tx, sf_idx, data_tx)) {
2018-07-02 01:20:40 -07:00
goto quit;
}
2018-07-17 06:31:54 -07:00
gettimeofday(&t[2], NULL);
get_time_interval(t);
pdsch_encode_us += t[0].tv_sec * 1e6 + t[0].tv_usec;
/*
* Run UE
*/
INFO("--- Process Downlink ---\n");
gettimeofday(&t[1], NULL);
int n = srslte_ue_dl_decode(&ue_dl, data_rx, transmission_mode - 1, sf_idx, acks);
2018-07-02 01:20:40 -07:00
if (n < 0) {
fprintf(stderr, "Error decoding PDSCH\n");
goto quit;
}
2018-07-17 06:31:54 -07:00
gettimeofday(&t[2], NULL);
get_time_interval(t);
pdsch_decode_us += t[0].tv_sec * 1e6 + t[0].tv_usec;
2018-07-02 01:20:40 -07:00
for (int i = 0; i < SRSLTE_RA_DL_GRANT_NOF_TB(&grant); i++) {
2018-07-17 06:31:54 -07:00
if (!acks[i] || memcmp(data_tx[i], data_rx[i], grant.mcs[i].tbs / 8) != 0) {
printf("UE Failed decoding tb %d in subframe %d\n", i, sf_idx);
srslte_vec_fprint_hex(stdout, data_tx[i], grant.mcs[i].tbs / 8);
srslte_vec_fprint_hex(stdout, data_rx[i], grant.mcs[i].tbs / 8);
2018-07-02 01:20:40 -07:00
count_failures++;
}
2018-07-17 06:31:54 -07:00
count_tbs++;
2018-07-02 01:20:40 -07:00
}
2018-07-17 06:31:54 -07:00
tx_nof_bits += (enb_dl.pdsch_cfg.grant.tb_en[0] ? enb_dl.pdsch_cfg.grant.mcs[0].tbs : 0);
tx_nof_bits += (enb_dl.pdsch_cfg.grant.tb_en[1] ? enb_dl.pdsch_cfg.grant.mcs[1].tbs : 0);
rx_nof_bits += (acks[0] ? ue_dl.pdsch_cfg.grant.mcs[0].tbs : 0);
rx_nof_bits += (acks[1] ? ue_dl.pdsch_cfg.grant.mcs[1].tbs : 0);
2018-07-02 01:20:40 -07:00
}
2018-07-17 06:31:54 -07:00
printf("Finished! The UE failed decoding %d of %d transport blocks.\n", count_failures, count_tbs);
2018-07-02 01:20:40 -07:00
if (!count_failures) {
ret = SRSLTE_SUCCESS;
}
2019-01-17 03:42:01 -08:00
printf("%zd were transmitted, %zd bits were received.\n", tx_nof_bits, rx_nof_bits);
2018-07-17 06:31:54 -07:00
printf("[Rates in Mbps] Granted Processed\n");
printf(" eNb: %5.1f %5.1f\n",
(float) tx_nof_bits / (float) nof_subframes / 1000.0f,
(float) rx_nof_bits / pdsch_encode_us);
printf(" UE: %5.1f %5.1f\n",
(float) rx_nof_bits / (float) nof_subframes / 1000.0f,
(float) rx_nof_bits / pdsch_decode_us);
printf("BLER: %5.1f%%\n", (float) count_failures / (float) count_tbs * 100.0f);
2018-07-02 01:20:40 -07:00
quit:
srslte_enb_dl_free(&enb_dl);
srslte_ue_dl_free(&ue_dl);
for (
int i = 0;
i < cell.
nof_ports;
i++) {
if (signal_buffer[i]) {
free(signal_buffer[i]);
}
}
for (
int i = 0;
i < SRSLTE_MAX_TB; i++) {
if (softbuffer_tx[i]) {
srslte_softbuffer_tx_free(softbuffer_tx[i]);
free(softbuffer_tx[i]);
}
if (softbuffer_rx[i]) {
srslte_softbuffer_rx_free(softbuffer_rx[i]);
free(softbuffer_rx[i]);
}
if (data_tx[i]) {
free(data_tx[i]);
}
if (data_rx[i]) {
free(data_rx[i]);
}
}
if (ret) {
printf("Error\n");
} else {
printf("Ok\n");
}
srslte_dft_exit();
exit(ret);
}