srsLTE/lib/include/srslte/phy/ue/ue_mib.h

117 lines
3.6 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
* Copyright 2013-2020 Software Radio Systems Limited
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the distribution.
*
*/
/******************************************************************************
* File: ue_mib.h
*
* Description: This object decodes the MIB from the PBCH of an LTE signal.
*
* The function srslte_ue_mib_decode() shall be called multiple
* times, each passing a number of samples multiple of 19200,
* sampled at 1.92 MHz (that is, 10 ms of samples).
*
* The function uses the sync_t object to find the PSS sequence and
* decode the PBCH to obtain the MIB.
*
* The function returns 0 until the MIB is decoded.
*
* See ue_cell_detect.c for an example.
*
* Reference:
*****************************************************************************/
2018-03-31 10:04:04 -07:00
#ifndef SRSLTE_UE_MIB_H
#define SRSLTE_UE_MIB_H
#include <stdbool.h>
#include "srslte/config.h"
2017-05-18 00:48:24 -07:00
#include "srslte/phy/ue/ue_sync.h"
#include "srslte/phy/sync/cfo.h"
#include "srslte/phy/ch_estimation/chest_dl.h"
#include "srslte/phy/phch/pbch.h"
#include "srslte/phy/dft/ofdm.h"
2015-03-18 11:14:24 -07:00
#define SRSLTE_UE_MIB_NOF_PRB 6
2015-03-18 11:14:24 -07:00
#define SRSLTE_UE_MIB_FOUND 1
#define SRSLTE_UE_MIB_NOTFOUND 0
typedef struct SRSLTE_API {
2015-03-18 11:14:24 -07:00
srslte_sync_t sfind;
2019-04-23 01:53:11 -07:00
cf_t* sf_symbols;
2019-04-23 01:53:11 -07:00
2015-03-18 11:14:24 -07:00
srslte_ofdm_t fft;
srslte_pbch_t pbch;
2019-04-23 01:53:11 -07:00
srslte_chest_dl_t chest;
srslte_chest_dl_res_t chest_res;
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN];
2014-10-21 11:03:05 -07:00
uint32_t nof_tx_ports;
uint32_t sfn_offset;
uint32_t frame_cnt;
2015-03-18 11:14:24 -07:00
} srslte_ue_mib_t;
SRSLTE_API int srslte_ue_mib_init(srslte_ue_mib_t* q, cf_t* in_buffer, uint32_t max_prb);
2014-10-24 03:06:04 -07:00
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_ue_mib_free(srslte_ue_mib_t *q);
SRSLTE_API int srslte_ue_mib_set_cell(srslte_ue_mib_t * q,
srslte_cell_t cell);
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_ue_mib_reset(srslte_ue_mib_t * q);
2015-03-18 11:14:24 -07:00
SRSLTE_API int srslte_ue_mib_decode(srslte_ue_mib_t * q,
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN],
2015-03-18 11:14:24 -07:00
uint32_t *nof_tx_ports,
int *sfn_offset);
2014-10-24 03:06:04 -07:00
2014-10-21 11:03:05 -07:00
/* This interface uses ue_mib and ue_sync to first get synchronized subframes
* and then decode MIB
*
* This object calls the pbch object with nof_ports=0 for blind nof_ports determination
*/
typedef struct {
2015-03-18 11:14:24 -07:00
srslte_ue_mib_t ue_mib;
srslte_ue_sync_t ue_sync;
cf_t* sf_buffer[SRSLTE_MAX_CHANNELS];
uint32_t nof_rx_channels;
2015-03-18 11:14:24 -07:00
} srslte_ue_mib_sync_t;
SRSLTE_API int
srslte_ue_mib_sync_init_multi(srslte_ue_mib_sync_t* q,
int(recv_callback)(void*, cf_t* [SRSLTE_MAX_CHANNELS], uint32_t, srslte_timestamp_t*),
uint32_t nof_rx_channels,
void* stream_handler);
2017-02-17 02:54:34 -08:00
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_ue_mib_sync_free(srslte_ue_mib_sync_t *q);
2019-04-23 01:53:11 -07:00
SRSLTE_API int srslte_ue_mib_sync_set_cell(srslte_ue_mib_sync_t* q, srslte_cell_t cell);
2015-03-18 11:14:24 -07:00
SRSLTE_API void srslte_ue_mib_sync_reset(srslte_ue_mib_sync_t * q);
2015-03-18 11:14:24 -07:00
SRSLTE_API int srslte_ue_mib_sync_decode(srslte_ue_mib_sync_t * q,
uint32_t max_frames_timeout,
uint8_t bch_payload[SRSLTE_BCH_PAYLOAD_LEN],
2015-03-18 11:14:24 -07:00
uint32_t *nof_tx_ports,
int *sfn_offset);
2018-03-31 10:04:04 -07:00
#endif // SRSLTE_UE_MIB_H