srsLTE/lib/src/phy/phch/test/phich_file_test.c

296 lines
7.3 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
* Copyright 2013-2019 Software Radio Systems Limited
2014-04-17 03:28:21 -07:00
*
2019-04-26 12:27:38 -07:00
* This file is part of srsLTE.
2014-04-17 03:28:21 -07:00
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 08:05:40 -07:00
* it under the terms of the GNU Affero General Public License as
2014-04-17 03:28:21 -07:00
* 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,
2014-04-17 03:28:21 -07:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
2014-04-17 03:28:21 -07:00
*
2015-05-08 08:05:40 -07:00
* A copy of the GNU Affero General Public License can be found in
2014-04-17 03:28:21 -07:00
* 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 <string.h>
#include <strings.h>
#include <unistd.h>
#include "srslte/srslte.h"
2014-04-17 03:28:21 -07:00
char* input_file_name = NULL;
char* matlab_file_name = NULL;
2015-03-18 05:41:50 -07:00
srslte_cell_t cell = {
2019-04-23 01:53:11 -07:00
50, // cell.nof_prb
2, // cell.nof_ports
150, // cell.id
SRSLTE_CP_NORM, // cyclic prefix
SRSLTE_PHICH_NORM, // PHICH length
SRSLTE_PHICH_R_1, // PHICH resources
SRSLTE_FDD,
};
2014-04-17 03:28:21 -07:00
int flen;
int nof_ctrl_symbols = 1;
int numsubframe = 0;
2014-04-17 03:28:21 -07:00
FILE* fmatlab = NULL;
2014-04-17 03:28:21 -07:00
srslte_filesource_t fsrc;
2019-04-23 01:53:11 -07:00
cf_t * input_buffer, *fft_buffer[SRSLTE_MAX_CODEWORDS];
srslte_phich_t phich;
srslte_regs_t regs;
srslte_ofdm_t fft;
srslte_chest_dl_t chest;
2019-04-23 01:53:11 -07:00
srslte_chest_dl_res_t chest_res;
2014-04-17 03:28:21 -07:00
void usage(char* prog)
{
2014-06-17 02:11:41 -07:00
printf("Usage: %s [vcoe] -i input_file\n", prog);
printf("\t-o output matlab file name [Default Disabled]\n");
printf("\t-c cell.id [Default %d]\n", cell.id);
printf("\t-p cell.nof_ports [Default %d]\n", cell.nof_ports);
printf("\t-n cell.nof_prb [Default %d]\n", cell.nof_prb);
2014-06-17 02:11:41 -07:00
printf("\t-f nof control symbols [Default %d]\n", nof_ctrl_symbols);
printf("\t-g phich ng factor: 1/6, 1/2, 1, 2 [Default 1]\n");
printf("\t-e phich extended length [Default normal]\n");
printf("\t-l extended cyclic prefix [Default normal]\n");
2015-03-18 11:14:24 -07:00
printf("\t-v [set srslte_verbose to debug, default none]\n");
2014-04-17 03:28:21 -07:00
}
void parse_args(int argc, char** argv)
{
2014-06-17 02:11:41 -07:00
int opt;
while ((opt = getopt(argc, argv, "iovcenpfgl")) != -1) {
switch (opt) {
case 'i':
input_file_name = argv[optind];
break;
case 'o':
matlab_file_name = argv[optind];
break;
case 'c':
cell.id = (uint32_t)strtol(argv[optind], NULL, 10);
break;
case 'f':
nof_ctrl_symbols = (int)strtol(argv[optind], NULL, 10);
break;
case 'g':
if (!strcmp(argv[optind], "1/6")) {
cell.phich_resources = SRSLTE_PHICH_R_1_6;
} else if (!strcmp(argv[optind], "1/2")) {
cell.phich_resources = SRSLTE_PHICH_R_1_2;
} else if (!strcmp(argv[optind], "1")) {
cell.phich_resources = SRSLTE_PHICH_R_1;
} else if (!strcmp(argv[optind], "2")) {
cell.phich_resources = SRSLTE_PHICH_R_2;
} else {
ERROR("Invalid phich ng factor %s. Setting to default.\n", argv[optind]);
}
break;
case 'e':
cell.phich_length = SRSLTE_PHICH_EXT;
break;
case 'n':
cell.nof_prb = (uint32_t)strtol(argv[optind], NULL, 10);
break;
case 'p':
cell.nof_ports = (uint32_t)strtol(argv[optind], NULL, 10);
break;
case 'v':
srslte_verbose++;
break;
case 'l':
cell.cp = SRSLTE_CP_EXT;
break;
default:
usage(argv[0]);
exit(-1);
2014-06-17 02:11:41 -07:00
}
}
if (!input_file_name) {
usage(argv[0]);
exit(-1);
}
2014-04-17 03:28:21 -07:00
}
int base_init()
{
2014-06-17 02:11:41 -07:00
2015-03-18 08:05:38 -07:00
if (srslte_filesource_init(&fsrc, input_file_name, SRSLTE_COMPLEX_FLOAT_BIN)) {
2019-04-23 01:53:11 -07:00
ERROR("Error opening file %s\n", input_file_name);
2014-06-17 02:11:41 -07:00
exit(-1);
}
if (matlab_file_name) {
fmatlab = fopen(matlab_file_name, "w");
if (!fmatlab) {
perror("fopen");
return -1;
}
} else {
fmatlab = NULL;
}
2019-04-23 01:53:11 -07:00
flen = SRSLTE_SF_LEN(srslte_symbol_sz(cell.nof_prb));
2014-06-17 02:11:41 -07:00
input_buffer = malloc(flen * sizeof(cf_t));
if (!input_buffer) {
perror("malloc");
exit(-1);
}
2019-04-23 01:53:11 -07:00
fft_buffer[0] = malloc(SRSLTE_NOF_RE(cell) * sizeof(cf_t));
if (!fft_buffer[0]) {
2014-06-17 02:11:41 -07:00
perror("malloc");
return -1;
}
2019-04-23 01:53:11 -07:00
if (srslte_chest_dl_init(&chest, cell.nof_prb, 1)) {
ERROR("Error initializing equalizer\n");
return -1;
2014-06-17 02:11:41 -07:00
}
2019-04-23 01:53:11 -07:00
if (srslte_chest_dl_res_init(&chest_res, cell.nof_prb)) {
ERROR("Error initializing equalizer\n");
return -1;
}
if (srslte_chest_dl_set_cell(&chest, cell)) {
2019-04-23 01:53:11 -07:00
ERROR("Error initializing equalizer\n");
2014-06-17 02:11:41 -07:00
return -1;
}
2019-04-23 01:53:11 -07:00
if (srslte_ofdm_init_(&fft,
cell.cp,
input_buffer,
fft_buffer[0],
srslte_symbol_sz(cell.nof_prb),
cell.nof_prb,
SRSLTE_DFT_FORWARD)) {
ERROR("Error initializing FFT\n");
2014-06-17 02:11:41 -07:00
return -1;
}
2015-03-18 11:14:24 -07:00
if (srslte_regs_init(&regs, cell)) {
2019-04-23 01:53:11 -07:00
ERROR("Error initiating regs\n");
2014-06-17 02:11:41 -07:00
return -1;
}
2017-09-05 06:26:36 -07:00
if (srslte_phich_init(&phich, 1)) {
2019-04-23 01:53:11 -07:00
ERROR("Error creating PBCH object\n");
return -1;
}
if (srslte_phich_set_cell(&phich, &regs, cell)) {
2019-04-23 01:53:11 -07:00
ERROR("Error creating PBCH object\n");
2014-06-17 02:11:41 -07:00
return -1;
}
DEBUG("Memory init OK\n");
2014-06-17 02:11:41 -07:00
return 0;
2014-04-17 03:28:21 -07:00
}
void base_free()
{
2014-04-17 03:28:21 -07:00
2015-03-18 08:05:38 -07:00
srslte_filesource_free(&fsrc);
2014-06-17 02:11:41 -07:00
if (fmatlab) {
fclose(fmatlab);
}
2014-04-17 03:28:21 -07:00
2014-06-17 02:11:41 -07:00
free(input_buffer);
2019-04-23 01:53:11 -07:00
free(fft_buffer[0]);
2014-04-17 03:28:21 -07:00
2015-03-18 08:05:38 -07:00
srslte_filesource_free(&fsrc);
2019-04-23 01:53:11 -07:00
srslte_chest_dl_res_free(&chest_res);
2015-03-18 05:41:50 -07:00
srslte_chest_dl_free(&chest);
2015-04-08 01:50:01 -07:00
srslte_ofdm_rx_free(&fft);
2014-04-17 03:28:21 -07:00
2015-03-18 11:14:24 -07:00
srslte_phich_free(&phich);
srslte_regs_free(&regs);
2014-04-17 03:28:21 -07:00
}
int main(int argc, char** argv)
{
int n;
uint32_t ngroup, nseq, max_nseq;
2014-06-17 02:11:41 -07:00
if (argc < 3) {
usage(argv[0]);
exit(-1);
}
parse_args(argc, argv);
2014-06-17 02:11:41 -07:00
max_nseq = SRSLTE_CP_ISNORM(cell.cp) ? SRSLTE_PHICH_NORM_NSEQUENCES : SRSLTE_PHICH_EXT_NSEQUENCES;
2014-06-17 02:11:41 -07:00
if (base_init()) {
2019-04-23 01:53:11 -07:00
ERROR("Error initializing memory\n");
2014-06-17 02:11:41 -07:00
exit(-1);
}
2015-03-18 08:05:38 -07:00
n = srslte_filesource_read(&fsrc, input_buffer, flen);
2014-06-17 02:11:41 -07:00
srslte_ofdm_rx_sf(&fft);
2014-06-17 02:11:41 -07:00
if (fmatlab) {
fprintf(fmatlab, "infft=");
2015-03-18 11:14:24 -07:00
srslte_vec_fprint_c(fmatlab, input_buffer, flen);
2014-06-17 02:11:41 -07:00
fprintf(fmatlab, ";\n");
fprintf(fmatlab, "outfft=");
2019-04-23 01:53:11 -07:00
srslte_vec_fprint_c(fmatlab, fft_buffer[0], SRSLTE_CP_NSYMB(cell.cp) * cell.nof_prb * SRSLTE_NRE);
2014-06-17 02:11:41 -07:00
fprintf(fmatlab, ";\n");
}
2019-04-23 01:53:11 -07:00
srslte_dl_sf_cfg_t dl_sf;
ZERO_OBJECT(dl_sf);
dl_sf.tti = numsubframe;
2014-06-17 02:11:41 -07:00
/* Get channel estimates for each port */
2019-04-23 01:53:11 -07:00
srslte_chest_dl_estimate(&chest, &dl_sf, fft_buffer, &chest_res);
2014-06-17 02:11:41 -07:00
INFO("Decoding PHICH\n");
2014-06-17 02:11:41 -07:00
/* Receive all PHICH groups and sequence numbers */
2019-04-23 01:53:11 -07:00
for (ngroup = 0; ngroup < srslte_phich_ngroups(&phich); ngroup++) {
for (nseq = 0; nseq < max_nseq; nseq++) {
srslte_phich_resource_t resource;
resource.ngroup = ngroup;
resource.nseq = nseq;
srslte_phich_res_t res;
if (srslte_phich_decode(&phich, &dl_sf, &chest_res, resource, fft_buffer, &res) < 0) {
2014-06-17 02:11:41 -07:00
printf("Error decoding ACK\n");
exit(-1);
}
2019-04-23 01:53:11 -07:00
INFO("%d/%d, ack_rx: %d, ns: %d, distance: %f\n", ngroup, nseq, res.ack_value, numsubframe, res.distance);
2014-06-17 02:11:41 -07:00
}
}
base_free();
if (n < 0) {
2019-04-23 01:53:11 -07:00
ERROR("Error decoding phich\n");
2014-06-17 02:11:41 -07:00
exit(-1);
} else if (n == 0) {
printf("Could not decode phich\n");
exit(-1);
} else {
exit(0);
}
2014-04-17 03:28:21 -07:00
}