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

292 lines
7.3 KiB
C
Raw Normal View History

2014-04-17 03:28:21 -07:00
/**
*
* \section COPYRIGHT
*
2015-11-13 04:22:33 -08:00
* Copyright 2013-2015 Software Radio Systems Limited
2014-04-17 03:28:21 -07:00
*
* \section LICENSE
*
* This file is part of the srsLTE library.
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/phy/common/phy_common.h>
2014-04-17 03:28:21 -07:00
#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 = {
50, // cell.nof_prb
2, // cell.nof_ports
150, // cell.id
2015-04-05 07:32:35 -07:00
SRSLTE_CP_NORM, // cyclic prefix
2015-03-18 05:59:29 -07:00
SRSLTE_PHICH_R_1, // PHICH resources
SRSLTE_PHICH_NORM // PHICH length
};
2014-04-17 03:28:21 -07:00
int flen;
int nof_ctrl_symbols = 1;
int numsubframe = 0;
FILE *fmatlab = NULL;
2015-03-18 08:05:38 -07:00
srslte_filesource_t fsrc;
2015-03-18 05:41:50 -07:00
cf_t *input_buffer, *fft_buffer, *ce[SRSLTE_MAX_PORTS];
2015-03-18 11:14:24 -07:00
srslte_phich_t phich;
srslte_regs_t regs;
srslte_ofdm_t fft;
2015-03-18 05:41:50 -07:00
srslte_chest_dl_t chest;
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 = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'f':
nof_ctrl_symbols = atoi(argv[optind]);
break;
case 'g':
if (!strcmp(argv[optind], "1/6")) {
2016-04-04 12:44:07 -07:00
cell.phich_resources = SRSLTE_PHICH_R_1_6;
2014-06-17 02:11:41 -07:00
} else if (!strcmp(argv[optind], "1/2")) {
2016-04-04 12:44:07 -07:00
cell.phich_resources = SRSLTE_PHICH_R_1_2;
2014-06-17 02:11:41 -07:00
} else if (!strcmp(argv[optind], "1")) {
2015-03-18 05:59:29 -07:00
cell.phich_resources = SRSLTE_PHICH_R_1;
2014-06-17 02:11:41 -07:00
} else if (!strcmp(argv[optind], "2")) {
2015-03-18 05:59:29 -07:00
cell.phich_resources = SRSLTE_PHICH_R_2;
2014-06-17 02:11:41 -07:00
} else {
fprintf(stderr, "Invalid phich ng factor %s. Setting to default.\n", argv[optind]);
}
break;
case 'e':
2015-03-18 05:59:29 -07:00
cell.phich_length = SRSLTE_PHICH_EXT;
2014-06-17 02:11:41 -07:00
break;
case 'n':
cell.nof_prb = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'p':
cell.nof_ports = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
case 'v':
2015-03-18 11:14:24 -07:00
srslte_verbose++;
2014-06-17 02:11:41 -07:00
break;
case 'l':
2015-04-05 07:32:35 -07:00
cell.cp = SRSLTE_CP_EXT;
2014-06-17 02:11:41 -07:00
break;
default:
usage(argv[0]);
exit(-1);
}
}
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
int i;
2015-03-18 08:05:38 -07:00
if (srslte_filesource_init(&fsrc, input_file_name, SRSLTE_COMPLEX_FLOAT_BIN)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error opening file %s\n", input_file_name);
exit(-1);
}
if (matlab_file_name) {
fmatlab = fopen(matlab_file_name, "w");
if (!fmatlab) {
perror("fopen");
return -1;
}
} else {
fmatlab = NULL;
}
flen = SRSLTE_SF_LEN(srslte_symbol_sz_power2(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);
}
2015-03-18 05:59:29 -07:00
fft_buffer = malloc(SRSLTE_SF_LEN_RE(cell.nof_prb, cell.cp) * sizeof(cf_t));
2014-06-17 02:11:41 -07:00
if (!fft_buffer) {
perror("malloc");
return -1;
}
2015-03-18 05:41:50 -07:00
for (i=0;i<SRSLTE_MAX_PORTS;i++) {
2015-03-18 05:59:29 -07:00
ce[i] = malloc(SRSLTE_SF_LEN_RE(cell.nof_prb, cell.cp) * sizeof(cf_t));
2014-06-17 02:11:41 -07:00
if (!ce[i]) {
perror("malloc");
return -1;
}
}
if (srslte_chest_dl_init(&chest, cell.nof_prb)) {
fprintf(stderr, "Error initializing equalizer\n");
return -1;
}
if (srslte_chest_dl_set_cell(&chest, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error initializing equalizer\n");
return -1;
}
if (srslte_ofdm_init_(&fft, cell.cp, input_buffer, fft_buffer, srslte_symbol_sz_power2(cell.nof_prb), cell.nof_prb, SRSLTE_DFT_FORWARD)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error initializing FFT\n");
return -1;
}
2015-03-18 11:14:24 -07:00
if (srslte_regs_init(&regs, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error initiating regs\n");
return -1;
}
2017-09-05 06:26:36 -07:00
if (srslte_phich_init(&phich, 1)) {
fprintf(stderr, "Error creating PBCH object\n");
return -1;
}
if (srslte_phich_set_cell(&phich, &regs, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error creating PBCH object\n");
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-06-17 02:11:41 -07:00
int i;
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);
free(fft_buffer);
2014-04-17 03:28:21 -07:00
2015-03-18 08:05:38 -07:00
srslte_filesource_free(&fsrc);
2015-03-18 05:41:50 -07:00
for (i=0;i<SRSLTE_MAX_PORTS;i++) {
2014-06-17 02:11:41 -07:00
free(ce[i]);
}
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) {
float distance;
2014-11-11 10:20:09 -08:00
int n;
uint32_t ngroup, nseq, max_nseq;
2014-10-17 11:44:01 -07:00
uint8_t ack_rx;
2014-06-17 02:11:41 -07:00
if (argc < 3) {
usage(argv[0]);
exit(-1);
}
parse_args(argc,argv);
2015-03-18 05:59:29 -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()) {
fprintf(stderr, "Error initializing memory\n");
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=");
2015-03-18 11:14:24 -07:00
srslte_vec_fprint_c(fmatlab, fft_buffer, SRSLTE_CP_NSYMB(cell.cp) * cell.nof_prb * SRSLTE_NRE);
2014-06-17 02:11:41 -07:00
fprintf(fmatlab, ";\n");
}
/* Get channel estimates for each port */
2015-03-18 05:41:50 -07:00
srslte_chest_dl_estimate(&chest, fft_buffer, ce, 0);
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 */
2015-03-18 11:14:24 -07:00
for (ngroup=0;ngroup<srslte_phich_ngroups(&phich);ngroup++) {
2014-06-17 02:11:41 -07:00
for (nseq=0;nseq<max_nseq;nseq++) {
2017-10-12 01:31:08 -07:00
cf_t *input[SRSLTE_MAX_PORTS] = {fft_buffer, NULL};
cf_t *cebuf[SRSLTE_MAX_PORTS][SRSLTE_MAX_PORTS] = {{ce[0], ce[1]},{ce[0], ce[1]}};
if (srslte_phich_decode(&phich, input, cebuf, srslte_chest_dl_get_noise_estimate(&chest),
ngroup, nseq, numsubframe, &ack_rx, &distance)<0)
{
2014-06-17 02:11:41 -07:00
printf("Error decoding ACK\n");
exit(-1);
}
INFO("%d/%d, ack_rx: %d, ns: %d, distance: %f\n",
2014-06-17 02:11:41 -07:00
ngroup, nseq, ack_rx, numsubframe, distance);
}
}
base_free();
if (n < 0) {
fprintf(stderr, "Error decoding phich\n");
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
}