ru_procedures.c 27.4 KB
Newer Older
1 2 3 4 5
/*
 * 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
6
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 * 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
 */

/*! \file ru_procedures.c
 * \brief Implementation of RU procedures
 * \author R. Knopp, F. Kaltenberger, N. Nikaein, X. Foukas
 * \date 2011
 * \version 0.1
 * \company Eurecom
 * \email: knopp@eurecom.fr,florian.kaltenberger@eurecom.fr,navid.nikaein@eurecom.fr, x.foukas@sms.ed.ac.uk
 * \note
 * \warning
 */
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
32 33 34 35 36 37
 
/*! \function feptx_prec
 * \brief Implementation of precoding for beamforming in one eNB
 * \author TY Hsu, SY Yeh(fdragon), TH Wang(Judy)
 * \date 2018
 * \version 0.1
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
38
 * \company ISIP@NCTU and Eurecom
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
39 40 41 42
 * \email: tyhsu@cs.nctu.edu.tw,fdragon.cs96g@g2.nctu.edu.tw,Tsu-Han.Wang@eurecom.fr
 * \note
 * \warning
 */
43 44


45 46 47
#include "PHY/defs_eNB.h"
#include "PHY/phy_extern.h"
#include "SCHED/sched_eNB.h"
48
#include "PHY/MODULATION/modulation_eNB.h"
49 50
#include "PHY/LTE_TRANSPORT/if4_tools.h"
#include "PHY/LTE_TRANSPORT/if5_tools.h"
51
#include "PHY/LTE_TRANSPORT/transport_common_proto.h"
52 53
#include "PHY/LTE_TRANSPORT/transport_proto.h"
#include "PHY/LTE_ESTIMATION/lte_estimation.h"
54

55
#include "LAYER2/MAC/mac.h"
56 57
#include "common/utils/LOG/log.h"
#include "common/utils/LOG/vcd_signal_dumper.h"
58 59 60 61 62 63


#include "assertions.h"
#include "msc.h"

#include <time.h>
Raymond Knopp's avatar
Raymond Knopp committed
64

65 66 67 68 69
#include "targets/RT/USER/rt_wrapper.h"

extern int oai_exit;


70

71 72 73
void feptx0(RU_t *ru,int slot) {

  LTE_DL_FRAME_PARMS *fp = &ru->frame_parms;
74
  //int dummy_tx_b[7680*2] __attribute__((aligned(32)));
75 76 77 78 79 80

  unsigned int aa,slot_offset;
  int slot_sizeF = (fp->ofdm_symbol_size)*
                   ((fp->Ncp==1) ? 6 : 7);
  int subframe = ru->proc.subframe_tx;

81

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
82
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+slot , 1 );
83

84 85
  slot_offset = subframe*fp->samples_per_tti + (slot*(fp->samples_per_tti>>1));

86
  //LOG_D(PHY,"SFN/SF:RU:TX:%d/%d Generating slot %d\n",ru->proc.frame_tx, ru->proc.subframe_tx,slot);
87 88 89

  for (aa=0; aa<ru->nb_tx; aa++) {
    if (fp->Ncp == EXTENDED) PHY_ofdm_mod(&ru->common.txdataF_BF[aa][slot*slot_sizeF],
90 91 92 93 94
					                      (int*)&ru->common.txdata[aa][slot_offset],
					                      fp->ofdm_symbol_size,
					                      6,
					                      fp->nb_prefix_samples,
					                      CYCLIC_PREFIX);
95
    else {
magounak's avatar
magounak committed
96
     /* AssertFatal(ru->generate_dmrs_sync==1 && (fp->frame_type != TDD || ru->is_slave == 1),
97 98
		  "ru->generate_dmrs_sync should not be set, frame_type %d, is_slave %d\n",
		  fp->frame_type,ru->is_slave);
magounak's avatar
magounak committed
99
*/
100
      int num_symb = 7;
magounak's avatar
magounak committed
101

102 103
      if (subframe_select(fp,subframe) == SF_S) num_symb=fp->dl_symbols_in_S_subframe;
   
104
      if (ru->generate_dmrs_sync == 1 && slot == 0 && subframe == 1 && aa==0) {
105 106
	//int32_t dmrs[ru->frame_parms.ofdm_symbol_size*14] __attribute__((aligned(32)));
        //int32_t *dmrsp[2] ={dmrs,NULL}; //{&dmrs[(3-ru->frame_parms.Ncp)*ru->frame_parms.ofdm_symbol_size],NULL};
magounak's avatar
magounak committed
107
  
108 109 110
	generate_drs_pusch((PHY_VARS_UE *)NULL,
			   (UE_rxtx_proc_t*)NULL,
			   fp,
111
			   ru->common.txdataF_BF,
112 113
			   0,
			   AMP,
114
			   0,
115 116 117
			   0,
			   fp->N_RB_DL,
			   aa);
118 119
      } 
      normal_prefix_mod(&ru->common.txdataF_BF[aa][slot*slot_sizeF],
magounak's avatar
magounak committed
120
                        (int*)&ru->common.txdata[aa][slot_offset],
121
                        num_symb,
magounak's avatar
magounak committed
122 123
                        fp);

124
       
magounak's avatar
magounak committed
125
  }
126
   /* 
127 128
    len = fp->samples_per_tti>>1;

129
    
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
    if ((slot_offset+len)>(LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti)) {
      tx_offset = (int)slot_offset;
      txdata = (int16_t*)&ru->common.txdata[aa][tx_offset];
      len2 = -tx_offset+LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
      for (i=0; i<(len2<<1); i++) {
	txdata[i] = ((int16_t*)dummy_tx_b)[i];
      }
      txdata = (int16_t*)&ru->common.txdata[aa][0];
      for (j=0; i<(len<<1); i++,j++) {
	txdata[j++] = ((int16_t*)dummy_tx_b)[i];
      }
    }
    else {
      tx_offset = (int)slot_offset;
      txdata = (int16_t*)&ru->common.txdata[aa][tx_offset];
145
      memcpy((void*)txdata,(void*)dummy_tx_b,len<<2);   
146
    }
147
*/
148
    // TDD: turn on tx switch N_TA_offset before by setting buffer in these samples to 0    
Wang Tsu-Han's avatar
Wang Tsu-Han committed
149
/*    if ((slot == 0) &&
150 151 152 153 154 155
        (fp->frame_type == TDD) && 
        ((fp->tdd_config==0) ||
         (fp->tdd_config==1) ||
         (fp->tdd_config==2) ||
         (fp->tdd_config==6)) &&  
        ((subframe==0) || (subframe==5))) {
156 157 158 159 160 161 162 163 164 165
      for (i=0; i<ru->N_TA_offset; i++) {
	tx_offset = (int)slot_offset+i-ru->N_TA_offset/2;
	if (tx_offset<0)
	  tx_offset += LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
	
	if (tx_offset>=(LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti))
	  tx_offset -= LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
	
	ru->common.txdata[aa][tx_offset] = 0x00000000;
      }
Wang Tsu-Han's avatar
Wang Tsu-Han committed
166
    }*/
167
  }
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
168
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+slot , 0);
169 170 171 172 173 174
}

static void *feptx_thread(void *param) {

  RU_t *ru = (RU_t *)param;
  RU_proc_t *proc  = &ru->proc;
175 176
  cpu_set_t cpuset;
  CPU_ZERO(&cpuset);
177 178 179 180 181 182
  
  thread_top_init("feptx_thread",1,85000,120000,500000);
  pthread_setname_np( pthread_self(),"feptx processing");
  LOG_I(PHY,"thread feptx created id=%ld\n", syscall(__NR_gettid));
  //CPU_SET(6, &cpuset);
  //pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
183
  //wait_sync("feptx_thread");
184

185
  
186 187 188 189

  while (!oai_exit) {

    if (wait_on_condition(&proc->mutex_feptx,&proc->cond_feptx,&proc->instance_cnt_feptx,"feptx thread")<0) break;  
Wang Tsu-Han's avatar
Wang Tsu-Han committed
190
    if (oai_exit) break;
191
    //stop_meas(&ru->ofdm_mod_wakeup_stats);
192 193 194 195 196 197 198 199
    feptx0(ru,1);
    if (release_thread(&proc->mutex_feptx,&proc->instance_cnt_feptx,"feptx thread")<0) break;

    if (pthread_cond_signal(&proc->cond_feptx) != 0) {
      printf("[eNB] ERROR pthread_cond_signal for feptx thread exit\n");
      exit_fun( "ERROR pthread_cond_signal" );
      return NULL;
    }
laurent's avatar
laurent committed
200
	/*if(opp_enabled == 1 && ru->ofdm_mod_wakeup_stats.p_time>30*3000){
201 202 203
      print_meas_now(&ru->ofdm_mod_wakeup_stats,"fep wakeup",stderr);
      printf("delay in fep wakeup in frame_tx: %d  subframe_rx: %d \n",proc->frame_tx,proc->subframe_tx);
    }*/
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
  }



  return(NULL);
}

void feptx_ofdm_2thread(RU_t *ru) {

  LTE_DL_FRAME_PARMS *fp=&ru->frame_parms;
  RU_proc_t *proc = &ru->proc;
  struct timespec wait;
  int subframe = ru->proc.subframe_tx;

  wait.tv_sec=0;
  wait.tv_nsec=5000000L;
220
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+ru->idx , 1 );
221
  start_meas(&ru->ofdm_mod_stats);
222 223 224

  if (subframe_select(fp,subframe) == SF_UL) return;

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
225
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM , 1 );
226

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
  if (subframe_select(fp,subframe)==SF_DL) {
    // If this is not an S-subframe
    if (pthread_mutex_timedlock(&proc->mutex_feptx,&wait) != 0) {
      printf("[RU] ERROR pthread_mutex_lock for feptx thread (IC %d)\n", proc->instance_cnt_feptx);
      exit_fun( "error locking mutex_feptx" );
      return;
    }
    
    if (proc->instance_cnt_feptx==0) {
      printf("[RU] FEPtx thread busy\n");
      exit_fun("FEPtx thread busy");
      pthread_mutex_unlock( &proc->mutex_feptx );
      return;
    }
    
    ++proc->instance_cnt_feptx;
    
    
    if (pthread_cond_signal(&proc->cond_feptx) != 0) {
      printf("[RU] ERROR pthread_cond_signal for feptx thread\n");
      exit_fun( "ERROR pthread_cond_signal" );
      return;
    }
250
	//start_meas(&ru->ofdm_mod_wakeup_stats);
251 252 253 254 255 256
    
    pthread_mutex_unlock( &proc->mutex_feptx );
  }

  // call first slot in this thread
  feptx0(ru,0);
257
  start_meas(&ru->ofdm_mod_wait_stats);
258
  wait_on_busy_condition(&proc->mutex_feptx,&proc->cond_feptx,&proc->instance_cnt_feptx,"feptx thread");  
259
  stop_meas(&ru->ofdm_mod_wait_stats);
laurent's avatar
laurent committed
260
  /*if(opp_enabled == 1 && ru->ofdm_mod_wait_stats.p_time>30*3000){
261 262
    print_meas_now(&ru->ofdm_mod_wait_stats,"fep wakeup",stderr);
    printf("delay in feptx wait on codition in frame_rx: %d  subframe_rx: %d \n",proc->frame_tx,proc->subframe_tx);
Wang Tsu-Han's avatar
Wang Tsu-Han committed
263
  }*/
264

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
265
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM , 0 );
266

267
  stop_meas(&ru->ofdm_mod_stats);
268
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+ru->idx , 0 );
269 270 271

}

272
void feptx_ofdm(RU_t *ru) {
Raymond Knopp's avatar
Raymond Knopp committed
273 274 275 276 277 278 279 280 281 282
     
  LTE_DL_FRAME_PARMS *fp=&ru->frame_parms;

  unsigned int aa,slot_offset, slot_offset_F;
  int dummy_tx_b[7680*4] __attribute__((aligned(32)));
  int i,j, tx_offset;
  int slot_sizeF = (fp->ofdm_symbol_size)*
                   ((fp->Ncp==1) ? 6 : 7);
  int len,len2;
  int16_t *txdata;
283 284
  int subframe = ru->proc.subframe_tx;

Raymond Knopp's avatar
Raymond Knopp committed
285 286
//  int CC_id = ru->proc.CC_id;

287
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+ru->idx , 1 );
Cedric Roux's avatar
Cedric Roux committed
288
  slot_offset_F = 0;
Raymond Knopp's avatar
Raymond Knopp committed
289 290 291 292 293 294 295

  slot_offset = subframe*fp->samples_per_tti;

  if ((subframe_select(fp,subframe)==SF_DL)||
      ((subframe_select(fp,subframe)==SF_S))) {
    //    LOG_D(HW,"Frame %d: Generating slot %d\n",frame,next_slot);

296 297
    start_meas(&ru->ofdm_mod_stats);

Raymond Knopp's avatar
Raymond Knopp committed
298 299
    for (aa=0; aa<ru->nb_tx; aa++) {
      if (fp->Ncp == EXTENDED) {
300
        PHY_ofdm_mod(&ru->common.txdataF_BF[aa][0],
Raymond Knopp's avatar
Raymond Knopp committed
301 302 303 304 305
                     dummy_tx_b,
                     fp->ofdm_symbol_size,
                     6,
                     fp->nb_prefix_samples,
                     CYCLIC_PREFIX);
306
        PHY_ofdm_mod(&ru->common.txdataF_BF[aa][slot_sizeF],
Raymond Knopp's avatar
Raymond Knopp committed
307 308 309 310 311 312
                     dummy_tx_b+(fp->samples_per_tti>>1),
                     fp->ofdm_symbol_size,
                     6,
                     fp->nb_prefix_samples,
                     CYCLIC_PREFIX);
      } else {
313
        normal_prefix_mod(&ru->common.txdataF_BF[aa][slot_offset_F],
Raymond Knopp's avatar
Raymond Knopp committed
314 315 316 317 318
                          dummy_tx_b,
                          7,
                          fp);
	// if S-subframe generate first slot only
	if (subframe_select(fp,subframe) == SF_DL) 
319
	  normal_prefix_mod(&ru->common.txdataF_BF[aa][slot_offset_F+slot_sizeF],
Raymond Knopp's avatar
Raymond Knopp committed
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
			    dummy_tx_b+(fp->samples_per_tti>>1),
			    7,
			    fp);
      }

      // if S-subframe generate first slot only
      if (subframe_select(fp,subframe) == SF_S)
	len = fp->samples_per_tti>>1;
      else
	len = fp->samples_per_tti;
      /*
      for (i=0;i<len;i+=4) {
	dummy_tx_b[i] = 0x100;
	dummy_tx_b[i+1] = 0x01000000;
	dummy_tx_b[i+2] = 0xff00;
	dummy_tx_b[i+3] = 0xff000000;
	}*/
      
338 339 340
      if (slot_offset<0) {
	txdata = (int16_t*)&ru->common.txdata[aa][(LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti)+tx_offset];
        len2 = -(slot_offset);
Raymond Knopp's avatar
Raymond Knopp committed
341 342
	len2 = (len2>len) ? len : len2;
	for (i=0; i<(len2<<1); i++) {
343
	  txdata[i] = ((int16_t*)dummy_tx_b)[i];
Raymond Knopp's avatar
Raymond Knopp committed
344 345
	}
	if (len2<len) {
346
	  txdata = (int16_t*)&ru->common.txdata[aa][0];
Raymond Knopp's avatar
Raymond Knopp committed
347
	  for (j=0; i<(len<<1); i++,j++) {
348
	    txdata[j++] = ((int16_t*)dummy_tx_b)[i];
Raymond Knopp's avatar
Raymond Knopp committed
349 350 351
	  }
	}
      }  
352 353 354
      else if ((slot_offset+len)>(LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti)) {
	tx_offset = (int)slot_offset;
	txdata = (int16_t*)&ru->common.txdata[aa][tx_offset];
Raymond Knopp's avatar
Raymond Knopp committed
355 356
	len2 = -tx_offset+LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
	for (i=0; i<(len2<<1); i++) {
357
	  txdata[i] = ((int16_t*)dummy_tx_b)[i];
Raymond Knopp's avatar
Raymond Knopp committed
358
	}
359
	txdata = (int16_t*)&ru->common.txdata[aa][0];
Raymond Knopp's avatar
Raymond Knopp committed
360
	for (j=0; i<(len<<1); i++,j++) {
361
          txdata[j++] = ((int16_t*)dummy_tx_b)[i];
Raymond Knopp's avatar
Raymond Knopp committed
362 363 364
	}
      }
      else {
365
	//LOG_D(PHY,"feptx_ofdm: Writing to position %d\n",slot_offset);
366 367
	tx_offset = (int)slot_offset;
	txdata = (int16_t*)&ru->common.txdata[aa][tx_offset];
Raymond Knopp's avatar
Raymond Knopp committed
368 369

	for (i=0; i<(len<<1); i++) {
370
	  txdata[i] = ((int16_t*)dummy_tx_b)[i];
Raymond Knopp's avatar
Raymond Knopp committed
371 372 373 374 375 376 377 378 379 380 381
	}
      }
      
     // if S-subframe switch to RX in second subframe
      /*
     if (subframe_select(fp,subframe) == SF_S) {
       for (i=0; i<len; i++) {
	 ru->common_vars.txdata[0][aa][tx_offset++] = 0x00010001;
       }
     }
      */
Wang Tsu-Han's avatar
Wang Tsu-Han committed
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402

//     if ((fp->frame_type == TDD) &&
//         ((fp->tdd_config==0) ||
//	   (fp->tdd_config==1) ||
//	   (fp->tdd_config==2) ||
//	   (fp->tdd_config==6)) &&
//	     ((subframe==0) || (subframe==5))) {
//       // turn on tx switch N_TA_offset before
//       //LOG_D(HW,"subframe %d, time to switch to tx (N_TA_offset %d, slot_offset %d) \n",subframe,ru->N_TA_offset,slot_offset);
//       for (i=0; i<ru->N_TA_offset; i++) {
//         tx_offset = (int)slot_offset+i-ru->N_TA_offset/2;
//         if (tx_offset<0)
//           tx_offset += LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
//
//         if (tx_offset>=(LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti))
//           tx_offset -= LTE_NUMBER_OF_SUBFRAMES_PER_FRAME*fp->samples_per_tti;
//
//         ru->common.txdata[aa][tx_offset] = 0x00000000;
//       }
//     }

403
     stop_meas(&ru->ofdm_mod_stats);
404
     LOG_D(PHY,"feptx_ofdm (TXPATH): frame %d, subframe %d: txp (time %p) %d dB, txp (freq) %d dB\n",
Raymond Knopp's avatar
Raymond Knopp committed
405
	   ru->proc.frame_tx,subframe,txdata,dB_fixed(signal_energy((int32_t*)txdata,fp->samples_per_tti)),
406
	   dB_fixed(signal_energy_nodc(ru->common.txdataF_BF[aa],2*slot_sizeF)));
Raymond Knopp's avatar
Raymond Knopp committed
407 408
    }
  }
409
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_OFDM+ru->idx , 0 );
Raymond Knopp's avatar
Raymond Knopp committed
410 411
}

412
void feptx_prec(RU_t *ru) {
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
413
	
414
  int l,i,aa,p;
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
415 416 417
  int subframe = ru->proc.subframe_tx;
  PHY_VARS_eNB **eNB_list = ru->eNB_list,*eNB; 
  LTE_DL_FRAME_PARMS *fp;
418

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
419
  /* fdragon
420 421 422 423 424
  int l,i,aa;
  PHY_VARS_eNB **eNB_list = ru->eNB_list,*eNB;
  LTE_DL_FRAME_PARMS *fp;
  int32_t ***bw;
  int subframe = ru->proc.subframe_tx;
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
425
  */
426

427

428
  if (ru->num_eNB == 1) {
429

430
    eNB = eNB_list[0];
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
431 432 433
    fp  = &eNB->frame_parms;
    LTE_eNB_PDCCH *pdcch_vars = &eNB->pdcch_vars[subframe&1]; 
    
434 435
    if (subframe_select(fp,subframe) == SF_UL) return;

436
    VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_PREC+ru->idx , 1);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
437 438

    for (aa=0;aa<ru->nb_tx;aa++) {
439 440 441 442 443 444 445 446 447 448
      memset(ru->common.txdataF_BF[aa],0,sizeof(int32_t)*fp->ofdm_symbol_size*fp->symbols_per_tti);
      for (p=0;p<NB_ANTENNA_PORTS_ENB;p++) {

#ifdef NO_PRECODING	
	memcpy((void*)ru->common.txdataF_BF[aa],
	       (void*)&eNB->common_vars.txdataF[aa][subframe*fp->symbols_per_tti*fp->ofdm_symbol_size],
	       sizeof(int32_t)*fp->ofdm_symbol_size*fp->symbols_per_tti);
#else
	
	if (p<fp->nb_antenna_ports_eNB) {				
449
	  // For the moment this does nothing different than below, except ignore antenna ports 5,7,8.	     
450 451 452 453 454 455 456 457
	  for (l=0;l<pdcch_vars->num_pdcch_symbols;l++)
	    beam_precoding(eNB->common_vars.txdataF,
			   ru->common.txdataF_BF,
			   subframe,
			   fp,
			   ru->beam_weights,
			   l,
			   aa,
458 459
			   p,
			   eNB->Mod_id);
460 461 462 463 464 465 466 467 468 469 470 471
	} //if (p<fp->nb_antenna_ports_eNB)
	
	  // PDSCH region
	if (p<fp->nb_antenna_ports_eNB || p==5 || p==7 || p==8) {
	  for (l=pdcch_vars->num_pdcch_symbols;l<fp->symbols_per_tti;l++) {
	    beam_precoding(eNB->common_vars.txdataF,
			   ru->common.txdataF_BF,
			   subframe,
			   fp,
			   ru->beam_weights,
			   l,
			   aa,
472 473
			   p,
                           eNB->Mod_id);			
474 475 476 477 478
	  } // for (l=pdcch_vars ....)
	} // if (p<fp->nb_antenna_ports_eNB) ...
#endif //NO_PRECODING
	
      } // for (p=0...)
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
479
    } // for (aa=0 ...)
480
    
Wang Tsu-Han's avatar
Wang Tsu-Han committed
481 482
    if(ru->idx<2)
      VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_PREC+ru->idx , 0);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
483
    // VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_RU_FEPTX_PREC+ru->idx,0);
484
    
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
485 486 487 488
	///////////////////////////////////////////////////	  
	  
	  
	  /* fdragon
489
    eNB = eNB_list[0];
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
490
	bw  = ru->beam_weights[0];
491
    fp  = &eNB->frame_parms;
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
492
	int nb_antenna_ports=15;
493
    
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
494
    VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_PREC+ru->idx , 1);
495

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
496 497 498 499 500 501 502 503 504 505
	
	beam_precoding_one_eNB(eNB->common_vars.txdataF,
                           ru->common.txdataF_BF,
						   bw,
						   subframe,
						   nb_antenna_ports,
						   ru->nb_tx,
						   fp);

    VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_PREC+ru->idx , 0);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
506 507 508
	
	
	*/
509
    VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPTX_PREC+ru->idx , 0);
510 511
  }
  else {
512
    AssertFatal(1==0,"Handling of multi-L1 case not ready yet\n");
513 514 515 516 517 518 519 520
    for (i=0;i<ru->num_eNB;i++) {
      eNB = eNB_list[i];
      fp  = &eNB->frame_parms;
      
      for (l=0;l<fp->symbols_per_tti;l++) {
	for (aa=0;aa<ru->nb_tx;aa++) {
	  beam_precoding(eNB->common_vars.txdataF,
			 ru->common.txdataF_BF,
521
			 subframe,
522
			 fp,
523
			 ru->beam_weights,
524 525
			 subframe<<1,
			 l,
526 527
			 aa,
			 eNB->Mod_id);
528
	}
529 530 531 532
      }
    }
  }
}
Raymond Knopp's avatar
Raymond Knopp committed
533 534 535

void fep0(RU_t *ru,int slot) {

536 537
  RU_proc_t *proc       = &ru->proc;
  LTE_DL_FRAME_PARMS *fp = &ru->frame_parms;
Raymond Knopp's avatar
Raymond Knopp committed
538 539
  int l;

540
    //printf("fep0: slot %d\n",slot);
Raymond Knopp's avatar
Raymond Knopp committed
541

ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
542
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+slot, 1);
Raymond Knopp's avatar
Raymond Knopp committed
543 544
  remove_7_5_kHz(ru,(slot&1)+(proc->subframe_rx<<1));
  for (l=0; l<fp->symbols_per_tti/2; l++) {
545
    slot_fep_ul(ru,
Raymond Knopp's avatar
Raymond Knopp committed
546
		l,
547
		(slot&1),
Raymond Knopp's avatar
Raymond Knopp committed
548 549 550
		0
		);
  }
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
551
  //VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME(VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+slot, 0);
Raymond Knopp's avatar
Raymond Knopp committed
552 553 554 555 556 557 558
}



static void *fep_thread(void *param) {

  RU_t *ru = (RU_t *)param;
559
  RU_proc_t *proc  = &ru->proc;
560

561 562 563
  thread_top_init("fep_thread",1,100000,120000,5000000);
  pthread_setname_np( pthread_self(),"fep processing");
  LOG_I(PHY,"thread fep created id=%ld\n", syscall(__NR_gettid));
564

565 566
  cpu_set_t cpuset;
  CPU_ZERO(&cpuset);
567 568
  //CPU_SET(2, &cpuset);
  //pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
569
  //wait_sync("fep_thread");
570

Raymond Knopp's avatar
Raymond Knopp committed
571 572
  while (!oai_exit) {

573
    if (wait_on_condition(&proc->mutex_fep,&proc->cond_fep,&proc->instance_cnt_fep,"fep thread")<0) break; 
Wang Tsu-Han's avatar
Wang Tsu-Han committed
574
    if (oai_exit) break;
575
	//stop_meas(&ru->ofdm_demod_wakeup_stats);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
576
	//VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX1, 1 ); 
Raymond Knopp's avatar
Raymond Knopp committed
577
    fep0(ru,0);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
578
	//VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX1, 0 ); 
Raymond Knopp's avatar
Raymond Knopp committed
579 580 581 582 583 584 585
    if (release_thread(&proc->mutex_fep,&proc->instance_cnt_fep,"fep thread")<0) break;

    if (pthread_cond_signal(&proc->cond_fep) != 0) {
      printf("[eNB] ERROR pthread_cond_signal for fep thread exit\n");
      exit_fun( "ERROR pthread_cond_signal" );
      return NULL;
    }
laurent's avatar
laurent committed
586
    /*if(opp_enabled == 1 && ru->ofdm_demod_wakeup_stats.p_time>30*3000){
587 588 589
      print_meas_now(&ru->ofdm_demod_wakeup_stats,"fep wakeup",stderr);
      printf("delay in fep wakeup in frame_rx: %d  subframe_rx: %d \n",proc->frame_rx,proc->subframe_rx);
    }*/
Raymond Knopp's avatar
Raymond Knopp committed
590 591 592 593 594 595 596
  }



  return(NULL);
}

597 598 599 600 601 602 603 604 605 606 607 608 609 610
void init_feptx_thread(RU_t *ru,pthread_attr_t *attr_feptx) {

  RU_proc_t *proc = &ru->proc;

  proc->instance_cnt_feptx         = -1;
    
  pthread_mutex_init( &proc->mutex_feptx, NULL);
  pthread_cond_init( &proc->cond_feptx, NULL);

  pthread_create(&proc->pthread_feptx, attr_feptx, feptx_thread, (void*)ru);


}

611
void init_fep_thread(RU_t *ru,pthread_attr_t *attr_fep) {
Raymond Knopp's avatar
Raymond Knopp committed
612

613
  RU_proc_t *proc = &ru->proc;
Raymond Knopp's avatar
Raymond Knopp committed
614 615 616 617 618 619

  proc->instance_cnt_fep         = -1;
    
  pthread_mutex_init( &proc->mutex_fep, NULL);
  pthread_cond_init( &proc->cond_fep, NULL);

620
  pthread_create(&proc->pthread_fep, attr_fep, fep_thread, (void*)ru);
Raymond Knopp's avatar
Raymond Knopp committed
621 622 623


}
Wang Tsu-Han's avatar
Wang Tsu-Han committed
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650

extern void kill_fep_thread(RU_t *ru)
{
  RU_proc_t *proc = &ru->proc;
  pthread_mutex_lock( &proc->mutex_fep );
  proc->instance_cnt_fep         = 0;
  pthread_cond_signal(&proc->cond_fep);
  pthread_mutex_unlock( &proc->mutex_fep );
  LOG_D(PHY, "Joining pthread_fep\n");
  pthread_join(proc->pthread_fep, NULL);
  pthread_mutex_destroy( &proc->mutex_fep );
  pthread_cond_destroy( &proc->cond_fep );
}

extern void kill_feptx_thread(RU_t *ru)
{
  RU_proc_t *proc = &ru->proc;
  pthread_mutex_lock( &proc->mutex_feptx );
  proc->instance_cnt_feptx         = 0;
  pthread_cond_signal(&proc->cond_feptx);
  pthread_mutex_unlock( &proc->mutex_feptx );
  LOG_D(PHY, "Joining pthread_feptx\n");
  pthread_join(proc->pthread_feptx, NULL);
  pthread_mutex_destroy( &proc->mutex_feptx );
  pthread_cond_destroy( &proc->cond_feptx );
}

Raymond Knopp's avatar
Raymond Knopp committed
651 652
void ru_fep_full_2thread(RU_t *ru) {

653
  RU_proc_t *proc = &ru->proc;
654 655 656
  //PHY_VARS_eNB *eNB = RC.eNB[0][0];
  LTE_DL_FRAME_PARMS *fp = &ru->frame_parms;
  RU_CALIBRATION *calibration = &ru->calibration;
657
  RRU_CONFIG_msg_t rru_config_msg;
658
  int check_sync_pos;
Raymond Knopp's avatar
Raymond Knopp committed
659 660

  struct timespec wait;
661 662 663 664 665 666
  if (proc->subframe_rx==1){
  	//LOG_I(PHY,"subframe type %d, RU %d\n",subframe_select(fp,proc->subframe_rx),ru->idx);
  }
  else if ((fp->frame_type == TDD) && (subframe_select(fp,proc->subframe_rx) != SF_UL)) {
  	return;
  }
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
667
  //if (ru->idx == 0) VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX, 1 );
668

Raymond Knopp's avatar
Raymond Knopp committed
669 670 671
  wait.tv_sec=0;
  wait.tv_nsec=5000000L;

672
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+ru->idx, 1 );
Raymond Knopp's avatar
Raymond Knopp committed
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
  start_meas(&ru->ofdm_demod_stats);

  if (pthread_mutex_timedlock(&proc->mutex_fep,&wait) != 0) {
    printf("[RU] ERROR pthread_mutex_lock for fep thread (IC %d)\n", proc->instance_cnt_fep);
    exit_fun( "error locking mutex_fep" );
    return;
  }

  if (proc->instance_cnt_fep==0) {
    printf("[RU] FEP thread busy\n");
    exit_fun("FEP thread busy");
    pthread_mutex_unlock( &proc->mutex_fep );
    return;
  }
  
  ++proc->instance_cnt_fep;


  if (pthread_cond_signal(&proc->cond_fep) != 0) {
    printf("[RU] ERROR pthread_cond_signal for fep thread\n");
    exit_fun( "ERROR pthread_cond_signal" );
    return;
  }
696
  //start_meas(&ru->ofdm_demod_wakeup_stats);
Raymond Knopp's avatar
Raymond Knopp committed
697 698 699 700 701 702
  
  pthread_mutex_unlock( &proc->mutex_fep );

  // call second slot in this symbol
  fep0(ru,1);

703
  start_meas(&ru->ofdm_demod_wait_stats);
Raymond Knopp's avatar
Raymond Knopp committed
704
  wait_on_busy_condition(&proc->mutex_fep,&proc->cond_fep,&proc->instance_cnt_fep,"fep thread");  
705
  stop_meas(&ru->ofdm_demod_wait_stats);
laurent's avatar
laurent committed
706
  if(opp_enabled == 1 && ru->ofdm_demod_wakeup_stats.p_time>30*3000){
707
    print_meas_now(&ru->ofdm_demod_wakeup_stats,"fep wakeup",stderr);
708
    printf("delay in fep wait on condition in frame_rx: %d  subframe_rx: %d \n",proc->frame_rx,proc->subframe_rx);
709
  }
Raymond Knopp's avatar
Raymond Knopp committed
710

711 712
  if (proc->subframe_rx==1 && ru->is_slave==1/* && ru->state == RU_CHECK_SYNC*/) {

713
        //LOG_I(PHY,"Running check synchronization procedure for frame %d\n", proc->frame_rx);
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
  	ulsch_extract_rbs_single(ru->common.rxdataF,
                                 calibration->rxdataF_ext,
                                 0,
                                 fp->N_RB_DL,
                                 3%(fp->symbols_per_tti/2),// l = symbol within slot
                                 3/(fp->symbols_per_tti/2),// Ns = slot number 
                                 fp);
        
	/*lte_ul_channel_estimation((PHY_VARS_eNB *)NULL,
				  proc,
                                  ru->idx,
                                  3%(fp->symbols_per_tti/2),
                                  3/(fp->symbols_per_tti/2));
        */
	lte_ul_channel_estimation_RRU(fp,
                                  calibration->drs_ch_estimates,
                                  calibration->drs_ch_estimates_time,
                                  calibration->rxdataF_ext,
                                  fp->N_RB_DL, //N_rb_alloc,
				  proc->frame_rx,
				  proc->subframe_rx,
				  0,//u = 0..29
				  0,//v = 0,1
				  /*eNB->ulsch[ru->idx]->cyclicShift,cyclic_shift,0..7*/0,
				  3,//l,
 			          0,//interpolate,
				  0 /*eNB->ulsch[ru->idx]->rnti rnti or ru->ulsch[eNB_id]->rnti*/);
 
        

        check_sync_pos = lte_est_timing_advance_pusch((PHY_VARS_eNB *)NULL,
     				     		       ru->idx);
        if (ru->state == RU_CHECK_SYNC) {
          if ((check_sync_pos >= 0 && check_sync_pos<8) || (check_sync_pos < 0 && check_sync_pos>-8)) {
748
    		  LOG_I(PHY,"~~~~~~~~~~~    check_sync_pos %d, frame %d, cnt %d\n",check_sync_pos,proc->frame_rx,ru->wait_check); 
749 750 751
                  ru->wait_check++;
          }

752
          if (ru->wait_check==20) { 
753
	  	ru->state = RU_RUN;
754 755 756 757 758 759 760
 		ru->wait_check = 0;
		// Send RRU_sync_ok
                rru_config_msg.type = RRU_sync_ok;
        	rru_config_msg.len  = sizeof(RRU_CONFIG_msg_t); // TODO: set to correct msg len
        	LOG_I(PHY,"Sending RRU_sync_ok to RAU\n");
        	AssertFatal((ru->ifdevice.trx_ctlsend_func(&ru->ifdevice,&rru_config_msg,rru_config_msg.len)!=-1),"Failed to send msg to RAU %d\n",ru->idx);
                //LOG_I(PHY,"~~~~~~~~~ RU_RUN\n");
761 762 763 764 765 766 767 768 769 770
          	/*LOG_M("dmrs_time.m","dmrstime",calibration->drs_ch_estimates_time[0], (fp->ofdm_symbol_size),1,1);
		LOG_M("rxdataF_ext.m","rxdataFext",&calibration->rxdataF_ext[0][36*fp->N_RB_DL], 12*(fp->N_RB_DL),1,1);		
		LOG_M("drs_seq0.m","drsseq0",ul_ref_sigs_rx[0][0][23],600,1,1);
		LOG_M("rxdata.m","rxdata",&ru->common.rxdata[0][0], fp->samples_per_tti*2,1,1);
		exit(-1);*/
	 } 
       }
       else if (ru->state == RU_RUN) {
       	// check for synchronization error
       	if (check_sync_pos >= 8 || check_sync_pos<=-8) {
771 772 773
	 	LOG_E(PHY,"~~~~~~~~~~~~~~ check_sync_pos %d, frame %d ---> LOST SYNC-EXIT\n", check_sync_pos, proc->frame_rx);
LOG_M("rxdata.m","rxdata",&ru->common.rxdata[0][0], fp->samples_per_tti*2,1,1);		
exit(-1);
774 775 776 777 778 779 780 781
	}
       }
    
    else {
       	 AssertFatal(1==0,"Should not get here\n");
    }
 }

Raymond Knopp's avatar
Raymond Knopp committed
782
  stop_meas(&ru->ofdm_demod_stats);
783
  VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+ru->idx, 0 );
Raymond Knopp's avatar
Raymond Knopp committed
784 785 786 787
}



788
void fep_full(RU_t *ru) {
Raymond Knopp's avatar
Raymond Knopp committed
789

790
  RU_proc_t *proc = &ru->proc;
Raymond Knopp's avatar
Raymond Knopp committed
791
  int l;
792
  LTE_DL_FRAME_PARMS *fp=&ru->frame_parms;
Raymond Knopp's avatar
Raymond Knopp committed
793

794 795
  if ((fp->frame_type == TDD) && 
     (subframe_select(fp,proc->subframe_rx) != SF_UL)) return;
Raymond Knopp's avatar
Raymond Knopp committed
796

797
  start_meas(&ru->ofdm_demod_stats);
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
798
  if (ru->idx == 0) VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+ru->idx, 1 );
Cedric Roux's avatar
Cedric Roux committed
799

Raymond Knopp's avatar
Raymond Knopp committed
800 801
  remove_7_5_kHz(ru,proc->subframe_rx<<1);
  remove_7_5_kHz(ru,1+(proc->subframe_rx<<1));
802

Raymond Knopp's avatar
Raymond Knopp committed
803
  for (l=0; l<fp->symbols_per_tti/2; l++) {
804
    slot_fep_ul(ru,
Raymond Knopp's avatar
Raymond Knopp committed
805
		l,
806
		0,
Raymond Knopp's avatar
Raymond Knopp committed
807 808
		0
		);
809
    slot_fep_ul(ru,
Raymond Knopp's avatar
Raymond Knopp committed
810
		l,
811
		1,
Raymond Knopp's avatar
Raymond Knopp committed
812 813 814
		0
		);
  }
ISIP CS/NCTU's avatar
ISIP CS/NCTU committed
815
  if (ru->idx == 0) VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME( VCD_SIGNAL_DUMPER_FUNCTIONS_PHY_PROCEDURES_RU_FEPRX+ru->idx, 0 );
Raymond Knopp's avatar
Raymond Knopp committed
816 817 818 819 820 821 822 823
  stop_meas(&ru->ofdm_demod_stats);
  
  
}


void do_prach_ru(RU_t *ru) {

824 825
  RU_proc_t *proc = &ru->proc;
  LTE_DL_FRAME_PARMS *fp=&ru->frame_parms;
Raymond Knopp's avatar
Raymond Knopp committed
826 827

  // check if we have to detect PRACH first
828
  if (is_prach_subframe(fp,proc->frame_prach,proc->subframe_prach)>0) { 
829
    //accept some delay in processing - up to 5ms
Raymond Knopp's avatar
Raymond Knopp committed
830 831
    int i;
    for (i = 0; i < 10 && proc->instance_cnt_prach == 0; i++) {
832 833
      LOG_W(PHY,"Frame %d Subframe %d, PRACH thread busy (IC %d)!!\n", proc->frame_prach,proc->subframe_prach,
	    proc->instance_cnt_prach);
Raymond Knopp's avatar
Raymond Knopp committed
834 835 836 837 838 839 840 841 842
      usleep(500);
    }
    if (proc->instance_cnt_prach == 0) {
      exit_fun( "PRACH thread busy" );
      return;
    }
    
    // wake up thread for PRACH RX
    if (pthread_mutex_lock(&proc->mutex_prach) != 0) {
843
      LOG_E( PHY, "ERROR pthread_mutex_lock for PRACH thread (IC %d)\n", proc->instance_cnt_prach );
Raymond Knopp's avatar
Raymond Knopp committed
844 845 846 847 848 849 850 851
      exit_fun( "error locking mutex_prach" );
      return;
    }
    
    ++proc->instance_cnt_prach;
    
    // the thread can now be woken up
    if (pthread_cond_signal(&proc->cond_prach) != 0) {
852
      LOG_E( PHY, "ERROR pthread_cond_signal for PRACH thread\n");
Raymond Knopp's avatar
Raymond Knopp committed
853 854 855 856 857 858 859 860
      exit_fun( "ERROR pthread_cond_signal" );
      return;
    }
    
    pthread_mutex_unlock( &proc->mutex_prach );
  }

}