mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
372 lines
12 KiB
C
372 lines
12 KiB
C
/*
|
|
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
*/
|
|
|
|
/*!
|
|
* \brief common utility functions for NR (gNB and UE)
|
|
*/
|
|
|
|
#ifndef __COMMON_UTILS_NR_NR_COMMON__H__
|
|
#define __COMMON_UTILS_NR_NR_COMMON__H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include "assertions.h"
|
|
#include "common/utils/utils.h"
|
|
#include "common/utils/ds/byte_array.h"
|
|
|
|
#define MAX_SI_GROUPS 3
|
|
#define NR_MAX_PDSCH_TBS 3824
|
|
#define MAX_NUM_BEAM_PERIODS 4
|
|
#define MAX_BWP_SIZE 275
|
|
#define NR_MAX_NUM_BWP 4
|
|
#define NR_MAX_HARQ_PROCESSES 32
|
|
#define NR_MAX_HARQ_ROUNDS_FOR_STATS 16
|
|
#define NR_NB_REG_PER_CCE 6
|
|
#define NR_NB_SC_PER_RB 12
|
|
#define NR_MAX_NUM_LCID 32
|
|
#define NR_MAX_NUM_QFI 64
|
|
#define MAX_NUM_NR_DLSCH_SEGMENTS_PER_LAYER 36
|
|
#define MAX_NUM_NR_ULSCH_SEGMENTS_PER_LAYER 34
|
|
#define NR_MAX_SLOTS_PER_FRAME 160
|
|
#define RNTI_NAMES /* see 38.321 Table 7.1-2 RNTI usage */ \
|
|
R(TYPE_C_RNTI_) /* Cell RNTI */ \
|
|
R(TYPE_CS_RNTI_) /* Configured Scheduling RNTI */ \
|
|
R(TYPE_TC_RNTI_) /* Temporary C-RNTI */ \
|
|
R(TYPE_P_RNTI_) /* Paging RNTI */ \
|
|
R(TYPE_SI_RNTI_) /* System information RNTI */ \
|
|
R(TYPE_RA_RNTI_) /* Random Access RNTI */ \
|
|
R(TYPE_MSGB_RNTI_) /* Random Access MsgB RNTI */ \
|
|
R(TYPE_SP_CSI_RNTI_) /* Semipersistent CSI reporting on PUSCH */ \
|
|
R(TYPE_SFI_RNTI_) /* Slot Format Indication on the given cell */ \
|
|
R(TYPE_INT_RNTI_) /* Indication pre-emption in DL */ \
|
|
R(TYPE_TPC_PUSCH_RNTI_) /* PUSCH power control */ \
|
|
R(TYPE_TPC_PUCCH_RNTI_) /* PUCCH power control */ \
|
|
R(TYPE_TPC_SRS_RNTI_) \
|
|
R(TYPE_MCS_C_RNTI_)
|
|
|
|
/* FFS_NR_TODO it defines ue capability which is the number of slots */
|
|
/* - between reception of pdsch and transmission of its acknowlegment (k1) */
|
|
/* - between reception of un uplink grant and its related transmission (k2) */
|
|
#define NR_UE_CAPABILITY_SLOT_RX_TO_TX (3)
|
|
|
|
#define R(k) k ,
|
|
typedef enum { RNTI_NAMES } nr_rnti_type_t;
|
|
#undef R
|
|
|
|
#define R(k) \
|
|
case k: \
|
|
return #k;
|
|
static inline const char *rnti_types(nr_rnti_type_t rr)
|
|
{
|
|
switch (rr) {
|
|
RNTI_NAMES
|
|
default:
|
|
return "Not existing RNTI type";
|
|
}
|
|
}
|
|
#undef R
|
|
|
|
#define MU_SCS(m) (15 << m)
|
|
#define MAX_GSCN_BAND 620 // n78 has the highest GSCN range of 619
|
|
#define NR_SYMBOLS_PER_SLOT 14
|
|
#define NR_SYMBOLS_PER_SLOT_EXTENDED_CP 12
|
|
#define NR_MAX_NB_LAYERS 4
|
|
#define MAX_NUM_NR_DLSCH_SEGMENTS (MAX_NUM_NR_DLSCH_SEGMENTS_PER_LAYER * NR_MAX_NB_LAYERS)
|
|
#define MAX_NUM_NR_ULSCH_SEGMENTS (MAX_NUM_NR_ULSCH_SEGMENTS_PER_LAYER * NR_MAX_NB_LAYERS)
|
|
#define NR_MAX_CSI_PORTS 12
|
|
|
|
// Since the IQ samples are represented by SQ15 R+I (see https://en.wikipedia.org/wiki/Q_(number_format)) we need to compensate when
|
|
// calcualting signal energy. Instead of shifting each sample right by 15, we can normalize the result in dB scale once its
|
|
// calcualted. Signal energy is calculated using RMS^2, where each sample is squared before taking the average of the sum, therefore
|
|
// the total shift is 2 * 15, in dB scale thats 10log10(2^(15*2))
|
|
#define SQ15_SQUARED_NORM_FACTOR_DB 90.3089986992
|
|
|
|
typedef enum {
|
|
NR_SIB_1 = 1,
|
|
NR_SIB_2,
|
|
NR_SIB_3,
|
|
NR_SIB_4,
|
|
NR_SIB_5,
|
|
NR_SIB_6,
|
|
NR_SIB_7,
|
|
NR_SIB_8,
|
|
NR_SIB_9,
|
|
NR_SIB_10,
|
|
NR_SIB_11,
|
|
NR_SIB_12,
|
|
NR_SIB_13,
|
|
NR_SIB_14,
|
|
NR_SIB_15,
|
|
NR_SIB_16,
|
|
NR_SIB_17,
|
|
NR_SIB_18,
|
|
NR_SIB_19,
|
|
NR_SIB_20,
|
|
NR_SIB_21,
|
|
} nr_sib_type_t;
|
|
|
|
typedef struct {
|
|
nr_sib_type_t SIB_type;
|
|
} nr_SIBs_t;
|
|
|
|
typedef struct nr_bandentry_s {
|
|
int16_t band;
|
|
uint64_t ul_min;
|
|
uint64_t ul_max;
|
|
uint64_t dl_min;
|
|
uint64_t dl_max;
|
|
uint8_t ul_stepsize;
|
|
uint8_t dl_stepsize;
|
|
uint32_t N_OFFs_UL;
|
|
uint32_t N_OFFs_DL;
|
|
uint8_t deltaf_raster;
|
|
} nr_bandentry_t;
|
|
|
|
typedef struct {
|
|
int band;
|
|
int scs_index;
|
|
int first_gscn;
|
|
int step_gscn;
|
|
int last_gscn;
|
|
} sync_raster_t;
|
|
|
|
typedef struct {
|
|
int gscn;
|
|
double ssRef;
|
|
int ssbFirstSC;
|
|
} nr_gscn_info_t;
|
|
|
|
typedef enum frequency_range_e {
|
|
FR1 = 0,
|
|
FR2
|
|
} frequency_range_t;
|
|
|
|
typedef enum {
|
|
pusch_dmrs_type1 = 0,
|
|
pusch_dmrs_type2 = 1
|
|
} pusch_dmrs_type_t;
|
|
|
|
#define MAX_NUM_SLOTS_ALLOWED 80 // up to numerology 3 (120 KHz SCS) is supported
|
|
enum slot_type { TDD_NR_DOWNLINK_SLOT, TDD_NR_UPLINK_SLOT, TDD_NR_MIXED_SLOT };
|
|
|
|
typedef struct tdd_bitmap {
|
|
enum slot_type slot_type;
|
|
uint8_t num_dl_symbols;
|
|
uint8_t num_ul_symbols;
|
|
} tdd_bitmap_t;
|
|
|
|
typedef struct tdd_period_config_s {
|
|
tdd_bitmap_t tdd_slot_bitmap[MAX_NUM_SLOTS_ALLOWED];
|
|
uint8_t num_dl_slots;
|
|
uint8_t num_ul_slots;
|
|
} tdd_period_config_t;
|
|
|
|
typedef struct frame_structure_s {
|
|
tdd_period_config_t period_cfg;
|
|
int8_t numb_slots_frame;
|
|
int8_t numb_slots_period;
|
|
int8_t numb_period_frame;
|
|
frame_type_t frame_type;
|
|
} frame_structure_t;
|
|
|
|
typedef struct {
|
|
/// Time shift in number of samples estimated based on DMRS-PDSCH/PUSCH
|
|
int est_delay;
|
|
/// Max position in OFDM symbol related to time shift estimation based on DMRS-PDSCH/PUSCH
|
|
int delay_max_pos;
|
|
/// Max value related to time shift estimation based on DMRS-PDSCH/PUSCH
|
|
int delay_max_val;
|
|
} delay_t;
|
|
|
|
typedef struct {
|
|
bool active;
|
|
bool suspended;
|
|
uint32_t counter;
|
|
uint32_t target;
|
|
uint32_t step;
|
|
} NR_timer_t;
|
|
|
|
typedef struct val_init {
|
|
int val;
|
|
bool init;
|
|
} val_init_t;
|
|
|
|
typedef struct meas_s {
|
|
uint16_t Nid_cell;
|
|
val_init_t ss_rsrp_dBm;
|
|
val_init_t csi_rsrp_dBm;
|
|
} meas_t;
|
|
|
|
/** @brief Returns NR RSRP index per 3GPP TS 38.133 Table 10.1.6.1-1 */
|
|
uint8_t get_rsrp_index(int rsrp_dBm);
|
|
|
|
/**
|
|
* @brief To start a timer
|
|
* @param timer Timer to be started
|
|
*/
|
|
void nr_timer_start(NR_timer_t *timer);
|
|
/**
|
|
* @brief To stop a timer
|
|
* @param timer Timer to stopped
|
|
*/
|
|
void nr_timer_stop(NR_timer_t *timer);
|
|
/**
|
|
* @brief To suspend/resume a timer
|
|
* @param timer Timer to be stopped/suspended
|
|
*/
|
|
void nr_timer_suspension(NR_timer_t *timer);
|
|
|
|
/**
|
|
* @brief If active, it increases timer counter by an amout of units equal to step. It stops timer if expired
|
|
* @param timer Timer to be handled
|
|
* @return Indication if the timer is expired or not
|
|
*/
|
|
bool nr_timer_tick(NR_timer_t *timer);
|
|
/**
|
|
* @brief To setup a timer
|
|
* @param timer Timer to setup
|
|
* @param target Target value for timer (when reached, timer is considered expired)
|
|
* @param step Amount of units to add to timer counter every tick
|
|
*/
|
|
void nr_timer_setup(NR_timer_t *timer, const uint32_t target, const uint32_t step);
|
|
/**
|
|
* @brief To check if a timer is expired
|
|
* @param timer Timer to be checked
|
|
* @return Indication if the timer is expired or not
|
|
*/
|
|
bool nr_timer_expired(const NR_timer_t *timer);
|
|
/**
|
|
* @brief To check if a timer is active
|
|
* @param timer Timer to be checked
|
|
* @return Indication if the timer is active or not
|
|
*/
|
|
bool nr_timer_is_active(const NR_timer_t *timer);
|
|
/**
|
|
* @brief To return how much time has passed since start of timer
|
|
* @param timer Timer to be checked
|
|
* @return Time passed since start of timer
|
|
*/
|
|
uint32_t nr_timer_elapsed_time(const NR_timer_t *timer);
|
|
/**
|
|
* @brief To return how much time is left until the timer expires
|
|
* @param timer Timer to be checked
|
|
* @return Time left until the timer expires
|
|
*/
|
|
uint32_t nr_timer_remaining_time(const NR_timer_t *timer);
|
|
|
|
int set_default_nta_offset(frequency_range_t freq_range, uint32_t samples_per_subframe);
|
|
|
|
static inline int get_num_dmrs(uint16_t dmrs_mask)
|
|
{
|
|
return __builtin_popcount(dmrs_mask);
|
|
}
|
|
|
|
void warn_higher_threequarter_fs(const int n_rb, const int mu);
|
|
uint64_t from_nrarfcn(int nr_bandP, uint8_t scs_index, uint32_t dl_nrarfcn);
|
|
uint32_t to_nrarfcn(uint64_t dl_CarrierFreq);
|
|
uint8_t set_ssb_case(int scs, int nr_band);
|
|
int cce_to_reg_interleaving(const int R, int k, int n_shift, const int C, int L, const int N_regs);
|
|
int get_SLIV(uint8_t S, uint8_t L);
|
|
void get_coreset_rballoc(const uint8_t *FreqDomainResource, int *n_rb, int *rb_offset);
|
|
int get_coreset_num_cces(const uint8_t *FreqDomainResource, int duration);
|
|
int get_nr_table_idx(int nr_bandP, uint8_t scs_index);
|
|
int32_t get_delta_duplex(int nr_bandP, uint8_t scs_index);
|
|
frame_type_t get_frame_type(uint16_t nr_bandP, uint8_t scs_index);
|
|
int NRRIV2BW(int locationAndBandwidth,int N_RB);
|
|
int NRRIV2PRBOFFSET(int locationAndBandwidth,int N_RB);
|
|
int PRBalloc_to_locationandbandwidth0(int NPRB,int RBstart,int BWPsize);
|
|
int PRBalloc_to_locationandbandwidth(int NPRB,int RBstart);
|
|
int get_subband_size(int NPRB,int size);
|
|
void SLIV2SL(int SLIV,int *S,int *L);
|
|
int get_dmrs_port(int nl, uint16_t dmrs_ports);
|
|
uint16_t SL_to_bitmap(int startSymbolIndex, int nrOfSymbols);
|
|
int get_nb_periods_per_frame(uint8_t tdd_period);
|
|
long rrc_get_max_nr_csrs(const int max_rbs, long b_SRS);
|
|
bool compare_relative_ul_channel_bw(int nr_band, int scs, int channel_bandwidth, frame_type_t frame_type);
|
|
int get_supported_bw_mhz(frequency_range_t frequency_range, int bw_index);
|
|
int get_supported_band_index(int scs, frequency_range_t freq_range, int n_rbs);
|
|
void get_samplerate_and_bw(int mu,
|
|
int n_rb,
|
|
int8_t threequarter_fs,
|
|
double *sample_rate,
|
|
double *tx_bw,
|
|
double *rx_bw);
|
|
uint32_t get_ssb_offset_to_pointA(uint32_t absoluteFrequencySSB,
|
|
uint32_t absoluteFrequencyPointA,
|
|
int ssbSubcarrierSpacing,
|
|
int frequency_range);
|
|
int get_ssb_subcarrier_offset(uint32_t absoluteFrequencySSB, uint32_t absoluteFrequencyPointA, int scs);
|
|
int get_delay_idx(int delay, int max_delay_comp);
|
|
|
|
int get_scan_ssb_first_sc(const double fc,
|
|
const int nbRB,
|
|
const int nrBand,
|
|
const int mu,
|
|
nr_gscn_info_t ssbStartSC[MAX_GSCN_BAND]);
|
|
|
|
void check_ssb_raster(uint64_t freq, int band, int scs);
|
|
int get_smallest_supported_bandwidth_index(int scs, frequency_range_t frequency_range, int n_rbs);
|
|
unsigned short get_m_srs(int c_srs, int b_srs);
|
|
unsigned short get_N_b_srs(int c_srs, int b_srs);
|
|
uint8_t get_long_prach_dur(unsigned int format, unsigned int num_slots_subframe);
|
|
uint8_t get_PRACH_k_bar(unsigned int delta_f_RA_PRACH, unsigned int delta_f_PUSCH);
|
|
unsigned int get_prach_K(int prach_sequence_length, int prach_fmt_id, int pusch_mu, int prach_mu);
|
|
|
|
int get_slot_idx_in_period(const int slot, const frame_structure_t *fs);
|
|
|
|
frequency_range_t get_freq_range_from_freq(uint64_t freq);
|
|
frequency_range_t get_freq_range_from_arfcn(uint32_t arfcn);
|
|
frequency_range_t get_freq_range_from_band(uint16_t band);
|
|
|
|
/**
|
|
* @brief Calculates the scaling factor for the ratio of PUSCH/PDSCH EPRE to DMRS EPRE.
|
|
*
|
|
* @param num_cdm_groups_no_data The number of CDM groups without data.
|
|
* @param is_type2 true if calculating for DMRS configuration type 2
|
|
* @return The calculated beta scaling factor for the ratio of PUSCH/PDSCH EPRE to DMRS EPRE.
|
|
*
|
|
* @note The values are the same for PUSCH and PDSCH and are derived from TS 38.214 Table 6.2.2-1./4.1-1
|
|
*/
|
|
float get_beta_dmrs(int num_cdm_groups_no_data, bool is_type2);
|
|
|
|
/** @brief Construct full 5G-S-TMSI from 5G-S-TMSI components */
|
|
uint64_t nr_construct_5g_s_tmsi(uint16_t amf_set_id, uint8_t amf_pointer, uint32_t m_tmsi);
|
|
|
|
/** @brief Construct 5G-S-TMSI-Part1 from 5G-S-TMSI components */
|
|
uint64_t nr_construct_5g_s_tmsi_part1(uint16_t amf_set_id, uint8_t amf_pointer, uint32_t m_tmsi);
|
|
|
|
/** @brief Extract 5G-S-TMSI-Part1 from full 5G-S-TMSI */
|
|
uint64_t nr_extract_5g_s_tmsi_part1(const uint64_t fiveg_s_tmsi);
|
|
|
|
/** @brief Extract 5G-S-TMSI-Part2 from full 5G-S-TMSI */
|
|
uint16_t nr_extract_5g_s_tmsi_part2(const uint64_t fiveg_s_tmsi);
|
|
|
|
/** @brief Build full 5G-S-TMSI from Part1 and Part2 */
|
|
uint64_t nr_build_full_5g_s_tmsi(const uint64_t part1, const uint16_t part2);
|
|
|
|
/** @brief Deconstruct full 5G-S-TMSI into its components */
|
|
void nr_deconstruct_5g_s_tmsi(const uint64_t fiveg_s_tmsi, uint16_t *amf_set_id, uint8_t *amf_pointer, uint32_t *m_tmsi);
|
|
|
|
#define CEILIDIV(a,b) ((a+b-1)/b)
|
|
#define ROUNDIDIV(a,b) (((a<<1)+b)/(b<<1))
|
|
#define BOUNDED_EVAL(a, b, c) (min(c, max(a, b)))
|
|
|
|
/* Macro used to perform a circular increment. This implementation is computationally more efficient than using the remainder of the
|
|
* integer division, and improves code readability when compared to repetitive if... else statements. */
|
|
#define CIRCULAR_INC(val, inc, size) (((val) + (inc) >= (size)) ? ((val) + (inc) - (size)) : ((val) + (inc)))
|
|
|
|
static const char *const duplex_mode_txt[] = {"FDD", "TDD"};
|
|
|
|
#ifdef __cplusplus
|
|
#ifdef min
|
|
#undef min
|
|
#undef max
|
|
#endif
|
|
#else
|
|
#define max(a,b) cmax(a,b)
|
|
#define min(a,b) cmin(a,b)
|
|
#endif
|
|
|
|
#endif
|