phich.c 48.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
 * the OAI Public License, Version 1.0  (the "License"); you may not use this file
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/*! \file PHY/LTE_TRANSPORT/phich.c
* \brief Top-level routines for generating and decoding  the PHICH/HI physical/transport channel V8.6 2009-03
* \author R. Knopp
* \date 2011
* \version 0.1
* \company Eurecom
* \email: knopp@eurecom.fr
* \note
* \warning
*/

#include "PHY/defs.h"
#include "PHY/extern.h"
#include "SCHED/defs.h"
#include "defs.h"
37 38 39 40

#include "LAYER2/MAC/extern.h"
#include "LAYER2/MAC/defs.h"

41 42 43 44
#ifndef USER_MODE
#include "ARCH/CBMIMO1/DEVICE_DRIVER/extern.h"
#endif

45 46
#include "T.h"

47 48 49 50 51 52 53
//#define DEBUG_PHICH 1

//extern unsigned short pcfich_reg[4];
//extern unsigned char pcfich_first_reg_idx;

//unsigned short phich_reg[MAX_NUM_PHICH_GROUPS][3];

Raymond Knopp's avatar
 
Raymond Knopp committed
54 55

uint8_t rv_table[4] = {0, 2, 3, 1};
56

57 58
uint8_t get_mi(LTE_DL_FRAME_PARMS *frame_parms,uint8_t subframe)
{
59 60

  // for FDD
Raymond Knopp's avatar
 
Raymond Knopp committed
61
  if (frame_parms->frame_type == FDD)
62 63 64 65 66
    return 1;

  // for TDD
  switch (frame_parms->tdd_config) {

67
  case 0:
68 69 70
    if ((subframe==0) || (subframe==5))
      return(2);
    else return(1);
71

72
    break;
73 74

  case 1:
75 76 77
    if ((subframe==0) || (subframe==5))
      return(0);
    else return(1);
78

79
    break;
80 81

  case 2:
82 83 84
    if ((subframe==3) || (subframe==8))
      return(1);
    else return(0);
85

86
    break;
87 88

  case 3:
89 90 91
    if ((subframe==0) || (subframe==8) || (subframe==9))
      return(1);
    else return(0);
92

93
    break;
94

95 96 97 98
  case 4:
    if ((subframe==8) || (subframe==9))
      return(1);
    else return(0);
99

100
    break;
101

102 103 104 105
  case 5:
    if (subframe==8)
      return(1);
    else return(0);
106

107
    break;
108

109
  case 6:
110 111 112
    return(1);
    break;

113 114 115 116 117
  default:
    return(0);
  }
}

118 119
unsigned char subframe2_ul_harq(LTE_DL_FRAME_PARMS *frame_parms,unsigned char subframe)
{
120

Raymond Knopp's avatar
 
Raymond Knopp committed
121
  if (frame_parms->frame_type == FDD)
122
    return(subframe&7);
123

124 125
  switch (frame_parms->tdd_config) {
  case 3:
126
    if ( (subframe == 8) || (subframe == 9) ) {
127
      return(subframe-8);
128
    } else if (subframe==0)
129 130 131
      return(2);
    else {
      LOG_E(PHY,"phich.c: subframe2_ul_harq, illegal subframe %d for tdd_config %d\n",
132
            subframe,frame_parms->tdd_config);
133 134
      return(0);
    }
135

136
    break;
137

138
  }
139

140 141 142
  return(0);
}

143 144
uint8_t phich_frame2_pusch_frame(LTE_DL_FRAME_PARMS *frame_parms,frame_t frame,uint8_t subframe)
{
Raymond Knopp's avatar
 
Raymond Knopp committed
145
  if (frame_parms->frame_type == FDD) {
146
    return((subframe<4) ? (frame - 1) : frame);
147
  } else {
148 149 150 151 152
    // Note this is not true, but it doesn't matter, the frame number is irrelevant for TDD!
    return(frame);
  }
}

153 154
uint8_t phich_subframe2_pusch_subframe(LTE_DL_FRAME_PARMS *frame_parms,uint8_t subframe)
{
155

Raymond Knopp's avatar
 
Raymond Knopp committed
156
  if (frame_parms->frame_type == FDD)
157
    return(subframe<4 ? (subframe+6) : (subframe-4));
158

159 160 161 162 163 164
  switch (frame_parms->tdd_config) {
  case 0:
    if (subframe == 0)
      return(3);
    else if (subframe == 5) {
      return (8);
165
    } else if (subframe == 6)
166 167 168 169 170
      return (2);
    else if (subframe == 1)
      return (7);
    else {
      LOG_E(PHY, "phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
171
            subframe,frame_parms->tdd_config);
172 173
      return(0);
    }
174

175
    break;
176

177 178 179
  case 1:
    if (subframe == 6)
      return(2);
180
    else if (subframe == 9)
181 182 183 184 185 186 187
      return (3);
    else if (subframe == 1)
      return (7);
    else if (subframe == 4)
      return (8);
    else {
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
188
            subframe,frame_parms->tdd_config);
189 190
      return(0);
    }
191

192
    break;
193

194 195 196 197 198 199 200
  case 2:
    if (subframe == 8)
      return(2);
    else if (subframe == 3)
      return (7);
    else {
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
201
            subframe,frame_parms->tdd_config);
202 203
      return(0);
    }
204

205
    break;
206

207
  case 3:
208
    if ( (subframe == 8) || (subframe == 9) ) {
209
      return(subframe-6);
210
    } else if (subframe==0)
211 212 213
      return(4);
    else {
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
214
            subframe,frame_parms->tdd_config);
215 216
      return(0);
    }
217

218
    break;
219

220
  case 4:
221
    if ( (subframe == 8) || (subframe == 9) ) {
222
      return(subframe-6);
223
    } else {
224
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
225
            subframe,frame_parms->tdd_config);
226 227
      return(0);
    }
228 229 230

    break;

231
  case 5:
232
    if (subframe == 8) {
233
      return(2);
234
    } else {
235
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
236
            subframe,frame_parms->tdd_config);
237 238
      return(0);
    }
239

240 241 242
    break;

  case 6:
243
    if (subframe == 6) {
244
      return(2);
245
    } else if (subframe == 9) {
246
      return(3);
247
    } else if (subframe == 0) {
248
      return(4);
249
    } else if (subframe == 1) {
250
      return(7);
251
    } else if (subframe == 5) {
252
      return(8);
253
    } else {
254
      LOG_E(PHY,"phich.c: phich_subframe2_pusch_subframe, illegal subframe %d for tdd_config %d\n",
255
            subframe,frame_parms->tdd_config);
256 257
      return(0);
    }
258

259
    break;
260

261
  }
262

263 264 265
  return(0);
}

266 267
int check_pcfich(LTE_DL_FRAME_PARMS *frame_parms,uint16_t reg)
{
268 269 270 271 272 273

  if ((reg == frame_parms->pcfich_reg[0]) ||
      (reg == frame_parms->pcfich_reg[1]) ||
      (reg == frame_parms->pcfich_reg[2]) ||
      (reg == frame_parms->pcfich_reg[3]))
    return(1);
274

275 276 277
  return(0);
}

278 279
void generate_phich_reg_mapping(LTE_DL_FRAME_PARMS *frame_parms)
{
280 281 282 283 284 285

  unsigned short n0 = (frame_parms->N_RB_DL * 2) - 4;  // 2 REG per RB less the 4 used by PCFICH in first symbol
  unsigned short n1 = (frame_parms->N_RB_DL * 3);      // 3 REG per RB in second and third symbol
  unsigned short n2 = n1;
  unsigned short mprime = 0;
  unsigned short Ngroup_PHICH;
286 287
  //  uint16_t *phich_reg = frame_parms->phich_reg;
  uint16_t *pcfich_reg = frame_parms->pcfich_reg;
288 289 290

  // compute Ngroup_PHICH (see formula at beginning of Section 6.9 in 36-211
  Ngroup_PHICH = (frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)/48;
291

292

293 294
  if (((frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)%48) > 0)
    Ngroup_PHICH++;
295

296 297 298 299
  // check if Extended prefix
  if (frame_parms->Ncp == 1) {
    Ngroup_PHICH<<=1;
  }
300

301 302 303 304 305 306 307 308 309
  //#ifdef DEBUG_PHICH
  printf("Ngroup_PHICH %d (phich_config_common.phich_resource %d,phich_config_common.phich_duration %s, NidCell %d,Ncp %d, frame_type %d), smallest pcfich REG %d, n0 %d, n1 %d (first PHICH REG %d)\n",
	 ((frame_parms->Ncp == NORMAL)?Ngroup_PHICH:(Ngroup_PHICH>>1)),
	 frame_parms->phich_config_common.phich_resource,
	 frame_parms->phich_config_common.phich_duration==normal?"normal":"extended",
	 frame_parms->Nid_cell,frame_parms->Ncp,frame_parms->frame_type,
	 pcfich_reg[frame_parms->pcfich_first_reg_idx],
	 n0,
	 n1,
310
	 ((frame_parms->Nid_cell))%n0);
311
  //#endif
312

313
  // This is the algorithm from Section 6.9.3 in 36-211, it works only for normal PHICH duration for now ...
314

315 316 317 318 319
  for (mprime=0; 
       mprime<((frame_parms->Ncp == NORMAL)?Ngroup_PHICH:(Ngroup_PHICH>>1)); 
       mprime++) {

    if (frame_parms->phich_config_common.phich_duration==normal) { // normal PHICH duration
320 321 322 323

      frame_parms->phich_reg[mprime][0] = (frame_parms->Nid_cell + mprime)%n0;

      if (frame_parms->phich_reg[mprime][0]>=pcfich_reg[frame_parms->pcfich_first_reg_idx])
324 325
        frame_parms->phich_reg[mprime][0]++;

326
      if (frame_parms->phich_reg[mprime][0]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+1)&3])
327 328
        frame_parms->phich_reg[mprime][0]++;

329
      if (frame_parms->phich_reg[mprime][0]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+2)&3])
330 331
        frame_parms->phich_reg[mprime][0]++;

332
      if (frame_parms->phich_reg[mprime][0]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+3)&3])
333
        frame_parms->phich_reg[mprime][0]++;
334 335 336

      frame_parms->phich_reg[mprime][1] = (frame_parms->Nid_cell + mprime + (n0/3))%n0;

337
      
338
      if (frame_parms->phich_reg[mprime][1]>=pcfich_reg[frame_parms->pcfich_first_reg_idx])
339
        frame_parms->phich_reg[mprime][1]++;
340
      
341
      if (frame_parms->phich_reg[mprime][1]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+1)&3])
342 343
        frame_parms->phich_reg[mprime][1]++;

344
      if (frame_parms->phich_reg[mprime][1]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+2)&3])
345 346
        frame_parms->phich_reg[mprime][1]++;

347
      if (frame_parms->phich_reg[mprime][1]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+3)&3])
348
        frame_parms->phich_reg[mprime][1]++;
349
      
350 351

      frame_parms->phich_reg[mprime][2] = (frame_parms->Nid_cell + mprime + (2*n0/3))%n0;
352
      
353
      if (frame_parms->phich_reg[mprime][2]>=pcfich_reg[frame_parms->pcfich_first_reg_idx])
354 355
        frame_parms->phich_reg[mprime][2]++;

356
      if (frame_parms->phich_reg[mprime][2]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+1)&3])
357 358
        frame_parms->phich_reg[mprime][2]++;

359
      if (frame_parms->phich_reg[mprime][2]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+2)&3])
360 361
        frame_parms->phich_reg[mprime][2]++;

362
      if (frame_parms->phich_reg[mprime][2]>=pcfich_reg[(frame_parms->pcfich_first_reg_idx+3)&3])
363
        frame_parms->phich_reg[mprime][2]++;
364 365 366 367 368
      
      //#ifdef DEBUG_PHICH
      printf("phich_reg :%d => %d,%d,%d\n",mprime,frame_parms->phich_reg[mprime][0],frame_parms->phich_reg[mprime][1],frame_parms->phich_reg[mprime][2]);
      //#endif
    } else { // extended PHICH duration
369 370 371 372 373 374 375 376
      frame_parms->phich_reg[mprime<<1][0] = (frame_parms->Nid_cell + mprime)%n0;
      frame_parms->phich_reg[1+(mprime<<1)][0] = (frame_parms->Nid_cell + mprime)%n0;

      frame_parms->phich_reg[mprime<<1][1] = ((frame_parms->Nid_cell*n1/n0) + mprime + (n1/3))%n1;
      frame_parms->phich_reg[mprime<<1][2] = ((frame_parms->Nid_cell*n2/n0) + mprime + (2*n2/3))%n2;

      frame_parms->phich_reg[1+(mprime<<1)][1] = ((frame_parms->Nid_cell*n1/n0) + mprime + (n1/3))%n1;
      frame_parms->phich_reg[1+(mprime<<1)][2] = ((frame_parms->Nid_cell*n2/n0) + mprime + (2*n2/3))%n2;
377 378 379 380
      //#ifdef DEBUG_PHICH
      printf("phich_reg :%d => %d,%d,%d\n",mprime<<1,frame_parms->phich_reg[mprime<<1][0],frame_parms->phich_reg[mprime][1],frame_parms->phich_reg[mprime][2]);
      printf("phich_reg :%d => %d,%d,%d\n",1+(mprime<<1),frame_parms->phich_reg[1+(mprime<<1)][0],frame_parms->phich_reg[1+(mprime<<1)][1],frame_parms->phich_reg[1+(mprime<<1)][2]);
      //#endif
381 382 383 384 385 386
    }
  } // mprime loop
}  // num_pdcch_symbols loop


void generate_phich_emul(LTE_DL_FRAME_PARMS *frame_parms,
387 388 389
                         uint8_t HI,
                         uint8_t subframe)
{
390 391 392 393


}

394 395
int32_t alam_bpsk_perm1[4] = {2,1,4,3}; // -conj(x) 1 (-1-j) -> 2 (1-j), 2->1, 3 (-1+j) -> (4) 1+j, 4->3
int32_t alam_bpsk_perm2[4] = {3,4,2,1}; // conj(x) 1 (-1-j) -> 3 (-1+j), 3->1, 2 (1-j) -> 4 (1+j), 4->2
396

397
// This routine generates the PHICH
398 399

void generate_phich(LTE_DL_FRAME_PARMS *frame_parms,
400 401 402 403 404
                    int16_t amp,
                    uint8_t nseq_PHICH,
                    uint8_t ngroup_PHICH,
                    uint8_t HI,
                    uint8_t subframe,
405
                    int32_t **y)
406 407
{

408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
  int16_t d[24],*dp;
  //  unsigned int i,aa;
  unsigned int re_offset;
  int16_t y0_16[8],y1_16[8];
  int16_t *y0,*y1;
  // scrambling
  uint32_t x1, x2, s=0;
  uint8_t reset = 1;
  int16_t cs[12];
  uint32_t i,i2,i3,m,j;
  int16_t gain_lin_QPSK;
  uint32_t subframe_offset=((frame_parms->Ncp==0)?14:12)*frame_parms->ofdm_symbol_size*subframe;

  memset(d,0,24*sizeof(int16_t));

423 424
  if (frame_parms->mode1_flag==1)
    gain_lin_QPSK = (int16_t)(((int32_t)amp*ONE_OVER_SQRT2_Q15)>>15);
425
  else
426
    gain_lin_QPSK = amp/2;
427 428 429 430 431 432

  //printf("PHICH : gain_lin_QPSK %d\n",gain_lin_QPSK);

  // BPSK modulation of HI input (to be repeated 3 times, 36-212 Section 5.3.5, p. 56 in v8.6)
  if (HI>0)
    HI=1;
433

434

435 436
  //  c = (1-(2*HI))*SSS_AMP;
  // x1 is set in lte_gold_generic
437
  x2 = (((subframe+1)*((frame_parms->Nid_cell<<1)+1))<<9) + frame_parms->Nid_cell;
438

439
  s = lte_gold_generic(&x1, &x2, reset);
440

441
  // compute scrambling sequence
442
  for (i=0; i<12; i++) {
443 444 445 446 447 448 449 450
    cs[i] = (uint8_t)((s>>(i&0x1f))&1);
    cs[i] = (cs[i] == 0) ? (1-(HI<<1)) : ((HI<<1)-1);
  }

  if (frame_parms->Ncp == 0) { // Normal Cyclic Prefix

    //    printf("Doing PHICH : Normal CP, subframe %d\n",subframe);
    // 12 output symbols (Msymb)
451
    for (i=0,i2=0,i3=0; i<3; i++,i2+=4,i3+=8) {
452 453
      switch (nseq_PHICH) {
      case 0: // +1 +1 +1 +1
454 455 456 457 458 459 460 461 462 463
        d[i3]   = cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

464
      case 1: // +1 -1 +1 -1
465 466 467 468 469 470 471 472 473 474
        d[i3] = cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = -cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = -cs[3+i2];
        break;

475
      case 2: // +1 +1 -1 -1
476 477 478 479 480 481 482 483 484 485
        d[i3]   = cs[i2];
        d[1+i3]   = cs[i2];
        d[2+i3] = cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = -cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = -cs[3+i2];
        break;

486
      case 3: // +1 -1 -1 +1
487 488 489 490 491 492 493 494 495 496
        d[i3]   = cs[i2];
        d[1+i3]   = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = -cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = -cs[2+i2];
        d[6+i3] = cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

497
      case 4: // +j +j +j +j
498 499 500 501 502 503 504 505 506 507
        d[i3]   = -cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

508
      case 5: // +j -j +j -j
509 510 511 512 513 514 515 516 517 518
        d[1+i3] = cs[i2];
        d[3+i3] = -cs[1+i2];
        d[5+i3] = cs[2+i2];
        d[7+i3] = -cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[6+i3] = cs[3+i2];
        break;

519
      case 6: // +j +j -j -j
520 521 522 523 524 525 526 527 528 529
        d[1+i3] = cs[i2];
        d[3+i3] = cs[1+i2];
        d[5+i3] = -cs[2+i2];
        d[7+i3] = -cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = -cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[6+i3] = cs[3+i2];
        break;

530
      case 7: // +j -j -j +j
531 532 533 534 535 536 537 538 539 540
        d[1+i3] = cs[i2];
        d[3+i3] = -cs[1+i2];
        d[5+i3] = -cs[2+i2];
        d[7+i3] = cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        break;

541
      default:
542
        LOG_E(PHY,"phich_coding.c: Illegal PHICH Number\n");
543 544
      } // nseq_PHICH
    }
545

546 547
#ifdef DEBUG_PHICH
    LOG_D(PHY,"[PUSCH 0]PHICH d = ");
548 549

    for (i=0; i<24; i+=2)
550
      LOG_D(PHY,"(%d,%d)",d[i],d[i+1]);
551

552 553
    LOG_D(PHY,"\n");
#endif
554 555

    // modulation here
556 557
    if (frame_parms->mode1_flag == 0) {
      // do Alamouti precoding here
558

559 560 561 562
      // Symbol 0
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][0]*6);

      if (re_offset > frame_parms->ofdm_symbol_size)
563
        re_offset -= (frame_parms->ofdm_symbol_size-1);
564 565 566

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];
567

568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
      // first antenna position n -> x0
      y0_16[0]   = d[0]*gain_lin_QPSK;
      y0_16[1]   = d[1]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[2]*gain_lin_QPSK;
      y1_16[1]   = d[3]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[4]*gain_lin_QPSK;
      y0_16[5]   = d[5]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[6]*gain_lin_QPSK;
      y1_16[5]   = d[7]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

592 593 594 595 596 597 598
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m];
          y1[j]   += y1_16[m++];
          y0[j+1] += y0_16[m];
          y1[j+1] += y1_16[m++];
        }
599
      }
600

601 602 603 604
      // Symbol 1
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][1]*6);

      if (re_offset > frame_parms->ofdm_symbol_size)
605
        re_offset -= (frame_parms->ofdm_symbol_size-1);
606 607 608

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];
609

610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
      // first antenna position n -> x0
      y0_16[0]   = d[8]*gain_lin_QPSK;
      y0_16[1]   = d[9]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[10]*gain_lin_QPSK;
      y1_16[1]   = d[11]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[12]*gain_lin_QPSK;
      y0_16[5]   = d[13]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[14]*gain_lin_QPSK;
      y1_16[5]   = d[15]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

634 635 636 637 638 639 640
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m];
          y1[j]   += y1_16[m++];
          y0[j+1] += y0_16[m];
          y1[j+1] += y1_16[m++];
        }
641 642 643 644 645 646
      }

      // Symbol 2
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][2]*6);

      if (re_offset > frame_parms->ofdm_symbol_size)
647
        re_offset -= (frame_parms->ofdm_symbol_size-1);
648 649 650

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];
651

652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
      // first antenna position n -> x0
      y0_16[0]   = d[16]*gain_lin_QPSK;
      y0_16[1]   = d[17]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[18]*gain_lin_QPSK;
      y1_16[1]   = d[19]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[20]*gain_lin_QPSK;
      y0_16[5]   = d[21]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[22]*gain_lin_QPSK;
      y1_16[5]   = d[23]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

676 677 678 679 680 681 682
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m];
          y1[j]   += y1_16[m++];
          y0[j+1] += y0_16[m];
          y1[j+1] += y1_16[m++];
        }
683 684 685 686 687 688 689 690 691 692
      }

    } // mode1_flag

    else {
      // Symbol 0
      //      printf("[PUSCH 0]PHICH REG %d\n",frame_parms->phich_reg[ngroup_PHICH][0]);
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][0]*6);

      if (re_offset > frame_parms->ofdm_symbol_size)
693
        re_offset -= (frame_parms->ofdm_symbol_size-1);
694 695 696 697 698 699 700 701 702 703 704 705 706

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      //      printf("y0 %p\n",y0);

      y0_16[0]   = d[0]*gain_lin_QPSK;
      y0_16[1]   = d[1]*gain_lin_QPSK;
      y0_16[2]   = d[2]*gain_lin_QPSK;
      y0_16[3]   = d[3]*gain_lin_QPSK;
      y0_16[4]   = d[4]*gain_lin_QPSK;
      y0_16[5]   = d[5]*gain_lin_QPSK;
      y0_16[6]   = d[6]*gain_lin_QPSK;
      y0_16[7]   = d[7]*gain_lin_QPSK;

707 708 709 710 711
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m++];
          y0[j+1] += y0_16[m++];
        }
712
      }
713

714 715 716 717 718
      // Symbol 1
      //      printf("[PUSCH 0]PHICH REG %d\n",frame_parms->phich_reg[ngroup_PHICH][1]);
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][1]*6);

      if (re_offset > frame_parms->ofdm_symbol_size)
719
        re_offset -= (frame_parms->ofdm_symbol_size-1);
720 721

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
722

723 724 725 726 727 728 729 730 731
      y0_16[0]   = d[8]*gain_lin_QPSK;
      y0_16[1]   = d[9]*gain_lin_QPSK;
      y0_16[2]   = d[10]*gain_lin_QPSK;
      y0_16[3]   = d[11]*gain_lin_QPSK;
      y0_16[4]   = d[12]*gain_lin_QPSK;
      y0_16[5]   = d[13]*gain_lin_QPSK;
      y0_16[6]   = d[14]*gain_lin_QPSK;
      y0_16[7]   = d[15]*gain_lin_QPSK;

732 733 734 735 736
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m++];
          y0[j+1] += y0_16[m++];
        }
737 738 739 740 741 742 743
      }

      // Symbol 2
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][2]*6);

      //      printf("[PUSCH 0]PHICH REG %d\n",frame_parms->phich_reg[ngroup_PHICH][2]);
      if (re_offset > frame_parms->ofdm_symbol_size)
744 745
        re_offset -= (frame_parms->ofdm_symbol_size-1);

746
      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
747

748 749 750 751 752 753 754 755 756
      y0_16[0]   = d[16]*gain_lin_QPSK;
      y0_16[1]   = d[17]*gain_lin_QPSK;
      y0_16[2]   = d[18]*gain_lin_QPSK;
      y0_16[3]   = d[19]*gain_lin_QPSK;
      y0_16[4]   = d[20]*gain_lin_QPSK;
      y0_16[5]   = d[21]*gain_lin_QPSK;
      y0_16[6]   = d[22]*gain_lin_QPSK;
      y0_16[7]   = d[23]*gain_lin_QPSK;

757 758 759 760 761
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j]   += y0_16[m++];
          y0[j+1] += y0_16[m++];
        }
762
      }
763

764 765
      /*
      for (i=0;i<512;i++)
766
      printf("re %d (%d): %d,%d\n",i,subframe_offset+i,((int16_t*)&y[0][subframe_offset+i])[0],((int16_t*)&y[0][subframe_offset+i])[1]);
767 768
      */
    } // mode1_flag
769 770
  } else { // extended prefix

771 772 773
    // 6 output symbols
    if ((ngroup_PHICH & 1) == 1)
      dp = &d[4];
774
    else
775 776 777
      dp = d;

    switch (nseq_PHICH) {
778
    case 0: // +1 +1
779 780 781 782 783 784 785 786 787 788 789 790 791
      dp[0]  = cs[0];
      dp[2]  = cs[1];
      dp[8]  = cs[2];
      dp[10] = cs[3];
      dp[16] = cs[4];
      dp[18] = cs[5];
      dp[1]  = cs[0];
      dp[3]  = cs[1];
      dp[9]  = cs[2];
      dp[11] = cs[3];
      dp[17] = cs[4];
      dp[19] = cs[5];
      break;
792

793 794 795 796 797 798 799 800 801 802 803 804 805 806
    case 1: // +1 -1
      dp[0]  = cs[0];
      dp[2]  = -cs[1];
      dp[8]  = cs[2];
      dp[10] = -cs[3];
      dp[16] = cs[4];
      dp[18] = -cs[5];
      dp[1]  = cs[0];
      dp[3]  = -cs[1];
      dp[9]  = cs[2];
      dp[11] = -cs[3];
      dp[17] = cs[4];
      dp[19] = -cs[5];
      break;
807 808

    case 2: // +j +j
809 810 811 812 813 814 815 816 817 818 819 820
      dp[1]  = cs[0];
      dp[3]  = cs[1];
      dp[9]  = cs[2];
      dp[11] = cs[3];
      dp[17] = cs[4];
      dp[19] = cs[5];
      dp[0]  = -cs[0];
      dp[2]  = -cs[1];
      dp[8]  = -cs[2];
      dp[10] = -cs[3];
      dp[16] = -cs[4];
      dp[18] = -cs[5];
821

822
      break;
823 824

    case 3: // +j -j
825 826 827 828 829 830 831 832 833 834 835 836 837
      dp[1]  = cs[0];
      dp[3]  = -cs[1];
      dp[9]  = cs[2];
      dp[11] = -cs[3];
      dp[17] = cs[4];
      dp[19] = -cs[5];
      dp[0]  = -cs[0];
      dp[2]  = cs[1];
      dp[8]  = -cs[2];
      dp[10] = cs[3];
      dp[16] = -cs[4];
      dp[18] = cs[5];
      break;
838

839 840 841
    default:
      LOG_E(PHY,"phich_coding.c: Illegal PHICH Number\n");
    }
842 843 844



845 846 847 848
    if (frame_parms->mode1_flag == 0) {
      // do Alamouti precoding here
      // Symbol 0
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][0]*6);
849

850
      if (re_offset > frame_parms->ofdm_symbol_size)
851
        re_offset -= (frame_parms->ofdm_symbol_size-1);
852 853 854

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];
855

856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
      // first antenna position n -> x0
      y0_16[0]   = d[0]*gain_lin_QPSK;
      y0_16[1]   = d[1]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[2]*gain_lin_QPSK;
      y1_16[1]   = d[3]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[4]*gain_lin_QPSK;
      y0_16[5]   = d[5]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[6]*gain_lin_QPSK;
      y1_16[5]   = d[7]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

880 881 882 883 884 885 886
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j] += y0_16[m];
          y1[j] += y1_16[m++];
          y0[j+1] += y0_16[m];
          y1[j+1] += y1_16[m++];
        }
887 888 889 890
      }

      // Symbol 1
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][1]<<2);
891

892
      if (re_offset > frame_parms->ofdm_symbol_size)
893 894
        re_offset -= (frame_parms->ofdm_symbol_size-1);

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
      re_offset += (frame_parms->ofdm_symbol_size);

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];

      // first antenna position n -> x0
      y0_16[0]   = d[8]*gain_lin_QPSK;
      y0_16[1]   = d[9]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[10]*gain_lin_QPSK;
      y1_16[1]   = d[11]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[12]*gain_lin_QPSK;
      y0_16[5]   = d[13]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[14]*gain_lin_QPSK;
      y1_16[5]   = d[15]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

924 925 926 927 928
      for (i=0,j=0,m=0; i<4; i++,j+=2) {
        y0[j] += y0_16[m];
        y1[j] += y1_16[m++];
        y0[j+1] += y0_16[m];
        y1[j+1] += y1_16[m++];
929 930 931 932
      }

      // Symbol 2
      re_offset = frame_parms->first_carrier_offset +  (frame_parms->phich_reg[ngroup_PHICH][2]<<2);
933

934
      if (re_offset > frame_parms->ofdm_symbol_size)
935 936
        re_offset -= (frame_parms->ofdm_symbol_size-1);

937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
      re_offset += (frame_parms->ofdm_symbol_size<<1);

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
      y1 = (int16_t*)&y[1][re_offset+subframe_offset];

      // first antenna position n -> x0
      y0_16[0]   = d[16]*gain_lin_QPSK;
      y0_16[1]   = d[17]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[0]   = -d[18]*gain_lin_QPSK;
      y1_16[1]   = d[19]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[2] = -y1_16[0];
      y0_16[3] = y1_16[1];
      y1_16[2] = y0_16[0];
      y1_16[3] = -y0_16[1];

      // first antenna position n -> x0
      y0_16[4]   = d[20]*gain_lin_QPSK;
      y0_16[5]   = d[21]*gain_lin_QPSK;
      // second antenna position n -> -x1*
      y1_16[4]   = -d[22]*gain_lin_QPSK;
      y1_16[5]   = d[23]*gain_lin_QPSK;
      // fill in the rest of the ALAMOUTI precoding
      y0_16[6] = -y1_16[4];
      y0_16[7] = y1_16[5];
      y1_16[6] = y0_16[4];
      y1_16[7] = -y0_16[5];

966 967 968 969 970
      for (i=0,j=0,m=0; i<4; i++,j+=2) {
        y0[j]   += y0_16[m];
        y1[j]   += y1_16[m++];
        y0[j+1] += y0_16[m];
        y1[j+1] += y1_16[m++];
971
      }
972
    } else {
973 974 975

      // Symbol 0
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][0]*6);
976

977
      if (re_offset > frame_parms->ofdm_symbol_size)
978
        re_offset -= (frame_parms->ofdm_symbol_size-1);
979 980

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
981

982 983 984 985 986 987 988 989 990
      y0_16[0]   = d[0]*gain_lin_QPSK;
      y0_16[1]   = d[1]*gain_lin_QPSK;
      y0_16[2]   = d[2]*gain_lin_QPSK;
      y0_16[3]   = d[3]*gain_lin_QPSK;
      y0_16[4]   = d[4]*gain_lin_QPSK;
      y0_16[5]   = d[5]*gain_lin_QPSK;
      y0_16[6]   = d[6]*gain_lin_QPSK;
      y0_16[7]   = d[7]*gain_lin_QPSK;

991 992 993 994 995
      for (i=0,j=0,m=0; i<6; i++,j+=2) {
        if ((i!=(frame_parms->nushift))&&(i!=(frame_parms->nushift+3))) {
          y0[j] += y0_16[m++];
          y0[j+1] += y0_16[m++];
        }
996 997 998 999
      }

      // Symbol 1
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][1]<<2);
1000

1001
      if (re_offset > frame_parms->ofdm_symbol_size)
1002 1003
        re_offset -= (frame_parms->ofdm_symbol_size-1);

1004 1005 1006
      re_offset += (frame_parms->ofdm_symbol_size);

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
1007

1008 1009 1010 1011 1012 1013 1014 1015 1016
      y0_16[0]   = d[8]*gain_lin_QPSK;
      y0_16[1]   = d[9]*gain_lin_QPSK;
      y0_16[2]   = d[10]*gain_lin_QPSK;
      y0_16[3]   = d[11]*gain_lin_QPSK;
      y0_16[4]   = d[12]*gain_lin_QPSK;
      y0_16[5]   = d[13]*gain_lin_QPSK;
      y0_16[6]   = d[14]*gain_lin_QPSK;
      y0_16[7]   = d[15]*gain_lin_QPSK;

1017 1018 1019
      for (i=0,j=0,m=0; i<4; i++,j+=2) {
        y0[j] += y0_16[m++];
        y0[j+1] += y0_16[m++];
1020 1021 1022 1023 1024
      }


      // Symbol 2
      re_offset = frame_parms->first_carrier_offset + (frame_parms->phich_reg[ngroup_PHICH][2]<<2);
1025

1026
      if (re_offset > frame_parms->ofdm_symbol_size)
1027 1028
        re_offset -= (frame_parms->ofdm_symbol_size-1);

1029 1030 1031
      re_offset += (frame_parms->ofdm_symbol_size<<1);

      y0 = (int16_t*)&y[0][re_offset+subframe_offset];
1032

1033 1034 1035 1036 1037 1038 1039 1040 1041
      y0_16[0]   = d[16]*gain_lin_QPSK;
      y0_16[1]   = d[17]*gain_lin_QPSK;
      y0_16[2]   = d[18]*gain_lin_QPSK;
      y0_16[3]   = d[19]*gain_lin_QPSK;
      y0_16[4]   = d[20]*gain_lin_QPSK;
      y0_16[5]   = d[21]*gain_lin_QPSK;
      y0_16[6]   = d[22]*gain_lin_QPSK;
      y0_16[7]   = d[23]*gain_lin_QPSK;

1042 1043 1044
      for (i=0,j=0,m=0; i<4; i++) {
        y0[j]   += y0_16[m++];
        y0[j+1] += y0_16[m++];
1045 1046 1047 1048
      }

    } // mode1_flag
  } // normal/extended prefix
1049
}
1050 1051 1052

// This routine demodulates the PHICH and updates PUSCH/ULSCH parameters

1053
void rx_phich(PHY_VARS_UE *ue,
1054
	      UE_rxtx_proc_t *proc,
1055 1056 1057
              uint8_t subframe,
              uint8_t eNB_id)
{
1058 1059


1060 1061
  LTE_DL_FRAME_PARMS *frame_parms=&ue->frame_parms;
  LTE_UE_PDCCH **pdcch_vars = ue->pdcch_vars;
1062 1063

  //  uint8_t HI;
1064
  uint8_t harq_pid = phich_subframe_to_harq_pid(frame_parms,proc->frame_rx,subframe);
1065
  LTE_UE_ULSCH_t *ulsch = ue->ulsch[eNB_id];
1066 1067 1068
  int16_t phich_d[24],*phich_d_ptr,HI16;
  //  unsigned int i,aa;
  int8_t d[24],*dp;
1069
  uint16_t reg_offset;
1070 1071 1072 1073 1074 1075

  // scrambling
  uint32_t x1, x2, s=0;
  uint8_t reset = 1;
  int16_t cs[12];
  uint32_t i,i2,i3,phich_quad;
1076
  int32_t **rxdataF_comp = pdcch_vars[eNB_id]->rxdataF_comp;
1077 1078 1079
  uint8_t Ngroup_PHICH,ngroup_PHICH,nseq_PHICH;
  uint8_t NSF_PHICH = 4;
  uint8_t pusch_subframe;
1080

1081
  // check if we're expecting a PHICH in this subframe
1082
  LOG_D(PHY,"[UE  %d][PUSCH %d] Frame %d subframe %d PHICH RX\n",ue->Mod_id,harq_pid,proc->frame_rx,subframe);
1083

1084 1085
  if (!ulsch)
    return;
1086

1087 1088
  LOG_D(PHY,"[UE  %d][PUSCH %d] Frame %d subframe %d PHICH RX Status: %d \n",ue->Mod_id,harq_pid,proc->frame_rx,subframe, ulsch->harq_processes[harq_pid]->status);

1089
  if (ulsch->harq_processes[harq_pid]->status == ACTIVE) {
1090
     LOG_D(PHY,"[UE  %d][PUSCH %d] Frame %d subframe %d PHICH RX ACTIVE\n",ue->Mod_id,harq_pid,proc->frame_rx,subframe);
1091
    Ngroup_PHICH = (frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)/48;
1092

1093 1094
    if (((frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)%48) > 0)
      Ngroup_PHICH++;
1095

1096 1097 1098
    if (frame_parms->Ncp == 1)
      NSF_PHICH = 2;

1099 1100 1101 1102

    ngroup_PHICH = (ulsch->harq_processes[harq_pid]->first_rb +
                    ulsch->harq_processes[harq_pid]->n_DMRS)%Ngroup_PHICH;

Raymond Knopp's avatar
 
Raymond Knopp committed
1103
    if ((frame_parms->tdd_config == 0) && (frame_parms->frame_type == TDD) ) {
1104
      pusch_subframe = phich_subframe2_pusch_subframe(frame_parms,subframe);
1105

1106
      if ((pusch_subframe == 4) || (pusch_subframe == 9))
1107
        ngroup_PHICH += Ngroup_PHICH;
1108
    }
1109 1110 1111 1112

    nseq_PHICH = ((ulsch->harq_processes[harq_pid]->first_rb/Ngroup_PHICH) +
                  ulsch->harq_processes[harq_pid]->n_DMRS)%(2*NSF_PHICH);
  } else {
1113 1114 1115 1116 1117 1118 1119
    return;
  }

  memset(d,0,24*sizeof(int8_t));
  phich_d_ptr = phich_d;

  // x1 is set in lte_gold_generic
1120
  x2 = (((subframe+1)*((frame_parms->Nid_cell<<1)+1))<<9) + frame_parms->Nid_cell;
1121

1122
  s = lte_gold_generic(&x1, &x2, reset);
1123

1124
  // compute scrambling sequence
1125
  for (i=0; i<12; i++) {
1126 1127 1128 1129 1130 1131 1132 1133
    cs[i] = 1-(((s>>(i&0x1f))&1)<<1);
  }

  if (frame_parms->Ncp == 0) { // Normal Cyclic Prefix


    // 12 output symbols (Msymb)

1134
    for (i=0,i2=0,i3=0; i<3; i++,i2+=4,i3+=8) {
1135 1136
      switch (nseq_PHICH) {
      case 0: // +1 +1 +1 +1
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
        d[i3]   = cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

1147
      case 1: // +1 -1 +1 -1
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
        d[i3] = cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = -cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = -cs[3+i2];
        break;

1158
      case 2: // +1 +1 -1 -1
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
        d[i3]   = cs[i2];
        d[1+i3]   = cs[i2];
        d[2+i3] = cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = -cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = -cs[3+i2];
        break;

1169
      case 3: // +1 -1 -1 +1
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
        d[i3]   = cs[i2];
        d[1+i3]   = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = -cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = -cs[2+i2];
        d[6+i3] = cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

1180
      case 4: // +j +j +j +j
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
        d[i3]   = -cs[i2];
        d[1+i3] = cs[i2];
        d[2+i3] = -cs[1+i2];
        d[3+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[5+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        d[7+i3] = cs[3+i2];
        break;

1191
      case 5: // +j -j +j -j
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
        d[1+i3] = cs[i2];
        d[3+i3] = -cs[1+i2];
        d[5+i3] = cs[2+i2];
        d[7+i3] = -cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = cs[1+i2];
        d[4+i3] = -cs[2+i2];
        d[6+i3] = cs[3+i2];
        break;

1202
      case 6: // +j +j -j -j
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
        d[1+i3] = cs[i2];
        d[3+i3] = cs[1+i2];
        d[5+i3] = -cs[2+i2];
        d[7+i3] = -cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = -cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[6+i3] = cs[3+i2];
        break;

1213
      case 7: // +j -j -j +j
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
        d[1+i3] = cs[i2];
        d[3+i3] = -cs[1+i2];
        d[5+i3] = -cs[2+i2];
        d[7+i3] = cs[3+i2];
        d[i3]   = -cs[i2];
        d[2+i3] = cs[1+i2];
        d[4+i3] = cs[2+i2];
        d[6+i3] = -cs[3+i2];
        break;

1224
      default:
1225
        LOG_E(PHY,"phich_coding.c: Illegal PHICH Number\n");
1226 1227
      } // nseq_PHICH
    }
1228

1229 1230
#ifdef DEBUG_PHICH
    LOG_D(PHY,"PHICH =>");
1231 1232

    for (i=0; i<24; i++) {
1233 1234
      LOG_D(PHY,"%2d,",d[i]);
    }
1235

1236 1237 1238 1239 1240
    LOG_D(PHY,"\n");
#endif
    // demodulation here


1241 1242
  } else { // extended prefix

1243 1244 1245
    // 6 output symbols
    if ((ngroup_PHICH & 1) == 1)
      dp = &d[4];
1246
    else
1247
      dp = d;
1248

1249
    switch (nseq_PHICH) {
1250
    case 0: // +1 +1
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
      dp[0]  = cs[0];
      dp[2]  = cs[1];
      dp[8]  = cs[2];
      dp[10] = cs[3];
      dp[16] = cs[4];
      dp[18] = cs[5];
      dp[1]  = cs[0];
      dp[3]  = cs[1];
      dp[9]  = cs[2];
      dp[11] = cs[3];
      dp[17] = cs[4];
      dp[19] = cs[5];
      break;
1264

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
    case 1: // +1 -1
      dp[0]  = cs[0];
      dp[2]  = -cs[1];
      dp[8]  = cs[2];
      dp[10] = -cs[3];
      dp[16] = cs[4];
      dp[18] = -cs[5];
      dp[1]  = cs[0];
      dp[3]  = -cs[1];
      dp[9]  = cs[2];
      dp[11] = -cs[3];
      dp[17] = cs[4];
      dp[19] = -cs[5];
      break;
1279 1280

    case 2: // +j +j
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
      dp[1]  = cs[0];
      dp[3]  = cs[1];
      dp[9]  = cs[2];
      dp[11] = cs[3];
      dp[17] = cs[4];
      dp[19] = cs[5];
      dp[0]  = -cs[0];
      dp[2]  = -cs[1];
      dp[8]  = -cs[2];
      dp[10] = -cs[3];
      dp[16] = -cs[4];
      dp[18] = -cs[5];
1293 1294 1295 1296

      break;

    case 3: // +j -j
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
      dp[1]  = cs[0];
      dp[3]  = -cs[1];
      dp[9]  = cs[2];
      dp[11] = -cs[3];
      dp[17] = cs[4];
      dp[19] = -cs[5];
      dp[0]  = -cs[0];
      dp[2]  = cs[1];
      dp[8]  = -cs[2];
      dp[10] = cs[3];
      dp[16] = -cs[4];
      dp[18] = cs[5];
      break;
1310

1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
    default:
      LOG_E(PHY,"phich_coding.c: Illegal PHICH Number\n");
    }
  }

  HI16 = 0;

  //#ifdef DEBUG_PHICH

  //#endif
1321
  /*
1322 1323 1324
  for (i=0;i<200;i++)
    printf("re %d: %d %d\n",i,((int16_t*)&rxdataF_comp[0][i])[0],((int16_t*)&rxdataF_comp[0][i])[1]);
  */
1325 1326
  for (phich_quad=0; phich_quad<3; phich_quad++) {
    if (frame_parms->Ncp == 1)
1327 1328 1329 1330 1331 1332 1333
      reg_offset = (frame_parms->phich_reg[ngroup_PHICH][phich_quad]*4)+ (phich_quad*frame_parms->N_RB_DL*12);
    else
      reg_offset = (frame_parms->phich_reg[ngroup_PHICH][phich_quad]*4);

    //    msg("\n[PUSCH 0]PHICH (RX) quad %d (%d)=>",phich_quad,reg_offset);
    dp = &d[phich_quad*8];;

1334 1335 1336
    for (i=0; i<8; i++) {
      phich_d_ptr[i] = ((int16_t*)&rxdataF_comp[0][reg_offset])[i];

1337 1338
#ifdef DEBUG_PHICH
      LOG_D(PHY,"%d,",((int16_t*)&rxdataF_comp[0][reg_offset])[i]);
1339 1340 1341 1342
#endif

      HI16 += (phich_d_ptr[i] * dp[i]);
    }
1343
  }
1344

1345 1346 1347 1348
#ifdef DEBUG_PHICH
  LOG_D(PHY,"\n");
  LOG_D(PHY,"HI16 %d\n",HI16);
#endif
1349

1350
  if (HI16>0) {   //NACK
1351
    if (ue->ulsch_Msg3_active[eNB_id] == 1) {
Raymond Knopp's avatar
 
Raymond Knopp committed
1352
      LOG_D(PHY,"[UE  %d][PUSCH %d][RAPROC] Frame %d subframe %d Msg3 PHICH, received NAK (%d) nseq %d, ngroup %d\n",
1353
            ue->Mod_id,harq_pid,
1354
            proc->frame_rx,
1355 1356 1357 1358
            subframe,
            HI16,
            nseq_PHICH,
            ngroup_PHICH);
1359
      get_Msg3_alloc_ret(&ue->frame_parms,
1360
                         subframe,
1361
                         proc->frame_rx,
1362 1363
                         &ue->ulsch_Msg3_frame[eNB_id],
                         &ue->ulsch_Msg3_subframe[eNB_id]);
1364
      ulsch->harq_processes[harq_pid]->subframe_scheduling_flag = 1;
1365
      //      ulsch->harq_processes[harq_pid]->Ndi = 0;
1366 1367
      ulsch->harq_processes[harq_pid]->round++;
      ulsch->harq_processes[harq_pid]->rvidx = rv_table[ulsch->harq_processes[harq_pid]->round&3];
1368

1369
      if (ulsch->harq_processes[harq_pid]->round>=ue->frame_parms.maxHARQ_Msg3Tx) {
1370 1371 1372
        ulsch->harq_processes[harq_pid]->subframe_scheduling_flag =0;
        ulsch->harq_processes[harq_pid]->status = IDLE;
        // inform MAC that Msg3 transmission has failed
1373
        ue->ulsch_Msg3_active[eNB_id] = 0;
1374
      }
1375
    } else {
1376
      //#ifdef DEBUG_PHICH
Raymond Knopp's avatar
 
Raymond Knopp committed
1377
      LOG_D(PHY,"[UE  %d][PUSCH %d] Frame %d subframe %d PHICH, received NAK (%d) nseq %d, ngroup %d\n",
1378
            ue->Mod_id,harq_pid,
1379
            proc->frame_rx,
1380 1381 1382
            subframe,
            HI16,
            nseq_PHICH,
1383 1384
            ngroup_PHICH,
            UE_mac_inst[eNB_id].scheduling_info.maxHARQ_Tx);
1385
      //#endif
1386

1387
      //      ulsch->harq_processes[harq_pid]->Ndi = 0;
1388
      ulsch->harq_processes[harq_pid]->round++;
1389
      
1390
      if ( ulsch->harq_processes[harq_pid]->round >= (UE_mac_inst[eNB_id].scheduling_info.maxHARQ_Tx - 1) )
1391
      {
1392 1393 1394 1395 1396 1397 1398
          // this is last push re transmission
          ulsch->harq_processes[harq_pid]->rvidx = rv_table[ulsch->harq_processes[harq_pid]->round&3];
          ulsch->O_RI = 0;
          ulsch->O    = 0;
          ulsch->uci_format = HLC_subband_cqi_nopmi;

          // disable phich decoding since it is the last retransmission
1399
          ulsch->harq_processes[harq_pid]->status = IDLE;
1400 1401 1402 1403

          //ulsch->harq_processes[harq_pid]->subframe_scheduling_flag = 0;
          //ulsch->harq_processes[harq_pid]->round  = 0;

1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
          //LOG_I(PHY,"PUSCH MAX Retransmission acheived ==> flush harq buff (%d) \n",harq_pid);
          //LOG_I(PHY,"[HARQ-UL harqId: %d] PHICH NACK MAX RETRANS(%d) ==> subframe_scheduling_flag = %d round: %d\n", harq_pid, UE_mac_inst[eNB_id].scheduling_info.maxHARQ_Tx, ulsch->harq_processes[harq_pid]->subframe_scheduling_flag, ulsch->harq_processes[harq_pid]->round);
      }
      else
      {
          // ulsch->harq_processes[harq_pid]->subframe_scheduling_flag = 1;
          ulsch->harq_processes[harq_pid]->rvidx = rv_table[ulsch->harq_processes[harq_pid]->round&3];
          ulsch->O_RI = 0;
          ulsch->O    = 0;
          ulsch->uci_format = HLC_subband_cqi_nopmi;
          //LOG_I(PHY,"[HARQ-UL harqId: %d] PHICH NACK ==> subframe_scheduling_flag = %d round: %d\n", harq_pid, ulsch->harq_processes[harq_pid]->subframe_scheduling_flag,ulsch->harq_processes[harq_pid]->round);
      }
1416 1417 1418
    }


1419
  } else {  //ACK
1420
    if (ue->ulsch_Msg3_active[eNB_id] == 1) {
Raymond Knopp's avatar
 
Raymond Knopp committed
1421
      LOG_D(PHY,"[UE  %d][PUSCH %d][RAPROC] Frame %d subframe %d Msg3 PHICH, received ACK (%d) nseq %d, ngroup %d\n\n",
1422
            ue->Mod_id,harq_pid,
1423
            proc->frame_rx,
1424 1425 1426 1427
            subframe,
            HI16,
            nseq_PHICH,ngroup_PHICH);
    } else {
1428 1429
      //#ifdef PHICH_DEBUG
      LOG_D(PHY,"[UE  %d][PUSCH %d] Frame %d subframe %d PHICH, received ACK (%d) nseq %d, ngroup %d\n\n",
1430
            ue->Mod_id,harq_pid,
1431
            proc->frame_rx,
1432 1433
            subframe, HI16,
            nseq_PHICH,ngroup_PHICH);
1434 1435
      //#endif
    }
1436

1437 1438 1439 1440 1441 1442 1443 1444 1445
   // LOG_I(PHY,"[HARQ-UL harqId: %d] subframe_scheduling_flag = %d \n",harq_pid, ulsch->harq_processes[harq_pid]->subframe_scheduling_flag);

    // Incase of adaptive retransmission, PHICH is always decoded as ACK (at least with OAI-eNB)
    // Workaround:
    // rely only on DCI0 decoding and check if NDI has toggled
    //   save current harq_processes content in temporary struct
    //   harqId-8 corresponds to the temporary struct. In total we have 8 harq process(0 ..7) + 1 temporary harq process()
    ulsch->harq_processes[8] = ulsch->harq_processes[harq_pid];

1446 1447
    ulsch->harq_processes[harq_pid]->subframe_scheduling_flag =0;
    ulsch->harq_processes[harq_pid]->status = IDLE;
Raymond Knopp's avatar
 
Raymond Knopp committed
1448
    ulsch->harq_processes[harq_pid]->round  = 0;
1449
    // inform MAC?
1450
    ue->ulsch_Msg3_active[eNB_id] = 0;
1451 1452

   //LOG_I(PHY,"[HARQ-UL harqId: %d] PHICH ACK ==> subframe_scheduling_flag = %d round: %d\n", harq_pid, ulsch->harq_processes[harq_pid]->subframe_scheduling_flag, ulsch->harq_processes[harq_pid]->round);
1453
  }
1454

1455 1456
}

1457
void generate_phich_top(PHY_VARS_eNB *eNB,
1458 1459
                        eNB_rxtx_proc_t *proc,
			int16_t amp,
1460
                        uint8_t sect_id)
1461
{
1462 1463


1464 1465 1466
  LTE_DL_FRAME_PARMS *frame_parms=&eNB->frame_parms;
  LTE_eNB_ULSCH_t **ulsch = eNB->ulsch;
  int32_t **txdataF = eNB->common_vars.txdataF[sect_id];
1467 1468 1469 1470 1471 1472
  uint8_t harq_pid;
  uint8_t Ngroup_PHICH,ngroup_PHICH,nseq_PHICH;
  uint8_t NSF_PHICH = 4;
  uint8_t pusch_subframe;
  uint8_t UE_id;
  uint32_t pusch_frame;
1473
  int subframe = proc->subframe_tx;
1474 1475

  // compute Ngroup_PHICH (see formula at beginning of Section 6.9 in 36-211
1476

1477
  Ngroup_PHICH = (frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)/48;
1478

1479 1480 1481 1482 1483
  if (((frame_parms->phich_config_common.phich_resource*frame_parms->N_RB_DL)%48) > 0)
    Ngroup_PHICH++;

  if (frame_parms->Ncp == 1)
    NSF_PHICH = 2;
1484

1485
  pusch_frame = phich_frame2_pusch_frame(frame_parms,proc->frame_tx,subframe);
1486 1487 1488
  pusch_subframe = phich_subframe2_pusch_subframe(frame_parms,subframe);
  harq_pid = subframe2harq_pid(frame_parms,pusch_frame,pusch_subframe);

1489
  for (UE_id=0; UE_id<NUMBER_OF_UE_MAX; UE_id++) {
1490 1491
    if ((ulsch[UE_id])&&(ulsch[UE_id]->rnti>0)) {
      if (ulsch[UE_id]->harq_processes[harq_pid]->phich_active == 1) {
1492

1493
        LOG_D(PHY,"[eNB][PUSCH %d/%x] Frame %d subframe %d (pusch_subframe %d,pusch_frame %d) phich active %d\n",
1494
              harq_pid,ulsch[UE_id]->rnti,proc->frame_tx,subframe,pusch_subframe,pusch_frame,ulsch[UE_id]->harq_processes[harq_pid]->phich_active);
1495

1496 1497 1498 1499 1500 1501
        /* the HARQ process may have been reused by a new scheduling, so we use
         * previous values of first_rb and n_DMRS to compute ngroup_PHICH and nseq_PHICH
         */

        ngroup_PHICH = (ulsch[UE_id]->harq_processes[harq_pid]->previous_first_rb +
                        ulsch[UE_id]->harq_processes[harq_pid]->previous_n_DMRS)%Ngroup_PHICH;
1502 1503 1504 1505 1506 1507 1508

        if ((frame_parms->tdd_config == 0) && (frame_parms->frame_type == TDD) ) {

          if ((pusch_subframe == 4) || (pusch_subframe == 9))
            ngroup_PHICH += Ngroup_PHICH;
        }

1509 1510
        nseq_PHICH = ((ulsch[UE_id]->harq_processes[harq_pid]->previous_first_rb/Ngroup_PHICH) +
                      ulsch[UE_id]->harq_processes[harq_pid]->previous_n_DMRS)%(2*NSF_PHICH);
1511
        LOG_D(PHY,"[eNB %d][PUSCH %d] Frame %d subframe %d Generating PHICH, ngroup_PHICH %d/%d, nseq_PHICH %d : HI %d, first_rb %d dci_alloc %d)\n",
1512
              eNB->Mod_id,harq_pid,proc->frame_tx,
1513
              subframe,ngroup_PHICH,Ngroup_PHICH,nseq_PHICH,
1514
              ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK,
1515
              ulsch[UE_id]->harq_processes[harq_pid]->previous_first_rb,
1516
              ulsch[UE_id]->harq_processes[harq_pid]->dci_alloc);
1517

Cedric Roux's avatar
Cedric Roux committed
1518 1519 1520 1521 1522 1523 1524 1525
        T(T_ENB_PHY_PHICH, T_INT(eNB->Mod_id), T_INT(proc->frame_tx), T_INT(subframe),
          T_INT(UE_id), T_INT(ulsch[UE_id]->rnti), T_INT(harq_pid),
          T_INT(Ngroup_PHICH), T_INT(NSF_PHICH),
          T_INT(ngroup_PHICH), T_INT(nseq_PHICH),
          T_INT(ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK),
          T_INT(ulsch[UE_id]->harq_processes[harq_pid]->previous_first_rb),
          T_INT(ulsch[UE_id]->harq_processes[harq_pid]->previous_n_DMRS));

1526
        if (ulsch[UE_id]->Msg3_active == 1) {
1527
          LOG_D(PHY,"[eNB %d][PUSCH %d][RAPROC] Frame %d, subframe %d: Generating Msg3 PHICH for UE %d, ngroup_PHICH %d/%d, nseq_PHICH %d : HI %d, first_rb %d\n",
1528
                eNB->Mod_id,harq_pid,proc->frame_tx,subframe,
1529
                UE_id,ngroup_PHICH,Ngroup_PHICH,nseq_PHICH,ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK,
1530
                ulsch[UE_id]->harq_processes[harq_pid]->previous_first_rb);
1531 1532
        }

1533
        if (eNB->abstraction_flag == 0) {
1534 1535 1536 1537
          generate_phich(frame_parms,
                         amp,//amp*2,
                         nseq_PHICH,
                         ngroup_PHICH,
1538
                         ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK,
1539 1540 1541 1542 1543 1544 1545
                         subframe,
                         txdataF);
        } else {
          /*
          generate_phich_emul(frame_parms,
                  //nseq_PHICH,
                  //ngroup_PHICH,
1546
                  ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK,
1547 1548 1549 1550 1551 1552 1553
                  subframe);
          */
        }

        // if no format0 DCI was transmitted by MAC, prepare the
        // MCS parameters for the retransmission

1554

1555 1556 1557
        if ((ulsch[UE_id]->harq_processes[harq_pid]->dci_alloc == 0) &&
            (ulsch[UE_id]->harq_processes[harq_pid]->rar_alloc == 0) ) {
          if (ulsch[UE_id]->harq_processes[harq_pid]->phich_ACK==0 ) {
Cedric Roux's avatar
Cedric Roux committed
1558
            T(T_ENB_PHY_ULSCH_UE_NO_DCI_RETRANSMISSION, T_INT(eNB->Mod_id), T_INT(proc->frame_tx),
1559
              T_INT(subframe), T_INT(UE_id), T_INT(ulsch[UE_id]->rnti), T_INT(harq_pid));
1560
            LOG_D(PHY,"[eNB %d][PUSCH %d] frame %d, subframe %d : PHICH NACK / (no format0 DCI) Setting subframe_scheduling_flag\n",
1561
                  eNB->Mod_id,harq_pid,proc->frame_tx,subframe);
1562 1563 1564 1565 1566 1567
            ulsch[UE_id]->harq_processes[harq_pid]->subframe_scheduling_flag = 1;
            ulsch[UE_id]->harq_processes[harq_pid]->rvidx = rv_table[ulsch[UE_id]->harq_processes[harq_pid]->round&3];
            ulsch[UE_id]->harq_processes[harq_pid]->O_RI                                  = 0;
            ulsch[UE_id]->harq_processes[harq_pid]->Or2                                   = 0;
            ulsch[UE_id]->harq_processes[harq_pid]->Or1                                   = 0;
            ulsch[UE_id]->harq_processes[harq_pid]->uci_format                            = HLC_subband_cqi_nopmi;
1568 1569 1570

          } else {
            LOG_D(PHY,"[eNB %d][PUSCH %d] frame %d subframe %d PHICH ACK (no format0 DCI) Clearing subframe_scheduling_flag, setting round to 0\n",
1571
                  eNB->Mod_id,harq_pid,proc->frame_tx,subframe);
1572 1573
            ulsch[UE_id]->harq_processes[harq_pid]->subframe_scheduling_flag = 0;
            ulsch[UE_id]->harq_processes[harq_pid]->round=0;
1574 1575 1576
          }
        }

1577
        ulsch[UE_id]->harq_processes[harq_pid]->phich_active=0;
1578 1579 1580 1581
      } // phich_active==1
    } //ulsch_ue[UE_id] is non-null
  }// UE loop
}