|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2014 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
|
|
|
|
* it under the terms of the GNU Lesser 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
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* A copy of the GNU Lesser 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/.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <complex.h>
|
|
|
|
|
|
|
|
#include "srslte/common/phy_common.h"
|
|
|
|
#include "srslte/ch_estimation/refsignal_ul.h"
|
|
|
|
#include "srslte/utils/vector.h"
|
|
|
|
#include "srslte/utils/debug.h"
|
|
|
|
#include "srslte/common/sequence.h"
|
|
|
|
|
|
|
|
#include "ul_rs_tables.h"
|
|
|
|
|
|
|
|
// n_drms_2 table 5.5.2.1.1-1 from 36.211
|
|
|
|
uint32_t n_drms_2[8] = { 0, 6, 3, 4, 2, 8, 10, 9 };
|
|
|
|
|
|
|
|
// n_drms_1 table 5.5.2.1.1-2 from 36.211
|
|
|
|
uint32_t n_drms_1[8] = { 0, 2, 3, 4, 6, 8, 9, 10 };
|
|
|
|
|
|
|
|
/* Orthogonal sequences for PUCCH formats 1a, 1b and 1c. Table 5.5.2.2.1-2
|
|
|
|
*/
|
|
|
|
float w_arg_pucch_format1_cpnorm[3][3] = {{0, 0, 0},
|
|
|
|
{0, 2*M_PI/3, 4*M_PI/3},
|
|
|
|
{0, 4*M_PI/3, 2*M_PI/3}};
|
|
|
|
|
|
|
|
float w_arg_pucch_format1_cpext[3][2] = {{0, 0},
|
|
|
|
{0, M_PI},
|
|
|
|
{0, 0}};
|
|
|
|
|
|
|
|
float w_arg_pucch_format2_cpnorm[2] = {0, 0};
|
|
|
|
float w_arg_pucch_format2_cpext[1] = {0};
|
|
|
|
|
|
|
|
uint32_t pucch_symbol_format1_cpnorm[3] = {2, 3, 5};
|
|
|
|
uint32_t pucch_symbol_format1_cpext[2] = {2, 3};
|
|
|
|
uint32_t pucch_symbol_format2_cpnorm[2] = {1, 5};
|
|
|
|
uint32_t pucch_symbol_format2_cpext[1] = {3};
|
|
|
|
|
|
|
|
/** Computes n_prs values used to compute alpha as defined in 5.5.2.1.1 of 36.211 */
|
|
|
|
static int generate_n_prs(srslte_refsignal_ul_t * q) {
|
|
|
|
/* Calculate n_prs */
|
|
|
|
uint32_t c_init;
|
|
|
|
|
|
|
|
srslte_sequence_t seq;
|
|
|
|
bzero(&seq, sizeof(srslte_sequence_t));
|
|
|
|
|
|
|
|
for (uint32_t delta_ss=0;delta_ss<SRSLTE_NOF_DELTA_SS;delta_ss++) {
|
|
|
|
c_init = ((q->cell.id / 30) << 5) + (((q->cell.id % 30) + delta_ss) % 30);
|
|
|
|
if (srslte_sequence_LTE_pr(&seq, 8 * SRSLTE_CP_NSYMB(q->cell.cp) * 20, c_init)) {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
for (uint32_t ns=0;ns<SRSLTE_NSLOTS_X_FRAME;ns++) {
|
|
|
|
uint32_t n_prs = 0;
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
n_prs += (seq.c[8 * SRSLTE_CP_NSYMB(q->cell.cp) * ns + i] << i);
|
|
|
|
}
|
|
|
|
q->n_prs_pusch[delta_ss][ns] = n_prs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
srslte_sequence_free(&seq);
|
|
|
|
return SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Computes sequence-group pattern f_gh according to 5.5.1.3 of 36.211 */
|
|
|
|
static int generate_group_hopping_f_gh(srslte_refsignal_ul_t *q) {
|
|
|
|
srslte_sequence_t seq;
|
|
|
|
bzero(&seq, sizeof(srslte_sequence_t));
|
|
|
|
|
|
|
|
if (srslte_sequence_LTE_pr(&seq, 160, q->cell.id / 30)) {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t ns=0;ns<SRSLTE_NSLOTS_X_FRAME;ns++) {
|
|
|
|
uint32_t f_gh = 0;
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
f_gh += (((uint32_t) seq.c[8 * ns + i]) << i);
|
|
|
|
}
|
|
|
|
q->f_gh[ns] = f_gh;
|
|
|
|
}
|
|
|
|
|
|
|
|
srslte_sequence_free(&seq);
|
|
|
|
return SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int generate_srslte_sequence_hopping_v(srslte_refsignal_ul_t *q) {
|
|
|
|
srslte_sequence_t seq;
|
|
|
|
bzero(&seq, sizeof(srslte_sequence_t));
|
|
|
|
|
|
|
|
for (uint32_t ns=0;ns<SRSLTE_NSLOTS_X_FRAME;ns++) {
|
|
|
|
for (uint32_t delta_ss=0;delta_ss<SRSLTE_NOF_DELTA_SS;delta_ss++) {
|
|
|
|
if (srslte_sequence_LTE_pr(&seq, 20, ((q->cell.id / 30) << 5) + ((q->cell.id%30)+delta_ss)%30)) {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
q->v_pusch[ns][delta_ss] = seq.c[ns];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
srslte_sequence_free(&seq);
|
|
|
|
return SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Initializes srslte_refsignal_ul_t object according to 3GPP 36.211 5.5
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int srslte_refsignal_ul_init(srslte_refsignal_ul_t * q, srslte_cell_t cell)
|
|
|
|
{
|
|
|
|
|
|
|
|
int ret = SRSLTE_ERROR_INVALID_INPUTS;
|
|
|
|
|
|
|
|
if (q != NULL && srslte_cell_isvalid(&cell)) {
|
|
|
|
|
|
|
|
bzero(q, sizeof(srslte_refsignal_ul_t));
|
|
|
|
q->cell = cell;
|
|
|
|
|
|
|
|
// Allocate temporal buffer for computing signal argument
|
|
|
|
q->tmp_arg = vec_malloc(SRSLTE_NRE * q->cell.nof_prb * sizeof(cf_t));
|
|
|
|
if (!q->tmp_arg) {
|
|
|
|
perror("malloc");
|
|
|
|
goto free_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Precompute n_prs
|
|
|
|
if (generate_n_prs(q)) {
|
|
|
|
goto free_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Precompute group hopping values u.
|
|
|
|
if (generate_group_hopping_f_gh(q)) {
|
|
|
|
goto free_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Precompute sequence hopping values v. Uses f_ss_pusch
|
|
|
|
if (generate_srslte_sequence_hopping_v(q)) {
|
|
|
|
goto free_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (generate_n_cs_cell(q->cell, q->n_cs_cell)) {
|
|
|
|
goto free_and_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
free_and_exit:
|
|
|
|
if (ret == SRSLTE_ERROR) {
|
|
|
|
srslte_refsignal_ul_free(q);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void srslte_refsignal_ul_free(srslte_refsignal_ul_t * q) {
|
|
|
|
if (q->tmp_arg) {
|
|
|
|
free(q->tmp_arg);
|
|
|
|
}
|
|
|
|
bzero(q, sizeof(srslte_refsignal_ul_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t largest_prime_lower_than(uint32_t x) {
|
|
|
|
/* get largest prime n_zc<len */
|
|
|
|
for (uint32_t i = NOF_PRIME_NUMBERS - 1; i > 0; i--) {
|
|
|
|
if (prime_numbers[i] < x) {
|
|
|
|
return prime_numbers[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void arg_r_uv_1prb(float *arg, uint32_t u) {
|
|
|
|
for (int i = 0; i < SRSLTE_NRE; i++) {
|
|
|
|
arg[i] = phi_M_sc_12[u][i] * M_PI / 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void arg_r_uv_2prb(float *arg, uint32_t u) {
|
|
|
|
for (int i = 0; i < 2*SRSLTE_NRE; i++) {
|
|
|
|
arg[i] = phi_M_sc_24[u][i] * M_PI / 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t get_q(uint32_t u, uint32_t v, uint32_t N_sz) {
|
|
|
|
float q;
|
|
|
|
float q_hat;
|
|
|
|
float n_sz = (float) N_sz;
|
|
|
|
|
|
|
|
q_hat = n_sz *(u + 1) / 31;
|
|
|
|
if ((((uint32_t) (2 * q_hat)) % 2) == 0) {
|
|
|
|
q = q_hat + 0.5 + v;
|
|
|
|
} else {
|
|
|
|
q = q_hat + 0.5 - v;
|
|
|
|
}
|
|
|
|
return (uint32_t) q;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void arg_r_uv_mprb(float *arg, uint32_t M_sc, uint32_t u, uint32_t v) {
|
|
|
|
|
|
|
|
uint32_t N_sz = largest_prime_lower_than(M_sc);
|
|
|
|
float q = get_q(u,v,N_sz);
|
|
|
|
float n_sz = (float) N_sz;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < M_sc; i++) {
|
|
|
|
float m = (float) (i%N_sz);
|
|
|
|
arg[i] = -M_PI * q * m * (m + 1) / n_sz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Computes argument of r_u_v signal */
|
|
|
|
static void compute_pusch_r_uv_arg(srslte_refsignal_ul_t *q, srslte_refsignal_drms_pusch_cfg_t *cfg, uint32_t nof_prb, uint32_t u, uint32_t v) {
|
|
|
|
if (nof_prb == 1) {
|
|
|
|
arg_r_uv_1prb(q->tmp_arg, u);
|
|
|
|
} else if (nof_prb == 2) {
|
|
|
|
arg_r_uv_2prb(q->tmp_arg, u);
|
|
|
|
} else {
|
|
|
|
arg_r_uv_mprb(q->tmp_arg, SRSLTE_NRE*nof_prb, u, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculates alpha according to 5.5.2.1.1 of 36.211 */
|
|
|
|
static float pusch_get_alpha(srslte_refsignal_ul_t *q, srslte_refsignal_drms_pusch_cfg_t *cfg, uint32_t ns) {
|
|
|
|
uint32_t n_drms_2_val = 0;
|
|
|
|
if (cfg->en_drms_2) {
|
|
|
|
n_drms_2_val = n_drms_2[cfg->cyclic_shift_for_drms];
|
|
|
|
}
|
|
|
|
uint32_t n_cs = (n_drms_1[cfg->cyclic_shift] + n_drms_2_val + q->n_prs_pusch[cfg->delta_ss][ns]) % 12;
|
|
|
|
|
|
|
|
return 2 * M_PI * (n_cs) / 12;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool srslte_refsignal_drms_pusch_cfg_isvalid(srslte_refsignal_ul_t *q, srslte_refsignal_drms_pusch_cfg_t *cfg, uint32_t nof_prb) {
|
|
|
|
if (cfg->cyclic_shift < SRSLTE_NOF_CSHIFT &&
|
|
|
|
cfg->cyclic_shift_for_drms < SRSLTE_NOF_CSHIFT &&
|
|
|
|
cfg->delta_ss < SRSLTE_NOF_DELTA_SS &&
|
|
|
|
nof_prb < q->cell.nof_prb) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void srslte_refsignal_drms_pusch_put(srslte_refsignal_ul_t *q, srslte_refsignal_drms_pusch_cfg_t *cfg,
|
|
|
|
cf_t *r_pusch,
|
|
|
|
uint32_t nof_prb,
|
|
|
|
uint32_t n_prb[2],
|
|
|
|
cf_t *sf_symbols)
|
|
|
|
{
|
|
|
|
for (uint32_t ns_idx=0;ns_idx<2;ns_idx++) {
|
|
|
|
DEBUG("Putting DRMS to n_prb: %d, L: %d, ns_idx: %d\n", n_prb[ns_idx], nof_prb, ns_idx);
|
|
|
|
uint32_t L = (ns_idx+1)*SRSLTE_CP_NSYMB(q->cell.cp)-4;
|
|
|
|
memcpy(&sf_symbols[SRSLTE_RE_IDX(q->cell.nof_prb, L, n_prb[ns_idx]*SRSLTE_NRE)],
|
|
|
|
&r_pusch[ns_idx*SRSLTE_NRE*nof_prb], nof_prb*SRSLTE_NRE*sizeof(cf_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate DRMS for PUSCH signal according to 5.5.2.1 of 36.211 */
|
|
|
|
int srslte_refsignal_dmrs_pusch_gen(srslte_refsignal_ul_t *q, srslte_refsignal_drms_pusch_cfg_t *cfg, uint32_t nof_prb, uint32_t sf_idx, cf_t *r_pusch)
|
|
|
|
{
|
|
|
|
|
|
|
|
int ret = SRSLTE_ERROR_INVALID_INPUTS;
|
|
|
|
if (srslte_refsignal_drms_pusch_cfg_isvalid(q, cfg, nof_prb)) {
|
|
|
|
ret = SRSLTE_ERROR;
|
|
|
|
|
|
|
|
for (uint32_t ns=2*sf_idx;ns<2*(sf_idx+1);ns++) {
|
|
|
|
// Get group hopping number u
|
|
|
|
uint32_t f_gh=0;
|
|
|
|
if (cfg->group_hopping_en) {
|
|
|
|
f_gh = q->f_gh[ns];
|
|
|
|
}
|
|
|
|
uint32_t u = (f_gh + (q->cell.id%30)+cfg->delta_ss)%30;
|
|
|
|
|
|
|
|
// Get sequence hopping number v
|
|
|
|
uint32_t v = 0;
|
|
|
|
if (nof_prb >= 6 && cfg->srslte_sequence_hopping_en) {
|
|
|
|
v = q->v_pusch[ns][cfg->delta_ss];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compute signal argument
|
|
|
|
compute_pusch_r_uv_arg(q, cfg, nof_prb, u, v);
|
|
|
|
|
|
|
|
// Add cyclic prefix alpha
|
|
|
|
float alpha = pusch_get_alpha(q, cfg, ns);
|
|
|
|
|
|
|
|
if (verbose == VERBOSE_DEBUG) {
|
|
|
|
uint32_t N_sz = largest_prime_lower_than(nof_prb*SRSLTE_NRE);
|
|
|
|
DEBUG("Generating PUSCH DRMS sequence with parameters:\n",0);
|
|
|
|
DEBUG("\tbeta: %.1f, nof_prb: %d, u: %d, v: %d, alpha: %f, N_sc: %d, root q: %d, nprs: %d\n",
|
|
|
|
cfg->beta_pusch, nof_prb, u, v, alpha, N_sz, get_q(u,v,N_sz),q->n_prs_pusch[cfg->delta_ss][ns]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do complex exponential and adjust amplitude
|
|
|
|
for (int i=0;i<SRSLTE_NRE*nof_prb;i++) {
|
|
|
|
r_pusch[(ns%2)*SRSLTE_NRE*nof_prb+i] = cfg->beta_pusch * cexpf(I*(q->tmp_arg[i] + alpha*i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int srslte_refsignal_dmrs_pucch_gen(srslte_refsignal_ul_t *q, pucch_cfg_t *cfg, uint32_t sf_idx, uint32_t n_rb, cf_t *r_pucch)
|
|
|
|
{
|
|
|
|
int ret = SRSLTE_ERROR_INVALID_INPUTS;
|
|
|
|
if (pucch_cfg_isvalid(cfg)) {
|
|
|
|
ret = SRSLTE_ERROR;
|
|
|
|
|
|
|
|
for (uint32_t ns=2*sf_idx;ns<2*(sf_idx+1);ns++) {
|
|
|
|
uint32_t N_rs=0;
|
|
|
|
uint32_t *pucch_symbol = NULL;
|
|
|
|
switch (cfg->format) {
|
|
|
|
case PUCCH_FORMAT_1:
|
|
|
|
case PUCCH_FORMAT_1A:
|
|
|
|
case PUCCH_FORMAT_1B:
|
|
|
|
if (SRSLTE_CP_ISNORM(q->cell.cp)) {
|
|
|
|
N_rs = 3;
|
|
|
|
pucch_symbol=pucch_symbol_format1_cpnorm;
|
|
|
|
} else {
|
|
|
|
N_rs=2;
|
|
|
|
pucch_symbol=pucch_symbol_format1_cpext;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUCCH_FORMAT_2:
|
|
|
|
if (SRSLTE_CP_ISNORM(q->cell.cp)) {
|
|
|
|
N_rs = 2;
|
|
|
|
pucch_symbol=pucch_symbol_format2_cpnorm;
|
|
|
|
} else {
|
|
|
|
N_rs=1;
|
|
|
|
pucch_symbol=pucch_symbol_format2_cpext;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUCCH_FORMAT_2A:
|
|
|
|
case PUCCH_FORMAT_2B:
|
|
|
|
N_rs = 2;
|
|
|
|
pucch_symbol=pucch_symbol_format2_cpnorm;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pucch_symbol) {
|
|
|
|
for (uint32_t m=0;m<N_rs;m++) {
|
|
|
|
uint32_t n_oc=0;
|
|
|
|
|
|
|
|
uint32_t l = pucch_symbol[m];
|
|
|
|
// Add cyclic prefix alpha
|
|
|
|
float alpha = pucch_get_alpha(q->n_cs_cell, cfg, q->cell.cp, true, ns, l, &n_oc);
|
|
|
|
|
|
|
|
// Choose number of symbols and orthogonal sequence from Tables 5.5.2.2.1-1 to -3
|
|
|
|
float *w=NULL;
|
|
|
|
switch (cfg->format) {
|
|
|
|
case PUCCH_FORMAT_1:
|
|
|
|
case PUCCH_FORMAT_1A:
|
|
|
|
case PUCCH_FORMAT_1B:
|
|
|
|
if (SRSLTE_CP_ISNORM(q->cell.cp)) {
|
|
|
|
w=w_arg_pucch_format1_cpnorm[n_oc];
|
|
|
|
} else {
|
|
|
|
w=w_arg_pucch_format1_cpext[n_oc];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUCCH_FORMAT_2:
|
|
|
|
if (SRSLTE_CP_ISNORM(q->cell.cp)) {
|
|
|
|
w=w_arg_pucch_format2_cpnorm;
|
|
|
|
} else {
|
|
|
|
w=w_arg_pucch_format2_cpext;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUCCH_FORMAT_2A:
|
|
|
|
case PUCCH_FORMAT_2B:
|
|
|
|
w=w_arg_pucch_format2_cpnorm;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (w) {
|
|
|
|
for (uint32_t n=0;n<SRSLTE_NRE*n_rb;n++) {
|
|
|
|
r_pucch[(ns%2)*SRSLTE_NRE*n_rb*N_rs+m*SRSLTE_NRE*n_rb+n] = cfg->beta_pucch*cexpf(I*(w[m]+q->tmp_arg[n]+alpha*n));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret = SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void srslte_refsignal_srs_gen(srslte_refsignal_ul_t *q, srslte_refsignal_srs_cfg_t *cfg, uint32_t ns, cf_t *r_srs)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|