srsLTE/srslte/lib/phch/test/pbch_file_test.c

247 lines
6.1 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2015-05-08 08:05:40 -07:00
* Copyright 2013-2015 The srsLTE Developers. See the
* COPYRIGHT file at the top-level directory of this distribution.
*
* \section LICENSE
*
* This file is part of the srsLTE library.
*
* 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
* 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
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
*
2015-05-08 08:05:40 -07:00
* 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/.
*
*/
2014-01-28 03:41:17 -08:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include "srslte/srslte.h"
2014-01-28 03:41:17 -08:00
char *input_file_name = NULL;
2014-01-31 06:35:43 -08:00
2015-03-18 05:41:50 -07:00
srslte_cell_t cell = {
6, // nof_prb
2, // nof_ports
2015-03-18 11:14:24 -07:00
0, // bw_idx
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
};
2015-01-12 20:36:47 -08:00
int nof_frames = 1;
2015-03-24 07:58:33 -07:00
uint8_t bch_payload_file[SRSLTE_BCH_PAYLOAD_LEN] = {0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
2015-03-18 05:59:29 -07:00
#define FLEN (10*SRSLTE_SF_LEN(srslte_symbol_sz(cell.nof_prb)))
2014-01-28 03:41:17 -08:00
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_pbch_t pbch;
srslte_ofdm_t fft;
2015-03-18 05:41:50 -07:00
srslte_chest_dl_t chest;
2014-01-28 03:41:17 -08:00
void usage(char *prog) {
2014-06-17 02:11:41 -07:00
printf("Usage: %s [vcoe] -i input_file\n", prog);
printf("\t-c cell_id [Default %d]\n", cell.id);
2015-01-12 20:36:47 -08:00
printf("\t-p nof_prb [Default %d]\n", cell.nof_prb);
2014-06-17 02:11:41 -07:00
printf("\t-e Set extended prefix [Default Normal]\n");
2015-01-12 20:36:47 -08:00
printf("\t-n nof_frames [Default %d]\n", nof_frames);
2015-03-18 11:14:24 -07:00
printf("\t-v [set srslte_verbose to debug, default none]\n");
2014-01-28 03:41:17 -08:00
}
void parse_args(int argc, char **argv) {
2014-06-17 02:11:41 -07:00
int opt;
2015-01-12 20:36:47 -08:00
while ((opt = getopt(argc, argv, "ivcpne")) != -1) {
2014-06-17 02:11:41 -07:00
switch(opt) {
case 'i':
input_file_name = argv[optind];
break;
case 'c':
cell.id = atoi(argv[optind]);
2014-06-17 02:11:41 -07:00
break;
2015-01-12 20:36:47 -08:00
case 'p':
cell.nof_prb = atoi(argv[optind]);
break;
case 'n':
nof_frames = 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 'e':
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-01-28 03:41:17 -08: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);
}
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;
}
for (i=0;i<cell.nof_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;
}
}
2015-03-18 05:59:29 -07:00
if (!srslte_cell_isvalid(&cell)) {
fprintf(stderr, "Invalid cell properties\n");
2014-06-17 02:11:41 -07:00
return -1;
}
2015-03-18 05:41:50 -07:00
if (srslte_chest_dl_init(&chest, cell)) {
fprintf(stderr, "Error initializing equalizer\n");
2014-06-17 02:11:41 -07:00
return -1;
}
2015-04-08 01:50:01 -07:00
if (srslte_ofdm_rx_init(&fft, cell.cp, cell.nof_prb)) {
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_pbch_init(&pbch, cell)) {
2014-06-17 02:11:41 -07:00
fprintf(stderr, "Error initiating PBCH\n");
return -1;
}
DEBUG("Memory init OK\n",0);
return 0;
2014-01-28 03:41:17 -08:00
}
2014-03-14 18:04:21 -07:00
void base_free() {
2014-06-17 02:11:41 -07:00
int i;
2015-03-18 08:05:38 -07:00
srslte_filesource_free(&fsrc);
2014-06-17 02:11:41 -07:00
free(input_buffer);
free(fft_buffer);
2015-03-18 08:05:38 -07:00
srslte_filesource_free(&fsrc);
for (i=0;i<cell.nof_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);
2015-03-18 11:14:24 -07:00
srslte_pbch_free(&pbch);
2014-01-28 03:41:17 -08:00
}
int main(int argc, char **argv) {
2015-03-24 07:58:33 -07:00
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN];
int n;
uint32_t nof_tx_ports, sfn_offset;
2015-03-18 05:41:50 -07:00
cf_t *ce_slot1[SRSLTE_MAX_PORTS];
2014-06-17 02:11:41 -07:00
if (argc < 3) {
usage(argv[0]);
exit(-1);
}
parse_args(argc,argv);
if (base_init()) {
fprintf(stderr, "Error initializing receiver\n");
2014-06-17 02:11:41 -07:00
exit(-1);
}
2015-01-12 20:36:47 -08:00
int frame_cnt = 0;
int nof_decoded_mibs = 0;
int nread = 0;
do {
2015-03-18 08:05:38 -07:00
nread = srslte_filesource_read(&fsrc, input_buffer, FLEN);
2015-01-12 20:36:47 -08:00
if (nread > 0) {
// process 1st subframe only
2015-04-08 01:50:01 -07:00
srslte_ofdm_rx_sf(&fft, input_buffer, fft_buffer);
2015-01-12 20:36:47 -08:00
/* Get channel estimates for each port */
2015-03-18 05:41:50 -07:00
srslte_chest_dl_estimate(&chest, fft_buffer, ce, 0);
2015-01-12 20:36:47 -08:00
INFO("Decoding PBCH\n", 0);
2015-03-18 05:41:50 -07:00
for (int i=0;i<SRSLTE_MAX_PORTS;i++) {
2015-03-18 05:59:29 -07:00
ce_slot1[i] = &ce[i][SRSLTE_SLOT_LEN_RE(cell.nof_prb, cell.cp)];
2015-01-12 20:36:47 -08:00
}
2015-03-18 11:14:24 -07:00
srslte_pbch_decode_reset(&pbch);
n = srslte_pbch_decode(&pbch, &fft_buffer[SRSLTE_SLOT_LEN_RE(cell.nof_prb, cell.cp)],
2015-03-18 05:41:50 -07:00
ce_slot1, srslte_chest_dl_get_noise_estimate(&chest),
2015-01-12 20:36:47 -08:00
bch_payload, &nof_tx_ports, &sfn_offset);
if (n == 1) {
nof_decoded_mibs++;
} else if (n < 0) {
fprintf(stderr, "Error decoding PBCH\n");
exit(-1);
}
frame_cnt++;
} else if (nread < 0) {
fprintf(stderr, "Error reading from file\n");
exit(-1);
}
} while(nread > 0 && frame_cnt < nof_frames);
2014-06-17 02:11:41 -07:00
base_free();
2015-01-12 20:36:47 -08:00
if (frame_cnt == 1) {
if (n == 0) {
printf("Could not decode PBCH\n");
2014-06-17 02:11:41 -07:00
exit(-1);
2015-01-12 20:36:47 -08:00
} else {
printf("MIB decoded OK. Nof ports: %d. SFN offset: %d Payload: ", nof_tx_ports, sfn_offset);
2015-03-24 07:58:33 -07:00
srslte_vec_fprint_hex(stdout, bch_payload, SRSLTE_BCH_PAYLOAD_LEN);
if (nof_tx_ports == 2 && sfn_offset == 0 && !memcmp(bch_payload, bch_payload_file, SRSLTE_BCH_PAYLOAD_LEN)) {
2015-01-12 20:36:47 -08:00
printf("This is the signal.1.92M.dat file\n");
exit(0);
} else {
printf("This is an unknown file\n");
exit(-1);
}
2014-06-17 02:11:41 -07:00
}
2015-01-12 20:36:47 -08:00
} else {
printf("Decoded %d/%d MIBs\n", nof_decoded_mibs, frame_cnt);
2014-06-17 02:11:41 -07:00
}
2014-01-28 03:41:17 -08:00
}